@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #1a1815;
  --muted: #6b645a;
  --line: #d9d1c2;
  --paper: #f4efe4;
  --cream: #f9f5eb;
  --forest: #1f3128;
  --forest-deep: #16241d;
  --oxblood: #7a2e26;
  --white: #fffdf7;
  --accent: #7a2e26;
  --secondary: #9a7430;
}

* { 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;
}
a { color: inherit; }
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 44px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(12, 21, 17, .62), rgba(12, 21, 17, 0));
}
.brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
}
.nav {
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.nav a { text-decoration: none; }
.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 64px) 80px;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(10, 19, 15, .82), rgba(10, 19, 15, .42) 48%, rgba(10, 19, 15, .18)),
    var(--hero);
  background-size: cover;
  background-position: center;
}
.hero-inner { max-width: 780px; }
.kicker {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 1.02;
}
h1 {
  margin: 0;
  font-size: clamp(46px, 10vw, 116px);
  max-width: 850px;
}
.hero p {
  max-width: 600px;
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255, 253, 247, .88);
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-weight: 800;
}
.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn.light {
  color: #fff;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
}
main { overflow: hidden; }
.section {
  padding: clamp(76px, 10vw, 132px) clamp(18px, 4vw, 44px);
}
.inner {
  max-width: 1240px;
  margin: 0 auto;
}
.story-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}
.section-label {
  margin: 0 0 18px;
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h2 {
  margin: 0;
  font-size: clamp(34px, 6vw, 76px);
}
.large-copy {
  margin-top: 0;
  font-size: clamp(20px, 3vw, 31px);
  line-height: 1.25;
  color: var(--forest);
}
.muted { color: var(--muted); }
.split-note {
  margin-top: 28px;
  padding: 20px;
  border-left: 3px solid var(--secondary);
  background: var(--cream);
}
.gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
}
.photo {
  min-height: 260px;
  background: var(--cream);
  border: 1px solid var(--line);
}
.photo:first-child {
  grid-row: span 2;
}
.photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}
.photo figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.menu-band {
  background: var(--forest);
  color: var(--white);
}
.menu-band .section-label { color: #dfc189; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}
.menu-card {
  min-height: 210px;
  border: 1px solid rgba(255,255,255,.2);
  padding: 22px;
  background: rgba(255,255,255,.04);
}
.menu-card h3 {
  margin: 0 0 12px;
  font-size: 25px;
}
.menu-card p { color: rgba(255,253,247,.76); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.review {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  min-height: 190px;
}
.stars {
  color: var(--secondary);
  letter-spacing: .05em;
  font-weight: 800;
}
.visit {
  background: var(--cream);
}
.visit-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 18px;
  align-items: stretch;
}
.visit-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 26px;
}
.hours {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
iframe {
  width: 100%;
  min-height: 520px;
  border: 1px solid var(--line);
  display: block;
}
footer {
  padding: 40px clamp(18px, 4vw, 44px) 88px;
  background: var(--forest-deep);
  color: var(--white);
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.mobile-actions {
  position: fixed;
  z-index: 20;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: rgba(249,245,235,.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}
.mobile-actions a {
  min-height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--forest);
  text-decoration: none;
  font-weight: 800;
}
.mobile-actions a:last-child { background: var(--accent); }
@media (max-width: 900px) {
  .nav { display: none; }
  .hero { min-height: 92svh; padding-bottom: 92px; }
  .story-grid, .visit-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .photo:first-child { grid-row: auto; grid-column: span 2; }
  .menu-grid, .review-grid { grid-template-columns: 1fr; }
  iframe { min-height: 380px; }
  .footer-inner { display: block; }
  .mobile-actions { display: grid; }
}
@media (max-width: 560px) {
  h1 { font-size: clamp(44px, 15vw, 68px); }
  .actions .btn { width: 100%; }
  .gallery { grid-template-columns: 1fr; }
  .photo:first-child { grid-column: auto; }
  .section { padding-left: 16px; padding-right: 16px; }
}
