@charset "UTF-8";
/* ============================================================
   COMMUNITY TOGETHER COMMUNICATIONS
   Shared stylesheet — mobile-first
   Brand purple #4B2C5E · warm gold #EFC534 · cream grounds
   Display: Fraunces  ·  Text: Karla
   ============================================================ */

/* ── 1. TOKENS ─────────────────────────────────────────── */
:root {
  --purple:       #4B2C5E;
  --purple-deep:  #341E44;
  --purple-mid:   #5E3B74;
  --purple-soft:  #7A5C8E;
  --purple-wash:  #F0E9F3;
  --purple-line:  rgba(75, 44, 94, 0.14);

  --gold:         #EFC534;
  /* text-safe gold - the brand gold is far too light to read as text */
  --gold-deep:    #816609;
  --gold-mid:     #C39A18;
  --gold-wash:    #FCF4D9;

  --cream:        #FDFAF3;
  --cream-deep:   #F5EFE2;
  --cream-line:   #E8DFCB;
  --white:        #FFFFFF;

  --ink:          #2A2230;
  --ink-soft:     #5E5566;
  /* meta/caption text - dark enough to clear 4.5:1 on cream, white and the
     tinted washes it sits on. Lighter greys fail WCAG on the cream palette. */
  --ink-faint:    #6F6775;

  --ok:           #2F6B4F;
  --err:          #A32F2F;

  --max:          1200px;
  --max-narrow:   760px;
  --gut:          clamp(1.25rem, 4vw, 2.5rem);

  --r-sm:         10px;
  --r-md:         16px;
  --r-lg:         24px;
  --r-xl:         36px;
  --r-pill:       999px;

  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft:    cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm:    0 2px 8px rgba(42, 34, 48, 0.06);
  --shadow-md:    0 10px 30px rgba(42, 34, 48, 0.09);
  --shadow-lg:    0 24px 60px rgba(52, 30, 68, 0.16);

  --z-drawer:     900;
  --z-header:     800;
  --z-bar:        700;
  --z-cookie:     950;

  /* soft petal-arch used for photography */
  --arch:         48% 48% 14px 14px / 38% 38% 14px 14px;
}

/* ── 2. RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Karla', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
address { font-style: normal; }
table { border-collapse: collapse; width: 100%; }
/* Focus ring must clear 3:1 against whatever it sits on. Brand gold manages
   only ~1.6:1 on the cream surfaces, so light sections take the purple ring
   and gold is reserved for the dark ones. */
:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}
.section--purple :focus-visible,
.pagehead :focus-visible,
.drawer :focus-visible,
.site-footer :focus-visible,
.bookstrip :focus-visible,
.call--feature :focus-visible,
.to-top:focus-visible {
  outline-color: var(--gold);
}
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--purple); color: var(--white);
  padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0;
  z-index: 1000; font-weight: 700;
}
.skip:focus { left: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ── 3. TYPOGRAPHY ─────────────────────────────────────── */
.display, h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-variation-settings: 'SOFT' 30, 'WONK' 1;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--purple);
  text-wrap: balance;
}
h1, .h1 {
  font-size: clamp(2.15rem, 6.2vw, 4rem);
  font-weight: 600;
  line-height: 1.04;
}
h2, .h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 600;
}
h3, .h3 {
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  font-weight: 600;
  line-height: 1.22;
}
h4, .h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
}
/* The section label leads and the h2 supports it - a deliberate inversion of
   the usual kicker/heading relationship. Sizes must stay eyebrow > h2 > h3. */
.eyebrow {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.7vw, 1.85rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 0.5rem;
  text-wrap: balance;
}
.eyebrow--light { color: var(--gold); }
.lead {
  font-size: clamp(1.075rem, 2.1vw, 1.28rem);
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 62ch;
}
.lead--light { color: rgba(255, 255, 255, 0.86); }
p { max-width: 68ch; }
p + p { margin-top: 1em; }
.measure { max-width: var(--max-narrow); }
.center { text-align: center; }
.center .lead, .center p { margin-left: auto; margin-right: auto; }
strong, b { font-weight: 700; }
em { font-style: italic; }

/* underline flourish on a display word */
.mark {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.mark {
  background-image: linear-gradient(to right, rgba(239, 197, 52, 0.55), rgba(239, 197, 52, 0.55));
  background-repeat: no-repeat;
  background-size: 100% 0.26em;
  background-position: 0 82%;
}

/* ── 4. LAYOUT ─────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--narrow { max-width: var(--max-narrow); }
.section {
  padding-block: clamp(3.5rem, 9vw, 7rem);
  position: relative;
}
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section--cream      { background: var(--cream); }
.section--cream-deep { background: var(--cream-deep); }
.section--wash       { background: var(--purple-wash); }
.section--purple {
  background: var(--purple);
  color: rgba(255, 255, 255, 0.88);
}
.section--purple h1, .section--purple h2,
.section--purple h3, .section--purple h4 { color: var(--white); }
.section--purple .lead { color: rgba(255, 255, 255, 0.82); }
.section--purple a:not(.btn) { color: var(--gold); }

/* paper grain over cream grounds */
.grain::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}
.section > .wrap { position: relative; z-index: 1; }

.head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.head--center { text-align: center; }
.head--center .lead { margin-inline: auto; }

.grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 620px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 940px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.stack > * + * { margin-top: 1.1rem; }
.stack-sm > * + * { margin-top: 0.6rem; }

/* ── 5. LOTUS DEVICES ──────────────────────────────────── */
.lotus { display: block; flex: none; fill: currentColor; }
.lotus path { fill: currentColor; }

.rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold-mid);
  margin-block: clamp(2rem, 5vw, 3.5rem);
}
.rule::before, .rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}
.rule .lotus { width: 26px; height: 26px; }
.rule--light { color: var(--gold); }

/* petal-arch photo frame */
.arch {
  border-radius: var(--arch);
  overflow: hidden;
  background: var(--purple-wash);
  position: relative;
}
.arch img { width: 100%; height: 100%; object-fit: cover; }
.arch--sm { border-radius: 34% 34% 12px 12px / 24% 24% 12px 12px; }

/* ── 6. BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Karla', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.2s var(--ease-soft),
              color 0.2s var(--ease-soft), border-color 0.2s var(--ease-soft),
              box-shadow 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--gold {
  background: var(--gold);
  color: var(--purple-deep);
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(239, 197, 52, 0.36);
}
.btn--gold:hover { background: #F6D45C; border-color: #F6D45C; box-shadow: 0 8px 22px rgba(239, 197, 52, 0.44); }
.btn--purple {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.btn--purple:hover { background: var(--purple-mid); border-color: var(--purple-mid); }
.btn--outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple-line);
}
.btn--outline:hover { border-color: var(--purple); background: var(--purple-wash); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}
.btn--ghost:hover { background: var(--white); color: var(--purple); border-color: var(--white); }
.btn--lg { font-size: 1.05rem; padding: 19px 38px; }
.btn--sm { font-size: 0.85rem; padding: 11px 20px; }
.btn--block { display: flex; width: 100%; }
.btn--link {
  padding: 0;
  border-radius: 0;
  border: 0;
  background: none;
  color: var(--purple);
  font-weight: 700;
  border-bottom: 2px solid var(--gold);
  border-radius: 0;
}
.btn--link:hover { transform: none; color: var(--gold-deep); }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }

.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.btns--center { justify-content: center; }

/* ── 7. HEADER & NAV ───────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(253, 250, 243, 0.94);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--cream-line);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 84px;
  padding-block: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: 2rem;
  color: var(--purple);
}
/* Sticky header: a full-size mark would eat the phone viewport, so the logo
   only reaches full scale once the nav is inline. */
.brand img { width: 62px; height: 62px; object-fit: contain; }
@media (min-width: 1120px) {
  .site-header__inner { min-height: 130px; }
  .brand img { width: 104px; height: 104px; }
}
.brand__logo { height: 44px; width: auto; display: block; object-fit: contain; }
.footbrand .brand__logo { height: 62px; }
.brand__name {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'SOFT' 40, 'WONK' 1;
  font-weight: 600;
  font-size: 1.12rem;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.brand__name span {
  display: block;
  font-family: 'Karla', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 3px;
}
.nav { display: none; }
@media (min-width: 1120px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 0.1rem;
  }
  .nav__link {
    position: relative;
    white-space: nowrap;
    padding: 9px 10px;
    font-size: 0.855rem;
    font-weight: 600;
    color: var(--ink);
    border-radius: var(--r-sm);
    transition: color 0.2s var(--ease-soft);
  }
  .nav__link::after {
    content: '';
    position: absolute;
    left: 13px; right: 13px; bottom: 3px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
  }
  .nav__link:hover { color: var(--purple); }
  .nav__link:hover::after,
  .nav__link[aria-current="page"]::after { transform: scaleX(1); }
  .nav__link[aria-current="page"] { color: var(--purple); }
}
.header__cta { display: none; white-space: nowrap; }
@media (min-width: 1120px) { .header__cta { display: inline-flex; margin-left: 0.5rem; } }

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  align-items: center;
  border-radius: var(--r-sm);
  border: 1px solid var(--purple-line);
  color: var(--purple);
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease-soft);
}
@media (min-width: 1120px) { .burger { display: none; } }
body.drawer-open { overflow: hidden; }
body.drawer-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.drawer-open .burger span:nth-child(2) { opacity: 0; }
body.drawer-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  background: var(--purple);
  color: var(--white);
  padding: 88px var(--gut) 40px;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease), visibility 0.3s;
}
.drawer[data-open="true"] { opacity: 1; visibility: visible; transform: none; }
.drawer__close {
  position: absolute;
  top: 20px; right: var(--gut);
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
}
.drawer__list { display: grid; gap: 2px; }
.drawer__list a {
  display: block;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'SOFT' 40, 'WONK' 1;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.drawer__list a[aria-current="page"] { color: var(--gold); }
.drawer__foot { margin-top: 2rem; display: grid; gap: 0.75rem; }
.drawer__lotus {
  position: absolute;
  right: -70px; bottom: -60px;
  width: 260px; height: 260px;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

/* ── 8. HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--cream);
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 940px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
}
.hero h1 { margin-bottom: 1.1rem; }
.hero .lead { margin-bottom: 1.9rem; }
.hero__media { position: relative; }
.hero__media .arch { aspect-ratio: 4 / 3.4; box-shadow: var(--shadow-lg); }
.hero__media .arch img { object-position: center 30%; }
@media (min-width: 940px) { .hero__media .arch { aspect-ratio: 4 / 3.9; } }
.hero__badge {
  position: absolute;
  left: -12px; bottom: 26px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 250px;
}
.hero__badge .lotus { width: 30px; height: 30px; color: var(--gold-mid); }
.hero__badge b {
  font-family: 'Fraunces', serif;
  color: var(--purple);
  font-size: 1.25rem;
  display: block;
  line-height: 1;
}
.hero__badge small { font-size: 0.76rem; color: var(--ink-soft); line-height: 1.3; display: block; }
.hero__lotus {
  position: absolute;
  top: -110px; left: -140px;
  width: 420px; height: 420px;
  color: var(--purple);
  opacity: 0.045;
  pointer-events: none;
}
.hero__trust {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.hero__trust li { display: flex; align-items: center; gap: 0.45rem; }
.hero__trust .lotus { width: 15px; height: 15px; color: var(--gold); }

/* page banner (interior pages) */
.pagehead {
  background: var(--purple);
  color: var(--white);
  padding-block: clamp(2.75rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}
.pagehead h1 { color: var(--white); margin-bottom: 1rem; }
.pagehead .lead { color: rgba(255, 255, 255, 0.82); }
.pagehead__lotus {
  position: absolute;
  right: -80px; top: -80px;
  width: 340px; height: 340px;
  color: rgba(255, 255, 255, 0.055);
  pointer-events: none;
}
.crumb {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}
.crumb a { color: rgba(255, 255, 255, 0.82); border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
.crumb a:hover { color: var(--gold); }

/* ── 9. CARDS ──────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 1.9rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(75, 44, 94, 0.2); }
.card p { color: var(--ink-soft); font-size: 0.98rem; flex: 1; }
.card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--purple-wash);
  color: var(--gold-mid);
  display: grid;
  place-items: center;
}
.card__icon .lotus { width: 28px; height: 28px; }
.card .btn--link { align-self: flex-start; margin-top: 0.3rem; }

/* media card (news, events, offers) */
.mcard {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.mcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mcard__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--purple-wash);
}
.mcard__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.mcard:hover .mcard__media img { transform: scale(1.04); }
.mcard__body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.mcard__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.76rem;
  color: var(--ink-faint);
}
.mcard h3 { font-size: 1.15rem; }
.mcard h3 a:hover { color: var(--gold-deep); }
.mcard p { font-size: 0.94rem; color: var(--ink-soft); flex: 1; }

.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--purple-wash);
  color: var(--purple);
}
.tag--gold { background: var(--gold-wash); color: var(--gold-deep); }

/* ── 10. STATS ─────────────────────────────────────────── */
.stats { display: grid; gap: 1.5rem; }
@media (min-width: 620px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.section--cream .stat, .section--cream-deep .stat { border-top-color: var(--cream-line); }
.stat .lotus { width: 24px; height: 24px; color: var(--gold); flex: none; margin-top: 5px; }
.section--cream .stat .lotus, .section--cream-deep .stat .lotus { color: var(--gold-mid); }
.stat b {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'SOFT' 40;
  font-size: 1.32rem;
  font-weight: 600;
  display: block;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 3px;
}
.section--cream .stat b, .section--cream-deep .stat b { color: var(--purple); }
.stat span { font-size: 0.92rem; line-height: 1.5; }

/* ── 11. QUOTES ────────────────────────────────────────── */
.quote {
  background: var(--purple);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(1.9rem, 4.5vw, 3rem);
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: '\201C';
  position: absolute;
  top: -22px; left: 18px;
  font-family: 'Fraunces', serif;
  font-size: 9rem;
  color: var(--gold);
  opacity: 0.28;
  line-height: 1;
}
.quote blockquote {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'SOFT' 40, 'WONK' 1;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 400;
  line-height: 1.4;
  position: relative;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.quote cite {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
  display: block;
}
.quote cite span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 2px;
}
.quote--cream {
  background: var(--white);
  border: 1px solid var(--cream-line);
}
.quote--cream blockquote { color: var(--purple); }
.quote--cream::before { color: var(--gold); opacity: 0.55; }
.quote--cream cite { color: var(--gold-deep); }
.quote--cream cite span { color: var(--ink-soft); }

/* ── 12. FORMS ─────────────────────────────────────────── */
.formcard {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-line);
}
.formcard--flat { box-shadow: none; background: var(--cream); }
.form { display: grid; gap: 1.05rem; }
.form__row { display: grid; gap: 1.05rem; }
@media (min-width: 560px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 0.4rem; }
.field > label, .fieldset__legend {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.01em;
}
.field .hint { font-size: 0.78rem; color: var(--ink-faint); }
.fieldset__legend .hint {
  font-weight: 400;
  color: var(--ink-faint);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.78rem;
}
.req { color: var(--err); }
.input, .select, .textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--cream-line);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.2s var(--ease-soft), background-color 0.2s var(--ease-soft);
}
.input:hover, .select:hover, .textarea:hover { border-color: var(--purple-soft); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--purple);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(75, 44, 94, 0.12);
}
/* The browser default placeholder grey only reaches 4.4:1 on the cream field. */
.input::placeholder, .textarea::placeholder { color: var(--ink-faint); opacity: 1; }
.textarea { min-height: 120px; resize: vertical; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%234B2C5E' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 42px;
}
.input[aria-invalid="true"], .select[aria-invalid="true"], .textarea[aria-invalid="true"] {
  border-color: var(--err);
  background: #FDF5F5;
}
.error {
  font-size: 0.79rem;
  color: var(--err);
  font-weight: 600;
  min-height: 0;
}
.error:empty { display: none; }

.check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-soft);
  cursor: pointer;
}
.check input {
  appearance: none;
  flex: none;
  width: 21px; height: 21px;
  margin-top: 2px;
  border: 1.5px solid var(--purple-soft);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s;
}
.check input:checked {
  background: var(--purple) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1.5' stroke='white' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
  border-color: var(--purple);
}
.check input:focus-visible { outline-offset: 2px; }
.fieldset { border: 0; display: grid; gap: 0.6rem; }
.fieldset__legend { padding: 0; margin-bottom: 0.15rem; }
.radios { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.radio {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 9px 16px;
  border: 1.5px solid var(--cream-line);
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  cursor: pointer;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s, background-color 0.2s;
}
.radio:hover { border-color: var(--purple-soft); }
.radio input { accent-color: var(--purple); width: 16px; height: 16px; cursor: pointer; }
.radio:has(input:checked) { border-color: var(--purple); background: var(--purple-wash); }

.form__note {
  font-size: 0.78rem;
  color: var(--ink-faint);
  line-height: 1.55;
}
.form__note a { color: var(--purple); border-bottom: 1px solid var(--purple-line); }

/* conditional block */
[data-when] { display: none; }
[data-when].is-shown { display: grid; gap: 1.05rem; }

/* success panel */
.formdone {
  display: none;
  background: var(--gold-wash);
  border: 1.5px solid var(--gold);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3.5vw, 2rem);
  text-align: center;
}
.formdone.is-shown { display: block; }
.formdone .lotus { width: 44px; height: 44px; color: var(--gold-mid); margin: 0 auto 0.9rem; }
.formdone h3 { margin-bottom: 0.5rem; }
.formdone p { color: var(--ink-soft); margin-inline: auto; margin-bottom: 1.3rem; }

/* honeypot */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ── 13. DISCOVERY CALL BLOCKS ─────────────────────────── */
.calls { display: grid; gap: clamp(1.25rem, 3vw, 1.75rem); }
@media (min-width: 780px) { .calls { grid-template-columns: 1fr 1fr; } }
.call {
  background: var(--white);
  border: 2px solid var(--cream-line);
  border-radius: var(--r-xl);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.call:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.call p { flex: 1; color: var(--ink-soft); }
.call__mins {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'SOFT' 40;
  color: var(--purple);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
}
.call__mins small {
  font-family: 'Karla', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.call--feature { border-color: var(--purple); background: var(--purple); }
.call--feature h3, .call--feature .call__mins { color: var(--white); }
.call--feature p { color: rgba(255, 255, 255, 0.82); }
.call--feature .call__mins small { color: var(--gold); }
.call--feature:hover { border-color: var(--gold); }
.call__flag {
  position: absolute;
  top: 18px; right: -34px;
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--purple-deep);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 40px;
}

/* big standalone booking strip */
.bookstrip {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(1.8rem, 5vw, 3.2rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bookstrip h2 { color: var(--white); margin-bottom: 0.8rem; }
.bookstrip p { color: rgba(255, 255, 255, 0.82); margin-inline: auto; margin-bottom: 1.8rem; }
.bookstrip__lotus {
  position: absolute;
  left: -60px; bottom: -90px;
  width: 300px; height: 300px;
  opacity: 0.16;
  pointer-events: none;
}
/* Subtle black-to-gold gradient, understated so it never competes with the
   gold "Book a 15-minute call" button that is the section's focal point. */
.bookstrip__lotus path { fill: url(#grad-lotus-bg); }
.bookstrip .btns { position: relative; z-index: 1; }

/* growth partnership / impact campaign promo sections - the "ready to..."
   card heading is a secondary CTA, sized up to hold its own next to the eyebrow */
#growth-partnership .call h3,
#impact-campaigns .call h3 {
  font-size: clamp(1.4rem, 3vw, 1.78rem);
}

/* sticky mobile action bar */
.actionbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-bar);
  display: flex;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(253, 250, 243, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--cream-line);
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
}
.actionbar.is-shown { transform: none; }
.actionbar .btn { flex: 1; padding: 13px 12px; font-size: 0.85rem; }
@media (min-width: 780px) { .actionbar { display: none; } }
@media (max-width: 779px) { body { padding-bottom: 0; } body.has-bar { padding-bottom: 74px; } }

/* ── 14. FILTERS ───────────────────────────────────────── */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.chip {
  padding: 9px 17px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--cream-line);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all 0.2s var(--ease-soft);
}
.chip:hover { border-color: var(--purple-soft); color: var(--purple); }
.chip[aria-pressed="true"] {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}
.filterbar {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 720px) { .filterbar { grid-template-columns: repeat(3, 1fr); } }
.filter-count {
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-bottom: 1.5rem;
}
.empty {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ink-soft);
  background: var(--cream-deep);
  border-radius: var(--r-lg);
}
.empty.is-shown { display: block; }
[hidden] { display: none !important; }

/* ── 15. EVENTS ────────────────────────────────────────── */
.event {
  display: grid;
  gap: 1.2rem;
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.event:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
@media (min-width: 720px) { .event { grid-template-columns: 200px 1fr; gap: 0; } }
.event__media { background: var(--purple-wash); aspect-ratio: 16/10; }
@media (min-width: 720px) { .event__media { aspect-ratio: 1/1; } }
.event__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.event__body { padding: 0 1.4rem 1.5rem; display: grid; gap: 0.6rem; align-content: start; }
@media (min-width: 720px) { .event__body { padding: 1.5rem; } }
.event__when {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  font-size: 0.85rem;
  color: var(--purple);
  font-weight: 600;
}
.event__when .lotus { width: 15px; height: 15px; color: var(--gold-mid); }
.event__when span { display: inline-flex; align-items: center; gap: 0.4rem; }
.event__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-top: 0.4rem;
}
.event__price {
  font-weight: 700;
  color: var(--gold-deep);
  font-size: 0.9rem;
}

/* ── 16. OFFERS / COMPETITIONS ─────────────────────────── */
.offer {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.offer:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.offer__deal {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'SOFT' 40, 'WONK' 1;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--purple);
  line-height: 1.15;
}
.offer p { font-size: 0.93rem; color: var(--ink-soft); flex: 1; }
.offer__meta { font-size: 0.78rem; color: var(--ink-faint); }
.voucher {
  border: 2px dashed var(--gold);
  border-radius: var(--r-sm);
  background: var(--gold-wash);
  padding: 11px 14px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--gold-deep);
  font-size: 0.92rem;
  text-transform: uppercase;
}

/* ── 17. MAGAZINE COVERS ───────────────────────────────── */
.covers {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2.5vw, 1.5rem);
  justify-content: center;
}
.cover {
  width: clamp(130px, 21vw, 190px);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.cover:nth-child(odd)  { transform: rotate(-2.2deg); }
.cover:nth-child(even) { transform: rotate(1.8deg); }
.cover:hover { transform: rotate(0deg) translateY(-8px) scale(1.03); box-shadow: var(--shadow-lg); }

/* community tile */
.commtile {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--purple);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.commtile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.commtile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: transform 0.7s var(--ease);
}
.commtile:hover img { transform: scale(1.06); }
.commtile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(52, 30, 68, 0.95) 12%, rgba(52, 30, 68, 0.35) 60%, rgba(52, 30, 68, 0.15) 100%);
}
.commtile__body { position: relative; z-index: 1; padding: 1.5rem; display: grid; gap: 0.4rem; }
.commtile h3 { color: var(--white); }
.commtile p { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; }
.commtile__go {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

/* ── 18. TABLES & LISTS ────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--r-md); border: 1px solid var(--cream-line); }
table { background: var(--white); min-width: 480px; }
th, td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--cream-line); font-size: 0.93rem; }
th {
  background: var(--purple-wash);
  color: var(--purple);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
tr:last-child td { border-bottom: 0; }

.ticks { display: grid; gap: 0.7rem; }
.ticks li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.98rem; }
.ticks .lotus { width: 17px; height: 17px; color: var(--gold-mid); flex: none; margin-top: 6px; }
.section--purple .ticks .lotus { color: var(--gold); }
.ticks--2 { display: grid; gap: 0.7rem; }
@media (min-width: 620px) { .ticks--2 { grid-template-columns: 1fr 1fr; gap: 0.7rem 2rem; } }

.faq { border-top: 1px solid var(--cream-line); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: 1.15rem 0;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'SOFT' 40;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--purple);
}
.faq__q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold-mid);
  line-height: 1;
  flex: none;
  transition: transform 0.3s var(--ease);
}
.faq__q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq__a { padding-bottom: 1.3rem; color: var(--ink-soft); font-size: 0.97rem; }
.faq__a[hidden] { display: none; }

/* ── 19. AUDIO ─────────────────────────────────────────── */
.breathgrid { align-items: stretch; }
.breathcard {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.6rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.breathcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.breathcard h3 { font-size: 1.3rem; color: var(--purple); }
.breathcard p { font-size: 0.92rem; color: var(--ink-soft); flex: 1; }
.breathcard__media {
  margin: 0.3rem -1.6rem 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--purple-wash);
}
.breathcard__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.player { display: flex; align-items: center; gap: 0.5rem; }
.player__play {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s var(--ease);
}
.player__play:hover { background: var(--purple-mid); }
.player__time {
  font-size: 0.74rem;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  flex: none;
  white-space: nowrap;
}
.player__range {
  flex: 1;
  min-width: 0;
  accent-color: var(--gold-mid);
  height: 4px;
  cursor: pointer;
}
.player__ghost {
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  border: none;
  background: none;
  color: var(--ink-faint);
  cursor: pointer;
  flex: none;
  padding: 0;
  border-radius: 50%;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.player__ghost:hover { background: var(--purple-wash); color: var(--purple); }
.player__ghost.is-active { color: var(--gold-deep); }
.player__icon { width: 15px; height: 15px; fill: currentColor; }
.player__ghost .player__icon { width: 16px; height: 16px; }

/* ── 20. FOOTER ────────────────────────────────────────── */
.site-footer {
  background: var(--purple-deep);
  color: rgba(255, 255, 255, 0.72);
  padding-block: clamp(3rem, 7vw, 4.5rem) 2rem;
  position: relative;
  overflow: hidden;
  font-size: 0.92rem;
}
.site-footer__lotus {
  position: absolute;
  right: -90px; top: -70px;
  width: 380px; height: 380px;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.site-footer .wrap { position: relative; z-index: 1; }
.footgrid { display: grid; gap: 2.25rem; }
@media (min-width: 640px) { .footgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footgrid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; } }
.footgrid h3 {
  color: var(--gold);
  font-family: 'Karla', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footgrid ul { display: grid; gap: 0.6rem; }
.footgrid a:hover { color: var(--gold); }
.footbrand { display: grid; gap: 1rem; }
.footbrand .brand { color: var(--white); margin-right: 0; }
.footbrand .brand__name { color: var(--white); }
.footbrand .brand img { filter: brightness(0) invert(1); opacity: 0.95; }
.footbrand p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.68); }
.socials { display: flex; gap: 0.6rem; }
.socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.2s var(--ease-soft);
}
.socials a:hover { background: var(--gold); color: var(--purple-deep); border-color: var(--gold); }
.socials svg { width: 19px; height: 19px; fill: currentColor; }
.footmail {
  color: var(--gold);
  font-weight: 600;
  word-break: break-word;
}
.footbase {
  margin-top: 2.75rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.6rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}
.footbase ul { display: flex; flex-wrap: wrap; gap: 0.75rem 1.4rem; }

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--gold);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s var(--ease);
  z-index: var(--z-bar);
}
.to-top.is-shown { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--purple-mid); }
.to-top .lotus { width: 26px; height: 26px; }
@media (max-width: 779px) { body.has-bar .to-top { bottom: 88px; } }

/* ── 21. COOKIE CONSENT ────────────────────────────────── */
.cookie {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: var(--z-cookie);
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.3rem 1.4rem;
  display: none;
  gap: 1.1rem;
  max-width: 640px;
  margin-inline: auto;
}
.cookie.is-shown { display: grid; }
.cookie h3 { margin-bottom: 0.35rem; font-size: 1.05rem; }
.cookie p { font-size: 0.86rem; color: var(--ink-soft); }
.cookie p a { color: var(--purple); border-bottom: 1px solid var(--purple-line); }
.cookie .btns { gap: 0.6rem; }
.cookie .btn { flex: 1; min-width: 130px; }

/* ── 22. REVEAL ANIMATION ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* If JavaScript is unavailable the reveal never runs — show everything
   rather than serve a page of invisible content. */
@media (scripting: none) {
  .reveal { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .card:hover, .mcard:hover, .call:hover,
  .offer:hover, .event:hover, .commtile:hover, .cover:hover { transform: none; }
}

/* ── 22b. PROSE (legal pages) ──────────────────────────── */
.prose { max-width: 72ch; }
.prose h2 {
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  margin-top: 2.75rem;
  margin-bottom: 0.85rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.9rem; margin-bottom: 0.6rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose p + p { margin-top: 0.9rem; }
.prose ul {
  list-style: none;
  margin: 1rem 0;
  display: grid;
  gap: 0.55rem;
}
.prose ul li { position: relative; padding-left: 1.5rem; }
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.prose a { color: var(--purple); border-bottom: 1px solid var(--purple-line); font-weight: 600; }
.prose a:hover { color: var(--gold-deep); border-color: var(--gold); }
.prose .updated {
  font-size: 0.85rem;
  color: var(--ink-faint);
  padding: 0.9rem 1.1rem;
  background: var(--gold-wash);
  border: 1px solid var(--cream-line);
  border-radius: var(--r-sm);
  margin-bottom: 2rem;
}

/* ── 23. PRINT ─────────────────────────────────────────── */
@media print {
  .site-header, .drawer, .actionbar, .to-top, .cookie, .site-footer .socials { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1rem; }
}
