@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --font-serif: "Cormorant Garamond";
  --font-sans: "DM Sans";
  --cream: #f2eee6;
  --paper: #fbf8f2;
  --ink: #1a1c18;
  --olive: #29362b;
  --olive-light: #536453;
  --copper: #b8784d;
  --line: rgba(26, 28, 24, .16);
  --scroll: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--font-sans), sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: absolute; z-index: 30; top: 0; left: 0; right: 0;
  height: 104px; padding: 0 clamp(24px, 5vw, 76px);
  display: flex; align-items: center; justify-content: space-between;
  color: white; border-bottom: 1px solid rgba(255,255,255,.22);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.62); border-radius: 50%; font-family: var(--font-serif), serif; font-size: 16px; font-weight: 600; }
.brand-name { font-family: var(--font-serif), serif; font-size: 23px; font-weight: 600; letter-spacing: .01em; }
.nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 40px); }
.nav > a { position: relative; font-size: 11px; font-weight: 600; letter-spacing: .08em; }
.nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 1px; background: white; transform: scaleX(0); transform-origin: right; transition: transform .3s ease; }
.nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav .nav-cta { padding: 12px 18px; border: 1px solid rgba(255,255,255,.5); border-radius: 99px; transition: color .25s, background .25s; }
.nav .nav-cta:hover { color: var(--olive); background: white; }
.menu-toggle { display: none; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; color: white; background: #17221a; }
.hero-backdrop { position: absolute; inset: -30px; background-image: url('/images/hero-restaurant.webp'); transform: translateY(calc(var(--scroll) * .12)); background-size: cover; background-position: center; }
.hero-backdrop::before { content: ""; position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.15) 50%, transparent 50.2%), radial-gradient(circle at 70% 48%, rgba(226,186,124,.75) 0 1.2%, transparent 1.4%), radial-gradient(circle at 82% 30%, rgba(226,186,124,.52) 0 .9%, transparent 1.1%); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,12,9,.8) 0%, rgba(8,12,9,.42) 46%, rgba(8,12,9,.12) 100%), linear-gradient(0deg, rgba(9,13,10,.56), transparent 50%); }
.hero-content { position: relative; z-index: 2; width: min(850px, 80%); padding: 145px clamp(24px, 8vw, 124px) 70px; }
.eyebrow { margin: 0 0 25px; display: flex; align-items: center; gap: 10px; color: var(--olive-light); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
.eyebrow.light { color: rgba(255,255,255,.72); }
.hero h1 { margin: 0; font-family: var(--font-serif), Georgia, serif; font-size: clamp(4.4rem, 8.3vw, 8.6rem); font-weight: 400; letter-spacing: -.055em; line-height: .76; }
.hero h1 em { color: #e2c6a8; font-weight: 300; }
.hero-intro { max-width: 520px; margin: 38px 0 0; color: rgba(255,255,255,.76); font-family: var(--font-serif), serif; font-size: clamp(1.1rem, 1.6vw, 1.4rem); line-height: 1.5; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }
.button { min-height: 54px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 25px; border-radius: 99px; font-size: 11px; font-weight: 700; letter-spacing: .05em; transition: transform .3s ease, background .3s ease; }
.button:hover { transform: translateY(-3px); }
.button-light { color: var(--olive); background: var(--paper); }
.button-light:hover { background: white; }
.text-action { display: inline-flex; align-items: center; gap: 20px; padding-bottom: 7px; border-bottom: 1px solid rgba(255,255,255,.46); font-size: 11px; font-weight: 600; letter-spacing: .05em; }
.hero-aside { position: absolute; z-index: 2; right: clamp(24px, 5vw, 76px); bottom: 48px; display: flex; gap: 24px; color: rgba(255,255,255,.64); font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.hero-scroll { position: absolute; z-index: 2; right: clamp(24px, 5vw, 76px); top: 50%; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.58); font-size: 8px; letter-spacing: .18em; text-transform: uppercase; transform: rotate(90deg) translateY(-50%); transform-origin: right center; }
.hero-scroll i { position: relative; width: 50px; height: 1px; overflow: hidden; background: rgba(255,255,255,.3); }
.hero-scroll i::after { content: ""; position: absolute; top: 0; left: -100%; width: 70%; height: 100%; background: white; animation: lineMove 2s ease-in-out infinite; }
@keyframes lineMove { to { left: 140%; } }

.section-shell { padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 110px); }
.manifesto { background: var(--cream); }
.section-index { margin: 0 0 70px; color: #727a70; font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.manifesto-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(55px, 10vw, 160px); }
.manifesto h2 { margin: 0; max-width: 760px; font-family: var(--font-serif), serif; font-size: clamp(3.6rem, 6.4vw, 7rem); font-weight: 400; letter-spacing: -.055em; line-height: .9; }
.manifesto h2 em { color: var(--copper); font-weight: 300; }
.manifesto-copy { padding-top: 14px; }
.manifesto-copy p { color: #62685f; font-size: 13px; line-height: 1.85; }
.manifesto-copy .lead { margin-top: 0; color: #31362f; font-family: var(--font-serif), serif; font-size: 22px; line-height: 1.55; }
.line-link { display: inline-flex; gap: 28px; margin-top: 22px; padding-bottom: 7px; border-bottom: 1px solid var(--line); font-size: 11px; font-weight: 700; }
.values-row { margin-top: 100px; padding-top: 35px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.values-row > div { display: flex; flex-direction: column; gap: 5px; }
.values-row strong { font-family: var(--font-serif), serif; font-size: 42px; font-weight: 400; }
.values-row span { color: #777d74; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

:focus-visible { outline: 2px solid var(--copper); outline-offset: 4px; }
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.menu-section { min-height: 920px; display: grid; grid-template-columns: 1fr 1fr; color: var(--paper); background: var(--olive); }
.menu-image-wrap { position: relative; min-height: 920px; overflow: hidden; }
.menu-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,14,11,.5), transparent 48%); pointer-events: none; }
.menu-image-wrap img, .chef-portrait img { width: 100%; height: 100%; display: block; object-fit: cover; }
.image-caption { position: absolute; z-index: 1; left: 42px; bottom: 34px; color: rgba(255,255,255,.78); font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.menu-content { padding-top: clamp(80px, 8vw, 125px); padding-bottom: clamp(80px, 8vw, 125px); }
.light-index { color: rgba(255,255,255,.5); }
.menu-content h2, .chef-copy h2, .booking-heading h2, .info-top h2 { margin: 0; font-family: var(--font-serif), serif; font-size: clamp(3.6rem, 5.8vw, 6.5rem); font-weight: 400; letter-spacing: -.055em; line-height: .86; }
.menu-content h2 em, .info-top h2 em { color: #d5ad89; font-weight: 300; }
.menu-tabs { margin-top: 50px; display: flex; gap: 9px; flex-wrap: wrap; }
.menu-tabs button { padding: 10px 15px; border: 1px solid rgba(255,255,255,.2); border-radius: 99px; color: rgba(255,255,255,.62); background: transparent; cursor: pointer; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: background .25s, color .25s, border-color .25s; }
.menu-tabs button:hover, .menu-tabs button.is-active { color: var(--olive); border-color: var(--paper); background: var(--paper); }
.menu-panel { margin-top: 38px; animation: panelIn .45s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } }
.menu-note { margin: 0 0 14px; color: #d5ad89; font-family: var(--font-serif), serif; font-size: 18px; }
.menu-panel ol { margin: 0; padding: 0; list-style: none; }
.menu-panel li { padding: 15px 0; display: flex; justify-content: space-between; gap: 22px; border-bottom: 1px solid rgba(255,255,255,.13); }
.menu-panel li > span { font-family: var(--font-serif), serif; font-size: 20px; }
.menu-panel small { max-width: 260px; color: rgba(255,255,255,.52); font-size: 10px; line-height: 1.5; text-align: right; }
.menu-footnote { margin: 25px 0 0; color: rgba(255,255,255,.42); font-size: 10px; line-height: 1.65; }

.chef-section { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(55px, 9vw, 140px); background: var(--paper); }
.chef-signature { margin: 0 0 16px; color: var(--copper); font-family: var(--font-serif), serif; font-size: 18px; font-style: italic; }
.chef-copy h2 { font-size: clamp(3.2rem, 5.2vw, 5.8rem); }
.chef-copy h2 em, .booking-heading h2 em { color: var(--copper); font-weight: 300; }
.chef-copy > p:not(.section-index):not(.chef-signature) { color: #60665d; font-size: 13px; line-height: 1.85; }
.chef-copy h2 + p { margin-top: 38px; }
.chef-awards { margin-top: 45px; padding-top: 25px; display: flex; gap: 45px; border-top: 1px solid var(--line); }
.chef-awards span { color: #747a71; font-size: 9px; line-height: 1.7; letter-spacing: .06em; text-transform: uppercase; }
.chef-awards strong { color: var(--ink); font-family: var(--font-serif), serif; font-size: 15px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.chef-portrait { position: relative; height: min(720px, 72vw); min-height: 520px; overflow: hidden; }
.chef-portrait::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); pointer-events: none; }
.chef-portrait span { position: absolute; right: 0; bottom: -29px; color: #858a82; font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.experience-band { display: grid; grid-template-columns: repeat(3, 1fr); color: var(--paper); background: #222b23; }
.experience-card { min-height: 355px; padding: 55px clamp(28px, 4vw, 65px); border-right: 1px solid rgba(255,255,255,.13); }
.experience-card:last-child { border-right: 0; }
.experience-card > span { color: #bd8d68; font-size: 9px; font-weight: 700; letter-spacing: .15em; }
.experience-card h3 { margin: 80px 0 18px; font-family: var(--font-serif), serif; font-size: clamp(2.5rem, 3.6vw, 4.2rem); font-weight: 400; }
.experience-card p { max-width: 320px; margin: 0; color: rgba(255,255,255,.54); font-size: 12px; line-height: 1.8; }

.booking-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(55px, 9vw, 145px); background: var(--cream); }
.booking-heading > p:last-child { max-width: 390px; margin-top: 34px; color: #62685f; font-size: 13px; line-height: 1.8; }
.booking-card { padding: clamp(28px, 4vw, 52px); border: 1px solid var(--line); background: rgba(255,255,255,.52); box-shadow: 0 25px 65px rgba(42,45,38,.06); }
.booking-card form { display: grid; gap: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.booking-card label { display: grid; gap: 8px; color: #70756d; font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.booking-card input, .booking-card select { width: 100%; min-width: 0; height: 51px; padding: 0 14px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; color: var(--ink); background: transparent; font: 500 13px var(--font-sans), sans-serif; outline: 0; }
.booking-card input:focus, .booking-card select:focus { border-color: var(--copper); }
.booking-submit { min-height: 56px; margin-top: 8px; padding: 0 21px; display: flex; align-items: center; justify-content: space-between; border: 0; border-radius: 99px; color: white; background: var(--olive); cursor: pointer; font-size: 10px; font-weight: 700; letter-spacing: .06em; transition: transform .25s, background .25s; }
.booking-submit:hover { transform: translateY(-2px); background: #39483a; }
.booking-card form > small { color: #92978f; font-size: 9px; text-align: center; }
.booking-success { min-height: 390px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.booking-success > span { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--olive); }
.booking-success h3 { margin: 25px 0 8px; font-family: var(--font-serif), serif; font-size: 34px; font-weight: 500; }
.booking-success p { max-width: 340px; color: #777d74; font-size: 12px; line-height: 1.6; }
.booking-success button { padding: 10px 0; border: 0; border-bottom: 1px solid var(--line); color: var(--ink); background: transparent; cursor: pointer; font-size: 10px; font-weight: 700; }

.info-section { color: var(--paper); background: #1d251f; }
.info-top { padding-bottom: 100px; }
.info-top { display: grid; grid-template-columns: 1fr 1.25fr; align-items: end; gap: clamp(55px, 9vw, 145px); }
.info-top h2 { font-size: clamp(4rem, 7vw, 8rem); }
.info-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.info-columns small { color: #bd8d68; font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.info-columns p { min-height: 68px; margin: 15px 0; color: rgba(255,255,255,.6); font-size: 11px; line-height: 1.7; }
.info-columns a { padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.2); font-size: 9px; font-weight: 700; }
.info-section footer { min-height: 125px; padding: 25px clamp(24px, 5vw, 76px); display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-brand .brand-mark { width: 34px; height: 34px; font-size: 12px; }
.footer-brand .brand-name { font-size: 18px; }
.info-section footer p { color: rgba(255,255,255,.38); font-size: 9px; }
.info-section footer > div { display: flex; gap: 22px; color: rgba(255,255,255,.65); font-size: 9px; font-weight: 700; }

@media (max-width: 900px) {
  .site-header { height: 82px; }
  .menu-toggle { position: relative; z-index: 40; display: flex; align-items: center; gap: 10px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.4); border-radius: 99px; color: white; background: transparent; }
  .menu-toggle span { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
  .menu-toggle i { width: 5px; height: 5px; border-radius: 50%; background: white; }
  .nav { position: fixed; z-index: 35; inset: 0; padding: 115px 28px 40px; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 0; background: #233026; transform: translateY(-102%); visibility: hidden; transition: transform .5s cubic-bezier(.22,1,.36,1), visibility .5s; }
  .nav.is-open { transform: translateY(0); visibility: visible; }
  .nav > a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.13); font-family: var(--font-serif), serif; font-size: 30px; font-weight: 400; letter-spacing: -.02em; }
  .nav .nav-cta { margin-top: 24px; border: 1px solid rgba(255,255,255,.45); text-align: center; font-family: var(--font-sans); font-size: 11px; }
  .hero-content { width: 100%; padding: 130px 24px 105px; }
  .hero h1 { font-size: clamp(4rem, 19vw, 6.2rem); line-height: .8; }
  .hero-aside { left: 24px; right: auto; bottom: 32px; }
  .hero-scroll { display: none; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 45px; }
  .section-index { margin-bottom: 45px; }
  .values-row { margin-top: 70px; gap: 24px; }
  .menu-section { min-height: 0; grid-template-columns: 1fr; }
  .menu-image-wrap { min-height: 70svh; }
  .menu-content { padding-left: 24px; padding-right: 24px; }
  .chef-section, .booking-section, .info-top { grid-template-columns: 1fr; }
  .chef-portrait { order: -1; height: 85svh; }
  .experience-card { min-height: 300px; }
  .experience-card h3 { margin-top: 55px; }
  .info-columns { margin-top: 25px; }
  .info-section footer { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .brand-name { font-size: 19px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 22px; }
  .button { width: 100%; }
  .text-action { align-self: flex-start; }
  .values-row { grid-template-columns: 1fr; }
  .values-row > div { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
  .menu-image-wrap { min-height: 62svh; }
  .menu-panel li { flex-direction: column; gap: 5px; }
  .menu-panel small { max-width: none; text-align: left; }
  .chef-section { padding-left: 24px; padding-right: 24px; }
  .chef-portrait { min-height: 430px; }
  .chef-awards { flex-direction: column; gap: 16px; }
  .experience-band { grid-template-columns: 1fr; }
  .experience-card { min-height: 260px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .field-row { grid-template-columns: 1fr; }
  .booking-card { padding: 26px 18px; }
  .info-columns { grid-template-columns: 1fr; }
  .info-columns p { min-height: 0; }
  .info-columns > div { padding-bottom: 23px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .info-section footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
