/* ================================================
   ATTO SUSHI — Noren Curtain Design System
   Aesthetic: Editorial Japanese Luxury
   Language: Intentional Hospitality
   Palette: Golden Umami
   ================================================ */

/* --- 1. DESIGN TOKENS --- */
:root {
  /* Golden Umami Palette (from tokens.json) */
  --warm-yellow: #E6C968;
  --dark-yellow: #C5A048;
  --hinoki: #F2E8CF;
  --nori: #242B2E;
  --deep-indigo: #1A1C2C;
  --wasabi: #8DA37E;

  /* Functional */
  --bg-light: #F2E8CF;
  --bg-dark: #1A1C2C;
  --bg-card-light: rgba(255, 255, 250, 0.55);
  --bg-card-dark: rgba(242, 232, 207, 0.04);
  --text-on-light: #242B2E;
  --text-on-light-muted: rgba(36, 43, 46, 0.5);
  --text-on-dark: #F2E8CF;
  --text-on-dark-muted: rgba(242, 232, 207, 0.45);
  --border-light: rgba(36, 43, 46, 0.1);
  --border-dark: rgba(242, 232, 207, 0.08);

  /* Typography */
  --font-primary: 'Asap', system-ui, sans-serif;
  --font-accent: 'Cormorant Garant', Georgia, serif;

  /* Motion */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
  --dur: .3s;

  /* Shape */
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(26,28,44,.06);
  --shadow-md: 0 8px 32px rgba(26,28,44,.08);
  --shadow-lg: 0 16px 64px rgba(26,28,44,.12);

}

/* --- 2. RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  background: var(--bg-light);
  color: var(--text-on-light);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--warm-yellow); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--dark-yellow); }
img { max-width: 100%; height: auto; display: block; }

/* --- 3. TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-primary);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.3;
}

h4 {
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.label {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--warm-yellow);
  display: block;
}

.editorial {
  font-family: var(--font-accent);
  font-weight: 400;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
}
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  margin: 20px auto 0;
  background: var(--warm-yellow);
  border-radius: 1px;
}

.section-subtitle {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.65;
}

/* --- 4. LAYOUT --- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 28px; }

.section { padding: 120px 0; position: relative; }

.section-dark,
.section-indigo {
  background-color: var(--deep-indigo);
  color: var(--text-on-dark);
}
.section-dark h2, .section-dark h3,
.section-indigo h2, .section-indigo h3 { color: var(--text-on-dark); }
.section-dark .section-subtitle,
.section-indigo .section-subtitle { color: var(--text-on-dark-muted); }
.section-dark p, .section-indigo p { color: var(--text-on-dark-muted); }
.section-dark a, .section-indigo a { color: var(--warm-yellow); }

.section-hinoki {
  background-color: var(--hinoki);
  color: var(--text-on-light);
}
.section-hinoki .section-subtitle { color: var(--text-on-light-muted); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* --- 5. NAVIGATION --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26, 28, 44, .97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 0 36px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

/* Transparent nav for hero pages */
.nav--hero {
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.nav--hero.nav-scrolled {
  background: rgba(26, 28, 44, .97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 24px rgba(0, 0, 0, .15);
}

.nav-logo { display: flex; align-items: center; height: 100%; }
.nav-logo img {
  height: 40px; width: auto; display: block;
  filter: brightness(0) invert(1);
  transition: opacity var(--dur) var(--ease);
}
.nav-logo:hover img { opacity: .75; }

.nav-links {
  display: flex; gap: 32px; align-items: center; list-style: none;
}
.nav-links a {
  color: rgba(242, 232, 207, .55);
  font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase; font-weight: 600;
  transition: color var(--dur) var(--ease);
  padding: 4px 0;
}
.nav-links a:hover { color: var(--warm-yellow); }

.nav-cta {
  background: var(--warm-yellow) !important;
  color: var(--deep-indigo) !important;
  padding: 10px 24px !important;
  border-radius: 4px;
  font-size: .7rem !important;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700 !important;
  transition: all var(--dur) var(--ease) !important;
}
.nav-cta:hover {
  background: var(--dark-yellow) !important;
  color: var(--deep-indigo) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(230, 201, 104, .25);
}

/* Dropdown Menus */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: ''; display: inline-block; width: 0; height: 0;
  border-left: 3.5px solid transparent; border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 5px; vertical-align: middle;
  transition: transform var(--dur) var(--ease);
}
.nav-dropdown:hover > a::after,
.nav-dropdown.open > a::after { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  list-style: none; padding: 10px 0; margin: 0;
  background: var(--deep-indigo);
  border: 1px solid rgba(242, 232, 207, .1);
  border-radius: 6px;
  min-width: 170px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s var(--ease), visibility .2s;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
  z-index: 1001;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.dropdown-menu li { width: 100%; }
.dropdown-menu a {
  display: block !important;
  padding: 8px 20px !important;
  font-size: .7rem !important;
  white-space: nowrap;
  color: rgba(242, 232, 207, .55) !important;
  letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease) !important;
}
.dropdown-menu a:hover {
  color: var(--warm-yellow) !important;
  background: rgba(242, 232, 207, .06);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
  z-index: 1001; position: relative;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text-on-dark);
  transition: all .35s var(--ease);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* --- 6. HERO --- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 28px 100px;
  background: var(--deep-indigo);
  position: relative; overflow: hidden;
}

.hero-has-bg {
  background-size: cover; background-position: center;
}
.hero-has-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(26,28,44,.25) 0%, rgba(26,28,44,.65) 100%),
    linear-gradient(0deg, rgba(26,28,44,.85) 0%, rgba(26,28,44,.15) 30%, rgba(26,28,44,.1) 55%, rgba(26,28,44,.55) 100%);
  z-index: 1;
}
.hero-has-bg .hero-content { position: relative; z-index: 2; }
.hero-has-bg h1 { color: #fff; }
.hero-has-bg .tagline { color: rgba(242, 232, 207, .7); }

.hero-sm { min-height: 50vh; padding: 140px 28px 80px; }
.hero-sm h1 { font-size: clamp(1.8rem, 4vw, 3rem); }

.hero-content { max-width: 820px; }

.hero .label { margin-bottom: 20px; }

.hero h1 { margin-bottom: 28px; }

.hero .tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--text-on-dark-muted);
  margin-bottom: 48px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-rule {
  width: 40px; height: 2px; margin: 0 auto 28px;
  background: var(--warm-yellow);
  border-radius: 1px;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-line {
  position: absolute; bottom: 40px; left: 50%; z-index: 2;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-line span {
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(242, 232, 207, .3); font-weight: 600;
}
.scroll-line::after {
  content: ''; display: block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--warm-yellow), transparent);
  animation: scroll-pulse 2.5s var(--ease) infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: .8; transform: scaleY(1.15); }
}

/* Hero entrance animations */
@keyframes hero-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .label     { animation: hero-up .8s var(--ease) .2s both; }
.hero h1         { animation: hero-up .8s var(--ease) .4s both; }
.hero .hero-rule { animation: hero-up .8s var(--ease) .55s both; }
.hero .tagline   { animation: hero-up .8s var(--ease) .65s both; }
.hero-buttons    { animation: hero-up .8s var(--ease) .8s both; }
.scroll-line     { animation: hero-up .8s var(--ease) 1.1s both; }

/* --- 7. BUTTONS --- */
.btn-gold,
.cta-button {
  display: inline-block;
  background: var(--warm-yellow); color: var(--deep-indigo);
  padding: 16px 36px; font-size: .75rem; letter-spacing: .1em;
  text-transform: uppercase; font-weight: 700;
  border: 1.5px solid var(--warm-yellow);
  border-radius: 4px; cursor: pointer;
  font-family: var(--font-primary);
  transition: all var(--dur) var(--ease);
}
.btn-gold:hover,
.cta-button:hover {
  background: var(--dark-yellow); border-color: var(--dark-yellow);
  color: var(--deep-indigo);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(230, 201, 104, .25);
}

.btn-outline-light,
.hero-has-bg .cta-button-outline {
  display: inline-block;
  background: transparent;
  color: rgba(242, 232, 207, .8);
  padding: 16px 36px; font-size: .75rem; letter-spacing: .1em;
  text-transform: uppercase; font-weight: 600;
  border: 1.5px solid rgba(242, 232, 207, .25);
  border-radius: 4px; cursor: pointer;
  font-family: var(--font-primary);
  transition: all var(--dur) var(--ease);
}
.btn-outline-light:hover,
.hero-has-bg .cta-button-outline:hover {
  background: rgba(242, 232, 207, .08);
  border-color: rgba(242, 232, 207, .5);
  color: var(--text-on-dark);
  transform: translateY(-2px);
}

.btn-outline-dark,
.cta-button-outline {
  display: inline-block;
  background: transparent;
  color: var(--nori);
  padding: 16px 36px; font-size: .75rem; letter-spacing: .1em;
  text-transform: uppercase; font-weight: 600;
  border: 1.5px solid rgba(36, 43, 46, .2);
  border-radius: 4px; cursor: pointer;
  font-family: var(--font-primary);
  transition: all var(--dur) var(--ease);
}
.btn-outline-dark:hover,
.cta-button-outline:hover {
  background: var(--nori); color: var(--warm-yellow);
  border-color: var(--nori);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}

/* Dark section outline buttons */
.section-dark .cta-button-outline,
.section-indigo .cta-button-outline {
  color: rgba(242, 232, 207, .8);
  border-color: rgba(242, 232, 207, .2);
}
.section-dark .cta-button-outline:hover,
.section-indigo .cta-button-outline:hover {
  background: rgba(242, 232, 207, .08);
  border-color: rgba(242, 232, 207, .5);
  color: var(--text-on-dark);
}

/* --- 8. CARDS --- */

/* Pillar card (on light backgrounds) */
.card {
  background: var(--bg-card-light);
  border: 1px solid var(--border-light);
  padding: 44px 36px; border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--warm-yellow), var(--dark-yellow));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.card:hover {
  border-color: rgba(230, 201, 104, .25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card:hover::before { transform: scaleX(1); }
.card h3 { color: var(--nori); margin-bottom: 16px; }
.card p { color: var(--text-on-light-muted); font-size: .95rem; line-height: 1.75; }

/* Experience card */
.experience-card {
  background: var(--bg-card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 52px 40px;
  text-align: center; position: relative; overflow: hidden;
  transition: all var(--dur) var(--ease);
}
.experience-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--warm-yellow), var(--dark-yellow));
  transform: scaleX(0);
  transition: transform .4s var(--ease);
}
.experience-card:hover {
  border-color: rgba(230, 201, 104, .25);
  box-shadow: var(--shadow-md); transform: translateY(-4px);
}
.experience-card:hover::after { transform: scaleX(1); }
.experience-card h3 { margin-bottom: 8px; font-size: 1.4rem; color: var(--nori); }
.experience-card .price {
  font-family: var(--font-primary); font-size: 2.6rem;
  color: var(--warm-yellow); font-weight: 900;
  margin: 16px 0 8px; letter-spacing: -.02em;
}
.experience-card .courses {
  font-size: .78rem; color: var(--text-on-light-muted);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px;
}
.experience-card p { color: var(--text-on-light-muted); font-size: .95rem; line-height: 1.7; }
.experience-card .timing {
  font-size: .82rem; color: var(--text-on-light-muted); margin-top: 24px;
  padding-top: 20px; border-top: 1px solid var(--border-light);
}
.grid-3 .experience-card { padding: 40px 32px; }
.grid-3 .experience-card .price { font-size: 2.2rem; }

/* Dark section card overrides */
.section-dark .card,
.section-indigo .card {
  background: var(--bg-card-dark);
  border-color: var(--border-dark);
}
.section-dark .card h3,
.section-indigo .card h3 { color: var(--warm-yellow); }
.section-dark .card p,
.section-indigo .card p { color: var(--text-on-dark-muted); }
.section-dark .card:hover,
.section-indigo .card:hover { border-color: rgba(230, 201, 104, .15); }

/* Dish card (signature pieces) */
.dish-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/5;
  cursor: default;
}
.dish-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.dish-card:hover img { transform: scale(1.06); }
.dish-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(26,28,44,.85) 0%, rgba(26,28,44,.15) 45%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 32px;
  transition: background .4s var(--ease);
}
.dish-card:hover .dish-card-overlay {
  background: linear-gradient(0deg, rgba(26,28,44,.75) 0%, rgba(26,28,44,.05) 50%, transparent 100%);
}
.dish-name {
  font-family: var(--font-primary); font-weight: 900;
  font-size: .85rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--warm-yellow);
  margin-bottom: 8px;
}
.dish-desc {
  font-family: var(--font-accent); font-style: italic;
  font-size: 1rem; color: rgba(242, 232, 207, .65);
  line-height: 1.5;
}

/* Blog card */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--bg-card-dark); border: 1px solid var(--border-dark);
  border-radius: var(--radius); overflow: hidden;
  transition: all var(--dur) var(--ease);
}
.blog-card:hover {
  border-color: rgba(230, 201, 104, .15);
  transform: translateY(-4px); box-shadow: var(--shadow-md);
}
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 28px; }
.blog-card-date {
  font-size: .7rem; color: var(--warm-yellow);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 12px; font-weight: 600;
}
.blog-card h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--text-on-dark); }
.blog-card h3 a { color: var(--text-on-dark); transition: color var(--dur) var(--ease); }
.blog-card h3 a:hover { color: var(--warm-yellow); }
.blog-card p { font-size: .9rem; color: var(--text-on-dark-muted); margin-bottom: 16px; line-height: 1.7; }
.blog-card .read-more {
  font-size: .72rem; color: var(--warm-yellow); letter-spacing: .08em;
  text-transform: uppercase; font-weight: 600;
  transition: letter-spacing var(--dur) var(--ease);
}
.blog-card:hover .read-more { letter-spacing: .14em; }

/* Image card */
.img-card {
  overflow: hidden; background: var(--bg-card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius); transition: all var(--dur) var(--ease);
}
.img-card:hover { border-color: rgba(230,201,104,.25); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.img-card img { width: 100%; height: 200px; object-fit: cover; }
.img-card-body { padding: 28px; }

/* --- 9. NARRATIVE SECTION (The Hidden Counter) --- */
.narrative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.narrative-text { position: relative; padding-left: 32px; }
.narrative-text::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(to bottom, var(--warm-yellow), transparent);
  border-radius: 1px;
}
.narrative-text .label { margin-bottom: 24px; }
.narrative-text .editorial {
  color: var(--text-on-dark);
  font-size: 1.4rem; line-height: 1.55;
  margin-bottom: 20px;
}
.narrative-text p {
  color: var(--text-on-dark-muted);
  font-size: .95rem; line-height: 1.8;
  margin-bottom: 32px;
}
.narrative-photo {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5;
}
.narrative-photo img {
  width: 100%; height: 100%; object-fit: cover;
}

/* --- 10. PHOTO BANNER --- */
.photo-banner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
  overflow: hidden; background: var(--deep-indigo);
}
.photo-banner img {
  width: 100%; height: 300px; object-fit: cover;
  transition: transform .6s var(--ease);
}
.photo-banner img:hover { transform: scale(1.05); }

.photo-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 48px;
}
.photo-strip img {
  width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius);
}

/* --- 11. BREADCRUMB --- */
.breadcrumb {
  padding: 88px 0 0; font-size: .78rem;
  color: var(--text-on-dark-muted); letter-spacing: .03em;
}
.breadcrumb a { color: var(--text-on-dark-muted); }
.breadcrumb a:hover { color: var(--warm-yellow); }
.breadcrumb span { margin: 0 8px; opacity: .4; }

/* --- 12. MENU --- */
.menu-section { margin-bottom: 64px; }
.menu-section h2 {
  color: var(--text-on-light);
  border-bottom: 2px solid var(--warm-yellow);
  padding-bottom: 16px; margin-bottom: 28px;
  font-size: 1.8rem;
}
.menu-section h3 { color: var(--text-on-light); margin: 36px 0 16px; font-size: 1.15rem; }
.menu-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--border-light);
  transition: background var(--dur) var(--ease);
}
.menu-item:hover { background: rgba(230, 201, 104, .04); }
.menu-item-info { flex: 1; padding-right: 24px; }
.menu-item-name { font-size: 1.05rem; color: var(--text-on-light); font-weight: 600; }
.menu-item-desc { font-size: .85rem; color: var(--text-on-light-muted); margin-top: 3px; }
.menu-item-source { font-size: .8rem; color: var(--warm-yellow); font-style: italic; margin-top: 2px; }
.menu-item-price { font-family: var(--font-primary); color: var(--text-on-light); white-space: nowrap; font-size: 1.1rem; font-weight: 700; }
.menu-item-dietary {
  display: inline-block; font-size: .6rem; padding: 2px 7px;
  border: 1px solid var(--border-light); color: var(--text-on-light-muted);
  margin-left: 6px; vertical-align: middle; border-radius: 2px;
  letter-spacing: .04em; text-transform: uppercase;
}
.menu-note {
  font-size: .85rem; color: var(--text-on-light-muted); font-style: italic;
  margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border-light);
  line-height: 1.8;
}

/* --- 13. FAQ --- */
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question {
  width: 100%; background: none; border: none; color: var(--text-on-light);
  font-family: var(--font-primary); font-size: 1.15rem; font-weight: 600;
  text-align: left; padding: 24px 44px 24px 0;
  cursor: pointer; position: relative; line-height: 1.4;
  transition: color var(--dur) var(--ease);
}
.faq-question:hover { color: var(--warm-yellow); }
.faq-question::after {
  content: '+'; position: absolute; right: 0; top: 24px;
  font-size: 1.3rem; color: var(--warm-yellow);
  transition: transform .3s var(--ease);
  font-weight: 300;
}
.faq-question.active::after { content: '\2212'; }
.faq-answer {
  padding: 0 0 24px; color: var(--text-on-light-muted);
  font-size: .95rem; display: none; line-height: 1.8;
}
.faq-answer.active { display: block; }

/* --- 14. CHEF BIO --- */
.chef-bio { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; }
.chef-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.chef-photo-placeholder {
  background: rgba(230, 201, 104, .08); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center;
  color: var(--text-on-light-muted); font-style: italic;
}
.chef-bio blockquote {
  border-left: 3px solid var(--warm-yellow);
  padding: 20px 28px; margin: 28px 0;
  font-family: var(--font-accent); font-style: italic;
  color: var(--text-on-light-muted);
  font-size: 1.2rem; line-height: 1.7;
  background: rgba(230, 201, 104, .05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* --- 15. BLOG ARTICLES --- */
.article-header { margin-bottom: 40px; }
.article-hero-img {
  width: 100%; height: 400px; object-fit: cover;
  margin-bottom: 48px; border-radius: var(--radius-lg);
}
.article-meta {
  font-size: .72rem; color: var(--warm-yellow); margin-bottom: 12px;
  letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
}
.article-content { font-size: 1.05rem; line-height: 1.85; }
.article-content h2 { margin: 56px 0 20px; font-size: 1.8rem; }
.article-content h3 { margin: 40px 0 16px; font-size: 1.3rem; }
.article-content p { margin-bottom: 22px; color: var(--text-on-light-muted); }
.article-content ul, .article-content ol { margin: 0 0 22px 24px; color: var(--text-on-light-muted); }
.article-content li { margin-bottom: 10px; }
.article-content strong { color: var(--text-on-light); }
.article-content blockquote {
  border-left: 3px solid var(--warm-yellow); padding: 20px 28px; margin: 32px 0;
  color: var(--text-on-light-muted); font-style: italic;
  background: rgba(230, 201, 104, .05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-accent); font-size: 1.15rem; line-height: 1.7;
}

.related-posts h3 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.related-posts ul { list-style: none; }
.related-posts li { padding: 8px 0; }
.related-posts a { font-size: 1rem; }

/* --- 16. PRESS --- */
.press-item {
  background: var(--bg-card-light); border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 40px 44px; margin-bottom: 20px;
  transition: all var(--dur) var(--ease);
}
.press-item:hover { border-color: rgba(230,201,104,.25); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.press-item blockquote {
  font-style: italic; font-size: 1.15rem; color: var(--text-on-light);
  margin-bottom: 14px; line-height: 1.7;
  font-family: var(--font-accent);
}
.press-item .source { font-size: .78rem; color: var(--warm-yellow); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* --- 17. CONTACT --- */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: .72rem; color: var(--text-on-light-muted);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; background: rgba(255,255,250,.5);
  border: 1px solid var(--border-light); color: var(--text-on-light);
  border-radius: 4px; font-family: var(--font-primary); font-size: .95rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--warm-yellow);
  box-shadow: 0 0 0 3px rgba(230, 201, 104, .12);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* --- 18. LOCATION --- */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.location-info h3 { color: var(--text-on-light); margin-bottom: 16px; font-size: 1.5rem; }
.location-info p { margin-bottom: 14px; color: var(--text-on-light-muted); }
.location-info .address { font-size: 1.1rem; color: var(--text-on-light); margin-bottom: 8px; }
.map-placeholder {
  background: rgba(26, 28, 44, .04); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  min-height: 400px; display: flex; align-items: center; justify-content: center;
  color: var(--text-on-light-muted); font-style: italic; font-family: var(--font-accent);
}
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  height: 100%;
}
.map-embed iframe {
  display: block;
  min-height: 400px;
  height: 100%;
}

/* Policies list */
.policies-list { list-style: none; }
.policies-list li {
  padding: 16px 0; border-bottom: 1px solid var(--border-light);
  color: var(--text-on-light-muted); line-height: 1.7;
}
.policies-list li strong { color: var(--text-on-light); }

/* Section image */
.section-image { width: 100%; height: 420px; object-fit: cover; margin: 0; }

/* --- 19. FOOTER --- */
.footer {
  background: var(--deep-indigo);
  padding: 88px 0 40px;
}
.footer-mark {
  text-align: center; margin-bottom: 56px;
}
.footer-mark img {
  height: 64px; width: auto; margin: 0 auto;
  filter: brightness(0) invert(1);
  opacity: .2;
}
.footer-columns {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; margin-bottom: 56px;
}
.footer-col h4 { color: var(--warm-yellow); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(242, 232, 207, .35);
  transition: color var(--dur) var(--ease); font-size: .88rem;
}
.footer-col a:hover { color: var(--warm-yellow); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid rgba(242, 232, 207, .06);
  font-size: .78rem; color: rgba(242, 232, 207, .2);
}
.schema-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(230, 201, 104, .06); border: 1px solid rgba(230, 201, 104, .1);
  padding: 5px 14px; font-size: .68rem; color: rgba(230, 201, 104, .4);
  border-radius: 4px; letter-spacing: .04em;
}

/* --- 20. ORNAMENTAL DIVIDER --- */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; padding: 24px 0; margin: 0 auto;
  color: var(--warm-yellow); font-size: .7rem; opacity: .35;
  letter-spacing: .2em;
}
.divider::before, .divider::after {
  content: ''; flex: 1; max-width: 64px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm-yellow));
}
.divider::after { background: linear-gradient(90deg, var(--warm-yellow), transparent); }

/* --- 21. SCROLL ANIMATIONS --- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.reveal-group .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-group .reveal:nth-child(2) { transition-delay: .1s; }
.reveal-group .reveal:nth-child(3) { transition-delay: .2s; }
.reveal-group .reveal:nth-child(4) { transition-delay: .3s; }

/* --- 22. RESPONSIVE --- */
@media (max-width: 1024px) {
  .narrative { gap: 48px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .section { padding: 80px 0; }
  .section-title { font-size: 1.9rem; }
  .grid-3, .blog-grid { grid-template-columns: 1fr; }
  .grid-2, .location-grid, .chef-bio { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .narrative { grid-template-columns: 1fr; }
  .narrative-photo { aspect-ratio: 16/10; }
  .photo-banner { grid-template-columns: repeat(2, 1fr); }
  .photo-banner img { height: 220px; }
  .photo-strip { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; height: 68px; }
  .nav-logo img { height: 34px; }

  .nav-links {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(26, 28, 44, .98);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 6px; z-index: 999;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .4s var(--ease), visibility .4s;
  }
  .nav-links.active {
    opacity: 1; visibility: visible; pointer-events: auto;
  }
  .nav-links li { width: auto; }
  .nav-links a {
    display: block; padding: 14px 0; font-size: 1rem; letter-spacing: .06em;
    color: var(--text-on-dark-muted);
    opacity: 0; transform: translateY(12px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), color .2s;
  }
  .nav-links.active a { opacity: 1; transform: translateY(0); }
  .nav-links.active li:nth-child(1) a { transition-delay: .05s; }
  .nav-links.active li:nth-child(2) a { transition-delay: .08s; }
  .nav-links.active li:nth-child(3) a { transition-delay: .11s; }
  .nav-links.active li:nth-child(4) a { transition-delay: .14s; }
  .nav-links.active li:nth-child(5) a { transition-delay: .17s; }
  .nav-links.active li:nth-child(6) a { transition-delay: .2s; }
  .nav-links.active li:nth-child(7) a { transition-delay: .23s; }
  .nav-links.active li:nth-child(8) a { transition-delay: .26s; }

  /* Mobile dropdown overrides */
  .nav-dropdown > a::after { margin-left: 6px; border-top-width: 5px; border-left-width: 4px; border-right-width: 4px; }
  .dropdown-menu {
    position: static; transform: none;
    background: transparent; border: none; box-shadow: none;
    padding: 0; min-width: 0;
    max-height: 0; overflow: hidden;
    opacity: 1; visibility: visible; pointer-events: auto;
    transition: max-height .3s var(--ease);
  }
  .nav-dropdown.open .dropdown-menu { max-height: 300px; }
  .dropdown-menu a {
    padding: 8px 0 !important; font-size: .85rem !important;
    color: rgba(242, 232, 207, .4) !important;
    text-align: center;
  }
  .dropdown-menu a:hover { background: transparent; }
  .nav-links.active .nav-dropdown.open .dropdown-menu a {
    opacity: 1; transform: translateY(0);
  }

  .nav-cta {
    margin-top: 16px !important; display: inline-block !important;
    padding: 14px 40px !important; font-size: .8rem !important;
  }
  .hamburger { display: flex; }

  .hero { min-height: 85vh; padding: 100px 20px 64px; }
  .hero-sm { min-height: 40vh; padding: 100px 20px 56px; }
  h1 { font-size: 1.9rem; }
  .hero .tagline { font-size: 1.05rem; }
  .section { padding: 64px 0; }
  .section-title { font-size: 1.7rem; }
  .section-subtitle { margin-bottom: 40px; }
  .container, .container-narrow { padding: 0 20px; }
  .footer-columns { grid-template-columns: 1fr; gap: 28px; }
  .photo-banner { grid-template-columns: 1fr 1fr; gap: 3px; }
  .photo-banner img { height: 180px; }
  .section-image { height: 260px; }
  .article-hero-img { height: 260px; }
  .experience-card { padding: 36px 28px; }
  .experience-card .price { font-size: 2.2rem; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .scroll-line { display: none; }

  .narrative-text { padding-left: 20px; }
  .narrative-text .editorial { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  .hero { min-height: 75vh; }
  .hero .tagline { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn-gold,
  .hero-buttons .cta-button,
  .hero-buttons .btn-outline-light,
  .hero-buttons .cta-button-outline { width: 100%; text-align: center; }
  .photo-banner { grid-template-columns: 1fr; }
  .photo-banner img { height: 200px; }
  .grid-4 { grid-template-columns: 1fr; }
  .card { padding: 32px 24px; }
  .dish-card { aspect-ratio: 3/4; }
}
