/* style.css: every static layout, type, color and state rule for the site.
   Motion lives in animations.css. This file declares no transition and no animation
   (the :focus-visible ring is the single permitted exception and it needs none).
   Mobile first at 390px, then 768px, then 1280px. Tokens come from tokens.css. */

/* ---------------------------------------------------------------------------
   0. Metric-matched local fallbacks: the page lays out in these until Fraunces and Inter arrive,
   sized so the swap does not move the hero (CLS). Values measured against Georgia and Arial.
--------------------------------------------------------------------------- */
@font-face {
  font-family: "Fraunces Fallback";
  src: local("Georgia");
  size-adjust: 92.5%;
  ascent-override: 98%;
  descent-override: 26%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Inter Fallback";
  src: local("Arial"), local("Helvetica Neue"), local("Roboto");
  size-adjust: 107%;
  ascent-override: 90.4%;
  descent-override: 22.5%;
  line-gap-override: 0%;
}

/* ---------------------------------------------------------------------------
   1. Reset and base
--------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: var(--ivory);
  scroll-padding-top: calc(var(--nav-h) + 8px);
}

body {
  margin: 0;
  padding: 0 0 calc(var(--sticky-h) + var(--safe-b));
  font: 400 var(--fs-2) / var(--lh-body) var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  touch-action: manipulation;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

/* scroll lock while an overlay is open; funnel.js sets --scroll-lock to -scrollY px */
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: var(--scroll-lock, 0px);
}

[hidden] { display: none !important; }

img, svg, video, iframe { max-width: 100%; }
img { height: auto; display: block; }
svg { display: inline-block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin: 0 0 var(--sp-4);
  text-wrap: balance;
}
h1 { font-size: var(--fs-5); line-height: 1.08; }
h2 { font-size: var(--fs-4); margin-bottom: var(--sp-5); }
h3 { font-size: var(--fs-3); margin-bottom: var(--sp-2); }

p, ul, ol, blockquote, address { margin: 0 0 var(--sp-4); }
p { max-width: var(--measure); }
p:last-child { margin-bottom: 0; }
address { font-style: normal; }
small { font-size: var(--fs-1); }
strong { font-weight: 600; }

a {
  color: var(--charcoal);
  text-decoration: underline;
  text-decoration-color: var(--deep-rose);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  margin: 0;
}
button { -webkit-tap-highlight-color: transparent; }

::selection { background: var(--blush); color: var(--charcoal); }

:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }

/* ---------------------------------------------------------------------------
   2. Layout primitives
--------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

#trust, #empathy, #what, #schedule, #host, #included, #proof, #venue,
#tickets, #faq, #quiz-again, #final {
  padding: var(--sp-7) 0;
}
/* a section that was written without a .container still gets a gutter */
#trust:not(:has(> .container)), #empathy:not(:has(> .container)), #what:not(:has(> .container)),
#schedule:not(:has(> .container)), #host:not(:has(> .container)), #included:not(:has(> .container)),
#proof:not(:has(> .container)), #venue:not(:has(> .container)), #tickets:not(:has(> .container)),
#faq:not(:has(> .container)), #quiz-again:not(:has(> .container)), #final:not(:has(> .container)) {
  padding-left: var(--sp-4);
  padding-right: var(--sp-4);
}

.visually-hidden, .hp {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* gold hairline rule: motion draws it from scaleX(0) on tier-high */
.rule {
  display: block;
  height: 1px;
  width: 100%;
  border: 0;
  margin: var(--sp-5) 0;
  background: var(--gold);
  transform-origin: left center;
  transform: scaleX(1);
}

/* no-JS notice: clears the fixed nav so it is not hidden behind it */
.gc-noscript {
  margin: calc(var(--nav-h) + 12px) var(--sp-4) 0;
  padding: 12px 16px;
  background: var(--blush);
  border-radius: var(--radius-sm);
  font-size: 15px;
  line-height: 1.45;
  max-width: none;
}

/* ---------------------------------------------------------------------------
   3. Text utilities
--------------------------------------------------------------------------- */
.eyebrow {
  font: 600 13px / 1.4 var(--font-body);
  font-variant-caps: all-small-caps;
  letter-spacing: .12em;
  color: var(--deep-gold);
  margin: 0 0 6px;
}
.micro {
  font-size: 14px;
  line-height: 1.35;
  color: var(--ink-2);
  margin: 8px 0 0;
}
.q-label {
  font: 600 18px / 1.25 var(--font-body);
  color: var(--charcoal);
  margin: 0 0 8px;
  max-width: none;
}

/* owner tokens still to fill: visibly marked in dev, plain text at launch */
.is-unfilled {
  background: var(--unfilled-bg);
  color: var(--charcoal);
  border-bottom: 2px dashed var(--gold);
  border-radius: 3px;
  padding: 0 3px;
  cursor: help;
}
html.prod .is-unfilled {
  background: none;
  border: 0;
  padding: 0;
  cursor: inherit;
}
.is-placeholder {
  outline: 2px dashed var(--gold);
  outline-offset: 4px;
}
/* funnel.js inserts these between the visible segments of a [data-join] line */
.seg-sep { white-space: pre; }

/* ---------------------------------------------------------------------------
   4. Buttons
--------------------------------------------------------------------------- */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--tap);
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius-pill);
  font: 600 17px / 1.2 var(--font-body);
  text-align: center;
  text-decoration: none;
  color: var(--charcoal);
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  user-select: none;
}
.btn-primary { background: var(--deep-rose); color: var(--white); }
.btn-secondary {
  background: var(--ivory);
  color: var(--deep-rose);
  border: 1.5px solid var(--deep-rose);
}
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  text-decoration-color: var(--deep-rose);
}
.btn-sm { min-height: var(--tap); padding: 0 16px; font-size: 15px; }
/* 19px at weight 700 is WCAG large-scale text, so white on deep-rose clears AA at 3:1 */
.btn-lg { min-height: 56px; width: 100%; padding: 0 24px; font-size: 19px; font-weight: 700; }

.btn:disabled, .btn[aria-disabled="true"] { opacity: .6; cursor: not-allowed; }

.btn-arrow { width: 18px; height: 18px; flex: 0 0 auto; }
.btn .btn-spinner, .btn .btn-check { display: none; }
.btn.is-loading .btn-label, .btn.is-loading .btn-arrow,
.btn.is-success .btn-label, .btn.is-success .btn-arrow { visibility: hidden; }
.btn.is-loading .btn-spinner {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, .35);
  border-top-color: var(--white);
}
.btn-secondary.is-loading .btn-spinner, .btn-ghost.is-loading .btn-spinner {
  border-color: rgba(43, 43, 43, .2);
  border-top-color: var(--deep-rose);
}
.btn.is-success .btn-check {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  color: currentColor;
}

.icon-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--tap);
  height: var(--tap);
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}
.icon-btn svg { width: 24px; height: 24px; }
.icon-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ---------------------------------------------------------------------------
   5. Quiz cards and chips
--------------------------------------------------------------------------- */
.qcards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.qcard {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: 500 17px / 1.2 var(--font-body);
  text-align: left;
  color: var(--charcoal);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  user-select: none;
}
.qcard-label { flex: 1 1 auto; position: relative; z-index: 1; }
.qcard-arrow { flex: 0 0 auto; width: 20px; height: 20px; color: var(--deep-gold); position: relative; z-index: 1; }
.qcard.is-selected { background: var(--blush); border-color: var(--deep-rose); }
.qcard:disabled { opacity: .6; cursor: default; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.chip {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--ivory);
  color: var(--charcoal);
  font: 500 15px / 1.2 var(--font-body);
  text-align: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  user-select: none;
}
.chip.is-selected {
  background: var(--blush);
  border-color: var(--deep-rose);
  font-weight: 600;
}
/* non-tappable chips (cert badges in the trust bar and host block) are compact */
span.chip {
  min-height: 32px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--white);
  cursor: default;
}

@media (hover: hover) and (pointer: fine) {
  .qcard:hover:not(.is-selected):not(:disabled) { background: var(--white); border-color: var(--rose); }
  .chip:hover:not(.is-selected) { border-color: var(--rose); background: var(--white); }
  span.chip:hover { border-color: var(--line); background: var(--white); }
  .btn-primary:hover:not(:disabled) { filter: brightness(.93); }
  .btn-secondary:hover:not(:disabled) { background: var(--blush); }
  .btn-ghost:hover:not(:disabled), a:hover { text-decoration-thickness: 2px; }
  .icon-btn:hover:not(:disabled) { background: var(--blush); }
  .faq-q:hover { color: var(--deep-rose); }
}

/* ---------------------------------------------------------------------------
   6. Nav, paid banner, sticky bar
--------------------------------------------------------------------------- */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  padding: env(safe-area-inset-top, 0px) var(--sp-4) 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--sp-3);
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
#nav .logo {
  display: inline-flex;
  align-items: center;
  height: var(--tap);
  text-decoration: none;
  justify-self: start;
}
#nav .logo img { display: block; width: 128px; height: 32px; }
#nav-cta { justify-self: end; }

#paid-banner {
  margin-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  padding: 12px var(--sp-4);
  background: var(--deep-rose);
  color: var(--white);
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
}
#paid-banner + #hero, #paid-banner + main #hero { padding-top: 12px; }

#sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  height: calc(var(--sticky-h) + var(--safe-b));
  padding: 8px var(--sp-4) calc(8px + var(--safe-b));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--sp-3);
  background: rgba(253, 251, 249, .86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
}
#sticky.is-shown { transform: none; }
#sticky.is-hidden { transform: translateY(110%); }
#sticky-price {
  font: 600 15px / 1.2 var(--font-body);
  color: var(--charcoal);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#sticky-price [data-token] { font-family: var(--font-display); font-size: 20px; }
#sticky-cta { justify-self: end; }

/* ---------------------------------------------------------------------------
   7. Hero: the first frame. Measured at 390x740 in headless Chrome with Fraunces + Inter loaded
   (the loaded Inter is wider than the system fallback, so it is the worst case):
   variant A: pad 64 + eyebrow 18 + h1 3 lines 105 + sub 3 lines 71 + photo 149 + label 23 + cards 232 + micro 19 + gaps = 729
   variant B uses the smaller sizes declared below so its longer copy also lands under 740
--------------------------------------------------------------------------- */
#hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 8px) 0 max(16px, var(--safe-b));
  background: var(--ivory);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
}
.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-inner > .hero-ambient { z-index: -1; }
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .18;
}

#hero .eyebrow { margin: 0 0 6px; }
#hero h1, #h1 {
  font-size: var(--fs-5);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  max-width: 100%;
  text-wrap: balance;
}
#hero .sub, .sub {
  font-size: 17px;
  line-height: 1.4;
  color: var(--charcoal);
  margin: 0 0 10px;
  max-width: var(--measure);
}
.hero-photo { display: block; margin: 0 0 10px; }
.hero-photo img, #hero-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2.4 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--blush);
}
#hero-q1 { margin: 0; }
#hero-q1 .q-label { margin: 0 0 8px; }
#hero .micro { margin: 8px 0 0; }
/* variant B (funnel.js sets html[data-gc-variant]): its H1 is 63 characters and its sub is 140, so at
   the contract sizes they run to 4 + 4 lines and push the fourth card under the fold at 390x740.
   Tightened only below 768px; the 768px block restores the token sizes. */
html[data-gc-variant="B"] #h1 { font-size: 1.625rem; }
html[data-gc-variant="B"] #hero .sub { font-size: 16px; line-height: 1.4; margin-bottom: 8px; }
html[data-gc-variant="B"] .hero-photo { margin-bottom: 10px; }

/* short viewports (375x667 class): tighter hero so all four cards and the micro line stay above the fold */
@media (max-width: 767px) and (max-height: 700px) {
  #hero h1, #h1 { font-size: 1.75rem; }
  html[data-gc-variant="B"] #h1 { font-size: 1.5rem; }
  #hero .sub, .sub, html[data-gc-variant="B"] #hero .sub { font-size: 15px; line-height: 1.35; margin-bottom: 8px; }
  .hero-photo img, #hero-img { aspect-ratio: 3 / 1; }
  .hero-photo, html[data-gc-variant="B"] .hero-photo { margin-bottom: 8px; }
  #hero .qcard { min-height: 48px; }
  #hero .qcards { gap: 6px; }
}

/* ---------------------------------------------------------------------------
   8. Fields (56px tall, 18px text so iOS does not zoom, floating label that never disappears)
   The floating state relies on the input carrying placeholder=" " so :placeholder-shown can work.
--------------------------------------------------------------------------- */
.field { position: relative; margin: 0 0 14px; }
.field input, #city-other, #exit-phone {
  display: block;
  width: 100%;
  height: var(--field-h);
  padding: 22px 16px 8px;
  font: 400 18px / 1.2 var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid rgba(43, 43, 43, .56); /* 3:1 against the white field, so the tap zone is visible at rest */
  border-radius: 10px;
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder { color: transparent; }
.field input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset;
  -webkit-text-fill-color: var(--charcoal);
}
.field label {
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  max-width: calc(100% - 34px);
  font-size: 17px;
  line-height: 1;
  color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}
.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field input:-webkit-autofill ~ label {
  top: 8px;
  transform: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--deep-gold);
}
.field input:focus { border-color: var(--deep-rose); }
.field.has-error input { border-color: var(--error); }

.err {
  display: none;
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--error);
  max-width: none;
}
.field.has-error .err, .consent.has-error .err, .err:not(:empty) { display: block; }

.consent {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 4px;
  margin: 4px 0 16px;
}
.consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin: 12px;
  accent-color: var(--deep-rose);
  cursor: pointer;
}
.consent label {
  flex: 1 1 0;
  min-width: 0;
  padding: 13px 0 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-2);
  cursor: pointer;
}
.consent.has-error input[type="checkbox"] { box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--error); }
.consent .err { flex: 1 1 100%; margin: 4px 0 0 48px; }

.trust { font-size: 15px; color: var(--ink-2); margin: 4px 0 16px; }

.status {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-2);
  max-width: none;
}
.status:empty { margin: 0; }
.status.is-error { color: var(--error); }
.status .btn {
  display: inline-flex;
  vertical-align: middle;
  min-height: var(--tap);
  padding: 0 16px;
  margin: 8px 0 0;
  font-size: 15px;
}
.status .btn:not(.btn-primary):not(.btn-ghost) {
  background: var(--ivory);
  color: var(--deep-rose);
  border: 1.5px solid var(--deep-rose);
}

/* ---------------------------------------------------------------------------
   9. Overlays (funnel and exit intent)
--------------------------------------------------------------------------- */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: block;
}
.overlay[hidden] { display: none; }
.overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(43, 43, 43, .55);
}
.overlay-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 100vh;
  max-height: 100vh;
  background: var(--ivory);
  border-radius: 20px 20px 0 0;
  box-shadow: var(--shadow-2);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px calc(24px + var(--safe-b));
}
@supports (height: 1dvh) {
  .overlay-sheet { height: var(--vvh, 100dvh); max-height: 100dvh; }
}
.overlay-sm .overlay-sheet {
  top: auto;
  height: auto;
  max-height: calc(100vh - 24px);
  padding-top: 8px;
}
@supports (height: 1dvh) {
  .overlay-sm .overlay-sheet { max-height: calc(100dvh - 24px); }
}
/* while the keyboard is up the layout viewport does not shrink on iOS or Android, so anchor the sheet to
   the top of the visual viewport (funnel.js keeps --vvh and --vvt in step with visualViewport) */
@media (max-width: 767px) {
  body.kb-open .overlay-sheet {
    top: 0;
    bottom: auto;
    border-radius: 0;
    transform: translateY(var(--vvt, 0px));
  }
  body.kb-open .overlay-sm .overlay-sheet { height: auto; max-height: var(--vvh, 100dvh); }
}

.overlay-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  column-gap: 12px;
  min-height: 56px;
  margin: 0 -20px;
  padding: env(safe-area-inset-top, 0px) 12px 4px;
  background: var(--ivory);
}
.grabber {
  grid-column: 1 / -1;
  justify-self: center;
  width: 40px;
  height: 4px;
  margin: 8px 0 6px;
  border-radius: var(--radius-pill);
  background: var(--line);
}
#funnel-back { grid-column: 1; grid-row: 2; }
#funnel-progress {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  height: 5px;
  border-radius: var(--radius-pill);
  background: var(--line);
  overflow: hidden;
}
.progress-fill {
  display: block;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--deep-gold), #6B5422);
  transform-origin: left center;
  transform: scaleX(var(--p, .2));
}
#funnel-close { grid-column: 3; grid-row: 2; }

/* exit sheet: a single close control in the corner, then the title */
#exit-close { position: absolute; top: 8px; right: 8px; }
#exit-title { font-size: var(--fs-4); margin: 16px 48px 12px 0; }
#exit-form .field { margin-top: 16px; }
#exit-submit { width: 100%; margin-top: 4px; }

/* ---------------------------------------------------------------------------
   10. Funnel steps
--------------------------------------------------------------------------- */
.steps { position: relative; }
.step { display: none; padding: 12px 0 8px; }
.step.is-active { display: block; }
.step.is-leaving {
  display: block;
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.step .q-label { font-size: 20px; line-height: 1.3; margin: 8px 0 16px; }
.step .qcards { gap: 10px; }

.q1-inline {
  margin: 0 0 20px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line);
}
.q1-inline .q-label { font-size: 15px; color: var(--ink-2); margin: 0 0 8px; }

#city-other-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}
#city-other-wrap .field { margin: 0; }
#city-other-go { min-height: var(--field-h); }

.reassure {
  min-height: 3.2em;
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: none;
}
.reassure:not(.is-visible) { visibility: hidden; }
#q4-next { margin-top: 16px; }

#lead-form { margin: 0; }
#lead-form .btn-lg { margin-top: 4px; }

/* result step */
.step[data-step="result"] { position: relative; }
.confetti-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
#result-title { font-size: var(--fs-4); line-height: 1.15; margin: 12px 0 8px; }
#result-recap { font-size: 15px; color: var(--ink-2); margin: 0 0 12px; }
.result-note { margin: 0 0 20px; }
#result-buy { margin: 0 0 12px; }
#result-details { width: 100%; }
#deposit-offer {
  margin-top: 20px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
#deposit-offer p { margin: 0 0 12px; }
#deposit-link { width: 100%; }
.terms { font-size: 13px; line-height: 1.45; color: var(--ink-2); margin: 10px 0 0; }

#share-card {
  margin-top: 24px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
}
#share-card h3 { margin: 0 0 8px; }
#share-preview {
  margin: 0 0 12px;
  padding: 12px;
  background: var(--blush);
  border-radius: var(--radius-sm);
  font-size: 15px;
  line-height: 1.45;
  color: var(--charcoal);
  overflow-wrap: anywhere;
}
#share-card .btn { margin: 8px 8px 0 0; }
#share-code {
  display: inline-block;
  margin: 12px 0 0;
  padding: 6px 10px;
  border: 1px dashed var(--gold);
  border-radius: 6px;
  font: 600 15px / 1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .08em;
  color: var(--charcoal);
}

/* ---------------------------------------------------------------------------
   11. Page sections
--------------------------------------------------------------------------- */
/* trust bar */
#trust {
  padding: 20px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.trust-item {
  flex: 1 1 140px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  font-size: 15px;
  line-height: 1.3;
  color: var(--ink-2);
}
.trust-item .chips { flex: 1 1 100%; }
.count {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  color: var(--charcoal);
  font-variant-numeric: tabular-nums;
}

/* empathy */
.empathy-lines { margin: 0 0 20px; padding: 0; list-style: none; }
.empathy-lines li {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--charcoal);
  margin: 0 0 12px;
  max-width: var(--measure);
}
.pivot {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--deep-rose);
  margin: 0;
}

/* cards shared surface */
.card, .tier, .testimonial, .value-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-1);
}
.cards3 { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; margin: 0 0 24px; }
.card h3 { margin: 0 0 8px; }
.card p { margin: 0; color: var(--ink-2); }

/* the not-an-MLM block after WHAT */
.not-mlm, .gc-not-mlm, #what blockquote {
  margin: 24px 0 0;
  padding: 4px 0 4px 16px;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.35;
  color: var(--charcoal);
  max-width: var(--measure);
}

/* schedule timeline */
.gc-schedule-note { font-size: 15px; color: var(--ink-2); margin: 0 0 20px; }
.timeline-wrap { position: relative; }
.timeline {
  position: relative;
  margin: 0;
  padding: 0 0 0 32px;
  list-style: none;
}
.tl-line {
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--gold);
  transform-origin: top center;
  transform: scaleY(1);
}
.tl-item { position: relative; padding: 0 0 24px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-node {
  position: absolute;
  left: -32px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--rose);
}
.tl-node.is-lit { background: var(--deep-rose); border-color: var(--deep-rose); }
.tl-time {
  display: block;
  font: 600 13px / 1.2 var(--font-body);
  font-variant-caps: all-small-caps;
  letter-spacing: .06em;
  color: var(--deep-gold);
  margin: 0 0 4px;
}
.tl-title { font-size: var(--fs-3); margin: 0 0 4px; }
.tl-desc { margin: 0; color: var(--ink-2); }

/* host */
#host-img {
  display: block;
  width: min(100%, 280px);
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--blush);
  margin: 0 0 20px;
}
#host .chips { margin: 0 0 16px; }
.story { white-space: pre-line; }
.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  color: var(--ink-2);
}
.proof li { display: flex; align-items: baseline; gap: 6px; }

/* included: value stack */
.value-list {
  display: grid;
  gap: 12px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  max-width: 720px;
}
.value-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 16px;
  align-items: start;
  padding: 16px 20px;
}
.value-item > :not(.value) { grid-column: 1; margin: 0; }
.value-item h3, .value-item strong { font-family: var(--font-body); font-size: 17px; font-weight: 600; }
.value-item p { font-size: 15px; color: var(--ink-2); }
.value-item .value {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}
.value-total {
  max-width: 720px;
  padding-top: 16px;
  border-top: 1px solid var(--gold);
  font-family: var(--font-display);
  font-size: var(--fs-4);
  font-weight: 600;
  margin: 0;
}

/* proof */
.testimonials { display: grid; gap: 16px; margin: 0 0 24px; padding: 0; list-style: none; }
.testimonial blockquote {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.4;
  color: var(--charcoal);
}
.testimonial footer {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
}
.testimonial img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
#video-slot {
  aspect-ratio: 16 / 9;
  margin: 0 0 24px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal);
}
#video-slot video, #video-slot iframe { display: block; width: 100%; height: 100%; border: 0; }
#video-slot { display: grid; place-items: center; }
#video-slot .gc-slot-note { margin: 0; padding: 24px; text-align: center; color: var(--ivory); font-size: 15px; line-height: 1.45; }
.ig-strip {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0 0 8px;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ig-strip::-webkit-scrollbar { display: none; }
.ig-strip li { flex: 0 0 120px; scroll-snap-align: start; }
.ig-strip img { width: 120px; height: 120px; object-fit: cover; border-radius: var(--radius-sm); }

/* venue */
#venue-address { font-size: 17px; margin: 0 0 8px; }
.gc-venue-time { font-size: 15px; color: var(--ink-2); margin: 0 0 16px; }
.drive-times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.drive-times li {
  display: flex;
  align-items: baseline; /* a two-line city name must not stretch the minutes token to two lines */
  justify-content: flex-start;
  gap: 0 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-2);
}
.drive-times .gc-drive { margin-left: auto; white-space: nowrap; }
.drive-mins { font-weight: 600; color: var(--charcoal); font-variant-numeric: tabular-nums; }
#map-slot {
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
#map-slot iframe { display: block; width: 100%; height: 280px; border: 0; }
#map-load, #map-link { margin: 4px; }

/* tickets */
.tiers { display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; margin: 16px 0 20px; }
.tier { position: relative; padding: 24px 20px; }
.tier h3 { margin: 0; }
.tier.is-popular { border: 2px solid var(--gold); }
.tier.is-popular:not(:has(.gc-badge)):not(:has(.badge)):not(:has(.tier-badge))::before { content: "Most Popular"; }
.tier.is-popular::before, .tier .gc-badge, .tier .badge, .tier .tier-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  padding: 5px 10px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-pill);
  background: var(--ivory);
  font: 600 12px / 1 var(--font-body);
  font-variant-caps: all-small-caps;
  letter-spacing: .1em;
  color: var(--deep-gold);
}
.price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  color: var(--charcoal);
  margin: 8px 0 16px;
}
.includes { margin: 0 0 20px; padding: 0; list-style: none; }
.includes li { position: relative; padding-left: 20px; margin: 0 0 8px; color: var(--ink-2); font-size: 15px; }
.includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.btn-pay { width: 100%; }
.pay-methods { font-size: 13px; color: var(--ink-2); text-align: center; margin: 8px 0 0; }
#seats-line { font-size: 15px; font-weight: 600; color: var(--charcoal); text-align: center; margin: 12px 0 0; }
#tickets-fallback {
  padding: 20px;
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  text-align: center;
}
#tickets-fallback p { margin: 0 auto 12px; }
.gc-tier-note { font-size: 14px; color: var(--ink-2); text-align: center; margin: 12px 0 0; }
#waitlist {
  padding: 20px;
  background: var(--blush);
  border-radius: var(--radius);
  text-align: center;
}
#waitlist p { margin: 0 auto 12px; }
#deposit-btn { margin-top: 16px; gap: 0; }

/* FAQ */
.faq { max-width: 760px; border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; font: inherit; letter-spacing: 0; }
.faq-q {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  min-height: 56px;
  padding: 16px 44px 16px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  text-align: left;
  font: 600 17px / 1.35 var(--font-body);
  color: var(--charcoal);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}
.faq-q::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -8px;
  border-right: 2px solid var(--deep-gold);
  border-bottom: 2px solid var(--deep-gold);
  transform: rotate(45deg);
}
.faq-item.is-open .faq-q::after { transform: rotate(-135deg); margin-top: -2px; }
.faq-a { display: grid; grid-template-rows: 0fr; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; min-height: 0; visibility: hidden; }
.faq-item.is-open .faq-a-inner { visibility: visible; }
.faq-a p { padding: 0 0 16px; margin: 0; color: var(--ink-2); }
.faq-a .drive-times { margin: 0 0 12px; }

/* quiz again */
#quiz-again { text-align: center; border-top: 1px solid var(--line); }
#quiz-again p { margin: 0 auto 20px; color: var(--ink-2); }

/* final */
#final { text-align: center; background: var(--blush); }
#final p { margin-left: auto; margin-right: auto; }
#countdown {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 0 0 24px;
}
#countdown > * { display: flex; flex-direction: column; align-items: center; min-width: 64px; }
[data-cd] {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  color: var(--charcoal);
  font-variant-numeric: tabular-nums;
}
.cd-label {
  display: block;
  margin-top: 6px;
  font: 600 13px / 1 var(--font-body);
  font-variant-caps: all-small-caps;
  letter-spacing: .1em;
  color: var(--deep-gold);
}
.final-copy { font-size: var(--fs-3); margin: 0 auto 12px; }
.refund { font-size: 15px; color: var(--ink-2); margin: 0 auto 24px; }
#final .btn-lg { max-width: 420px; }

/* footer */
#footer {
  padding: var(--sp-6) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-2);
}
#footer ul { display: flex; flex-wrap: wrap; gap: 8px 16px; margin: 0 0 16px; padding: 0; list-style: none; }
.gc-footer-brand { margin: 0 0 16px; }
.gc-copyright { margin: 0; font-size: 14px; }
#footer a { color: var(--charcoal); }
#footer details { border-top: 1px solid var(--line); padding: 4px 0; }
#footer details:last-of-type { border-bottom: 1px solid var(--line); }
#footer summary {
  display: flex;
  align-items: center;
  min-height: var(--tap);
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
}
#footer summary::-webkit-details-marker { display: none; }
#footer summary::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 2px solid var(--deep-gold);
  border-bottom: 2px solid var(--deep-gold);
  transform: rotate(45deg);
}
#footer details[open] summary::after { transform: rotate(-135deg); }
#footer details p { font-size: 14px; margin: 0 0 12px; }
.serving { font-weight: 600; color: var(--charcoal); margin: 16px 0 8px; }

/* ---------------------------------------------------------------------------
   12. Breakpoints
--------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .container { padding: 0 var(--sp-5); }
  #trust:not(:has(> .container)), #empathy:not(:has(> .container)), #what:not(:has(> .container)),
  #schedule:not(:has(> .container)), #host:not(:has(> .container)), #included:not(:has(> .container)),
  #proof:not(:has(> .container)), #venue:not(:has(> .container)), #tickets:not(:has(> .container)),
  #faq:not(:has(> .container)), #quiz-again:not(:has(> .container)), #final:not(:has(> .container)) {
    padding-left: var(--sp-5);
    padding-right: var(--sp-5);
  }
  #empathy, #what, #schedule, #host, #included, #proof, #venue, #tickets, #faq, #quiz-again, #final {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  h2 { font-size: 2rem; }

  #hero { padding-bottom: 40px; }
  .hero-inner { max-width: 720px; padding: 0 var(--sp-5); }
  #hero h1, #h1 { letter-spacing: -0.01em; margin-bottom: 12px; }
  #hero .sub, .sub, html[data-gc-variant="B"] #hero .sub { font-size: 18px; line-height: 1.5; margin-bottom: 20px; }
  .hero-photo, html[data-gc-variant="B"] .hero-photo { margin-bottom: 20px; }
  html[data-gc-variant="B"] #h1 { font-size: var(--fs-5); }
  #hero-q1 .q-label { margin-bottom: 12px; }
  #hero .qcards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }

  .empathy-lines li { font-size: 28px; }
  .pivot { font-size: 30px; }
  .cards3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
  .timeline, .timeline-wrap { max-width: 680px; }
  /* portrait in its own column so the story and the pull quote keep their full measure */
  #host .container {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    column-gap: 44px;
    align-items: start;
  }
  #host .section-label, #host h2, #host .rule { grid-column: 1 / -1; }
  /* rows 1-3 are the label, heading and rule; rows 4-7 are eyebrow, pull quote, story, proof */
  #host-img { grid-column: 1; grid-row: 4 / 8; width: 100%; margin: 0; position: sticky; top: 96px; }
  #host .eyebrow, #host .host-pull, #host .story, #host .proof { grid-column: 2; }
  .testimonials { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .drive-times { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tiers { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 860px; gap: 24px; }
  .price { font-size: 44px; }
  #countdown { gap: 40px; }
  [data-cd] { font-size: 56px; }

  .overlay-sheet {
    left: max(24px, calc(50% - 260px));
    right: auto;
    top: 6vh;
    bottom: auto;
    width: min(520px, calc(100% - 48px));
    height: auto;
    max-height: 88vh;
    border-radius: 20px;
    padding: 0 28px 28px;
  }
  .overlay-head { margin: 0 -28px; padding-left: 16px; padding-right: 16px; }
  .grabber { visibility: hidden; height: 0; margin: 8px 0 0; }
  .overlay-sm .overlay-sheet {
    left: max(24px, calc(50% - 210px));
    width: min(420px, calc(100% - 48px));
    top: 14vh;
    max-height: 80vh;
    padding-top: 12px;
  }
  .step { padding: 8px 0 4px; }
  #sticky { padding-left: var(--sp-5); padding-right: var(--sp-5); }
  #nav { padding-left: var(--sp-5); padding-right: var(--sp-5); }
}

@media (min-width: 1280px) {
  .container { padding: 0 var(--sp-6); }
  #trust:not(:has(> .container)), #empathy:not(:has(> .container)), #what:not(:has(> .container)),
  #schedule:not(:has(> .container)), #host:not(:has(> .container)), #included:not(:has(> .container)),
  #proof:not(:has(> .container)), #venue:not(:has(> .container)), #tickets:not(:has(> .container)),
  #faq:not(:has(> .container)), #quiz-again:not(:has(> .container)), #final:not(:has(> .container)) {
    padding-left: var(--sp-6);
    padding-right: var(--sp-6);
  }
  #hero { padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 48px); padding-bottom: 64px; }
  .hero-inner {
    max-width: 1120px;
    padding: 0 var(--sp-6);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 56px;
    align-items: center;
  }
  .hero-inner > .eyebrow, .hero-inner > h1, .hero-inner > .sub,
  .hero-inner > #hero-q1, .hero-inner > .micro { grid-column: 1; }
  .hero-inner > .hero-photo { grid-column: 2; grid-row: 1 / span 5; margin: 0; }
  #hero .qcards { grid-template-columns: minmax(0, 1fr); }
  .testimonials { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  #sticky { padding-left: var(--sp-6); padding-right: var(--sp-6); }
  #nav { padding-left: var(--sp-6); padding-right: var(--sp-6); }
}


/* ---------------------------------------------------------------------------
   13. Bubbly pass (owner request): rounder corners, soft blush bubbles behind sections, marker-style
   highlights and pill trust items. Static only; motion stays in animations.css.
--------------------------------------------------------------------------- */
h1, h2, h3 { font-variation-settings: "SOFT" 100, "WONK" 1; }
.hero-photo img, #hero-img { border-radius: 28px; }
.qcard { border-radius: 18px; border-color: var(--rose); background: var(--white); }
.qcard-arrow { color: var(--deep-rose); }
.chip { border-color: var(--rose); background: var(--white); }
.btn-primary { box-shadow: 0 6px 18px rgba(176, 84, 106, .28); }
.btn-primary:active { box-shadow: 0 2px 6px rgba(176, 84, 106, .28); }
.card, .tier, .testimonial, .value-item, #deposit-offer, #share-card, #map-slot, #tickets-fallback, #waitlist { border-radius: var(--radius); }
.card, .tier { border-color: var(--blush); }

/* trust bar as friendly pills */
#trust { background: var(--ivory); border: 0; padding: 20px 0 8px; }
.trust-list { gap: 10px; }
.trust-item {
  flex: 0 1 auto;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--blush);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-1);
  color: var(--charcoal);
}
.trust-item .chips { flex: 0 1 auto; }
.trust-item .count { font-size: 22px; }
.trust-phrase { font-weight: 600; font-size: 15px; }
.trust-phrase::before, .proof .trust-phrase::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px 1px 0;
  border-radius: 50%;
  background: var(--rose);
  vertical-align: middle;
}

/* soft blush bubbles behind the friendlier sections */
#what, #host, #tickets, #quiz-again, #included { position: relative; isolation: isolate; overflow: hidden; }
#what::before, #host::before, #tickets::before, #quiz-again::before, #included::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--blush) 0%, rgba(247, 228, 231, 0) 72%);
  pointer-events: none;
}
#what::before { top: -120px; right: -140px; }
#host::before { bottom: -160px; left: -140px; width: 380px; height: 380px; }
#tickets::before { top: -100px; left: -160px; }
#included::before { bottom: -140px; right: -120px; }
#quiz-again::before { top: -180px; left: 50%; margin-left: -160px; }

/* marker highlight on the empathy pivot and the not-an-MLM line */
.pivot, .gc-not-mlm p {
  display: inline;
  background: linear-gradient(transparent 58%, var(--blush) 58%, var(--blush) 92%, transparent 92%);
  padding: 0 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.gc-not-mlm { border-left: 0; padding-left: 0; }

/* countdown units sit in blush bubbles */
.gc-cd-unit { padding: 14px 10px; background: var(--white); border-radius: 24px; box-shadow: var(--shadow-1); min-width: 84px; }

/* the logo flash paints the letters only: the sweep is masked to the wordmark's glyphs */
#nav .logo::after {
  -webkit-mask: url(../assets/logo.svg) no-repeat left center / 128px 32px;
  mask: url(../assets/logo.svg) no-repeat left center / 128px 32px;
}


/* ---------------------------------------------------------------------------
   14. Color and community pass (owner request): tinted sections, pastel cards, a deep-rose finale,
   the circle section, and a logo that can zoom without clipping.
--------------------------------------------------------------------------- */
/* logo: room to grow, and the flash glints across the letters instead of sliding the mark */
#nav .logo { overflow: visible; padding: 0 8px; margin-left: -8px; }
#nav .logo img { transform-origin: center center; }
#nav .logo::after {
  inset: auto;
  left: 8px;
  top: 50%;
  width: 128px;
  height: 32px;
  transform: translateY(-50%);
  -webkit-mask: url(../assets/logo.svg) no-repeat left center / 128px 32px;
  mask: url(../assets/logo.svg) no-repeat left center / 128px 32px;
}

/* hero: warm gradient instead of flat ivory */
#hero { background: linear-gradient(165deg, var(--peach) 0%, var(--ivory) 42%, var(--butter) 100%); }
.hero-photo img, #hero-img { box-shadow: 0 14px 34px rgba(176, 84, 106, .16); }
#hero .qcard:nth-child(1) { background: var(--white); border-color: var(--rose); }
#hero .qcard:nth-child(2) { background: var(--peach); border-color: var(--peach); }
#hero .qcard:nth-child(3) { background: var(--butter); border-color: var(--butter); }
#hero .qcard:nth-child(4) { background: var(--lavender); border-color: var(--lavender); }
#hero .qcard.is-selected { background: var(--blush); border-color: var(--deep-rose); }

/* trust pills in three tints */
.trust-item:nth-child(1) { background: var(--white); }
.trust-item:nth-child(2) { background: var(--peach); border-color: var(--peach); }
.trust-item:nth-child(3) { background: var(--lavender); border-color: var(--lavender); }
.trust-item:nth-child(4) { background: var(--butter); border-color: var(--butter); }
.trust-item:nth-child(2) .trust-phrase::before { background: var(--coral); }
.trust-item:nth-child(3) .trust-phrase::before { background: #8E6BB5; }

/* section tints */
#empathy { background: var(--white); }
.pivot-sub { font-size: 18px; color: var(--ink-2); margin: 12px 0 0; max-width: var(--measure); }
#what { background: var(--blush); }
#what .card:nth-child(1) { background: var(--white); }
#what .card:nth-child(2) { background: var(--butter); border-color: var(--butter); }
#what .card:nth-child(3) { background: var(--peach); border-color: var(--peach); }
#what .card h3::before { content: ""; display: block; width: 36px; height: 6px; border-radius: 3px; background: var(--deep-rose); margin: 0 0 12px; }
#what .card:nth-child(2) h3::before { background: var(--deep-gold); }
#what .card:nth-child(3) h3::before { background: var(--coral); }
#what::before { display: none; }
.gc-not-mlm p { background: linear-gradient(transparent 58%, var(--white) 58%, var(--white) 92%, transparent 92%); }

/* the circle */
#circle { padding: var(--sp-7) 0; background: var(--white); position: relative; isolation: isolate; overflow: hidden; }
#circle::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -120px;
  top: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--lavender) 0%, rgba(236, 228, 245, 0) 72%);
  pointer-events: none;
}
#circle h2 { max-width: 22ch; }
.circle-lead { font-size: var(--fs-3); line-height: 1.45; color: var(--ink-2); margin: 0 0 24px; }
.circle-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.circle-item { padding: 20px 22px; border-radius: var(--radius); }
.circle-item h3 { font-family: var(--font-body); font-size: 18px; font-weight: 700; margin: 0 0 6px; }
.circle-item p { margin: 0; color: var(--ink-2); font-size: 16px; }
.circle-item-peach { background: var(--peach); }
.circle-item-butter { background: var(--butter); }
.circle-item-lavender { background: var(--lavender); }

#schedule { background: var(--ivory); }
.tl-item:nth-child(3n+1) .tl-node { border-color: var(--rose); }
.tl-item:nth-child(3n+2) .tl-node { border-color: var(--coral); }
.tl-item:nth-child(3n+3) .tl-node { border-color: var(--gold); }
#host { background: var(--peach); }
#host::before { display: none; }
#host-img { border-radius: 32px 32px 32px 8px; }
#included { background: var(--ivory); }
.value-item:nth-child(odd) { background: var(--white); }
.value-item:nth-child(even) { background: var(--butter); border-color: var(--butter); }
#venue { background: var(--white); }
#tickets { background: var(--lavender); }
#tickets::before { display: none; }
.tier[data-tier="ga"] { background: var(--white); }
.tier[data-tier="vip"] { background: var(--butter); border-color: var(--butter); }
.tier.is-popular { border: 2px solid var(--gold); }
#faq { background: var(--white); }
#quiz-again { background: var(--mint); border-top: 0; }
#quiz-again::before { display: none; }

/* finale on deep rose */
#final { background: var(--deep-rose); color: var(--white); }
#final h2, #final .final-copy, #final .refund { color: var(--white); }
#final .refund a { color: var(--white); text-decoration-color: var(--white); }
#final .btn-primary { background: var(--white); color: var(--deep-rose); box-shadow: 0 10px 26px rgba(43, 43, 43, .18); }
#final .gc-cd-unit { background: var(--white); }
#final .is-unfilled { color: var(--charcoal); }
#footer { background: var(--ivory); }

@media (min-width: 768px) {
  #circle { padding: 72px 0; }
  .circle-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .circle-lead { max-width: 60ch; }
}


/* ---------------------------------------------------------------------------
   15. Sweat & Success branding: the event name with sweat drips (static shape here, motion in animations.css).
   The hero photo is a touch shorter so the extra line keeps Q1 inside the first frame at 390x740.
--------------------------------------------------------------------------- */
.event-name {
  position: relative;
  display: inline-block;
  margin: 0 0 2px;
  padding: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  letter-spacing: .01em;
  color: var(--deep-rose);
  max-width: none;
}
.event-name-text { position: relative; display: inline-block; padding-bottom: 6px; }
.drip { position: relative; display: inline-block; }
.drop {
  position: absolute;
  left: var(--x, 50%);
  top: 100%;
  width: 7px;
  height: 11px;
  margin: -8px 0 0 -3px;
  border-radius: 50% 50% 55% 55% / 35% 35% 65% 65%;
  background: linear-gradient(var(--rose), var(--deep-rose));
  opacity: 0;
  pointer-events: none;
}
.h2-event { color: var(--deep-rose); font-style: italic; }
.event-name-final { color: var(--white); }
.event-name-final .drop { background: linear-gradient(var(--blush), var(--white)); }
.event-name-result { margin: 12px 0 0; }
.hero-photo img, #hero-img { aspect-ratio: 3 / 1; }
@media (min-width: 768px) {
  .event-name { font-size: 26px; }
  .hero-photo img, #hero-img { aspect-ratio: 2.4 / 1; }
}

.value-caption { font-size: 15px; color: var(--ink-2); margin: -8px 0 16px; max-width: 720px; }
.value-sum { max-width: 720px; font-size: 17px; color: var(--ink-2); margin: 0 0 8px; }
.value-sum [data-included-total] { font-family: var(--font-display); font-weight: 600; color: var(--charcoal); }

/* Sweat & Success monogram (transparent PNG cut from the supplied artwork) */
.hero-photo img.hero-mark, #hero-img.hero-mark {
  object-fit: contain;
  padding: 6px;
  background: linear-gradient(135deg, var(--peach) 0%, var(--blush) 55%, var(--butter) 100%);
}
.ss-mark { display: block; width: 88px; height: 88px; margin: 0 auto 6px; }
.ss-mark-result { margin: 8px 0 0; width: 72px; height: 72px; }
@media (min-width: 768px) { .ss-mark { width: 110px; height: 110px; } }

/* gold sweat drips from the monogram in the hero: they start under the letters and fall inside the ring */
.drip-mark { position: relative; }
.drip-mark .drop { top: 68%; margin-top: 0; width: 6px; height: 10px; }
.drop-gold { background: linear-gradient(var(--gold), var(--deep-gold)); }

/* hero brand block: monogram on top, Sweat & Success under it, both gold, both dripping */
.hero-brand { margin: 0 0 8px; }
.hero-brand .hero-photo { display: inline-block; width: 84px; margin: 0 0 2px; vertical-align: top; }
.hero-brand .hero-photo img.hero-mark, .hero-brand #hero-img {
  width: 84px; height: 84px; aspect-ratio: 1 / 1; padding: 0; border-radius: 0; background: none; box-shadow: none; object-fit: contain;
}
.hero-brand .event-name { display: block; margin: 0; padding-bottom: 10px; font-size: 24px; }
.event-name, .h2-event { color: var(--deep-gold); }
.drop { background: linear-gradient(var(--gold), var(--deep-gold)); }
.drip-mark .drop { top: 66%; }
.event-name-final { color: var(--white); }
.event-name-final .drop { background: linear-gradient(var(--butter), var(--white)); }
#hero .eyebrow { margin-top: 2px; }
@media (min-width: 768px) {
  .hero-brand .hero-photo, .hero-brand .hero-photo img.hero-mark, .hero-brand #hero-img { width: 110px; height: 110px; }
  .hero-brand .event-name { font-size: 28px; }
}

/* hero brand block centered (owner request): monogram and Sweat & Success stacked in the middle */
.hero-brand { text-align: center; }
.hero-brand .hero-photo { display: block; margin: 0 auto 2px; }
.hero-brand .event-name-text { display: inline-block; }
@media (min-width: 1280px) {
  .hero-inner > .hero-brand { grid-column: 1 / -1; }
}

/* Facebook group buttons */
.fb-family { gap: 10px; }
.fb-family::before { content: ""; width: 18px; height: 18px; border-radius: 50%; background: var(--deep-rose); flex: 0 0 auto; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27%3E%3Cpath fill=%27%23000%27 d=%27M13.5 22v-8h2.7l.4-3.2h-3.1V8.8c0-.9.3-1.6 1.6-1.6h1.7V4.4c-.3 0-1.3-.1-2.5-.1-2.5 0-4.1 1.5-4.1 4.2v2.3H7.5V14h2.7v8z%27/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27%3E%3Cpath fill=%27%23000%27 d=%27M13.5 22v-8h2.7l.4-3.2h-3.1V8.8c0-.9.3-1.6 1.6-1.6h1.7V4.4c-.3 0-1.3-.1-2.5-.1-2.5 0-4.1 1.5-4.1 4.2v2.3H7.5V14h2.7v8z%27/%3E%3C/svg%3E") center / contain no-repeat; }
.fb-family-note { margin: 20px 0 8px; font-size: 15px; color: var(--ink-2); }
.step[data-step="result"] .fb-family { width: 100%; }
.circle-cta { margin: 24px 0 0; }
#footer .fb-family { min-height: var(--tap); }

/* ---------------------------------------------------------------------------
   16. Premium pass: a full-bleed hero photo band with the monogram on it, glossy gold-rimmed
   buttons, jewel-tone grounds and two plum sections. Static only; motion lives in animations.css.
--------------------------------------------------------------------------- */
.hero-media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0 calc(-1 * var(--sp-4)) 12px;
  height: clamp(150px, 43vw, 190px);
  background: var(--plum);
}
.hero-media picture { display: block; height: 100%; }
.hero-media #hero-img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 50% 38%;
  border-radius: 0;
  padding: 0;
  background: var(--plum);
  box-shadow: none;
}
.hero-media-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(46, 18, 32, .92) 0%, rgba(46, 18, 32, .74) 34%, rgba(46, 18, 32, .18) 66%, rgba(46, 18, 32, .06) 100%),
    linear-gradient(105deg, rgba(168, 54, 90, .28), rgba(46, 18, 32, 0) 60%);
}
.hero-media .hero-brand {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 10px;
  margin: 0;
  text-align: center;
}
.ss-mark-hero { width: 52px; height: 52px; margin: 0 auto 2px; filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .55)); }
.hero-media .event-name {
  display: block;
  margin: 0;
  padding-bottom: 10px;
  font-size: 25px;
  color: var(--gold-bright);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .6);
}
.hero-media .event-name .drop { background: linear-gradient(var(--gold-bright), var(--gold)); }
#hero { padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px)); }
#hero .eyebrow { margin: 0 0 4px; }

/* glossy, gold-rimmed primary buttons */
.btn-primary {
  background: linear-gradient(170deg, var(--deep-rose) 0%, var(--deep-rose-dark) 100%);
  color: var(--white);
  border: 1px solid rgba(232, 197, 122, .55);
  box-shadow: var(--shadow-btn);
}
.btn-primary:active { box-shadow: var(--shadow-btn-active); }
.btn-secondary { border-width: 2px; font-weight: 700; }
.btn-lg { letter-spacing: .01em; }
#nav-cta, #sticky-cta { border-radius: var(--radius-pill); }

/* quiz cards: crisper edges, gold rim when chosen */
.qcard { border-width: 1.5px; box-shadow: 0 2px 10px rgba(61, 23, 42, .07); }
.qcard.is-selected, .chip.is-selected {
  border-color: var(--deep-rose);
  box-shadow: 0 0 0 2px rgba(232, 197, 122, .55), 0 6px 18px rgba(168, 54, 90, .22);
}
.chip { border-width: 1.5px; }

/* the circle and the finale sit on plum: dark ground, bright cards, gold rules */
#circle { background: var(--plum); color: var(--rose-light); }
#circle h2 { color: var(--white); }
#circle .circle-lead { color: var(--rose-light); }
#circle::before { background: radial-gradient(circle at 40% 40%, rgba(168, 54, 90, .55) 0%, rgba(168, 54, 90, 0) 70%); }
#circle .circle-item { box-shadow: 0 10px 30px rgba(0, 0, 0, .28); }
#circle .circle-cta .fb-family { background: transparent; color: var(--gold-bright); border-color: var(--gold-bright); }

#final { background: linear-gradient(165deg, var(--plum) 0%, var(--plum-deep) 100%); color: var(--white); }
#final .event-name-final { color: var(--gold-bright); }
#final .event-name-final .drop { background: linear-gradient(var(--gold-bright), var(--gold)); }
#final .btn-primary {
  background: linear-gradient(170deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--plum-deep);
  border-color: rgba(255, 255, 255, .5);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .35);
}
#final .refund { color: var(--rose-light); }
#final .refund a { color: var(--gold-bright); text-decoration-color: var(--gold-bright); }
#final .cd-label { color: var(--gold-bright); }

/* richer section grounds */
#what { background: var(--blush); }
#tickets { background: var(--lavender); }
#host { background: var(--peach); }
#quiz-again { background: var(--mint); }
.tier.is-popular { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232, 197, 122, .35), var(--shadow-1); }
.price { color: var(--deep-rose); }
.value-item .value { color: var(--deep-rose); }
.pivot { color: var(--deep-rose); }
.trust-item { box-shadow: 0 4px 14px rgba(61, 23, 42, .10); }

@media (min-width: 768px) {
  .hero-media { margin: 0 0 20px; height: 300px; border-radius: var(--radius); }
  .ss-mark-hero { width: 72px; height: 72px; }
  .hero-media .event-name { font-size: 34px; }
}
@media (min-width: 1280px) {
  .hero-inner > .hero-media { grid-column: 2; grid-row: 1 / span 5; height: 460px; margin: 0; }
}

/* Instagram handle with its glyph */
.ig-handle { display: inline-flex; align-items: center; gap: 8px; min-height: var(--tap); font-weight: 600; color: var(--charcoal); }
.ig-handle::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  background: var(--deep-rose);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%272%27%3E%3Crect x=%273%27 y=%273%27 width=%2718%27 height=%2718%27 rx=%275.5%27/%3E%3Ccircle cx=%2712%27 cy=%2712%27 r=%274.2%27/%3E%3Ccircle cx=%2717.3%27 cy=%276.7%27 r=%271.3%27 fill=%27%23000%27 stroke=%27none%27/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%272%27%3E%3Crect x=%273%27 y=%273%27 width=%2718%27 height=%2718%27 rx=%275.5%27/%3E%3Ccircle cx=%2712%27 cy=%2712%27 r=%274.2%27/%3E%3Ccircle cx=%2717.3%27 cy=%276.7%27 r=%271.3%27 fill=%27%23000%27 stroke=%27none%27/%3E%3C/svg%3E") center / contain no-repeat;
}
#footer .gc-socials { align-items: center; gap: 10px 18px; }

/* Reserve the hero headline and sub box on phones so the web-font swap (and the A/B copy swap) cannot
   push the quiz down. Line counts measured at 390px: variant A is 3 + 3, variant B is 4 + 4. */
@media (max-width: 767px) {
  #hero h1, #h1 { min-height: calc(3 * 1.04em); }
  html[data-gc-variant="B"] #h1 { min-height: calc(3 * 1.04em); }
  #hero .sub { min-height: calc(3 * 1.4em); }
  html[data-gc-variant="B"] #hero .sub { min-height: calc(4 * 1.4em); }
}
.hero-media picture, .hero-media picture img { display: block; height: 100%; }
.hero-brand picture { display: block; }

.gc-drive-fallback { font-size: 15px; color: var(--ink-2); margin: 0 0 20px; }
.faq-a .gc-drive-fallback { margin: 0 0 16px; }

.deposit-note { max-width: 640px; margin: 10px auto 0; font-size: 14px; line-height: 1.5; color: var(--ink-2); text-align: center; }
#deposit-btn { margin-top: 20px; }

/* ---------------------------------------------------------------------------
   17. Conversion craft: risk reversal at the buy button, the host pull quote, the next-steps strip,
   editorial section labels, and two small delights.
--------------------------------------------------------------------------- */
.section-label {
  font: 600 12px / 1.2 var(--font-body);
  font-variant-caps: all-small-caps;
  letter-spacing: .16em;
  color: var(--deep-gold);
  margin: 0 0 8px;
}
#circle .section-label { color: var(--gold-bright); }

/* the three promises, gold ticks, directly under the ticket cards */
.guarantee {
  max-width: 640px;
  margin: 4px auto 0;
  padding: 18px 20px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}
.guarantee li {
  position: relative;
  padding-left: 30px;
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--charcoal);
}
.guarantee li:last-child { margin-bottom: 0; }
.guarantee li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .18em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--deep-rose);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%273%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M4 12.5l5.5 5.5L20 7%27/%3E%3C/svg%3E") center / 13px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%273%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M4 12.5l5.5 5.5L20 7%27/%3E%3C/svg%3E") center / 13px no-repeat;
}

/* what happens after she taps */
.next-steps {
  counter-reset: step;
  max-width: 640px;
  margin: 20px auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.next-steps li {
  counter-increment: step;
  position: relative;
  padding: 14px 18px 14px 54px;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  box-shadow: var(--shadow-1);
}
.next-steps li strong { color: var(--charcoal); }
.next-steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 13px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(170deg, var(--deep-rose), var(--deep-rose-dark));
  color: var(--white);
  font: 700 14px / 1 var(--font-body);
}

/* the host's own closing line, set as a pull quote */
.host-pull {
  margin: 0 0 18px;
  padding: 0 0 0 18px;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.35;
  color: var(--charcoal);
  max-width: 24ch;
}

@media (min-width: 768px) {
  .next-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 860px; }
  .guarantee { max-width: 860px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px 24px; }
  .guarantee li { margin: 0; }
  .host-pull { font-size: 26px; max-width: 20ch; }
}

/* ---------------------------------------------------------------------------
   18. The timed offer.
--------------------------------------------------------------------------- */
#promo .overlay-sheet { text-align: center; padding-top: 12px; }
#promo-title { font-size: var(--fs-4); margin: 12px 40px 10px; }
#promo-body { margin: 0 auto 14px; color: var(--ink-2); font-size: 16px; }
#promo-code, #promo-body code {
  display: inline-block;
  padding: 3px 10px;
  border: 1px dashed var(--gold);
  border-radius: 8px;
  background: var(--butter);
  font: 700 15px / 1.3 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .08em;
  color: var(--charcoal);
}
#promo-prices { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 6px; }
#promo-prices li { font-size: 15px; color: var(--charcoal); }
#promo-buy { margin-bottom: 10px; }
#promo-save { width: 100%; margin-bottom: 8px; }
#promo-dismiss { width: 100%; }
#promo-ribbon {
  max-width: 640px;
  margin: 0 auto 16px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: var(--butter);
  border: 1px solid var(--gold);
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  text-align: center;
}
.price-was { font-size: .62em; color: var(--ink-2); text-decoration: line-through; margin-right: 10px; }
.price-now { color: var(--deep-rose); }

/* ---------------------------------------------------------------------------
   19. The pay sheet. Card payment without leaving the page.

   Square mounts cross-origin iframes into #pay-card, so the fields inside it cannot inherit any of
   this. Their styling is passed to the SDK as tokens in js/pay.js; what is here is the frame around
   them, and it has to leave the iframe's own height alone.
--------------------------------------------------------------------------- */

#pay .overlay-sheet { padding-bottom: calc(var(--sp-6) + var(--safe-b)); }

#pay h2 { margin: 0 0 var(--sp-3); }

/* the line item */
.pay-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: 14px 16px;
  margin: 0 0 10px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--blush);
  font-weight: 600;
  color: var(--charcoal);
}
.pay-amount {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--deep-rose);
  font-variant-numeric: tabular-nums;
}
.pay-note {
  margin: 0 0 var(--sp-4);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}

/* wallets */
#pay-wallets { margin: 0 0 var(--sp-4); }
.pay-wallet { margin: 0 0 10px; }
.pay-wallet:empty { display: none; }
.pay-wallet-btn {
  display: block;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  -webkit-appearance: -apple-pay-button;
  appearance: none;
  -apple-pay-button-type: buy;
  -apple-pay-button-style: black;
  background: #000;
}
.pay-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: var(--sp-4) 0 0;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.pay-or::before, .pay-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* the card frame */
.pay-card-field { margin: 0 0 var(--sp-3); }
.pay-card-label {
  display: block;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-2);
}
#pay-card { min-height: 92px; }

.pay-err:empty { display: none; }
.pay-err {
  margin: 0 0 var(--sp-3);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: #FBEAEF;
  color: var(--error);
  font-size: 15px;
  line-height: 1.45;
}

.pay-trust {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: var(--sp-4) 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
}
.pay-trust svg { flex: none; margin-top: 2px; color: var(--deep-gold); }

/* the paid state: the same ticket stub the email carries */
#pay-done { text-align: center; }
#pay-done h2 { margin-bottom: var(--sp-4); }
.pay-stub {
  display: block;
  margin: 0 auto var(--sp-4);
  padding: 16px 24px;
  border: 2px dashed var(--gold);
  border-radius: var(--radius-sm);
  background: var(--white);
}
.pay-stub-label {
  display: block;
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.pay-ticket {
  display: block;
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: .06em;
  color: var(--deep-rose-dark);
  font-variant-numeric: tabular-nums;
}
#pay-done-body { margin: 0 0 var(--sp-4); color: var(--charcoal); }
#pay-done .btn { width: 100%; margin-top: 10px; }

@media (min-width: 768px) {
  .pay-amount { font-size: 32px; }
  .pay-ticket { font-size: 31px; }
}
