:root {
  --green: #0f3d2e;
  --green-900: #09271e;
  --red: #8c1d18;
  --sand: #f5efe6;
  --sand-2: #eadfce;
  --gold: #c8a96a;
  --copper: #b9683e;
  --ink: #1f1a15;
  --muted: #74695d;
  --white: #fffaf2;
  --shadow: 0 24px 70px rgba(15, 61, 46, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(30deg, rgba(200, 169, 106, 0.18) 12%, transparent 12.5%, transparent 87%, rgba(200, 169, 106, 0.18) 87.5%),
    linear-gradient(150deg, rgba(200, 169, 106, 0.18) 12%, transparent 12.5%, transparent 87%, rgba(200, 169, 106, 0.18) 87.5%);
  background-size: 72px 124px;
  z-index: -2;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(200, 169, 106, 0.28);
  background: rgba(9, 39, 30, 0.92);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: grid;
  gap: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand span {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-menu a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 250, 242, 0.82);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  transition: transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 169, 106, 0.38);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle::before,
.nav-toggle::after,
.nav-toggle span {
  transition: transform 180ms ease, opacity 180ms ease;
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.nav-menu a:focus-visible,
.menu-tab:focus-visible {
  outline: 3px solid rgba(200, 169, 106, 0.78);
  outline-offset: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: var(--green-900);
  background: var(--gold);
}

.btn-primary:hover {
  background: #d8bd7d;
}

.btn-ghost {
  color: var(--green);
  border-color: rgba(15, 61, 46, 0.24);
  background: rgba(255, 250, 242, 0.7);
}

.btn-dark {
  color: var(--white);
  background: var(--green);
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: end;
  position: relative;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 39, 30, 0.92), rgba(9, 39, 30, 0.58) 44%, rgba(140, 29, 24, 0.22)),
    linear-gradient(0deg, rgba(9, 39, 30, 0.72), rgba(9, 39, 30, 0.04) 48%);
  z-index: -1;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  z-index: -2;
  transform: translateY(calc(var(--scroll, 0) * 1px));
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 88px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-title h2,
.section-title-row h2,
.split-content h2,
.feature-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
}

.hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-cta,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 56px;
  max-width: 820px;
  border: 1px solid rgba(200, 169, 106, 0.32);
  background: rgba(200, 169, 106, 0.18);
}

.hero-fact {
  padding: 20px;
  background: rgba(9, 39, 30, 0.58);
}

.hero-fact strong {
  display: block;
  color: var(--white);
}

.hero-fact span {
  color: rgba(255, 250, 242, 0.68);
  font-size: 0.92rem;
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: rgba(255, 250, 242, 0.54);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-title {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-title h2,
.split-content h2,
.feature-copy h2 {
  color: var(--green);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.section-title p,
.split-content p,
.feature-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.story-card,
.event-card,
.contact-card,
.reservation-card,
.product-card {
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(15, 61, 46, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(15, 61, 46, 0.08);
}

.info-card,
.story-card,
.event-card,
.contact-card,
.reservation-card {
  padding: 26px;
}

.info-card h3,
.story-card h3,
.event-card h3,
.contact-card h3,
.reservation-card h2 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--green);
  font-size: 1.65rem;
}

.info-card p,
.story-card p,
.event-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.split,
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-media,
.feature-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1672 / 941;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--green-900);
}

.split-media img,
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.badge {
  padding: 8px 12px;
  border: 1px solid rgba(200, 169, 106, 0.42);
  border-radius: 999px;
  color: var(--green);
  background: rgba(200, 169, 106, 0.16);
  font-size: 0.88rem;
  font-weight: 800;
}

.page-hero {
  position: relative;
  min-height: 58svh;
  display: grid;
  align-items: end;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 39, 30, 0.9), rgba(9, 39, 30, 0.34)), linear-gradient(0deg, rgba(9, 39, 30, 0.66), transparent);
  z-index: -1;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-hero .container {
  padding: 98px 0 74px;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.page-hero p {
  max-width: 660px;
  color: rgba(255, 250, 242, 0.84);
  font-size: 1.08rem;
}

.menu-tabs-wrap {
  position: sticky;
  top: 76px;
  z-index: 30;
  border-bottom: 1px solid rgba(15, 61, 46, 0.1);
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(14px);
}

.menu-tabs-helper {
  display: none;
}

.menu-tabs-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.menu-tabs {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tabs-arrow {
  display: none;
}

.menu-tab {
  flex: 0 0 auto;
  border: 1px solid rgba(15, 61, 46, 0.16);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--green);
  background: rgba(255, 250, 242, 0.78);
  font-weight: 850;
  cursor: pointer;
}

.menu-tab.is-active {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.menu-section {
  scroll-margin-top: 150px;
  padding: 54px 0;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-title-row h2 {
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-title-row span {
  color: var(--muted);
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-media {
  aspect-ratio: 1402 / 1122;
  overflow: hidden;
  background: var(--green-900);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-body {
  padding: 18px;
}

.product-category {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.product-heading h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--green);
  font-size: 1.45rem;
}

.product-heading strong {
  color: var(--red);
  white-space: nowrap;
}

.product-body p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid rgba(15, 61, 46, 0.16);
}

.timeline-item strong {
  color: var(--red);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
}

.map-frame {
  overflow: hidden;
  min-height: 480px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--green);
}

.map-frame iframe {
  width: 100%;
  height: 480px;
  border: 0;
  filter: saturate(0.78) sepia(0.08);
}

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

.form-field {
  display: grid;
  gap: 6px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(15, 61, 46, 0.18);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.86);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  min-height: 28px;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  color: var(--white);
  background: var(--green-900);
  border-top: 1px solid rgba(200, 169, 106, 0.28);
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--gold);
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 250, 242, 0.75);
}

.footer-bottom {
  border-top: 1px solid rgba(200, 169, 106, 0.2);
  padding: 18px 0;
  color: rgba(255, 250, 242, 0.62);
  text-align: center;
}

.footer-credit {
  display: inline-block;
  margin-left: 8px;
}

.footer-bottom a {
  color: var(--gold);
  font-weight: 800;
}

.mobile-reserve {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 18px 24px 24px;
    max-height: calc(100svh - 76px);
    overflow-y: auto;
    background: rgba(9, 39, 30, 0.98);
    border-bottom: 1px solid rgba(200, 169, 106, 0.26);
    transform: translateY(-125%);
    transition: transform 220ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 13px 0;
    font-size: 1rem;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: calc(82svh - 76px);
  }

  .hero-facts,
  .grid-3,
  .grid-2,
  .product-grid,
  .split,
  .feature,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-media,
  .feature-media {
    aspect-ratio: 1672 / 941;
  }

  .product-grid {
    gap: 16px;
  }

  .footer-grid {
    padding-bottom: 86px;
  }

  .mobile-reserve {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 60;
    display: flex;
    box-shadow: 0 14px 40px rgba(9, 39, 30, 0.34);
  }
}

@media (max-width: 620px) {
  .nav {
    width: min(100% - 24px, 1180px);
    min-height: 68px;
  }

  .brand {
    font-size: 1.08rem;
  }

  .brand span {
    max-width: 180px;
    letter-spacing: 0.14em;
  }

  .nav-menu {
    top: 68px;
    max-height: calc(100svh - 68px);
  }

  .hero {
    min-height: calc(72svh - 68px);
    align-items: center;
  }

  .hero-inner,
  .page-hero .container {
    padding: 46px 0 42px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
    line-height: 1.05;
  }

  .section-title h2,
  .split-content h2,
  .feature-copy h2,
  .section-title-row h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.05;
  }

  .hero p,
  .page-hero p,
  .section-title p,
  .split-content p,
  .feature-copy p {
    font-size: 1rem;
  }

  .hero-facts {
    margin-top: 34px;
  }

  .hero-fact,
  .info-card,
  .story-card,
  .event-card,
  .contact-card,
  .reservation-card {
    padding: 20px;
  }

  .page-hero {
    min-height: 48svh;
  }

  .section {
    padding: 54px 0;
  }

  .menu-section {
    padding: 34px 0;
    scroll-margin-top: 126px;
  }

  .menu-tabs-wrap {
    top: 68px;
    padding: 8px 0;
  }

  .menu-tabs-helper {
    display: block;
    width: min(100% - 32px, 1180px);
    margin: 0 auto 6px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .menu-tabs-shell {
    width: min(100% - 20px, 1180px);
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 6px;
  }

  .menu-tabs {
    padding: 4px 0;
    scroll-padding-inline: 8px;
  }

  .menu-tabs-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    min-width: 38px;
    height: 38px;
    border: 1px solid rgba(15, 61, 46, 0.18);
    border-radius: 999px;
    color: var(--green);
    background: rgba(255, 250, 242, 0.86);
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
  }

  .menu-tabs-arrow:disabled {
    opacity: 0.35;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 340px;
    height: 340px;
  }

  .form-grid,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .section-title-row {
    display: grid;
  }

  .footer-credit {
    display: block;
    margin: 6px 0 0;
  }
}

@media (prefers-reduced-motion: reduce), (pointer: coarse) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-img,
  .product-media img,
  .product-card,
  .btn,
  .nav-menu {
    transition: none;
  }

  .hero-img,
  .product-card:hover,
  .product-card:hover img,
  .btn:hover {
    transform: none;
  }
}
