:root {
  --black: #1a1020;
  --gold: #c9a227;
  --gold-bright: #e8c547;
  --cream: #faf6ef;
  --purple: #5c2d6e;
  --purple-deep: #3d1f4a;
  --purple-light: #f0e4f3;
  --green: #1a7a4c;
  --green-bright: #2d9b63;
  --ink: #2a1828;
  --paper: #faf6ef;
  --card: #ffffff;
  --card-2: #f5f0e8;
  --muted: #6b5f52;
  --line: rgba(92, 45, 110, 0.16);
  --display: "Cinzel", "Times New Roman", serif;
  --script: "Great Vibes", "Segoe Script", cursive;
  --royal: "Cinzel", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
.wrap { width: min(100% - 2rem, var(--max)); margin: 0 auto; }

.mardi-stripes {
  height: 7px;
  background: repeating-linear-gradient(
    90deg,
    var(--purple) 0,
    var(--purple) 28px,
    var(--gold) 28px,
    var(--gold) 56px,
    var(--green) 56px,
    var(--green) 84px
  );
}
.mardi-stripes-lg { height: 11px; }

.flag-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: none;
  background: var(--cream);
}
.flag-bar span {
  padding: 0.65rem 0.5rem;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.35;
}
.flag-bar span:nth-child(1) { background: var(--purple); color: var(--cream); }
.flag-bar span:nth-child(2) { background: var(--gold); color: var(--black); }
.flag-bar span:nth-child(3) { background: var(--green); color: var(--cream); }
.flag-bar span:nth-child(4) { background: var(--gold); color: var(--black); }
.flag-bar span:nth-child(5) { background: var(--purple); color: var(--cream); }

.flag {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 5px;
}
.flag i:nth-child(1) { background: var(--purple); }
.flag i:nth-child(2) { background: var(--gold); }
.flag i:nth-child(3) { background: var(--green); }

.promo {
  background: var(--purple);
  color: var(--cream);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.promo b { color: var(--gold-bright); font-weight: 800; }

.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(250, 246, 239, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--gold);
  color: var(--ink);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.w-fleur {
  font-family: var(--royal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green);
}
.w-delish {
  font-family: var(--royal);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-deep);
}
.nav-links {
  display: flex;
  gap: 1.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links a:hover { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 1.5rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 0;
  background: var(--gold);
  color: var(--black);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: transparent; color: var(--gold); }
.btn-ghost {
  background: transparent;
  color: var(--purple-deep);
  border: 1px solid rgba(61, 31, 74, 0.35);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: transparent; }
.nav .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.funnel .btn-ghost, main .btn-ghost, .cadence .btn-ghost {
  color: var(--purple-deep);
  border-color: rgba(61, 31, 74, 0.35);
  background: transparent;
}
.cadence .btn.on { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-block { width: 100%; }
.btn-lg { min-height: 3.2rem; padding: 0.85rem 1.85rem; font-size: 0.88rem; }

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  color: var(--cream);
  background: var(--black);
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.hero-unbox .hero-photo { object-position: center 42%; }
.hero-unbox::after {
  background:
    linear-gradient(90deg, rgba(10,10,10,.92) 0%, rgba(10,10,10,.62) 38%, rgba(10,10,10,.08) 62%, rgba(10,10,10,.25) 100%),
    linear-gradient(180deg, rgba(10,10,10,.12) 0%, rgba(10,10,10,.4) 50%, rgba(10,10,10,.98) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,.88) 0%, rgba(10,10,10,.55) 42%, rgba(10,10,10,.15) 68%, rgba(10,10,10,.35) 100%),
    linear-gradient(180deg, rgba(10,10,10,.08) 0%, rgba(10,10,10,.35) 55%, rgba(10,10,10,.96) 100%);
}
.hero .wrap {
  position: relative;
  z-index: 2;
  padding: 0 0 3.5rem;
  max-width: 44rem;
}
.hero .eyebrow {
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.hero h1,
.hero .hero-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6.2vw, 4.4rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--gold);
}
.hero .hero-title span {
  display: block;
}
.hero .tagline {
  font-family: var(--display);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.hero .lede {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--cream);
  max-width: 36rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.35;
}
.hero .script {
  font-family: var(--script);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 0.85rem;
  line-height: 1.1;
}
.hero .hero-support {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 2.1vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--cream);
  max-width: 32rem;
  line-height: 1.45;
  margin-bottom: 0.85rem;
  opacity: 0.96;
}
.hero .hero-proof {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.6rem;
}
.hero .zip-ask {
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
}
.hero .hero-quiet {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 248, 235, 0.72);
  margin-top: 1rem;
  margin-bottom: 0.65rem;
}
.hero .hero-gift {
  margin: 0;
}
.hero .hero-gift a {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.meal-rail-cta {
  margin-top: 1rem;
}
.meal-rail-cta .btn-ghost {
  background: transparent;
}
.zip-row {
  display: flex;
  gap: 0;
  max-width: 28rem;
}
.zip-row input {
  flex: 1;
  min-height: 3.2rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  outline: none;
  font-weight: 500;
}
.zip-row .btn { border-radius: 0; min-height: 3.2rem; }

.manifesto {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
  padding: 4rem 0;
  color: var(--cream);
}
.manifesto h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  max-width: 18ch;
}
.manifesto-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  max-width: 42rem;
  margin-bottom: 1.8rem;
  line-height: 1.55;
}
.manifesto-photos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.25);
}
.manifesto-photos img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.manifesto-photos img.fit-contain { object-fit: contain; background: rgba(0, 0, 0, 0.35); }
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}
.manifesto-grid p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.manifesto-punch {
  color: var(--cream) !important;
  font-size: 1.05rem;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin-top: 1.4rem !important;
}
.manifesto-punch strong { color: var(--gold); }
.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.manifesto-stats article {
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}
.manifesto-stats span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.75);
}
.manifesto-stats b {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.fun-facts {
  background: var(--purple-light);
  padding: 4rem 0;
}
.fun-facts h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-deep);
  margin-bottom: 0.65rem;
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}
.fact-card {
  background: var(--card);
  border-top: 4px solid var(--purple);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(92, 45, 110, 0.08);
}
.fact-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}
.fact-card img.fit-contain { object-fit: contain; background: var(--paper); }
.fact-card b,
.fact-card p { padding-left: 1.2rem; padding-right: 1.2rem; }
.fact-card b { padding-top: 1rem; }
.fact-card p { padding-bottom: 1.35rem; }
.photo-break {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.photo-break img {
  width: 100%;
  height: clamp(280px, 42vw, 480px);
  object-fit: cover;
  object-position: center;
  display: block;
}
.photo-break.featured img {
  height: clamp(360px, 58vw, 680px);
  object-position: center 40%;
}
.photo-break figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2.5rem 1.5rem 1.75rem;
  background: linear-gradient(to top, rgba(35, 18, 45, 0.92) 0%, rgba(35, 18, 45, 0.55) 55%, transparent 100%);
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  max-width: none;
  margin: 0;
}
.photo-break figcaption b {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.35rem;
}
.float-moment figcaption {
  padding: 2.75rem 1.5rem 2rem;
}
.float-lede,
.float-crave {
  max-width: 36rem;
  margin: 0 auto 0.65rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(250, 246, 239, 0.92);
}
.float-crave {
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
}
.float-moment .btn {
  margin-top: 0.25rem;
}
.fact-card:nth-child(3n + 2) { border-top-color: var(--gold); }
.fact-card:nth-child(3n + 3) { border-top-color: var(--green); }
.fact-card b {
  display: block;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.45rem;
}
.fact-card:nth-child(3n + 2) b { color: var(--gold); }
.fact-card:nth-child(3n + 3) b { color: var(--green); }
.fact-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

.section-luxe { padding-top: 5rem; }
.signature-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.65rem;
  margin-top: 2rem;
}
.signature-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.signature-grid figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  border-color: var(--gold);
}
.signature-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: brightness(1.06) saturate(1.08);
}
.signature-grid img.fit-contain,
.course img.fit-contain {
  object-fit: contain;
  object-position: center;
  background: var(--black);
}
.signature-grid figcaption {
  padding: 0.75rem 0.5rem;
  font-family: var(--display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: var(--purple-deep);
  line-height: 1.35;
  border-top: 1px solid var(--line);
}

.signature-grid img.fit-contain,
.course img.fit-contain {
  object-fit: contain;
  object-position: center;
  background: var(--card-2);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--card);
}
.pillars article {
  padding: 1.35rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}
.pillars article:last-child { border-right: 0; }
.pillar-icon {
  width: 1.65rem;
  height: 1.65rem;
  margin: 0 auto 0.55rem;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pillars h3 {
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.pillars p {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.35;
}

.food-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  background: var(--black);
}
.food-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.meal-rail-wrap {
  padding: 2.5rem 0 2rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.meal-rail-head {
  margin-bottom: 1rem;
}
.meal-rail-head h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-deep);
  margin-bottom: 0;
}
.meal-rail {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding: 0.25rem 1.25rem 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.meal-rail::-webkit-scrollbar { height: 6px; }
.meal-rail::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
.rail-card {
  flex: 0 0 min(240px, 72vw);
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.rail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(92, 45, 110, 0.12);
}
.rail-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.rail-card img.fit-contain { object-fit: contain; background: var(--paper); }
.rail-card .body { padding: 0.85rem 0.9rem 1rem; }
.rail-card h3 {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--purple-deep);
  margin-bottom: 0.3rem;
  line-height: 1.25;
}
.rail-card p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  margin-bottom: 0.55rem;
}
.rail-card .add {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nola-life {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  background: var(--black);
}
.nola-life img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.section { padding: 4.5rem 0; }
.section h2, .funnel h2, .about-hero h1, .about-essay h2, .about-copy h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-deep);
}
.section h2, .funnel h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 0.65rem;
  line-height: 1.15;
}
.kicker {
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.68rem;
  margin-bottom: 0.55rem;
}
.sub { color: var(--muted); max-width: 40rem; margin-bottom: 1.8rem; font-size: 1.02rem; line-height: 1.6; }
.funnel-script {
  font-family: var(--script);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--gold);
  margin: -0.35rem 0 0.75rem;
  line-height: 1.1;
}

.cross {
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
}
.cross img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.cross div { padding: 2rem 1.8rem; }
.cross h2 { margin-bottom: 0.85rem; font-size: clamp(1.4rem, 3vw, 2rem); }
.cross p { color: var(--muted); margin-bottom: 0.85rem; font-size: 1rem; line-height: 1.6; }
.cross a { color: var(--gold); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.78rem; }

.how {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.how article {
  background: var(--card);
  padding: 0 0 1.5rem;
  overflow: hidden;
}
.how article img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  margin-bottom: 0.85rem;
}
.how article img.fit-contain { object-fit: contain; background: var(--paper); height: 170px; }
.how article b,
.how article h3,
.how article p { padding-left: 1.2rem; padding-right: 1.2rem; }
.how b {
  font-family: var(--display);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.how h3 {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0.55rem 0 0.45rem;
  color: var(--purple-deep);
}
.how p { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

.plans {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.plans-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.plans-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); display: grid; }
.plans-3 .plan {
  cursor: pointer;
  width: 100%;
  font: inherit;
  color: inherit;
  appearance: none;
  border: 0;
}
.table-packs { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.pack-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  border: 1px solid var(--line);
  background: var(--card);
  color: inherit;
  font: inherit;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s ease;
}
.pack-card:hover,
.pack-card.star {
  border-color: var(--gold);
}
.pack-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: var(--paper);
}
.pack-card .lock,
.pack-card h3,
.pack-card .amt,
.pack-card p,
.pack-card .pack-cta {
  padding-left: 1rem;
  padding-right: 1rem;
}
.pack-card .lock {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.pack-card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0.35rem 0 0.25rem;
  color: var(--purple-deep);
}
.pack-card .amt {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.pack-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
  margin-bottom: 0.85rem;
}
.pack-card .pack-cta {
  margin-top: auto;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.pack-keep {
  margin: 0 0 1rem;
}
.pack-keep a {
  color: var(--purple);
  font-weight: 600;
}
.pick-pan {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 0.15rem;
}
.upsell-note {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
}
.upsell-note a {
  color: var(--purple);
  font-weight: 600;
}
@media (max-width: 800px) {
  .pack-grid { grid-template-columns: 1fr; }
}
.trust-strip {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(0, 0, 0, 0.45);
  padding: 0.45rem 0.75rem;
  margin-bottom: 0.85rem;
  border-left: 3px solid var(--gold);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.hero-ctas .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--cream);
}
.bestsellers {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.85rem;
  margin-bottom: 0.75rem;
}
.best-chip {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 0.35rem 0.75rem 0.35rem 0.35rem;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.best-chip img {
  width: 42px;
  height: 42px;
  object-fit: cover;
}
.best-chip span {
  font-size: 0.72rem;
  font-weight: 700;
  max-width: 7rem;
  text-align: left;
  line-height: 1.25;
}
.best-chip.on { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.hot {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.25rem;
}
.checkout-upsells { margin: 1.2rem 0 1rem; display: grid; gap: 0.5rem; }
.upsell-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.25rem;
}
.upsell-btn {
  text-align: left;
  padding: 0.75rem 0.9rem;
  border: 1px dashed var(--line);
  background: var(--card);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  color: var(--purple-deep);
}
.upsell-btn.on {
  border-style: solid;
  border-color: var(--gold);
  background: rgba(240, 196, 74, 0.12);
}
.weekly-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1rem 0 0.5rem;
  font-weight: 600;
  color: var(--purple-deep);
}
.pay-note {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}
.refer-card {
  margin-top: 2.2rem;
  padding: 1.5rem 1.4rem;
  background: var(--card);
  border-top: 4px solid var(--gold);
}
.refer-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-deep);
  margin-bottom: 0.4rem;
}
.plan {
  background: var(--card);
  padding: 1.25rem 1rem 1.3rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.plan.on, .plan:hover { background: var(--card-2); box-shadow: inset 0 0 0 1px var(--gold); }
.plan.star { box-shadow: inset 0 0 0 2px var(--gold); }
.plan .lock {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.plan .best { color: var(--gold); }
.plan h3 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0.35rem 0 0.15rem;
  color: var(--purple-deep);
}
.plan .amt { font-size: 1.65rem; font-weight: 700; color: var(--gold); font-family: var(--display); }
.plan .each { color: var(--muted); font-weight: 600; font-size: 0.78rem; margin-top: 0.1rem; letter-spacing: 0.04em; }
.plan p { color: var(--muted); font-size: 0.8rem; margin-top: 0.35rem; }

.cadence { display: flex; gap: 0.5rem; margin: 0.3rem 0 1.3rem; flex-wrap: wrap; }

.menu-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--line);
}
.course {
  background: var(--card);
  overflow: hidden;
}
.course img { width: 100%; height: 280px; object-fit: cover; }
.course div { padding: 1rem 1.05rem 1.15rem; border-top: 1px solid var(--line); }
.course h3 {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-deep);
}
.course p { color: var(--muted); font-size: 0.84rem; margin-top: 0.35rem; line-height: 1.45; }

.filters { display: flex; gap: 0.4rem; flex-wrap: wrap; margin: 0.3rem 0 1.2rem; }
.chip {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  border-radius: 0;
  padding: 0.45rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.chip.on { background: var(--gold); color: var(--black); border-color: var(--gold); }

.picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: transparent;
}
[data-sweets] { padding-bottom: 6.5rem; }
.dish img { width: 100%; height: 260px; object-fit: cover; background: var(--card-2); }
.dish img.fit-contain { object-fit: contain; object-position: center; }
.dish .body { padding: 1rem 1rem 1.05rem; display: flex; flex-direction: column; gap: 0.35rem; min-height: 8.5rem; }
.dish {
  background: var(--card);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.dish:hover { border-color: rgba(212, 175, 55, 0.55); }
.dish.in { border-color: var(--green); box-shadow: inset 0 0 0 1px var(--green); }
.dish.star { border-color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold); }
.dish h3 {
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--purple-deep);
}
.dish p { color: var(--muted); font-size: 0.82rem; }
.list-price { color: var(--gold) !important; font-weight: 700; font-size: 0.9rem !important; }
.premium-tag {
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}
.prem-running { color: var(--purple); font-weight: 600; }
.menu-board-5 { grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); }
.picks li { display: flex; justify-content: space-between; gap: 0.75rem; align-items: baseline; }
.pick-prem, .pick-sweet { color: var(--purple); font-size: 0.82rem; font-weight: 600; white-space: nowrap; }
.pick-sweet { color: var(--gold); }
.tag { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.qty { display: flex; align-items: center; gap: 0.45rem; margin-top: auto; padding-top: 0.55rem; }
.qty button {
  width: 2rem; height: 2rem; border-radius: 0;
  border: 1px solid var(--line); background: var(--card-2); color: var(--purple-deep); cursor: pointer; font-weight: 700;
}

.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(250, 246, 239, 0.98);
  border-top: 3px solid var(--gold);
  color: var(--ink);
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 30px rgba(92, 45, 110, 0.12);
}
.sticky-bar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.meter { color: var(--muted); font-size: 0.88rem; }
.meter b { color: var(--gold); font-size: 1.05rem; }

.progress {
  display: flex; gap: 1.2rem; margin-bottom: 1.5rem;
  font-size: 0.72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em;
}
.progress .on { color: var(--gold); }

.funnel { padding: 2.2rem 0 5.5rem; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}
.field { display: grid; gap: 0.3rem; margin-bottom: 0.8rem; }
.field span { font-size: 0.68rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.field input {
  background: var(--card); border: 1px solid var(--line); border-radius: 0; padding: 0.75rem 0.85rem; outline: none; color: var(--ink);
}
.summary {
  background: var(--card); border: 1px solid var(--gold); padding: 1.3rem;
  position: sticky; top: 5rem;
}
.summary h3 { font-family: var(--display); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); }
.row { display: flex; justify-content: space-between; margin: 0.4rem 0; font-size: 0.92rem; }
.picks { margin: 0.8rem 0; padding: 0.7rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 0.88rem; }
.picks li { list-style: none; }

.about-hero { padding: 3rem 0 2rem; }
.about-script {
  font-family: var(--script);
  font-size: clamp(2rem, 4.5vw, 2.6rem);
  color: var(--gold);
  margin: -0.35rem 0 1.4rem;
  line-height: 1.1;
}
.about-exclusive { max-width: 44rem; margin-bottom: 2rem; }
.about-hook {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.about-hook strong { color: var(--purple-deep); }
.about-crave article { border-top: 3px solid var(--gold); }
.about-crave article:nth-child(2) { border-top-color: var(--purple); }
.about-crave article:nth-child(3) { border-top-color: var(--green); }
.about-gumbo figcaption,
.about-open figcaption,
.about-float-tease figcaption { padding-bottom: 2rem; }
.about-only { padding-top: 0; }
.about-tiers {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}
.about-tiers p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0.85rem;
  font-size: 1.02rem;
}
.about-menu-tease {
  list-style: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--purple);
  padding: 1.2rem 1.3rem;
}
.about-menu-tease li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  color: var(--purple-deep);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.about-menu-tease li:last-child { border-bottom: 0; }
.about-press {
  margin: 2.5rem 0 2.8rem;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
}
.about-press h2 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-deep);
  margin-bottom: 1.4rem;
  max-width: 28ch;
  line-height: 1.2;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.press-quote {
  margin: 0;
  background: var(--card);
  border-left: 4px solid var(--gold);
  padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: 0 4px 18px rgba(92, 45, 110, 0.06);
}
.press-quote:nth-child(2) { border-left-color: var(--purple); }
.press-quote:nth-child(3) { border-left-color: var(--green); }
.press-quote:nth-child(4) { border-left-color: var(--gold); }
.press-quote p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 0.65rem;
}
.press-quote cite {
  display: block;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-press-note {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 44rem;
}
.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  max-width: 16ch;
  margin-bottom: 1.3rem;
  line-height: 1.08;
}
.about-lead, .about-essay { max-width: 44rem; }
.about-lead p, .about-essay p, .about-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.65;
}
.about-essay { margin: 2.4rem 0 1.6rem; }
.about-essay h2, .about-copy h2 { font-size: 1.6rem; margin-bottom: 0.8rem; }
.about-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 2rem 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}
.about-proof article { background: var(--card); padding: 1.3rem 1.1rem; }
.about-proof h3 {
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
  color: var(--gold);
}
.about-proof p { color: var(--muted); font-size: 0.88rem; margin: 0; line-height: 1.55; }
.about-proof cite { display: block; margin-top: 0.65rem; font-size: 0.72rem; font-style: normal; color: var(--gold); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.about-chefs { margin: 2.8rem 0; max-width: 44rem; }
.about-chefs h2 { font-size: 1.6rem; margin-bottom: 0.7rem; }
.mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 3px;
  background: var(--line);
}
.mosaic img:first-child { grid-row: 1 / 3; height: 100%; }
.mosaic img { width: 100%; height: 200px; object-fit: cover; }
.about-strip { margin: 1.8rem 0 0; }
.about-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.about-copy img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.about-copy b { color: var(--cream); }

.band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple) 0%, var(--green) 100%);
  border-top: none;
  border-bottom: none;
  padding: 4rem 0;
  text-align: center;
  color: var(--cream);
}
.band-photo .band-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.42);
}
.band-photo .band-inner {
  position: relative;
  z-index: 1;
}
.band h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.2;
  max-width: 22ch;
  margin: 0 auto 0.6rem;
  color: var(--cream);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.band p { color: rgba(250, 246, 239, 0.85); max-width: 34rem; margin: 0 auto; font-size: 1rem; }
.band .script { font-family: var(--script); font-size: 2rem; color: var(--gold-bright); text-transform: none; letter-spacing: 0; margin-top: 0.35rem; }
.sweets-head { margin: 2.4rem 0 1rem; }
.sweets-head h3 { font-family: var(--display); font-size: 1.4rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); }

.faq details { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--purple-deep); letter-spacing: 0.02em; }
.faq p { color: var(--muted); margin-top: 0.5rem; line-height: 1.6; }
.faq a { color: var(--gold); }

.footer {
  background: var(--purple-deep);
  border-top: none;
  color: rgba(250, 246, 239, 0.75);
  padding: 2.2rem 0 2.6rem;
  text-align: center;
}
.footer .brand { justify-content: center; margin-bottom: 0.75rem; }
.footer .tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.footer .links { display: flex; justify-content: center; gap: 1.6rem; margin-top: 0.9rem; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream); }
.footer .w-delish { color: var(--cream); }
.footer .w-fleur { color: var(--gold-bright); }
.footer .links a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .manifesto-photos { grid-template-columns: repeat(3, 1fr); }
  .manifesto-stats { grid-template-columns: 1fr; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .signature-grid { grid-template-columns: repeat(3, 1fr); }
  .pillars article:nth-child(2) { border-right: 0; }
  .food-strip { grid-template-columns: repeat(3, 1fr); }
  .how, .menu-board, .about-copy, .about-tiers, .press-grid, .checkout-grid, .about-proof, .mosaic, .cross, .fact-grid { grid-template-columns: 1fr; }
  .mosaic img:first-child { grid-row: auto; }
  .picker { grid-template-columns: 1fr 1fr; }
  .plans, .plans-5, .plans-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .picker, .plans, .plans-5, .food-strip, .flag-bar, .signature-grid, .manifesto-photos { grid-template-columns: 1fr; }
  .pillars article { border-right: 0; border-bottom: 1px solid var(--line); }
  .zip-row { flex-direction: column; }
  .zip-row input { border-right: 1px solid var(--line); border-bottom: 0; }
  .w-delish { font-size: 1.1rem; }
}


.legal { padding: 3rem 0 4rem; max-width: 42rem; }
.legal h1 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--purple-deep);
  margin-bottom: 0.5rem;
}
.legal-body { margin-top: 1.5rem; display: grid; gap: 1rem; }
.legal-body p { color: var(--ink); line-height: 1.65; }
.legal-body a { color: var(--purple); font-weight: 600; text-decoration: underline; text-underline-offset: 0.15em; }
.thanks-wrap { padding-bottom: 4rem; max-width: 36rem; }
.thanks-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.pay-note a { color: var(--purple); font-weight: 600; text-decoration: underline; text-underline-offset: 0.15em; }
.trust-strip-section { padding-top: 0; }
.flag-bar { display: none !important; }

.account-hub { max-width: 52rem; padding-bottom: 3rem; }
.account-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.account-card {
  border: 1px solid var(--line);
  background: var(--card);
  padding: 1.25rem;
}
.account-card.on { border-color: var(--gold); }
.account-card .lock {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.account-card h3 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0.4rem 0 0.6rem;
  color: var(--purple-deep);
}
.acct-big {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.sub-status {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  margin: 0.35rem 0 0.75rem;
  background: var(--purple-light);
  color: var(--purple-deep);
}
.sub-status.paused,
.sub-status.skipped { background: var(--card-2); color: var(--muted); }
.sub-status.active { background: rgba(26, 122, 76, 0.12); color: var(--green); }
.account-auto { margin: 0.5rem 0 1.5rem; }
@media (max-width: 800px) {
  .account-grid { grid-template-columns: 1fr; }
}

.schedule-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.25rem;
}
.schedule-board article {
  border-top: 2px solid var(--gold);
  padding-top: 1rem;
}
.schedule-board .lock {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.schedule-board h3 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0.45rem 0 0.55rem;
  color: var(--purple-deep);
  font-size: 1.05rem;
}
.schedule-board p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  margin: 0;
}
@media (max-width: 800px) {
  .schedule-board { grid-template-columns: 1fr; }
}

.plan .allin,
a.plan .allin {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-deep);
  margin-top: 0.35rem;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.proof-grid figure {
  margin: 0;
}
.proof-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.proof-grid figcaption {
  padding-top: 0.85rem;
}
.proof-grid figcaption b {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple-deep);
  margin-bottom: 0.35rem;
}
.proof-grid figcaption span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}
@media (max-width: 800px) {
  .proof-grid { grid-template-columns: 1fr; }
}
