/* ==========================================================================
   Illuminated Soul Healings — homepage
   Tokens follow package/DESIGN_SYSTEM.md. Mobile-first.
   ========================================================================== */

:root {
  /* Palette */
  --color-ink: #514260;
  --color-plum: #8e68ac;
  --color-plum-dark: #78539a;
  --color-rose: #c987b5;
  --color-gold: #c5a55a;
  --color-gold-soft: rgba(197, 165, 90, 0.34);
  --color-beige: #f5eee5;
  --color-ivory: #fbf7f1;
  --color-warm-blush: #f6e6e8;
  --color-soft-lavender: #eee2f3;
  --color-warm-band: #eee2dc;
  --color-body: #6f6579;
  --color-line: #ddcbbc;
  --color-mark-fill: #f7dfeb;

  /* AA-safe text variants of the palette above. The design-system tokens stay
     exactly as specified and keep doing the decorative work (fills, rules,
     icons, borders); these darker siblings carry the small text that has to
     clear 4.5:1 on every surface the page uses. */
  --color-rose-text: #934669;    /* eyebrows, "learn more", footer headings */
  --color-rose-text-hover: #7c3a59;
  --color-plum-text: #74558d;    /* offering tags, nav hover, form status */
  --color-plum-strong: #8964a6;  /* button + bar fills, so white text clears AA */
  --color-body-strong: #665d70;  /* body copy on the tinted bands */
  --color-gold-deep: #9c7d2c;    /* review stars — 3:1 as a graphical mark */

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', Arial, Helvetica, sans-serif;
  --font-script: 'Allura', 'Cormorant Garamond', cursive;

  /* Layout */
  --shell: 1240px;
  --gutter: 22px;
  --section-y: 56px;
  --radius-card: 22px;
  --radius-pill: 999px;

  --shadow-soft: 0 14px 34px rgba(81, 66, 96, 0.06);
  --shadow-lift: 0 18px 42px rgba(81, 66, 96, 0.11);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (min-width: 768px) {
  :root { --gutter: 32px; --section-y: 72px; }
}
@media (min-width: 1024px) {
  :root { --gutter: 40px; --section-y: 88px; }
}
@media (min-width: 1280px) {
  :root { --gutter: 64px; --section-y: 104px; }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--color-beige);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

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

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--color-ink);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.85rem; font-weight: 700;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--color-plum);
  outline-offset: 3px;
  border-radius: 4px;
}

.shell {
  width: 100%;
  max-width: calc(var(--shell) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.icon { width: 1em; height: 1em; display: block; color: var(--color-gold); }

/* --- Buttons -------------------------------------------------------------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease),
              box-shadow 0.25s var(--ease);
}
.button--primary { background: var(--color-plum-strong); color: #fff; }
.button--primary:hover { background: var(--color-plum-dark); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.button--outline { background: transparent; border-color: var(--color-gold); color: var(--color-ink); }
.button--outline:hover { background: rgba(197, 165, 90, 0.12); transform: translateY(-2px); }
.button--ghost { background: transparent; border-color: var(--color-rose); color: var(--color-rose-text); }
.button--ghost:hover { background: var(--color-rose-text); color: #fff; transform: translateY(-2px); }

.button-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* --- Shared section furniture --------------------------------------------- */

.eyebrow {
  margin: 0 0 26px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-rose-text);
}
.eyebrow::after {
  content: '';
  display: block;
  width: 74px; height: 1px;
  margin-top: 13px;
  background: var(--color-gold);
}
.eyebrow--centred { text-align: center; }
.eyebrow--centred::after { margin-inline: auto; }

.section-head { max-width: 780px; margin: 0 auto clamp(38px, 5vw, 60px); text-align: center; }
.section-head h2 { margin-bottom: 18px; }
.section-head__lede { color: var(--color-body); font-size: 1.02rem; }

h1 {
  font-size: clamp(2.35rem, 9.6vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
h2 { font-size: clamp(2rem, 5.2vw, 3.25rem); line-height: 1.1; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.55rem); line-height: 1.2; }

@media (min-width: 1024px) {
  h1 { font-size: clamp(3.7rem, 4.6vw, 4.5rem); }
  .section-head__lede { font-size: 1.08rem; }
}

/* --- 1. Announcement bar --------------------------------------------------- */

.announcement { background: var(--color-plum-strong); color: #fffaf4; }
.announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 38px;
  padding: 7px var(--gutter);
  text-align: center;
}
.announcement p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.4;
}
.announcement__star { width: 12px; height: 12px; color: #ead285; flex: none; }
@media (max-width: 560px) {
  .announcement__star { display: none; }
  .announcement p { font-size: 0.63rem; letter-spacing: 0.1em; }
}

/* --- 2. Header ------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 241, 0.97);
  backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid rgba(197, 165, 90, 0.2);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex: none;
}
.brand__mark { display: block; flex: none; line-height: 0; }
.brand__mark svg { width: 46px; height: 46px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: 0.16em;
  color: var(--color-ink);
}
.brand__script {
  font-family: var(--font-script);
  font-size: 1.18rem;
  color: var(--color-plum);
  margin-top: 4px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
.nav-toggle__bars { display: grid; gap: 4px; width: 17px; }
.nav-toggle__bars span {
  display: block; height: 1.5px; background: var(--color-ink); border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded='true'] .nav-toggle__bars span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.nav {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 100%;
  padding: 8px var(--gutter) 24px;
  background: var(--color-ivory);
  border-bottom: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}
.nav.is-open { display: block; }
.nav__list { list-style: none; margin: 0 0 18px; padding: 0; }
.nav__list li + li { border-top: 1px solid rgba(221, 203, 188, 0.6); }
.nav__link {
  display: flex;
  align-items: center;
  min-height: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-ink);
}
.nav__link:hover, .nav__link.is-current { color: var(--color-plum-text); }
.nav__cta { width: 100%; }

@media (min-width: 1024px) {
  .header__inner { min-height: 108px; }
  .brand__mark svg { width: 56px; height: 56px; }
  .brand__name { font-size: 1.45rem; }
  .brand__script { font-size: 1.35rem; }
  .nav-toggle { display: none; }
  .nav {
    display: flex;
    align-items: center;
    gap: clamp(26px, 3.4vw, 52px);
    position: static;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }
  .nav__list {
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 46px);
    margin: 0;
  }
  .nav__list li + li { border-top: 0; }
  .nav__link { min-height: 44px; font-size: 0.88rem; font-weight: 700; }
  .nav__cta { width: auto; }
}

/* --- 3. Hero --------------------------------------------------------------- */

/* overflow:hidden clips the full-bleed hero artwork at the viewport edge, so
   the bleed margin below can overshoot safely (100vw includes the scrollbar). */
.hero {
  background: var(--color-ivory);
  border-bottom: 1px solid rgba(221, 203, 188, 0.55);
  overflow: hidden;
}
.hero__grid { display: grid; gap: 34px; padding-block: 44px 0; }
.hero__copy { max-width: 620px; }
.hero__lede {
  color: var(--color-body);
  font-size: 1.05rem;
  line-height: 1.72;
  margin-bottom: 30px;
}
.hero__media { position: relative; margin-inline: calc(var(--gutter) * -1); }
.hero__media img {
  width: 100%;
  height: clamp(280px, 56vw, 430px);
  object-fit: cover;
  object-position: 62% 50%;
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(251, 245, 237, 0.5), rgba(251, 245, 237, 0) 42%);
  pointer-events: none;
}

.pills { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; margin: 32px 0 0; padding: 0; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 18px;
  background: rgba(251, 244, 236, 0.87);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
}
.pill__icon { width: 15px; height: 15px; color: var(--color-gold); flex: none; }

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 47%);
    align-items: center;
    gap: 44px;
    padding-block: 0;
    min-height: 690px;
  }
  .hero__copy { padding-block: 72px; }
  .hero__lede { font-size: 1.125rem; }
  .hero__media {
    margin: 0 calc(var(--gutter) * -1) 0 0;
    align-self: stretch;
    display: flex;
  }
  .hero__media img { height: 100%; min-height: 620px; object-position: 70% 50%; }
  .hero__media::after {
    background: linear-gradient(to right, rgba(251, 245, 237, 0.42), rgba(251, 245, 237, 0) 45%);
  }
}
@media (min-width: 1400px) {
  .hero__media { margin-right: calc((100vw - var(--shell)) / -2); }
}

/* --- 4. Manifesto ---------------------------------------------------------- */

.manifesto {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #eadcf0 0%, #f7ede5 50%, #f3dde6 100%);
  padding-block: clamp(40px, 6vw, 62px);
  text-align: center;
}
.manifesto__inner { max-width: 900px; margin-inline: auto; }
.manifesto__statement {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.62rem);
  line-height: 1.48;
  color: var(--color-ink);
  margin: 0;
}
.manifesto__ring {
  position: absolute;
  top: 50%;
  width: 230px; height: 230px;
  border: 1px solid rgba(216, 191, 140, 0.34);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.manifesto__ring--left { left: -130px; }
.manifesto__ring--right { right: -130px; }

/* --- 5. About -------------------------------------------------------------- */

.about { background: var(--color-ivory); padding-block: var(--section-y); }
.about__grid { display: grid; gap: 38px; align-items: center; }
.about__media { position: relative; max-width: 540px; }
.about__media img {
  width: 100%;
  aspect-ratio: 540 / 500;
  object-fit: cover;
  border: 2px solid var(--color-line);
  border-radius: clamp(70px, 16vw, 150px);
}
.about__badge {
  position: absolute;
  right: -6px; bottom: -18px;
  display: grid;
  place-items: center;
  width: 78px; height: 78px;
  background: var(--color-ink);
  border: 8px solid var(--color-ivory);
  border-radius: 50%;
}
.about__badge-icon { width: 24px; height: 24px; color: #ecd17e; }
.about__copy h2 { margin-bottom: 22px; }
.about__copy p { color: var(--color-body); font-size: 1.02rem; }
.about__copy .button { margin-top: 16px; }

@media (min-width: 900px) {
  .about__grid { grid-template-columns: minmax(0, 46%) minmax(0, 1fr); gap: clamp(46px, 6vw, 95px); }
  .about__copy p { font-size: 1.06rem; }
}

/* --- 6. Services overview -------------------------------------------------- */

.services { background: var(--color-beige); padding-block: var(--section-y); }

.card-grid {
  display: grid;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 620px) { .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 35px; } }

.s-card {
  display: flex;
  flex-direction: column;
  padding: 30px 28px 28px;
  background: var(--color-ivory);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.s-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.s-card__icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  margin-bottom: 22px;
  background: var(--color-beige);
  border: 1px solid var(--color-line);
  border-radius: 50%;
}
.s-card__icon .icon { width: 21px; height: 21px; }
.s-card__title { font-size: 1.4rem; margin-bottom: 14px; }
.s-card__text { color: var(--color-body); font-size: 0.9rem; line-height: 1.66; margin-bottom: 22px; }
.s-card__more {
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-rose-text);
  text-decoration: none;
}
.s-card__more:hover { color: var(--color-rose-text-hover); text-decoration: underline; text-underline-offset: 4px; }

/* --- 7. Philosophy band ---------------------------------------------------- */

.philosophy {
  position: relative;
  background: var(--color-soft-lavender);
  padding-block: clamp(46px, 6vw, 70px);
}
.philosophy__quote {
  max-width: 1010px;
  margin: 0 auto;
  text-align: center;
}
.philosophy__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2.9vw, 1.72rem);
  line-height: 1.5;
  margin: 0;
}
.philosophy__quote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--color-gold);
  margin-bottom: 20px;
}
.philosophy__spark { position: absolute; color: var(--color-gold); }
.philosophy__spark .icon { width: 15px; height: 15px; }
.philosophy__spark--tl { top: 46px; left: max(var(--gutter), calc((100% - var(--shell)) / 2 + 40px)); }
.philosophy__spark--br { bottom: 46px; right: max(var(--gutter), calc((100% - var(--shell)) / 2 + 40px)); }
@media (max-width: 767px) { .philosophy__spark { display: none; } }

/* --- 8. Choose Your Healing Path ------------------------------------------- */

.path { background: var(--color-beige); padding-block: var(--section-y); }
.path__grid { display: grid; gap: 28px; }
@media (min-width: 900px) { .path__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; } }

.offering {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.4vw, 36px);
  border: 1px solid var(--color-line);
  border-radius: 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.offering:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.offering--ivory { background: var(--color-ivory); }
.offering--blush { background: var(--color-warm-blush); }
.offering__ring {
  position: absolute;
  top: -38px; right: -38px;
  width: clamp(96px, 34vw, 152px);
  aspect-ratio: 1;
  height: auto;
  border: 1px solid rgba(216, 191, 140, 0.28);
  border-radius: 50%;
  pointer-events: none;
}
.offering__tag {
  position: relative;
  margin: 0 0 24px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-plum-text);
}
.offering__tag::after {
  content: '';
  display: block;
  width: 74px; height: 1px;
  margin-top: 11px;
  background: var(--color-gold);
}
.offering__title { position: relative; font-size: clamp(1.5rem, 3vw, 1.88rem); margin-bottom: 20px; }
.offering__body { flex: 1 1 auto; color: var(--color-body); font-size: 0.94rem; line-height: 1.72; }
.offering__body p { margin-bottom: 1.05em; }
.offering__option {
  margin: 0 0 1.05em;
  padding: 16px 18px;
  background: rgba(251, 247, 241, 0.72);
  border: 1px solid rgba(221, 203, 188, 0.7);
  border-radius: 14px;
}
.offering--ivory .offering__option { background: rgba(245, 238, 229, 0.68); }
.offering__option-title { font-weight: 700; color: var(--color-ink); margin-bottom: 0.5em; }
.offering__list { list-style: none; margin: 0 0 1.05em; padding: 0; }
.offering__list li { position: relative; padding-left: 24px; margin-bottom: 9px; }
.offering__list li::before {
  content: '';
  position: absolute;
  left: 4px; top: 0.68em;
  width: 6px; height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
}
.offering__cta { align-self: flex-start; margin-top: 26px; }

/* --- 9. What to Expect ----------------------------------------------------- */

.process { background: var(--color-warm-band); padding-block: var(--section-y); }
.process .section-head__lede { color: var(--color-body-strong); }
.process__grid {
  display: grid;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
@media (min-width: 620px) { .process__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .process__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.step {
  padding: 30px 24px 28px;
  background: rgba(251, 244, 236, 0.86);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  text-align: center;
}
.step__number {
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  margin: 0 auto 22px;
  background: var(--color-ivory);
  border: 1.2px solid var(--color-gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-ink);
}
.step__title { font-size: 1.28rem; margin-bottom: 12px; }
.step__text { color: var(--color-body); font-size: 0.87rem; line-height: 1.62; }

/* --- 10. FAQs -------------------------------------------------------------- */

.faq { background: var(--color-ivory); padding-block: var(--section-y); }
.faq__grid { display: grid; gap: 22px; align-items: start; }
@media (min-width: 900px) { .faq__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; } }

.faq__item {
  background: var(--color-beige);
  border: 1px solid var(--color-line);
  border-radius: 20px;
  padding: 24px 26px;
}
.faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2.2vw, 1.42rem);
  line-height: 1.28;
  color: var(--color-ink);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__marker {
  position: relative;
  flex: none;
  width: 36px; height: 36px;
  background: var(--color-ivory);
  border: 1px solid var(--color-line);
  border-radius: 50%;
}
.faq__marker::before, .faq__marker::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  background: var(--color-gold-deep);
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.faq__marker::before { width: 13px; height: 1.6px; }
.faq__marker::after { width: 1.6px; height: 13px; }
.faq__item[open] .faq__marker::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__a { padding-top: 16px; color: var(--color-body); font-size: 0.94rem; line-height: 1.74; }

/* --- 11. Reviews ----------------------------------------------------------- */

.reviews { background: var(--color-beige); padding-block: var(--section-y); }
.reviews__viewport { position: relative; }
.reviews__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(258px, 82%);
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 4px calc(var(--gutter)) 18px;
  margin-inline: calc(var(--gutter) * -1);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
}
.reviews__track > * { scroll-snap-align: center; }

.review {
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  background: var(--color-ivory);
  border: 1px solid var(--color-line);
  border-radius: 20px;
}
.review__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.review__stars { margin: 0; color: var(--color-gold-deep); font-size: 1.02rem; letter-spacing: 2px; }
.review__source {
  display: grid; place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(26, 106, 224, 0.12);
  color: #1a6ae0;
  font-weight: 700; font-size: 0.85rem;
}
.review__quote { margin: 0 0 22px; }
.review__quote p { font-size: 0.9rem; line-height: 1.66; color: var(--color-ink); }
.review__person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review__avatar {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  flex: none;
  border-radius: 50%;
  color: #fff; font-weight: 700; font-size: 0.85rem;
}
.review__meta { display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.review__name { font-size: 0.85rem; font-weight: 700; }
.review__when { font-size: 0.74rem; color: var(--color-body); }

.reviews__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  transform: translateY(-50%);
  background: var(--color-plum-strong);
  border: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), opacity 0.25s var(--ease);
}
.reviews__arrow:hover { background: var(--color-plum-dark); }
.reviews__arrow[disabled] { opacity: 0.3; cursor: default; }
.reviews__arrow--prev { left: calc(var(--gutter) * -1); }
.reviews__arrow--next { right: calc(var(--gutter) * -1); }

/* A 0 minimum lets the four columns collapse to fit the container instead of
   overflowing, so the carousel squashed every card to ~156px at tablet widths
   rather than showing two and scrolling. The track must be allowed to overflow.
   Two cards plus one 22px gap: 2 * (50% - 11px) + 22px = 100%. */
@media (min-width: 620px) { .reviews__track { grid-auto-columns: calc(50% - 11px); } }

/* Four across only once each card clears ~250px. At 1024 a four-column grid
   left them 216px wide, which is too tight for a paragraph of review text, so
   the scroll carousel carries that range instead — the design system allows
   either on anything below desktop. */
@media (min-width: 1180px) {
  .reviews__track {
    grid-auto-flow: row;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-columns: auto;
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
  }
  .reviews__arrow { display: none; }
}

/* --- 12. Newsletter -------------------------------------------------------- */

.newsletter { background: var(--color-ivory); padding-block: clamp(40px, 5vw, 58px); }
.newsletter__grid { display: grid; gap: 26px; align-items: center; }
.newsletter__copy h2 { font-size: clamp(1.75rem, 4vw, 2.38rem); margin-bottom: 10px; }
.newsletter__copy p { color: var(--color-body); font-size: 0.98rem; }

.newsletter__form { display: flex; flex-wrap: wrap; gap: 12px; }
.newsletter__input {
  flex: 1 1 240px;
  min-width: 0;
  min-height: 54px;
  padding: 14px 24px;
  background: var(--color-beige);
  border: 1px solid #bcb7af;
  border-radius: var(--radius-pill);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.newsletter__input::placeholder { color: #6e6c72; }
.newsletter__input:focus-visible { border-color: var(--color-plum); }
.newsletter__trap { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.newsletter__submit { flex: 0 0 auto; }
.newsletter__status {
  flex: 1 0 100%;
  margin: 0;
  min-height: 1.2em;
  font-size: 0.85rem;
  color: var(--color-plum-text);
}
.newsletter__status.is-error { color: #99302e; }

@media (min-width: 900px) {
  .newsletter__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 620px); gap: 44px; }
  .newsletter__form { justify-content: flex-end; }
}

/* --- 13. Closing CTA ------------------------------------------------------- */

.closing {
  position: relative;
  overflow: hidden;
  background: #e7d9f3;
  padding-block: clamp(52px, 6.5vw, 78px);
  text-align: center;
}
.closing__inner { max-width: 980px; margin-inline: auto; }
.closing h2 { margin-bottom: 16px; }
.closing__text { color: var(--color-body-strong); font-size: 1.05rem; margin-bottom: 30px; }
.closing__ring {
  position: absolute;
  top: 50%;
  width: 320px; height: 320px;
  border: 1px solid rgba(195, 162, 90, 0.42);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.closing__ring--left { left: -180px; }
.closing__ring--right { right: -180px; }
.closing__spark { position: absolute; color: var(--color-gold); }
.closing__spark .icon { width: 17px; height: 17px; }
.closing__spark--tl { top: 62px; left: max(var(--gutter), calc((100% - var(--shell)) / 2 + 40px)); }
.closing__spark--br { bottom: 62px; right: max(var(--gutter), calc((100% - var(--shell)) / 2 + 40px)); }
@media (max-width: 767px) { .closing__spark { display: none; } }

/* --- 14. Footer ------------------------------------------------------------ */

.footer { background: var(--color-ivory); padding-block: clamp(44px, 5vw, 62px) 30px; }
.footer__grid { display: grid; gap: 34px; }
@media (min-width: 620px) { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
/* Four columns only once there is genuinely room for the wordmark, the long
   service names and the email side by side; 2x2 below that. */
@media (min-width: 1200px) {
  .footer__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr) minmax(0, 1.5fr) minmax(0, 1.1fr);
    gap: 40px;
  }
}
.footer__brand .brand__mark svg { width: 52px; height: 52px; }
.footer__brand .brand__name { font-size: 1.32rem; }
.footer__brand .brand__script { font-size: 1.24rem; }

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--color-rose-text);
  margin-bottom: 20px;
}
.footer__brand, .footer__col { min-width: 0; }
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li + li { margin-top: 4px; }
.footer__col a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  max-width: 100%;
  font-size: 0.87rem;
  line-height: 1.45;
  text-decoration: none;
  color: var(--color-ink);
  overflow-wrap: anywhere;
}
.footer__social { align-items: flex-start; }
.footer__social-icon { margin-top: 3px; }
/* The email is the longest string in the footer: give it its own scale and a
   <wbr> after the @ so it breaks cleanly rather than mid-word. */
.footer__email { font-size: 0.79rem; letter-spacing: -0.005em; }
.footer__col a:hover { color: var(--color-plum-text); text-decoration: underline; text-underline-offset: 4px; }
.footer__social-icon { width: 17px; height: 17px; color: var(--color-plum); flex: none; }

.footer__base {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(216, 191, 140, 0.53);
  font-size: 0.76rem;
  color: var(--color-body);
}
.footer__base p { margin: 0; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.footer__legal a { text-decoration: none; }
.footer__legal a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* --- Motion ---------------------------------------------------------------- */

/* Reveals move only — never fade. A transition frozen part-way must still
   leave readable content on screen. */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { transform: translateY(16px); transition: transform 0.7s var(--ease); }
  .js .reveal.is-visible { 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;
    scroll-behavior: auto !important;
  }
}

/* --- Print ----------------------------------------------------------------- */

@media print {
  .header, .announcement, .reviews__arrow, .nav-toggle, .skip-link { display: none !important; }
  body { background: #fff; }
  .faq__item { break-inside: avoid; }
}

/* ==========================================================================
   Interior pages — About, Our Services, Book a Session, Contact, legal
   ========================================================================== */

/* --- Compact page hero ----------------------------------------------------- */

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #eadcf0 0%, #f7ede5 50%, #f3dde6 100%);
  padding-block: clamp(46px, 7vw, 84px);
  text-align: center;
}
.page-hero__inner { max-width: 880px; margin-inline: auto; }
.page-hero h1 {
  font-size: clamp(2.25rem, 6.4vw, 3.6rem);
  line-height: 1.06;
  margin-bottom: 20px;
}
.page-hero__lede {
  color: var(--color-body-strong);
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  max-width: 46em;
  margin-inline: auto;
}
.page-hero__ring {
  position: absolute;
  top: 50%;
  width: 300px; height: 300px;
  border: 1px solid rgba(216, 191, 140, 0.36);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.page-hero__ring--left { left: -170px; }
.page-hero__ring--right { right: -170px; }

/* --- About: intro ---------------------------------------------------------- */

.intro { background: var(--color-ivory); padding-block: var(--section-y); }
.intro__grid { display: grid; gap: 38px; align-items: center; }
.intro__media { position: relative; max-width: 540px; }
.intro__media img {
  width: 100%;
  aspect-ratio: 540 / 500;
  object-fit: cover;
  border: 2px solid var(--color-line);
  border-radius: clamp(70px, 16vw, 150px);
}
.intro__copy h1 { font-size: clamp(2.2rem, 5.4vw, 3.3rem); margin-bottom: 20px; }
.intro__lede { color: var(--color-body); font-size: 1.06rem; margin-bottom: 30px; }

@media (min-width: 900px) {
  .intro__grid { grid-template-columns: minmax(0, 46%) minmax(0, 1fr); gap: clamp(46px, 6vw, 95px); }
}

/* --- About: story ---------------------------------------------------------- */

.story { background: var(--color-beige); padding-block: var(--section-y); }
.story__inner { max-width: 820px; margin-inline: auto; }
.story__inner h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1.16;
  margin-bottom: 26px;
}
.story__inner p { color: var(--color-body); font-size: 1.02rem; }
.story__quote {
  margin: 30px 0;
  padding: 26px 30px;
  background: var(--color-ivory);
  border: 1px solid var(--color-line);
  border-left: 3px solid var(--color-gold);
  border-radius: 20px;
}
.story__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  line-height: 1.42;
  color: var(--color-ink);
}
.story__list { list-style: none; margin: 0 0 1.3em; padding: 0; }
.story__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--color-body);
}
.story__list li::before {
  content: '';
  position: absolute;
  left: 6px; top: 0.72em;
  width: 7px; height: 7px;
  background: var(--color-gold);
  border-radius: 50%;
}
.story__signoff { margin-top: 30px; color: var(--color-body); }
.story__signature {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--font-script);
  font-size: 2.1rem;
  line-height: 1.2;
  color: var(--color-plum);
}

/* --- About: how I support you ---------------------------------------------- */

.support { background: var(--color-ivory); padding-block: var(--section-y); }
.support__grid {
  display: grid;
  gap: 14px 26px;
  list-style: none;
  margin: 0 0 38px;
  padding: 0;
}
@media (min-width: 700px) { .support__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .support__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.support__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--color-beige);
  border: 1px solid var(--color-line);
  border-radius: 16px;
  font-size: 0.94rem;
  line-height: 1.55;
}
.support__icon { width: 15px; height: 15px; margin-top: 5px; flex: none; color: var(--color-gold); }
.support__closing {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
  color: var(--color-body);
  font-size: 1.02rem;
}
.support__space-intro {
  text-align: center;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-ink);
}
.support__words {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.support__words li {
  padding: 10px 24px;
  background: var(--color-soft-lavender);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--color-ink);
}

/* --- About: qualifications ------------------------------------------------- */

.training { background: var(--color-beige); padding-block: var(--section-y); }
.training__grid {
  display: grid;
  gap: 26px;
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
}
@media (min-width: 620px) { .training__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .training__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; } }

.t-card {
  padding: 30px 28px;
  background: var(--color-ivory);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.t-card__icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  margin-bottom: 20px;
  background: var(--color-beige);
  border: 1px solid var(--color-line);
  border-radius: 50%;
}
.t-card__icon .icon { width: 21px; height: 21px; }
.t-card__title { font-size: 1.26rem; margin-bottom: 12px; }
.t-card__text { color: var(--color-body); font-size: 0.9rem; line-height: 1.66; }
.training__closing {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  color: var(--color-body);
  font-size: 1.02rem;
}

/* --- Services page: illustrated offerings ---------------------------------- */

.offering__figure { margin: 0 0 26px; }
.offering__figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: 18px;
  border: 1px solid var(--color-line);
}
@media (min-width: 900px) {
  .path--illustrated .offering__figure img { aspect-ratio: 4 / 3; }
}

/* --- Book a session -------------------------------------------------------- */

.booking-steps { background: var(--color-warm-band); padding-block: clamp(40px, 5vw, 62px); }

.booking { background: var(--color-ivory); padding-block: var(--section-y); }
.booking__widget {
  background: var(--color-beige);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  padding: 10px;
  overflow: hidden;
}
.booking__widget .calendly-inline-widget { border-radius: 16px; overflow: hidden; }
.booking__fallback { padding: 40px 24px; text-align: center; color: var(--color-body); }
.booking__direct {
  margin-top: 26px;
  text-align: center;
  color: var(--color-body);
  font-size: 0.96rem;
}
.booking__direct a { color: var(--color-plum-text); text-underline-offset: 4px; }

/* --- Contact --------------------------------------------------------------- */

.contact { background: var(--color-ivory); padding-block: var(--section-y); }
.contact__grid { display: grid; gap: 40px; align-items: start; }
@media (min-width: 960px) {
  .contact__grid { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(44px, 5vw, 76px); }
}

.contact__details h2 { margin-bottom: 18px; }
.contact__lede { color: var(--color-body); margin-bottom: 30px; }
.contact__list { list-style: none; margin: 0 0 30px; padding: 0; }
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(221, 203, 188, 0.7);
}
.contact__item:last-child { border-bottom: 1px solid rgba(221, 203, 188, 0.7); }
.contact__item-icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  flex: none;
  background: var(--color-beige);
  border: 1px solid var(--color-line);
  border-radius: 50%;
}
.contact__item-icon .icon { width: 19px; height: 19px; }
.contact__item-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.contact__item-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-rose-text);
}
.contact__item-value { color: var(--color-ink); font-size: 0.96rem; overflow-wrap: anywhere; }
a.contact__item-value:hover { color: var(--color-plum-text); }
.contact__social { gap: 10px; }
.contact__social-icon { width: 17px; height: 17px; margin-right: 2px; color: currentColor; }

.contact__form-card {
  padding: clamp(26px, 3.6vw, 40px);
  background: var(--color-beige);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
}
.contact__form-heading { font-size: clamp(1.6rem, 3.2vw, 2.1rem); margin-bottom: 10px; }
.contact__form-lede { color: var(--color-body); margin-bottom: 28px; font-size: 0.98rem; }

.field-row { display: grid; gap: 0 18px; }
@media (min-width: 560px) { .field-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.field { margin: 0 0 20px; }
.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-ink);
}
.field__req { color: var(--color-rose-text); }
.field__optional { font-weight: 400; color: var(--color-body); letter-spacing: 0; }
.field input[type='text'],
.field input[type='email'],
.field input[type='tel'],
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 18px;
  background: var(--color-ivory);
  border: 1px solid var(--color-line);
  border-radius: 14px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
}
.field textarea { min-height: 150px; resize: vertical; }
.field select {
  /* Only background-image here: the background shorthand would reset the
     custom caret tile and leave the select with no chevron at all. */
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' fill='none' stroke='%238e68ac' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible { border-color: var(--color-plum); }
.field--invalid input,
.field--invalid select,
.field--invalid textarea { border-color: #99302e; }

.field--check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.field--check input {
  width: 20px; height: 20px;
  margin: 2px 0 0;
  flex: none;
  accent-color: var(--color-plum);
}
.field--check label {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
  color: var(--color-body);
}
.field--check a { color: var(--color-plum-text); text-underline-offset: 3px; }

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
}
.contact-form__status {
  margin: 0;
  flex: 1 1 200px;
  min-height: 1.2em;
  font-size: 0.88rem;
  color: var(--color-plum-text);
}
.contact-form__status.is-error { color: #99302e; }

/* --- Legal pages ----------------------------------------------------------- */

.legal { background: var(--color-ivory); padding-block: clamp(44px, 6vw, 84px); }
.legal__inner { max-width: 820px; margin-inline: auto; }
.legal h1 { font-size: clamp(2.1rem, 5vw, 3rem); margin-bottom: 10px; }
.legal__updated {
  margin-bottom: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-rose-text);
}
.legal__intro { color: var(--color-body); font-size: 1.02rem; }
.legal__section { margin-top: 38px; }
.legal__section h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.68rem);
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(221, 203, 188, 0.8);
}
.legal__section p { color: var(--color-body); font-size: 0.98rem; }
.legal__section a { color: var(--color-plum-text); overflow-wrap: anywhere; }
.legal__list { list-style: none; margin: 0 0 1.2em; padding: 0; }
.legal__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  color: var(--color-body);
  font-size: 0.98rem;
}
.legal__list li::before {
  content: '';
  position: absolute;
  left: 5px; top: 0.72em;
  width: 6px; height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
}

/* --- 404 ------------------------------------------------------------------- */

.notfound { background: var(--color-ivory); padding-block: clamp(48px, 6vw, 80px); }
.notfound__inner { text-align: center; }
.notfound__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* --- Checkbox rows: the real tap target is the label ------------------------ */

/* A 24px box is the conventional size, but a box alone is a small target. The
   label carries a `for=`, so the whole row toggles the checkbox — sizing the
   label to at least 44px makes that the actual hit area. */
.field--check {
  align-items: center;
  padding-block: 4px;
}
.field--check input { width: 24px; height: 24px; margin-top: 0; }
.field--check label {
  display: flex;
  align-items: center;
  min-height: 44px;
  cursor: pointer;
}

/* --- Offering sub-heading (e.g. "Choose Your Preferred Reading Format") ----- */

.offering__subhead {
  margin: 1.4em 0 0.9em;
  font-family: var(--font-display);
  font-size: 1.16rem;
  line-height: 1.3;
  color: var(--color-ink);
}

/* --- Manifesto headline ---------------------------------------------------- */

.manifesto__heading {
  font-size: clamp(1.55rem, 3.6vw, 2.3rem);
  line-height: 1.16;
  margin-bottom: 16px;
}

/* --- Reviews: full verified text behind a native disclosure ---------------- */

.review__lead { margin-bottom: 0; }
.review__ellipsis { color: var(--color-body); }

/* When the disclosure is open the lead runs straight into the rest, so the
   trailing ellipsis would read as a gap in the sentence. */
.review__quote:has(.review__full[open]) .review__ellipsis { display: none; }

.review__full { margin-top: 10px; }
.review__full > summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-rose-text);
  cursor: pointer;
  list-style: none;
}
.review__full > summary::-webkit-details-marker { display: none; }
.review__full > summary::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.25s var(--ease);
}
.review__full[open] > summary::after { transform: translateY(1px) rotate(-135deg); }
.review__full > summary:hover { color: var(--color-rose-text-hover); }
.review__full > p { margin-top: 10px; }
.review__full[open] { margin-bottom: 4px; }

/* The card grid stretches rows to the tallest card; keep the person pinned to
   the bottom so avatars stay on one line across the row. */
.review__quote { margin-bottom: 18px; }

/* --- Two fixes found by testing with JavaScript disabled ------------------- */

/* 1. A class that sets `display` beats the user-agent rule for [hidden], so the
      carousel arrows stayed on screen while marked hidden — visible, focusable
      and inert. Make the attribute win everywhere. */
[hidden] { display: none !important; }

/* 2. `.visually-hidden` is absolutely positioned, so it resolves against the
      nearest positioned ancestor. Inside the reviews carousel that was
      `.reviews__viewport`, which sits OUTSIDE the scrolling track — so the
      off-screen cards' hidden labels escaped the scroll container and stretched
      the document to 887px at 375px wide. Giving each card a containing block
      keeps them inside the part that scrolls. */
.review { position: relative; }
