:root {
  --blush: #FFE5EC;
  --soft:  #FFB5C5;
  --rose:  #EF5A89;
  --hero:  #FF2D87;
  --gold:  #E8B63C;
  --teal:  #1F8C8C;
  --wine:  #2D1820;

  --display: 'Bebas Neue', Impact, sans-serif;
  --body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1180px;
  --shadow-lg: 0 20px 60px rgba(45, 24, 32, 0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--blush);
  color: var(--wine);
  font-family: var(--body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* Skip-link — visually hidden until keyboard-focused */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  background: var(--wine);
  color: #fff;
  text-decoration: none;
  z-index: 1000;
}

.skip-link:focus {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* STICKY TOP BAR */
.sticky-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, var(--gold) 0%, #d9a82e 100%);
  color: var(--wine);
  border-bottom: 1px solid rgba(45, 24, 32, 0.18);
  box-shadow: 0 4px 18px rgba(45, 24, 32, 0.14);
}

.sticky-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.65rem 1.25rem;
}

/* Left: pulse + title + date */
.sticky-bar__lead {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.sticky-bar__pulse {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--hero);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 45, 135, 0.65);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 45, 135, 0.65); }
  70% { box-shadow: 0 0 0 9px rgba(255, 45, 135, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 45, 135, 0); }
}

.sticky-bar__title {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
  line-height: 1;
}

.sticky-bar__date {
  font-family: var(--body);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--wine);
  opacity: 0.7;
  letter-spacing: 0.02em;
  padding-left: 0.5rem;
  border-left: 1px solid rgba(45, 24, 32, 0.25);
}

/* Center: countdown — display numerals + tiny labels */
.sticky-bar__countdown {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-grow: 1;
  justify-content: center;
}

.sticky-bar__starts {
  font-family: var(--body);
  font-size: 0.7rem;
  font-style: italic;
  color: var(--wine);
  opacity: 0.65;
  margin-right: 0.45rem;
  letter-spacing: 0.04em;
}

.sticky-bar__unit {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  min-width: 2.4rem;
}

.sticky-bar__num {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(45, 24, 32, 0.18);
}

.sticky-bar__abbr {
  font-family: var(--body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--wine);
  opacity: 0.65;
  margin-top: 0.2rem;
}

.sticky-bar__divider {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--wine);
  opacity: 0.4;
  line-height: 1;
  align-self: flex-start;
  margin-top: 0.05rem;
}

/* CTA — hot pink pill, sits to the right */
.sticky-bar__cta {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.25rem;
  background: var(--hero);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(255, 45, 135, 0.32);
}

.sticky-bar__cta:hover {
  background: #ff1a7a;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 45, 135, 0.4);
}

/* Tablet — drop the date, tighten spacing */
@media (max-width: 980px) {
  .sticky-bar__date {
    display: none;
  }
}

/* Mobile — drop "Starts in" label, tighten countdown */
@media (max-width: 720px) {
  .sticky-bar__inner {
    gap: 0.65rem;
    padding: 0.55rem 0.85rem;
  }
  .sticky-bar__title {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }
  .sticky-bar__starts {
    display: none;
  }
  .sticky-bar__countdown {
    gap: 0.2rem;
  }
  .sticky-bar__unit {
    min-width: 1.85rem;
  }
  .sticky-bar__num {
    font-size: 1.05rem;
  }
  .sticky-bar__abbr {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
  }
  .sticky-bar__divider {
    font-size: 0.85rem;
  }
  .sticky-bar__cta {
    font-size: 0.72rem;
    padding: 0.45rem 0.85rem;
  }
}

/* Smallest screens — hide title, just show pulse + countdown + CTA */
@media (max-width: 460px) {
  .sticky-bar__title {
    display: none;
  }
}

/* HERO */
.hero {
  position: relative;
  background: var(--blush);
  color: var(--wine);
  padding: 2.5rem 1.25rem 3rem;
  overflow: hidden;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.6rem 0.35rem 0.4rem;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 8px;
}

.hero__eyebrow-motif {
  width: 22px;
  height: 22px;
}

.hero__eyebrow strong {
  font-weight: 800;
  color: var(--hero);
  letter-spacing: 0.18em;
}

/* Audience tag */
.hero__audience {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
}

.hero__audience-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--rose);
  opacity: 0.5;
}

.hero__audience-text {
  white-space: nowrap;
}

@media (max-width: 720px) {
  .hero__audience {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    gap: 0.5rem;
  }
  .hero__audience-text {
    white-space: normal;
    flex: 1 1 100%;
    line-height: 1.4;
  }
  .hero__audience-line {
    width: 24px;
  }
}

.hero__meta strong {
  font-weight: 800;
  color: var(--hero);
}

.hero__headline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
  line-height: 1.1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 1.4rem;
}

.hero__line { display: block; }
.hero__line--accent { margin-top: 0.15em; }

/* Mobile: Bebas Neue in pink + gold highlight bar */
.hero__cursive,
.hero__line .hero__cursive {
  font-family: var(--display) !important;
  font-weight: 400;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--hero);
  display: inline-block;
  position: relative;
  margin-left: 0;
  padding: 0;
  z-index: 0;
}

/* Desktop: Permanent Marker, rotated, on its own line */
@media (min-width: 1024px) {
  .hero__cursive,
  .hero__line .hero__cursive {
    font-family: 'Permanent Marker', 'Marker Felt', 'Brush Script MT', cursive !important;
    font-weight: 400;
    font-size: 1em;
    text-transform: none;
    letter-spacing: 0.01em;
    color: var(--hero);
    display: block;
    line-height: 0.9;
    margin-left: 0;
    margin-top: -0.25em;
    margin-bottom: 0.4em;
    padding: 0;
    transform: rotate(-3deg);
  }
}

.hero__highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
  padding: 0 0.05em;
}

.hero__highlight::after {
  content: '';
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: 0.05em;
  height: 0.22em;
  background: var(--gold);
  border-radius: 2px;
  z-index: -1;
  transform: skewX(-4deg);
}

.hero__sub-hook {
  font-size: clamp(1.05rem, 1.9vw, 1.4rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--wine);
  max-width: 540px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero__subhead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.55;
  color: var(--wine);
  max-width: 36rem;
  margin-bottom: 1.75rem;
  opacity: 0.92;
}

/* Promise block — three scannable beats */
.hero__promise {
  max-width: 540px;
  margin-bottom: 1.75rem;
}

.hero__promise-line {
  color: var(--wine);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.hero__promise-line:last-child {
  margin-bottom: 0;
}

.hero__promise-line--lead {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero__promise-line {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.hero__promise-line--punch {
  font-weight: 600;
  font-size: clamp(1.05rem, 1.6vw, 1.15rem);
}

.hero__promise-emphasis {
  color: var(--hero);
  font-weight: 700;
}

/* Checklist above the headline */
.hero__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

.hero__check-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--wine);
  line-height: 1.4;
}

.hero__check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.hero__check-item--yes .hero__check-icon {
  background: var(--teal);
  color: #fff;
}

.hero__check-item--no .hero__check-icon {
  background: var(--hero);
  color: #fff;
}

.hero__check-item--no {
  font-weight: 700;
  color: var(--wine);
}

/* COUNTDOWN — polaroid stickers */
.hero__countdown {
  margin-bottom: 1.5rem;
  max-width: 540px;
}

.hero__countdown-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--hero);
  margin-bottom: 0.85rem;
  text-align: center;
}

.hero__countdown-grid {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
}

.hero__countdown-unit {
  background: #fff;
  padding: 0.7rem 0.4rem 0.55rem;
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(45, 24, 32, 0.16);
  border: 0.5px solid rgba(45, 24, 32, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.hero__countdown-unit:nth-child(odd) { transform: rotate(-1deg); }
.hero__countdown-unit:nth-child(even) { transform: rotate(1deg); margin-bottom: 0.2rem; }

.hero__countdown-num {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  font-weight: 400;
  line-height: 1;
  color: var(--wine);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.hero__countdown-name {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rose);
  margin-top: 0.3rem;
}

.hero__countdown-time {
  text-align: center;
  margin-top: 1.6rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--wine);
  opacity: 0.85;
}

.hero__countdown-time strong {
  font-weight: 800;
  color: var(--hero);
  letter-spacing: 0.04em;
}

.hero__countdown-tz-sep {
  color: var(--hero);
  font-weight: 800;
  margin: 0 0.5rem;
  font-size: 1.6em;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  transform: translateY(-0.06em);
}

.optin-form {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-width: 540px;
  margin-bottom: 1rem;
}

.optin-form .cta-primary {
  margin-top: 0.85rem;
}

.hero__form-micro {
  font-family: var(--body);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--wine);
  opacity: 0.65;
  text-align: center;
  margin: 0.85rem 0 0;
  letter-spacing: 0.02em;
}

.optin-form input {
  font-family: var(--body);
  font-size: 1rem;
  padding: 0.95rem 1.15rem;
  border: 1.5px solid rgba(45, 24, 32, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--wine);
  width: 100%;
}

.optin-form input::placeholder { color: rgba(45, 24, 32, 0.45); }

.optin-form input:focus {
  outline: none;
  border-color: var(--hero);
  box-shadow: 0 0 0 4px rgba(255, 45, 135, 0.18);
}

.cta-primary {
  font-family: var(--body);
  font-size: 1.45rem;
  font-weight: 700;
  padding: 1.5rem 1.75rem;
  background: var(--hero);
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 45, 135, 0.32);
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}

.cta-primary:hover {
  background: #ff1a7a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 45, 135, 0.38);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--wine);
  opacity: 0.82;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__meta-label { opacity: 0.75; }

.countdown-inline {
  font-variant-numeric: tabular-nums;
  color: var(--hero);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-left: 0.4rem;
}

.countdown-inline span {
  display: inline-block;
  min-width: 1.4em;
  text-align: right;
  margin-right: 0.05em;
}

/* PHOTO */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__photo-wrap {
  position: relative;
  width: min(82vw, 360px);
  aspect-ratio: 3 / 4;
  transform: rotate(-1deg);
  margin: 1.5rem 0;
}

.hero__photo {
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background: #fff;
  border: 12px solid #fff;
  border-bottom-width: 60px;
  box-shadow: 0 16px 40px rgba(45, 24, 32, 0.22);
  overflow: hidden;
  z-index: 2;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero__photo-ring {
  display: none;
}

.hero__photo-credit {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 47%) rotate(-2deg);
  width: 70%;
  max-width: 280px;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(45, 24, 32, 0.18));
}

.hero__photo-hosted-by {
  position: absolute;
  bottom: 60%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--body);
  font-size: 0.7rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  opacity: 0.85;
  white-space: nowrap;
}

.hero__photo-signature-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 1024px) {
  .hero__photo-credit {
    width: 75%;
    max-width: 340px;
    transform: translate(-50%, 49%) rotate(-2deg);
  }

  .hero__photo-hosted-by {
    font-size: 0.78rem;
    bottom: 58%;
  }
}

.hero__motif {
  position: absolute;
  filter: drop-shadow(0 6px 12px rgba(45, 24, 32, 0.18));
  z-index: 3;
}

.hero__motif--tiger {
  width: 135px;
  height: 135px;
  top: -32px;
  right: -32px;
  transform: rotate(10deg);
}

.hero__motif--lotus {
  width: 105px;
  height: 105px;
  bottom: -24px;
  left: -32px;
  transform: rotate(-14deg);
}

.hero__photo-caption {
  margin-top: 2.75rem;
  font-size: 1.05rem;
  text-align: center;
  color: var(--wine);
  opacity: 0.9;
  line-height: 1.3;
}

.hero__photo-caption strong {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hero);
  margin-bottom: -0.35rem;
  line-height: 1;
}

/* RESPONSIVE */
@media (min-width: 720px) {
  .hero { padding: 4rem 2rem 4.5rem; }
  .optin-form { max-width: 540px; }
  .hero__photo-wrap { width: 380px; }
  .hero__motif--tiger { width: 149px; height: 149px; top: -32px; right: -34px; }
  .hero__motif--lotus { width: 117px; height: 117px; bottom: -28px; left: -34px; }
}

@media (min-width: 1024px) {
  .hero { padding: 5.5rem 2rem 6rem; }
  .hero__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 4rem;
  }
  .hero__visual { align-items: flex-end; }
  .hero__photo-wrap { width: 440px; }
  .optin-form { max-width: 540px; }
}

@media (min-width: 1200px) {
  .hero__photo-wrap { width: 480px; }
  .hero__motif--tiger { width: 176px; height: 176px; top: -38px; right: -38px; }
  .hero__motif--lotus { width: 135px; height: 135px; bottom: -34px; left: -38px; }
}

/* ============================================================
   SECTION 2 — The Real Reason
   ============================================================ */
.reframe {
  background: #FFFFFF;
  padding: 4rem 1.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}

.reframe::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/motifs/pineapple.svg');
  background-size: 110px;
  background-repeat: repeat;
  background-position: top left;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  /* Fade the pattern out in the center so text reads cleanly */
  mask-image: radial-gradient(ellipse at center, transparent 28%, black 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 28%, black 78%);
}

/* yaksha corner removed — competing with the pineapple pattern */

.reframe__inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .reframe::before { background-size: 140px; }
}

.reframe__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hero);
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.85rem;
  background: var(--blush);
  border-radius: 999px;
}

.reframe__headline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 2rem;
}

.reframe__highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
  padding: 0 0.05em;
  color: var(--hero);
}

.reframe__highlight::after {
  content: '';
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: 0.05em;
  height: 0.22em;
  background: var(--gold);
  border-radius: 2px;
  z-index: -1;
  transform: skewX(-4deg);
}

.reframe__pain {
  margin: 1.5rem auto 2rem;
  max-width: 560px;
}

.reframe__pain p {
  font-style: italic;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--wine);
  margin-bottom: 0.4rem;
}

.reframe__pain p:last-child {
  margin-bottom: 0;
  color: var(--hero);
  font-weight: 800;
}

.reframe__lead {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.55;
  color: var(--wine);
  margin-bottom: 2rem;
  font-weight: 400;
}

.reframe__lead strong {
  font-weight: 800;
  color: var(--hero);
}

.reframe__intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--wine);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.reframe__truth {
  background: var(--blush);
  padding: 1.5rem 1.5rem;
  border-radius: 12px;
  margin: 2rem 0 1.5rem;
  border-left: 6px solid var(--hero);
}

.reframe__truth p {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.5;
  color: var(--wine);
  font-weight: 500;
}

.reframe__truth strong {
  color: var(--hero);
  font-weight: 800;
}

.reframe__truth em {
  font-style: italic;
  color: var(--hero);
  font-weight: 700;
}

.reframe__pop {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.5;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.reframe__bridge {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.4;
  color: var(--wine);
  text-align: center;
  margin: 2rem 0 2.5rem;
}

.reframe__bridge strong {
  font-weight: 800;
  color: var(--hero);
}

.reframe__magic-intro {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine);
  text-align: center;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.reframe__magic {
  text-align: center;
  background: var(--blush);
  padding: 2rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 45, 135, 0.2);
}

.reframe__magic p {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.4;
  color: var(--wine);
  font-weight: 500;
}

.reframe__magic p:first-child {
  margin-bottom: 0.6rem;
}

.reframe__highlight-pink {
  color: var(--hero);
  font-weight: 800;
}

.reframe__mistakes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0 auto 2.5rem;
  max-width: 580px;
  text-align: left;
}

.reframe__mistakes li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--wine);
}

.reframe__mistakes li::before {
  content: '✗';
  position: absolute;
  left: 0;
  top: -1px;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--hero);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reframe__mistakes em {
  font-style: italic;
  opacity: 0.75;
}


@media (min-width: 1024px) {
  .reframe {
    padding: 6rem 2rem 6.5rem;
  }
  .reframe__inner {
    max-width: 820px;
  }
}

/* Section 2 — Social Proof block */
.reframe__proof {
  margin-top: 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reframe__proof-label {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.25rem;
}

.reframe__proof-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(45, 24, 32, 0.18);
  border: 1px solid rgba(45, 24, 32, 0.08);
}

.reframe__proof-card img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 1024px) {
  .reframe__proof {
    margin-top: 6rem;
  }
}

/* ============================================================
   SECTION 3 — The 5-Day Breakdown
   ============================================================ */
.days {
  background: var(--blush);
  padding: 4rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.days__inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.days__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hero);
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.85rem;
  background: #fff;
  border-radius: 999px;
}

.days__headline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 1.25rem;
}

.days__headline-accent {
  color: var(--hero);
}

.days__intro {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  color: var(--wine);
  max-width: 640px;
  margin-bottom: 3rem;
  font-weight: 400;
}

.days__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  counter-reset: day;
}

.day {
  position: relative;
}

.day__inner {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.75rem 1.75rem;
  box-shadow: 0 12px 28px rgba(45, 24, 32, 0.08);
  border: 1px solid rgba(45, 24, 32, 0.04);
  position: relative;
  overflow: hidden;
}

.day__header {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.day__number {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hero);
  line-height: 1;
}

.day__date {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  opacity: 0.65;
}

.day__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--wine);
  line-height: 1.05;
  margin-bottom: 0.4rem;
  max-width: 75%;
}

.day__subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 1rem;
  line-height: 1.3;
  max-width: 75%;
}

.day__description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--wine);
  margin-bottom: 0.85rem;
  max-width: 90%;
}

.day__aside {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--wine);
  opacity: 0.78;
  max-width: 90%;
}

.day__aside em {
  font-style: italic;
}

.day__motif {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 70px;
  height: 70px;
  filter: drop-shadow(0 4px 8px rgba(45, 24, 32, 0.15));
  z-index: 2;
}

.day--hero .day__inner {
  background: linear-gradient(135deg, #fff 0%, #FFFAF7 100%);
  border: 2px solid var(--hero);
  box-shadow: 0 20px 48px rgba(255, 45, 135, 0.18);
  padding: 2.25rem 1.75rem 2rem 2rem;
}

.day--hero .day__title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}

.day__motif--hero {
  width: 100px;
  height: 100px;
  top: 1.5rem;
  right: 1.5rem;
}

@media (min-width: 720px) {
  .day__motif {
    width: 90px;
    height: 90px;
  }
  .day__motif--hero {
    width: 130px;
    height: 130px;
  }
}

@media (min-width: 1024px) {
  .days {
    padding: 6rem 2rem 7rem;
  }
  .days__list {
    gap: 1.5rem;
  }
  .day__inner {
    padding: 2.25rem 2rem 2.25rem 2.25rem;
  }
  .day__motif {
    width: 110px;
    height: 110px;
    top: 1.75rem;
    right: 1.75rem;
  }
  .day--hero .day__inner {
    padding: 3rem 2.25rem 2.75rem 2.5rem;
  }
  .day__motif--hero {
    width: 160px;
    height: 160px;
    top: 2rem;
    right: 2rem;
  }
}

/* Section 3 — Mobile refinements */
@media (max-width: 719px) {
  .days {
    padding: 3rem 1.25rem 4rem;
  }
  .days__inner {
    max-width: 100%;
  }
  .days__intro {
    margin-bottom: 2rem;
  }
  .days__list {
    gap: 1rem;
  }
  .day__inner {
    padding: 1.4rem 1.25rem 1.4rem 1.25rem;
  }
  .day__header {
    margin-bottom: 0.65rem;
    gap: 0.65rem;
  }
  .day__number {
    font-size: 1.25rem;
  }
  .day__date {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }
  .day__title {
    font-size: 1.4rem;
    max-width: calc(100% - 70px);
    line-height: 1.05;
    margin-bottom: 0.35rem;
  }
  .day__subtitle {
    font-size: 0.92rem;
    max-width: calc(100% - 70px);
    margin-bottom: 0.85rem;
  }
  .day__description {
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 100%;
    margin-bottom: 0.7rem;
  }
  .day__aside {
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 100%;
  }
  .day__motif {
    width: 56px;
    height: 56px;
    top: 1rem;
    right: 1rem;
  }
  .day--hero .day__inner {
    padding: 1.6rem 1.25rem 1.6rem 1.25rem;
  }
  .day--hero .day__title {
    font-size: 1.55rem;
  }
  .day__motif--hero {
    width: 76px;
    height: 76px;
    top: 1rem;
    right: 1rem;
  }
}

/* Section 3 — Photo + motif sticker overlay */
.day--photo .day__inner {
  padding-right: 5.5rem;
}

.day__visual {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 110px;
  pointer-events: none;
  z-index: 2;
}

.day__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #fff;
  padding: 6px 6px 18px;
  border-radius: 3px;
  box-shadow: 0 10px 24px rgba(45, 24, 32, 0.18);
  border: 0.5px solid rgba(45, 24, 32, 0.06);
  transform: rotate(-2deg);
  overflow: hidden;
}

.day__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.day--photo .day__motif--sticker {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 4px 8px rgba(45, 24, 32, 0.18));
  transform: rotate(8deg);
}

.day--photo .day__motif--hero {
  width: 70px;
  height: 70px;
  top: -20px;
  right: -20px;
}

@media (max-width: 719px) {
  .day--photo .day__inner {
    padding-right: 1.25rem;
    padding-bottom: 8.5rem;
  }
  .day__visual {
    top: auto;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 90px;
  }
  .day--photo .day__motif--sticker {
    width: 46px;
    height: 46px;
    top: -14px;
    right: -14px;
  }
  .day--photo .day__motif--hero {
    width: 56px;
    height: 56px;
    top: -16px;
    right: -16px;
  }
}

@media (min-width: 720px) {
  .day--photo .day__inner {
    padding-right: 7rem;
  }
  .day__visual {
    width: 140px;
  }
  .day--photo .day__motif--sticker {
    width: 70px;
    height: 70px;
    top: -20px;
    right: -20px;
  }
  .day--photo .day__motif--hero {
    width: 88px;
    height: 88px;
  }
}

@media (min-width: 1024px) {
  .day--photo .day__inner {
    padding-right: 9rem;
  }
  .day__visual {
    width: 180px;
    top: 1.75rem;
    right: 1.75rem;
  }
  .day--photo .day__motif--sticker {
    width: 86px;
    height: 86px;
    top: -24px;
    right: -24px;
  }
  .day--photo .day__motif--hero {
    width: 110px;
    height: 110px;
    top: -28px;
    right: -28px;
  }
  .day--hero.day--photo .day__visual {
    width: 220px;
  }
}

/* Day Badge — motif as circular icon next to day number */
.day__header {
  display: flex !important;
  align-items: center !important;
  gap: 0.85rem !important;
  flex-wrap: nowrap !important;
}

.day__badge {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blush);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 45, 135, 0.25);
}

.day__badge img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.day__badge--hero {
  background: var(--hero);
  border-color: var(--gold);
  box-shadow: 0 6px 16px rgba(255, 45, 135, 0.3);
  width: 64px;
  height: 64px;
}

.day__badge--hero img {
  filter: brightness(0) invert(1);
  width: 60%;
  height: 60%;
}

.day__header-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.day--photo .day__inner,
.day__inner {
  padding-right: 1.75rem !important;
}

@media (min-width: 720px) {
  .day__badge {
    width: 64px;
    height: 64px;
  }
  .day__badge--hero {
    width: 76px;
    height: 76px;
  }
}

@media (min-width: 1024px) {
  .day__inner {
    padding: 2.25rem 2rem !important;
  }
  .day__badge {
    width: 72px;
    height: 72px;
  }
  .day__badge--hero {
    width: 84px;
    height: 84px;
  }
}

/* ============================================================
   Section 3 — "Every Day You Get" — Editorial Boarding Pass
   ============================================================ */
.days__includes {
  position: relative;
  margin: 0 auto 3rem;
  max-width: 880px;
  padding: 1.75rem 1.5rem 1.5rem;
  background:
    linear-gradient(180deg, #FFF7F4 0%, #FFE5EC 100%);
  border-radius: 18px;
  box-shadow:
    0 18px 40px rgba(45, 24, 32, 0.10),
    0 2px 6px rgba(45, 24, 32, 0.05),
    inset 0 0 0 2px #fff,
    inset 0 0 0 3px var(--gold);
}

/* Perforated gold dashed inner ring */
.days__includes::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px dashed rgba(232, 182, 60, 0.55);
  border-radius: 12px;
  pointer-events: none;
}

/* Eyebrow with hairline rules either side */
.days__includes-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 auto 1.35rem;
  padding: 0 0.5rem;
}

.days__includes-eyebrow-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.6;
}

.days__includes-eyebrow-text {
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hero);
  line-height: 1;
  white-space: nowrap;
}

/* Card grid */
.days__includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

.days__includes-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  padding: 0.85rem 0.6rem;
  position: relative;
}

/* Hairline dividers between cards (mobile: between rows + center column) */
.days__includes-card:nth-child(1)::after,
.days__includes-card:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 135, 0.22) 20%, rgba(255, 45, 135, 0.22) 80%, transparent);
}
.days__includes-card:nth-child(odd)::before {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 18%;
  right: -1px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 45, 135, 0.22) 20%, rgba(255, 45, 135, 0.22) 80%, transparent);
}

.days__includes-motif {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 0.15rem;
  filter: drop-shadow(0 2px 4px rgba(45, 24, 32, 0.10));
}

.days__includes-title {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine);
  line-height: 1.05;
}

.days__includes-text {
  font-family: var(--body);
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.35;
  color: var(--wine);
  opacity: 0.7;
}

@media (min-width: 720px) {
  .days__includes {
    padding: 2rem 1.75rem 1.75rem;
  }
  .days__includes-eyebrow-text {
    font-size: 1.25rem;
  }
  .days__includes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  /* Reset mobile dividers */
  .days__includes-card:nth-child(1)::after,
  .days__includes-card:nth-child(2)::after,
  .days__includes-card:nth-child(odd)::before {
    content: none;
  }
  /* Vertical hot-pink hairlines between cards */
  .days__includes-card + .days__includes-card::before {
    content: "";
    position: absolute;
    top: 18%;
    bottom: 18%;
    left: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 45, 135, 0.28) 18%, rgba(255, 45, 135, 0.28) 82%, transparent);
  }
  .days__includes-motif {
    width: 52px;
    height: 52px;
  }
  .days__includes-title {
    font-size: 1.25rem;
  }
  .days__includes-text {
    font-size: 0.88rem;
  }
}

@media (min-width: 1024px) {
  .days__includes {
    padding: 2.25rem 2rem 2rem;
    margin-bottom: 3.5rem;
  }
}

/* ---- Bonus: Daily Prizes — integrated footer ribbon inside the boarding pass ---- */
.days__includes-bonus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 1.5rem 0.5rem 0;
  padding: 1rem 0.5rem 0;
  border-top: 1px dashed rgba(232, 182, 60, 0.55);
  text-align: center;
}

.days__includes-bonus-text {
  font-family: var(--body);
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--wine);
  letter-spacing: 0.01em;
}

.days__includes-bonus-text strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.08rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hero);
  margin-right: 0.25rem;
}

.days__includes-bonus-text em {
  font-style: italic;
  color: var(--wine);
  opacity: 0.75;
}

@media (min-width: 720px) {
  .days__includes-bonus {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
  }
  .days__includes-bonus-text {
    font-size: 1.03rem;
  }
  .days__includes-bonus-text strong {
    font-size: 1.24rem;
  }
}

/* ============================================================
   ZIGZAG DAY CARDS — Section 3 v2
   ============================================================ */
.dayz {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 12px 28px rgba(45, 24, 32, 0.08);
  border: 1px solid rgba(45, 24, 32, 0.04);
  margin-bottom: 1.5rem;
  list-style: none;
}

.dayz__image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.dayz__photo {
  position: relative;
  width: min(78vw, 320px);
  aspect-ratio: 4 / 5;
  background: #fff;
  padding: 10px 10px 24px;
  border-radius: 4px;
  box-shadow: 0 16px 32px rgba(45, 24, 32, 0.18);
  border: 0.5px solid rgba(45, 24, 32, 0.06);
  transform: rotate(-1deg);
  overflow: visible;
}

.dayz--image-right .dayz__photo { transform: rotate(1deg); }

.dayz__photo img:first-of-type {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.dayz__sticker {
  position: absolute;
  top: -10px;
  right: -22px;
  width: 88px;
  height: 88px;
  filter: drop-shadow(0 6px 12px rgba(45, 24, 32, 0.22));
  transform: rotate(8deg);
  z-index: 2;
}

.dayz__sticker--hero {
  width: 105px;
  height: 105px;
  top: -16px;
  right: -28px;
}

/* Day 2 (pineapple) — bottom-left corner on mobile */
.days__list > li:nth-child(2) .dayz__sticker {
  top: auto;
  right: auto;
  bottom: -10px;
  left: -22px;
  transform: rotate(-8deg);
}

/* Day 4 (elephant) — bottom-right corner on mobile */
.days__list > li:nth-child(4) .dayz__sticker {
  top: auto;
  right: -22px;
  bottom: -10px;
  transform: rotate(8deg);
}

.dayz__content {
  width: 100%;
}

.dayz__header {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.dayz__number {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hero);
  line-height: 1;
}

.dayz__date {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  opacity: 0.65;
}

.dayz__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--wine);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.dayz__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.dayz__description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--wine);
  margin-bottom: 0.85rem;
}

.dayz__aside {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--wine);
  opacity: 0.78;
}

.dayz__aside em { font-style: italic; }

/* HERO Day 5 — bigger, gradient, special border */
.dayz--hero {
  background: linear-gradient(135deg, #fff 0%, #FFFAF7 100%);
  border: 2px solid var(--hero);
  box-shadow: 0 20px 48px rgba(255, 45, 135, 0.18);
}

.dayz--hero .dayz__title { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }

/* DESKTOP — zigzag side-by-side */
@media (min-width: 880px) {
  .dayz {
    flex-direction: row;
    gap: 3rem;
    padding: 2.25rem 2rem;
    align-items: center;
  }
  .dayz--image-right { flex-direction: row-reverse; }
  .dayz__image-wrap { flex: 0 0 42%; }
  .dayz__photo { width: 100%; max-width: 360px; }
  .dayz__content { flex: 1; }
  .dayz__sticker { width: 105px; height: 105px; top: -28px; right: -28px; }
  .dayz__sticker--hero { width: 137px; height: 137px; top: -36px; right: -36px; }
  .dayz--hero .dayz__photo { max-width: 420px; }
}

@media (min-width: 1024px) {
  .dayz { padding: 2.75rem 2.5rem; gap: 3.5rem; }
  .dayz__photo { max-width: 380px; }
  .dayz--hero .dayz__photo { max-width: 460px; }
}

/* Day 5 — shift crop left so Jen sits in frame */
.dayz--hero .dayz__photo img:first-of-type {
  object-position: 28% 28%;
}

/* ============================================================
   SECTION 5 — Testimonials (white)
   ============================================================ */
.testimonials {
  background: #FFFFFF;
  padding: 4.5rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.testimonials__inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.testimonials__eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hero);
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.85rem;
  background: var(--blush);
  border-radius: 999px;
}

/* Longtail boat motif sitting straight above the eyebrow */
.testimonials__lead-motif {
  display: block;
  width: 88px;
  height: auto;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 4px 10px rgba(45, 24, 32, 0.15));
}

@media (min-width: 720px) {
  .testimonials__lead-motif {
    width: 121px;
    margin-bottom: 1.25rem;
  }
}

/* Testimonials section corner motifs */
.testimonials__motif {
  position: absolute;
  pointer-events: none;
  opacity: 0.85;
  filter: drop-shadow(0 4px 10px rgba(45, 24, 32, 0.18));
  z-index: 0;
}

.testimonials__motif--lucky {
  width: 110px;
  top: 2rem;
  left: -1.5rem;
  transform: rotate(-10deg);
}

.testimonials__motif--lotus {
  width: 100px;
  bottom: 3rem;
  right: -1.5rem;
  transform: rotate(8deg);
}

@media (min-width: 720px) {
  .testimonials__motif--lucky {
    width: 140px;
    top: 3rem;
    left: 2%;
  }
  .testimonials__motif--lotus {
    width: 130px;
    bottom: 4rem;
    right: 2%;
  }
}

.testimonials__headline {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--wine);
  max-width: 880px;
  margin: 0 auto 1rem;
}

.testimonials__highlight {
  position: relative;
  display: inline-block;
  color: var(--wine);
}
.testimonials__highlight::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.05em;
  height: 0.42em;
  background: rgba(255, 45, 135, 0.32);
  z-index: -1;
  border-radius: 2px;
}

.testimonials__intro {
  font-family: var(--body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.5;
  color: var(--wine);
  opacity: 0.78;
  max-width: 640px;
  margin: 0 auto 3rem;
  font-style: italic;
}

.testimonials__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}

.quote-card {
  position: relative;
  background: #FFFAF7;
  border: 1px solid rgba(232, 182, 60, 0.25);
  border-radius: 18px;
  padding: 3rem 1.75rem 1.75rem;
  text-align: left;
  box-shadow: 0 12px 28px rgba(45, 24, 32, 0.08);
  display: flex;
  flex-direction: column;
}

.quote-card__mark {
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--hero);
  opacity: 0.85;
  pointer-events: none;
}

.quote-card__body {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--wine);
  margin: 0 0 1.5rem;
  font-style: italic;
  flex-grow: 1;
}

.quote-card__attribution {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(45, 24, 32, 0.08);
}

.quote-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gold);
  box-shadow: 0 2px 6px rgba(45, 24, 32, 0.12);
}

.quote-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.quote-card__name {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--wine);
  line-height: 1;
}

.quote-card__role {
  font-family: var(--body);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--wine);
  opacity: 0.7;
  line-height: 1.2;
}

@media (min-width: 720px) {
  .testimonials {
    padding: 5.5rem 2rem 6rem;
  }
  .testimonials__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .quote-card {
    padding: 3.25rem 1.75rem 1.75rem;
  }
  .quote-card__body { font-size: 1.02rem; }
}

@media (min-width: 1024px) {
  .testimonials {
    padding: 6.5rem 2rem 7rem;
  }
  .testimonials__list {
    gap: 2rem;
  }
  .quote-card {
    padding: 3.5rem 2rem 2rem;
  }
}

/* ============================================================
   Watch Their Stories — video testimonials sub-block
   ============================================================ */
.watch-stories {
  margin-top: 4.5rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.watch-stories__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.watch-stories__divider-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.55;
}

.watch-stories__divider-text {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hero);
  white-space: nowrap;
}

.watch-stories__intro {
  font-family: var(--body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: italic;
  color: var(--wine);
  opacity: 0.78;
  text-align: center;
  margin: 0 0 2.5rem;
}

.watch-stories__intro em {
  color: var(--hero);
  font-style: italic;
  opacity: 1;
}

.watch-stories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .watch-stories__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .watch-stories {
    margin-top: 5.5rem;
  }
  .watch-stories__grid {
    gap: 1.75rem;
  }
}

/* Video card — polaroid frame with 16:9 player */
.story-card {
  margin: 0;
  background: #fff;
  padding: 0.5rem 0.5rem 0.65rem;
  border: 1px solid rgba(232, 182, 60, 0.3);
  border-radius: 6px;
  box-shadow:
    0 14px 32px rgba(45, 24, 32, 0.10),
    0 2px 6px rgba(45, 24, 32, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.story-card:nth-child(odd)  { transform: rotate(-0.4deg); }
.story-card:nth-child(even) { transform: rotate(0.4deg); }

.story-card:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow:
    0 18px 40px rgba(45, 24, 32, 0.14),
    0 3px 8px rgba(45, 24, 32, 0.06);
}

.story-card__player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--wine);
  border-radius: 3px;
  overflow: hidden;
}

.story-card__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.story-card__caption {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: var(--hero);
  padding: 0.65rem 0.25rem 0.15rem;
  line-height: 1.2;
}

/* ============================================================
   Receipts Wall — masonry sub-block inside Testimonials
   ============================================================ */
.receipts {
  margin-top: 4.5rem;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.receipts__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.receipts__divider-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.55;
}

.receipts__divider-text {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hero);
  white-space: nowrap;
}

.receipts__intro {
  font-family: var(--body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: italic;
  color: var(--wine);
  opacity: 0.78;
  text-align: center;
  margin: 0 0 2.5rem;
}

.receipts__intro em {
  color: var(--hero);
  font-style: italic;
  opacity: 1;
}

/* CSS columns masonry — handles varied image heights cleanly */
.receipts__grid {
  column-count: 1;
  column-gap: 1.25rem;
}

@media (min-width: 600px) {
  .receipts__grid {
    column-count: 2;
    column-gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .receipts__grid {
    column-count: 3;
    column-gap: 1.75rem;
  }
}

/* Polaroid-ish receipt frame */
.receipt {
  break-inside: avoid;
  margin: 0 0 1.5rem;
  background: #fff;
  padding: 0.5rem 0.5rem 0.65rem;
  border: 1px solid rgba(232, 182, 60, 0.3);
  border-radius: 6px;
  box-shadow:
    0 14px 32px rgba(45, 24, 32, 0.10),
    0 2px 6px rgba(45, 24, 32, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.receipt img,
.receipt video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
}

/* Video receipt — caption strip below the player */
.receipt--video {
  position: relative;
}

.receipt__caption {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: var(--hero);
  padding: 0.6rem 0.25rem 0.15rem;
  line-height: 1;
}

/* Subtle 'live' pulse on video receipts so the eye knows to look */
.receipt--video::after {
  content: "";
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hero);
  box-shadow: 0 0 0 0 rgba(255, 45, 135, 0.55);
  animation: receipt-pulse 1.8s infinite;
  pointer-events: none;
}

@keyframes receipt-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 45, 135, 0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(255, 45, 135, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 45, 135, 0); }
}

/* Subtle alternating tilts so the wall feels scrapbook-y not gridded */
.receipt--tilt-a { transform: rotate(-0.6deg); }
.receipt--tilt-b { transform: rotate(0.5deg); }
.receipt--tilt-c { transform: rotate(-0.3deg); }

.receipt:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow:
    0 18px 40px rgba(45, 24, 32, 0.14),
    0 3px 8px rgba(45, 24, 32, 0.06);
}

@media (min-width: 1024px) {
  .receipts {
    margin-top: 5.5rem;
  }
  .receipts__divider {
    margin-bottom: 1.5rem;
  }
}

/* ============================================================
   TRUST BAND — Featured-In strip (between Hero and Reframe)
   ============================================================ */
.featured-band {
  background: #FFFFFF;
  padding: 2.25rem 1.5rem;
  border-top: 1px solid rgba(232, 182, 60, 0.25);
  position: relative;
}

.featured-band__inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.featured-band__label {
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 400;
  margin: 0 0 1.5rem;
  line-height: 1.3;
}

/* Horizontally scrollable logo rail */
.featured-band__logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 2.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.25rem 1.5rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}

.featured-band__logos::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.featured-band__logo {
  display: block;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.2s ease;
  scroll-snap-align: center;
}

.featured-band__logo:hover { opacity: 1; }

/* On wide screens, allow centering when everything fits */
@media (min-width: 1024px) {
  .featured-band__logos {
    justify-content: center;
  }
}

/* Per-logo height tuning — visually balance very different aspect ratios */
.featured-band__logo--sharktank { height: 28px; }
.featured-band__logo--oprah     { height: 64px; }
.featured-band__logo--tedx      { height: 36px; }
.featured-band__logo--today     { height: 56px; }
.featured-band__logo--walmart   { height: 32px; }

@media (min-width: 720px) {
  .featured-band {
    padding: 2.75rem 2rem;
  }
  .featured-band__label {
    font-size: 1.25rem;
    letter-spacing: 0.22em;
    margin-bottom: 2rem;
  }
  .featured-band__logos {
    gap: 2.5rem 3.5rem;
  }
  .featured-band__logo--sharktank { height: 36px; }
  .featured-band__logo--oprah     { height: 80px; }
  .featured-band__logo--tedx      { height: 46px; }
  .featured-band__logo--today     { height: 70px; }
  .featured-band__logo--walmart   { height: 40px; }
}

@media (min-width: 1024px) {
  .featured-band {
    padding: 3rem 2rem;
  }
  .featured-band__logos {
    gap: 3rem 4.5rem;
  }
  .featured-band__logo--sharktank { height: 42px; }
  .featured-band__logo--oprah     { height: 92px; }
  .featured-band__logo--tedx      { height: 52px; }
  .featured-band__logo--today     { height: 80px; }
  .featured-band__logo--walmart   { height: 46px; }
}

/* ============================================================
   SECTION 3 — Credibility / 3 Promises (soft pink)
   ============================================================ */
.promises {
  background: var(--soft);
  padding: 4rem 1.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}

.promises__inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.promises__eyebrow {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hero);
  margin-bottom: 1.25rem;
}

.promises__headline {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--wine);
  max-width: 880px;
  margin: 0 auto 1rem;
}

.promises__highlight {
  position: relative;
  display: inline-block;
  color: var(--wine);
}
.promises__highlight::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.05em;
  height: 0.42em;
  background: rgba(255, 45, 135, 0.32);
  z-index: -1;
  border-radius: 2px;
}

.promises__subhead {
  font-family: var(--body);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.4;
  color: var(--wine);
  opacity: 0.85;
  max-width: 680px;
  margin: 0 auto 1.75rem;
}

.promises__subhead em { font-style: italic; }

.promises__tagline {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  letter-spacing: 0.04em;
  color: var(--hero);
  margin-bottom: 3rem;
  padding: 0.65rem 1.25rem;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  border: 1px solid rgba(255, 45, 135, 0.18);
  box-shadow: 0 4px 12px rgba(45, 24, 32, 0.06);
}

.promises__tagline-dot {
  color: var(--gold);
  font-size: 1.2em;
  line-height: 1;
}

/* Promise cards */
.promises__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

.promise-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.5rem 1.75rem;
  text-align: left;
  box-shadow: 0 12px 28px rgba(45, 24, 32, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

/* Hot-pink top accent ribbon */
.promise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hero), var(--rose));
}

.promise-card__num {
  display: block;
  font-family: var(--display);
  font-size: clamp(3.5rem, 6vw, 4.75rem);
  letter-spacing: 0.02em;
  line-height: 0.85;
  color: var(--hero);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 12px rgba(255, 45, 135, 0.18);
}

.promise-card__title {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  letter-spacing: 0.02em;
  color: var(--wine);
  line-height: 1.1;
  margin: 0 0 0.6rem;
}

.promise-card__body {
  font-family: var(--body);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--wine);
  opacity: 0.85;
  margin: 0;
}

.promise-card__body em {
  font-style: italic;
  opacity: 0.75;
}

@media (min-width: 720px) {
  .promises {
    padding: 5rem 2rem 5.5rem;
  }
  .promises__list {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1080px;
    gap: 1.5rem;
  }
  .promise-card {
    padding: 2.25rem 1.75rem 2rem;
  }
}

@media (min-width: 1024px) {
  .promises {
    padding: 6rem 2rem 6.5rem;
  }
  .promises__list {
    gap: 2rem;
  }
}

/* ============================================================
   MID-CTA — slim button strip between Testimonials and Bio
   ============================================================ */
.mid-cta {
  background: #FFFAF7;
  padding: 3rem 1.5rem 3.5rem;
  text-align: center;
  border-top: 1px solid rgba(232, 182, 60, 0.25);
  border-bottom: 1px solid rgba(232, 182, 60, 0.25);
}

.mid-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}

.mid-cta__lead {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  letter-spacing: 0.02em;
  color: var(--wine);
  line-height: 1.15;
  margin: 0 0 1.5rem;
}

.mid-cta__btn {
  display: inline-block;
  padding: 1.1rem 2rem;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  letter-spacing: 0.06em;
  color: var(--wine);
  background: var(--gold);
  border: 0;
  border-radius: 999px;
  box-shadow:
    0 12px 28px rgba(45, 24, 32, 0.18),
    0 2px 6px rgba(45, 24, 32, 0.08);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mid-cta__btn:hover {
  background: #f3c44a;
  transform: translateY(-2px);
  box-shadow:
    0 16px 36px rgba(45, 24, 32, 0.22),
    0 4px 10px rgba(45, 24, 32, 0.10);
}

.mid-cta__micro {
  font-family: var(--body);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--wine);
  opacity: 0.7;
  margin: 1.25rem 0 0;
}

@media (min-width: 720px) {
  .mid-cta {
    padding: 3.5rem 2rem 4rem;
  }
}

/* ============================================================
   SECTION 6 — Bio · Meet Your Host (soft pink)
   ============================================================ */
.bio {
  background: var(--soft);
  padding: 4.5rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.bio__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Photo column */
.bio__visual {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}

.bio__photo-frame {
  position: relative;
  background: #fff;
  padding: 0.85rem 0.85rem 3rem;
  border-radius: 6px;
  box-shadow:
    0 22px 48px rgba(45, 24, 32, 0.16),
    0 4px 10px rgba(45, 24, 32, 0.08);
  transform: rotate(-1.2deg);
  transition: transform 0.3s ease;
}

.bio__photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
}

.bio__photo-caption {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  font-family: var(--body);
  font-size: 0.92rem;
  font-style: italic;
  text-align: center;
  color: var(--wine);
  opacity: 0.78;
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* Decorative motif accent (yaksha — temple guardian, ties to Ayutthaya) */
.bio__motif {
  position: absolute;
  width: 100px;
  height: auto;
  opacity: 0.85;
  pointer-events: none;
}

.bio__motif--yaksha {
  width: 125px;
  bottom: -2.5rem;
  right: -1.5rem;
  transform: rotate(8deg);
}

.bio__motif--tuktuk {
  width: 110px;
  top: -1.75rem;
  left: -1.5rem;
  transform: rotate(-7deg);
}

/* Copy column */
.bio__content {
  font-family: var(--body);
  color: var(--wine);
  line-height: 1.6;
  font-size: 1.02rem;
}

.bio__content p {
  margin: 0 0 1.15rem;
}

.bio__content strong {
  font-weight: 700;
  color: var(--wine);
}

.bio__content em {
  font-style: italic;
}

.bio__eyebrow {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hero);
  margin-bottom: 1rem;
}

.bio__headline {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--wine);
  margin: 0 0 1.5rem;
}

.bio__line {
  display: block;
}

.bio__line--accent {
  color: var(--hero);
}

.bio__lead {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.35rem;
}

/* Three quirky facts list (emoji bullets) */
.bio__facts {
  list-style: none;
  margin: 1.75rem 0;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  border: 1px solid rgba(255, 45, 135, 0.18);
}

.bio__facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.45rem 0;
  font-size: 1rem;
  line-height: 1.5;
}

.bio__fact-emoji {
  flex-shrink: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

/* Lead-in line for the empathy moment */
.bio__why-lead {
  font-family: var(--body);
  font-size: 1.08rem;
  line-height: 1.55;
  font-style: italic;
  color: var(--wine);
  margin: 1.75rem 0 0.85rem;
}

/* Empathy block */
.bio__empathy {
  margin: 0 0 1.75rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-left: 3px solid var(--hero);
  border-radius: 4px;
}

.bio__empathy p { margin: 0 0 0.5rem; }
.bio__empathy p:last-child { margin: 0; }

.bio__empathy-punch {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.8vw, 1.75rem);
  letter-spacing: 0.02em;
  color: var(--hero);
  line-height: 1.15;
}

.bio__empathy-punch strong { color: var(--hero); }

.bio__promise {
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 1.5rem 0 1.25rem;
}

.bio__close {
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.bio__signoff {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  letter-spacing: 0.04em;
  color: var(--hero);
  line-height: 1;
  margin-top: 1.5rem;
}

@media (min-width: 880px) {
  .bio {
    padding: 5.5rem 2rem 6rem;
  }
  .bio__inner {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: center;
  }
  .bio__visual {
    margin: 0;
  }
  .bio__photo-frame {
    transform: rotate(-1.5deg);
  }
  .bio__motif--yaksha {
    width: 163px;
    bottom: -3rem;
    right: -2rem;
  }
  .bio__motif--tuktuk {
    width: 140px;
    top: -2.25rem;
    left: -2rem;
  }
}

@media (min-width: 1024px) {
  .bio {
    padding: 6.5rem 2rem 7rem;
  }
  .bio__inner {
    gap: 5rem;
  }
}

/* ============================================================
   SECTION 7 — FAQ · Real Questions, Real Answers (blush)
   ============================================================ */
.faq {
  background: var(--blush);
  padding: 4.5rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.faq__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.faq__eyebrow {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hero);
  margin-bottom: 1.25rem;
}

.faq__headline {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--wine);
  margin: 0 0 1rem;
}

.faq__highlight {
  position: relative;
  display: inline-block;
  color: var(--wine);
}
.faq__highlight::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.05em;
  height: 0.42em;
  background: rgba(255, 45, 135, 0.32);
  z-index: -1;
  border-radius: 2px;
}

.faq__intro {
  font-family: var(--body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.5;
  color: var(--wine);
  opacity: 0.78;
  font-style: italic;
  margin: 0 auto 2.5rem;
  max-width: 620px;
}

.faq__intro em {
  font-style: italic;
  opacity: 0.85;
}

.faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(232, 182, 60, 0.3);
  border-radius: 12px;
  margin-bottom: 0.85rem;
  box-shadow: 0 6px 18px rgba(45, 24, 32, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 24px rgba(45, 24, 32, 0.10);
}

.faq-item details {
  padding: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-family: var(--display);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  letter-spacing: 0.02em;
  color: var(--wine);
  line-height: 1.3;
  transition: color 0.15s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--hero); }

.faq-item__q-text { flex: 1; }

/* Custom + / × toggle icon */
.faq-item__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  position: relative;
  border: 1.5px solid var(--hero);
  border-radius: 50%;
  transition: transform 0.25s ease, background 0.2s ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--hero);
  transition: transform 0.25s ease, background 0.2s ease;
}

.faq-item__icon::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item details[open] .faq-item__icon {
  background: var(--hero);
  transform: rotate(135deg);
}

.faq-item details[open] .faq-item__icon::before,
.faq-item details[open] .faq-item__icon::after {
  background: #fff;
}

.faq-item__a {
  padding: 0 1.25rem 1.25rem;
  font-family: var(--body);
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--wine);
  border-top: 1px solid rgba(232, 182, 60, 0.25);
  margin-top: -1px;
  padding-top: 1rem;
}

.faq-item__a p {
  margin: 0 0 0.85rem;
}

.faq-item__a p:last-child {
  margin-bottom: 0;
}

.faq-item__a strong {
  color: var(--wine);
  font-weight: 700;
}

.faq-item__a em {
  font-style: italic;
  opacity: 0.85;
}

@media (min-width: 720px) {
  .faq {
    padding: 5.5rem 2rem 6rem;
  }
  .faq-item summary {
    padding: 1.3rem 1.6rem;
  }
  .faq-item__a {
    padding: 1.1rem 1.6rem 1.6rem;
  }
}

@media (min-width: 1024px) {
  .faq {
    padding: 6.5rem 2rem 7rem;
  }
}

/* ============================================================
   SECTION 8 — Final CTA · The Close (HOT PINK BOOM)
   ============================================================ */
.final-cta {
  position: relative;
  background: var(--hero);
  padding: 5rem 1.5rem 5.5rem;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

/* Subtle radial glow + grain so the flat hot pink has dimension */
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(45, 24, 32, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.final-cta__eyebrow {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.75;
  margin-bottom: 1.5rem;
}

.final-cta__headline {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0 0 1.25rem;
  text-shadow: 0 2px 18px rgba(45, 24, 32, 0.25);
}

.final-cta__line {
  display: block;
}

.final-cta__line--accent {
  color: #fff;
  font-style: italic;
  position: relative;
}

.final-cta__sub {
  font-family: var(--body);
  font-size: clamp(1.05rem, 2.3vw, 1.4rem);
  font-style: italic;
  line-height: 1.45;
  color: #fff;
  opacity: 0.95;
  margin: 0 auto 2.5rem;
  max-width: 600px;
  text-shadow: 0 1px 8px rgba(45, 24, 32, 0.2);
}

.final-cta__warmth {
  font-family: var(--body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.5;
  color: #fff;
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.final-cta__warmth em {
  font-style: italic;
  color: #fff;
  font-weight: 700;
}

.final-cta__warmth-line {
  display: block;
  margin-bottom: 0.35rem;
}

.final-cta__warmth-line:last-child {
  margin-bottom: 0;
  margin-top: 0.5rem;
}

/* Form — white inputs on hot pink */
.final-cta__form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 460px;
  margin: 0 auto 0.75rem;
}

.final-cta__form input {
  width: 100%;
  padding: 1rem 1.15rem;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--wine);
  background: #fff;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(45, 24, 32, 0.12);
  outline: none;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.final-cta__form input::placeholder {
  color: var(--wine);
  opacity: 0.55;
}

.final-cta__form input:focus {
  box-shadow:
    0 6px 18px rgba(45, 24, 32, 0.18),
    0 0 0 3px var(--gold);
}

.final-cta__btn {
  margin-top: 0.5rem;
  padding: 1.1rem 1.5rem;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  letter-spacing: 0.06em;
  color: var(--wine);
  background: var(--gold);
  border: 0;
  border-radius: 999px;
  box-shadow:
    0 12px 28px rgba(45, 24, 32, 0.28),
    0 2px 6px rgba(45, 24, 32, 0.14);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.final-cta__btn:hover {
  background: #f3c44a;
  transform: translateY(-2px);
  box-shadow:
    0 16px 36px rgba(45, 24, 32, 0.32),
    0 4px 10px rgba(45, 24, 32, 0.16);
}

.final-cta__btn:active {
  transform: translateY(0);
}

.final-cta__btn:disabled {
  cursor: wait;
  opacity: 0.7;
}

.final-cta__micro {
  font-family: var(--body);
  font-size: 0.9rem;
  font-style: italic;
  color: #fff;
  opacity: 0.85;
  margin: 0 0 3rem;
}

/* Final close lines */
.final-cta__close {
  margin-bottom: 3rem;
}

.final-cta__close-line {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 0.4rem;
  text-shadow: 0 2px 14px rgba(45, 24, 32, 0.2);
}

.final-cta__close-line--punch {
  color: #fff;
  font-size: clamp(1.95rem, 4.8vw, 3rem);
  letter-spacing: 0.02em;
  margin-top: 0.75rem;
  margin-bottom: 0;
  text-shadow: 0 2px 16px rgba(45, 24, 32, 0.28);
}

.final-cta__close-tag {
  font-family: var(--body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  color: #fff;
  opacity: 0.92;
  margin: 1rem 0 0;
  line-height: 1.4;
}

/* Countdown — translucent white */
.final-cta__countdown {
  margin: 0 auto;
  max-width: 520px;
  padding: 1.5rem 1.25rem 1.35rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.final-cta__countdown-label {
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.85;
  margin-bottom: 0.85rem;
}

.final-cta__countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.final-cta__countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.5rem 0.25rem;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 10px;
}

.final-cta__countdown-num {
  font-family: var(--display);
  font-size: clamp(1.65rem, 4.5vw, 2.4rem);
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
}

.final-cta__countdown-name {
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.85;
}

.final-cta__countdown-time {
  font-family: var(--body);
  font-size: 0.85rem;
  color: #fff;
  opacity: 0.85;
}

.final-cta__countdown-time strong {
  color: #fff;
  font-weight: 700;
}

/* Decorative motifs — full-color PNGs, slight transparency so they sit gently on the hot pink */
.final-cta__motif {
  position: absolute;
  width: 110px;
  height: auto;
  opacity: 0.85;
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(45, 24, 32, 0.25));
}

.final-cta__motif--lotus {
  top: 5.5rem;
  left: -3rem;
  transform: rotate(-12deg);
}

.final-cta__motif--pineapple {
  bottom: 2rem;
  right: -1rem;
  transform: rotate(8deg);
}

@media (min-width: 720px) {
  .final-cta {
    padding: 6.5rem 2rem 7rem;
  }
  .final-cta__form {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 540px;
  }
  .final-cta__form input {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 0;
  }
  .final-cta__btn {
    flex: 1 1 100%;
  }
  .final-cta__motif {
    width: 160px;
  }
  .final-cta__motif--lotus {
    top: 8rem;
    left: -4rem;
  }
  .final-cta__motif--pineapple {
    bottom: 3rem;
    right: 2%;
  }
}

@media (min-width: 1024px) {
  .final-cta {
    padding: 8rem 2rem 8.5rem;
  }
  .final-cta__motif {
    width: 200px;
  }
  .final-cta__motif--lotus {
    top: 9.5rem;
    left: -5rem;
  }
}

/* ============================================================
   DIVIDER — Do the Math (pink-peach pour bg)
   ============================================================ */
.divider-quote {
  position: relative;
  background-image: url('assets/photos/brokeh%20background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 1.5rem 5.5rem;
  text-align: center;
  overflow: hidden;
}

/* Vignette wash — darker so the wine text reads against the hot pink bokeh */
.divider-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(255, 245, 235, 0.45) 0%, rgba(255, 229, 236, 0.25) 60%, rgba(45, 24, 32, 0.15) 100%);
  pointer-events: none;
}

.divider-quote__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.divider-quote__lead {
  font-family: var(--body);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  opacity: 0.95;
  margin: 0 0 0.65rem;
  text-shadow: 0 1px 10px rgba(45, 24, 32, 0.35);
}

.divider-quote__big {
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0 0 1.75rem;
  text-shadow: 0 2px 16px rgba(45, 24, 32, 0.35);
}

.divider-quote__pop {
  display: block;
  margin-top: 0.65rem;
  color: var(--hero);
  font-size: 1.15em;
  white-space: nowrap;
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.85),
    0 2px 22px rgba(45, 24, 32, 0.45);
}

.divider-quote__break {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 0.4rem;
  text-shadow: 0 1px 10px rgba(45, 24, 32, 0.35);
}

.divider-quote__punch {
  font-family: var(--display);
  font-size: clamp(2.2rem, 6.5vw, 4rem);
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
  margin: 0 0 1.75rem;
  text-shadow: 0 2px 20px rgba(45, 24, 32, 0.5);
}

.divider-quote__credit {
  font-family: var(--body);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  opacity: 0.95;
  margin: 0;
  text-shadow: 0 1px 10px rgba(45, 24, 32, 0.4);
}

@media (min-width: 720px) {
  .divider-quote {
    padding: 6.5rem 2rem 7rem;
  }
}

@media (min-width: 1024px) {
  .divider-quote {
    padding: 7.5rem 2rem 8rem;
  }
}

/* ============================================================
   FOOTER — Disclaimers + legal
   ============================================================ */
.site-footer {
  background: #FFFAF7;
  padding: 3rem 1.5rem 2.5rem;
  border-top: 1px solid rgba(232, 182, 60, 0.3);
  font-family: var(--body);
  color: var(--wine);
  font-size: 0.85rem;
  line-height: 1.55;
}

.site-footer__inner {
  max-width: 920px;
  margin: 0 auto;
}

/* Credibility band — Shopify Partner trust */
.site-footer__credibility {
  text-align: center;
  padding: 0 0 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(45, 24, 32, 0.1);
}

.site-footer__credibility p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--wine);
  opacity: 0.85;
}

.site-footer__credibility strong {
  color: var(--hero);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Disclaimer blocks */
.site-footer__disclaimers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.site-footer__block {
  /* nothing — uses parent grid */
}

.site-footer__heading {
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hero);
  margin: 0 0 0.5rem;
  font-weight: 400;
}

.site-footer__block p {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--wine);
  opacity: 0.75;
  margin: 0;
}

.site-footer__block p strong {
  color: var(--wine);
  opacity: 1;
  font-weight: 700;
}

/* Bottom bar — links + copyright */
.site-footer__bottom {
  border-top: 1px solid rgba(45, 24, 32, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.site-footer__links a {
  color: var(--wine);
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 24, 32, 0.25);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.site-footer__links a:hover {
  color: var(--hero);
  border-color: var(--hero);
}

.site-footer__sep {
  color: var(--gold);
  opacity: 0.7;
}

.site-footer__copyright {
  font-size: 0.78rem;
  color: var(--wine);
  opacity: 0.6;
  margin: 0;
  font-style: italic;
}

@media (min-width: 720px) {
  .site-footer {
    padding: 4rem 2rem 3rem;
  }
  .site-footer__credibility p {
    font-size: 1rem;
  }
  .site-footer__disclaimers {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .site-footer__block:first-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .site-footer {
    padding: 5rem 2rem 3.5rem;
  }
}
