:root {
  color-scheme: dark;
  --page: #0b2018;
  --surface: #112c22;
  --surface-soft: #17382c;
  --ink: #f1eddd;
  --muted: #b9c4b9;
  --gold: #dfb05a;
  --gold-dark: #2a2416;
  --line: rgba(241, 237, 221, .16);
  --shadow: 0 24px 70px rgba(1, 10, 6, .28);
  --radius: 20px;
  --radius-small: 14px;
  --radius-button: 999px;
  --max: 1180px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 30;
  transform: translateY(-180%);
  border-radius: var(--radius-small);
  padding: .7rem 1rem;
  background: var(--gold);
  color: #162019;
}
.skip-link:focus { transform: none; }

.hero {
  position: relative;
  min-height: 100dvh;
  isolation: isolate;
  overflow: hidden;
}
.hero__image, .hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { z-index: -3; object-fit: cover; object-position: center; }
.hero__shade {
  z-index: -2;
  background: linear-gradient(90deg, rgba(5, 22, 15, .94) 0%, rgba(5, 22, 15, .72) 42%, rgba(5, 22, 15, .1) 76%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(223, 176, 90, .18);
}

.site-nav {
  position: relative;
  z-index: 12;
  width: min(calc(100% - 2rem), var(--max));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid rgba(241, 237, 221, .28);
}
.brand { display: inline-flex; align-items: center; gap: .78rem; text-decoration: none; }
.brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: Baskerville, Georgia, serif;
  font-size: 1.48rem;
}
.brand__name { display: grid; line-height: 1.05; }
.brand__name strong { font-family: Baskerville, Georgia, serif; font-size: 1.03rem; letter-spacing: .025em; }
.brand__name small { margin-top: .26rem; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 1.7rem; }
.desktop-nav a { text-decoration: none; font-size: .91rem; }
.desktop-nav a:not(.nav-cta):hover { color: var(--gold); }
.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gold);
  border-radius: var(--radius-button);
  padding: .48rem .95rem;
  color: var(--gold);
}
.menu-toggle {
  display: none;
  min-height: 42px;
  border: 1px solid rgba(241, 237, 221, .4);
  border-radius: var(--radius-button);
  background: rgba(11, 32, 24, .68);
  padding: .45rem .85rem;
  cursor: pointer;
}
.mobile-nav { display: none; }

.hero__content {
  width: min(calc(100% - 2rem), var(--max));
  min-height: calc(100dvh - 76px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 0 5rem;
}
.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: Baskerville, Georgia, serif; font-weight: 500; letter-spacing: -.025em; }
.hero h1 { max-width: 880px; margin: 0; font-size: clamp(3.6rem, 7.2vw, 6.25rem); line-height: .89; }
.hero__content > p:not(.eyebrow) { max-width: 520px; margin: 1.45rem 0 1.8rem; color: rgba(241, 237, 221, .84); font-size: 1.06rem; }
.hero__actions, .visit__actions { display: flex; flex-wrap: wrap; gap: .65rem; }
.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-button);
  padding: .72rem 1.15rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .22s ease, background-color .22s ease, border-color .22s ease;
}
.button:active, .menu-toggle:active { transform: translateY(1px) scale(.99); }
.button--gold { border: 1px solid var(--gold); background: var(--gold); color: #172018; }
.button--gold:hover { background: #efc574; }
.button--ghost { border: 1px solid rgba(241, 237, 221, .48); background: rgba(11, 32, 24, .55); color: var(--ink); }
.button--ghost:hover, .button--ghost-dark:hover { border-color: var(--gold); }
.button--ghost-dark { border: 1px solid var(--line); color: var(--ink); }

.address-bar {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}
.address-bar p { margin: 0; color: var(--muted); }
.address-bar a, .text-link { color: var(--gold); font-weight: 700; text-underline-offset: 4px; }

.section { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.intro {
  min-height: 720px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  padding: 7rem 0;
}
.intro__copy h2, .section-heading h2, .visit h2 { max-width: 760px; margin: 0; font-size: clamp(2.8rem, 6vw, 5.7rem); line-height: .96; }
.intro__copy p { max-width: 520px; margin: 1.2rem 0 1.4rem; color: var(--muted); }
.intro__image { margin: 0; height: 560px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.intro__image img { width: 100%; height: 100%; object-fit: cover; }

.food { padding: 6rem 0 8rem; }
.section-heading { max-width: 760px; margin-bottom: 2.6rem; }
.section-heading p:not(.eyebrow) { max-width: 620px; margin: 1rem 0 0; color: var(--muted); }
.feature-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 1rem;
}
.feature { margin: 0; overflow: hidden; border-radius: var(--radius); }
.feature--image { grid-row: 1 / 3; min-height: 620px; }
.feature--image img { width: 100%; height: 100%; object-fit: cover; }
.feature--gold, .feature--garden { display: flex; flex-direction: column; justify-content: end; padding: clamp(1.4rem, 4vw, 2.4rem); }
.feature--gold { background: var(--gold); color: #182219; }
.feature--garden { border: 1px solid var(--line); background: var(--surface); }
.feature__label { margin: 0 0 .7rem; font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.feature h3 { margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: .95; }
.feature p:last-child { max-width: 470px; margin: 1rem 0 0; opacity: .82; }

.menu-callout {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.menu-callout > img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.menu-callout__copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(2rem, 7vw, 5.5rem); }
.menu-callout h2 { margin: 0; font-size: clamp(2.8rem, 5.5vw, 5rem); line-height: .95; }
.menu-callout p { max-width: 480px; margin: 1.15rem 0 1.6rem; color: var(--muted); }

.visit { padding: 9rem 0; }
.visit__heading { max-width: 800px; }
.visit__heading p { max-width: 600px; margin: 1.2rem 0 0; color: var(--muted); }
.visit__details {
  margin-top: 3rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
address { display: grid; font-style: normal; }
address strong { margin-bottom: .55rem; font-family: Baskerville, Georgia, serif; font-size: 1.45rem; font-weight: 500; }
address span { color: var(--muted); }

.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding: 2.2rem 0;
}
.site-footer p { color: var(--muted); text-align: center; }
.site-footer__links { display: flex; gap: 1.2rem; }
.site-footer__links a { color: var(--gold); }
.site-footer > small { grid-column: 1 / -1; color: var(--muted); text-align: center; }

.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .hero__content > * { opacity: 0; transform: translateY(20px); animation: hero-in .78s cubic-bezier(.16, 1, .3, 1) forwards; }
  .hero__content > :nth-child(2) { animation-delay: .08s; }
  .hero__content > :nth-child(3) { animation-delay: .16s; }
  .hero__content > :nth-child(4) { animation-delay: .24s; }
  .js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1); }
  .js .reveal.is-visible { opacity: 1; transform: none; }
  @keyframes hero-in { to { opacity: 1; transform: none; } }
}

@media (max-width: 820px) {
  .hero__image { object-position: 62% center; }
  .hero__shade { background: linear-gradient(180deg, rgba(5, 22, 15, .32), rgba(5, 22, 15, .92) 72%); }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; }
  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.1rem;
    background: rgba(8, 27, 19, .98);
    padding: 7rem 1rem 2rem;
  }
  .mobile-nav a { font-family: Baskerville, Georgia, serif; font-size: clamp(2.2rem, 10vw, 4rem); line-height: 1; text-decoration: none; }
  .mobile-nav a:hover { color: var(--gold); }
  .hero__content { justify-content: end; padding-bottom: 4.2rem; }
  .hero h1 { font-size: clamp(3.4rem, 16vw, 6rem); }
  .address-bar { align-items: flex-start; flex-direction: column; gap: .4rem; padding: 1.2rem 0; }
  .intro { min-height: 0; grid-template-columns: 1fr; gap: 2.2rem; padding: 6rem 0; }
  .intro__image { height: min(110vw, 560px); }
  .feature-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .feature--image { grid-row: auto; min-height: min(110vw, 540px); }
  .feature--gold, .feature--garden { min-height: 290px; }
  .menu-callout { min-height: 0; grid-template-columns: 1fr; }
  .menu-callout > img { min-height: 0; height: min(100vw, 550px); }
  .menu-callout__copy { min-height: 440px; }
  .visit { padding: 7rem 0; }
  .visit__details { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; }
  .site-footer p, .site-footer > small { text-align: left; }
  .site-footer > small { grid-column: auto; }
}

@media (max-width: 480px) {
  .site-nav, .hero__content, .section, .address-bar, .site-footer { width: min(calc(100% - 1.25rem), var(--max)); }
  .brand__name small { display: none; }
  .hero__actions, .visit__actions { width: 100%; }
  .hero__actions .button, .visit__actions .button { flex: 1 1 auto; }
  .hero h1 { font-size: clamp(2.9rem, 13vw, 4rem); }
  .intro__copy h2, .section-heading h2, .visit h2 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
  .food { padding-bottom: 6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (prefers-reduced-transparency: reduce) {
  .button--ghost, .menu-toggle { background: var(--page); }
}
