:root {
  color-scheme: light;
  --ink: #17211d;
  --ink-soft: #4e5a55;
  --paper: #fffaf2;
  --white: #ffffff;
  --mist: #eef2eb;
  --sage: #6f8269;
  --sage-deep: #3b4d40;
  --copper: #b85d3a;
  --gold: #c79b45;
  --line: rgba(23, 33, 29, 0.14);
  --shadow: 0 24px 70px rgba(24, 33, 29, 0.16);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 30;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 36px rgba(23, 33, 29, 0.09);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1180px, calc(100% - 28px));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  background: rgba(23, 33, 29, 0.78);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
}

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark,
.brand-footer .brand-mark {
  border-color: rgba(23, 33, 29, 0.12);
  background: var(--ink);
}

.brand-text {
  display: grid;
  gap: 0;
  color: var(--white);
}

.site-header.is-scrolled .brand-text,
.site-header.is-open .brand-text,
.brand-footer .brand-text {
  color: var(--ink);
}

.brand-text strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand-text small {
  color: currentColor;
  font-size: 0.76rem;
  opacity: 0.74;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(23, 33, 29, 0.28);
  padding: 6px;
  color: var(--white);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled .nav-links,
.site-header.is-open .nav-links {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 14px;
  color: currentColor;
  font-size: 0.92rem;
  font-weight: 700;
  opacity: 0.88;
  transition: background 160ms ease, opacity 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  background: rgba(255, 255, 255, 0.22);
  opacity: 1;
  outline: none;
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-links a:focus-visible,
.site-header.is-scrolled .nav-links a.is-active,
.site-header.is-open .nav-links a:hover,
.site-header.is-open .nav-links a:focus-visible,
.site-header.is-open .nav-links a.is-active {
  background: rgba(111, 130, 105, 0.16);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: rgba(23, 33, 29, 0.52);
  color: var(--white);
  cursor: pointer;
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  transform: translateY(-6px);
}

.nav-toggle-lines::after {
  transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

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

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

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

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 18, 15, 0.82), rgba(12, 18, 15, 0.46) 48%, rgba(12, 18, 15, 0.2)),
    linear-gradient(0deg, rgba(12, 18, 15, 0.68), rgba(12, 18, 15, 0.08) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: calc(var(--header-height) + 92px) 142px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1c87d;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.25rem, 14vw, 7.9rem);
  line-height: 0.92;
}

h2 {
  max-width: 760px;
  font-size: clamp(2.1rem, 5vw, 4.25rem);
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.03rem, 2vw, 1.28rem);
}

.hero-actions,
.visit-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  line-height: 1.15;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--copper);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #9f4d31;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.button-outline {
  border-color: rgba(23, 33, 29, 0.18);
  background: var(--white);
  color: var(--ink);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: rgba(23, 33, 29, 0.36);
  background: var(--mist);
}

.hero-strip {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(12, 18, 15, 0.52);
  backdrop-filter: blur(16px);
}

.hero-strip span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  text-align: center;
}

.hero-strip span:last-child {
  border-right: 0;
}

.section {
  padding-block: clamp(72px, 9vw, 120px);
}

.section-light {
  background: var(--paper);
}

.section-muted {
  background: var(--mist);
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow),
.menu-intro p,
.split-copy p,
.visit-grid p {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

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

.feature-card {
  min-height: 264px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: 0 18px 60px rgba(23, 33, 29, 0.08);
}

.feature-card:nth-child(2) {
  background: #f6efe5;
}

.feature-card:nth-child(3) {
  background: #f4f7f0;
}

.feature-number {
  margin-bottom: auto;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  margin-top: 36px;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.split-section {
  background: var(--ink);
  color: var(--white);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
}

.split-copy .eyebrow {
  color: #f1c87d;
}

.split-copy p {
  color: rgba(255, 255, 255, 0.76);
  margin-top: 22px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.84);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(199, 155, 69, 0.18);
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.menu-layout {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.menu-intro {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.menu-intro p {
  margin-top: 18px;
}

.menu-board {
  display: grid;
  gap: 14px;
}

.menu-column {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: clamp(22px, 3vw, 32px);
}

.menu-column h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sage-deep);
}

.menu-column h3::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--copper);
}

.menu-column dl {
  display: grid;
  gap: 20px;
  margin: 22px 0 0;
}

.menu-column dl div {
  display: grid;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 33, 29, 0.1);
}

.menu-column dl div:first-child {
  padding-top: 0;
  border-top: 0;
}

.menu-column dt {
  color: var(--ink);
  font-weight: 850;
}

.menu-column dd {
  margin: 0;
  color: var(--ink-soft);
}

.visit-section {
  background: var(--sage-deep);
  color: var(--white);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
}

.visit-grid .eyebrow {
  color: #f1c87d;
}

.visit-grid p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.visit-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding-block: 30px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid p {
  max-width: 460px;
  margin: 0;
  color: var(--ink-soft);
  text-align: right;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: 14px;
    left: 14px;
    display: grid;
    gap: 4px;
    border-radius: var(--radius);
    padding: 10px;
    background: rgba(255, 250, 242, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    border-radius: var(--radius);
    padding: 14px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 18, 15, 0.84), rgba(12, 18, 15, 0.42)),
      linear-gradient(0deg, rgba(12, 18, 15, 0.72), rgba(12, 18, 15, 0.12) 56%);
  }

  .hero-content {
    padding-block: calc(var(--header-height) + 72px) 160px;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .hero-strip span {
    min-height: 48px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-strip span:last-child {
    border-bottom: 0;
  }

  .feature-grid,
  .split-grid,
  .menu-layout,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .menu-intro {
    position: static;
  }

  .visit-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-shell {
    width: min(100% - 20px, 1180px);
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-text strong {
    font-size: 0.94rem;
  }

  .hero-content {
    padding-block: calc(var(--header-height) + 56px) 174px;
  }

  .hero-actions,
  .visit-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .feature-card {
    min-height: 220px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid p {
    text-align: left;
  }
}

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