/* =============================================================
   Dr Wendy Erskine — Main Stylesheet
   All styles for index.html and service-academic-support.html
   ============================================================= */

/* ══════════════════════════════════════════
   TOKENS
══════════════════════════════════════════ */
:root {
  /* Base */
  --white:       #ffffff;
  --ink:         #2b2520;
  --ink-70:      rgba(43,37,32,0.70);
  --ink-50:      rgba(43,37,32,0.50);
  --ink-30:      rgba(43,37,32,0.30);
  --ink-12:      rgba(43,37,32,0.12);
  --ink-06:      rgba(43,37,32,0.06);

  /* Mauve primary brand colour */
  --mauve:       #7a6882;
  --mauve-mid:   #a690b0;
  --mauve-light: #d4c4d9;
  --mauve-wash:  #f6f1f8;
  --mauve-ink:   #4a3d54;
  --mauve-12:    rgba(122,104,130,0.12);
  --mauve-06:    rgba(122,104,130,0.06);

  /* Gold accent */
  --gold:        #b8925a;
  --gold-mid:    #c9a96e;
  --gold-light:  #e8d4af;

  /* Dark panel */
  --dark:        #3a2f43;
  --dark-2:      #2e2438;

  /* Dark panel overlay helpers */
  --white-08:    rgba(255,255,255,0.08);
  --white-10:    rgba(255,255,255,0.10);
  --white-12:    rgba(255,255,255,0.12);
  --white-55:    rgba(255,255,255,0.55);
  --white-28:    rgba(255,255,255,0.28);
  --white-40:    rgba(255,255,255,0.40);

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --max-w:    1140px;
  --px:       clamp(1.5rem, 5vw, 6rem);
  --py:       clamp(3.5rem, 6vw, 7rem);
  --py-sm:    clamp(2rem, 3.5vw, 4rem);

  --ease:     cubic-bezier(0.25, 0.1, 0.25, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 0.88rem + 0.28vw, 1.0625rem);
  line-height: 1.72;
  background: var(--mauve-wash);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-body); font-size: 0.6875rem;
  font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mauve);
}
.eyebrow::before, .eyebrow::after {
  content: ''; width: 1.75rem; height: 1px; background: var(--mauve-light);
}
.eyebrow--spaced    { margin-bottom: 1.25rem; display: inline-flex; }
.eyebrow--spaced-lg { margin-bottom: 1.5rem;  display: inline-flex; }
.eyebrow--light { color: var(--mauve-light); margin-bottom: 1.25rem; display: inline-flex; }
.eyebrow--light::before, .eyebrow--light::after { background: rgba(212,196,217,0.3); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 4.25rem);
  font-weight: 300; line-height: 1.08; letter-spacing: -0.015em;
}
.section-title em          { font-style: italic; color: var(--gold); }
.section-title--spaced     { margin-bottom: 1rem; }
.section-title--block      { display: block; margin-top: 0.5rem; }
.section-title--testimonial { margin: 1.25rem 0 2rem; color: var(--white); }
.section-title--testimonial em { color: var(--gold-light); }

.em--gold-light { color: var(--gold-light); }

.btn {
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 0.8em 2em; font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border: 1.5px solid currentColor;
  background: transparent; transition: background 0.22s var(--ease), color 0.22s var(--ease);
}
.btn svg { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 1.75; flex-shrink: 0; transition: transform 0.22s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--mauve       { color: var(--mauve); }
.btn--mauve:hover { background: var(--mauve); color: var(--white); }
.btn--solid-mauve { background: var(--mauve); color: var(--white); border-color: var(--mauve); }
.btn--solid-mauve:hover { background: var(--mauve-ink); border-color: var(--mauve-ink); }
.btn--gold        { color: var(--gold); border-color: var(--gold); }
.btn--gold:hover  { background: var(--gold); color: var(--white); }
.btn--gold-light  { color: var(--gold-light); border-color: var(--gold-light); padding-left: 3em; padding-right: 3em; }
.btn--gold-light:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn--dark        { color: var(--white); border-color: var(--white); }
.btn--dark:hover  { background: var(--white); color: var(--dark); }
.btn--ink         { color: var(--ink); border-color: var(--ink); }
.btn--ink:hover   { background: var(--ink); color: var(--white); }
.btn--solid-gold  { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn--solid-gold:hover { background: var(--gold-mid); border-color: var(--gold-mid); }
.btn--outline     { color: var(--ink); border-color: var(--ink-30); }
.btn--outline:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--dark-outline { color: var(--white-40); border-color: rgba(255,255,255,0.25); }
.btn--dark-outline:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--full { width: 100%; justify-content: center; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--ink-12);
  padding: 1.125rem var(--px);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__mobile-menu { display: none; }
.nav__hamburger   { display: none; }
.nav__logo {
  font-family: var(--font-head); font-size: 1.1875rem;
  font-weight: 500; color: var(--ink); text-decoration: none;
  letter-spacing: 0.005em;
}
.nav__back { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-50); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.nav__back:hover { color: var(--ink); }
.nav__back svg { width: 0.875rem; height: 0.875rem; stroke: currentColor; fill: none; stroke-width: 1.75; }
.nav__links { display: flex; gap: 2.5rem; list-style: none; }
.nav__links a {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-50); text-decoration: none; transition: color 0.2s;
}
.nav__links a:hover { color: var(--ink); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  display: flex; flex-direction: column;
  overflow: hidden; background: var(--dark);
}
@media (min-width: 768px) {
  .hero { flex-direction: row; height: 92vh; }
}
.hero__left {
  background: var(--dark);
  padding: clamp(2.5rem, 6vw, 8rem) clamp(1.5rem, 5vw, 6rem);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; width: 100%;
}
@media (min-width: 768px) { .hero__left { width: 55%; justify-content: flex-end; } }
.hero__left::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 25% 55%, rgba(122,104,130,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero--service .hero__left { justify-content: center; }
.hero__eyebrow {
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--mauve-mid); margin-bottom: 2rem;
}
.hero__sub {
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--mauve-mid); margin-bottom: 1.25rem;
}
.hero__h1 {
  font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 7.5rem);
  font-weight: 300; line-height: 0.95; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 2.25rem;
}
.hero__h1 em { font-style: italic; color: var(--gold-light); }
.hero--service .hero__h1 { font-size: clamp(2rem, 3.5vw, 4.5rem); line-height: 1.05; }
.hero__body {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem); line-height: 1.8;
  color: rgba(255,255,255,0.62); max-width: 46ch; margin-bottom: 2.75rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__cta-group { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 480px) { .hero__cta-group { flex-direction: row; gap: 1rem; } }
.hero__tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: clamp(2.5rem, 4vw, 4rem);
  padding-top: 2rem; border-top: 1px solid var(--white-10);
}
.hero__tag {
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.42);
  padding: 0.35em 0.85em; border: 1px solid var(--white-10);
}
.hero__image-col {
  position: relative; overflow: hidden;
  height: 70vw; min-height: 300px; max-height: 520px;
}
@media (min-width: 768px) {
  .hero__image-col { width: 45%; flex: 0 1 45%; height: auto; max-height: none; min-height: 100%; }
}
.hero__image-col img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  filter: saturate(0.8);
}
.hero__image-col::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(58,47,67,0.2), transparent 40%);
}

/* ══════════════════════════════════════════
   INTRO
══════════════════════════════════════════ */
.intro { padding: clamp(2.5rem, 4vw, 5rem) var(--px); background: var(--white); }
.intro__inner { max-width: var(--max-w); margin: 0 auto; }
.intro__eyebrow { margin-bottom: 2.5rem; }
.intro__statement {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2.75rem);
  font-weight: 300; line-height: 1.45; letter-spacing: -0.01em;
  color: var(--ink); max-width: 68ch;
}
.intro__statement em { font-style: italic; color: var(--gold); }

/* ══════════════════════════════════════════
   ABOUT ROWS (index page)
══════════════════════════════════════════ */
.about { padding: 0 var(--px) var(--py); background: var(--white); }
.about__inner { max-width: var(--max-w); margin: 0 auto; }
.about__rows { display: flex; flex-direction: column; }
.about__row {
  display: grid; grid-template-columns: 12rem 1fr;
  gap: 3rem; align-items: baseline;
  padding: 2rem 0; border-top: 1px solid var(--ink-12);
}
.about__row:last-child { border-bottom: none; }
.about__label { font-family: var(--font-head); font-size: 1.125rem; font-weight: 500; color: var(--mauve); letter-spacing: 0.01em; }
.about__body  { font-size: 0.9375rem; line-height: 1.82; color: var(--ink-70); }

/* ══════════════════════════════════════════
   PILLARS (how I can help)
══════════════════════════════════════════ */
.pillars { background: var(--white); padding: var(--py) var(--px); padding-top: 0; }
.pillars__inner { max-width: var(--max-w); margin: 0 auto; }
.pillars__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem; margin-bottom: clamp(2rem, 3vw, 3.5rem);
}
.pillars__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--ink-12);
}
.pillar { padding: 3rem 3rem 3rem 0; border-right: 1px solid var(--ink-12); }
.pillar:last-child { border-right: none; padding-right: 0; }
.pillar:not(:first-child) { padding-left: 3rem; }
.pillar__num {
  font-family: var(--font-head); font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 300; line-height: 1; color: var(--ink-06);
  letter-spacing: -0.03em; margin-bottom: 1.25rem; user-select: none;
}
.pillar__title {
  font-family: var(--font-head); font-size: clamp(1.125rem, 1.4vw, 1.625rem);
  font-weight: 500; color: var(--ink); margin-bottom: 1rem;
}
.pillar__body { font-size: 0.9375rem; line-height: 1.82; color: var(--ink-70); }
.pillars--service .pillars__head { padding-top: var(--py); flex-direction: column; align-items: flex-start; gap: 0.75rem; }

/* ══════════════════════════════════════════
   VIDEO + QUOTE
══════════════════════════════════════════ */
.media-quote { padding: var(--py) var(--px); background: var(--mauve-wash); }
.media-quote__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(3rem, 7vw, 9rem); align-items: center;
}
.video-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 16/10; background: var(--dark);
}
.video-wrap img { width:100%; height:100%; object-fit:cover; opacity:0.78; transition: opacity 0.3s; }
.video-wrap:hover img { opacity: 0.62; }
.play-btn {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.1rem; background: none; border: none; color: var(--white); cursor: pointer;
}
.play-btn__circle {
  width: 4.25rem; height: 4.25rem; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.55);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, transform 0.2s;
}
.play-btn:hover .play-btn__circle { border-color: var(--gold-light); transform: scale(1.06); }
.play-btn svg { width: 1.1rem; height: 1.1rem; fill: white; stroke: none; margin-left: 0.2em; }
.play-btn__label { font-size: 0.6875rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.65; }
.mq-content__quote {
  font-family: var(--font-head); font-size: clamp(1.25rem, 2vw, 2.125rem);
  font-style: italic; font-weight: 300; line-height: 1.52;
  color: var(--ink); letter-spacing: -0.005em;
  padding-left: 2rem; border-left: 2px solid var(--gold); margin-bottom: 2.5rem;
}
.mq-trust { display: flex; flex-direction: column; gap: 0.55rem; }
.trust-item {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-50);
}
.trust-item::before {
  content: ''; width: 0.375rem; height: 0.375rem; flex-shrink: 0;
  border-radius: 50%; background: var(--gold-mid);
}

/* ══════════════════════════════════════════
   FEATURED SERVICE
══════════════════════════════════════════ */
.featured-service { padding: var(--py) var(--px); }
.featured-service__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 7vw, 9rem); align-items: center;
}
.fs-image { overflow: hidden; }
.fs-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); }
.fs-eyebrow { margin-bottom: 2rem; }
.fs-title {
  font-family: var(--font-head); font-size: clamp(1.75rem, 2.8vw, 3.25rem);
  font-weight: 300; line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 1.25rem;
}
.fs-title em { font-style: italic; color: var(--gold); }
.fs-body { font-size: 0.9375rem; line-height: 1.8; color: var(--ink-70); margin-bottom: 2rem; }
.fs-checklist { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2.5rem; }
.fs-check { display: flex; align-items: center; gap: 0.875rem; font-size: 0.875rem; color: var(--ink-70); }
.fs-check::before {
  content: ''; width: 1.25rem; height: 1.25rem; flex-shrink: 0;
  border: 1.5px solid var(--mauve-light); border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='5 10 8 13 15 7' stroke='%237a6882' stroke-width='1.75' fill='none'/%3E%3C/svg%3E") center/contain;
}

/* ══════════════════════════════════════════
   SERVICES accordion
══════════════════════════════════════════ */
.services { background: var(--white); padding: var(--py) var(--px); }
.services__inner { max-width: var(--max-w); margin: 0 auto; }
.services__head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: end;
  margin-bottom: clamp(2rem, 3vw, 3.5rem);
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--ink-12);
}
.services__sub { font-size: 0.9375rem; line-height: 1.8; color: var(--ink-70); }
.services__cols { display: flex; flex-direction: column; gap: 0; }
@media (min-width: 768px) { .services__cols { flex-direction: row; gap: 3rem; } }
.services__col { flex: 1; display: flex; flex-direction: column; }
.svc-item { border-top: 1px solid var(--mauve-12); }
.svc-item:last-child { border-bottom: 1px solid var(--mauve-12); }
.services__col .svc-item:first-child { border-top: none; }
.svc-btn {
  width: 100%; display: flex; align-items: center; gap: 0.875rem;
  padding: 1.5rem 0; background: none; border: none; text-align: left; cursor: pointer;
}
@media (min-width: 768px) { .svc-btn { padding: 1.75rem 0; } }
.svc-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 1.125rem; height: 1.125rem; color: var(--gold); }
.svc-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.25; }
.svc-title {
  flex: 1; min-width: 0; font-family: var(--font-head); font-weight: 400;
  font-size: clamp(1rem, 1.2vw, 1.25rem); color: var(--ink); line-height: 1.3;
  padding-right: 0.5rem; transition: color 0.25s;
}
.svc-btn:hover .svc-title,
.svc-btn[aria-expanded="true"] .svc-title { color: var(--gold); }
.svc-toggle { display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--mauve-mid); transition: transform 0.3s, color 0.25s; }
.svc-toggle svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 1.75; }
.svc-btn[aria-expanded="true"] .svc-toggle { transform: rotate(45deg); color: var(--ink); }
.svc-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem; font-size: 0.875rem; color: var(--gold); text-decoration: none; transition: color 0.2s; }
.svc-link:hover { color: var(--ink); }
.svc-link svg { width: 0.875rem; height: 0.875rem; stroke: currentColor; fill: none; stroke-width: 1.75; }
.svc-panel { overflow: hidden; max-height: 0; transition: max-height 0.4s ease-out; }
.svc-panel.open { max-height: 600px; }
.svc-panel-inner { padding: 0 1rem 1.5rem 2.5rem; }
@media (min-width: 768px) { .svc-panel-inner { padding: 0 1rem 1.75rem 3rem; } }
.svc-panel-inner p { font-size: 0.875rem; line-height: 1.78; color: var(--ink-70); margin-bottom: 1rem; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.svc-tag { padding: 0.2em 0.6em; background: var(--mauve-wash); color: var(--ink-50); font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.04em; }

/* ══════════════════════════════════════════
   EXPERIENCE dark section
══════════════════════════════════════════ */
.experience { background: var(--dark); color: var(--white); padding: var(--py) var(--px); }
.experience__inner { max-width: var(--max-w); margin: 0 auto; }
.exp-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end;
  margin-bottom: clamp(2rem, 3vw, 3.5rem);
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--white-10);
}
.exp-head .section-title em { color: var(--mauve-light); }
.exp-head-sub { font-size: 0.9375rem; line-height: 1.8; color: var(--white-55); }
.exp-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.exp-card {
  padding: 2.5rem 2.5rem 2.5rem 0;
  border-right: 1px solid var(--white-08);
  border-bottom: 1px solid var(--white-08);
}
.exp-card:nth-child(3n)              { border-right: none; padding-right: 0; }
.exp-card:nth-child(3n+2),
.exp-card:nth-child(3n+3)            { padding-left: 2.5rem; }
.exp-card:nth-child(n+4)             { border-bottom: none; }
.exp-card__icon { width: 1.75rem; height: 1.75rem; margin-bottom: 1.25rem; color: var(--mauve-light); }
.exp-card__icon svg { width:100%; height:100%; stroke:currentColor; fill:none; stroke-width:1.25; }
.exp-card__title { font-family: var(--font-head); font-size: 1.125rem; font-weight: 500; color: var(--white); margin-bottom: 0.75rem; }
.exp-card__body  { font-size: 0.875rem; line-height: 1.78; color: rgba(255,255,255,0.52); }
.exp-quals { margin-top: clamp(2.5rem, 4vw, 4rem); padding-top: 2.5rem; }
.exp-quals__title {
  font-family: var(--font-head); font-size: clamp(1.25rem, 2vw, 1.875rem);
  font-weight: 300; line-height: 1.2; letter-spacing: -0.01em;
  color: rgba(255,255,255,0.75); margin-bottom: 1.75rem;
}
.exp-quals__title em { font-style: italic; color: var(--gold-light); }
.exp-quals__grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0;
  border-top: 1px solid var(--white-08);
}
.exp-qual {
  padding: 1.25rem 1.5rem 1.25rem 0;
  border-right: 1px solid var(--white-08);
  border-bottom: 1px solid var(--white-08);
  display: flex; flex-direction: column; gap: 0.2rem;
}
.exp-qual:nth-child(3n)              { border-right: none; padding-right: 0; }
.exp-qual:nth-child(3n+2),
.exp-qual:nth-child(3n+3)            { padding-left: 1.5rem; }
.exp-qual:nth-child(n+4)             { border-bottom: none; }
.exp-qual__abbr { font-family: var(--font-head); font-size: 1.5rem; font-weight: 300; line-height: 1; letter-spacing: -0.02em; color: var(--gold-light); }
.exp-qual__full { font-size: 0.8125rem; line-height: 1.55; color: rgba(255,255,255,0.55); }
.exp-quote {
  margin-top: clamp(3rem, 5vw, 5.5rem);
  font-family: var(--font-head); font-size: clamp(1.125rem, 2vw, 2rem);
  font-style: italic; font-weight: 300; line-height: 1.52;
  color: rgba(255,255,255,0.62);
  text-align: center; max-width: 70ch; margin-left: auto; margin-right: auto;
}

/* ══════════════════════════════════════════
   VALUES
══════════════════════════════════════════ */
.values { padding: var(--py) var(--px); background: var(--mauve-wash); }
.values__inner { max-width: var(--max-w); margin: 0 auto; }
.values__head { text-align: center; margin-bottom: clamp(2rem,3vw,3.5rem); }
.values__head .eyebrow { margin-bottom: 1.25rem; }
.values__head .section-title { display: block; }
.values__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.val-card { background: var(--white); padding: 3rem 2.5rem; }
.val-icon { width: 2.25rem; height: 2.25rem; margin-bottom: 1.75rem; color: var(--mauve); }
.val-icon svg { width:100%; height:100%; stroke:currentColor; fill:none; stroke-width:1.25; }
.val-title { font-family: var(--font-head); font-size: 1.375rem; font-weight: 500; margin-bottom: 0.875rem; }
.val-body  { font-size: 0.9375rem; line-height: 1.8; color: var(--ink-70); }

/* ══════════════════════════════════════════
   QUALIFICATIONS
══════════════════════════════════════════ */
.quals { padding: var(--py) var(--px); background: var(--mauve-wash); }
.quals__inner { max-width: var(--max-w); margin: 0 auto; }
.quals__head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end;
  margin-bottom: clamp(3rem,5vw,5.5rem);
  padding-bottom: 3rem; border-bottom: 1px solid var(--ink-12);
}
.quals__sub { font-size: 0.9375rem; line-height: 1.8; color: var(--ink-70); }
.quals__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.qual-item { background: var(--white); padding: 2.25rem 2rem; }
.qual-abbr { font-family: var(--font-head); font-size: 2.25rem; font-weight: 300; line-height: 1; letter-spacing: -0.02em; color: var(--gold); margin-bottom: 0.35rem; }
.qual-full   { font-family: var(--font-head); font-size: 1rem; font-weight: 500; color: var(--ink); margin-bottom: 0.2rem; }
.qual-detail { font-size: 0.8125rem; color: var(--ink-50); }
.quals__foot { margin-top: 2.5rem; text-align: center; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-50); }
.quals__foot span { margin: 0 0.6rem; color: var(--gold-mid); }

/* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */
.pricing { padding: var(--py) var(--px); background: var(--white); }
.pricing__inner { max-width: var(--max-w); margin: 0 auto; }
.pricing__head { text-align: center; margin-bottom: clamp(3rem,5vw,5.5rem); }
.pricing__head .eyebrow { margin-bottom: 1.25rem; }
.pricing__head .section-title { margin-bottom: 1rem; }
.pricing__head-sub { font-size: 0.9375rem; color: var(--ink-70); max-width: 54ch; margin: 0 auto; }
.pricing__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.price-card { background: var(--mauve-wash); padding: 2.5rem 2.5rem; position: relative; display: flex; flex-direction: column; }
.price-card--featured { background: var(--dark); }
.price-card__badge {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: var(--gold); color: var(--white);
  font-size: 0.625rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.35em 0.9em; white-space: nowrap;
}
.price-card__name { font-size: 0.625rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 0.75rem; }
.price-card--featured .price-card__name { color: var(--white-40); }
.price-card__price-row { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--ink-12); }
.price-card--featured .price-card__price-row { border-bottom-color: var(--white-12); }
.price-card__amount { font-family: var(--font-head); font-size: clamp(1.75rem, 2.8vw, 2.5rem); font-weight: 300; line-height: 1; letter-spacing: -0.02em; color: var(--gold); }
.price-card__period { font-size: 0.8125rem; color: var(--ink-50); }
.price-card--featured .price-card__period { color: var(--white-40); }
.price-card__body { font-size: 0.875rem; line-height: 1.78; color: var(--ink-70); margin-bottom: 1.25rem; }
.price-card--featured .price-card__body { color: rgba(255,255,255,0.58); }
.price-card__list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-top: auto; }
.price-card__li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: var(--ink-70); }
.price-card--featured .price-card__li { color: rgba(255,255,255,0.6); }
.price-card__li::before {
  content: ''; width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.15em;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='4 10 8 14 16 6' stroke='%237a6882' stroke-width='1.75' fill='none'/%3E%3C/svg%3E") center/contain;
}
.price-card--featured .price-card__li::before {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='4 10 8 14 16 6' stroke='%23d4c4d9' stroke-width='1.75' fill='none'/%3E%3C/svg%3E") center/contain;
}
.pricing__foot { margin-top: 3rem; text-align: center; font-size: 0.875rem; line-height: 1.8; color: var(--ink-50); }
/* Service page: 2 cards centred */
.pricing--service .pricing__grid { grid-template-columns: 1fr 1fr; max-width: 760px; margin: 0 auto; }
/* Service page: full-width submit */
.contact--service .cform .btn { align-self: stretch; width: 100%; justify-content: center; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials { padding: var(--py) var(--px); background: var(--dark); color: var(--white); }
.testimonials__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.testimonials__inner .eyebrow { color: var(--mauve-light); margin-bottom: 2.5rem; }
.testimonials__inner .eyebrow::before,.testimonials__inner .eyebrow::after { background: rgba(196,208,197,0.3); }
.test-stars { display: flex; justify-content: center; gap: 0.3rem; margin-bottom: 2.5rem; }
.test-stars svg { width: 1rem; height: 1rem; fill: var(--gold); stroke: none; }
.test-quote { font-family: var(--font-head); font-size: clamp(1.25rem, 2.5vw, 2.25rem); font-style: italic; font-weight: 300; line-height: 1.5; color: rgba(255,255,255,0.82); margin-bottom: 2rem; }
.test-name { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.42); }
.test-controls { display: flex; justify-content: center; gap: 0.75rem; margin-top: 3rem; }
.test-btn { width: 2.75rem; height: 2.75rem; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: none; color: rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, color 0.2s; }
.test-btn:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }
.test-btn svg { width: 0.875rem; height: 0.875rem; stroke: currentColor; fill: none; stroke-width: 1.75; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq { padding: var(--py) var(--px); background: var(--mauve-wash); }
.faq__inner { max-width: var(--max-w); margin: 0 auto; }
.faq__head { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: clamp(2rem,3vw,3.5rem); padding-bottom: 2.5rem; border-bottom: 1px solid var(--ink-12); }
.faq__sub { font-size: 0.9375rem; line-height: 1.8; color: var(--ink-70); }
.faq__list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--ink-12); }
.faq-item:first-child { border-top: none; }
.faq-item:last-child { border-bottom: 1px solid var(--ink-12); }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.5rem 0; background: none; border: none; text-align: left; cursor: pointer; }
.faq-q { font-family: var(--font-head); font-size: clamp(1rem, 1.2vw, 1.25rem); font-weight: 500; color: var(--ink); line-height: 1.3; flex: 1; transition: color 0.25s; }
.faq-btn:hover .faq-q,
.faq-btn[aria-expanded="true"] .faq-q { color: var(--gold); }
.faq-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--mauve-mid); transition: transform 0.3s, color 0.25s; }
.faq-icon svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 1.75; }
.faq-btn[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--ink); }
.faq-panel { overflow: hidden; max-height: 0; transition: max-height 0.4s ease-out; }
.faq-panel.open { max-height: 600px; }
.faq-a { font-size: 0.9375rem; line-height: 1.82; color: var(--ink-70); max-width: 72ch; padding-bottom: 1.5rem; display: block; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact { padding: var(--py) var(--px); background: var(--white); }
.contact__inner { max-width: var(--max-w); margin: 0 auto; }
.contact__head { text-align: center; margin-bottom: clamp(2rem,3vw,3.5rem); }
.contact__head .eyebrow { margin-bottom: 1.25rem; }
.contact__head .section-title { margin-bottom: 1rem; }
.contact__sub { font-size: 0.9375rem; color: var(--ink-70); max-width: 52ch; margin: 0 auto; }
.contact__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 2rem; }
.cdet { display: flex; align-items: flex-start; gap: 1rem; }
.cdet__icon { width: 1.5rem; height: 1.5rem; flex-shrink: 0; margin-top: 0.05rem; color: var(--mauve); }
.cdet__icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.25; }
.cdet__label { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 0.15rem; line-height: 1.5rem; }
.cdet__val { font-family: var(--font-head); font-size: 1.125rem; font-weight: 400; color: var(--ink); text-decoration: none; }
.cdet__val:hover  { color: var(--mauve); }
.cdet__val--muted { color: var(--ink-50); }
.contact-note { font-size: 0.875rem; line-height: 1.78; color: var(--ink-50); padding-top: 2rem; border-top: 1px solid var(--ink-12); }
.cform { display: flex; flex-direction: column; gap: 1.25rem; }
.field { position: relative; }
.field input,.field select,.field textarea { width: 100%; font-family: var(--font-body); font-size: 0.9375rem; color: var(--ink); background: var(--white); border: 1.5px solid var(--ink-12); padding: 1.5rem 1.25rem 0.6rem; transition: border-color 0.2s; -webkit-appearance: none; appearance: none; }
.field textarea { resize: vertical; min-height: 7rem; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--mauve); }
.field label { position: absolute; left: 1.25rem; top: 50%; transform: translateY(-50%); font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-50); pointer-events: none; transition: top 0.18s, font-size 0.18s, color 0.18s; }
.field textarea ~ label { top: 1.5rem; transform: none; }
.field input:focus ~ label, .field input:not(:placeholder-shown) ~ label,
.field select:focus ~ label, .field select:valid ~ label,
.field textarea:focus ~ label, .field textarea:not(:placeholder-shown) ~ label { top: 0.4rem; transform: none; font-size: 0.625rem; color: var(--mauve); }
.field input::placeholder, .field textarea::placeholder { color: transparent; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field--select-wrap { position: relative; }
.field-select__arrow { position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--ink-50); }
.field-select__arrow svg { width: 0.875rem; height: 0.875rem; stroke: currentColor; fill: none; stroke-width: 2; }
.cform .btn { align-self: flex-start; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: var(--dark); padding: 2.5rem var(--px); }
.footer__inner { max-width: var(--max-w); margin: 0 auto; }
.footer__main { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; padding-bottom: 1.75rem; border-bottom: 1px solid var(--white-10); margin-bottom: 1.25rem; }
.footer__brand-name { font-family: var(--font-head); font-size: 1.125rem; font-weight: 400; color: var(--white); display: block; margin-bottom: 0.25rem; }
.footer__tagline { font-size: 0.8125rem; line-height: 1.6; color: var(--white-40); }
.footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 3rem; }
.footer__nav a { font-size: 0.8125rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; white-space: nowrap; }
.footer__nav a:hover { color: var(--white); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer__copy, .footer__loc { font-size: 0.75rem; color: var(--white-28); letter-spacing: 0.04em; }

/* ══════════════════════════════════════════
   WHATSAPP FAB
══════════════════════════════════════════ */
.wa-btn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 50;
  width: 3.25rem; height: 3.25rem; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2); transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,0.28); }
.wa-btn svg { width: 1.5rem; height: 1.5rem; fill: white; stroke: none; }

/* ══════════════════════════════════════════
   SERVICE PAGE COMPONENTS
══════════════════════════════════════════ */
.from-wendy { padding: var(--py) var(--px); background: var(--white); }
.from-wendy__inner { max-width: var(--max-w); margin: 0 auto; }
.from-wendy__eyebrow { margin-bottom: 2.5rem; }
.from-wendy__lead { font-family: var(--font-head); font-size: clamp(1.25rem, 2vw, 2rem); font-weight: 300; line-height: 1.5; letter-spacing: -0.01em; color: var(--ink); max-width: 68ch; margin-bottom: clamp(2.5rem, 4vw, 4rem); }

/* About rows — shared pattern, used on service page */
.about-rows { display: flex; flex-direction: column; }
.about-row { display: grid; grid-template-columns: 12rem 1fr; gap: 3rem; align-items: baseline; padding: 2rem 0; border-top: 1px solid var(--ink-12); }
.about-row:last-child { border-bottom: none; }
.about-row__label { font-family: var(--font-head); font-size: 1.125rem; font-weight: 500; color: var(--mauve); letter-spacing: 0.01em; }
.about-row__body  { font-size: 0.9375rem; line-height: 1.82; color: var(--ink-70); }

/* How It Works */
.process { background: var(--dark); color: var(--white); padding: var(--py) var(--px); }
.process__inner { max-width: var(--max-w); margin: 0 auto; }
.process__head { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: clamp(2rem, 3vw, 3.5rem); padding-bottom: 2.5rem; border-bottom: 1px solid var(--white-10); }
.process__head .section-title { color: var(--white); }
.process__head .section-title em { color: var(--mauve-light); }
.process__head-sub { font-size: 0.9375rem; line-height: 1.8; color: var(--white-55); }
.process__grid { display: grid; grid-template-columns: repeat(3,1fr); }
.step { padding: 2.5rem 2.5rem 2.5rem 0; border-right: 1px solid var(--white-08); }
.step:last-child { border-right: none; padding-right: 0; }
.step:not(:first-child) { padding-left: 2.5rem; }
.step__icon  { width: 1.75rem; height: 1.75rem; margin-bottom: 1rem; color: var(--mauve-light); }
.step__icon svg { width:100%; height:100%; stroke:currentColor; fill:none; stroke-width:1.25; }
.step__num   { font-size: 0.625rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.5rem; opacity: 0.7; }
.step__title { font-family: var(--font-head); font-size: 1.25rem; font-weight: 500; color: var(--white); margin-bottom: 0.75rem; }
.step__body  { font-size: 0.875rem; line-height: 1.78; color: var(--white-55); }

/* ══════════════════════════════════════════
   THANK YOU PAGE
══════════════════════════════════════════ */
.thankyou { min-height: calc(100vh - 4rem); display: flex; align-items: center; justify-content: center; padding: var(--py) var(--px); background: var(--white); }
.thankyou__inner { max-width: 580px; width: 100%; display: flex; flex-direction: column; align-items: flex-start; gap: 2rem; }
.thankyou__heading { font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }
.thankyou__heading em { font-style: italic; color: var(--gold); }
.thankyou__body { font-size: 1rem; line-height: 1.78; color: var(--ink-70); }
.thankyou__body a { color: var(--mauve); text-decoration: none; }
.thankyou__body a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   RESPONSIVE — single consolidated block
══════════════════════════════════════════ */
@media (max-width: 960px) {
  /* Layout */
  .hero                  { grid-template-columns: 1fr; }
  .media-quote__inner    { grid-template-columns: 1fr; gap: 3rem; }
  .featured-service__inner { grid-template-columns: 1fr; }
  .services__head        { grid-template-columns: 1fr; gap: 1.5rem; }
  .exp-head              { grid-template-columns: 1fr; gap: 2rem; }
  .faq__head             { grid-template-columns: 1fr; gap: 2rem; }
  .contact__grid         { grid-template-columns: 1fr; gap: 3rem; }
  .footer__main          { grid-template-columns: 1fr; gap: 2rem; }

  /* About rows */
  .about__row  { grid-template-columns: 1fr; gap: 0.5rem; }
  .about-row   { grid-template-columns: 1fr; gap: 0.5rem; }

  /* Pillars */
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--ink-12); padding: 2.5rem 0; }
  .pillar:last-child { border-bottom: none; }
  .pillar:not(:first-child) { padding-left: 0; }
  .pillar__num { margin-bottom: 0.5rem; }

  /* Experience grid — 2 col */
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .exp-card:nth-child(3n)   { border-right: 1px solid var(--white-08); padding-right: 2.5rem; }
  .exp-card:nth-child(2n)   { border-right: none; padding-right: 0; padding-left: 2.5rem; }
  .exp-card:nth-child(2n+1) { padding-left: 0; }
  .exp-card                 { border-bottom: 1px solid var(--white-08) !important; }
  .exp-card:nth-child(n+4)  { border-bottom: 1px solid var(--white-08) !important; }
  .exp-card:nth-last-child(-n+2) { border-bottom: none !important; }

  /* Quals grid — 2 col */
  .exp-quals__grid { grid-template-columns: 1fr 1fr; }
  .exp-qual:nth-child(3n) { border-right: 1px solid var(--white-08); padding-right: 1.5rem; }
  .exp-qual:nth-child(2n) { border-right: none; padding-right: 0; padding-left: 1.5rem; }
  .exp-qual:nth-child(2n+1) { padding-left: 0; }
  .exp-qual                 { border-bottom: 1px solid var(--white-08) !important; }
  .exp-qual:nth-child(n+4)  { border-bottom: 1px solid var(--white-08) !important; }
  .exp-qual:nth-last-child(-n+2) { border-bottom: none !important; }

  /* Values */
  .values__grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing__grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Process / steps */
  .process__head { grid-template-columns: 1fr; gap: 1.5rem; }
  .process__grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--white-08); padding: 2rem 0; }
  .step:not(:first-child) { padding-left: 0; }
  .step:last-child { border-bottom: none; }
  .step__icon { margin-bottom: 0.5rem; }

  /* Contact details side-by-side */
  .contact-details { flex-direction: row; flex-wrap: wrap; gap: 1.5rem 3rem; justify-content: center; }
  .cdet { flex: 0 1 auto; }

  /* Nav mobile */
  .nav__links   { display: none; }
  .nav__cta     { display: none; }
  .nav__hamburger {
    display: flex; flex-direction: column; justify-content: center;
    gap: 5px; background: none; border: none; cursor: pointer;
    padding: 4px; width: 32px; height: 32px;
  }
  .nav__hamburger span {
    display: block; height: 2px; background: var(--ink);
    border-radius: 2px; transition: transform 0.25s, opacity 0.25s;
  }
  .nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav__mobile-menu {
    display: none; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--ink-12);
    padding: 0.5rem var(--px) 1.5rem; z-index: 59;
    transform: translateY(-100%);
  }
  .nav__mobile-menu.open { display: flex; transform: translateY(var(--nav-h, 58px)); }
  .nav__mobile-menu a:not(.btn) {
    font-size: 0.875rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--ink-50); text-decoration: none; padding: 0.875rem 0;
    border-bottom: 1px solid var(--ink-12); transition: color 0.2s;
  }
  .nav__mobile-menu a:not(.btn):last-of-type { border-bottom: none; }
  .nav__mobile-menu a:not(.btn):hover { color: var(--ink); }
  .nav__mobile-menu .btn { margin-top: 1.25rem; text-align: center; display: block; width: 100%; box-sizing: border-box; }
}

@media (max-width: 600px) {
  .pricing--service .pricing__grid { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  /* Experience — single column */
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card { border-right: none !important; border-bottom: 1px solid var(--white-08) !important; padding-left: 0 !important; padding-right: 0 !important; }
  .exp-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--white-08) !important; }
  .exp-card:last-child { border-bottom: none !important; }
  .quals__grid { grid-template-columns: 1fr; }
  .exp-quals__grid { grid-template-columns: 1fr; }
  .exp-qual { border-right: none !important; border-bottom: 1px solid var(--white-08) !important; padding-left: 0 !important; padding-right: 0 !important; }
  .exp-qual:nth-last-child(-n+2) { border-bottom: 1px solid var(--white-08) !important; }
  .exp-qual:last-child { border-bottom: none !important; }
  /* Pricing badge spacing */
  .price-card--featured { padding-top: 3rem; }
  /* Form */
  .field--row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--dark); border-top: 1px solid var(--white-10);
  padding: 1.25rem var(--px);
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
  transform: translateY(0); transition: transform 0.3s var(--ease);
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-banner__text {
  font-size: 0.8125rem; line-height: 1.6; color: rgba(255,255,255,0.65);
  max-width: 65ch;
}
.cookie-banner__text a {
  color: var(--mauve-light); text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__text a:hover { color: var(--white); }
.cookie-banner__btn {
  flex-shrink: 0;
  background: var(--mauve); color: var(--white);
  border: none; padding: 0.6em 1.75em;
  font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s var(--ease);
  white-space: nowrap;
}
.cookie-banner__btn:hover { background: var(--mauve-ink); }
