:root {
  --cream:  #fce9a8;
  --cream2: #f5db8c;
  --red:    #cc2416;
  --red2:   #a81c0f;
  --gold:   #c47d10;
  --ink:    #1e0a04;
  --white:  #fffdf4;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  overflow-x: hidden;
}

/* ══════════ HERO ══════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '❧ ✦ ❧';
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  color: var(--red);
  letter-spacing: 1.2rem;
  opacity: 0.5;
  white-space: nowrap;
}

.hero-cat {
  width: min(440px, 80vw);
  margin-bottom: 1.2rem;
  animation: floatUp 0.9s cubic-bezier(.22,.68,0,1.15) both;
  filter: drop-shadow(0 10px 36px rgba(204,36,22,0.2));
}

.hero-title {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: clamp(3.8rem, 11vw, 8.5rem);
  color: var(--red);
  line-height: 1;
  letter-spacing: 0.02em;
  animation: fadeUp 0.7s ease 0.25s both;
}

.hero-divider {
  margin: 1.2rem auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeUp 0.7s ease 0.4s both;
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  display: block;
  height: 2px;
  width: 5rem;
  background: var(--red);
  opacity: 0.35;
}

.hero-divider span {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0.8;
}

.hero-tagline {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.15rem, 2.8vw, 1.7rem);
  font-style: italic;
  color: var(--red2);
  animation: fadeUp 0.7s ease 0.5s both;
  line-height: 1.6;
}

.hero-cta-group {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.7s ease 0.65s both;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--red);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-fill  { background: var(--red); color: var(--cream); }
.btn-fill:hover  { background: var(--red2); border-color: var(--red2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--red); }
.btn-outline:hover { background: var(--red); color: var(--cream); transform: translateY(-2px); }

/* ══════════ BAND ══════════ */
.band {
  background: var(--red);
  padding: 1rem 2rem;
  text-align: center;
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.1em;
}

/* ══════════ CONCEPT ══════════ */
.concept-section {
  background: var(--white);
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}

.concept-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--red);
  line-height: 1.1;
  margin-bottom: 1.8rem;
}

.concept-body {
  font-size: 1.15rem;
  line-height: 1.85;
  color: rgba(30,10,4,0.75);
  font-weight: 300;
}

.concept-body p + p { margin-top: 1em; }

.team-block {
  border-left: 3px solid var(--cream2);
  padding-left: 2rem;
}

.team-block h3 {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.team-group { margin-bottom: 1.4rem; }

.team-group-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.team-group p {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.05rem;
  line-height: 1.65;
  font-style: italic;
}

/* ══════════ MENU ══════════ */
.menu-section {
  background: var(--cream);
  padding: 5rem 2rem;
}

.menu-inner { max-width: 1000px; margin: 0 auto; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--red);
  border: 2px solid var(--red);
  margin-top: 2rem;
}

.menu-card {
  background: var(--cream);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: background 0.25s;
}

.menu-card:hover { background: var(--cream2); }

.menu-jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 3rem;
  color: rgba(204,36,22,0.1);
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  line-height: 1;
}

.menu-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.52rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.8rem;
}

.menu-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--red2);
  margin-bottom: 0.6rem;
}

.menu-desc {
  font-size: 0.93rem;
  font-style: italic;
  color: rgba(30,10,4,0.55);
  line-height: 1.5;
}

.menu-footer-note {
  text-align: right;
  font-style: italic;
  font-size: 0.82rem;
  color: rgba(30,10,4,0.38);
  margin-top: 1rem;
}

/* ══════════ TOUR ══════════ */
.tour-section {
  background: var(--red);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.tour-section::before {
  content: '鮨';
  position: absolute;
  right: -2rem;
  bottom: -5rem;
  font-family: 'Shippori Mincho', serif;
  font-size: 24rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

.tour-inner { max-width: 1000px; margin: 0 auto; }

.tour-section .section-title { color: var(--cream); }
.tour-section .section-label { color: rgba(252,233,168,0.65); }

.tour-list { margin-top: 2rem; }

.tour-item {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  transition: padding-left 0.25s;
}

.tour-item:first-child { border-top: 1px solid rgba(255,255,255,0.14); }
.tour-item:hover { padding-left: 0.75rem; }

.tour-date {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--cream2);
}

.tour-venue {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
}

.tour-location {
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(252,233,168,0.6);
  margin-top: 0.15rem;
}

.tour-time {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  color: rgba(252,233,168,0.45);
  letter-spacing: 0.08em;
  text-align: right;
  white-space: nowrap;
}

/* ══════════ RESERVE ══════════ */
.reserve-section {
  background: var(--cream);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reserve-section::before {
  content: '❧';
  font-size: 14rem;
  color: rgba(204,36,22,0.05);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  line-height: 1;
}

.reserve-inner {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.reserve-inner .section-title { font-size: clamp(2.5rem, 6vw, 4.2rem); }

.reserve-body {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(30,10,4,0.6);
  font-style: italic;
  margin-bottom: 2rem;
}

.reserve-email {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--red);
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 0.1rem;
  margin-bottom: 2.5rem;
  transition: color 0.2s, border-color 0.2s;
}

.reserve-email:hover { color: var(--red2); border-color: var(--red2); }

/* ══════════ PARTNERS ══════════ */
.partners-section {
  background: var(--white);
  border-top: 2px solid var(--cream2);
  padding: 3rem 2rem;
  text-align: center;
}

.partners-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.partners-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.partners-links a {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.partners-links a:hover { color: var(--red); border-color: var(--red); }

/* ══════════ FOOTER ══════════ */
footer {
  background: var(--ink);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: 2rem;
  color: var(--cream);
}

.footer-tagline {
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(252,233,168,0.45);
  margin-top: 0.1rem;
}

.footer-instagram a {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(252,233,168,0.38);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-instagram a:hover { color: var(--cream); }

.footer-built {
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  color: rgba(252,233,168,0.15);
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* ══════════ ANIMATIONS ══════════ */
@keyframes floatUp {
  from { opacity: 0; transform: translateY(28px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 750px) {
  .concept-inner { grid-template-columns: 1fr; gap: 3rem; padding: 3.5rem 1.5rem; }
  .team-block { border-left: none; padding-left: 0; border-top: 3px solid var(--cream2); padding-top: 2rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .tour-item { grid-template-columns: 1fr; gap: 0.35rem; }
  .tour-time { text-align: left; }
  footer { flex-direction: column; }
}
