/* ============================================================
   Showing My Roots — clean static rebuild
   Design tokens extracted from the original Wix site
   ============================================================ */

:root {
  /* Shannon's print identity, extended to the web: vivid raspberry pink
     on white and blush (her business card), teal as the second voice,
     touches of gold. Bold, feminine, energetic — never pale or beige. */
  --magenta:      #b3067f;   /* deep magenta — hovers, footer, gradients */
  --pink:         #d92e83;   /* raspberry — THE brand color (matches card) */
  --pink-mid:     #d92e83;   /* legacy alias: borders, small fills */
  --pink-band:    #d92e83;   /* full-bleed brand bands */
  --pink-light:   #f47ab8;   /* soft pink accents */
  --pink-pale:    #fbd3e8;
  --blush:        #fdeef5;   /* light pink section background */
  --cream:        #fff9f5;   /* soft warm white */
  --cyan:         #0f9aa8;   /* teal — the second brand voice */
  --teal-bright:  #5fd0e7;   /* original brand cyan, for tints/script */
  --gold:         #d9a441;   /* touches of gold */
  --ink:          #241f22;
  --white:        #ffffff;

  --font-body:    'Wix Madefor Text', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Wix Madefor Display', 'Helvetica Neue', Arial, sans-serif;
  --font-serif:   'Fraunces', Georgia, serif;
  --font-script:  'Fraunces', Georgia, serif;
  --font-button:  'Wix Madefor Display', 'Helvetica Neue', Arial, sans-serif;

  --header-h: 76px;
}

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

html { scroll-behavior: smooth; }

body.menu-open { overflow: hidden; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

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

a { color: var(--pink); }

/* ---------- type helpers ---------- */

.script        { font-family: var(--font-script); font-weight: 400; }
.serif         { font-family: var(--font-serif); }

.eyebrow {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 25px);
  letter-spacing: .08em;
}

/* ---------- skip link ---------- */

.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 400;
  background: var(--ink);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  transition: top .15s;
}
.skip-link:focus { top: 0; }

/* ---------- buttons ---------- */

.btn {
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .95em 2.2em;
  border-radius: 2px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-white   { background: var(--white); color: var(--pink); }
.btn-white:hover { background: var(--pink-pale); }
.btn-outline { background: transparent; color: var(--white); border-color: currentColor; }
.btn-outline:hover { background: rgba(255,255,255,.15); }
.btn-outline-ink { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline-ink:hover { background: var(--ink); color: var(--cream); }
.btn-pink    { background: var(--pink); color: var(--white); }
.btn-pink:hover { background: var(--magenta); }
.btn-teal    { background: var(--cyan); color: var(--white); }
.btn-teal:hover { background: #0b7f8b; }
.btn-outline-teal { background: transparent; color: var(--cyan); border-color: var(--cyan); }
.btn-outline-teal:hover { background: var(--cyan); color: var(--white); }
.btn-hero {
  background: var(--pink); color: var(--white);
  border-color: var(--pink);
}
.btn-hero:hover { background: var(--magenta); border-color: var(--magenta); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fffdfb;
  border-bottom: 1px solid #e9e1da;
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(16px, 4vw, 48px);
  gap: 24px;
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-header .logo img { height: 52px; width: auto; }
.logo-word {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: .01em;
  white-space: nowrap;
}
@media (max-width: 620px) { .logo-word { display: none; } }

/* header CTA sits right, then the menu button */
.header-cta {
  margin-left: auto;
  font-size: 12.5px;
  padding: .8em 1.7em;
}
@media (max-width: 480px) { .header-cta { display: none; } }

/* the menu button is always visible — the nav is a full-screen vertical menu */
.nav-toggle {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 220;
  margin-left: 0;
  background: var(--blush);
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  width: 46px; height: 46px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.nav-toggle:hover { background: var(--pink-pale); color: var(--magenta); }
.nav-toggle svg { width: 26px; height: 26px; }

.site-header nav {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: none;
  background:
    radial-gradient(circle 500px at 88% 12%, rgba(255,255,255,.14), transparent 70%),
    linear-gradient(135deg, var(--magenta), var(--pink) 62%, #ef5ba1);
  overflow-y: auto;
  padding: clamp(80px, 12vh, 130px) clamp(28px, 10vw, 140px) 48px;
}
.site-header nav.open { display: block; }
.site-header nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(6px, 1.6vh, 16px);
  max-width: 900px;
  margin: 0 auto;
  counter-reset: navitem;
}
.site-header nav li { counter-increment: navitem; }
.site-header nav a {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(26px, 4.6vh, 44px);
  line-height: 1.2;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s, transform .15s;
}
.site-header nav a::before {
  content: counter(navitem, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--pink-pale);
  opacity: .85;
}
.site-header nav a:hover,
.site-header nav a[aria-current="page"] {
  color: #ffdff0;
  border-bottom-color: var(--white);
  transform: translateX(6px);
}
@media (prefers-reduced-motion: reduce) {
  .site-header nav a { transition: none; }
  .site-header nav a:hover { transform: none; }
}

/* toggle turns into a close button while the menu is open */
.site-header:has(nav.open) .nav-toggle {
  background: rgba(255,255,255,.18);
  color: var(--white);
}
.site-header:has(nav.open) .nav-toggle svg { display: none; }
.site-header:has(nav.open) .nav-toggle::before {
  content: "\2715";
  font-size: 22px;
  line-height: 1;
}

/* ---------- page hero (interior pages) ---------- */

.page-hero {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
  padding: 60px 20px 90px;
}
.page-hero .bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.page-hero::before {           /* magenta-to-pink wash over photo */
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(122,8,88,.72), rgba(217,46,131,.5));
}
.page-hero > div { text-shadow: 0 2px 22px rgba(60,4,42,.55); }
.page-hero .script-line {
  font-family: var(--font-script);
  font-size: clamp(44px, 7vw, 84px);
  line-height: .9;
}
.page-hero .serif-line {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(30px, 4.8vw, 54px);
  letter-spacing: -.01em;
  line-height: 1.1;
}
.page-hero .cyan { color: var(--cyan); }

/* curved bottom edge on hero */
.page-hero .curve {
  position: absolute; left: 50%; bottom: -2px;
  width: 130%; height: 90px;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 100% 100% 0 0;
}
.page-hero .curve.blush-fill { background: var(--blush); }

/* ---------- home hero ---------- */

.home-hero {
  position: relative;
  background:
    radial-gradient(ellipse 900px 600px at 85% 20%, rgba(95,208,231,.16), transparent 60%),
    linear-gradient(160deg, var(--white) 30%, var(--blush) 100%);
  color: var(--ink);
  overflow: hidden;
}
.home-hero .inner {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: end;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 48px) 0;
}
.home-hero .copy { padding-bottom: clamp(40px, 6vw, 88px); align-self: center; }
.home-hero .kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(13px, 1.5vw, 15px);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.4em;
}
.home-hero .kicker .sep { color: var(--pink-light); margin: 0 .5em; }
@media (max-width: 560px) { .kicker-roles { display: none; } }
.home-hero h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.08;
  font-size: clamp(34px, 4.6vw, 58px);
  letter-spacing: -.015em;
  max-width: 13em;
}
.home-hero h1 em {
  font-style: normal;
  font-weight: 700;
  color: var(--pink);
}
.home-hero .lede {
  font-size: clamp(16.5px, 1.9vw, 19px);
  line-height: 1.7;
  color: #3f373b;
  max-width: 34em;
  margin: 1.4em 0 2em;
}
.home-hero .actions { display: flex; gap: 14px 26px; flex-wrap: wrap; align-items: center; }
.link-arrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.link-arrow:hover { color: #0b7f8b; border-bottom-color: currentColor; }
.home-hero .portrait { position: relative; }
.home-hero .portrait { align-self: end; text-align: center; }
.home-hero .portrait::before {
  /* blossom halo behind the cut-out portrait */
  content: "";
  position: absolute;
  left: 50%; bottom: -4%;
  width: 108%; aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink-pale) 0%, rgba(244,122,184,.28) 48%, transparent 70%);
}
.home-hero .portrait img { position: relative; width: min(500px, 40vw); margin: 0 auto; }
.home-hero .scroll-cue {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  color: var(--pink); font-size: 28px; text-decoration: none;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translate(-50%, 8px); } }
@media (prefers-reduced-motion: reduce) {
  .home-hero .scroll-cue { animation: none; }
}

@media (max-width: 760px) {
  .home-hero .inner { grid-template-columns: 1fr; }
  .home-hero .portrait img { margin: 0 auto; width: min(320px, 70vw); }
}

/* book-a-session side ribbon */
.book-ribbon {
  position: fixed;
  right: 0; top: 55%;
  z-index: 90;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-decoration: none;
  padding: 10px 16px;
  border: 2px solid var(--white);
  border-right: 0;
  border-radius: 6px 0 0 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.book-ribbon:hover { background: var(--magenta); }

/* ---------- generic sections ---------- */

.section { padding: clamp(48px, 7vw, 96px) 20px; }
.section .container { max-width: 1100px; margin: 0 auto; }
.section-blush { background: var(--blush); }

.center { text-align: center; }

/* big statement: EMPOWERING WOMEN ... & grow */
.statement {
  background: var(--blush);
  text-align: center;
  padding: clamp(40px, 6vw, 80px) 20px clamp(24px, 4vw, 48px);
}
.statement .line-serif {
  font-family: var(--font-serif);
  color: var(--pink-light);
  font-size: clamp(24px, 3.6vw, 44px);
  letter-spacing: .1em;
}
.statement .line-serif strong { color: var(--pink); font-weight: 600; }
.statement .line-script {
  font-family: var(--font-script);
  color: var(--pink);
  font-size: clamp(64px, 11vw, 150px);
  line-height: .7;
  margin-top: -.15em;
}

/* curved pink band (Hello section, CTA band) */
.band {
  position: relative;
  background: var(--pink-band);
  color: var(--white);
  padding: clamp(56px, 8vw, 110px) 20px;
  overflow: hidden;
}
.band::before, .band::after {
  content: "";
  position: absolute; left: 50%;
  width: 140%; height: 110px;
  transform: translateX(-50%);
  background: var(--white);
}
.band::before { top: -2px; border-radius: 0 0 100% 100%; }
.band::after  { bottom: -2px; border-radius: 100% 100% 0 0; }
.band.flat-top::before { display: none; }
.band.flat-bottom::after { display: none; }
.band.from-blush::before { background: var(--blush); }
.band.to-blush::after { background: var(--blush); }

.band .container {
  position: relative;
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.band h2.script-hello {
  font-family: var(--font-script);
  font-size: clamp(70px, 10vw, 130px);
  line-height: .8;
}
.band .polaroid {
  background: var(--white);
  padding: 12px 12px 18px;
  transform: rotate(-2.5deg);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  max-width: 480px;
  margin: 0 auto;
}
.band .polaroid img { width: 100%; }
.band p a:not(.btn) { color: var(--white); font-weight: 700; }

/* FLAWSOME wordmark section */
.flawsome {
  text-align: center;
  padding: clamp(56px, 8vw, 110px) 20px clamp(40px, 6vw, 80px);
}
.flawsome .script-cyan {
  font-family: var(--font-script);
  color: var(--cyan);
  font-size: clamp(48px, 8vw, 110px);
  line-height: .75;
}
.flawsome .word {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(56px, 11vw, 150px);
  line-height: .95;
  letter-spacing: .02em;
  margin-top: -.12em;
}
.flawsome .word .flaw { color: var(--pink); }
.flawsome .word .some { color: var(--pink-light); }
.flawsome .sub {
  font-family: var(--font-serif);
  color: var(--pink-light);
  letter-spacing: .22em;
  font-size: clamp(14px, 2vw, 24px);
  margin-top: .6em;
}

/* cream ellipse section (Rooted / Mission) */
.ellipse {
  position: relative;
  background: var(--cream);
  padding: clamp(64px, 9vw, 130px) 20px;
  overflow: hidden;
}
.ellipse::before, .ellipse::after {
  content: "";
  position: absolute; left: 50%;
  width: 145%; height: 120px;
  transform: translateX(-50%);
  background: var(--white);
}
.ellipse::before { top: -2px; border-radius: 0 0 100% 100%; }
.ellipse::after  { bottom: -2px; border-radius: 100% 100% 0 0; }
.ellipse.tint { background: #f3e3e0; }

.duo {
  max-width: 1000px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}
.duo + .duo { margin-top: clamp(48px, 7vw, 90px); }
@media (max-width: 760px) { .duo { grid-template-columns: 1fr; } }

.wordmark { text-align: center; }
.wordmark .pre {
  font-family: var(--font-script);
  color: var(--pink-light);
  font-size: clamp(36px, 5vw, 60px);
  line-height: .8;
}
.wordmark .main {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--pink);
  font-size: clamp(44px, 7vw, 84px);
  line-height: .95;
  letter-spacing: .03em;
}
.wordmark .post {
  font-family: var(--font-script);
  color: var(--pink-light);
  font-size: clamp(30px, 4vw, 48px);
  line-height: .9;
}
.wordmark.cyan-main .main { color: var(--cyan); }
.wordmark.cyan-main .pre, .wordmark.cyan-main .post { color: var(--pink); }

.prose h3 {
  font-family: var(--font-serif);
  color: var(--pink);
  font-size: clamp(20px, 2.6vw, 26px);
  margin-bottom: .6em;
  letter-spacing: .03em;
}
.prose p + p { margin-top: 1em; }

/* ---------- testimonials ---------- */

.testimonials { text-align: center; padding: clamp(56px, 8vw, 100px) 20px; }
.testimonials .heading-script {
  font-family: var(--font-script);
  color: var(--pink);
  font-size: clamp(40px, 6vw, 76px);
  line-height: .8;
}
.testimonials .heading-serif {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--pink);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: .05em;
  line-height: 1;
  margin-bottom: 40px;
}
.carousel { position: relative; max-width: 760px; margin: 0 auto; }
.carousel blockquote {
  display: none;
  min-height: 200px;
}
.carousel .excerpt {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(19px, 2.3vw, 24px);
  line-height: 1.5;
  color: var(--ink);
}
.carousel .full-note {
  margin-top: 16px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #4a4145;
}
.carousel .full-note summary {
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
}
.carousel .full-note summary:hover { color: var(--magenta); }
.carousel .full-note[open] { background: var(--white); border-radius: 10px; padding: 16px 20px; }
.carousel .full-note p { margin-top: 10px; text-align: left; }
.carousel blockquote.active { display: block; animation: fade .5s ease; }
@keyframes fade { from { opacity: 0; } }
.carousel cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-weight: 700;
  color: var(--pink);
}
.carousel .arrow {
  position: absolute; top: 45%;
  background: var(--pink); border: 0;
  color: var(--white); width: 42px; height: 42px; border-radius: 50%;
  font-size: 20px; cursor: pointer;
  transition: background .2s;
}
.carousel .arrow:hover { background: var(--magenta); }
.carousel .dots {
  display: flex; justify-content: center; gap: 9px;
  margin-top: 26px;
}
.carousel .dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: 0; padding: 0; cursor: pointer;
  background: var(--pink-pale);
  transition: background .2s, transform .2s;
}
.carousel .dots button[aria-current="true"] { background: var(--pink); transform: scale(1.25); }
.carousel .prev { left: -64px; }
.carousel .next { right: -64px; }
@media (max-width: 940px) {
  .carousel .prev { left: -10px; }
  .carousel .next { right: -10px; }
  .carousel blockquote { padding: 0 44px; }
}

/* ---------- footer CTA band + footer ---------- */

.cta-band {
  position: relative;
  background: var(--pink-band);
  color: var(--white);
  text-align: center;
  padding: clamp(80px, 11vw, 150px) 20px clamp(48px, 6vw, 80px);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; top: -2px; left: 50%;
  width: 140%; height: 130px;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 0 0 100% 100%;
}
.cta-band.from-blush::before { background: var(--blush); }
.cta-band .fists {
  position: absolute; inset: auto 0 0 0; margin: 0 auto;
  width: min(720px, 90%);
  opacity: .25;
  pointer-events: none;
}
.cta-band .script-line {
  position: relative;
  font-family: var(--font-script);
  font-size: clamp(54px, 9vw, 110px);
  line-height: .75;
}
.cta-band .serif-line {
  position: relative;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(36px, 6.5vw, 78px);
  letter-spacing: -.01em;
  line-height: 1.08;
}
.cta-band .book-note { position: relative; margin: 20px 0 18px; font-size: 15px; }
.cta-band .actions { position: relative; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.site-footer {
  background: #2a2126;
  color: #f3ece7;
  padding: 32px 20px;
}
.site-footer .inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px 36px;
  justify-content: center;
}
.site-footer .wordmark-img { height: 60px; width: auto; }
.site-footer a { color: var(--white); text-decoration: none; font-weight: 700; }
.site-footer .contact-links { display: flex; gap: 28px; flex-wrap: wrap; }
.site-footer .socials { display: flex; gap: 18px; }
.site-footer .socials a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #f3ece7;
  transition: background .2s, color .2s;
}
.site-footer .socials a:hover { background: var(--pink); color: var(--white); }
.site-footer .socials svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- coaching plan cards ---------- */

.plans-grid {
  max-width: 1150px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.plan-card {
  border: 1.5px solid var(--pink-mid);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 6px 22px rgba(238, 39, 133, .09);
}
.plan-card .photo { aspect-ratio: 16 / 8.5; object-fit: cover; width: 100%; }
.plan-card .body { padding: 24px 26px 30px; text-align: center; display: flex; flex-direction: column; flex: 1; }
.plan-card .pre-script { font-family: var(--font-script); color: var(--pink-light); font-size: 34px; line-height: .8; }
.plan-card h3 { font-family: var(--font-serif); color: var(--pink); font-size: 34px; line-height: 1; letter-spacing: .04em; }
.plan-card .price { font-family: var(--font-serif); color: var(--cyan); font-size: 38px; font-weight: 600; line-height: 1.1; }
.plan-card .note { color: var(--pink); font-size: 13px; font-weight: 700; }
.plan-card .desc { font-size: 14.5px; margin: 14px 0 18px; }
.plan-card .receive-title {
  font-family: var(--font-serif);
  font-size: 14px; letter-spacing: .1em;
  border: 1px solid var(--pink-light);
  border-radius: 999px;
  display: inline-block;
  padding: 4px 18px;
  margin: 0 auto 14px;
}
.plan-card ul { list-style: none; font-size: 14px; margin-bottom: 20px; }
.plan-card li { padding: 3px 0; font-weight: 700; }
.plan-card li.excluded { color: #c2c2c2; font-weight: 400; }
.plan-card li .mark { margin-right: 8px; color: var(--cyan); }
.plan-card li.excluded .mark { color: #c2c2c2; }
.plan-card .btn { margin-top: auto; align-self: center; }

/* ---------- workshops ---------- */

.workshop-row {
  max-width: 1050px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.workshop-row:nth-child(even) .rot { transform: rotate(2.5deg); }
.workshop-row .rot {
  border: 3px solid var(--pink-band);
  border-radius: 18px;
  overflow: hidden;
  transform: rotate(-2.5deg);
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
}
.workshop-row h3 {
  font-family: var(--font-serif);
  color: var(--pink);
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: .05em;
  line-height: 1.1;
}
.workshop-row .sub {
  font-family: var(--font-script);
  color: var(--cyan);
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1;
  margin: 2px 0 14px;
}
.workshop-row p { font-size: 15.5px; }
@media (max-width: 720px) { .workshop-row { grid-template-columns: 1fr; } }

/* ---------- speaking topics ---------- */

.topics-heading {
  text-align: center;
  font-family: var(--font-serif);
  color: var(--pink);
  font-size: clamp(30px, 4.4vw, 44px);
  letter-spacing: .06em;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.topics-heading .over {
  display: block;
  font-size: .55em;
  letter-spacing: .12em;
  color: var(--pink-mid);
}
.topics-grid {
  max-width: 900px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(36px, 6vw, 64px);
  text-align: center;
}
.topic .icon { width: 64px; height: 64px; margin: 0 auto 14px; color: var(--pink-mid); }
.topic .icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.6; }
.topic h3 {
  font-family: var(--font-serif);
  color: var(--cyan);
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.topic p { font-size: 15.5px; }

/* ---------- contact ---------- */

.contact-layout {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
@media (max-width: 820px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-intro { text-align: center; }
.contact-intro h1 {
  font-family: var(--font-serif);
  color: var(--cyan);
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: .05em;
  margin-bottom: 28px;
}
.contact-intro .oval {
  width: min(300px, 70%);
  aspect-ratio: .78;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 28px;
}
.contact-intro p + p { margin-top: 1em; }
.contact-intro .btn { margin-top: 24px; }

.contact-form {
  border: 2.5px solid var(--cyan);
  border-radius: 22px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 6px 8px 0 rgba(95, 208, 231, .25);
}
.contact-form label {
  display: block;
  font-size: 14px;
  margin: 16px 0 6px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  font: inherit;
  padding: 10px 14px;
  border: 1px solid var(--pink-mid);
  border-radius: 8px;
  outline-color: var(--pink);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
  width: 100%;
  margin-top: 22px;
  border: 0;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-button);
  font-size: 17px;
  padding: 13px;
  border-radius: 12px;
  cursor: pointer;
}
.contact-form button:hover { background: var(--magenta); }

/* ---------- blog ---------- */

.filter-bar {
  background: var(--white);
  border-bottom: 1px solid #f0e2ea;
  padding: 14px 20px;
}
.filter-bar ul {
  list-style: none;
  display: flex; gap: 28px; justify-content: center;
  font-family: var(--font-serif);
  letter-spacing: .1em;
  font-size: 15px;
}
.filter-bar a { color: #85796f; text-decoration: none; }
.filter-bar a:hover, .filter-bar .active a { color: var(--pink); }

.post-list { max-width: 900px; margin: 0 auto; display: grid; gap: 32px; }
.post-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  border: 1px solid #eee;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  text-decoration: none;
  color: inherit;
}
.post-card img { width: 100%; height: 100%; object-fit: cover; }
.post-card .body { padding: 22px 26px; }
.post-card .meta { font-size: 13px; color: #6e6e6e; margin-bottom: 8px; }
.post-card .cat { color: var(--pink-light); font-size: 13px; }
.post-card h2 {
  font-family: var(--font-serif);
  color: var(--pink);
  font-size: 24px;
  letter-spacing: .04em;
  margin: 4px 0 8px;
  line-height: 1.2;
}
.post-card p { font-size: 15px; color: #444; }
@media (max-width: 640px) { .post-card { grid-template-columns: 1fr; } .post-card img { max-height: 220px; } }

/* article */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) 20px;
}
.article .cat { color: var(--pink-light); font-size: 14px; }
.article h1 {
  font-family: var(--font-serif);
  color: var(--pink);
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.15;
  letter-spacing: .03em;
  margin: 6px 0 10px;
}
.article .meta { font-size: 14px; color: #6e6e6e; margin-bottom: 28px; }
.article .cover { margin: 0 0 32px; border-radius: 8px; overflow: hidden; }
.article h2 {
  font-family: var(--font-serif);
  color: var(--pink);
  font-size: 24px;
  margin: 1.6em 0 .5em;
}
.article p + p { margin-top: 1em; }
.article ul, .article ol { margin: 1em 0 1em 1.4em; }
.article li + li { margin-top: .5em; }
.article .signoff { margin-top: 2em; font-weight: 700; }
.article .quote-list p { font-style: italic; font-weight: 400; margin-top: .4em !important; }

.recent {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px clamp(40px, 6vw, 72px);
}
.recent h2 {
  font-family: var(--font-serif);
  color: var(--pink);
  letter-spacing: .05em;
  margin-bottom: 18px;
}
.recent ul { list-style: none; display: grid; gap: 10px; }
.recent a { font-weight: 700; }

/* ---------- svg word art ---------- */

.wordart { display: block; height: auto; }
.wordart.center { margin-inline: auto; }

.hero-art { display: grid; gap: 10px; justify-items: start; }
.hero-art .l1 { display: flex; align-items: center; gap: 4%; width: 100%; }
.hero-art .a-turn  { width: 42%; }
.hero-art .a-pain  { width: 24%; margin-top: -4%; }
.hero-art .a-into  { width: 22%; }
.hero-art .a-power { width: 92%; }

.tagline-art { display: flex; align-items: center; gap: 3%; width: 88%; margin: 18px 0 26px; }
.tagline-art img { height: auto; }
.tagline-art .t-script { width: 17%; }
.tagline-art .t-serif  { width: 24%; }

.statement .grow-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: -10px;
}
.statement .grow-row .a-amp  { width: clamp(46px, 6vw, 90px); margin-top: -3%; }
.statement .grow-row .a-grow { width: clamp(220px, 34vw, 480px); }

.band .a-hello { width: clamp(240px, 30vw, 400px); }

.flawsome .a-unapologetically { width: clamp(300px, 52vw, 760px); margin: 0 auto -1.5%; }

.wordmark .a-pre { margin: 0 auto 6px; }
.wordmark .a-lets { width: clamp(90px, 10vw, 140px); display: inline-block; vertical-align: baseline; }
.wordmark .a-get  { width: clamp(80px, 9vw, 125px); display: inline-block; vertical-align: baseline; margin-left: 12px; }
.wordmark .a-our  { width: clamp(90px, 10vw, 145px); }

.testimonials .a-clients { width: clamp(280px, 44vw, 620px); margin: 0 auto 4px; }
.testimonials .a-quotes  { width: 64px; margin: 0 auto 18px; opacity: .8; }

.cta-band .a-ready  { width: clamp(280px, 46vw, 640px); margin: 0 auto 6px; position: relative; }
.cta-band .a-rooted { width: clamp(200px, 28vw, 360px); margin: 14px auto 0; position: relative; }

.page-hero .a-script { margin: 0 auto; }

/* ---------- misc ---------- */

.leaf-accent { color: var(--cyan); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}

/* ============================================================
   2026 transformation — Shannon's brand, professional structure
   ============================================================ */

/* ---------- section heading pattern ---------- */

.sec-head { text-align: center; max-width: 760px; margin: 0 auto clamp(36px, 5vw, 60px); }
.sec-head .eyebrow-sm {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.sec-head h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--ink);
}
.sec-head h2 em { font-style: normal; font-weight: 700; color: var(--pink); }
.sec-head .script-accent {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--pink);
  font-size: 1em;
  font-style: normal;
}
.sec-head .sub { margin-top: 16px; color: #4a4145; }

/* ---------- three doors ---------- */

.doors {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.door {
  position: relative;
  background: var(--white);
  border: 1px solid #f3dbe9;
  border-top: 5px solid var(--pink);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(179, 6, 127, .07);
  padding: clamp(28px, 3.5vw, 40px) clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s, box-shadow .2s;
}
.door:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(179, 6, 127, .14); }
.door.t-teal { border-top-color: var(--cyan); }
.door.t-gold { border-top-color: var(--gold); }
.door .division {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.door.t-teal .division { color: var(--cyan); }
.door.t-gold .division { color: #8a6114; }
.door h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(24px, 2.7vw, 31px);
  line-height: 1.12;
  margin-bottom: 14px;
}
.door p { font-size: 16px; color: #4a4145; flex: 1; }
.door .go {
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
}
.door.t-teal .go { color: var(--cyan); }
.door.t-gold .go { color: #8a6114; }

/* ---------- is this you / what changes ---------- */

.yougrid {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 780px) { .yougrid { grid-template-columns: 1fr; } }
.youcol {
  background: var(--white);
  border-radius: 12px;
  padding: clamp(26px, 3vw, 40px);
  box-shadow: 0 8px 28px rgba(179, 6, 127, .08);
}
.youcol h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(23px, 2.6vw, 29px);
  margin-bottom: 18px;
}
.youcol h3 .scr { font-family: var(--font-script); color: var(--pink); font-weight: 700; font-size: 1em; }
.youcol ul { list-style: none; }
.youcol li {
  padding: 10px 0 10px 34px;
  position: relative;
  font-size: 16px;
  color: #3f373b;
}
.youcol li + li { border-top: 1px dashed #f3d7e6; }
.youcol li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blush);
}
.youcol li::after {
  content: "";
  position: absolute;
  left: 5px; top: 17px;
  width: 10px; height: 6px;
  border-left: 2.5px solid var(--pink);
  border-bottom: 2.5px solid var(--pink);
  transform: rotate(-45deg);
}
.youcol.changes li::before { background: #e2f5f8; }
.youcol.changes li::after { border-color: var(--cyan); }

/* ---------- how I help (3 steps) ---------- */

.steps {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(22px, 3vw, 40px);
}
.step { text-align: center; padding: 0 8px; }
.step .n {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 54px;
  line-height: 1;
  color: var(--pink);
  display: block;
}
.step .n::after {
  content: "";
  display: block;
  width: 44px; height: 3px;
  margin: 14px auto 18px;
  background: var(--gold);
  border-radius: 2px;
}
.step h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 10px;
}
.step p { font-size: 16px; color: #4a4145; }

/* ---------- roots band (why "Showing My Roots") ---------- */

.roots-band {
  position: relative;
  background: linear-gradient(115deg, var(--magenta), var(--pink) 60%, #ef5ba1);
  color: var(--white);
  padding: clamp(64px, 9vw, 120px) 20px;
  overflow: hidden;
}
.roots-band::after {
  /* soft blossom glow */
  content: "";
  position: absolute;
  right: -140px; top: -140px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 65%);
}
.roots-band .inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
.roots-band .script-lead {
  font-family: var(--font-script);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1;
  margin-bottom: 14px;
  opacity: .92;
}
.roots-band h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.15;
  margin-bottom: 22px;
}
.roots-band p {
  font-size: clamp(16px, 1.9vw, 18.5px);
  line-height: 1.7;
  max-width: 44em;
  margin: 0 auto;
}
.roots-band p + p { margin-top: 1em; }
.roots-band .deep {
  margin-top: 26px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 27px);
  line-height: 1.4;
}

/* ---------- meet shannon ---------- */

.meet {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 760px) { .meet { grid-template-columns: 1fr; } }
.meet .photo img {
  width: 100%;
  aspect-ratio: .85;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
}
.meet .photo { position: relative; }
.meet .photo::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 2px solid var(--pink-light);
  border-radius: 12px;
  z-index: -1;
}
.meet .photo::before {
  content: "";
  position: absolute;
  left: -22px; bottom: -22px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95,208,231,.35), transparent 70%);
  z-index: -1;
}
.meet .kicker-words {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.meet h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  margin-bottom: .5em;
}
.meet h2 em { font-style: normal; font-weight: 700; color: var(--pink); }
.meet p { color: #3f373b; }
.meet p + p { margin-top: 1em; }
.meet .actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

/* community / credential chips */
.chips { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .04em;
  color: var(--magenta);
  background: var(--blush);
  border: 1px solid var(--pink-pale);
  border-radius: 999px;
  padding: 7px 16px;
}
.chip.teal { color: #0b7f8b; background: #e9f7f9; border-color: #bfe8ee; }

/* ---------- seminars page ---------- */

.seminar-intro {
  max-width: 780px;
  margin: 0 auto clamp(40px, 6vw, 72px);
  text-align: center;
  color: #3f373b;
}
.seminar-intro p + p { margin-top: 1em; }

.track { max-width: 900px; margin: 0 auto clamp(48px, 7vw, 88px); }
.track-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-bottom: 3px solid var(--pink);
  padding-bottom: 14px;
  margin-bottom: 8px;
}
.track-head .track-letter {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 600;
  color: var(--pink);
  line-height: 1;
}
.track-head h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
}
.track-head .aud {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
  white-space: nowrap;
}
@media (max-width: 640px) { .track-head { flex-wrap: wrap; } .track-head .aud { margin-left: 0; } }

.course {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px 22px;
  padding: 22px 0;
  border-bottom: 1px solid #f6dcea;
}
.course .code {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--pink);
  font-weight: 600;
}
.course h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.2;
}
.course p { grid-column: 2; font-size: 16px; color: #4a4145; }
@media (max-width: 520px) {
  .course { grid-template-columns: 1fr; }
  .course p { grid-column: 1; }
}

.formats {
  background: var(--blush);
  padding: clamp(40px, 6vw, 72px) 20px;
}
.formats .inner { max-width: 900px; margin: 0 auto; }
.formats h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 24px;
  text-align: center;
}
.format-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.format {
  background: var(--white);
  border-radius: 10px;
  border-top: 4px solid var(--pink);
  box-shadow: 0 6px 20px rgba(179, 6, 127, .07);
  padding: 22px 24px;
  text-align: center;
}
.format .fmt-name {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 6px;
}
.format p { font-size: 14px; color: #4a4145; }
.formats .includes {
  text-align: center;
  font-size: 15px;
  color: #3f373b;
  max-width: 640px;
  margin: 0 auto;
}

.bridge {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(48px, 7vw, 88px) 20px;
}
.bridge blockquote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  font-style: normal;
  line-height: 1.4;
  color: var(--ink);
}
.bridge blockquote em { color: var(--pink); }
.bridge .attr {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--cyan);
}

/* ---------- offer blocks (stylist launch / salon pro) ---------- */

.offers {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.offer {
  background: var(--white);
  border: 1px solid #f3dbe9;
  border-radius: 10px;
  padding: 28px 28px 32px;
  box-shadow: 0 8px 24px rgba(179, 6, 127, .06);
}
.offer .tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.offer h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 10px;
}
.offer p { font-size: 15.5px; color: #4a4145; }

/* story pull-quote (stylist launch) */
.pull {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
.pull .scr {
  font-family: var(--font-script);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--pink);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.pull p {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.65;
  color: #3f373b;
}
