/* ============================================================
   Linda Lee's Ice Cream — retro scoop-stand design system
   ============================================================ */

:root {
  /* palette */
  --cream:        #FFF6E3;
  --cream-deep:   #FBEBC8;
  --cream-card:   #FFFDF6;
  --ink:          #2B1608;
  --ink-soft:     #5C4632;
  --red:          #DD4A2F;
  --red-deep:     #B93A23;
  --teal:         #1F8A80;
  --teal-deep:    #14655E;
  --butter:       #F2B33D;
  --pink:         #F4A9B8;
  --slate:        #211D19;
  --slate-card:   #2C2723;
  --slate-line:   #3E372F;
  --cream-on-dark:#F7EBD3;

  /* type */
  --font-display: 'Alfa Slab One', 'Georgia', serif;
  --font-body:    'Nunito', 'Trebuchet MS', sans-serif;
  --font-script:  'Yellowtail', cursive;

  /* rhythm */
  --container:    1180px;
  --pad-x:        clamp(20px, 4vw, 44px);
  --section-y:    clamp(72px, 9vw, 128px);
  --radius-lg:    22px;
  --radius-md:    14px;
  --shadow-card:  0 10px 28px rgba(43, 22, 8, 0.10);
}

/* ---------- base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

h2 { font-size: clamp(1.9rem, 4vw, 3rem); }

a { color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* script eyebrows */
.script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.2;
  margin-bottom: 10px;
  transform: rotate(-2deg);
  display: inline-block;
}
.script--red    { color: var(--red); }
.script--butter { color: var(--butter); }
.script--teal   { color: var(--teal); }

/* buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}
.btn--red {
  background: var(--red);
  color: #FFF9EE;
  box-shadow: 0 6px 0 var(--red-deep);
}
.btn--red:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 var(--red-deep);
}
.btn--red:active { transform: translateY(2px); box-shadow: 0 3px 0 var(--red-deep); }
.btn--ghost {
  color: var(--ink);
  border: 3px solid var(--ink);
  padding: 12px 27px;
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--ghost-light { color: var(--cream-on-dark); border-color: var(--cream-on-dark); }
.btn--ghost-light:hover { background: var(--cream-on-dark); color: var(--slate); }

/* chips & tags */
.chip {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--slate);
  background: var(--butter);
  border-radius: 999px;
  padding: 3px 13px;
  white-space: nowrap;
  transform: rotate(2deg);
}
.chip--cream { background: var(--cream-deep); color: var(--ink); }
.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 3px 10px 2px;
  vertical-align: middle;
  margin-left: 6px;
}
.tag--teal { background: var(--teal); color: #EFFCF9; }
.tag--red  { background: var(--red); color: #FFF3EC; white-space: nowrap; }

/* stars */
.stars { display: inline-flex; gap: 2px; color: var(--butter); }
.stars--red { color: var(--red); }

/* scalloped awning dividers */
.scallop {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 26px;
  background-image: radial-gradient(circle at 50% 0, var(--cream-deep) 13px, transparent 14px);
  background-size: 52px 26px;
  background-position: 0 0;
  pointer-events: none;
}
.scallop--hero  { background-image: radial-gradient(circle at 50% 0, var(--slate) 13px, transparent 14px); }
.scallop--treats { background-image: radial-gradient(circle at 50% 0, var(--cream) 13px, transparent 14px); }

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .ticker__track { animation: none; }
  .hero__title .w { opacity: 1; transform: none; animation: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.nav.is-scrolled {
  background: var(--cream);
  box-shadow: 0 2px 0 var(--cream-deep), 0 10px 24px rgba(43, 22, 8, 0.08);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav__logo {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 3px solid var(--cream-deep);
  background: var(--cream-card);
  transition: transform 0.25s ease;
}
.nav__brand:hover .nav__logo { transform: rotate(-8deg) scale(1.05); }
.nav__name {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--red);
  line-height: 1;
  padding-top: 6px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
}
.nav__links a {
  text-decoration: none;
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--ink);
  border-bottom: 3px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.nav__links a:hover { border-color: var(--butter); color: var(--red-deep); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #F0FBF9 !important;
  border-radius: 999px;
  padding: 10px 20px !important;
  border-bottom: none !important;
  box-shadow: 0 4px 0 var(--teal-deep);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--teal-deep); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  width: 26px; height: 3px;
  border-radius: 3px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(120px, 16vh, 170px) var(--pad-x) 110px;
  max-width: calc(var(--container) + 120px);
  margin: 0 auto;
  background:
    radial-gradient(circle at 8% 18%, rgba(244, 169, 184, 0.35) 0 6px, transparent 7px),
    radial-gradient(circle at 16% 72%, rgba(242, 179, 61, 0.4) 0 5px, transparent 6px),
    radial-gradient(circle at 88% 30%, rgba(31, 138, 128, 0.28) 0 5px, transparent 6px),
    radial-gradient(circle at 72% 88%, rgba(221, 74, 47, 0.25) 0 6px, transparent 7px),
    var(--cream);
}
.hero__script {
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--teal);
  transform: rotate(-2deg);
  margin-bottom: 14px;
}
.hero__title {
  font-size: clamp(2.5rem, 5.6vw, 4.3rem);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero__title .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  animation: word-in 0.55s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}
.hero__title .w:nth-child(1) { animation-delay: 0.05s; }
.hero__title .w:nth-child(2) { animation-delay: 0.12s; }
.hero__title .w:nth-child(3) { animation-delay: 0.19s; }
.hero__title .w:nth-child(4) { animation-delay: 0.26s; }
.hero__title .w:nth-child(5) { animation-delay: 0.33s; }
.hero__title .w:nth-child(6) { animation-delay: 0.40s; }
.hero__title .w:nth-child(7) { animation-delay: 0.47s; }
.hero__title .w:nth-child(8) { animation-delay: 0.54s; }
.hero__title .accent { color: var(--red); }
@keyframes word-in {
  to { opacity: 1; transform: translateY(0); }
}
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 600;
  color: var(--ink-soft);
  max-width: 34em;
  margin-bottom: 30px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* hero media */
.hero__media {
  position: relative;
  min-height: 420px;
}
.hero__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hero__photo img { object-fit: cover; width: 100%; height: 100%; }
.hero__photo--main {
  position: relative;
  aspect-ratio: 4 / 3.4;
  border: 6px solid var(--cream-card);
  transform: rotate(1.2deg);
}
.hero__photo--tilt {
  position: absolute;
  width: 46%;
  aspect-ratio: 1 / 1;
  left: -8%;
  bottom: -10%;
  border: 6px solid var(--cream-card);
  transform: rotate(-6deg);
  box-shadow: 0 16px 34px rgba(43, 22, 8, 0.2);
}
.hero__badge {
  position: absolute;
  top: -26px;
  right: -6px;
  width: 118px; height: 118px;
  border-radius: 50%;
  background: var(--butter);
  color: var(--slate);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transform: rotate(8deg);
  box-shadow: 0 8px 20px rgba(43, 22, 8, 0.18);
  border: 4px dashed rgba(43, 22, 8, 0.35);
}
.hero__badge-top {
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.hero__badge-bottom {
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--slate);
  color: var(--cream-on-dark);
  overflow: hidden;
  padding: 14px 0;
  border-top: 4px solid var(--red);
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: ticker-roll 36s linear infinite;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker__track i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--butter);
  flex-shrink: 0;
}
.ticker__track i:nth-of-type(3n+1) { background: var(--red); }
.ticker__track i:nth-of-type(3n+2) { background: var(--teal); }
@keyframes ticker-roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   FLAVOR BOARD (dark)
   ============================================================ */
.board {
  background: var(--slate);
  color: var(--cream-on-dark);
  padding: var(--section-y) 0 calc(var(--section-y) * 0.9);
}
.board__head {
  max-width: 640px;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.board__head h2 { color: var(--cream-on-dark); margin-bottom: 14px; }
.board__intro { color: #CBBBA4; font-weight: 600; }
.board__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}
.flavor {
  background: var(--slate-card);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.flavor:hover { transform: translateY(-6px); border-color: var(--butter); }
.flavor figure {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.flavor figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.flavor:hover figure img { transform: scale(1.05); }
.flavor__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px 0;
}
.flavor__row h3 {
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.flavor > p, .treat > p, .treat__body p {
  padding: 8px 18px 20px;
  font-size: 0.92rem;
  color: #C4B49D;
  font-weight: 600;
}
.flavor--out { opacity: 0.85; }

/* illustrated scoops for photo-less flavors */
.scoop-ill {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}
/* waffle cone, tucked behind the scoop */
.scoop-ill::after {
  content: "";
  position: absolute;
  left: 50%; top: 54%;
  width: 26%; height: 42%;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 56% 100%, 44% 100%);
  background:
    repeating-linear-gradient(60deg, rgba(43, 22, 8, 0.25) 0 3px, transparent 3px 11px),
    repeating-linear-gradient(-60deg, rgba(43, 22, 8, 0.25) 0 3px, transparent 3px 11px),
    linear-gradient(180deg, #D9A05B, #B8813C);
  z-index: 0;
}
/* the scoop itself */
.scoop-ill::before {
  content: "";
  position: absolute;
  left: 50%; top: 40%;
  width: 54%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 48% 52% 50% 50% / 55% 55% 45% 45%;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4), inset -8px -10px 22px rgba(0, 0, 0, 0.18);
  z-index: 1;
}
.scoop-ill--gator     { background: radial-gradient(circle at 78% 22%, rgba(255,255,255,0.04) 0 60px, transparent 61px), linear-gradient(160deg, #33302B, #262420); }
.scoop-ill--gator::before     { background: radial-gradient(circle at 32% 30%, #4A3524 0 7%, transparent 8%), radial-gradient(circle at 68% 52%, #4A3524 0 6%, transparent 7%), radial-gradient(circle at 46% 68%, #3B2A1C 0 5%, transparent 6%), radial-gradient(circle at 58% 24%, #9BBF7A 0 5%, transparent 6%), radial-gradient(circle at 24% 58%, #4A3524 0 4%, transparent 5%), linear-gradient(150deg, #86AD66, #5F8A45); }
.scoop-ill--banana    { background: radial-gradient(circle at 78% 22%, rgba(255,255,255,0.04) 0 60px, transparent 61px), linear-gradient(160deg, #33302B, #262420); }
.scoop-ill--banana::before    { background: radial-gradient(circle at 60% 30%, #C9A968 0 6%, transparent 7%), radial-gradient(circle at 34% 56%, #C9A968 0 5%, transparent 6%), radial-gradient(circle at 62% 66%, #D9BC80 0 5%, transparent 6%), radial-gradient(circle at 30% 28%, #FFF3D0 0 4%, transparent 5%), linear-gradient(150deg, #F2E3B3, #E0C170); }
.scoop-ill--caramel   { background: radial-gradient(circle at 78% 22%, rgba(255,255,255,0.04) 0 60px, transparent 61px), linear-gradient(160deg, #33302B, #262420); }
.scoop-ill--caramel::before   { background: radial-gradient(circle at 40% 32%, #5A3A22 0 7%, transparent 8%), radial-gradient(circle at 66% 58%, #4A2E18 0 6%, transparent 7%), radial-gradient(circle at 30% 62%, #5A3A22 0 5%, transparent 6%), radial-gradient(circle at 62% 26%, #F2CD91 0 4%, transparent 5%), linear-gradient(150deg, #D9A05B, #B0773A); }
.scoop-ill--blueberry { background: radial-gradient(circle at 78% 22%, rgba(255,255,255,0.04) 0 60px, transparent 61px), linear-gradient(160deg, #33302B, #262420); }
.scoop-ill--blueberry::before { background: radial-gradient(circle at 34% 30%, #4B4E8C 0 6%, transparent 7%), radial-gradient(circle at 64% 54%, #D9C9A0 0 5%, transparent 6%), radial-gradient(circle at 44% 66%, #4B4E8C 0 5%, transparent 6%), radial-gradient(circle at 66% 26%, #6B6EAE 0 4%, transparent 5%), linear-gradient(150deg, #A9ADDF, #7A7FBF); }
.scoop-ill--praline   { background: radial-gradient(circle at 78% 22%, rgba(255,255,255,0.04) 0 60px, transparent 61px), linear-gradient(160deg, #33302B, #262420); }
.scoop-ill--praline::before   { background: radial-gradient(circle at 36% 34%, #8A5A2E 0 7%, transparent 8%), radial-gradient(circle at 66% 56%, #6B4420 0 6%, transparent 7%), radial-gradient(circle at 46% 70%, #8A5A2E 0 5%, transparent 6%), radial-gradient(circle at 62% 26%, #F2D9AC 0 4%, transparent 5%), linear-gradient(150deg, #E3C08A, #C2934E); }
.scoop-ill--pumpkin   { background: radial-gradient(circle at 78% 22%, rgba(255,255,255,0.04) 0 60px, transparent 61px), linear-gradient(160deg, #33302B, #262420); }
.scoop-ill--pumpkin::before   { background: radial-gradient(circle at 40% 30%, #F2AE76 0 8%, transparent 9%), radial-gradient(circle at 62% 58%, #A84E1C 0 7%, transparent 8%), radial-gradient(circle at 32% 60%, #A84E1C 0 5%, transparent 6%), linear-gradient(150deg, #E07B2E, #BC5518); }

/* photos shot on white — vignette them into the card */
.flavor--lightbg figure { position: relative; }
.flavor--lightbg figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 34%, rgba(30, 26, 22, 0.88) 92%);
}

.board__note {
  margin-top: clamp(32px, 4vw, 48px);
  text-align: center;
  font-weight: 700;
  color: #CBBBA4;
  border: 2px dashed var(--slate-line);
  border-radius: var(--radius-md);
  padding: 18px 22px;
}
.board__note strong { color: var(--butter); }

/* ============================================================
   TREATS
   ============================================================ */
.treats {
  position: relative;
  background: var(--cream-deep);
  padding: var(--section-y) 0 calc(var(--section-y) + 30px);
}
.treats__head { margin-bottom: clamp(36px, 5vw, 56px); }
.treats__head h2 { margin-top: 2px; }
.treats__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
.treat {
  background: var(--cream-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.treat:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(43, 22, 8, 0.14); }
.treat--photo { grid-column: span 12; display: flex; align-items: stretch; }
.treat--photo figure { width: 46%; flex-shrink: 0; overflow: hidden; }
.treat--photo figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.treat--photo:hover figure img { transform: scale(1.04); }
.treat:not(.treat--photo) { grid-column: span 4; }
.treat__body { display: flex; flex-direction: column; justify-content: center; padding: 18px 0; }
.treat__icon {
  color: var(--teal);
  padding: 22px 18px 0;
}
.treat .flavor__row h3 { font-size: 1.15rem; }
.treat > p, .treat__body p { color: var(--ink-soft); font-size: 0.98rem; }

/* ============================================================
   STORY
   ============================================================ */
.story { padding: var(--section-y) 0; background: var(--cream); }
.story__wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.story__media { position: relative; min-height: 400px; }
.story__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--cream-card);
  box-shadow: var(--shadow-card);
  width: 78%;
  aspect-ratio: 1 / 1.05;
  transform: rotate(-2.5deg);
}
.story__photo img { width: 100%; height: 100%; object-fit: cover; }
.story__photo--two {
  position: absolute;
  right: 0; bottom: -34px;
  width: 52%;
  aspect-ratio: 1 / 1;
  transform: rotate(4deg);
  box-shadow: 0 16px 34px rgba(43, 22, 8, 0.18);
}
.story__text h2 { margin-bottom: 18px; }
.story__text > p.reveal { color: var(--ink-soft); font-weight: 600; margin-bottom: 16px; max-width: 36em; }
.story__facts {
  list-style: none;
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  margin-top: 28px;
}
.story__facts li { display: flex; flex-direction: column; }
.story__facts strong {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--red);
  line-height: 1;
}
.story__facts span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ============================================================
   QUOTES
   ============================================================ */
.quotes {
  background: var(--teal);
  color: #F0FBF9;
  padding: var(--section-y) 0;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(255, 246, 227, 0.07) 0 90px, transparent 91px),
    radial-gradient(circle at 88% 80%, rgba(255, 246, 227, 0.07) 0 120px, transparent 121px);
}
.quotes__head { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.quotes__head h2 { color: #F6FDFB; }
.quotes__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: clamp(18px, 2.4vw, 28px);
  align-items: stretch;
}
.quote {
  background: rgba(255, 251, 240, 0.97);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(10, 50, 46, 0.25);
}
.quote p { font-weight: 700; font-size: 1.02rem; }
.quote cite {
  font-style: normal;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-top: auto;
}
.quote--feature {
  background: var(--slate);
  color: var(--cream-on-dark);
  transform: rotate(-1deg);
  justify-content: center;
}
.quote--feature .quote__big {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.35;
  font-weight: 400;
}
.quote--feature cite { color: var(--butter); }

/* ============================================================
   VISIT
   ============================================================ */
.visit {
  background: var(--slate);
  color: var(--cream-on-dark);
  padding: var(--section-y) 0;
  background-image:
    radial-gradient(circle at 90% 12%, rgba(242, 179, 61, 0.08) 0 140px, transparent 141px),
    radial-gradient(circle at 6% 90%, rgba(221, 74, 47, 0.1) 0 110px, transparent 111px);
}
.visit__wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.visit h2 { color: var(--cream-on-dark); margin-bottom: 22px; }
.visit__address {
  display: flex;
  gap: 14px;
  font-style: normal;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 28px;
}
.visit__address svg { color: var(--red); flex-shrink: 0; margin-top: 7px; }
.visit__address em {
  font-style: normal;
  color: var(--butter);
  font-weight: 800;
}
.visit__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; }
.visit__social {
  color: #C4B49D;
  font-weight: 600;
  max-width: 34em;
}
.visit__social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cream-on-dark);
  font-weight: 800;
  text-decoration-color: var(--butter);
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}
.visit__social a:hover { color: var(--butter); }

.visit__hours {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 30px 30px 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  transform: rotate(1deg);
}
.visit__hours h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--red);
}
.visit__hours table { width: 100%; border-collapse: collapse; }
.visit__hours td {
  padding: 9px 0;
  font-weight: 700;
  border-bottom: 2px dashed var(--cream-deep);
}
.visit__hours tr:last-child td { border-bottom: none; }
.visit__hours td:last-child { text-align: right; }
.visit__hours .closed { color: var(--red); font-weight: 800; }
.visit__hours-note {
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #181511;
  color: #C4B49D;
  padding: 56px 0 0;
}
.footer__wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding-bottom: 40px;
}
.footer__brand { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.footer__brand img { border-radius: 50%; }
.footer__script {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--butter);
  transform: rotate(-3deg);
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-weight: 700;
}
.footer__links a {
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--cream-on-dark); }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}
.footer__contact a {
  text-decoration: none;
  color: var(--cream-on-dark);
  transition: color 0.2s ease;
}
.footer__contact a:hover { color: var(--butter); }
.footer__legal {
  border-top: 1px solid #2A251F;
  text-align: center;
  padding: 18px var(--pad-x);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
    padding-bottom: 120px;
    min-height: 0;
  }
  .hero__media { margin-top: 20px; max-width: 560px; }
  .treat--photo, .treat:not(.treat--photo) { grid-column: span 12; }
  .treat--photo { flex-direction: column; }
  .treat--photo figure { width: 100%; aspect-ratio: 16 / 9; }
  .treat__body { padding: 0 0 6px; }
  .quotes__grid { grid-template-columns: 1fr; }
  .quote--feature { transform: none; }
  .story__wrap, .visit__wrap { grid-template-columns: 1fr; }
  .story__media { max-width: 480px; }
  .visit__hours { transform: none; max-width: 480px; }
  .footer__wrap { grid-template-columns: 1fr; justify-items: start; }
  .footer__brand { align-items: flex-start; }
}

@media (max-width: 820px) {
  .nav__links {
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px var(--pad-x) 24px;
    box-shadow: 0 20px 30px rgba(43, 22, 8, 0.12);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links a { padding: 12px 0; font-size: 1.1rem; }
  .nav__cta { margin-top: 10px; }
  .nav__burger { display: flex; }
  .nav { background: var(--cream); }
}

@media (max-width: 560px) {
  .hero__photo--tilt { display: none; }
  .hero__badge { width: 96px; height: 96px; top: -18px; right: 2px; }
  .hero__badge-top { font-size: 0.9rem; }
  .board__grid { grid-template-columns: 1fr 1fr; }
  .flavor__row { padding: 12px 13px 0; flex-wrap: wrap; }
  .flavor > p, .treat > p, .treat__body p { padding: 6px 13px 16px; }
  .story__photo--two { bottom: -20px; }
  .story__facts { flex-wrap: wrap; }
}

@media (max-width: 430px) {
  .board__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MULTI-PAGE ADDITIONS
   ============================================================ */

/* active nav link */
.nav__links a.is-active { border-color: var(--red); color: var(--red-deep); }

/* compact page header for subpages */
.page-hero {
  padding: clamp(130px, 18vh, 170px) 0 60px;
  background:
    radial-gradient(circle at 10% 30%, rgba(244, 169, 184, 0.35) 0 6px, transparent 7px),
    radial-gradient(circle at 90% 40%, rgba(31, 138, 128, 0.25) 0 5px, transparent 6px),
    radial-gradient(circle at 74% 80%, rgba(242, 179, 61, 0.4) 0 5px, transparent 6px),
    var(--cream);
}
.page-hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  text-transform: uppercase;
  margin-top: 4px;
}
.page-hero__lede {
  margin-top: 16px;
  max-width: 38em;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

/* dotted-leader price list, like a printed menu */
.menu-board {
  background: var(--cream);
  padding: clamp(48px, 6vw, 80px) 0;
}
.menu-board__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.menu-list h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--red-deep);
}
.menu-list + .menu-list { margin-top: 34px; }
.menu-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 7px 0;
  font-weight: 700;
}
.menu-row__dots {
  flex: 1;
  border-bottom: 3px dotted rgba(43, 22, 8, 0.25);
  transform: translateY(-4px);
}
.menu-row__price {
  font-weight: 800;
  color: var(--red-deep);
  white-space: nowrap;
}
.menu-row small {
  display: block;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin-top: 2px;
}
.menu-note {
  margin-top: 20px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  max-width: 34em;
}

/* red call-to-action band */
.cta-band {
  background: var(--red);
  color: #FFF6EC;
  text-align: center;
  padding: clamp(56px, 7vw, 88px) 0;
}
.cta-band .script { color: var(--butter); }
.cta-band h2 { color: #FFF9F0; margin-bottom: 26px; }
.cta-band .btn--butter {
  background: var(--butter);
  color: var(--slate);
  box-shadow: 0 6px 0 #C68C1E;
}
.cta-band .btn--butter:hover { transform: translateY(-3px); box-shadow: 0 9px 0 #C68C1E; }

/* home: flavor sampler CTA card */
.flavor--cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  padding: 28px 24px;
  background: var(--red);
  border-color: var(--red);
}
.flavor--cta:hover { border-color: var(--butter); }
.flavor--cta strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #FFF6EC;
  line-height: 1.2;
}
.flavor--cta .btn {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.25);
  padding: 12px 22px;
  font-size: 0.95rem;
}
.flavor--cta .btn:hover { transform: translateY(-2px); }

/* home: compact visit strip */
.visit-strip {
  background: var(--slate);
  color: var(--cream-on-dark);
  padding: clamp(56px, 7vw, 88px) 0;
}
.visit-strip__wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.visit-strip h2 { color: var(--cream-on-dark); margin-bottom: 14px; }
.visit-strip p { color: #C4B49D; font-weight: 600; max-width: 34em; }
.visit-strip__hours {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}
.visit-strip__hours strong { color: var(--red-deep); }
.visit-strip__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }

/* about page: good-to-know list */
.know-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
  margin-top: 26px;
}
.know-list li {
  background: var(--cream-card);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow-card);
}
.know-list li strong { color: var(--ink); display: block; margin-bottom: 2px; }

/* visit page: direction cards */
.direction-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.4vw, 28px);
  margin-top: 30px;
}
.direction-card {
  background: var(--cream-card);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: var(--shadow-card);
}
.direction-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.direction-card p { color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; }

@media (max-width: 860px) {
  .menu-board__cols, .visit-strip__wrap, .know-list, .direction-cards { grid-template-columns: 1fr; }
}
