﻿:root {
  --ink: #1a1815;
  --muted: #6b645a;
  --line: #d9d1c2;
  --line-soft: #e6dfd0;
  --paper: #f4efe4;
  --cream: #f9f5eb;
  --forest: #1f3128;
  --forest-deep: #16241d;
  --oxblood: #7a2e26;
  --claret: #9a3a30;
  --butter: #f4c95d;
  --white: #fffdf7;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Aptos, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--butter); color: var(--forest-deep); }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 44px);
  color: var(--white);
  transition: background .3s ease, color .3s ease, padding .3s ease,
              border-color .3s ease, box-shadow .3s ease;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.site-header.is-scrolled {
  background: rgba(249, 245, 235, .92);
  color: var(--forest-deep);
  padding-block: 12px;
  border-color: rgba(217, 209, 194, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px -18px rgba(22,36,29,.35);
}
.brand {
  font-family: "Fraunces", "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .005em;
  text-decoration: none;
}
nav {
  display: flex;
  gap: 30px;
  justify-content: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .16em;
  font-weight: 700;
}
nav a, .header-cta { text-decoration: none; }
nav a {
  position: relative;
  padding-block: 4px;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
nav a:hover::after { transform: scaleX(1); }
.header-cta {
  justify-self: end;
  min-height: 40px;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.site-header.is-scrolled .header-cta:hover {
  background: var(--forest-deep);
  color: var(--white);
  border-color: var(--forest-deep);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest-deep);
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(11,23,18,.55) 0%,
      rgba(11,23,18,0) 22%,
      rgba(11,23,18,0) 48%,
      rgba(11,23,18,.58) 78%,
      rgba(11,23,18,.9) 100%),
    linear-gradient(90deg,
      rgba(11,23,18,.72) 0%,
      rgba(11,23,18,.28) 46%,
      rgba(11,23,18,0) 78%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(80px, 12vh, 136px) clamp(18px, 6vw, 88px);
  color: var(--white);
  text-shadow: 0 1px 20px rgba(0,0,0,.15);
}
.kicker, .eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
}
h1, h2, h3 {
  font-family: "Fraunces", "Cormorant Garamond", Georgia, serif;
  font-weight: 450;
  line-height: 1.04;
  letter-spacing: 0;
}
h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1.08;
  max-width: 620px;
}
.hero-copy > p:not(.kicker) {
  max-width: 52ch;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  margin: 22px 0 0;
  color: rgba(255,253,247,.92);
}

/* ---------- Buttons ---------- */
.hero-actions, .visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: transform .15s ease, background .2s ease,
              color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.primary {
  background: var(--oxblood);
  color: var(--white);
  box-shadow: 0 10px 24px -18px rgba(122,46,38,.9);
}
.primary:hover { background: var(--claret); }
.secondary { background: var(--cream); color: var(--forest-deep); }
.secondary:hover { background: var(--white); }
.outline {
  border: 1px solid var(--line);
  color: var(--forest-deep);
  background: transparent;
}
.outline:hover { background: var(--cream); }

/* ---------- Sections ---------- */
.section-pad { padding: clamp(84px, 11vw, 148px) clamp(20px, 4vw, 44px); }
.intro {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 100px);
  border-bottom: 1px solid var(--line);
}
.intro h2, .section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 5.6vw, 72px);
}
.intro h2 { max-width: 14ch; }
.intro-text {
  color: var(--muted);
  font-size: clamp(18px, 1.9vw, 21px);
  line-height: 1.65;
}
.intro-text p { margin: 0 0 20px; }
.intro-text p:last-child { margin-bottom: 0; }
.eyebrow { color: var(--oxblood); }
.section-heading {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-heading p {
  margin: 18px auto 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 19px);
}

/* ---------- Gallery ---------- */
.gallery { background: var(--cream); }
.gallery-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
figure:hover {
  transform: translateY(-2px);
  border-color: #cdc2ad;
  box-shadow: 0 22px 40px -32px rgba(22,36,29,.35);
}
figure.wide { grid-column: span 2; grid-row: span 2; }
figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .6s ease;
}
figure:hover img { transform: scale(1.03); }
figure.wide img { aspect-ratio: 1 / 1; }
figcaption {
  padding: 14px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  color: var(--forest);
  border-top: 1px solid var(--line-soft);
  background: var(--white);
}

/* ---------- Menu ---------- */
.menu, .reviews, .visit {
  max-width: 1240px;
  margin: 0 auto;
}
.menu-grid, .review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.menu-grid article, .review-grid article {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 30px 28px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.menu-grid article:hover, .review-grid article:hover {
  transform: translateY(-2px);
  border-color: #cdc2ad;
  box-shadow: 0 22px 40px -32px rgba(22,36,29,.28);
}
.menu-grid h3 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.1;
}
.menu-grid p, .review-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}
.menu-grid .feature {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.menu-grid .feature:hover { border-color: var(--forest); }
.menu-grid .feature h3 { color: var(--white); }
.menu-grid .feature p { color: rgba(255,253,247,.82); }
.menu-grid .feature a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--butter);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  text-decoration: none;
}
.menu-grid .feature a::after {
  content: "鈫?;
  transition: transform .2s ease;
}
.menu-grid .feature a:hover::after { transform: translateX(4px); }

/* ---------- Reviews ---------- */
.review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.review-grid article { min-height: 200px; padding: 32px 30px; }
.review-grid span {
  display: block;
  color: var(--oxblood);
  margin-bottom: 18px;
  letter-spacing: .28em;
  font-size: 16px;
  font-family: "Inter", "Segoe UI Symbol", "Apple Color Emoji", system-ui, sans-serif;
  font-variant-emoji: text;
  line-height: 1;
}
.review-grid p {
  font-family: "Fraunces", "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
}
.review-grid cite, .review-grid .attribution {
  display: block;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-style: normal;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--muted);
  font-family: "Inter", Aptos, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Visit ---------- */
.visit {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 20px;
  align-items: stretch;
}
.visit-copy {
  background: var(--forest);
  color: var(--white);
  padding: clamp(32px, 5vw, 60px);
  display: flex;
  flex-direction: column;
}
.visit-copy h2 {
  font-size: clamp(38px, 5vw, 68px);
  margin: 0 0 18px;
}
.visit-copy > p:not(.eyebrow) {
  color: rgba(255,253,247,.86);
  font-size: 18px;
  line-height: 1.6;
  max-width: 42ch;
}
.visit-copy .eyebrow { color: var(--butter); }
dl {
  margin: 32px 0 0;
  font-size: 15px;
}
dl div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,253,247,.18);
}
dl div:last-child { border-bottom: 1px solid rgba(255,253,247,.18); }
dt {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}
dd { margin: 0; color: rgba(255,253,247,.82); text-align: right; }
.visit-actions { margin-top: 32px; }
.visit-copy .button.primary {
  background: var(--butter);
  color: var(--forest-deep);
  box-shadow: none;
}
.visit-copy .button.primary:hover { background: var(--white); }
.visit-copy .button.secondary { background: var(--cream); color: var(--forest-deep); }
.visit-copy .button.outline {
  border-color: rgba(255,253,247,.42);
  color: var(--white);
}
.visit-copy .button.outline:hover { background: rgba(255,253,247,.08); }
.visit iframe {
  width: 100%;
  min-height: 560px;
  height: 100%;
  border: 1px solid var(--line);
  display: block;
}

/* ---------- Footer ---------- */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 34px clamp(20px, 4vw, 44px) 96px;
  background: var(--forest-deep);
  color: var(--white);
  font-size: 14px;
}
footer p { margin: 0; color: rgba(255,253,247,.72); }
footer a { color: var(--butter); font-weight: 700; text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ---------- Mobile actions ---------- */
.mobile-actions { display: none; }

/* ---------- Responsive: tablet ---------- */
@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 14px 16px;
  }
  nav { display: none; }
  .header-cta { min-height: 36px; padding: 8px 14px; }
  .hero-copy {
    width: calc(100% - 32px);
    margin: 0 16px 108px;
  }
  .hero-shade {
    background:
      linear-gradient(180deg,
        rgba(11,23,18,.55) 0%,
        rgba(11,23,18,.1) 30%,
        rgba(11,23,18,.35) 60%,
        rgba(11,23,18,.9) 100%),
      linear-gradient(90deg,
        rgba(11,23,18,.55) 0%,
        rgba(11,23,18,.2) 60%,
        rgba(11,23,18,0) 100%);
  }
  h1 {
    font-size: 42px;
    line-height: 1.06;
    max-width: 560px;
  }
  .hero-copy > p:not(.kicker) {
    font-size: 17px;
    line-height: 1.5;
    max-width: 40ch;
  }
  .intro, .visit { grid-template-columns: 1fr; }
  .intro h2 { max-width: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  figure.wide { grid-column: span 2; grid-row: auto; }
  figcaption { padding: 12px 14px; font-size: 11.5px; }
  .menu-grid, .review-grid { grid-template-columns: 1fr; gap: 12px; }
  .menu-grid article, .review-grid article { min-height: auto; padding: 26px 24px; }
  .review-grid p { font-size: 18px; }
  .review-grid article { padding: 28px 24px; }
  .visit { gap: 12px; }
  .visit iframe { min-height: 380px; }
  footer {
    display: block;
    padding-bottom: 108px;
  }
  footer p + p { margin-top: 8px; }
  footer a { display: inline-block; margin-top: 4px; overflow-wrap: anywhere; }
  .mobile-actions {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    background: rgba(249,245,235,.94);
    border: 1px solid var(--line);
    border-radius: 18px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 12px 32px -18px rgba(22,36,29,.4);
  }
  .mobile-actions a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--forest);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .02em;
  }
  .mobile-actions a:active { background: var(--forest-deep); }
}

/* ---------- Responsive: phone ---------- */
@media (max-width: 520px) {
  .brand { font-size: 20px; }
  h1 { font-size: 34px; }
  .hero-copy { margin-bottom: 116px; }
  .hero-copy > p:not(.kicker) { font-size: 16px; }
  .hero-actions, .visit-actions { display: grid; }
  .button { width: 100%; padding: 14px 20px; }
  .section-pad { padding-inline: 16px; padding-block: clamp(64px, 14vw, 96px); }
  .gallery-grid { gap: 8px; }
  figcaption { min-height: 54px; font-size: 11px; padding: 10px 12px; letter-spacing: .12em; }
  .intro h2, .section-heading h2 { font-size: clamp(32px, 9vw, 46px); }
  .section-heading { margin-bottom: 32px; }
  .visit-copy { padding: 28px 22px; }
  .visit-copy h2 { font-size: clamp(32px, 9vw, 46px); }
  .visit-copy > p:not(.eyebrow) { font-size: 17px; }
  dl div { display: block; padding: 12px 0; }
  dt { margin-bottom: 2px; }
  dd { text-align: left; margin-top: 4px; }
}
