:root {
  --ink: #1a1815;
  --muted: #706a60;
  --line: #d9d1c2;
  --paper: #f4efe4;
  --cream: #f9f5eb;
  --forest: #1f3128;
  --forest-deep: #16241d;
  --oxblood: #7a2e26;
  --gold: #b8965b;
  --white: #fffdf7;
  --shadow: 0 24px 60px rgba(24, 20, 15, .16);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  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;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--oxblood);
  outline-offset: 3px;
  border-radius: 2px;
}

[id] {
  scroll-margin-top: 88px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 48px);
  color: var(--white);
  transition: background .3s var(--ease), color .3s var(--ease), padding .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.site-header.scrolled {
  padding-block: 14px;
  background: rgba(249, 245, 235, .94);
  color: var(--forest-deep);
  border-bottom: 1px solid rgba(217, 209, 194, .8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(24, 20, 15, .05);
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  font-weight: 560;
  text-decoration: none;
  line-height: 1;
}

nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

nav a {
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease);
}

nav a:hover {
  border-color: currentColor;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(13, 25, 19, .84), rgba(13, 25, 19, .48) 45%, rgba(13, 25, 19, .14)),
    linear-gradient(0deg, rgba(13, 25, 19, .78), transparent 38%),
    url("assets/hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin: 0 clamp(20px, 7vw, 84px) clamp(72px, 13vh, 132px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.eyebrow.dark {
  color: var(--oxblood);
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.02;
  font-weight: 430;
  text-wrap: balance;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(48px, 8vw, 104px);
}

.hero-copy {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 253, 247, .88);
  font-size: clamp(17px, 2vw, 21px);
  text-wrap: pretty;
}

.hero-actions,
.visit-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: .02em;
  border: 1px solid transparent;
  transition: transform .18s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  will-change: transform;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn.primary {
  background: var(--oxblood);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(122, 46, 38, .22);
}

.btn.primary:hover {
  box-shadow: 0 10px 24px rgba(122, 46, 38, .28);
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(255, 253, 247, .72);
  background: rgba(255, 253, 247, .08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn.ghost:hover {
  background: rgba(255, 253, 247, .16);
}

.btn.outline {
  color: var(--forest);
  border-color: var(--forest);
  background: transparent;
}

.btn.outline:hover {
  background: var(--forest);
  color: var(--white);
}

.section {
  width: min(1240px, calc(100% - clamp(40px, 8vw, 88px)));
  margin: 0 auto;
  padding: clamp(78px, 12vw, 140px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(320px, 1fr);
  gap: clamp(34px, 8vw, 92px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
}

.intro-copy p,
.visit-card p,
.menu-grid p,
.review-grid p {
  color: var(--muted);
  font-size: 17px;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.menu-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.menu-grid article {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.menu-grid article:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(24, 20, 15, .08);
  border-color: rgba(31, 49, 40, .35);
}

.menu-grid span {
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
}

.menu-grid h3 {
  margin: 48px 0 12px;
  font-size: 29px;
}

.gallery {
  width: min(1320px, calc(100% - clamp(24px, 5vw, 60px)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-bottom: clamp(78px, 12vw, 138px);
}

figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

figure.wide {
  grid-column: span 2;
  grid-row: span 2;
}

figure img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: transform .7s var(--ease);
}

figure.wide img {
  aspect-ratio: 1 / 1.02;
}

figure:hover img {
  transform: scale(1.035);
}

figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--forest-deep);
  background: rgba(255, 253, 247, .92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .01em;
}

.reviews {
  padding-top: 0;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.review-grid article {
  padding: 28px;
  min-height: 180px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.review-grid p {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.18;
  color: var(--forest);
  text-wrap: pretty;
}

.visit {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(420px, 1fr);
  gap: 18px;
  align-items: stretch;
  padding-top: 0;
}

.visit-card {
  padding: clamp(28px, 5vw, 54px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.visit-card h2 {
  font-size: clamp(34px, 4.5vw, 58px);
}

iframe {
  width: 100%;
  min-height: 500px;
  border: 1px solid var(--line);
  background: var(--cream);
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 36px clamp(20px, 5vw, 56px) 108px;
  color: var(--white);
  background: var(--forest-deep);
}

footer p {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 26px;
}

footer a {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  opacity: .82;
  transition: opacity .2s var(--ease);
}

footer a:hover {
  opacity: 1;
}

.mobile-actions {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 860px) {
  nav {
    display: none;
  }

  .site-header {
    padding: 16px 20px;
  }

  .brand {
    font-size: 20px;
  }

  [id] {
    scroll-margin-top: 72px;
  }

  .hero-media {
    background-image:
      linear-gradient(180deg, rgba(13, 25, 19, .34) 0%, rgba(13, 25, 19, .18) 30%, rgba(13, 25, 19, .82) 82%, rgba(13, 25, 19, .92) 100%),
      url("assets/hero.jpg");
    background-position: center 30%;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 0 20px clamp(104px, 16vh, 148px);
  }

  .hero-content .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    opacity: .9;
  }

  h1 {
    font-size: clamp(36px, 10.5vw, 52px);
    line-height: 1.03;
    letter-spacing: 0;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.5;
    max-width: 34ch;
    color: rgba(255, 253, 247, .82);
  }

  .hero-actions {
    margin-top: 26px;
    gap: 10px;
  }

  .hero-actions .btn {
    flex: 1 1 140px;
    min-height: 50px;
    padding: 12px 20px;
  }

  .section {
    width: calc(100% - 40px);
    padding: clamp(64px, 14vw, 88px) 0;
  }

  h2 {
    font-size: clamp(30px, 7.6vw, 44px);
    line-height: 1.06;
  }

  .intro,
  .visit {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .intro-copy p,
  .visit-card p,
  .menu-grid p,
  .review-grid p {
    font-size: 16px;
  }

  .menu-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid article {
    min-height: 0;
    padding: 22px;
  }

  .menu-grid h3 {
    margin-top: 28px;
    font-size: 26px;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .gallery {
    width: calc(100% - 28px);
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  figure.wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  figure img {
    aspect-ratio: 1 / 1;
    min-height: auto;
  }

  figure.wide img {
    aspect-ratio: 5 / 4;
  }

  figcaption {
    left: 10px;
    bottom: 10px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .review-grid p {
    font-size: clamp(19px, 5.2vw, 24px);
  }

  .visit-card {
    padding: 26px 22px;
  }

  iframe {
    min-height: 340px;
  }

  footer {
    display: block;
    padding: 32px 22px 116px;
  }

  footer a {
    display: inline-block;
    margin-top: 12px;
  }

  .mobile-actions {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 9px;
    border: 1px solid rgba(217, 209, 194, .86);
    border-radius: 999px;
    background: rgba(249, 245, 235, .95);
    backdrop-filter: blur(20px) saturate(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(1.1);
    box-shadow: 0 14px 34px rgba(24, 20, 15, .22), 0 2px 6px rgba(24, 20, 15, .08);
  }

  .mobile-actions a {
    min-height: 48px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--white);
    background: var(--forest);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .04em;
    font-size: 14px;
    transition: transform .18s var(--ease);
  }

  .mobile-actions a:active {
    transform: scale(.97);
  }

  .mobile-actions a:first-child {
    background: var(--oxblood);
  }
}

@media (max-width: 420px) {
  .hero-content {
    margin-bottom: clamp(112px, 18vh, 160px);
  }

  h1 {
    font-size: clamp(32px, 9.6vw, 44px);
  }
}
