/* ==========================================================================
   Soulful Connections — shared stylesheet
   Mesa, AZ · Kevin & Destinee Suman
   Mobile-first. Warm cream canvas, soft plum→violet gradients, calm wellness
   studio feel. No occult kitsch — softness, air, and credibility.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */

:root {
  /* Brand palette — sampled from the lotus/mandala logo */
  --plum-deep:    #5E2D6E;
  --berry:        #8E4173;
  --violet:       #6F6FA0;
  --lavender:     #9A85B5;
  --cream:        #FAF7F3;
  --ink:          #3A2E45;

  /* Derived tints & shades */
  --plum-darker:  #46204F;
  --plum-soft:    #7A4A8A;
  --berry-soft:   #A65D8B;
  --lavender-pale:#EDE7F2;
  --lavender-mist:#F4F0F7;
  --cream-deep:   #F4EEE7;
  --cream-warm:   #FDFBF9;
  --ink-soft:     #5C5068;
  /* #7A7085 measured only 4.39:1 on cream — under the 4.5:1 AA floor. This
     clears 4.5:1 on cream, cream-warm, cream-deep and lavender-mist alike. */
  --ink-muted:    #6E6474;
  --hairline:     rgba(94, 45, 110, 0.12);
  --hairline-soft:rgba(94, 45, 110, 0.07);

  /* Gradients */
  --grad-brand:   linear-gradient(135deg, var(--plum-deep) 0%, var(--berry) 48%, var(--violet) 100%);
  --grad-soft:    linear-gradient(135deg, #6B3579 0%, #8E4173 55%, #6F6FA0 100%);
  --grad-wash:    linear-gradient(160deg, var(--lavender-mist) 0%, var(--cream) 60%);
  --grad-rule:    linear-gradient(90deg, transparent, var(--lavender) 30%, var(--berry) 70%, transparent);

  /* Typography */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body:    "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --fs-display: clamp(2.15rem, 1.35rem + 4vw, 4.75rem);
  --fs-h1:      clamp(2.15rem, 1.62rem + 2.65vw, 3.6rem);
  --fs-h2:      clamp(1.85rem, 1.47rem + 1.9vw, 2.85rem);
  --fs-h3:      clamp(1.28rem, 1.17rem + 0.55vw, 1.6rem);
  --fs-h4:      clamp(1.1rem, 1.04rem + 0.3vw, 1.25rem);
  --fs-lead:    clamp(1.1rem, 1.03rem + 0.36vw, 1.35rem);
  --fs-body:    clamp(1.02rem, 0.99rem + 0.16vw, 1.12rem);
  --fs-small:   0.94rem;
  --fs-micro:   0.8rem;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 2.75rem;
  --sp-8: 3.5rem;
  --sp-9: 5rem;
  --sp-10: 7rem;

  --section-y: clamp(3.75rem, 2.6rem + 5.5vw, 7rem);
  --gutter:    clamp(1.25rem, 0.85rem + 2vw, 2.5rem);
  --measure:   68ch;
  --wrap:      1180px;
  --wrap-narrow: 800px;

  /* Shape & depth */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(58, 46, 69, 0.05);
  --shadow-sm: 0 2px 10px rgba(58, 46, 69, 0.06);
  --shadow-md: 0 10px 30px -12px rgba(70, 32, 79, 0.18), 0 2px 8px rgba(58, 46, 69, 0.04);
  --shadow-lg: 0 22px 55px -20px rgba(70, 32, 79, 0.28), 0 4px 14px rgba(58, 46, 69, 0.06);
  --shadow-plum: 0 14px 34px -14px rgba(94, 45, 110, 0.45);

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

  --nav-h: 74px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: 0.006em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.014em;
  color: var(--plum-darker);
  margin: 0 0 var(--sp-4);
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.25; letter-spacing: -0.008em; }
h4 { font-size: var(--fs-h4); line-height: 1.35; letter-spacing: 0; }

p { margin: 0 0 var(--sp-4); max-width: var(--measure); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--berry); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--plum-deep); }

img, svg, picture { max-width: 100%; display: block; height: auto; }
ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.15rem; }
li { margin-bottom: var(--sp-2); }
strong { font-weight: 700; color: var(--plum-darker); }
hr { border: 0; height: 1px; background: var(--hairline); margin: var(--sp-7) 0; }

:focus-visible {
  outline: 3px solid var(--berry);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* The berry ring sits at 1.0:1 where the plum gradient passes through berry
   itself, so keyboard focus vanished on the CTA band and the footer. Both dark
   surfaces get a white ring instead (~13:1 on the footer, ~5.9:1 on the band). */
.band-plum :focus-visible,
.site-footer :focus-visible { outline-color: #fff; }

::selection { background: var(--lavender-pale); color: var(--plum-darker); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--plum-deep);
  color: #fff;
  padding: var(--sp-3) var(--sp-5);
  border-radius: 0 0 var(--r-md) 0;
  font-weight: 700;
}
.skip-link:focus {
  left: 0;
  color: #fff;
}

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

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */

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

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

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: calc(var(--section-y) * 0.62); }
.section--tint { background: var(--cream-deep); }
.section--mist { background: var(--lavender-mist); }
.section--wash { background: var(--grad-wash); }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(2.25rem, 1.6rem + 2.4vw, 3.5rem);
  text-align: center;
}
.section-head p { margin-inline: auto; }
.section-head--left { margin-inline: 0; text-align: left; }
.section-head--left p { margin-inline: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: var(--sp-4);
}
.eyebrow--onplum { color: var(--lavender-pale); }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.62;
  color: var(--ink-soft);
  font-weight: 300;
}

.text-center { text-align: center; }

/* Petal rule — an abstract nod to the lotus, not a literal one */
.petal-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  margin: var(--sp-5) auto;
  max-width: 260px;
}
.petal-rule::before,
.petal-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--grad-rule);
}
.petal-rule span {
  width: 9px; height: 9px;
  border-radius: 50% 0 50% 0;
  background: var(--grad-brand);
  transform: rotate(45deg);
  flex: none;
}
.petal-rule--onplum::before,
.petal-rule--onplum::after {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
}
.petal-rule--onplum span { background: rgba(255,255,255,0.82); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */

.btn {
  --btn-bg: var(--grad-brand);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.95em 1.9em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  border: 0;
  border-radius: var(--r-pill);
  cursor: pointer;
  box-shadow: var(--shadow-plum);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background-color 0.28s var(--ease), color 0.28s var(--ease);
}
.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: 0 20px 42px -16px rgba(94, 45, 110, 0.58);
}
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--plum-deep);
  border: 1.5px solid rgba(94, 45, 110, 0.32);
  box-shadow: none;
}
.btn--ghost:hover {
  --btn-fg: var(--plum-darker);
  background: rgba(94, 45, 110, 0.055);
  border-color: rgba(94, 45, 110, 0.5);
  box-shadow: var(--shadow-sm);
}

.btn--light {
  --btn-bg: #fff;
  --btn-fg: var(--plum-deep);
  box-shadow: 0 14px 32px -14px rgba(20, 8, 26, 0.5);
}
.btn--light:hover { --btn-fg: var(--plum-darker); }

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
}

.btn--sm { padding: 0.7em 1.35em; font-size: var(--fs-micro); }
.btn--wide { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.btn-row--center { justify-content: center; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 700;
  font-size: var(--fs-small);
  letter-spacing: 0.03em;
  color: var(--berry);
}
.link-arrow::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}
.link-arrow:hover::after { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. Site header / navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 243, 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(250, 247, 243, 0.94);
  border-bottom-color: var(--hairline-soft);
  box-shadow: 0 4px 20px -12px rgba(58, 46, 69, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: var(--nav-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
  color: var(--plum-darker);
}
.brand:hover { color: var(--plum-darker); }
.brand img { width: 42px; height: 42px; object-fit: contain; flex: none; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 0.82rem + 0.7vw, 1.12rem);
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--plum-darker);
  white-space: nowrap;
}
.brand-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 3px;
}

/* Below ~360px the wordmark would crowd the menu button — drop to the mark. */
@media (max-width: 359px) {
  .brand-text { display: none; }
}

.nav-links {
  display: none;
  align-items: center;
  gap: clamp(1rem, 0.3rem + 1.5vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li { margin: 0; }
.nav-links a {
  position: relative;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--ink-soft);
  padding-block: 0.4rem;
  letter-spacing: 0.012em;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--plum-deep); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--plum-deep); }

.nav-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 0 11px;
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  cursor: pointer;
  flex: none;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--plum-deep);
  transition: transform 0.32s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: var(--nav-h) 0 0;
  z-index: 99;
  background: var(--cream);
  padding: var(--sp-6) var(--gutter) var(--sp-9);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.nav-drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-drawer ul {
  list-style: none;
  margin: 0 0 var(--sp-6);
  padding: 0;
  border-top: 1px solid var(--hairline-soft);
}
.nav-drawer li { margin: 0; }
/* :not(.btn) throughout — a bare `.nav-drawer a` out-specifies `.btn` and would
   repaint the drawer's Book a Reading button as dark serif text. */
.nav-drawer a:not(.btn) {
  display: block;
  padding: var(--sp-4) 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--plum-darker);
  border-bottom: 1px solid var(--hairline-soft);
}
.nav-drawer a:not(.btn)[aria-current="page"] { color: var(--berry); }
.nav-drawer .btn { width: 100%; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-drawer { display: none; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--grad-wash);
  padding-block: clamp(3.5rem, 2rem + 7vw, 7.5rem) clamp(3.5rem, 2rem + 6vw, 6.5rem);
  text-align: center;
  isolation: isolate;
}

/* Soft lotus aura — abstract radial bloom, echoes the logo without literalism */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}
.hero::before {
  width: min(760px, 118vw);
  aspect-ratio: 1;
  top: -34%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(154, 133, 181, 0.3) 0%, rgba(154, 133, 181, 0.12) 42%, transparent 68%);
  filter: blur(6px);
}
/* Kept fully inside the hero's clip and faded out early — hanging it off the
   bottom edge left a hard seam where overflow:hidden cut the bloom mid-alpha. */
.hero::after {
  width: min(520px, 90vw);
  aspect-ratio: 1;
  bottom: 4%;
  right: -14%;
  background: radial-gradient(circle, rgba(142, 65, 115, 0.15) 0%, transparent 52%);
  filter: blur(10px);
}

.hero-inner { position: relative; z-index: 1; }

.hero h1 {
  font-size: var(--fs-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.021em;
  max-width: 16ch;
  margin-inline: auto;
  margin-bottom: var(--sp-5);
}
.hero h1 .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.hero-sub {
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: 1.56;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 auto var(--sp-5);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 0.94rem + 0.4vw, 1.28rem);
  font-style: italic;
  font-weight: 400;
  color: var(--plum-deep);
  letter-spacing: 0.005em;
  max-width: 30ch;
  margin: 0 auto;
}

.hero .btn-row { justify-content: center; margin-top: var(--sp-7); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--sp-3) var(--sp-5);
  margin-top: var(--sp-7);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--hairline-soft);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.hero-trust span {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5em;
}
/* flex-start + nudge so the petal pins to the first line if the label wraps,
   rather than floating to the vertical centre of a two-line item. */
.hero-trust span::before {
  content: "";
  width: 6px; height: 6px;
  margin-top: 0.42em;
  border-radius: 50% 0 50% 0;
  background: var(--lavender);
  transform: rotate(45deg);
  flex: none;
}

/* --------------------------------------------------------------------------
   7. Welcome / intro
   -------------------------------------------------------------------------- */

.welcome { text-align: center; }
.welcome .brand-line {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.05rem + 0.75vw, 1.65rem);
  font-style: italic;
  font-weight: 400;
  color: var(--berry);
  margin: 0 auto var(--sp-6);
  max-width: 24ch;
  line-height: 1.4;
}
.welcome p { margin-inline: auto; }

/* --------------------------------------------------------------------------
   8. Reasons — "Why People Come to Us"
   -------------------------------------------------------------------------- */

.reasons {
  list-style: none;
  margin: 0 0 var(--sp-7);
  padding: 0;
  display: grid;
  gap: var(--sp-3);
}

.reasons li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin: 0;
  padding: var(--sp-5);
  background: var(--cream-warm);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-lg);
  font-size: clamp(1.02rem, 0.98rem + 0.22vw, 1.15rem);
  line-height: 1.5;
  color: var(--ink);
  transition: opacity 0.65s var(--ease-soft), transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.reasons li:hover {
  transform: translateY(-2px);
  border-color: rgba(94, 45, 110, 0.18);
  box-shadow: var(--shadow-md);
}

.reasons .petal {
  flex: none;
  width: 30px; height: 30px;
  margin-top: 2px;
  border-radius: 50% 0 50% 0;
  background: var(--grad-brand);
  opacity: 0.9;
  transform: rotate(45deg);
  position: relative;
}
.reasons .petal::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50% 0 50% 0;
  background: rgba(255, 255, 255, 0.6);
}

.reasons-close {
  max-width: 62ch;
  margin-inline: auto;
  text-align: center;
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (min-width: 760px) {
  .reasons { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
  .reasons li:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

/* --------------------------------------------------------------------------
   9. Offer cards — "What We Offer"
   -------------------------------------------------------------------------- */

.offer-grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
}

.offer-card {
  display: flex;
  flex-direction: column;
  padding: var(--sp-6);
  background: var(--cream-warm);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: opacity 0.65s var(--ease-soft), transform 0.34s var(--ease), box-shadow 0.34s var(--ease), border-color 0.34s var(--ease);
}
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(94, 45, 110, 0.16);
}
.offer-card:hover::before { transform: scaleX(1); }

.offer-icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--lavender-pale);
  color: var(--plum-deep);
  margin-bottom: var(--sp-5);
  flex: none;
  transition: background 0.34s var(--ease), color 0.34s var(--ease);
}
.offer-icon svg { width: 26px; height: 26px; stroke-width: 1.5; }
.offer-card:hover .offer-icon { background: var(--grad-brand); color: #fff; }

.offer-card h3 { margin-bottom: var(--sp-3); }
.offer-card p {
  color: var(--ink-soft);
  font-size: var(--fs-small);
  line-height: 1.68;
  flex: 1;
  margin-bottom: var(--sp-5);
}
.offer-card .link-arrow { align-self: flex-start; }

@media (min-width: 680px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
}
/* Six tracks so the five cards sit 3-up, with the orphan pair on row two
   centred (cards 4 and 5 start at tracks 2 and 4) instead of left-hugging. */
@media (min-width: 1020px) {
  .offer-grid { grid-template-columns: repeat(6, 1fr); }
  .offer-grid > * { grid-column: span 2; }
  .offer-grid > :nth-child(4) { grid-column: 2 / span 2; }
  .offer-grid > :nth-child(5) { grid-column: 4 / span 2; }
}

/* --------------------------------------------------------------------------
   10. Practitioners
   -------------------------------------------------------------------------- */

.practitioners {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}

.practitioner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  padding: var(--sp-6);
  background: var(--cream-warm);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  transition: opacity 0.65s var(--ease-soft), transform 0.34s var(--ease), box-shadow 0.34s var(--ease);
}
.practitioner:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.practitioner-portrait {
  width: 104px; height: 104px;
  flex: none;
  border-radius: 50%;
  background: var(--grad-soft);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 26px -12px rgba(94, 45, 110, 0.55);
  position: relative;
}
.practitioner-portrait::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(154, 133, 181, 0.4);
}

.practitioner-role {
  display: block;
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: var(--sp-2);
}
.practitioner h3 { margin-bottom: var(--sp-3); }
.practitioner p {
  color: var(--ink-soft);
  font-size: var(--fs-small);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

@media (min-width: 620px) {
  .practitioner { flex-direction: row; align-items: flex-start; }
}
@media (min-width: 960px) {
  .practitioners { grid-template-columns: repeat(2, 1fr); }
  .practitioner { flex-direction: column; }
}

/* --------------------------------------------------------------------------
   11. Philosophy band (plum)
   -------------------------------------------------------------------------- */

.band-plum {
  position: relative;
  background: var(--grad-brand);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.band-plum::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 90% at 18% 8%, rgba(255,255,255,0.16), transparent 60%),
    radial-gradient(ellipse 60% 80% at 84% 92%, rgba(154,133,181,0.3), transparent 62%);
}
.band-plum h2, .band-plum h3 { color: #fff; }
/* :where() keeps this at zero specificity so component classes inside the band
   (.cta-lead, .cta-note) set their own colour instead of being overridden. */
.band-plum :where(p) { color: rgba(255, 255, 255, 0.86); }
/* :not(.btn) — buttons set their own colour via --btn-fg, and a bare
   `.band-plum a` would out-specify `.btn` and paint white-on-white. */
.band-plum a:not(.btn) { color: #fff; }

.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 1.25rem + 2.9vw, 3.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.014em;
  color: #fff;
  max-width: 20ch;
  margin: 0 auto var(--sp-5);
  text-wrap: balance;
}

.philosophy-body {
  max-width: 58ch;
  margin: 0 auto var(--sp-7);
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: 1.62;
}

.philosophy-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: var(--sp-3);
  max-width: 760px;
}
.philosophy-list li {
  margin: 0;
  padding: var(--sp-4) var(--sp-5);
  /* A subtractive (plum) tint rather than a white one — a 10% white pill lifted
     the violet end of the gradient enough to push white text under 4.5:1. */
  background: rgba(70, 32, 79, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-pill);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

@media (min-width: 700px) {
  .philosophy-list { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------------
   12. Testimonial
   -------------------------------------------------------------------------- */

.testimonial {
  position: relative;
  max-width: 800px;
  margin-inline: auto;
  padding: clamp(2rem, 1.3rem + 3.2vw, 3.5rem);
  background: var(--cream-warm);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -0.18em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 3rem + 9vw, 8rem);
  line-height: 1;
  color: var(--lavender);
  opacity: 0.34;
  pointer-events: none;
}

.testimonial blockquote {
  margin: 0 0 var(--sp-6);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.02rem + 0.9vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--plum-darker);
  position: relative;
  z-index: 1;
}
.testimonial blockquote p { max-width: none; margin-bottom: var(--sp-4); }

.testimonial figcaption {
  font-size: var(--fs-small);
  color: var(--ink-muted);
}
.testimonial .cite-name {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: var(--fs-body);
  letter-spacing: 0.02em;
  color: var(--plum-deep);
  font-style: normal;
  margin-bottom: 2px;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--sp-5);
  color: var(--berry);
}
.stars svg { width: 19px; height: 19px; }

.review-invite {
  text-align: center;
  max-width: none;
  margin-top: var(--sp-7);
  font-size: var(--fs-small);
  color: var(--ink-muted);
}
.review-invite a { font-weight: 700; }

/* --------------------------------------------------------------------------
   13. Events teaser
   -------------------------------------------------------------------------- */

.event-list {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
  margin-bottom: var(--sp-7);
}

.event-card {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  padding: var(--sp-5);
  background: var(--cream-warm);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: opacity 0.65s var(--ease-soft), transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(94, 45, 110, 0.16);
}

.event-date {
  flex: none;
  width: 74px;
  padding: var(--sp-3) var(--sp-2);
  border-radius: var(--r-md);
  background: var(--grad-brand);
  color: #fff;
  text-align: center;
  line-height: 1.1;
  box-shadow: var(--shadow-plum);
}
.event-date .m {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
}
.event-date .d {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  margin-top: 3px;
}

/* Undated card (e.g. "host a private event") — icon instead of a day number */
.event-date--open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding-block: var(--sp-4);
}
.event-date--open svg { width: 24px; height: 24px; }
.event-date--open .m { font-size: 0.6rem; letter-spacing: 0.1em; }

.event-body h3 { margin-bottom: var(--sp-2); font-size: var(--fs-h4); }
.event-meta {
  font-size: var(--fs-small);
  color: var(--ink-muted);
  margin-bottom: var(--sp-3);
}
.event-body p {
  font-size: var(--fs-small);
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: var(--sp-3);
}

@media (min-width: 860px) {
  .event-list { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------------
   14. Closing CTA
   -------------------------------------------------------------------------- */

.cta-band { text-align: center; }
.cta-lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.9vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.34;
  color: #fff;
  max-width: 22ch;
  margin: 0 auto var(--sp-5);
  text-wrap: balance;
}
.cta-band .btn-row { justify-content: center; }
.cta-note {
  margin: var(--sp-6) auto 0;
  max-width: 52ch;
  font-size: var(--fs-small);
  /* Full white: at 0.78 alpha this dropped to 4.41:1 over the band's light end. */
  color: #fff;
}
.cta-note a { text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--plum-darker);
  color: rgba(255, 255, 255, 0.72);
  padding-block: var(--sp-9) var(--sp-6);
  font-size: var(--fs-small);
}
.site-footer a:not(.btn) { color: rgba(255, 255, 255, 0.82); }
.site-footer a:not(.btn):hover { color: #fff; }

.footer-grid {
  display: grid;
  gap: var(--sp-7);
  grid-template-columns: 1fr;
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

/* The mark's wordmark is dark plum, so it needs a light chip to read on the
   dark plum footer. A chip keeps the gradient lotus in brand colour, where a
   brightness/invert filter would flatten it to white. */
.footer-brand img {
  width: 64px; height: 64px;
  padding: 7px;
  margin-bottom: var(--sp-4);
  background: var(--cream);
  border-radius: var(--r-md);
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.45);
}
.footer-brand .footer-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: var(--sp-2);
}
.footer-brand p {
  font-size: var(--fs-small);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.66);
  max-width: 34ch;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--lavender-pale) !important;
  margin-top: var(--sp-3) !important;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--sp-4);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: var(--sp-3); }
.footer-col address { font-style: normal; line-height: 1.8; }

.social-row {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.social-row a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.social-row a:hover { background: rgba(255, 255, 255, 0.22); transform: translateY(-2px); }
.social-row svg { width: 19px; height: 19px; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding-top: var(--sp-6);
  font-size: var(--fs-micro);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}
.footer-bottom p { max-width: none; margin: 0; }
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
}

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: var(--sp-6); }
}
@media (min-width: 1000px) {
  .footer-grid { grid-template-columns: 1.7fr 1fr 1fr 1.2fr; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* --------------------------------------------------------------------------
   16. Scroll reveal
   -------------------------------------------------------------------------- */

/* Gated on .js (set by an inline script in <head>) so that if site.js fails to
   load, or JS is off, the page renders fully visible instead of blank. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease-soft), transform 0.75s var(--ease-soft);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* :where() so this shorthand does not out-specify the cards' own transition
   lists — otherwise .offer-card / .reasons li lose their hover easing. */
:where(.js .reveal-stagger) > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease-soft), transform 0.65s var(--ease-soft);
}
.js .reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.js .reveal-stagger.is-visible > :nth-child(1) { transition-delay: 0.05s; }
.js .reveal-stagger.is-visible > :nth-child(2) { transition-delay: 0.13s; }
.js .reveal-stagger.is-visible > :nth-child(3) { transition-delay: 0.21s; }
.js .reveal-stagger.is-visible > :nth-child(4) { transition-delay: 0.29s; }
.js .reveal-stagger.is-visible > :nth-child(5) { transition-delay: 0.37s; }
.js .reveal-stagger.is-visible > :nth-child(6) { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal, .js .reveal-stagger > * { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   17. Print
   -------------------------------------------------------------------------- */

@media print {
  .site-header, .nav-drawer, .btn, .site-footer { display: none !important; }
  body { background: #fff; color: #000; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .js .reveal, .js .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}

/* --------------------------------------------------------------------------
   18. Interior page hero
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--grad-wash);
  padding-block: clamp(2.75rem, 1.9rem + 4vw, 5rem);
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(700px, 116vw);
  aspect-ratio: 1;
  top: -46%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 133, 181, 0.26) 0%, rgba(154, 133, 181, 0.1) 44%, transparent 68%);
  filter: blur(6px);
  pointer-events: none;
}
.page-hero h1 { max-width: 20ch; margin-inline: auto; }
.page-hero .lead { max-width: 56ch; margin-inline: auto; }

/* Breadcrumb-ish back link */
.page-hero .eyebrow { margin-bottom: var(--sp-3); }

/* --------------------------------------------------------------------------
   19. Prose (about, legal)
   -------------------------------------------------------------------------- */

.prose { max-width: 70ch; margin-inline: auto; }
.prose > * + * { margin-top: var(--sp-4); }
.prose h2 { margin-top: var(--sp-8); margin-bottom: var(--sp-4); }
.prose h3 { margin-top: var(--sp-7); margin-bottom: var(--sp-3); }
.prose > :first-child { margin-top: 0; }
.prose p { max-width: none; }
.prose ul { padding-left: 0; list-style: none; }
.prose ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: var(--sp-3);
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 8px; height: 8px;
  border-radius: 50% 0 50% 0;
  background: var(--grad-brand);
  transform: rotate(45deg);
}
.prose strong { color: var(--plum-darker); }

/* Pull-quote used for the "same truth" line in Our Story */
.pull-quote {
  margin: var(--sp-7) 0;
  padding: var(--sp-6);
  background: var(--lavender-mist);
  border-left: 3px solid var(--berry);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.08rem + 0.85vw, 1.7rem);
  font-style: italic;
  line-height: 1.34;
  color: var(--plum-darker);
}
.pull-quote p { max-width: none; margin: 0; }
.pull-quote .attribution {
  display: block;
  margin-top: var(--sp-3);
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--ink-muted);
}

/* --------------------------------------------------------------------------
   20. Bio blocks (about)
   -------------------------------------------------------------------------- */

.bio {
  display: grid;
  gap: var(--sp-6);
  align-items: start;
  padding: clamp(1.5rem, 1.1rem + 1.8vw, 2.75rem);
  background: var(--cream-warm);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
}
.bio + .bio { margin-top: var(--sp-7); }
.bio-aside { text-align: center; }
.bio-portrait {
  width: 140px; height: 140px;
  margin: 0 auto var(--sp-4);
  border-radius: 50%;
  background: var(--grad-soft);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 2.9rem;
  box-shadow: 0 12px 30px -14px rgba(94, 45, 110, 0.55);
  position: relative;
}
.bio-portrait::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(154, 133, 181, 0.45);
}
.bio-name { margin-bottom: var(--sp-2); }
.bio-role {
  display: block;
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: var(--sp-2);
  line-height: 1.5;
}
.bio-body p { max-width: none; }

@media (min-width: 780px) {
  .bio { grid-template-columns: 200px 1fr; gap: var(--sp-7); }
}

/* Checklist — "Clients come to Kevin to:" */
.checklist { list-style: none; margin: var(--sp-4) 0; padding: 0; }
.checklist li {
  position: relative;
  padding-left: 1.85rem;
  margin-bottom: var(--sp-3);
  color: var(--ink-soft);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 9px; height: 9px;
  border-radius: 50% 0 50% 0;
  background: var(--grad-brand);
  transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   21. Services
   -------------------------------------------------------------------------- */

.service-intro {
  max-width: 760px;
  margin: 0 auto var(--sp-7);
  padding: var(--sp-6);
  background: var(--lavender-mist);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-lg);
  text-align: center;
}
.service-intro p { max-width: none; }
.service-intro p + p { margin-top: var(--sp-3); }

.service-grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: var(--sp-6);
  background: var(--cream-warm);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  transition: opacity 0.65s var(--ease-soft), transform 0.34s var(--ease), box-shadow 0.34s var(--ease), border-color 0.34s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(94, 45, 110, 0.16);
}

.service-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-2) var(--sp-4);
  padding-bottom: var(--sp-4);
  margin-bottom: var(--sp-4);
  border-bottom: 1px solid var(--hairline-soft);
}
.service-head h3 { margin: 0; flex: 1 1 60%; }
.service-price {
  flex: none;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--berry);
  white-space: nowrap;
}
.service-price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: right;
  margin-top: 2px;
}

.service-card p { color: var(--ink-soft); font-size: var(--fs-small); line-height: 1.7; }
.service-card .checklist { margin-bottom: var(--sp-4); }
.service-card .checklist li { font-size: var(--fs-small); margin-bottom: var(--sp-2); }
.service-lead-in {
  font-weight: 700;
  color: var(--plum-darker) !important;
  margin-bottom: var(--sp-2);
}
.service-foot {
  margin-top: auto;
  padding-top: var(--sp-4);
}
.service-note {
  font-size: var(--fs-micro);
  color: var(--ink-muted);
  font-style: italic;
}

@media (min-width: 820px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------------
   22. Events
   -------------------------------------------------------------------------- */

.event-card--lg { flex-direction: column; gap: var(--sp-4); }
.event-card--lg .event-date { width: 84px; }
/* These are h2s for document outline, but they sit inside a card — size them
   as card headings rather than at the section scale. */
.event-card--lg .event-body h2 {
  font-size: var(--fs-h3);
  line-height: 1.25;
  letter-spacing: -0.008em;
  margin-bottom: var(--sp-3);
}
.event-tag {
  display: inline-block;
  padding: 0.3em 0.85em;
  margin-bottom: var(--sp-3);
  border-radius: var(--r-pill);
  background: var(--lavender-pale);
  color: var(--plum-deep);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.event-tag--private { background: #F2E7EE; color: var(--berry); }

@media (min-width: 620px) {
  .event-card--lg { flex-direction: row; }
}

.events-empty {
  max-width: 640px;
  margin-inline: auto;
  padding: var(--sp-7);
  text-align: center;
  background: var(--cream-warm);
  border: 1px dashed var(--hairline);
  border-radius: var(--r-xl);
}

/* --------------------------------------------------------------------------
   23. Forms & FAQ
   -------------------------------------------------------------------------- */

.contact-layout {
  display: grid;
  gap: var(--sp-7);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 940px) {
  .contact-layout { grid-template-columns: 1.25fr 1fr; gap: var(--sp-8); }
}

.card-panel {
  padding: clamp(1.5rem, 1.1rem + 1.8vw, 2.5rem);
  background: var(--cream-warm);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
}
.card-panel h2, .card-panel h3 { margin-top: 0; }

.field { margin-bottom: var(--sp-5); }
.field label {
  display: block;
  margin-bottom: var(--sp-2);
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--plum-darker);
  letter-spacing: 0.01em;
}
.field .req { color: var(--berry); }

.field input,
.field textarea {
  width: 100%;
  padding: 0.85em 1em;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink);
  background: #fff;
  border: 1.5px solid rgba(94, 45, 110, 0.18);
  border-radius: var(--r-md);
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-muted); opacity: 1; }
.field input:hover,
.field textarea:hover { border-color: rgba(94, 45, 110, 0.32); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--berry);
  box-shadow: 0 0 0 4px rgba(142, 65, 115, 0.14);
}

.form-note {
  margin-top: var(--sp-4);
  font-size: var(--fs-small);
  color: var(--ink-soft);
  line-height: 1.6;
}

.form-status {
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  border-radius: var(--r-md);
  background: var(--lavender-mist);
  border: 1px solid var(--hairline-soft);
  font-size: var(--fs-small);
  color: var(--plum-darker);
}
.form-status[hidden] { display: none; }

/* Inline email signup */
.signup {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.signup .field { flex: 1 1 220px; margin-bottom: 0; }
.signup .btn { flex: none; }

.signup-grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .signup-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Contact details list */
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--hairline-soft);
  margin: 0;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ico {
  flex: none;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--lavender-pale);
  color: var(--plum-deep);
}
.contact-list .ico svg { width: 19px; height: 19px; }
.contact-list .label {
  display: block;
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 2px;
}
.contact-list a { font-weight: 600; }

/* FAQ accordion — native <details>, no JS required */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item {
  background: var(--cream-warm);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-3);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq-item[open] {
  border-color: rgba(94, 45, 110, 0.2);
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--plum-darker);
  line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 11px; height: 11px;
  border-right: 2px solid var(--berry);
  border-bottom: 2px solid var(--berry);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.28s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.faq-item summary:hover { background: rgba(154, 133, 181, 0.07); }
.faq-answer { padding: 0 var(--sp-5) var(--sp-5); }
.faq-answer p { color: var(--ink-soft); font-size: var(--fs-small); line-height: 1.72; max-width: none; }
.faq-answer p + p { margin-top: var(--sp-3); }

/* --------------------------------------------------------------------------
   24. Utility
   -------------------------------------------------------------------------- */

.stack-lg > * + * { margin-top: var(--sp-7); }
.mt-6 { margin-top: var(--sp-6); }
