:root {
  --cream: #fff8e7;
  --milk: #fffdf7;
  --blueberry: #203c69;
  --blueberry-soft: #dce8ff;
  --pine: #244a35;
  --strawberry: #d8403a;
  --sun: #ffd45a;
  --ink: #172238;
  --muted: #667085;
  --line: rgba(23, 34, 56, 0.15);
  --shadow: 0 24px 70px rgba(32, 60, 105, 0.18);
  --radius: 18px;
  --sans: "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(32, 60, 105, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, var(--cream), #f7f3dc 48%, var(--milk));
  background-size: 56px 56px, auto;
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
  padding-bottom: 0;
}

body.menu-page {
  background:
    linear-gradient(90deg, rgba(216, 64, 58, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, var(--milk), #edf4dc);
  background-size: 50px 50px, auto;
}

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

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--blueberry);
  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, 247, 0.82);
  color: var(--ink);
  padding: 8px 10px 8px 18px;
  box-shadow: 0 16px 42px rgba(32, 60, 105, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: var(--strawberry);
  color: white;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.12);
}

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

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

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

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

.hero {
  position: relative;
  display: grid;
  min-height: 100dvh;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: clip;
  padding: 122px 22px 40px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--blueberry);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(23, 34, 56, 0.2), rgba(23, 34, 56, 0.38) 44%, rgba(23, 34, 56, 0.76)),
    linear-gradient(90deg, rgba(255, 248, 231, 0.6), transparent 45%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.03);
}

.hero-copy {
  width: min(830px, 100%);
  color: white;
  padding: clamp(20px, 4vw, 52px);
}

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

.hero h1,
.menu-hero h1 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(4rem, 13vw, 10.5rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.82;
  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.25rem);
}

.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(--sans);
  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:active,
.flavor-card:active,
.notice-toggle:active,
.menu-filters button:active {
  transform: translateY(1px) scale(0.99);
}

.button.primary {
  border-color: var(--strawberry);
  background: var(--strawberry);
  color: white;
  box-shadow: 0 18px 34px rgba(216, 64, 58, 0.28);
}

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

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

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

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

.hero-strip span {
  min-height: 56px;
  display: grid;
  place-items: center;
  background: rgba(23, 34, 56, 0.38);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.section,
.flavor-stage,
.photo-band,
.visit,
.menu-shell,
.menu-gallery {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

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

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

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

.flavor-stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr);
  grid-template-areas:
    "copy panel"
    "options panel";
  gap: 22px;
  align-items: stretch;
  padding: 0 0 clamp(70px, 9vw, 120px);
}

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

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

.flavor-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flavor-panel::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(23, 34, 56, 0.78));
}

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

.flavor-caption span {
  color: var(--sun);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.flavor-caption strong {
  font-family: var(--sans);
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.flavor-caption p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

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

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

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

.flavor-card:hover,
.flavor-card.is-active {
  border-color: rgba(216, 64, 58, 0.42);
  background: #fffdf7;
  transform: translateX(6px);
}

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

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

.photo-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 16px;
  align-items: end;
  padding: 0 0 clamp(74px, 10vw, 132px);
}

.photo-band figure {
  margin: 0;
}

.photo-band img,
.menu-gallery img,
.menu-hero img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(32, 60, 105, 0.14);
}

.photo-band figure:nth-child(1) img {
  aspect-ratio: 5 / 4;
}

.photo-band figure:nth-child(2) img {
  aspect-ratio: 3 / 4;
}

.photo-band figure:nth-child(3) img {
  aspect-ratio: 4 / 5;
}

figcaption {
  margin-top: 10px;
  color: var(--blueberry);
  font-family: var(--sans);
  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-cards {
  display: grid;
  gap: 12px;
}

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

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

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

.menu-cards 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: 0 0 clamp(90px, 13vw, 150px);
}

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

.visit-card 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(--blueberry);
  padding: 12px 18px;
  font-family: var(--sans);
  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(--pine);
}

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

.contact-stack a:hover {
  background: rgba(255, 253, 247, 0.16);
  transform: translateY(-2px);
}

.contact-stack span {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--sans);
  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, 247, 0.9);
  box-shadow: 0 18px 44px rgba(23, 34, 56, 0.22);
  backdrop-filter: blur(18px);
}

.mobile-dock a {
  display: grid;
  min-height: 58px;
  place-items: center;
  border-right: 1px solid rgba(23, 34, 56, 0.1);
  color: var(--blueberry);
  font-family: var(--sans);
  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(--strawberry);
  color: white;
}

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

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

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

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

.menu-shell {
  padding: 0 0 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;
  gap: 8px;
  justify-content: end;
}

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

.menu-filters button.is-active {
  border-color: var(--strawberry);
  background: var(--strawberry);
  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(--sans);
  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: 0 0 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 var(--sun);
  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;
  }

  .top-nav {
    display: none;
  }

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

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

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

  .hero h1,
  .menu-hero h1 {
    max-width: 7ch;
    font-size: clamp(4.1rem, 19vw, 6.6rem);
    line-height: 0.84;
  }

  .hero-copy p:not(.eyebrow),
  .menu-hero p {
    max-width: 30ch;
    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;
  }

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

  .hero-strip span {
    min-height: 44px;
    padding: 0 8px;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .section,
  .flavor-stage,
  .photo-band,
  .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,
  .flavor-stage h2,
  .visit h2,
  .menu-shell h2,
  .menu-contact h2 {
    font-size: clamp(2.15rem, 10vw, 4rem);
  }

  .flavor-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "panel"
      "options";
    padding-bottom: 74px;
  }

  .flavor-panel {
    min-height: 430px;
  }

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

  .flavor-card {
    min-height: 86px;
    padding: 14px;
  }

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

  .photo-band {
    grid-template-columns: 1fr;
    padding-bottom: 74px;
  }

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

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

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

  .mobile-dock {
    display: grid;
  }

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

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

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

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

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

  .hero h1,
  .menu-hero h1 {
    font-size: clamp(3.45rem, 18vw, 5.2rem);
  }

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

  .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;
  }
}
