/* ══════════════════════════════════════════════════════════
   HOLY TOAST — O'TACOS ANATOMY × HOLY TOAST BRAND
   cream #faf6f1 · toast pink #f0c5d8 · warm brown #775842
   ══════════════════════════════════════════════════════════ */
:root {
  --cream: #faf6f1;
  --cream-2: #f3ede4;
  --card: #fefbf6;
  --pink: #f0c5d8;
  --pink-soft: #f9dcea;
  --pink-deep: #dd9cbf;
  --pink-line: #d893b8;
  --brown: #775842;
  --ink: #322721;
  --ink-soft: #5e534a;
  --white: #ffffff;
  --font-block: "Titan One", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
  --radius-card: 20px;
  --drip-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 240 48" preserveAspectRatio="none"><rect x="0" y="0" width="240" height="38" rx="19" fill="white"/><circle cx="16" cy="33" r="11" fill="white"/><circle cx="40" cy="36" r="9" fill="white"/><circle cx="66" cy="33" r="11" fill="white"/><circle cx="94" cy="37" r="10" fill="white"/><circle cx="121" cy="33" r="11" fill="white"/><circle cx="148" cy="38" r="9" fill="white"/><circle cx="174" cy="34" r="11" fill="white"/><circle cx="201" cy="37" r="10" fill="white"/><circle cx="225" cy="33" r="11" fill="white"/></svg>');
}

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
html.static-mode { scroll-behavior: auto; scroll-snap-type: none; }

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

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--pink); color: var(--ink); }

/* ── shared bits ─────────────────────────────── */
.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.35em; text-transform: uppercase;
  font-weight: 800; color: var(--brown);
}
.eyebrow--light { color: var(--pink); }

.section-title {
  font-family: var(--font-block);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0.5rem 0 1rem;
}
.section-title--light { color: var(--cream); }
.section-title .outline { color: transparent; -webkit-text-stroke: 2px var(--brown); }
.section-title .pink { color: var(--pink); }
.outline { color: transparent; -webkit-text-stroke: 2px currentColor; }

/* ══════════════ BUTTONS ══════════════ */
/* "cheezy" pill — gradient pill w/ drippy bottom edge, O'Tacos style, in toast pink */
.cheezy {
  display: inline-block;
  border-radius: 23px;
  box-shadow: 0 6px 10px rgba(216,147,184,0.45), 0 14px 18px rgba(35,6,18,0.08), 0 24px 45px rgba(109,13,44,0.12);
  transition: transform 0.18s cubic-bezier(.34,1.56,.64,1);
}
.cheezy:hover { transform: translateY(-2px); }
.cheezy:active { transform: translateY(0) scale(0.98); }
.cheezy__pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  border: none; border-radius: 23px;
  height: 48px; padding: 0 32px;
  font-family: var(--font-block); font-size: 1.02rem; letter-spacing: 0.02em;
  text-transform: uppercase; color: var(--ink); white-space: nowrap;
  background: linear-gradient(180deg, #f9dcea, #f6d3e2 8%, #f2cadc 48%, #eab7d1 81%, #dd9cbf);
  border-bottom: 1px solid var(--pink-line);
  transition: background 0.3s ease;
  -webkit-mask-image: var(--drip-mask); mask-image: var(--drip-mask);
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
}
.cheezy:hover .cheezy__pill,
.group:hover .cheezy .cheezy__pill {
  background: linear-gradient(180deg, #fce7f1, #f9dcea 8%, #f6d2e2 48%, #f0c1d8 81%, #e5accb);
}
.cheezy--s .cheezy__pill { height: 36px; padding: 0 20px; font-size: 0.82rem; border-radius: 18px; }
.cheezy--s { border-radius: 18px; }
.cheezy--l .cheezy__pill { height: 54px; padding: 0 40px; font-size: 1.15rem; }

/* solid + ghost pills */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--font-block); font-size: 0.95rem; letter-spacing: 0.02em;
  height: 48px; padding: 0 30px; border-radius: 23px;
  border: 2px solid transparent; text-transform: uppercase; white-space: nowrap;
  transition: transform 0.18s cubic-bezier(.34,1.56,.64,1), background 0.18s, color 0.18s, border-color 0.18s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: #000; }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--ink); }
.btn--ghost-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost-dark:hover { background: var(--ink); color: var(--white); }
.btn--big { height: 54px; padding: 0 38px; font-size: 1.1rem; }
.btn--sm { height: 38px; padding: 0 20px; font-size: 0.78rem; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.btn[disabled]:hover { transform: none; }

/* ══════════════ GATES LOADER ══════════════ */
.gates { position: fixed; inset: 0; z-index: 1000; pointer-events: none; }
.gates__panel {
  position: absolute; left: 0; right: 0; height: 50.5%;
  background: var(--pink);
  overflow: hidden;
}
.gates__panel--top { top: 0; }
.gates__panel--bottom { bottom: 0; }
.gates__logo {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(64vw, 340px); height: auto;
}

/* ══════════════ HEADER (O'Tacos style) ══════════════ */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 80px;
  background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0));
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.hdr--solid, .hdr:hover {
  background: var(--white);
  color: var(--ink);
  border-bottom-color: rgba(50,39,33,0.08);
}
.hdr__inner {
  height: 80px; padding: 0 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  position: relative;
}
.hdr__burger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 8px;
}
.hdr__burger span {
  display: block; width: 26px; height: 3px; border-radius: 2px;
  background: var(--pink-deep);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hdr__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hdr__burger.open span:nth-child(2) { opacity: 0; }
.hdr__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.hdr__nav { display: flex; gap: 1.8rem; }
.hdr__nav a {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 800;
  padding: 0.3em 0; position: relative;
}
.hdr__nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--pink-deep); transition: width 0.25s ease;
}
.hdr__nav a:hover::after { width: 100%; }

.hdr__logo { display: flex; align-items: center; position: relative; }
.hdr__logo img {
  height: 56px; width: auto;
  transition: transform 0.2s ease, opacity 0.25s ease;
}
.hdr__logo--light { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35)); }
.hdr__logo--dark { position: absolute; left: 0; top: 50%; transform: translateY(-50%); opacity: 0; }
.hdr--solid .hdr__logo--light, .hdr:hover .hdr__logo--light { opacity: 0; }
.hdr--solid .hdr__logo--dark, .hdr:hover .hdr__logo--dark { opacity: 1; }
.hdr__logo:hover .hdr__logo--light { transform: scale(1.06) rotate(-2deg); }

.hdr__right { display: flex; align-items: center; gap: 0.9rem; }
.hdr__kosher {
  display: inline-flex; align-items: center; gap: 0.45em;
  height: 32px; padding: 0 12px; border-radius: 999px;
  background: var(--white); border: 1px solid rgba(50,39,33,0.35);
  color: var(--ink); font-family: var(--font-block); font-size: 0.7rem; text-transform: uppercase;
}
.hdr__kosher img { height: 20px; width: auto; }
.hdr__manna {
  height: 36px; border-radius: 999px; padding: 0 14px 0 8px;
  display: inline-flex; align-items: center; gap: 0.5em;
  background: var(--white); border: 1px solid rgba(50,39,33,0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.hdr__manna:hover { transform: translateY(-2px) rotate(-2deg); box-shadow: 0 0 18px rgba(240,197,216,0.8); }
.hdr__manna img { width: 26px; height: auto; display: block; }
.hdr__manna-label {
  font-family: var(--font-block); font-size: 0.62rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--ink); white-space: nowrap;
}
/* mobile bar: icon-only button with a floating tag above it */
@media (max-width: 900px) {
  .mbar .hdr__manna { width: 44px; height: 44px; padding: 0; justify-content: center; position: relative; border-radius: 50%; }
  .mbar .hdr__manna-label {
    position: absolute; bottom: calc(100% + 16px); left: 50%; transform: translateX(-50%);
    background: var(--pink); color: var(--ink);
    padding: 0.55em 1em; border-radius: 999px;
    box-shadow: 0 8px 20px rgba(50,39,33,0.25);
    animation: manna-tag-bob 2.2s ease-in-out infinite;
  }
  .mbar .hdr__manna-label::after {
    content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    border: 6px solid transparent; border-top-color: var(--pink);
  }
  @keyframes manna-tag-bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
  }
  html.static-mode .mbar .hdr__manna-label { animation: none; }
}

/* ══════════════ MEGA MENU ══════════════ */
.mega {
  position: fixed; left: 0; right: 0; top: 80px; z-index: 99;
  background: var(--white);
  box-shadow: 0 30px 60px rgba(50,39,33,0.18);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1);
}
.mega.open { max-height: calc(100vh - 80px); overflow-y: auto; }
.mega__inner {
  display: flex; gap: 3vw; padding: 2rem clamp(1.4rem, 5vw, 4rem);
  max-width: 1400px; margin: 0 auto;
}
.mega__card {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius-card);
  width: clamp(240px, 26vw, 360px); aspect-ratio: 420/390; flex-shrink: 0;
}
.mega__card img.mega__card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.mega__card:hover img.mega__card-img { transform: scale(1.06); }
.mega__card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4) 40%, transparent);
}
.mega__card-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 1.4rem;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
}
.mega__card-content h3 { font-family: var(--font-block); color: var(--white); text-transform: uppercase; font-size: 1.4rem; line-height: 1; }
.mega__see {
  font-family: var(--font-block); font-size: 0.72rem; text-transform: uppercase;
  color: var(--ink); background: var(--pink); border-radius: 999px; padding: 0.55em 1.1em; white-space: nowrap;
}
.mega__cols { display: flex; gap: clamp(2rem, 5vw, 5rem); padding-top: 0.4rem; }
.mega__head {
  display: inline-block;
  font-family: var(--font-block); font-size: 1.05rem; text-transform: uppercase;
  color: var(--ink); margin-bottom: 1rem;
}
.mega__head:hover { color: var(--pink-deep); }
.mega__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem 1.6rem; }
.mega__grid a, .mega__col2 a {
  display: block; padding: 0.3rem 0;
  font-size: 0.9rem; font-weight: 600; color: var(--ink-soft);
}
.mega__grid a:hover, .mega__col2 a:hover { color: var(--pink-deep); }
.mega__col2 { display: flex; flex-direction: column; }

/* ══════════════ MOBILE BOTTOM BAR (O'Tacos signature) ══════════════ */
.mbar {
  display: none;
  position: fixed; bottom: 1.2rem; left: 1.2rem; right: 1.2rem; z-index: 98;
  height: 64px; padding: 0 0.9rem;
  background: var(--white); border-radius: 999px;
  box-shadow: 0 12px 30px rgba(50,39,33,0.25);
  align-items: center; justify-content: space-between; gap: 0.8rem;
}
.mbar .hdr__burger span { background: var(--pink-deep); }
.mbar__logo { height: 44px; width: auto; }

/* ══════════════ MORPH BG ══════════════ */
.bg-morph {
  position: fixed; inset: 0; z-index: -2;
  background: var(--cream);
  transition: background-color 0.6s ease;
}

/* ══════════════ BANNER SLIDER ══════════════ */
.banner {
  position: relative; height: 100svh; min-height: 560px;
  background: var(--ink); overflow: hidden;
}
.banner__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.7s ease;
  pointer-events: none;
}
.banner__slide.active { opacity: 1; pointer-events: auto; z-index: 1; }
.banner__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--pos, 50% 50%); }
@media (max-width: 900px) {
  .banner__img { object-position: var(--pos-m, var(--pos, 50% 50%)); }
  /* light slides on mobile: text sits over the food, add soft cream glow for readability */
  .banner__slides .banner__slide--light .banner__shade {
    background: linear-gradient(to top, rgba(250,246,241,0.96) 0%, rgba(250,246,241,0.82) 42%, rgba(250,246,241,0.35) 66%, rgba(250,246,241,0) 82%);
  }
  .banner__slides .banner__slide--light .banner__title { text-shadow: 0 2px 18px rgba(250,246,241,0.95), 0 0 40px rgba(250,246,241,0.8); }
}
.banner__slide.active .banner__img { animation: banner-zoom 6s ease-out forwards; }
@keyframes banner-zoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.banner__shade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.28) 55%, rgba(0,0,0,0.05));
}
.banner__content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  justify-content: safe center;
  padding: 100px 11% 110px;
  max-width: 760px;
  color: var(--white);
  overflow: hidden;
}
@media (max-height: 780px) {
  .banner__content { padding-top: 96px; }
  .banner__title { font-size: clamp(2rem, 5vw, 4.2rem); }
  .banner__sub { margin-bottom: 0.8rem; }
}
.banner__kicker {
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 800;
  color: var(--pink); margin-bottom: 1.1rem;
}
.banner__title {
  font-family: var(--font-block);
  font-size: clamp(2.6rem, 6.5vw, 5.6rem);
  line-height: 0.92; text-transform: uppercase;
  margin-bottom: 1.1rem;
  text-shadow: 0 10px 40px rgba(0,0,0,0.45);
}
.banner__title em { font-style: normal; color: var(--pink); }
.banner__sub { font-size: 1.08rem; line-height: 1.55; max-width: 42ch; margin-bottom: 1.8rem; color: rgba(255,255,255,0.92); }
.banner__btns { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* light slides — pale AI backgrounds need dark text, no dark shade */
.banner__slide--light .banner__shade { background: none; }
.banner__slide--light .banner__content { color: var(--ink); }
.banner__slide--light .banner__kicker { color: var(--brown); }
.banner__slide--light .banner__title { text-shadow: 0 6px 30px rgba(250,246,241,0.55); }
.banner__slide--light .banner__title em { color: var(--pink-deep); }
.banner__slide--light .banner__sub { color: var(--ink-soft); }
.banner__slide--light .btn--ghost { color: var(--ink); border-color: var(--ink); }
.banner__slide--light .btn--ghost:hover { background: var(--ink); color: var(--white); }

.banner__pag {
  position: absolute; bottom: 1.6rem; left: 0; right: 0; z-index: 5;
  display: flex; align-items: center; justify-content: center; gap: 0.55rem;
}
.banner__bullet {
  width: 10px; height: 10px; border-radius: 999px; border: 0; padding: 0;
  background: rgba(255,255,255,0.45);
  transition: all 0.3s ease;
}
.banner__bullet.active {
  width: 34px;
  background: linear-gradient(180deg, #f9dcea, #f2cadc 40%, #dd9cbf);
  border: 1px solid var(--pink-line);
}
.banner__pause {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.25); color: var(--white); font-size: 0.6rem;
  display: grid; place-items: center; margin-left: 0.5rem;
}
/* bullets/pause over light slides */
.banner--light .banner__bullet { background: rgba(50,39,33,0.3); }
.banner--light .banner__bullet.active { background: linear-gradient(180deg, #f9dcea, #f2cadc 40%, #dd9cbf); border: 1px solid var(--pink-line); }
.banner--light .banner__pause { border-color: rgba(50,39,33,0.4); background: rgba(255,255,255,0.5); color: var(--ink); }

/* ══════════════ FEATURED CARDS BLOCK ══════════════ */
.featured { position: relative; padding: 4rem clamp(1.4rem, 4vw, 4rem) 4.5rem; z-index: 2; }
.featured__pattern {
  position: absolute; inset: 0; opacity: 0.05; pointer-events: none;
  background-image: url("assets/holy-toast-logo.png");
  background-size: 130px; background-repeat: space;
}
.featured__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  max-width: 1400px; margin: 0 auto 2.6rem;
}
.fcard {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius-card); aspect-ratio: 420/390;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fcard:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(50,39,33,0.22); }
.fcard__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.fcard:hover .fcard__img { transform: scale(1.07); }
.fcard::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4) 45%, transparent);
}
.fcard__content {
  position: absolute; inset: 0; z-index: 2; padding: 1.8rem;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 1rem;
  text-align: center;
}
.fcard__title {
  font-family: var(--font-block); color: var(--white); text-transform: uppercase;
  font-size: clamp(1.4rem, 2vw, 1.9rem); line-height: 1;
}
.fcard__btn {
  font-family: var(--font-block); font-size: 0.75rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--white); border: 2px solid var(--white); border-radius: 999px;
  padding: 0.6em 1.4em; background: transparent; transition: background 0.2s, color 0.2s;
}
.fcard:hover .fcard__btn { background: var(--white); color: var(--ink); }
.featured__ctas { position: relative; z-index: 1; display: flex; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ══════════════ TEN INTRO ══════════════ */
.ten-intro {
  min-height: 66svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 5rem 1.5rem; position: relative; z-index: 2;
}
.ten-intro__title {
  font-family: var(--font-block);
  font-size: clamp(3.4rem, 12vw, 10rem); line-height: 0.9; text-transform: uppercase;
  display: flex; flex-direction: column; color: var(--ink);
  margin: 1rem 0;
}
.ten-intro__title .outline { -webkit-text-stroke-color: var(--pink-deep); color: transparent; }
.ten-intro__sub { font-size: 1.1rem; color: var(--ink-soft); line-height: 1.65; }

/* ══════════════ CHAPTERS ══════════════ */
.chapter {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 6rem clamp(1.5rem, 6vw, 6rem);
  position: relative; overflow: hidden;
  scroll-snap-align: start;
  z-index: 2;
}
.chapter__bigword {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column; justify-content: center;
  font-family: var(--font-block);
  font-size: clamp(5rem, 17vw, 15rem); line-height: 0.83;
  opacity: 0.08; white-space: nowrap;
  pointer-events: none; user-select: none;
  transform: rotate(-4deg) translateX(-4%);
}
.chapter__num {
  position: absolute; top: 5rem; right: clamp(1rem, 4vw, 4rem); z-index: 0;
  font-family: var(--font-block);
  font-size: clamp(6rem, 18vw, 15rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 3px currentColor;
  opacity: 0.3; pointer-events: none;
}
.chapter__visual { position: relative; z-index: 2; display: grid; place-items: center; }
.chapter__photo-wrap { position: relative; width: min(48vh, 92%); aspect-ratio: 1; }
.chapter__photo {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.chapter__info { position: relative; z-index: 2; max-width: 34rem; }
.chapter__label {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 800;
  border: 2px solid currentColor; border-radius: 999px;
  padding: 0.45em 1.1em; margin-bottom: 1.1rem;
}
.chapter__name {
  font-family: var(--font-block);
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.92; text-transform: uppercase;
  margin-bottom: 1.2rem;
  text-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.chapter__desc {
  font-size: 1.08rem; line-height: 1.6;
  margin-bottom: 1.4rem; opacity: 0.92;
}
.chapter__chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 1.8rem; }
.chip {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.5em 1.05em; border-radius: 999px;
  border: 2px solid currentColor;
  background: rgba(0,0,0,0.12);
  transition: transform 0.15s ease;
}
.chip:hover { transform: rotate(-3deg) scale(1.08); }
.chapter .btn--chapter {
  font-family: var(--font-block);
  border-radius: 23px;
}
/* per-chapter CTA colors are set inline from JS */

/* ══════════════ RAIL ══════════════ */
.rail {
  position: fixed; right: 0.9rem; top: 50%; transform: translateY(-50%);
  z-index: 60; display: flex; flex-direction: column; gap: 0.45rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.rail.visible { opacity: 1; pointer-events: auto; }
.rail__dot {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid rgba(50,39,33,0.4);
  background: rgba(255,255,255,0.55);
  color: var(--ink);
  font-family: var(--font-block); font-size: 0.62rem;
  display: grid; place-items: center;
  transition: transform 0.18s ease, background 0.18s ease;
}
.rail__dot:hover { transform: scale(1.25); }
.rail__dot.active { background: var(--ink); color: var(--pink); border-color: var(--ink); transform: scale(1.2); }

/* ══════════════ SIDES ══════════════ */
.sides {
  background: var(--cream-2); color: var(--ink);
  padding: 6.5rem clamp(1.5rem, 6vw, 6rem) 7rem;
  position: relative; z-index: 2;
  text-align: center;
}
.sides__tabs { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin: 2.2rem 0 3rem; }
.sides__tab {
  font-family: var(--font-block); font-size: 0.88rem; text-transform: uppercase;
  padding: 0.7em 1.5em; border-radius: 999px;
  border: 2px solid var(--ink); background: transparent; color: var(--ink);
  transition: all 0.18s ease;
}
.sides__tab:hover { transform: translateY(-2px); }
.sides__tab.active { background: var(--ink); color: var(--pink); border-color: var(--ink); }
.sides__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.2rem; max-width: 1200px; margin: 0 auto; text-align: left;
}
.side-card {
  background: var(--white); border-radius: var(--radius-card);
  overflow: hidden; position: relative;
  box-shadow: 0 8px 24px rgba(50,39,33,0.08);
  transition: transform 0.2s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s;
}
.side-card:hover { transform: translateY(-8px); box-shadow: 0 22px 44px rgba(50,39,33,0.16); z-index: 3; }
.side-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.side-card__body { padding: 1rem 1.1rem 1.2rem; }
.side-card__name { font-family: var(--font-block); font-size: 1.08rem; line-height: 1.1; text-transform: uppercase; margin-bottom: 0.35rem; }
.side-card__desc { font-size: 0.85rem; line-height: 1.45; color: var(--ink-soft); }
.side-card__tag {
  position: absolute; top: 0.8rem; left: 0.8rem; z-index: 2;
  background: var(--pink); color: var(--ink);
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.45em 0.95em; border-radius: 999px;
}

/* ══════════════ BYO ══════════════ */
.byo {
  background: var(--pink);
  color: var(--ink);
  padding: 6.5rem clamp(1.5rem, 6vw, 6rem) 7rem;
  position: relative; z-index: 2; overflow: hidden;
  text-align: center;
}
.byo .eyebrow { color: var(--brown); }
.byo .section-title { color: var(--ink); }
.byo .section-title .outline { -webkit-text-stroke-color: var(--white); color: transparent; }
.byo__sub { font-size: 1.1rem; color: rgba(50,39,33,0.8); margin-bottom: 3rem; position: relative; }
.byo__sub b { color: var(--brown); }
.byo__layout {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 2.5rem;
  max-width: 1200px; margin: 0 auto; text-align: left; position: relative;
}
.byo__group { margin-bottom: 2.2rem; }
.byo__group-title {
  font-family: var(--font-block); font-size: 1.2rem; text-transform: uppercase; color: var(--ink);
  margin-bottom: 0.4rem;
}
.byo__group-hint { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brown); margin-bottom: 0.9rem; font-weight: 800; }
.byo__opts { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.opt {
  font-size: 0.85rem; font-weight: 700;
  padding: 0.55em 1.15em; border-radius: 999px;
  border: 2px solid rgba(50,39,33,0.35);
  background: rgba(255,255,255,0.5); color: var(--ink);
  transition: all 0.15s ease;
}
.opt:hover { border-color: var(--ink); transform: translateY(-2px); }
.opt.selected {
  background: var(--ink); color: var(--pink); border-color: var(--ink);
  transform: scale(1.05);
}
.opt.maxed { opacity: 0.35; pointer-events: none; }

.tablet {
  background: var(--white);
  color: var(--ink);
  border-radius: 24px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 24px 60px rgba(50,39,33,0.22);
  height: fit-content; position: sticky; top: 6.5rem;
}
.tablet__top {
  text-align: center; font-family: var(--font-block); font-size: 0.95rem; text-transform: uppercase;
  letter-spacing: 0.1em; padding-bottom: 0.9rem; margin-bottom: 1rem;
  border-bottom: 2px dashed rgba(50,39,33,0.25);
}
.tablet__empty { font-style: italic; text-align: center; opacity: 0.5; padding: 1rem 0; }
.tablet__line {
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: 0.9rem; padding: 0.32rem 0; font-weight: 600;
}
.tablet__line small { opacity: 0.5; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.62rem; }
.tablet__cta { width: 100%; margin-top: 1.2rem; }

/* ══════════════ WITNESSED ══════════════ */
.witnessed {
  background: var(--cream); color: var(--ink);
  padding: 6.5rem clamp(1.5rem, 6vw, 6rem) 7rem;
  text-align: center; position: relative; z-index: 2;
}
.witnessed__sub { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 3rem; }
.witnessed__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 270px; grid-auto-flow: dense;
  gap: 1rem; max-width: 1200px; margin: 0 auto;
}
.witnessed__item {
  border-radius: var(--radius-card); overflow: hidden;
  box-shadow: 0 10px 28px rgba(50,39,33,0.12); position: relative;
  transition: transform 0.2s cubic-bezier(.34,1.56,.64,1);
  background: var(--ink);
}
.witnessed__item:hover { transform: translateY(-6px); }
.witnessed__item--video { grid-column: span 2; grid-row: span 2; }
.witnessed__item--wide { grid-column: span 2; }
.witnessed__item img, .witnessed__item video { width: 100%; height: 100%; object-fit: cover; }
.sticker {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.5em 1em; border-radius: 999px;
}
.sticker--gold { background: var(--pink); color: var(--ink); }

/* ══════════════ FIND YOUR TOAST HOUSE (split section) ══════════════ */
.find {
  position: relative; z-index: 2;
  display: flex; flex-direction: row; width: 100%;
  background: var(--cream-2);
  overflow: hidden;
}
.find__map {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 50%; min-height: 520px;
}
.find__map img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.find__map::after { content: ""; position: absolute; inset: 0; background: rgba(50,39,33,0.25); }
.find__map .cheezy { position: relative; z-index: 2; }
.find__cardwrap {
  width: 50%; flex-shrink: 0;
  padding: clamp(1.5rem, 4vw, 5rem);
  display: flex; align-items: center;
}
.find__card {
  background: var(--white); border-radius: 24px;
  padding: clamp(2rem, 4vw, 4rem);
  width: 100%;
  box-shadow: 0 24px 60px rgba(50,39,33,0.12);
}
.find__card h2 {
  font-family: var(--font-block); text-transform: uppercase;
  font-size: clamp(2rem, 3.6vw, 3.4rem); line-height: 0.95;
  color: var(--ink); margin-bottom: 1.6rem;
}
.find__card h2 em { font-style: normal; color: var(--pink-deep); }

/* ══════════════ HOUSES ══════════════ */
.houses {
  background: var(--cream);
  padding: 6.5rem clamp(1.5rem, 6vw, 6rem) 7rem;
  text-align: center; position: relative; z-index: 2;
}
.houses__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem; max-width: 1250px; margin: 3rem auto 0; text-align: left;
}
.house {
  border-radius: var(--radius-card);
  padding: 1.8rem 1.6rem;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(50,39,33,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.house:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(50,39,33,0.15); }
.house--soon { background: var(--cream-2); box-shadow: none; border: 2px dashed rgba(119,88,66,0.4); }
.house__soon-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--pink); color: var(--ink);
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.45em 0.95em; border-radius: 999px;
}
.house__city { font-family: var(--font-block); font-size: 1.6rem; text-transform: uppercase; color: var(--brown); margin-bottom: 0.4rem; }
.house__addr { font-size: 0.98rem; line-height: 1.45; margin-bottom: 1.1rem; color: var(--ink-soft); }
.house__hours { list-style: none; font-size: 0.8rem; margin-bottom: 1.3rem; }
.house__hours li { display: flex; justify-content: space-between; padding: 0.16rem 0; color: var(--ink-soft); }
.house__hours li span:last-child { color: var(--ink); font-weight: 700; }
.house__actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* ══════════════ PROMO DUO (Boss Club–style cards) ══════════════ */
.promos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
  padding: 1.2rem clamp(1.2rem, 4vw, 3rem) 3rem;
  position: relative; z-index: 2;
}
.promo {
  position: relative; border-radius: 24px; overflow: hidden;
  aspect-ratio: 1 / 1; max-height: 640px; width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  padding: clamp(2.4rem, 5vw, 4rem) clamp(1.4rem, 3vw, 3rem);
  text-align: center;
}
.promo--pink { background: var(--pink); color: var(--ink); }
.promo--brown { background: var(--brown); color: var(--cream); }
.promo__title {
  font-family: var(--font-block); text-transform: uppercase;
  font-size: clamp(2.2rem, 4.6vw, 4.4rem); line-height: 0.92;
  margin-bottom: 0.8rem; position: relative; z-index: 1;
}
.promo__sub {
  font-family: var(--font-block); text-transform: uppercase;
  font-size: clamp(1rem, 1.8vw, 1.5rem); line-height: 1.15;
  opacity: 0.85; white-space: pre-wrap; position: relative; z-index: 1;
}
.promo__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; align-items: center; position: relative; z-index: 1; margin-top: auto; }
.promo__bg {
  position: absolute; inset: 0; z-index: 0; opacity: 0.07; pointer-events: none;
  background-image: url("assets/holy-toast-logo.png");
  background-size: 110px; background-repeat: space;
}

/* ══════════════ MISSION ══════════════ */
.mission {
  background: var(--cream); color: var(--ink);
  padding: 7rem 1.5rem; text-align: center; position: relative; z-index: 2;
}
.mission__title {
  font-family: var(--font-block); text-transform: uppercase;
  font-size: clamp(2.4rem, 6.5vw, 5rem); line-height: 1;
  margin: 1rem 0 1.6rem;
}
.mission__title em { color: var(--pink-deep); font-style: normal; }
.mission__sub { font-size: 1.1rem; line-height: 1.7; color: var(--ink-soft); }
.mission__kosher { height: 64px; width: auto; margin: 2.4rem auto 0; }

/* ══════════════ GIANT VIBE TYPE (La boss vibe–style) ══════════════ */
.vibe {
  position: relative; width: 100%; padding: 4rem 0 5rem; text-align: center;
  background: var(--cream); z-index: 2; overflow: hidden;
}
.vibe__pattern {
  position: absolute; inset: 0; opacity: 0.05; pointer-events: none;
  background-image: url("assets/holy-toast-logo.png");
  background-size: 150px; background-repeat: space;
}
.vibe__text {
  position: relative; z-index: 1;
  font-family: var(--font-block); text-transform: uppercase;
  font-size: clamp(4rem, 13.5vw, 12rem); line-height: 0.86;
  color: var(--ink); white-space: nowrap; user-select: none;
}
.vibe__text span { color: var(--pink-deep); }

/* ══════════════ FOOTER ══════════════ */
.footer {
  background: var(--ink); color: var(--cream);
  padding: 3.5rem clamp(1.5rem, 6vw, 6rem) 2rem;
  position: relative; z-index: 2; overflow: hidden;
}
.footer__top {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
  max-width: 1250px; margin: 0 auto 2.6rem; padding-bottom: 2.6rem;
  border-bottom: 1px solid rgba(250,246,241,0.14);
}
.footer__top img { height: 72px; width: auto; }
.footer__social { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.footer__social-label { font-family: var(--font-block); font-size: 1.3rem; text-transform: uppercase; color: var(--pink); }
.footer__social a { font-weight: 700; font-size: 0.92rem; }
.footer__social a:hover { color: var(--pink); }
.footer__cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem;
  max-width: 1250px; margin: 0 auto 3rem;
}
.footer__cols h4 {
  font-family: var(--font-block); font-size: 0.95rem; text-transform: uppercase;
  color: var(--cream); margin-bottom: 1rem;
}
.footer__cols a { display: block; padding: 0.22rem 0; font-size: 0.9rem; color: rgba(250,246,241,0.72); transition: color 0.15s; }
.footer__cols a:hover { color: var(--pink); }
.footer__cols p { font-size: 0.88rem; line-height: 1.55; color: rgba(250,246,241,0.72); margin-bottom: 0.9rem; }
.footer__menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.4rem; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.6rem;
  border-top: 1px solid rgba(250,246,241,0.14);
  padding-top: 1.6rem; font-size: 0.74rem; color: rgba(250,246,241,0.45);
  max-width: 1250px; margin: 0 auto;
}
.footer__bottom img { height: 30px; width: auto; }
.footer__note { max-width: 1250px; margin: 1.4rem auto 0; font-size: 0.68rem; line-height: 1.5; color: rgba(250,246,241,0.35); }

/* ══════════════ MODAL ══════════════ */
.modal { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(35,20,28,0.6); backdrop-filter: blur(4px); }
.modal__card {
  position: relative; z-index: 2;
  background: var(--white); color: var(--ink);
  border-radius: 24px; padding: 2.2rem;
  width: min(430px, calc(100vw - 2.4rem));
  box-shadow: 0 30px 80px rgba(35,6,18,0.35);
}
.modal__card h3 { font-family: var(--font-block); text-transform: uppercase; font-size: 1.6rem; margin: 0.4rem 0 1.4rem; }
.modal__close {
  position: absolute; top: 0.9rem; right: 0.9rem;
  background: none; border: 0; font-size: 1.2rem; padding: 0.4rem;
}
.modal__loc {
  display: flex; justify-content: space-between; align-items: center;
  border: 2px solid rgba(50,39,33,0.2); border-radius: 16px;
  padding: 1rem 1.2rem; margin-bottom: 0.8rem;
  transition: all 0.15s ease;
}
.modal__loc:hover { background: var(--pink); border-color: var(--pink); transform: translateY(-2px); }
.modal__loc small { opacity: 0.6; }
.modal__loc i { font-style: normal; font-size: 1.3rem; }
.modal__note { font-size: 0.74rem; opacity: 0.5; text-align: center; margin-top: 0.6rem; }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1100px) {
  .featured__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hdr { height: 66px; background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0)); border: 0; }
  .hdr--solid, .hdr:hover { background: var(--white); }
  .hdr__inner { height: 66px; justify-content: center; }
  .hdr__nav, .hdr__right { display: none; }
  .hdr__logo img { height: 44px; }
  .mbar { display: flex; }
  .mega { top: 0; z-index: 120; height: 100vh; max-height: none; transform: translateY(100%); transition: transform 0.35s ease; overflow-y: auto; }
  .mega.open { transform: translateY(0); }
  .mega__inner { flex-direction: column; padding: 4.5rem 1.4rem 8rem; }
  .mega__card { width: 100%; aspect-ratio: 16/10; }
  .mega__close {
    display: grid !important; position: absolute; top: 1rem; right: 1rem;
    width: 40px; height: 40px; border-radius: 50%; place-items: center;
    background: var(--cream-2); border: 0; font-size: 1.1rem; z-index: 2;
  }

  .banner__content { padding: 90px 1.6rem 160px; justify-content: flex-end; }
  .banner__pag { bottom: 8rem; }

  .chapter {
    grid-template-columns: 1fr;
    gap: 1rem; text-align: center;
    padding: 5.5rem 1.4rem 4rem;
  }
  .chapter__photo-wrap { width: min(64vw, 340px); }
  .chapter__info { max-width: none; }
  .chapter__chips { justify-content: center; }
  .chapter__num { top: 4rem; right: 0.8rem; opacity: 0.2; }

  .rail { display: none; }

  .byo__layout { grid-template-columns: 1fr; }
  .tablet { position: static; }

  .witnessed__grid { grid-template-columns: 1fr 1fr; }
  .witnessed__item--video { grid-column: span 2; }

  .find { flex-direction: column; }
  .find__map, .find__cardwrap { width: 100%; }
  .find__map { min-height: 340px; }

  .promos { grid-template-columns: 1fr; }
  .promo { aspect-ratio: 11/13; }

  .footer { padding-bottom: 7rem; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
.mega__close { display: none; }
@media (max-width: 540px) {
  .witnessed__grid { grid-template-columns: 1fr; }
  .witnessed__item--video, .witnessed__item--wide { grid-column: span 1; }
  .footer__cols { grid-template-columns: 1fr; }
  .featured__grid { grid-template-columns: 1fr; }
  .banner__title { font-size: 13vw; }
}

/* ══════════════ MANNA MODE ══════════════ */
.manna { position: fixed; inset: 0; z-index: 400; pointer-events: none; overflow: hidden; }
.manna__ray {
  position: absolute; left: 50%; top: -25%; width: 70vw; height: 80vh;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 0%, rgba(255,238,205,0.65), rgba(255,238,205,0) 68%);
  opacity: 0;
}
.manna__cloud {
  position: absolute; top: -6vh; width: 64vw; height: 24vh;
  background:
    radial-gradient(closest-side at 30% 60%, #fff 92%, transparent),
    radial-gradient(closest-side at 60% 40%, #fff 90%, transparent),
    radial-gradient(closest-side at 80% 70%, #fdf3f7 88%, transparent);
  filter: blur(10px); opacity: 0.95;
}
.manna__cloud--l { left: -12vw; }
.manna__cloud--r { right: -12vw; }
.manna__ray { z-index: 1; }
.manna__cloud { z-index: 2; }
.manna__toast {
  position: absolute; left: 0; top: 0; z-index: 3;
  will-change: transform; user-select: none; line-height: 1;
  filter: drop-shadow(0 8px 12px rgba(50,39,33,0.3));
}
.manna__toast--spark { color: var(--pink-deep); text-shadow: 0 0 14px rgba(240,197,216,0.9); }
.manna__basket {
  position: absolute; bottom: 2.5vh; left: 50vw; font-size: 60px; z-index: 5;
  transform: translateX(-50%); line-height: 1;
  filter: drop-shadow(0 10px 16px rgba(50,39,33,0.35));
}
.manna__basket::after {
  content: ""; position: absolute; inset: -14px -18px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(240,197,216,0.8), 0 0 30px rgba(240,197,216,0.8);
}
.manna__hud {
  position: absolute; top: max(180px, 26vh); left: 50%; transform: translateX(-50%); z-index: 6;
  display: flex; align-items: center; gap: 0.9rem;
  pointer-events: auto;
  background: var(--white); color: var(--ink);
  border-radius: 999px; padding: 0.45rem 0.5rem 0.45rem 1.3rem;
  box-shadow: 0 14px 34px rgba(50,39,33,0.25);
  font-family: var(--font-block); font-size: 0.92rem; text-transform: uppercase;
  white-space: nowrap; max-width: calc(100vw - 2rem);
}
.manna__hud b { color: var(--pink-deep); }
.manna__cardwrap { position: absolute; inset: 0; z-index: 7; display: grid; place-items: center; pointer-events: auto; }
.manna__card {
  background: var(--white); color: var(--ink);
  border-radius: 24px; padding: 2.4rem 2.2rem; text-align: center;
  width: min(430px, calc(100vw - 2.4rem));
  box-shadow: 0 30px 80px rgba(35,6,18,0.4);
}
.manna__card h3 { font-family: var(--font-block); text-transform: uppercase; font-size: 1.9rem; line-height: 1; margin: 0.4rem 0 0.8rem; }
.manna__card p { color: var(--ink-soft); margin-bottom: 1.4rem; }
.manna__code {
  display: block; font-family: var(--font-block); font-size: 1.6rem; letter-spacing: 0.12em;
  background: var(--pink); color: var(--ink); border: 2px dashed var(--brown);
  border-radius: 14px; padding: 0.55em 0.4em; margin-bottom: 1.4rem; cursor: pointer;
}
.manna__card-actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.footer__manna {
  font-family: var(--font-block); font-size: 0.78rem; text-transform: uppercase;
  color: var(--pink); background: none; border: 2px dashed rgba(240,197,216,0.5);
  border-radius: 999px; padding: 0.5em 1.2em;
  transition: all 0.2s ease;
}
.footer__manna:hover { border-color: var(--pink); box-shadow: 0 0 20px rgba(240,197,216,0.4); transform: translateY(-2px); }

/* mobile taps: disable double-tap-zoom on interactive bits so triple-tap works */
a, button, .hdr__logo, .mbar__logo { touch-action: manipulation; }
.mega__col2 button {
  display: block; padding: 0.3rem 0; text-align: left;
  font-size: 0.9rem; font-weight: 600; color: var(--ink-soft);
  background: none; border: 0; font-family: var(--font-body);
}
.mega__col2 button:hover { color: var(--pink-deep); }
