@font-face {
  font-family: "Akzidenz";
  src: url("fonts/akzidenz-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Akzidenz";
  src: url("fonts/akzidenz-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #1e5b42;
  --green-dark: #102d24;
  --brown: #4c3328;
  --cream: #fbf6ec;
  --paper: #fffaf2;
  --pink: #edc3dd;
  --blue: #a5dbef;
  --sun: #f2b342;
  --ink: #151512;
  --muted: rgba(21, 21, 18, 0.68);
  --line: rgba(21, 21, 18, 0.14);
  --shadow: 0 18px 50px rgba(18, 23, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(30, 91, 66, 0.07) 1px, transparent 1px),
    linear-gradient(var(--paper), var(--cream));
  background-size: 72px 72px, auto;
  color: var(--ink);
  font-family: "Akzidenz", Arial, sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: var(--pink);
  color: var(--green-dark);
}

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

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

.spotlight-glow {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(circle 240px at var(--mx, 50%) var(--my, 50%), rgba(242, 179, 66, 0.18), transparent 68%);
  mix-blend-mode: multiply;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1120px, calc(100% - 28px));
  min-height: 64px;
  padding: 8px 8px 8px 10px;
  border: 1px solid rgba(255, 250, 242, 0.56);
  border-radius: 8px;
  background: rgba(16, 45, 36, 0.78);
  color: var(--paper);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
}

.brand-mark img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a,
.header-order,
.text-link {
  position: relative;
}

.site-nav a::after,
.text-link::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--green-dark);
  font-weight: 700;
  text-transform: uppercase;
}


.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
}

.hero-video,
.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -3;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.hero-photo {
  z-index: -4;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.03);
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(16, 45, 36, 0.18) 0%,
    rgba(16, 45, 36, 0.56) 55%,
    rgba(16, 45, 36, 0.88) 100%
  );
}

.hero-copy {
  position: relative;
  width: min(950px, calc(100% - 40px));
  padding: clamp(148px, 21vh, 240px) 0 132px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: block;
  margin: 0 auto 32px;
  width: clamp(280px, 42vw, 480px);
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.3));
}

.status-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-hours {
  margin: 0 0 28px;
  color: rgba(255, 250, 242, 0.6);
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 0.02em;
}

.hero-copy .hero-actions {
  justify-content: center;
}

.eyebrow,
.section-kicker,
.feature-panel p:first-of-type,
.visit-item span {
  margin: 0 0 18px;
  color: var(--sun);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  width: min(900px, 100%);
  margin-bottom: 24px;
  font-size: clamp(4.1rem, 12vw, 10.8rem);
  line-height: 0.81;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  text-align: center;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button.primary {
  border-color: var(--sun);
  background: var(--sun);
  color: var(--green-dark);
}

.button.secondary {
  background: rgba(255, 250, 242, 0.08);
  color: inherit;
}

.open-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #73f08f;
  box-shadow: 0 0 14px rgba(115, 240, 143, 0.7);
  transition: background 0.6s ease, box-shadow 0.6s ease;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--green-dark);
  color: var(--paper);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 32px;
  padding: 15px 0;
  animation: marquee 22s linear infinite;
}

.ticker-track span {
  font-size: clamp(1.4rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track span:nth-child(3n) {
  color: var(--pink);
}

.ticker-track span:nth-child(4n) {
  color: var(--blue);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) 0;
}


.section h2 {
  margin-bottom: 20px;
  color: var(--green-dark);
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

.story-grid {
  scroll-margin-top: 112px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: min(1120px, calc(100% - 40px));
  margin: -48px auto clamp(26px, 5vw, 64px);
}

#menu,
#catering,
#reviews,
#about,
#vibe,
#visit,
#faq {
  scroll-margin-top: 112px;
}

.full-menu {
  padding-top: clamp(42px, 7vw, 82px);
}

.story-note {
  min-height: 310px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 16px 44px rgba(18, 23, 20, 0.08);
}

.story-note span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
}

.story-note h3 {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 0.96;
}

.story-note p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.48;
}

.section p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

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

.text-link {
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
}

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

.menu-cat {
  position: relative;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 16px 44px rgba(18, 23, 20, 0.08);
}

.menu-cat-new {
  border-color: rgba(242, 179, 66, 0.55);
  background: linear-gradient(135deg, rgba(242, 179, 66, 0.16), rgba(255, 250, 242, 0.92));
}

.menu-flag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-cat h3 {
  margin: 0 0 4px;
  color: var(--green-dark);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.1;
}

.menu-note {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.menu-cat .menu-note:last-child {
  margin-top: 12px;
  margin-bottom: 0;
}

.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-items li {
  padding: 7px 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink);
}

.menu-items li:first-child {
  border-top: 0;
}

.menu-items li strong {
  display: block;
  color: var(--green-dark);
  font-size: 0.92rem;
}

.menu-items li span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.menu-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.menu-extra {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 16px 44px rgba(18, 23, 20, 0.08);
}

.menu-extra h4 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.syrup-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.syrup-list span {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(30, 91, 66, 0.08);
  font-size: 0.8rem;
  color: var(--green-dark);
}

.menu-prices-note {
  max-width: none;
  text-align: center;
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.95rem;
}

.menu-prices-note a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.photo-strip {
  overflow: hidden;
  padding: 8px 0;
  background: var(--green-dark);
}

.photo-strip-track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: photo-scroll 35s linear infinite;
}

.photo-strip-track:hover {
  animation-play-state: paused;
}

.photo-strip-track img {
  width: 320px;
  height: 420px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes photo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.catering-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.6fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
  padding: clamp(72px, 10vw, 128px) max(20px, calc((100% - 1120px) / 2));
  background:
    linear-gradient(135deg, rgba(237, 195, 221, 0.22), transparent 38%),
    var(--green-dark);
  color: var(--paper);
}

.catering-copy h2 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.catering-copy p {
  max-width: 680px;
  margin-bottom: 26px;
  color: rgba(255, 250, 242, 0.72);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

.catering-list {
  display: grid;
  align-content: center;
  gap: 10px;
}

.catering-list span {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.07);
  color: var(--paper);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1;
}

.catering-list span::after {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sun);
  content: "";
}

.catering-copy .catering-note {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 250, 242, 0.55);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.catering-list-note {
  margin: 6px 4px 0;
  color: rgba(255, 250, 242, 0.55);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.45;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 82px);
}

.stacked-photos {
  display: grid;
  grid-template-columns: 0.82fr 0.66fr;
  align-items: end;
  gap: 12px;
}

.stacked-photos img {
  height: 560px;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stacked-photos img:last-child {
  height: 410px;
  margin-bottom: -44px;
}

.about-band {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 160px) clamp(20px, 5vw, 80px);
  color: var(--paper);
}

.about-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.about-shade {
  position: absolute;
  inset: 0;
  background: rgba(16, 45, 36, 0.72);
}

.about-copy {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about-copy .section-kicker {
  color: var(--sun);
}

.about-copy h2 {
  color: var(--paper);
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 0.95;
  text-wrap: balance;
}

.about-copy p {
  color: rgba(255, 250, 242, 0.85);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.7;
  text-wrap: balance;
}

.reviews-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) 0;
}

.reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 280px);
  gap: clamp(22px, 5vw, 62px);
  align-items: end;
  margin-bottom: 20px;
}

.reviews-head h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 0.94;
  text-wrap: balance;
}

.rating-badge {
  display: grid;
  gap: 4px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--green-dark);
  color: var(--paper);
}

.rating-badge strong {
  font-size: clamp(3.4rem, 7vw, 5.5rem);
  line-height: 0.86;
}

.rating-badge span {
  color: var(--sun);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.rating-badge small {
  color: rgba(255, 250, 242, 0.68);
  font-size: 0.9rem;
  line-height: 1.35;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.review-card {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 16px 44px rgba(18, 23, 20, 0.08);
}

.review-card span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.review-card p {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 700;
  line-height: 1.16;
}

.review-link {
  display: inline-flex;
  margin-top: 24px;
}

.faq-section {
  padding-top: clamp(42px, 7vw, 82px);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 10px;
}

.faq-item {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 16px 44px rgba(18, 23, 20, 0.08);
}

.faq-item h3 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.15;
}

.faq-item p {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

.faq-item a {
  color: var(--green);
  font-weight: 700;
}

.visit-band {
  padding: clamp(72px, 10vw, 126px) max(20px, calc((100% - 1120px) / 2));
  background: var(--green-dark);
  color: var(--paper);
}

.map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.visit-band h2 {
  max-width: 780px;
  margin-bottom: 32px;
  color: var(--paper);
  font-size: clamp(2.6rem, 6vw, 6.2rem);
  line-height: 0.94;
  text-wrap: balance;
}

.map-copy p {
  max-width: 570px;
  margin: 0 0 24px;
  color: rgba(255, 250, 242, 0.72);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.55;
}

.map-frame {
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: grayscale(0.12) contrast(1.02) saturate(0.85);
}

.visit-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.visit-item {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.06);
  transition: transform 180ms ease, background 180ms ease;
}

.visit-item:hover {
  background: rgba(255, 250, 242, 0.1);
  transform: translateY(-4px);
}

.visit-item strong {
  display: block;
  max-width: 280px;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  line-height: 1.05;
}

.visit-actions {
  margin-top: 22px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px max(20px, calc((100% - 1120px) / 2));
  background: var(--paper);
  color: var(--green-dark);
}

.site-footer img {
  width: min(240px, 64vw);
}

.site-footer p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .site-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: clamp(10px, 2.5vw, 20px);
  }

  .site-nav a:not(.nav-persist) {
    display: none;
  }

  .header-order {
    justify-self: end;
  }

  .hero {
    min-height: 96svh;
  }

  .hero-copy {
    width: min(100% - 28px, 650px);
    padding-top: 126px;
  }

  h1 {
    font-size: clamp(4rem, 20vw, 7rem);
  }

  .open-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: -106px auto 24px;
  }

  .section-head,
  .split {
    display: block;
  }

  .catering-band,
  .reviews-head,
  .map-section {
    grid-template-columns: 1fr;
  }

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

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

  .story-grid {
    grid-template-columns: 1fr;
    margin-top: -34px;
  }

  .review-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-note {
    min-height: auto;
  }

  .photo-strip-track img {
    width: 260px;
    height: 320px;
  }

  .catering-list span {
    min-height: 64px;
  }

  .split-copy {
    margin-bottom: 28px;
  }

  .stacked-photos {
    grid-template-columns: 1fr;
  }

  .stacked-photos img,
  .stacked-photos img:last-child {
    height: 390px;
    margin-bottom: 0;
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .site-nav {
    display: none;
  }

  .hero-actions,
  .visit-actions {
    display: grid;
  }

  .button,
  .header-order {
    width: 100%;
  }

  .header-order {
    width: auto;
    min-height: 44px;
    padding-inline: 18px;
  }

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

  .review-grid {
    grid-template-columns: 1fr;
  }

  .section {
    width: calc(100% - 28px);
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 21;
  cursor: pointer;
  border: 0;
  background: none;
}

.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--paper);
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle.is-active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 19;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 45, 36, 0.96);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.mobile-overlay-nav a {
  font-size: clamp(1.6rem, 6vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--paper);
  transition: opacity 180ms ease;
}

.mobile-overlay-nav a:hover {
  opacity: 0.7;
}

.mobile-overlay-nav .button.primary {
  margin-top: 12px;
  font-size: 1rem;
}

.summer-specials {
  position: relative;
  padding: clamp(56px, 8vw, 104px) max(16px, calc((100% - 1120px) / 2));
  background: linear-gradient(180deg, #F6EBD4 0%, #F2E2C2 100%);
  overflow: hidden;
}

.summer-specials::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(31, 110, 120, 0.06) 1px, transparent 1.6px);
  background-size: 18px 18px;
  background-position: 0 0;
  opacity: 0.6;
}

.summer-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.summer-asset {
  opacity: 0;
  max-width: none;
  user-select: none;
  filter: drop-shadow(0 12px 22px rgba(72, 50, 18, 0.18));
}

.summer-decor .summer-asset {
  position: absolute;
}

.summer-specials.is-visible .summer-asset {
  animation-duration: var(--duration, 9s);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-fill-mode: both;
  animation-delay: var(--delay, 0s);
}

.summer-palm {
  top: -38px;
  left: clamp(-58px, -2vw, -20px);
  width: clamp(200px, 26vw, 340px);
  transform-origin: 18% 92%;
  --duration: 9.2s;
  --delay: 0.2s;
}

.summer-specials.is-visible .summer-palm {
  animation-name: palmFadeSway;
}

@keyframes palmFadeSway {
  0%   { opacity: 0.85; transform: rotate(-3deg) translateY(0); }
  100% { opacity: 1;    transform: rotate(3deg) translateY(4px); }
}

.summer-sun {
  top: clamp(-12px, 0vw, 12px);
  right: clamp(-40px, -1vw, -10px);
  width: clamp(180px, 22vw, 300px);
  transform-origin: 70% 30%;
  --duration: 24s;
  --delay: 0.05s;
}

.summer-specials.is-visible .summer-sun {
  animation-name: sunGlow, sunSpin;
  animation-duration: 5.4s, 90s;
  animation-timing-function: ease-in-out, linear;
  animation-iteration-count: infinite, infinite;
  animation-direction: alternate, normal;
  animation-delay: 0.05s, 0.05s;
}

@keyframes sunGlow {
  0%   { opacity: 0.9; filter: drop-shadow(0 12px 22px rgba(72, 50, 18, 0.18)) drop-shadow(0 0 14px rgba(242, 179, 66, 0.3)); }
  100% { opacity: 1;   filter: drop-shadow(0 12px 22px rgba(72, 50, 18, 0.18)) drop-shadow(0 0 32px rgba(242, 179, 66, 0.55)); }
}

@keyframes sunSpin {
  to { transform: rotate(360deg); }
}

.summer-frame {
  position: relative;
  z-index: 2;
  background: #FBF3DE;
  border: 2px solid #1F6E78;
  border-radius: 10px;
  padding: clamp(28px, 4vw, 56px) clamp(20px, 4vw, 56px);
  box-shadow: 0 22px 60px rgba(72, 50, 18, 0.16);
  max-width: 780px;
  margin: 0 auto;
}

.summer-header {
  position: relative;
  text-align: center;
  margin-bottom: 28px;
}

.summer-wordmark {
  display: block;
  margin: 0 auto 16px;
  width: min(440px, 80%);
  height: auto;
}

.summer-banner {
  display: block;
  margin: 0 auto;
  width: min(540px, 94%);
  height: auto;
  opacity: 0;
  transform: translateY(-8px) scale(0.96);
  filter: drop-shadow(0 10px 18px rgba(72, 50, 18, 0.22));
}

.summer-specials.is-visible .summer-banner {
  animation: bannerDropIn 0.9s ease-out 0.05s forwards, bannerBob 5.5s ease-in-out 1s infinite alternate;
}

@keyframes bannerDropIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes bannerBob {
  from { transform: translateY(0); }
  to   { transform: translateY(-4px); }
}

.summer-title {
  color: #1F6E78;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.95;
  margin: 0;
}

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

.specials-grid.summer-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
  grid-template-columns: none;
  max-width: none;
  margin: 0;
}

.specials-grid.summer-grid .specials-category {
  position: relative;
}

/* Reserve a right gutter on the list so item text never runs under the art */
.specials-grid.summer-grid .specials-list {
  padding-right: clamp(136px, 17vw, 224px);
}

.summer-category-header {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
  min-height: 52px;
}

.summer-ribbon {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(8px);
  filter: drop-shadow(0 6px 10px rgba(72, 50, 18, 0.18));
}

.summer-specials.is-visible .summer-ribbon {
  animation: ribbonReveal 0.7s ease-out forwards;
}

.summer-specials.is-visible .specials-category:nth-child(1) .summer-ribbon { animation-delay: 0.25s; }
.summer-specials.is-visible .specials-category:nth-child(2) .summer-ribbon { animation-delay: 0.4s; }
.summer-specials.is-visible .specials-category:nth-child(3) .summer-ribbon { animation-delay: 0.55s; }

@keyframes ribbonReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Per-category decoration in the reserved right gutter */
.specials-category .summer-asset {
  position: absolute;
  right: -10px;
  top: 50%;
  width: clamp(120px, 15vw, 188px);
  z-index: 2;
  pointer-events: none;
}

.summer-hibiscus {
  --duration: 7.8s;
  --delay: 0.6s;
  transform-origin: 80% 50%;
  transform: translateY(-50%) rotate(-4deg);
}

.summer-specials.is-visible .summer-hibiscus {
  animation-name: hibiscusSway;
}

@keyframes hibiscusSway {
  0%   { opacity: 0.92; transform: translateY(-52%) rotate(-5deg); }
  100% { opacity: 1;    transform: translateY(-48%) rotate(4deg); }
}

.summer-coconut {
  --duration: 11s;
  --delay: 0.85s;
  transform-origin: 50% 60%;
  transform: translateY(-50%);
  width: clamp(110px, 14vw, 180px);
}

.summer-specials.is-visible .summer-coconut {
  animation-name: coconutWobble;
}

@keyframes coconutWobble {
  0%   { opacity: 0.92; transform: translateY(-50%) rotate(-3deg); }
  100% { opacity: 1;    transform: translateY(-46%) rotate(4deg); }
}

.summer-peach {
  --duration: 8.6s;
  --delay: 0.35s;
  transform-origin: 40% 60%;
  transform: translateY(-50%);
  width: clamp(120px, 16vw, 190px);
}

.summer-specials.is-visible .summer-peach {
  animation-name: peachBob;
}

@keyframes peachBob {
  0%   { opacity: 0.92; transform: translateY(-54%) rotate(-2deg); }
  100% { opacity: 1;    transform: translateY(-46%) rotate(3deg); }
}

.specials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 900px;
  margin: 0 auto;
}

.specials-grid.summer-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  max-width: 1080px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.category-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(248, 196, 94, 0.45), transparent);
}

.category-title {
  color: #F8C45E;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
}

.specials-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.special-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
}

.summer-specials.is-visible .special-item {
  animation: summerSlideUp 0.5s ease-out forwards;
}

.summer-specials.is-visible .special-item:nth-child(1) { animation-delay: 0.18s; }
.summer-specials.is-visible .special-item:nth-child(2) { animation-delay: 0.26s; }
.summer-specials.is-visible .special-item:nth-child(3) { animation-delay: 0.34s; }
.summer-specials.is-visible .special-item:nth-child(4) { animation-delay: 0.42s; }
.summer-specials.is-visible .special-item:nth-child(5) { animation-delay: 0.5s; }
.summer-specials.is-visible .special-item:nth-child(6) { animation-delay: 0.58s; }
.summer-specials.is-visible .special-item:nth-child(7) { animation-delay: 0.66s; }

.special-bullet {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: #1F6E78;
  box-shadow: 0 0 0 0 rgba(31, 110, 120, 0.35);
}

.summer-specials.is-visible .special-bullet {
  animation: bulletPulse 2.6s ease-in-out infinite;
}

.summer-specials.is-visible .special-item:nth-child(2) .special-bullet { animation-delay: 0.25s; }
.summer-specials.is-visible .special-item:nth-child(3) .special-bullet { animation-delay: 0.5s; }
.summer-specials.is-visible .special-item:nth-child(4) .special-bullet { animation-delay: 0.75s; }
.summer-specials.is-visible .special-item:nth-child(5) .special-bullet { animation-delay: 1.0s; }
.summer-specials.is-visible .special-item:nth-child(6) .special-bullet { animation-delay: 1.25s; }
.summer-specials.is-visible .special-item:nth-child(7) .special-bullet { animation-delay: 1.5s; }

@keyframes bulletPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(31, 110, 120, 0.4); }
  50%      { box-shadow: 0 0 0 5px rgba(31, 110, 120, 0); }
}

.special-name {
  display: block;
  font-weight: 700;
  color: #1F6E78;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.special-desc {
  display: block;
  font-weight: 700;
  color: #E5635A;
  font-size: 0.78rem;
  line-height: 1.3;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

@keyframes summerSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

.summer-cta {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 36px;
}

.summer-btn {
  border-color: #1F6E78;
  background: transparent;
  color: #1F6E78;
}

.summer-btn:hover {
  background: #1F6E78;
  border-color: #1F6E78;
  color: #FBF3DE;
}

.highlights {
  padding: clamp(32px, 6vw, 64px) 0;
  background: var(--green-dark);
  overflow: hidden;
}

@keyframes highlights-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.highlights-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: highlights-scroll 80s linear infinite;
}

.highlights-track:hover {
  animation-play-state: paused;
}

.highlight-card {
  flex: 0 0 260px;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 250, 242, 0.06);
}

.highlight-card video,
.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }

  .specials-grid,
  .specials-grid.summer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .summer-frame {
    padding: clamp(22px, 4vw, 36px);
  }

  .summer-palm {
    top: -30px;
    left: -40px;
    width: min(170px, 36vw);
  }

  .summer-sun {
    top: 4px;
    right: -20px;
    width: min(150px, 32vw);
  }

  .summer-banner {
    width: min(420px, 94%);
  }

  .summer-ribbon {
    width: 100%;
  }

  .specials-grid.summer-grid .specials-list {
    padding-right: clamp(96px, 17vw, 130px);
  }

  .specials-category .summer-asset {
    right: -12px;
    width: min(118px, 22vw);
  }
}

@media (max-width: 520px) {
  .highlight-card {
    flex: 0 0 200px;
  }

  /* Too little width for a side gutter on phones: drop the small
     per-category art and let it wrap full-width. Palm, sun, banner,
     and the category ribbons still carry the summer theme. */
  .specials-grid.summer-grid .specials-list {
    padding-right: 0;
  }

  .specials-category .summer-asset {
    display: none;
  }

  .summer-palm {
    width: min(140px, 34vw);
  }

  .summer-sun {
    width: min(120px, 30vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .summer-specials.is-visible .summer-asset,
  .summer-specials.is-visible .summer-banner,
  .summer-specials.is-visible .summer-ribbon,
  .summer-specials.is-visible .special-star {
    animation: none;
  }

  .summer-specials.is-visible .summer-asset,
  .summer-specials.is-visible .summer-banner,
  .summer-specials.is-visible .summer-ribbon {
    opacity: 1;
    transform: none;
  }
}
