:root {
  --ink: #1c1a17;
  --muted: #6f665d;
  --paper: #fbf7ef;
  --cream: #f3eadc;
  --sage: #617062;
  --moss: #2f4638;
  --wine: #7a2f37;
  --gold: #c99a4a;
  --line: rgba(28, 26, 23, .14);
  --shadow: 0 24px 70px rgba(40, 31, 22, .16);
  --container: 1220px;
  --wide-container: 1440px;
  --page-gutter: clamp(1rem, 3vw, 2.5rem);
  --ease: cubic-bezier(.2, .8, .2, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; }
p, h1, h2, h3, a, strong, span, small, summary, label {
  overflow-wrap: break-word;
  hyphens: auto;
}
.skip-link { position: absolute; left: 1rem; top: -5rem; z-index: 20; background: var(--ink); color: white; padding: .7rem 1rem; }
.skip-link:focus { top: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem max(var(--page-gutter), calc((100vw - var(--wide-container)) / 2 + var(--page-gutter)));
  background: rgba(251, 247, 239, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; letter-spacing: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  color: white;
  background: var(--moss);
  font-family: Georgia, serif;
  font-size: 1.35rem;
}
.brand strong { display: block; font-family: Georgia, serif; font-size: 1.25rem; line-height: 1; }
.brand small { display: block; color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; }
.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav a {
  text-decoration: none;
  padding: .65rem .85rem;
  border-radius: 999px;
  color: #342f2a;
  font-size: .94rem;
  transition: background-color .22s var(--ease), color .22s var(--ease), transform .22s var(--ease);
}
.site-nav a:hover, .site-nav a[aria-current="page"] { background: rgba(97, 112, 98, .12); }
.site-nav .nav-cta { background: var(--wine); color: white; margin-left: .35rem; }
.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  background: #64262d;
  color: white;
}
.nav-toggle { display: none; border: 0; background: transparent; padding: .4rem; }
.nav-toggle span { display: block; width: 1.65rem; height: 2px; margin: 5px 0; background: var(--ink); }
.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 4.4rem));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}
.hero picture, .hero img, .hero-overlay { position: absolute; inset: 0; height: 100%; }
.hero img { object-fit: cover; }
.hero-overlay { background: linear-gradient(90deg, rgba(20, 18, 14, .72), rgba(20, 18, 14, .28) 55%, rgba(20, 18, 14, .1)); }
.hero-content {
  position: relative;
  width: min(760px, calc(100% - (var(--page-gutter) * 2)));
  margin-left: max(var(--page-gutter), calc((100vw - var(--wide-container)) / 2 + var(--page-gutter)));
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.eyebrow { margin: 0 0 .9rem; color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.05; letter-spacing: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 600; }
h1 { margin: 0; font-size: clamp(3rem, 6.8vw, 6.1rem); max-width: 11ch; }
h2 { margin: 0 0 1rem; font-size: clamp(2rem, 3.4vw, 3.55rem); max-width: 12ch; }
h3 { margin: 0 0 .55rem; font-size: 1.1rem; }
.hero-content p:not(.eyebrow) { max-width: 39rem; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.hero-actions, .strip-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), background-color .24s var(--ease), border-color .24s var(--ease);
}
.btn-primary { background: var(--wine); color: white; }
.btn-secondary { background: white; color: var(--ink); }
.btn-outline { border-color: var(--line); color: var(--ink); background: transparent; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(28, 26, 23, .16); }
.btn:active { transform: translateY(0); box-shadow: 0 8px 20px rgba(28, 26, 23, .12); }
.text-link { color: var(--wine); font-weight: 800; text-underline-offset: .25rem; }
.text-link:hover { color: #5d2028; }
.section {
  width: min(100% - (var(--page-gutter) * 2), var(--container));
  margin-inline: auto;
  padding: clamp(3.5rem, 6vw, 6.25rem) 0;
}
.intro { display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.intro p:last-child { max-width: 48rem; font-size: clamp(1.15rem, 1.5vw, 1.35rem); color: #403a34; }
.split-feature, .story-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.08fr); gap: clamp(2rem, 5vw, 4.75rem); align-items: center; }
.feature-copy { max-width: 36rem; }
.image-stack { display: grid; grid-template-columns: 1fr .72fr; gap: clamp(.85rem, 1.5vw, 1.25rem); align-items: end; }
.image-stack img:first-child { aspect-ratio: 4 / 5; object-fit: cover; }
.image-stack img:last-child { aspect-ratio: 3 / 4; object-fit: cover; margin-bottom: 12%; }
.image-stack img, .story-grid img {
  border-radius: 8px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), filter .5s var(--ease);
}
.image-stack img:hover, .story-grid img:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(40, 31, 22, .18);
  filter: saturate(1.04);
}
.section-heading { max-width: 56rem; margin-bottom: 2rem; }
.highlight-grid, .values, .contact-grid, .specials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 1.6vw, 1.35rem); }
.highlight-grid article, .values article, .contact-grid article, .special-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 100%;
  padding: clamp(1.35rem, 2vw, 1.75rem);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease), background-color .28s var(--ease);
}
.highlight-grid article:hover, .values article:hover, .contact-grid article:hover, .special-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 47, 55, .28);
  box-shadow: 0 18px 48px rgba(40, 31, 22, .12);
  background: #f6eddf;
}
.highlight-grid span { color: var(--wine); font-weight: 900; }
.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100% - (var(--page-gutter) * 2), var(--wide-container));
  margin-inline: auto;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.proof-band div { background: var(--moss); color: white; padding: clamp(1.5rem, 4vw, 3rem); }
.proof-band strong { display: block; font-family: Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.6rem); }
.proof-band span { color: rgba(255,255,255,.76); }
.reservation-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  background: #efe5d4;
  border-radius: 8px;
  padding-inline: clamp(1.25rem, 3vw, 2.5rem);
}
.reservation-strip div:first-child { max-width: 54rem; }
.page-hero, .contact-hero {
  min-height: 480px;
  display: grid;
  align-items: end;
  padding: clamp(4rem, 7vw, 6.5rem) max(var(--page-gutter), calc((100vw - var(--wide-container)) / 2 + var(--page-gutter)));
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-hero::before, .contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,18,15,.76), rgba(18,18,15,.25));
}
.page-hero > div, .contact-hero > div, .contact-hero form { position: relative; }
.page-hero > div { max-width: 760px; }
.page-hero p, .contact-hero p { max-width: 43rem; font-size: clamp(1.05rem, 1.4vw, 1.18rem); }
.menu-hero { background-image: url("https://images.unsplash.com/photo-1559847844-5315695dadae?auto=format&fit=crop&w=1800&q=80"); }
.about-hero { background-image: url("https://images.unsplash.com/photo-1559329007-40df8a9345d8?auto=format&fit=crop&w=1800&q=80"); }
.gallery-hero { background-image: url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1800&q=80"); }
.specials-hero { background-image: url("https://images.unsplash.com/photo-1528605248644-14dd04022da1?auto=format&fit=crop&w=1800&q=80"); }
.menu-layout { display: grid; grid-template-columns: minmax(240px, 310px) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.menu-note {
  position: sticky;
  top: 6rem;
  padding: clamp(1.35rem, 2vw, 1.75rem);
  border-radius: 8px;
  color: white;
  background: var(--moss);
  box-shadow: var(--shadow);
}
.menu-note h2 { font-size: clamp(1.75rem, 2.3vw, 2.45rem); max-width: 8ch; }
.menu-note .btn { width: 100%; margin-top: 1rem; }
.menu-sections { max-width: 820px; }
.menu-category { margin-bottom: 2.6rem; }
.category-title { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); padding-bottom: .75rem; margin-bottom: .5rem; }
.category-title span { font-family: Georgia, serif; font-size: 2rem; }
.category-title small { color: var(--muted); align-self: end; }
.menu-item { display: flex; justify-content: space-between; gap: 1.5rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.menu-item h2 { font-family: inherit; font-size: 1.08rem; margin: 0 0 .2rem; }
.menu-item p { margin: 0; color: var(--muted); }
.menu-item strong { white-space: nowrap; }
.story-grid img { aspect-ratio: 5 / 4; object-fit: cover; box-shadow: var(--shadow); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.75rem, 1.2vw, 1rem);
  width: min(100% - (var(--page-gutter) * 2), var(--wide-container));
  margin: clamp(.75rem, 1.5vw, 1.25rem) auto;
}
.gallery-grid img {
  min-height: 280px;
  height: clamp(280px, 28vw, 470px);
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform .5s var(--ease), filter .5s var(--ease), box-shadow .5s var(--ease);
}
.gallery-grid img:hover {
  transform: scale(1.015);
  filter: saturate(1.06) contrast(1.03);
  box-shadow: 0 18px 48px rgba(40, 31, 22, .16);
}
.gallery-grid img:nth-child(1), .gallery-grid img:nth-child(6) { grid-column: span 2; }
.contact-hero {
  grid-template-columns: minmax(0, 700px) minmax(320px, 430px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  justify-content: space-between;
  background-image: url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1800&q=80");
}
.reservation-form {
  display: grid;
  gap: .85rem;
  padding: 1.2rem;
  border-radius: 8px;
  background: rgba(251, 247, 239, .96);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.reservation-form label { display: grid; gap: .35rem; font-weight: 800; }
.reservation-form input, .reservation-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 6px; padding: .85rem; font: inherit; }
.reservation-form input:focus, .reservation-form textarea:focus {
  outline: 2px solid rgba(201, 154, 74, .45);
  border-color: rgba(122, 47, 55, .35);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.map-panel {
  width: min(100% - (var(--page-gutter) * 2), var(--wide-container));
  margin: 0 auto clamp(1rem, 2vw, 2rem);
  overflow: hidden;
  border-radius: 8px;
}
.map-panel iframe { width: 100%; height: 420px; border: 0; display: block; filter: saturate(.85); }
.faq-list { max-width: 900px; margin: 0 auto; }
details { border-top: 1px solid var(--line); padding: 1.1rem 0; }
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 900; font-size: 1.1rem; }
details p { color: var(--muted); margin-bottom: 0; }
.site-footer {
  background: #171916;
  color: white;
  padding: clamp(2.5rem, 5vw, 4rem) max(var(--page-gutter), calc((100vw - var(--wide-container)) / 2 + var(--page-gutter)));
}
.footer-grid { display: grid; grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(160px, 1fr)); gap: clamp(1.5rem, 4vw, 3.5rem); }
.site-footer p, .site-footer a, .site-footer small { color: rgba(255,255,255,.72); }
.site-footer a { display: block; text-decoration: none; margin: .35rem 0; }
.site-footer h2 { font-family: inherit; font-size: .9rem; text-transform: uppercase; letter-spacing: .12em; color: white; }
.footer-brand { margin-bottom: 1rem; color: white; }
.compact-footer { text-align: center; padding: 1.4rem; }
.compact-footer a { display: inline; color: white; text-decoration: underline; text-underline-offset: .25rem; }
.legal-page { max-width: 900px; margin: 0 auto; }
.legal-page h1 { color: var(--ink); max-width: none; font-size: clamp(2.4rem, 5vw, 4.5rem); }
.legal-page a { color: var(--wine); font-weight: 800; }
@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; inset: 100% 0 auto 0; display: none; flex-direction: column; align-items: stretch; padding: .75rem 1rem 1rem; background: var(--paper); border-bottom: 1px solid var(--line); }
  .site-nav.is-open { display: flex; }
  .site-nav a { border-radius: 6px; }
  .site-nav .nav-cta { margin-left: 0; text-align: center; }
  .intro, .split-feature, .story-grid, .menu-layout, .contact-hero, .footer-grid { grid-template-columns: 1fr; }
  .menu-note { position: static; }
  .menu-sections { max-width: none; }
  .highlight-grid, .values, .contact-grid, .specials-grid, .proof-band { grid-template-columns: 1fr; }
  .reservation-strip { display: block; }
}
@media (max-width: 640px) {
  .site-header { padding: .75rem 1rem; }
  .brand strong { font-size: 1.05rem; }
  .hero { min-height: 690px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(20,18,14,.84), rgba(20,18,14,.28)); }
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
  .hero-actions .btn, .strip-actions .btn { width: 100%; }
  .image-stack { grid-template-columns: 1fr; }
  .image-stack img:last-child { margin-bottom: 0; }
  .category-title, .menu-item { display: block; }
  .menu-item strong { display: block; margin-top: .4rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img, .gallery-grid img:nth-child(1), .gallery-grid img:nth-child(6) { grid-column: auto; height: auto; min-height: 0; aspect-ratio: 4 / 3; }
  .form-row { grid-template-columns: 1fr; }
}
@media (min-width: 1280px) {
  .hero { min-height: min(780px, calc(100vh - 4.4rem)); }
  .hero img { transform: scale(1.02); transform-origin: center; }
  .page-hero { min-height: 520px; }
  .contact-hero { min-height: 620px; }
}
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal:nth-child(2) { transition-delay: .06s; }
  .reveal:nth-child(3) { transition-delay: .12s; }
  .hero-content {
    animation: heroIn .85s var(--ease) both;
  }
  @keyframes heroIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
