:root {
  --cream: #fff8e8;
  --paper: #fffdf6;
  --stone: #d8d1c0;
  --rock: #5d665c;
  --forest: #193d2d;
  --pine: #2f6042;
  --cherry: #d9433e;
  --sky: #dbeeff;
  --ink: #172018;
  --muted: #647064;
  --line: rgba(23, 32, 24, 0.14);
  --shadow: 0 24px 72px rgba(25, 61, 45, 0.2);
  --radius: 18px;
  --display: "Arial Narrow", "Aptos", "Segoe UI", system-ui, sans-serif;
  --body: "Aptos", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(93, 102, 92, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, var(--cream), #eef2df 48%, var(--paper));
  background-size: 54px 54px, auto;
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
}

body.menu-page {
  background:
    linear-gradient(90deg, rgba(217, 67, 62, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper), #edf5e9);
  background-size: 50px 50px, auto;
}

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--forest);
  color: white;
  padding: 10px 16px;
}

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

.site-header {
  position: fixed;
  inset: 18px 22px auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.84);
  padding: 8px 10px 8px 18px;
  box-shadow: 0 16px 42px rgba(25, 61, 45, 0.13);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: var(--forest);
  color: white;
  font-size: 0.72rem;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.14);
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.top-nav a,
.call-link {
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--forest);
  font-family: var(--display);
  font-size: 0.77rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.top-nav a:hover,
.call-link:hover {
  background: var(--sky);
  transform: translateY(-1px);
}

.call-link {
  justify-self: end;
  background: var(--cherry);
  color: white;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100dvh;
  align-items: end;
  overflow: clip;
  padding: 118px 22px 38px;
  background: var(--forest);
}

.hero > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(23, 32, 24, 0.2), rgba(23, 32, 24, 0.35) 44%, rgba(23, 32, 24, 0.82)),
    linear-gradient(90deg, rgba(255, 248, 232, 0.58), transparent 48%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(850px, 100%);
  color: white;
  padding: clamp(20px, 4vw, 52px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.menu-hero h1 {
  max-width: 9.8ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.84;
  text-transform: uppercase;
}

.hero-copy p:not(.eyebrow),
.menu-hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 20px;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary {
  border-color: var(--cherry);
  background: var(--cherry);
  color: white;
  box-shadow: 0 18px 34px rgba(217, 67, 62, 0.3);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.16);
  color: white;
  backdrop-filter: blur(10px);
}

.button:hover,
.contact-stack a:hover {
  transform: translateY(-2px);
}

.button:active,
.stop-card:active,
.notice-toggle:active,
.menu-filters button:active {
  transform: translateY(1px) scale(0.99);
}

.button.wide {
  margin-top: 24px;
}

.route-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1040px, calc(100% - 44px));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.17);
  color: white;
}

.route-card span {
  display: grid;
  min-height: 58px;
  place-items: center;
  background: rgba(25, 61, 45, 0.42);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.section,
.stop-builder,
.image-ribbon,
.visit,
.menu-shell,
.menu-gallery,
.menu-hero {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: clamp(76px, 10vw, 130px) 0;
}

.section h2,
.stop-builder h2,
.visit h2,
.menu-shell h2,
.menu-contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 5.7rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.section p:not(.section-kicker),
.builder-copy p,
.visit-copy p,
.menu-item p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.stop-builder {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(320px, 1fr);
  grid-template-areas:
    "copy photo"
    "options photo";
  gap: 22px;
  padding-bottom: clamp(70px, 9vw, 120px);
}

.builder-copy {
  grid-area: copy;
  align-self: end;
}

.builder-photo {
  position: relative;
  grid-area: photo;
  min-height: 700px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--forest);
  box-shadow: var(--shadow);
}

.builder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.builder-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(23, 32, 24, 0.78));
}

.photo-note {
  position: absolute;
  inset: auto 22px 22px;
  z-index: 1;
  display: grid;
  gap: 8px;
  color: white;
}

.photo-note span {
  color: #ffdd83;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.photo-note strong {
  max-width: 9ch;
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 950;
  line-height: 0.92;
  text-transform: uppercase;
}

.stop-options {
  grid-area: options;
  display: grid;
  gap: 10px;
}

.stop-card,
.menu-item,
.contact-stack a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.72);
}

.stop-card {
  display: grid;
  gap: 3px;
  min-height: 82px;
  padding: 18px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.stop-card:hover,
.stop-card.is-active {
  border-color: rgba(217, 67, 62, 0.42);
  background: var(--paper);
  transform: translateX(6px);
}

.stop-card span {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stop-card small {
  color: var(--muted);
  font-size: 0.92rem;
}

.image-ribbon {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: end;
  padding-bottom: clamp(74px, 10vw, 132px);
}

.image-ribbon figure {
  margin: 0;
}

.image-ribbon img,
.menu-gallery img,
.menu-hero img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(25, 61, 45, 0.15);
}

.image-ribbon figure:first-child img {
  aspect-ratio: 5 / 4;
}

.image-ribbon figure:last-child img {
  aspect-ratio: 4 / 5;
}

figcaption {
  margin-top: 10px;
  color: var(--forest);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-preview {
  align-items: start;
  border-top: 1px solid var(--line);
}

.menu-lines {
  display: grid;
  gap: 12px;
}

.menu-lines article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.menu-lines span,
.menu-item span {
  color: var(--cherry);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-lines h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 950;
  text-transform: uppercase;
}

.menu-lines p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: stretch;
  padding-bottom: clamp(90px, 13vw, 150px);
}

.visit-copy,
.contact-stack {
  border-radius: var(--radius);
  background: var(--forest);
  color: white;
  padding: clamp(22px, 4vw, 48px);
}

.visit-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.notice-toggle {
  min-height: 48px;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: white;
  color: var(--forest);
  padding: 12px 18px;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.notice {
  margin-top: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  padding: 16px;
  color: rgba(255, 255, 255, 0.86);
}

.contact-stack {
  display: grid;
  gap: 12px;
  background: var(--rock);
}

.contact-stack a {
  display: grid;
  gap: 4px;
  min-height: 82px;
  padding: 18px;
  background: rgba(255, 253, 246, 0.1);
  color: white;
  transition: transform 180ms ease, background 180ms ease;
}

.contact-stack a:hover {
  background: rgba(255, 253, 246, 0.16);
}

.contact-stack span {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-stack strong {
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.mobile-dock {
  position: fixed;
  inset: auto 14px 14px;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background: rgba(255, 253, 246, 0.9);
  box-shadow: 0 18px 44px rgba(23, 32, 24, 0.22);
  backdrop-filter: blur(18px);
}

.mobile-dock a {
  display: grid;
  min-height: 58px;
  place-items: center;
  border-right: 1px solid rgba(23, 32, 24, 0.1);
  color: var(--forest);
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-dock a:last-child {
  border-right: 0;
}

.mobile-dock .dock-accent {
  background: var(--cherry);
  color: white;
}

.menu-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 26px;
  min-height: 100dvh;
  padding: 128px 0 56px;
  align-items: center;
}

.menu-hero h1 {
  color: var(--forest);
}

.menu-hero p {
  color: var(--muted);
}

.menu-hero img {
  aspect-ratio: 4 / 3;
}

.menu-shell {
  padding-bottom: 64px;
}

.menu-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px;
}

.menu-filters button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.74);
  color: var(--forest);
  padding: 10px 14px;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-filters button.is-active {
  border-color: var(--cherry);
  background: var(--cherry);
  color: white;
}

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

.menu-item {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
}

.menu-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
}

.menu-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-bottom: 84px;
}

.menu-gallery img {
  aspect-ratio: 16 / 10;
}

.menu-contact {
  padding-bottom: 110px;
}

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

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

:focus-visible {
  outline: 3px solid #ffdd83;
  outline-offset: 4px;
}

@media (max-width: 860px) {
  body {
    padding-bottom: 84px;
  }

  .site-header {
    inset: 10px 10px auto;
    grid-template-columns: 1fr auto;
    min-height: 56px;
    padding: 7px 8px 7px 12px;
  }

  .brand {
    font-size: 0.76rem;
    letter-spacing: 0.1em;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    font-size: 0.62rem;
  }

  .top-nav {
    display: none;
  }

  .call-link {
    min-height: 42px;
    padding: 11px 14px;
  }

  .hero {
    min-height: 100dvh;
    padding: 86px 14px 94px;
  }

  .hero-copy {
    padding: 0 8px 16px;
  }

  .hero h1,
  .menu-hero h1 {
    max-width: 7.5ch;
    font-size: clamp(3.7rem, 17vw, 6.3rem);
    line-height: 0.86;
  }

  .hero-copy p:not(.eyebrow),
  .menu-hero p {
    max-width: 31ch;
    margin-top: 16px;
    font-size: 0.98rem;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 20px;
  }

  .button {
    min-height: 46px;
    padding: 12px 15px;
    font-size: 0.72rem;
  }

  .route-card {
    width: 100%;
    grid-template-columns: 1fr;
    margin-bottom: 4px;
  }

  .route-card span {
    min-height: 42px;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .section,
  .stop-builder,
  .image-ribbon,
  .visit,
  .menu-shell,
  .menu-gallery,
  .menu-hero {
    width: min(100% - 28px, 1180px);
  }

  .section,
  .visit,
  .menu-hero,
  .menu-heading-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 74px 0;
  }

  .section h2,
  .stop-builder h2,
  .visit h2,
  .menu-shell h2,
  .menu-contact h2 {
    font-size: clamp(2.1rem, 10vw, 4rem);
  }

  .stop-builder {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "photo"
      "options";
    padding-bottom: 74px;
  }

  .builder-photo {
    min-height: 430px;
  }

  .stop-options {
    grid-template-columns: 1fr;
  }

  .stop-card {
    min-height: 78px;
    padding: 14px;
  }

  .stop-card:hover,
  .stop-card.is-active {
    transform: translateY(-2px);
  }

  .image-ribbon,
  .menu-grid,
  .menu-gallery {
    grid-template-columns: 1fr;
  }

  .image-ribbon {
    padding-bottom: 74px;
  }

  .image-ribbon figure:nth-child(n) img {
    aspect-ratio: 4 / 3;
  }

  .menu-lines article {
    grid-template-columns: 32px 1fr;
  }

  .visit-copy,
  .contact-stack {
    padding: 22px;
  }

  .mobile-dock {
    display: grid;
  }

  .menu-hero {
    min-height: auto;
    padding-top: 104px;
  }

  .menu-filters {
    justify-content: start;
  }

  .menu-item {
    min-height: 0;
  }
}

@media (max-width: 420px) {
  .brand span:last-child {
    max-width: 136px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero h1,
  .menu-hero h1 {
    font-size: clamp(3.25rem, 16.7vw, 5.1rem);
  }

  .hero-actions .button {
    flex: 1 1 150px;
  }

  .mobile-dock {
    inset: auto 10px 10px;
  }

  .mobile-dock a {
    min-height: 56px;
    font-size: 0.68rem;
    letter-spacing: 0.07em;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
