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

:root {
  --paper: #f4efe7;
  --paper-deep: #e9dfd1;
  --white: #fffdf9;
  --ink: #211915;
  --muted: #6f6259;
  --wine: #55201d;
  --wine-dark: #341210;
  --gold: #b19059;
  --gold-soft: #d8c29c;
  --line: rgba(85, 32, 29, 0.18);
  --max: 1240px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--wine);
  color: white;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 .8rem;
  color: var(--wine);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 500;
  line-height: .87;
  letter-spacing: -.035em;
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.55rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.025em;
}

.copy-large {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  line-height: 1.28;
}

.text-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--wine);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-decoration: none;
  text-transform: uppercase;
}
.button {
  padding: .9rem 1.25rem .78rem;
  border: 1px solid var(--wine);
}
.button--solid { background: var(--wine); color: var(--white); }
.button--light { border-color: var(--white); color: var(--white); }
.button--full { width: 100%; }
.text-link::after,
.button::after { content: "↗"; font-size: .95rem; letter-spacing: 0; }

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(244,239,231,.98);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: clamp(145px, 16vw, 225px); height: auto; }
.header-actions { display: flex; align-items: center; gap: 1.35rem; }
.desktop-nav { display: flex; align-items: center; gap: 1.8rem; }
.desktop-nav a {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-book {
  padding: .65rem .9rem .55rem;
  border: 1px solid var(--wine);
  color: var(--wine);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 19px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}
.mobile-menu {
  display: none;
  padding: 1rem 1.25rem 1.4rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.mobile-menu.is-open { display: grid; }
.mobile-menu a {
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.55rem;
  text-decoration: none;
}

.hero-media {
  position: relative;
  min-height: min(73vh, 780px);
  overflow: hidden;
  background: #2c211d;
}
.hero-media img {
  width: 100%;
  height: min(73vh, 780px);
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(.86) contrast(.98) brightness(.78);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,10,8,.12), rgba(20,10,8,.28));
}
.hero-caption {
  position: absolute;
  z-index: 2;
  left: max(1.25rem, calc((100vw - var(--max))/2));
  bottom: 2rem;
  max-width: 520px;
  color: var(--white);
}
.hero-caption p {
  margin: .8rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.3vw, 2.05rem);
  line-height: 1.15;
}

.intro {
  position: relative;
  padding: clamp(5.5rem, 10vw, 10rem) 0;
  text-align: center;
}
.intro::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(177,144,89,.28);
  pointer-events: none;
}
.intro-logo {
  width: min(520px, 80vw);
  margin: 0 auto 2.2rem;
}
.intro .copy-large {
  max-width: 760px;
  margin: 0 auto 2rem;
}
.intro .body-copy {
  max-width: 630px;
  margin: 0 auto 2rem;
  color: var(--muted);
}

.statement {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  min-height: 580px;
  background: var(--wine-dark);
  color: var(--white);
}
.statement-image { min-height: 480px; }
.statement-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) brightness(.78); }
.statement-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 7rem);
}
.statement-copy .eyebrow { color: var(--gold-soft); }
.statement-copy p { max-width: 460px; color: rgba(255,255,255,.74); }

.menu-preview { padding: clamp(5rem, 10vw, 9rem) 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
.section-head p { max-width: 430px; margin: 0; color: var(--muted); }
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.5rem; }
.menu-card { position: relative; min-height: 680px; overflow: hidden; background: #d8c8b6; color: white; }
.menu-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7) saturate(.88); }
.menu-card::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 35%, rgba(20,8,7,.76)); }
.menu-card-content {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: clamp(1.7rem, 4vw, 3.5rem);
}
.menu-card h3 { margin: 0 0 .6rem; font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 4.3rem); font-weight: 500; line-height: .95; }
.menu-card p { max-width: 440px; margin: 0 0 1.3rem; color: rgba(255,255,255,.82); }
.menu-card .text-link { color: white; }

.find-us { padding: clamp(5rem, 10vw, 9rem) 0; background: var(--white); }
.find-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.find-copy p { max-width: 500px; color: var(--muted); }
.detail-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.detail { padding-top: 1.25rem; border-top: 1px solid var(--line); }
.detail h3 { margin: 0 0 .65rem; color: var(--wine); font-size: .73rem; letter-spacing: .17em; text-transform: uppercase; }
.detail p, .detail address { margin: 0; font-style: normal; }
.map-panel {
  min-height: 580px;
  padding: clamp(2rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper-deep);
  border: 1px solid var(--line);
}
.map-panel .map-mark { width: min(300px, 70%); opacity: .18; align-self: center; }
.map-panel .section-title { max-width: 570px; }

.booking-band { padding: clamp(5rem, 9vw, 8rem) 0; background: var(--wine); color: var(--white); }
.booking-band-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: end; }
.booking-band p { max-width: 550px; color: rgba(255,255,255,.75); }
.booking-band .eyebrow { color: var(--gold-soft); }
.booking-band-actions { display: flex; justify-content: flex-end; gap: 1rem; flex-wrap: wrap; }

.site-footer { position: relative; padding: 4.5rem 0 2rem; background: #e8dfd4; overflow: hidden; }
.footer-mark { position: absolute; right: -3rem; bottom: -4rem; width: 430px; opacity: .08; }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 3rem; }
.footer-logo { width: 250px; margin-bottom: 1.2rem; }
.footer-grid h3 { margin: 0 0 1rem; color: var(--wine); font-size: .72rem; letter-spacing: .17em; text-transform: uppercase; }
.footer-grid p, .footer-grid address { margin: 0; color: var(--muted); font-style: normal; }
.footer-links { display: grid; gap: .45rem; }
.footer-links a { text-decoration: none; }
.footer-bottom { position: relative; display: flex; justify-content: space-between; gap: 1rem; margin-top: 4rem; padding-top: 1.25rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }

/* Interior pages */
.page-hero { padding: clamp(5rem, 9vw, 9rem) 0 clamp(3.5rem, 7vw, 6rem); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .7fr; gap: 3rem; align-items: end; }
.page-hero p { max-width: 540px; margin: 0; color: var(--muted); }
.page-hero .display { color: var(--wine); }

.menu-page { padding: 4rem 0 7rem; }
.menu-tabs { display: flex; gap: .7rem; flex-wrap: wrap; margin-bottom: 3rem; }
.menu-tabs a { padding: .7rem 1rem .6rem; border: 1px solid var(--line); color: var(--wine); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.menu-tabs a[aria-current="page"] { background: var(--wine); color: white; }
.menu-layout { display: grid; grid-template-columns: 260px minmax(0,1fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.menu-sidebar { position: sticky; top: 2rem; }
.menu-sidebar h2 { margin: 0 0 1rem; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.menu-sidebar p { color: var(--muted); font-size: .9rem; }
.menu-list { display: grid; gap: 4rem; }
.menu-section { padding-bottom: 3rem; border-bottom: 1px solid var(--line); }
.menu-section:last-child { border-bottom: 0; }
.menu-section h2 { margin: 0 0 1.5rem; color: var(--wine); font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 500; }
.menu-section-intro { max-width: 720px; color: var(--muted); }
.menu-items { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.8rem 3rem; margin-top: 2rem; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.menu-item h3 { margin: 0; font-family: var(--serif); font-size: 1.45rem; font-weight: 500; line-height: 1.2; }
.menu-item p { grid-column: 1 / -1; margin: -.5rem 0 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.menu-item .price { color: var(--wine); font-weight: 600; white-space: nowrap; }
.menu-note { padding: 1.5rem; background: var(--white); border: 1px solid var(--line); color: var(--muted); font-size: .88rem; }

.booking-page { padding: 4rem 0 7rem; }
.booking-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.booking-aside { position: sticky; top: 2rem; }
.booking-aside h2 { margin: 0 0 1rem; font-family: var(--serif); font-size: 2.5rem; font-weight: 500; }
.booking-aside p { color: var(--muted); }
.booking-facts { display: grid; gap: 1.4rem; margin-top: 2rem; }
.booking-fact { padding-top: 1rem; border-top: 1px solid var(--line); }
.booking-fact strong { display: block; color: var(--wine); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; }
.booking-form { padding: clamp(1.5rem, 4vw, 3rem); background: var(--white); border: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.2rem; }
.field { display: grid; gap: .45rem; }
.field--full { grid-column: 1 / -1; }
label { color: var(--wine); font-size: .72rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
input, select, textarea {
  width: 100%;
  min-height: 52px;
  padding: .78rem .9rem;
  border: 1px solid rgba(85,32,29,.28);
  border-radius: 0;
  background: #fffdf9;
  color: var(--ink);
}
textarea { min-height: 125px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
.checkbox { display: grid; grid-template-columns: 20px 1fr; gap: .7rem; align-items: start; }
.checkbox input { min-height: auto; margin-top: .25rem; }
.checkbox label { color: var(--muted); font-size: .82rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
.form-status { display: none; margin: 1rem 0 0; padding: 1rem; }
.form-status.is-visible { display: block; }
.form-status.success { background: #eef5eb; color: #315026; }
.form-status.error { background: #f8ecea; color: #7a211b; }
.honeypot { position: absolute; left: -9999px; }

.contact-page { padding: 4rem 0 7rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); }
.contact-card { padding: clamp(2rem, 5vw, 4rem); background: var(--white); border: 1px solid var(--line); }
.contact-card h2 { margin: 0 0 1rem; font-family: var(--serif); font-size: 2.6rem; font-weight: 500; }
.contact-card address { font-style: normal; }
.contact-list { display: grid; gap: 1rem; margin: 2rem 0; }
.contact-list a { color: var(--wine); }
.map-frame { width: 100%; min-height: 560px; border: 0; filter: grayscale(1) sepia(.22) contrast(.9); }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .statement, .find-grid, .booking-band-inner, .page-hero-grid, .booking-layout, .contact-grid { grid-template-columns: 1fr; }
  .statement-copy { min-height: 480px; }
  .find-grid { gap: 3rem; }
  .map-panel { min-height: 460px; }
  .booking-band-actions { justify-content: flex-start; }
  .menu-layout { grid-template-columns: 1fr; }
  .menu-sidebar, .booking-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 1.5rem), var(--max)); }
  .header-inner { min-height: 74px; }
  .brand img { width: 155px; }
  .hero-media, .hero-media img { min-height: 68vh; height: 68vh; }
  .hero-caption { left: 1.2rem; right: 1.2rem; bottom: 1.3rem; }
  .intro::before { inset: .55rem; }
  .section-head { display: block; }
  .section-head p { margin-top: 1rem; }
  .menu-grid, .menu-items, .detail-grid, .form-grid { grid-template-columns: 1fr; }
  .menu-card { min-height: 560px; }
  .field--full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: .35rem; }
  .page-hero { padding-top: 4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
