:root {
  --cream: #F7F6F1;
  --ink: #111827;
  --blue: #4271F5;
  --blue-dark: #2f57c9;
  --green-light: #B3EB7E;
  --green-deep: #2BA24C;
  --wave-black: #232323;
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 40px);
  --r-card: clamp(24px, 3.4vw, 50px);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* height:auto is required so the width/height HTML attributes (presentational
   hints) do not fix the box height and defeat aspect-ratio / natural sizing */
img { max-width: 100%; height: auto; display: block; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- type ---------- */
/* text-wrap:balance on headings and pretty on body copy prevents the
   single-word orphan lines that centred ragged text is prone to */
h1, h2, h3 { line-height: 1.12; font-weight: 700; letter-spacing: -0.015em; text-wrap: balance; }
h2 { font-size: clamp(2rem, 4.6vw, 4rem); text-align: center; }
h3 { font-size: clamp(1.35rem, 2.6vw, 2.25rem); }
p { text-wrap: pretty; }

/* body copy reads left-aligned in a measured column; headings stay centred */
.lede {
  font-size: clamp(1.02rem, 1.4vw, 1.3125rem);
  text-align: left;
  max-width: 66ch;
  margin-inline: auto;
}
.lede + .lede { margin-top: 1.1em; }

.section { padding-block: clamp(56px, 9vw, 130px); }
.section--tight { padding-block: clamp(40px, 6vw, 80px); }
.stack-sm > * + * { margin-top: clamp(14px, 2vw, 24px); }
.stack-md > * + * { margin-top: clamp(24px, 4vw, 52px); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: clamp(.95rem, 1.15vw, 1.125rem);
  line-height: 1;
  padding: clamp(14px, 1.6vw, 20px) clamp(26px, 3vw, 44px);
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s ease, transform .18s ease;
}
.btn:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.btn--sm { padding: 12px 24px; font-size: .95rem; }
.btn--block { width: 100%; }
.center { text-align: center; }
.center .btn { margin-inline: auto; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 241, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  min-height: 62px;
  padding-block: 8px;
}
/* lockup: icon art + live Poppins wordmark. The exported logo bitmap had its
   "g" descender clipped, so the wordmark is set as text instead. */
.lockup { display: inline-flex; align-items: center; gap: .45em; text-decoration: none; color: var(--ink); }
.lockup img { height: 1.2em; width: auto; }
.lockup span { font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.site-header__logo { font-size: clamp(1.05rem, 1.5vw, 1.3rem); }
.site-nav {
  display: flex;
  gap: clamp(18px, 2.6vw, 38px);
  margin-inline: auto;
}
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding-block: 4px;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { border-bottom-color: var(--ink); }
@media (max-width: 860px) {
  .site-nav { display: none; }
  .site-header__inner { justify-content: space-between; }
}

/* ---------- hero ---------- */
.hero { padding-block: clamp(40px, 5.5vw, 76px) clamp(32px, 4.5vw, 56px); text-align: center; }
.hero h1 {
  font-size: clamp(2.1rem, 5.4vw, 4.25rem);
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 18ch;
  margin-inline: auto;
}
.hero__date {
  font-size: clamp(1.05rem, 1.9vw, 1.625rem);
  font-weight: 500;
  margin-top: clamp(14px, 1.8vw, 22px);
}
.hero__tag {
  font-size: clamp(.98rem, 1.35vw, 1.25rem);
  font-weight: 400;
  margin-top: .55em;
  max-width: 46ch;
  margin-inline: auto;
}
.hero .btn { margin-top: clamp(24px, 3vw, 36px); }

/* ---------- wave divider + green bands ---------- */
.wave { display: block; width: 100%; height: clamp(48px, 7vw, 110px); }
.band-green {
  background: linear-gradient(180deg, var(--green-light) 0%, var(--green-deep) 100%);
  color: #fff;
}
.band-green--quote { padding-block: clamp(40px, 6vw, 78px); }
/* hero photo band: the wave paints cream ABOVE its curve and sits inside the
   gradient wrapper, so the green is one continuous gradient with no seam */
.wave-band { padding: 0; }
.wave-band .wave { display: block; }
.band-green--inner { background: transparent; padding-block: clamp(28px, 4vw, 56px) clamp(44px, 7vw, 96px); }
.lede--center { text-align: center; }

.quote { max-width: 62ch; margin-inline: auto; }
.quote__text {
  font-size: clamp(1.02rem, 1.5vw, 1.375rem);
  font-weight: 600;
  line-height: 1.5;
}
.quote__by { display: flex; align-items: center; gap: 14px; margin-top: clamp(16px, 2vw, 22px); }
.quote__avatar {
  width: clamp(46px, 4.4vw, 58px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: clamp(.95rem, 1.2vw, 1.125rem);
  flex: none;
  overflow: hidden;
}
.quote__avatar img { width: 100%; height: 100%; object-fit: cover; }
.quote__name { font-weight: 700; line-height: 1.25; }
.quote__meta { font-size: clamp(.82rem, 1vw, .9375rem); opacity: .92; line-height: 1.25; }

/* photo that straddles the cream/green boundary */
.hero-photo { margin-top: 0; }
.hero-photo img {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  border-radius: var(--r-card);
  /* crop the empty ceiling/floor out of the group shot so it is not so tall */
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 42%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .16);
}

/* ---------- crew ---------- */
.crew-figure {
  position: relative;
  width: min(700px, 100%);
  margin-inline: auto;
}
.crew-figure img.crew-photo {
  width: 100%;
  border-radius: var(--r-card);
  aspect-ratio: 1500 / 924;
  object-fit: cover;
}
.crew-names {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 12px;
  margin-top: clamp(18px, 2.4vw, 30px);
  text-align: center;
  font-weight: 600;
  font-size: clamp(.95rem, 1.5vw, 1.25rem);
}
/* each arrow lives inside its name's column and is centred there, so it points
   at the name it belongs to and can never overflow / get clipped at the edges */
.crew-names span { display: flex; flex-direction: column; align-items: center; gap: clamp(6px, 1vw, 12px); }
.arrow { display: block; pointer-events: none; width: clamp(42px, 4.8vw, 58px); height: auto; }
.arrow--blue   { color: var(--blue); }
.arrow--yellow { color: #E4C441; }
.arrow--green  { color: var(--green-deep); }

/* ---------- benefit cards ---------- */
.cards-3 {
  display: grid;
  gap: clamp(20px, 2.6vw, 32px);
  grid-template-columns: 1fr;
}
@media (min-width: 780px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: #fff;
  border-radius: var(--r-card);
  padding: clamp(28px, 3.4vw, 44px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .07);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card__emoji { font-size: clamp(2rem, 3.4vw, 2.75rem); line-height: 1; }
.card__title { font-size: clamp(1.2rem, 1.9vw, 1.55rem); font-weight: 700; }
.card__icon + .card__title { margin-top: 12px; }
.card__body { font-size: clamp(.95rem, 1.15vw, 1.0625rem); }

/* ---------- agenda + pricing green cards ---------- */
.cards-2 {
  display: grid;
  gap: clamp(20px, 2.6vw, 34px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 860px) { .cards-2 { grid-template-columns: repeat(2, 1fr); } }
.gcard {
  position: relative;
  background: var(--green-light);
  border-radius: var(--r-card);
  padding: clamp(28px, 3.6vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
  height: 100%;
}
.gcard__eyebrow {
  color: var(--blue);
  font-weight: 600;
  font-size: clamp(.9rem, 1.15vw, 1.0625rem);
}
.gcard__day {
  font-size: clamp(1.25rem, 2.2vw, 1.875rem);
  font-weight: 700;
  letter-spacing: .01em;
}
.gcard__note {
  color: var(--blue);
  font-weight: 500;
  font-size: clamp(.85rem, 1.05vw, 1rem);
  margin-top: auto;
}
.gcard__badge {
  position: absolute;
  width: clamp(62px, 7vw, 104px);
  bottom: clamp(-16px, -1.6vw, -10px);
  right: clamp(-10px, -1vw, -6px);
}
.gcard__badge--left { right: auto; left: clamp(-14px, -1.4vw, -8px); }
/* keep the closing note clear of the overlapping badge */
.gcard--badged-left  .gcard__note { padding-left:  clamp(58px, 7vw, 100px); }
.gcard--badged-right .gcard__note { padding-right: clamp(58px, 7vw, 100px); }

/* schedule rows: fixes the collapsed time column from the export */
.sched { display: grid; grid-template-columns: auto 1fr; gap: 10px clamp(16px, 2.4vw, 30px); }
.sched dt { font-weight: 700; white-space: nowrap; font-size: clamp(.92rem, 1.15vw, 1.0625rem); }
.sched dd { font-size: clamp(.92rem, 1.15vw, 1.0625rem); }

/* ---------- pricing ---------- */
.price { font-size: clamp(2.4rem, 4.6vw, 3.75rem); font-weight: 700; color: var(--blue); line-height: 1; }
.price s { color: rgba(0, 0, 0, .38); text-decoration-thickness: .06em; margin-right: .18em; }
.tier { font-size: clamp(1.4rem, 2.4vw, 2.25rem); font-weight: 700; text-align: center; }
.pkg { font-weight: 700; font-size: clamp(1rem, 1.3vw, 1.1875rem); }
.feat { list-style: none; display: grid; gap: 7px; font-size: clamp(.92rem, 1.12vw, 1.0625rem); }
.feat li { display: grid; grid-template-columns: 1.35em 1fr; align-items: start; }
.feat li::before { content: "✓"; font-weight: 700; color: var(--blue); }
.remaining { font-weight: 600; color: var(--blue); text-align: center; font-size: clamp(.9rem, 1.1vw, 1rem); }
.earlybird {
  text-align: center;
  font-weight: 600;
  font-size: clamp(.95rem, 1.3vw, 1.1875rem);
  margin-top: clamp(28px, 4vw, 48px);
}

/* ---------- venue ---------- */
.venue-photo {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  border-radius: var(--r-card);
  aspect-ratio: 729 / 380;
  object-fit: cover;
}

/* ---------- photo band ---------- */
.photo-band {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(12px, 2vw, 26px);
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 46px);
}
.photo-band img {
  border-radius: clamp(14px, 1.6vw, 22px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .2);
  object-fit: cover;
}
.photo-band img:first-child { width: min(430px, 62vw); aspect-ratio: 4 / 3; }
.photo-band img:last-child  { width: min(215px, 32vw); aspect-ratio: 3 / 4; }

/* ---------- final CTA ---------- */
.final-cta h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.8125rem);
  max-width: 20ch;
  margin-inline: auto;
  text-wrap: balance;
}
/* two-sentence final CTA: keep each sentence on its own line */
.final-cta h2.final-cta__h2 { max-width: none; font-size: clamp(1.35rem, 3vw, 2.5rem); }

/* ---------- footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--green-light) 0%, var(--green-deep) 100%);
  padding-block: clamp(44px, 6vw, 76px);
  color: var(--ink);
}
.site-footer__grid {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 820px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr auto; }
}
.site-footer .flogo { font-size: 1.25rem; margin-bottom: 12px; }
.site-footer p { font-size: clamp(.9rem, 1.1vw, 1rem); max-width: 34ch; }
.footer-nav { display: grid; gap: 8px; }
.footer-nav a { color: var(--ink); text-decoration: none; font-weight: 500; }
.footer-nav a:hover { text-decoration: underline; }
.copyright {
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .16);
  font-size: .875rem;
  text-align: center;
}

/* ---------- announcement bar ---------- */
.announce {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: clamp(.82rem, 1.1vw, .95rem);
  font-weight: 500;
  padding: 9px 16px;
}
.announce a { color: #fff; text-decoration: underline; font-weight: 700; }
.announce strong { color: var(--green-light); }

/* ---------- agenda teaser card ---------- */
.gcard--teaser {
  background: #fff;
  border: 2px dashed var(--green-deep);
  justify-content: center;
  text-align: center;
  gap: clamp(12px, 1.6vw, 18px);
}
.gcard--teaser .btn { align-self: center; margin-top: 4px; }

/* ---------- single ticket card ---------- */
.ticket-single { max-width: 560px; margin-inline: auto; }
.price-sub {
  text-align: center;
  font-weight: 500;
  color: rgba(0, 0, 0, .55);
  font-size: clamp(.85rem, 1.05vw, 1rem);
  margin-top: -6px;
}
.member-note {
  text-align: center;
  font-size: clamp(.95rem, 1.2vw, 1.0625rem);
  max-width: 60ch;
  margin-inline: auto;
}
.member-note a { color: var(--blue); font-weight: 700; text-decoration: none; }
.member-note a:hover { text-decoration: underline; }

/* ---------- 3-photo social-proof band ---------- */
.photo-band--3 img,
.photo-band--3 img:first-child,
.photo-band--3 img:last-child {
  width: min(330px, 42vw);
  aspect-ratio: 4 / 3;
}
.proof-cap {
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: clamp(.9rem, 1.1vw, 1.0625rem);
  opacity: .95;
  margin-top: -12px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  background: #fff;
  border-radius: clamp(14px, 1.6vw, 20px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  padding: clamp(16px, 2vw, 24px) clamp(20px, 2.6vw, 30px);
}
.faq details + details { margin-top: 14px; }
.faq summary {
  font-weight: 700;
  font-size: clamp(1rem, 1.35vw, 1.1875rem);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-weight: 700; color: var(--blue); font-size: 1.4em; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin-top: 12px; font-size: clamp(.95rem, 1.15vw, 1.0625rem); max-width: none; }
.faq a { color: var(--blue); font-weight: 600; }

/* ---------- email capture ---------- */
.capture {
  background: #fff;
  border-radius: var(--r-card);
  padding: clamp(28px, 4vw, 52px);
  text-align: center;
  box-shadow: 0 10px 34px rgba(0, 0, 0, .07);
  max-width: 720px;
  margin-inline: auto;
}
.capture h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
.capture p { max-width: 48ch; margin-inline: auto; margin-top: 8px; }
.capture form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 22px; }
.capture input {
  flex: 1 1 260px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(0, 0, 0, .18);
  font: inherit;
}
.capture input:focus-visible { outline: 2px solid var(--blue); border-color: var(--blue); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

/* ---------- community page ---------- */
.band-green--hero { padding-block: clamp(44px, 7vw, 96px); }
.eyebrow-pill {
  display: inline-block;
  background: rgba(255, 255, 255, .9);
  color: var(--green-deep);
  font-weight: 700;
  font-size: clamp(.78rem, 1vw, .9rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
}
.codebox {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px dashed var(--green-deep);
  border-radius: 14px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.375rem);
  letter-spacing: .02em;
  color: var(--ink);
}
.codebox span:first-child { color: rgba(0, 0, 0, .5); font-weight: 600; font-size: .8em; letter-spacing: .04em; text-transform: uppercase; }
.code-val { color: var(--blue); }

/* ---------- venue gallery ---------- */
.venue-grid { display: grid; grid-template-columns: 1fr; gap: clamp(14px, 2vw, 22px); }
@media (min-width: 640px) { .venue-grid { grid-template-columns: 1fr 1fr; } }
.venue-grid img {
  width: 100%;
  border-radius: clamp(16px, 2vw, 28px);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}
/* keep the hero subhead from dropping a single orphan word on its own line */
.hero__tag { text-wrap: balance; }

/* ---------- benefit card icons (custom line icons, no emoji) ---------- */
.card__icon {
  width: clamp(66px, 7.5vw, 88px);
  aspect-ratio: 1;
  border-radius: clamp(18px, 2.2vw, 26px);
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--green-light) 0%, var(--green-deep) 100%);
  color: #fff;
  box-shadow: 0 14px 26px rgba(43, 162, 76, .32);
}
.card__icon svg { width: 46%; height: 46%; stroke-width: 2.2; }

/* ---------- "sound like you" belonging section ---------- */
.painpoints { display: grid; gap: clamp(14px, 2vw, 20px); grid-template-columns: 1fr; }
@media (min-width: 720px) { .painpoints { grid-template-columns: 1fr 1fr; } }
.painpoint {
  background: #fff;
  border-radius: clamp(16px, 2vw, 22px);
  padding: clamp(18px, 2.4vw, 26px) clamp(20px, 2.6vw, 28px) clamp(18px, 2.4vw, 26px) clamp(46px, 4vw, 58px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  font-size: clamp(1rem, 1.3vw, 1.1875rem);
  font-weight: 500;
  font-style: italic;
  position: relative;
  display: flex;
  align-items: center;
}
.painpoint::before {
  content: "\201C";
  position: absolute;
  left: clamp(14px, 1.6vw, 20px);
  top: .28em;
  font-size: 2.4em;
  line-height: 1;
  color: var(--green-deep);
  opacity: .45;
  font-style: normal;
  font-family: Georgia, 'Times New Roman', serif;
}
.payoff { text-align: center; font-size: clamp(1.1rem, 1.7vw, 1.45rem); font-weight: 600; max-width: 50ch; margin-inline: auto; text-wrap: balance; }

/* community hero: size the two-sentence headline so each sentence stays on its own single line */
.hero h1.hero-h1--stack { max-width: none; font-size: clamp(1.6rem, 4.4vw, 3.35rem); }

/* ---------- venue address cards (community) ---------- */
.venue-addrs { display: grid; grid-template-columns: 1fr; gap: clamp(16px, 2.4vw, 24px); }
@media (min-width: 640px) { .venue-addrs { grid-template-columns: 1fr 1fr; } }
.venue-addr {
  background: #fff;
  border-radius: clamp(14px, 1.8vw, 20px);
  padding: clamp(18px, 2.4vw, 26px) clamp(20px, 2.6vw, 28px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}
.venue-addr__day { color: var(--blue); font-weight: 700; font-size: clamp(.85rem, 1.05vw, 1rem); }
.venue-addr__name { font-weight: 700; font-size: clamp(1.05rem, 1.4vw, 1.25rem); margin-top: 4px; }
.venue-addr__loc { color: rgba(0, 0, 0, .62); font-size: clamp(.92rem, 1.1vw, 1rem); margin-top: 2px; }

/* ---------- video testimonials (Tella embeds) ---------- */
.video-grid { display: grid; gap: clamp(16px, 2.4vw, 28px); grid-template-columns: 1fr; }
@media (min-width: 820px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: clamp(14px, 1.8vw, 22px);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .14);
  background: #000;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* video testimonial name captions */
.video-item { margin: 0; }
.video-name { text-align: center; font-weight: 600; margin-top: clamp(10px, 1.4vw, 14px); font-size: clamp(.95rem, 1.15vw, 1.0625rem); }

/* ---------- venue photo blocks (community: labeled per venue) ---------- */
.venue-block { display: flex; flex-direction: column; gap: clamp(12px, 1.6vw, 18px); }
.venue-photo-label { text-align: center; font-weight: 700; color: var(--blue); font-size: clamp(.92rem, 1.2vw, 1.0625rem); }
