/* =========================================================
   Quit Smoking Clinic Ladywood — Main Stylesheet
   Brand: Deep purple + rich gold | warm, professional, hopeful
   ========================================================= */

/* Visually-hidden but readable by assistive tech (screen readers) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  /* Brand colours */
  --purple-900: #2A1A4D;
  --purple-800: #382264;
  --purple-700: #4B3286;
  --purple-600: #5C4399;
  --purple-500: #6E54AC;
  --purple-100: #F3EAFB;
  --purple-50:  #FAF5FF;

  --gold-700: #8E6F30;
  --gold-600: #B78E3E;
  --gold-500: #D0A765;
  --gold-400: #E9C870;
  --gold-300: #FAE48F;
  --gold-100: #FDF6DA;

  --cream:   #FDFBF7;
  --off-white: #FAF8F4;
  --ink:     #1A0B2E;
  --ink-soft:#3C2A52;
  --muted:   #6B5B7A;
  --line:    #EAE3F0;

  --success: #2E8B57;
  --warm-coral: #E26D5A;

  /* Gradients */
  --gold-gradient: linear-gradient(135deg, #FAE48F 0%, #E9C870 40%, #D0A765 75%, #B78E3E 100%);
  --purple-gradient: linear-gradient(135deg, #4B3286 0%, #5C4399 50%, #382264 100%);
  --purple-deep-gradient: linear-gradient(160deg, #2A1A4D 0%, #4B3286 60%, #5C4399 100%);
  --hero-gradient: linear-gradient(135deg, rgba(75, 50, 134,0.92) 0%, rgba(58,7,105,0.86) 100%);

  /* Typography */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(46, 5, 82, 0.06);
  --shadow-md: 0 8px 24px rgba(46, 5, 82, 0.10);
  --shadow-lg: 0 20px 50px rgba(46, 5, 82, 0.15);
  --shadow-gold: 0 10px 30px rgba(212, 160, 23, 0.25);

  /* Spacing & rhythm */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* =========================================================
   Reset & base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; color-scheme: light; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  overflow-x: hidden;
  overflow-x: clip;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100vw;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-600); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 .5em;
  font-variation-settings: "opsz" 80, "SOFT" 50;
}
h1 { font-size: clamp(2.2rem, 5.2vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   Skip link & accessibility
   ========================================================= */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--purple-700); color: #fff;
  padding: 12px 20px; border-radius: 8px; z-index: 9999;
  font-weight: 700;
}
.skip-link:focus { top: 16px; color: #fff; }

*:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   Header & Navigation
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
  padding-top: env(safe-area-inset-top, 0);
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand img {
  height: 56px;
  width: auto;
  border-radius: 8px;
}
@media (max-width: 640px){ .brand img { height: 44px; } }

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all .18s ease;
  position: relative;
}
.main-nav a:hover { background: var(--purple-50); color: var(--purple-700); }
.main-nav a.active { color: var(--purple-700); }
.main-nav a.active::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--gold-gradient); border-radius: 2px;
}

.btn-book {
  background: var(--purple-gradient);
  color: #fff !important;
  padding: 12px 22px !important;
  border-radius: 999px !important;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(75, 50, 134, 0.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(75, 50, 134, 0.32); background: var(--purple-gradient); color: #fff !important; }

.mobile-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 10px; border-radius: 8px;
  color: var(--purple-700);
  z-index: 102;
  position: relative;
}
.mobile-toggle:hover { background: var(--purple-50); }

/* Header phone shortcut — desktop hidden, mobile visible between logo and hamburger */
.header-phone {
  display: none;
  align-items: center;
  gap: 6px;
  color: var(--gold-700);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 10px;
  transition: background .2s ease;
  white-space: nowrap;
  margin-left: auto;
}
.header-phone:hover, .header-phone:focus-visible { background: var(--gold-100); }
.header-phone svg { flex-shrink: 0; }
/* Compress the layout on phones so the full number stays visible */
@media (max-width: 480px) {
  .header-phone { font-size: 0.82rem; padding: 5px 7px; gap: 4px; }
  .site-header .brand img { height: 46px !important; }
  .nav-wrap { gap: 8px !important; padding: 10px 14px !important; }
}
/* On very narrow phones (≤340px) drop the number and keep just the icon */
@media (max-width: 340px) {
  .header-phone span { display: none; }
  .header-phone { padding: 6px; }
}

@media (max-width: 980px){
  .main-nav { display: none; }
  .mobile-toggle { display: inline-flex; }
  .header-phone { display: inline-flex; }
  .main-nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh; height: 100dvh;
    background: #fff;
    padding: 96px 24px 32px;
    gap: 4px;
    overflow-y: auto;
    z-index: 101;
  }
  .main-nav.open a { padding: 14px 16px; font-size: 1.05rem; }
  .main-nav.open .btn-book { margin-top: 12px; text-align: center; }
}

/* Tablet landscape (iPad ~1024px) — compress nav so Success Stories + Book Now stay on one line */
@media (min-width: 981px) and (max-width: 1100px) {
  .nav-wrap { gap: 12px; padding: 12px 18px; }
  .main-nav { gap: 0; flex-wrap: nowrap; }
  .main-nav a { padding: 8px 9px; font-size: 0.85rem; white-space: nowrap; }
  .main-nav a.active::after { left: 9px; right: 9px; }
  .btn-book { padding: 9px 16px !important; font-size: 0.85rem; }
  .site-header .brand img { height: 56px !important; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.02rem;
  font-family: var(--font-body);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  line-height: 1;
}
.btn-primary {
  background: var(--gold-gradient);
  color: var(--purple-900);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(212,160,23,.35); color: var(--purple-900); }
.btn-secondary {
  background: #fff;
  color: var(--purple-700);
  border: 2px solid #fff;
}
.btn-secondary:hover { background: var(--purple-50); color: var(--purple-700); transform: translateY(-3px); }
.btn-outline {
  background: transparent;
  color: var(--purple-700);
  border: 2px solid var(--purple-700);
}
.btn-outline:hover { background: var(--purple-700); color: #fff; }
.btn-ghost-light {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.12); color: #fff; }

.btn-lg { padding: 18px 34px; font-size: 1.08rem; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: var(--purple-deep-gradient);
  color: #fff;
  padding: 96px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 85% 20%, rgba(233, 200, 112,0.18), transparent 60%),
    radial-gradient(700px 500px at 10% 110%, rgba(233, 200, 112,0.10), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,0.03) 1px, transparent 1px),
    radial-gradient(circle at 90% 90%, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px;
  pointer-events: none;
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 2;
}
@media (max-width: 900px){
  .hero { padding: 60px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

.hero h1 {
  color: #fff;
  font-weight: 500;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.hero h1 .accent {
  font-style: normal;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.hero p.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  max-width: 580px;
  margin-bottom: 32px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(233, 200, 112, 0.15);
  border: 1px solid rgba(233, 200, 112, 0.4);
  color: var(--gold-300);
  padding: 8px 16px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-400); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.hero-card .card-eyebrow {
  color: var(--gold-300); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px;
}
.hero-card h2 { color: #fff; font-size: 1.5rem; margin-bottom: 18px; }
.hero-price {
  display: flex; align-items: baseline; gap: 8px; margin: 18px 0;
}
.hero-price .amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.hero-price .period {
  color: rgba(255,255,255,0.7); font-size: 0.95rem;
}

.hero-includes { list-style: none; padding: 0; margin: 18px 0 0; }
.hero-includes li {
  display: flex; gap: 10px; align-items: flex-start;
  color: rgba(255,255,255,0.9);
  padding: 8px 0; font-size: 0.96rem;
}
.hero-includes svg { flex-shrink: 0; margin-top: 3px; color: var(--gold-400); }

/* Trust bar */
.trust-bar {
  background: var(--purple-900);
  color: rgba(255,255,255,0.9);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: center;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
}
.trust-bar-inner span {
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.trust-bar-inner .sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold-500); display: inline-block;
  padding: 0;
}
.trust-bar-inner svg { color: var(--gold-400); }
.trust-bar-asterisk {
  color: var(--gold-300);
  text-decoration: none;
  font-weight: 700;
  padding-left: 1px;
  border-bottom: 1px dotted rgba(244, 196, 48, 0.4);
}
.trust-bar-asterisk:hover { border-bottom-style: solid; color: var(--gold-200, #FDF6DA); }
.trust-bar-note {
  margin: 10px auto 0;
  padding: 0 24px;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  max-width: 760px;
  scroll-margin-top: 110px; /* so the anchor jump lands below the sticky header */
}
.trust-bar-note a {
  color: var(--gold-300);
  text-decoration: none;
  border-bottom: 1px dotted rgba(244, 196, 48, 0.4);
}
.trust-bar-note a:hover { border-bottom-style: solid; }
@media (max-width: 600px) {
  .trust-bar-note { font-size: 0.74rem; padding: 0 16px; }
}

/* =========================================================
   Sections — general
   ========================================================= */
.section { padding: 96px 0; position: relative; }
@media (max-width: 768px){ .section { padding: 64px 0; } }

.section-warm { background: var(--off-white); }
.section-cream { background: var(--cream); }
.section-purple {
  background: var(--purple-deep-gradient);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-purple::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 90% 10%, rgba(233, 200, 112,0.15), transparent 60%);
  pointer-events: none;
}
.section-purple h2, .section-purple h3 { color: #fff; }
.section-purple .container { position: relative; z-index: 2; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-600);
  margin-bottom: 14px;
}
.section-purple .section-head .eyebrow { color: var(--gold-300); }
.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}
.section-purple .section-head p { color: rgba(255,255,255,0.85); }

/* =========================================================
   Cards & grids
   ========================================================= */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--purple-deep-gradient);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-400);
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(75, 50, 134, 0.25);
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px){
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

/* =========================================================
   How it works (steps)
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 980px){ .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 28px 28px;
  border: 1px solid var(--line);
  counter-increment: step;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(75, 50, 134, 0.12);
}
.step::before {
  content: '0' counter(step);
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.4rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  pointer-events: none;
}
.step h3 { margin: 0 0 8px; font-size: 1.15rem; color: var(--purple-700); }
.step p { color: var(--muted); font-size: 0.96rem; margin: 0; line-height: 1.55; }

@media (max-width: 600px) {
  .step::before { font-size: 3rem; }
  .step { padding: 24px; }
}

/* =========================================================
   Benefits timeline
   ========================================================= */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 60px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 22px; top: 14px; bottom: 14px;
  width: 4px;
  background: linear-gradient(to bottom, var(--gold-400), var(--purple-500));
  border-radius: 4px;
}
.tl-item {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -47px; top: 28px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold-gradient);
  box-shadow: 0 0 0 5px #fff, 0 0 0 7px var(--gold-100);
}
.tl-time {
  display: inline-block;
  background: var(--purple-700);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.tl-item h4 { margin: 0 0 4px; color: var(--purple-700); font-family: var(--font-display); font-size: 1.1rem; }
.tl-item p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

@media (max-width: 600px){
  .timeline { padding-left: 44px; }
  .timeline::before { left: 14px; }
  .tl-item::before { left: -37px; width: 14px; height: 14px; }
}

/* =========================================================
   Interactive widgets — quiz & calculator
   ========================================================= */
.widget-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 24px;
}
@media (max-width: 880px){ .widget-grid { grid-template-columns: 1fr; } }

.widget {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.widget::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle at top right, rgba(233, 200, 112,0.12), transparent 70%);
  pointer-events: none;
}
.widget h3 {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--purple-700);
}
.widget h3 svg { color: var(--gold-600); }
.widget > p {
  color: var(--muted);
  margin-bottom: 24px;
}

/* Quiz */
.quiz-q { margin-bottom: 22px; }
.quiz-q .q {
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0.98rem;
}
.quiz-options {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.quiz-options label {
  cursor: pointer;
  background: var(--purple-50);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--purple-700);
  border: 2px solid transparent;
  transition: all .15s ease;
}
.quiz-options input[type="radio"] { display: none; }
.quiz-options input[type="radio"]:checked + label,
.quiz-options label:hover {
  background: var(--purple-700); color: #fff; border-color: var(--gold-500);
}
.quiz-result {
  margin-top: 18px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--purple-50), var(--gold-100));
  border-radius: var(--radius);
  border-left: 4px solid var(--gold-500);
  display: none;
}
.quiz-result.show { display: block; }
.quiz-result strong { color: var(--purple-700); }

/* Calculator */
.calc-input {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px;
}
.calc-input label { font-weight: 700; font-size: 0.92rem; color: var(--ink-soft); }
.calc-input input {
  padding: 12px 16px;
  border: 2px solid var(--line);
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color .15s ease, box-shadow .15s ease;
  background: var(--cream);
}
.calc-input input:focus {
  outline: none;
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(75, 50, 134,0.12);
}
.calc-result {
  margin-top: 20px;
  padding: 24px;
  background: var(--purple-gradient);
  color: #fff;
  border-radius: var(--radius);
  text-align: center;
}
.calc-result .label {
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0.85; font-weight: 700;
}
.calc-result .figure {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  margin: 6px 0;
}
.calc-result .breakdown {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 8px;
}

/* =========================================================
   Testimonials
   ========================================================= */
.testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: 8px; left: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-400);
  opacity: 0.6;
}
.testimonial blockquote {
  margin: 24px 0 20px;
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

/* Option A — Success Stories: gold border + bigger quote + deeper shadow */
.testimonial--gold {
  border: 2px solid var(--gold-400);
  box-shadow: 0 16px 40px rgba(75, 50, 134, 0.12);
}
.testimonial--gold::before {
  font-size: 6rem;
  opacity: 1;
  top: 4px;
}

/* Option C — Homepage: cream card, gold top bar, five gold stars (quote mark repurposed as the bar) */
.testimonial--cream {
  background: var(--cream);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(75, 50, 134, 0.10);
}
.testimonial--cream::before {
  content: '';
  top: 0; left: 0; right: 0;
  width: auto; height: 5px;
  font-size: 0; opacity: 1;
  background: var(--gold-gradient);
}
.testimonial-stars {
  color: var(--gold-400);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin: 0 0 4px;
}
.testimonial--cream blockquote { margin-top: 14px; }
.author-avatar {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--purple-gradient);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.05rem;
  font-family: var(--font-display);
  border: 2px solid var(--gold-400);
  box-sizing: border-box;
}
.author-info .name { font-weight: 700; color: var(--ink); font-size: 0.98rem; }
.author-info .meta { font-size: 0.85rem; color: var(--muted); }

/* =========================================================
   Advisors
   ========================================================= */
.advisor-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.advisor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.advisor-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--purple-gradient);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  border: 4px solid var(--gold-100);
}
.advisor-card h3 { margin: 4px 0 4px; font-size: 1.1rem; color: var(--purple-700); }
.advisor-badge {
  display: inline-block;
  background: var(--gold-100); color: var(--gold-700);
  padding: 4px 12px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.04em;
}

/* =========================================================
   Forms
   ========================================================= */
.form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.form-row { margin-bottom: 18px; }
.form-row.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px){ .form-row.cols { grid-template-columns: 1fr; } }

.form label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--ink-soft);
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--cream);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(75, 50, 134,0.12);
  background: #fff;
}
.form textarea { resize: vertical; min-height: 110px; }

/* Checkboxes & radios must not inherit the full-width text-input styling above */
.form input[type="checkbox"], .form input[type="radio"] {
  width: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  flex: 0 0 auto;
  accent-color: var(--purple-600);
  cursor: pointer;
}
.form-help { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

.radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-group label {
  cursor: pointer;
  background: var(--purple-50);
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--purple-700);
  border: 2px solid transparent;
  font-size: 0.95rem;
  transition: all .15s ease;
  display: flex; align-items: center; gap: 8px;
}
.radio-group input[type="radio"] { display: none; }
.radio-group input[type="radio"]:checked + label,
.radio-group label:hover {
  background: var(--purple-700); color: #fff; border-color: var(--gold-500);
}

.form .btn-primary { width: 100%; margin-top: 12px; }
.form-success {
  display: none;
  opacity: 1;
  transition: opacity .45s ease;
  background: var(--purple-deep-gradient);
  color: #fff;
  padding: 22px;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 20px;
}
.form-success.show { display: block; }
.form-success.fade-out { opacity: 0; }
.form-success a { color: #fff; text-decoration: underline; }

/* Netlify honeypot — visually hidden but present in the DOM for bots */
.netlify-hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Privacy consent row */
.consent-row { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; line-height: 1.5; cursor: pointer; }
.consent-row input[type="checkbox"] { margin-top: 3px; }

/* Error state — mirrors .form-success but in a warm red */
.form-error {
  display: none;
  background: linear-gradient(135deg, #B3261E, #D04A43);
  color: #fff;
  padding: 22px;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 20px;
}
.form-error.show { display: block; }
.form-error a { color: #fff; text-decoration: underline; }

/* =========================================================
   Page hero (sub-pages)
   ========================================================= */
.page-hero {
  background: var(--purple-deep-gradient);
  color: #fff;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(800px 500px at 80% 10%, rgba(233, 200, 112,0.16), transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 760px; font-style: italic; font-weight: 500; }
.page-hero h1 .accent {
  font-style: normal;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 680px;
}
.crumbs {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.crumbs a { color: rgba(255,255,255,0.85); }
.crumbs a:hover { color: var(--gold-300); }

/* =========================================================
   Pricing card (Services page)
   ========================================================= */
.pricing-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  border: 2px solid var(--gold-400);
  position: relative;
  box-shadow: 0 30px 80px rgba(75, 50, 134,0.15);
  max-width: 540px;
  margin: 0 auto;
}
.pricing-card .ribbon {
  position: absolute;
  top: -26px; left: 50%; transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--purple-900);
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
  text-align: center;
  line-height: 1.3;
  min-width: 280px;
}
/* Give the card top room for the half-overlapping ribbon */
.pricing-card { margin-top: 28px; }
/* Mobile: shrink card padding and price font-size so 'FREE' isn't cut off on narrow phones */
@media (max-width: 480px) {
  .pricing-card { padding: 40px 24px; }
  .pricing-card .price { font-size: 4.25rem; }
}
@media (max-width: 360px) {
  .pricing-card .price { font-size: 3.6rem; }
  .pricing-card .ribbon {
    font-size: 0.72rem;
    min-width: 210px;
    padding: 7px 14px;
    letter-spacing: 0.04em;
  }
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 600;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin: 12px 0 6px;
}
.pricing-card .price-meta {
  color: var(--muted); margin-bottom: 28px;
}
.pricing-features {
  list-style: none; padding: 0; margin: 24px 0 28px;
  text-align: left;
}
.pricing-features li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features svg { color: var(--success); flex-shrink: 0; margin-top: 2px; }

/* =========================================================
   Resources / blog cards
   ========================================================= */
.resource-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.resource-cover {
  height: 180px;
  background: var(--purple-gradient);
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end; padding: 20px;
}
.resource-cover::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(233, 200, 112,0.3), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1), transparent 60%);
}
.resource-cover .tag {
  position: relative;
  background: rgba(255,255,255,0.18);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.resource-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.resource-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.resource-body p { color: var(--muted); font-size: 0.96rem; flex: 1; }
.resource-body a {
  font-weight: 700; color: var(--purple-700);
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px;
}
.resource-body a:hover { color: var(--gold-600); gap: 10px; transition: gap .2s ease; }

/* =========================================================
   Contact info cards
   ========================================================= */
.contact-info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 880px){ .contact-info-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  text-align: center;
}
.contact-card .icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--purple-deep-gradient);
  color: var(--gold-400);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 6px 16px rgba(75, 50, 134, 0.25);
}
.contact-card .icon-link {
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.contact-card .icon-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(75, 50, 134, 0.35);
}
.contact-card .icon-link:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}
.contact-card h3 { color: var(--purple-700); margin-bottom: 6px; font-size: 1.05rem; }
.contact-card a, .contact-card .text {
  color: var(--ink); font-weight: 600; font-size: 1rem;
}
.contact-card a:hover { color: var(--purple-700); }

/* Hours table */
.hours-table {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--line);
  overflow: hidden;
}
.hours-row {
  display: flex; justify-content: space-between; padding: 14px 22px;
  border-bottom: 1px solid var(--line);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 700; color: var(--purple-700); }
.hours-row .time { color: var(--ink-soft); }
.hours-row.closed .time { color: var(--muted); font-style: italic; }

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  background: var(--purple-deep-gradient);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(700px 300px at 50% 0%, rgba(233, 200, 112,0.25), transparent 60%);
}
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 { color: #fff; max-width: 720px; margin: 0 auto 16px; font-style: italic; font-weight: 500; }
.cta-banner h2 .accent {
  font-style: normal;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-banner p { max-width: 600px; margin: 0 auto 28px; color: rgba(255,255,255,0.88); font-size: 1.1rem; }
.cta-banner .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--purple-900);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 880px){ .footer-grid { grid-template-columns: 1.2fr 1fr; gap: 32px 96px; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.site-footer h3 {
  color: #fff; font-family: var(--font-body);
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer a { color: rgba(255,255,255,0.78); display: inline-block; }
.site-footer a:hover { color: var(--gold-400); }

/* Gold-pill 'Book an appointment' CTA in the Opening Hours footer column */
.footer-book-cta {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--purple-900) !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 999px;
  margin-top: 10px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 14px rgba(212, 160, 23, 0.22);
}
.footer-book-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(212, 160, 23, 0.38);
  color: var(--purple-900) !important;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 6px 0; }
.footer-brand img { height: 56px; margin-bottom: 18px; border-radius: 8px; }
.footer-brand p { font-size: 0.94rem; line-height: 1.7; max-width: 320px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 0.85rem;
}
.partner-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  padding: 8px 14px; border-radius: 999px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 12px;
}
.partner-badge .heart {
  width: 14px; height: 14px;
  background: var(--gold-400);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-7-4.5-7-11a4 4 0 0 1 7-2.6A4 4 0 0 1 19 10c0 6.5-7 11-7 11z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-7-4.5-7-11a4 4 0 0 1 7-2.6A4 4 0 0 1 19 10c0 6.5-7 11-7 11z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* =========================================================
   Wall quote feature (homepage)
   ========================================================= */
.wall-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 768px){ .wall-feature { grid-template-columns: 1fr; } }
.wall-feature img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}

/* =========================================================
   Utilities
   ========================================================= */
.center { text-align: center; }
.muted { color: var(--muted); }
.gold { color: var(--gold-600); }
.purple { color: var(--purple-700); }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.icon-list { list-style: none; padding: 0; margin: 0; }
.icon-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0;
}
.icon-list svg { flex-shrink: 0; margin-top: 3px; color: var(--gold-600); }

/* Animation on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero image figure */
.hero-image-figure {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.18);
}
.hero-image-figure img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* Two-column content */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
@media (max-width: 880px){ .two-col { grid-template-columns: 1fr; gap: 32px; } }
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* Stat numbers */
.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 40px;
}
@media (max-width: 700px){ .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 600;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat .label {
  font-size: 0.88rem; color: rgba(255,255,255,0.85);
  margin-top: 6px;
}
.stat.card-white .label { color: var(--muted); }

/* Print */
@media print {
  .site-header, .site-footer, .hero-ctas { display: none; }
}

/* =========================================================
   ARTICLE PAGES
   ========================================================= */
.article-hero {
  background: var(--purple-deep-gradient);
  color: #fff;
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(233, 200, 112, 0.16), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(233, 200, 112, 0.08), transparent 50%);
  pointer-events: none;
}
.article-hero .container { position: relative; z-index: 2; max-width: 820px; }
.article-hero .article-tag {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--purple-900);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.article-hero h1 {
  color: #fff;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 18px;
}
.article-hero h1 .accent {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.article-hero .lede {
  font-size: 1.18rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  max-width: 700px;
}
.article-meta {
  display: flex; align-items: center; gap: 18px;
  margin-top: 24px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
}
.article-meta .dot { width: 4px; height: 4px; background: var(--gold-400); border-radius: 50%; }

.read-progress {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 4px;
  background: var(--gold-gradient);
  z-index: 1000;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 8px rgba(233, 200, 112, 0.6);
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 32px;
  font-size: 1.08rem;
  line-height: 1.78;
  color: var(--ink);
}
.article-body h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  color: var(--purple-700);
  margin: 48px 0 16px;
}
.article-body h2 .accent {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.article-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--purple-700);
  margin: 32px 0 12px;
}
.article-body p { margin: 0 0 22px; }
.article-body ul, .article-body ol { margin: 0 0 28px; padding-left: 8px; }
.article-body li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  list-style: none;
}
.article-body ul li::before {
  content: "";
  position: absolute; left: 0; top: 12px;
  width: 16px; height: 4px;
  background: var(--gold-gradient);
  border-radius: 2px;
}
.article-body ol { counter-reset: artlist; }
.article-body ol li { counter-increment: artlist; }
.article-body ol li::before {
  content: counter(artlist);
  position: absolute; left: 0; top: 4px;
  width: 22px; height: 22px;
  background: var(--gold-gradient);
  color: var(--purple-900);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
}
.article-body strong { color: var(--purple-700); font-weight: 700; }
.article-body a { color: var(--purple-700); text-decoration: underline; text-decoration-color: var(--gold-400); text-underline-offset: 3px; }
.article-body a:hover { color: var(--purple-900); }

.pull-quote {
  margin: 40px -12px;
  padding: 32px 32px 32px 56px;
  background: var(--cream);
  border-left: 4px solid var(--gold-400);
  border-radius: 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.32rem;
  line-height: 1.4;
  color: var(--purple-700);
  position: relative;
}
.pull-quote::before {
  content: """;
  position: absolute; top: 0; left: 18px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold-400);
  line-height: 1;
  opacity: 0.5;
}

.inline-cta {
  margin: 40px 0;
  padding: 32px;
  background: var(--purple-deep-gradient);
  color: #fff;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.inline-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 50%, rgba(233, 200, 112, 0.2), transparent 60%);
  pointer-events: none;
}
.inline-cta > * { position: relative; z-index: 2; }
.inline-cta h3 {
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.inline-cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
}

.article-end {
  max-width: 720px;
  margin: 32px auto 0;
  padding: 32px 24px;
  border-top: 1px solid var(--line);
}
.article-nav {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 24px 56px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.article-nav a {
  flex: 1 1 200px; min-width: 0;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  transition: all 0.2s ease;
}
.article-nav a:hover {
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.article-nav .dir {
  font-size: 0.78rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.article-nav .title {
  font-weight: 600; color: var(--purple-700);
}

/* =========================================================
   STICKY BOOK BUTTON (appears after scroll)
   ========================================================= */
.sticky-book {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gold-gradient);
  color: var(--purple-900) !important;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(75, 50, 134, 0.4);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
  display: flex; align-items: center; gap: 8px;
}
.sticky-book.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(75, 50, 134, 0.5);
}
@media (max-width: 600px) {
  .sticky-book { bottom: 16px; right: 16px; padding: 12px 20px; font-size: 0.9rem; }
}

/* =========================================================
   HERO FLOATING PARTICLES
   ========================================================= */
.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hero-particles .particle {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--gold-gradient);
  border-radius: 50%;
  opacity: 0.4;
  animation: float-up 14s infinite linear;
  box-shadow: 0 0 10px rgba(233, 200, 112, 0.6);
}
@keyframes float-up {
  0% { transform: translateY(100vh) translateX(0) scale(0.5); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) translateX(40px) scale(1); opacity: 0; }
}

/* =========================================================
   HERO ENTRANCE ANIMATION
   ========================================================= */
.hero h1, .hero .hero-subhead, .hero .hero-ctas, .hero .trust-mini {
  opacity: 0;
  animation: hero-enter 0.8s ease-out forwards;
}
.hero h1 { animation-delay: 0.1s; }
.hero .hero-subhead { animation-delay: 0.3s; }
.hero .hero-ctas { animation-delay: 0.5s; }
.hero .trust-mini { animation-delay: 0.7s; }
.hero-card { animation: card-enter 0.9s 0.4s ease-out backwards; }
@keyframes hero-enter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes card-enter {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* =========================================================
   ANIMATED TIMELINE
   ========================================================= */
.timeline-item .timeline-dot {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}
.timeline-item.active .timeline-dot {
  transform: scale(1.35);
  box-shadow: 0 0 0 8px rgba(233, 200, 112, 0.25), 0 0 24px rgba(233, 200, 112, 0.5);
}
.timeline-item .timeline-content {
  transition: all 0.5s ease;
}
.timeline-item.active .timeline-content {
  transform: translateX(4px);
}

/* =========================================================
   FAQ ACCORDIONS
   ========================================================= */
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
}
.faq-item:hover { border-color: var(--gold-400); }
.faq-item.open {
  border-color: var(--purple-500);
  box-shadow: var(--shadow-md);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 28px;
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--purple-700);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-question .plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--purple-900);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
  transition: transform 0.3s ease;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px;
}

/* =========================================================
   CARD TILT/LIFT (subtle 3D on hover)
   ========================================================= */
.card, .resource-card, .testimonial, .advisor-card {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}
.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(75, 50, 134, 0.18);
}
.advisor-card:hover {
  transform: translateY(-6px) scale(1.02);
}

/* =========================================================
   ANIMATED COUNTERS
   ========================================================= */
.counter {
  font-variant-numeric: tabular-nums;
}

/* =========================================================
   SMOKE-FREE TRACKER
   ========================================================= */
.tracker {
  background: linear-gradient(160deg, #fff 0%, var(--cream) 100%);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.tracker h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--purple-700);
  margin-bottom: 8px;
}
.tracker-input {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin: 20px 0 28px;
  align-items: end;
}
.tracker-input > div { flex: 1 1 140px; min-width: 0; }
.tracker-input label {
  display: block;
  font-size: 0.85rem; font-weight: 600;
  color: var(--purple-700);
  margin-bottom: 6px;
}
.tracker-input input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
}
.tracker-input input:focus {
  outline: none;
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(75, 50, 134, 0.1);
}
.tracker-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 720px) {
  .tracker-results { grid-template-columns: repeat(2, 1fr); }
}
.tracker-stat {
  background: var(--purple-deep-gradient);
  color: #fff;
  border-radius: 14px;
  padding: 20px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tracker-stat::before {
  content: "";
  position: absolute; top: -20px; right: -20px;
  width: 60px; height: 60px;
  background: radial-gradient(circle, rgba(233, 200, 112, 0.3), transparent 70%);
  pointer-events: none;
}
.tracker-stat .num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.tracker-stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.tracker-message {
  margin-top: 24px;
  padding: 18px 22px;
  background: var(--cream);
  border-left: 4px solid var(--gold-400);
  border-radius: 10px;
  font-style: italic;
  font-family: var(--font-display);
  color: var(--purple-700);
  font-size: 1.05rem;
}

/* =========================================================
   REVEAL STAGGER
   ========================================================= */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero h1, .hero .hero-subhead, .hero .hero-ctas, .hero .trust-mini, .hero-card,
  .hero-particles, .timeline-item.active .timeline-dot {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Animated tl-item activation */
.tl-item {
  opacity: 0.55;
  transform: translateX(-8px);
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tl-item::before {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}
.tl-item.active {
  opacity: 1;
  transform: translateX(0);
}
.tl-item.active::before {
  transform: scale(1.3);
  box-shadow: 0 0 0 8px rgba(233, 200, 112, 0.25), 0 0 24px rgba(233, 200, 112, 0.6);
}
@media (prefers-reduced-motion: reduce) {
  .tl-item { opacity: 1; transform: none; }
}

/* =========================================================
   ADVISOR GRID — 5 equal-width cards, fully responsive
   ========================================================= */
.advisor-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
}
.advisor-grid-5 > .advisor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  position: relative;
  padding-top: 32px;
}
.advisor-grid-5 .advisor-card .advisor-role {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 2px 0 10px;
  min-height: 36px;
}
.advisor-grid-5 .advisor-card h3 {
  font-size: 1.02rem;
  margin: 12px 0 2px;
}
.advisor-grid-5 .advisor-card .advisor-badge {
  white-space: nowrap;
  font-size: 0.72rem;
}

@media (max-width: 1100px) {
  .advisor-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .advisor-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .advisor-grid-5 .advisor-card { padding: 28px 14px 18px; }
}
@media (max-width: 420px) {
  .advisor-grid-5 { grid-template-columns: 1fr; max-width: 280px; margin-left: auto; margin-right: auto; }
}

/* =========================================================
   BIGGER LOGO
   ========================================================= */
.site-header .brand img {
  height: 72px !important;
  width: auto;
  max-width: none;
}
.site-footer .footer-brand > img {
  height: 64px !important;
  width: auto;
}
@media (max-width: 780px) {
  .site-header .brand img { height: 56px !important; }
}
@media (max-width: 480px) {
  .site-header .brand img { height: 48px !important; }
}

/* Slightly more header padding for the bigger logo */
.site-header { padding: 14px 0; }
@media (max-width: 780px) { .site-header { padding: 10px 0; } }

/* =========================================================
   SCROLL-TO-TOP BUTTON
   ========================================================= */
.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--purple-700);
  color: var(--purple-700);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(75, 50, 134, 0.25);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--purple-700);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(75, 50, 134, 0.35);
}
@media (max-width: 600px) {
  .scroll-top { bottom: 16px; left: 16px; width: 44px; height: 44px; }
}

/* =========================================================
   WHAT3WORDS BLOCK
   ========================================================= */
.w3w-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}
.w3w-card:hover {
  border-color: #E11F26;
  box-shadow: 0 8px 22px rgba(225, 31, 38, 0.12);
  transform: translateY(-2px);
}
.w3w-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: #E11F26;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: -2px;
}
.w3w-body { flex: 1; min-width: 0; }
.w3w-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E11F26;
  margin-bottom: 2px;
}
.w3w-address {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--purple-700);
  font-size: 1.15rem;
  line-height: 1.2;
}
.w3w-address::before { content: "/// "; color: #E11F26; font-style: normal; font-weight: 700; }
.w3w-cta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
}

/* =========================================================
   FOOTER CONTACT ICONS
   ========================================================= */
.site-footer ul li.with-icon {
  padding-left: 26px;
  position: relative;
}
.site-footer ul li.with-icon svg {
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  color: var(--gold-400);
  flex-shrink: 0;
}

/* =========================================================
   RESPONSIVE FIXES — tablet + mobile
   ========================================================= */
@media (max-width: 980px) {
  /* General two-column grids on contact, etc. should stack better */
  .grid-2[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  /* Hero stacks earlier */
  .hero-inner { gap: 32px; }
}

@media (max-width: 780px) {
  /* Smaller mobile padding everywhere */
  .container { padding-left: 18px; padding-right: 18px; }
  .section { padding: 56px 0; }
  .page-hero { padding: 88px 0 40px; }
  .article-hero { padding: 96px 0 48px; }
  .hero { min-height: auto; padding: 110px 0 60px; }
  /* Tracker stack */
  .tracker { padding: 24px; }
  .tracker-results { grid-template-columns: repeat(2, 1fr); }
  .tracker-stat .num { font-size: 1.5rem; }
  /* Article body padding */
  .article-body { padding: 40px 18px 24px; font-size: 1rem; line-height: 1.7; }
  .pull-quote { margin: 28px 0; padding: 24px 24px 24px 40px; font-size: 1.1rem; }
  .pull-quote::before { font-size: 4rem; }
  .inline-cta { padding: 26px 22px; }
  .inline-cta h3 { font-size: 1.25rem; }
  /* Article nav */
  .article-nav { flex-direction: column; padding-bottom: 40px; }
  /* Two CTAs in sticky area — give sticky-book breathing room */
  .sticky-book { padding: 11px 18px; font-size: 0.88rem; }
  /* Headings */
  h1 { font-size: clamp(1.7rem, 5.5vw, 2.6rem) !important; line-height: 1.15 !important; }
  h2 { font-size: clamp(1.4rem, 4vw, 2rem) !important; }
  /* Hero CTAs stack */
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; text-align: center; justify-content: center; }
  /* Form rows */
  .form-row.cols { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  /* Trust bar wraps cleanly */
  .trust-bar-inner { flex-direction: column; gap: 10px; padding: 14px 0; }
  .trust-bar-inner .sep { display: none; }
  /* Hero card — tighten on small screens */
  .hero-card { padding: 24px; }
  .hero-price .amount { font-size: 2.4rem; }
  /* Stack tracker inputs */
  .tracker-input { gap: 10px; }
  .tracker-input > div { min-width: 100%; }
  /* FAQ */
  .faq-question { padding: 18px 20px; font-size: 1rem; }
  .faq-answer { padding-left: 20px; padding-right: 20px; }
  /* Sticky/scroll buttons don't overlap each other */
  .scroll-top { bottom: 78px; }
}

/* Print-friendly */
@media print {
  .sticky-book, .scroll-top, .read-progress, .hero-particles { display: none !important; }
}

/* =========================================================
   BIRMINGHAM CITY COUNCIL LOGO PARTNER BADGE
   ========================================================= */
.bcc-partner {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.bcc-partner:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(233, 200, 112, 0.4);
}
.bcc-partner-label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  line-height: 1.1;
}
.bcc-partner img {
  height: 28px;
  width: auto;
  display: block;
}

/* Hero version — appears on the dark hero/purple section */
.hero .bcc-partner-inline,
.page-hero .bcc-partner-inline,
.article-hero .bcc-partner-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
}
.bcc-partner-inline img {
  height: 30px;
  width: auto;
  border-radius: 0;
  display: block;
}
.bcc-partner-inline:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(233, 200, 112, 0.5);
}

/* Hero eyebrow (on top of purple hero) becomes a logo chip */
.hero .hero-eyebrow {
  background: none;
  padding: 0;
  border: none;
}

/* Big BCC strip — used at top of trust-bar or as a standalone partnership block */
.bcc-strip {
  background: linear-gradient(135deg, #5C4399 0%, #4B3286 100%);
  padding: 18px 0;
  text-align: center;
}
.bcc-strip-inner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.bcc-strip-text {
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.bcc-strip-text strong { color: #fff; font-weight: 700; }
.bcc-strip img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 4px;
}

@media (max-width: 600px) {
  .bcc-strip-text { font-size: 0.85rem; }
  .bcc-strip img { height: 38px; }
  .bcc-partner img { height: 34px; }
}

/* =========================================================
   IMAGE DEFAULTS — remove inline image baseline gaps
   ========================================================= */
.site-header .brand img,
.site-footer .footer-brand img {
  display: block;
  vertical-align: middle;
  border: 0;
  outline: none;
}

/* =========================================================
   LEGAL PAGES (privacy / terms)
   ========================================================= */
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 32px;
  color: var(--ink);
  line-height: 1.75;
}
.legal-body h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--purple-700);
  margin: 40px 0 12px;
}
.legal-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--purple-700);
  margin: 24px 0 8px;
}
.legal-body p { margin: 0 0 18px; }
.legal-body ul, .legal-body ol { margin: 0 0 22px; padding-left: 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--purple-700); text-decoration: underline; text-decoration-color: var(--gold-400); text-underline-offset: 3px; }
.legal-body a:hover { color: var(--purple-900); }
.legal-body strong { color: var(--purple-700); font-weight: 700; }
.legal-meta {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 8px;
}

/* =========================================================
   RESOURCE COVER — themed illustrations
   ========================================================= */
.resource-cover {
  align-items: stretch !important;
  flex-direction: column !important;
  padding: 18px !important;
  justify-content: space-between !important;
}
.resource-cover .tag {
  align-self: flex-start;
  position: relative;
  z-index: 2;
}
.resource-cover .illo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.resource-cover .illo svg {
  width: 96px;
  height: 96px;
  opacity: 0.95;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.25));
}
.resource-card:hover .illo svg {
  transform: scale(1.08) rotate(-2deg);
}
.resource-cover .deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.resource-cover .deco::before,
.resource-cover .deco::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.resource-cover .deco::before {
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(233, 200, 112, 0.35), transparent 70%);
  top: -30px;
  right: -20px;
}
.resource-cover .deco::after {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  bottom: -10px;
  left: 30%;
}

/* Each category gets a slightly tinted background variant for variety */
.resource-card[data-cat="your-body"] .resource-cover { background: linear-gradient(135deg, #4B3286 0%, #2A1A4D 100%); }
.resource-card[data-cat="cravings"] .resource-cover { background: linear-gradient(150deg, #5C4399 0%, #382264 100%); }
.resource-card[data-cat="nrt"] .resource-cover { background: linear-gradient(160deg, #4B3286 0%, #5C4399 100%); }
.resource-card[data-cat="mindset"] .resource-cover { background: linear-gradient(135deg, #382264 0%, #5C4399 100%); }
.resource-card[data-cat="money"] .resource-cover { background: linear-gradient(160deg, #5C4399 0%, #4B3286 100%); }
.resource-card[data-cat="pregnancy"] .resource-cover { background: linear-gradient(135deg, #5C4399 0%, #382264 100%); }
.resource-card[data-cat="mental-health"] .resource-cover { background: linear-gradient(150deg, #4B3286 0%, #2A1A4D 100%); }
.resource-card[data-cat="family"] .resource-cover { background: linear-gradient(135deg, #5C4399 0%, #5C4399 100%); }
.resource-card[data-cat="first-days"] .resource-cover { background: linear-gradient(160deg, #4B3286 0%, #5C4399 100%); }
.resource-card[data-cat="long-term"] .resource-cover { background: linear-gradient(135deg, #2A1A4D 0%, #4B3286 100%); }
.resource-card[data-cat="weight"] .resource-cover { background: linear-gradient(150deg, #5C4399 0%, #4B3286 100%); }
.resource-card[data-cat="workplace"] .resource-cover { background: linear-gradient(135deg, #382264 0%, #4B3286 100%); }

/* =========================================================
   FOOTER OPENING HOURS — single line per day
   ========================================================= */
.site-footer ul li.nowrap {
  white-space: nowrap;
  font-size: 0.9rem;
  letter-spacing: 0;
}

/* Slightly tighten the address line height for the 4-line format */
.site-footer ul li.with-icon {
  line-height: 1.55;
}

/* On narrower viewports, allow wrapping again so it doesn't overflow */
@media (max-width: 480px) {
  .site-footer ul li.nowrap {
    white-space: normal;
    font-size: 0.88rem;
  }
}

/* =========================================================
   FOOTER CREDIT — "Designed and maintained by"
   ========================================================= */
.footer-credit {
  width: 100%;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}
.footer-credit strong {
  color: var(--gold-400);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.footer-credit a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-credit a:hover {
  color: var(--gold-300);
}

/* =========================================================
   MOBILE OVERFLOW SAFEGUARDS
   Prevent any element from causing horizontal scroll on small screens
   ========================================================= */
main { overflow-x: hidden; overflow-x: clip; }
.container { max-width: 100%; }
img, video, iframe, svg { max-width: 100%; }
.hero, .section, .page-hero, .article-hero, .section-purple, .section-warm, .section-cream {
  max-width: 100vw;
  overflow-x: hidden;
  overflow-x: clip;
}
.hero-particles { max-width: 100vw; overflow: hidden; }

/* Fix anything inline that could be over-wide */
.tracker, .widget, .form, .card, .resource-card, .advisor-card, .testimonial, .step, .stat, .contact-card {
  max-width: 100%;
}

/* The contact page two-col grid stacks on small screens */
@media (max-width: 980px) {
  .grid-2[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* Make absolutely sure footer doesn't overflow */
.site-footer { overflow-x: hidden; overflow-x: clip; }
.footer-grid { max-width: 100%; }

/* When the mobile menu is open, prevent body from being interactable behind it */
body:has(.main-nav.open) {
  overflow: hidden;
}

/* =========================================================
   HERO TAGLINE — "Live healthier. Breathe easier. Quit smoking for good."
   ========================================================= */
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: rgba(255,255,255,0.95);
  margin: -6px 0 22px;
  line-height: 1.35;
  opacity: 0;
  animation: hero-enter 0.8s 0.2s ease-out forwards;
}
.hero-tagline .accent-soft {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

/* Update hero price card visual for FREE messaging */
.hero-price .amount {
  font-family: var(--font-display);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

/* Section banner for the tagline elsewhere */
.tagline-banner {
  background: var(--purple-deep-gradient);
  color: #fff;
  padding: 28px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tagline-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(244, 196, 48, 0.12), transparent 70%);
  pointer-events: none;
}
.tagline-banner-inner {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  letter-spacing: 0.01em;
}
.tagline-banner-inner .accent {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

/* Price card: bigger FREE callout */
.hero-card .hero-price .amount {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
}

/* =========================================================
   RESOURCE TOOL CARDS (NHS app, Personal Quit Plan, etc.)
   ========================================================= */
.resource-tool {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.resource-tool::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold-gradient);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.resource-tool:hover {
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(75, 50, 134, 0.12);
}
.resource-tool:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}
.resource-tool-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--purple-deep-gradient);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(75, 50, 134, 0.25);
}
.resource-tool-icon svg {
  stroke: var(--gold-400);
}
.resource-tool-body {
  flex: 1;
  min-width: 0;
}
.resource-tool-body h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  color: var(--purple-700);
  font-family: var(--font-display);
  font-weight: 600;
}
.resource-tool-body p {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}
.resource-tool-cta {
  color: var(--purple-700);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}
.resource-tool:hover .resource-tool-cta {
  color: var(--gold-600);
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .resource-tool {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 20px 22px;
  }
  .resource-tool-icon {
    width: 48px;
    height: 48px;
  }
}

/* =========================================================
   FEATURE CARDS — gold accent stripe + lift effect
   Applied to: Why Choose Us, Our Approach, How You're Supported
   ========================================================= */
.card-feature {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}
.card-feature::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold-gradient);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: 4px 0 0 4px;
}
.card-feature:hover {
  transform: translateY(-6px);
  border-color: var(--gold-400);
  box-shadow: 0 18px 36px rgba(75, 50, 134, 0.15);
}
.card-feature:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

/* Subtle warm-up of the icon when card is hovered */
.card-feature .card-icon {
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s ease;
}
.card-feature:hover .card-icon {
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 10px 22px rgba(75, 50, 134, 0.35);
}

/* When inside a purple section, adjust stripe contrast */
.section-purple .card-feature:hover {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

/* =========================================================
   RESOURCE TOOL — gold accent always visible (lighter) + brighter on hover
   ========================================================= */
.resource-tool::before {
  /* Override: keep stripe visible at all times, but at reduced opacity */
  transform: scaleY(1);
  opacity: 0.35;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.resource-tool:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

/* BCC variant — icon panel holds the actual council logo */
.resource-tool-icon--bcc {
  background: linear-gradient(160deg, #2A1A4D 0%, #4B3286 60%, #5C4399 100%);
  padding: 8px;
  overflow: hidden;
}
.resource-tool-icon--bcc img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}


/* =========================================================
   JOURNEY MAP TIMELINE — "The Climb"
   Sticky map on left + scrolling rich chapters on right
   ========================================================= */
.climb {
  position: relative;
  background: linear-gradient(180deg, #2A1A4D 0%, #382264 50%, #4B3286 100%);
  color: #fff;
  padding: 96px 0 64px;
  overflow: hidden;
  overflow: clip;
  isolation: isolate;
}
.climb-atmos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 8%, rgba(244, 196, 48, 0.14), transparent 45%),
    radial-gradient(circle at 80% 92%, rgba(75, 50, 134, 0.6), transparent 55%),
    radial-gradient(circle at 60% 50%, rgba(244, 196, 48, 0.04), transparent 60%);
  z-index: 0;
}
.climb-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: clamp(380px, 32vw, 480px) 1fr;
  gap: 56px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Sticky map column ===== */
.climb-map {
  position: relative;
}
.climb-map-sticky {
  position: sticky;
  top: 90px;
  height: calc(100vh - 110px);
  height: calc(100dvh - 110px);
  display: flex;
  flex-direction: column;
}
.climb-map-head {
  margin-bottom: 12px;
  flex-shrink: 0;
}
.climb-svg {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
}
.climb-eyebrow {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 10px;
}
.climb-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.18;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  word-break: normal;
  overflow-wrap: break-word;
}
.climb-title em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.climb-intro {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 12px;
  line-height: 1.45;
}
.climb-personal {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: linear-gradient(90deg, rgba(244, 196, 48, 0.1), rgba(244, 196, 48, 0.18));
  border-radius: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
  border: 1px solid rgba(244, 196, 48, 0.25);
  line-height: 1.4;
}
.climb-personal[hidden] { display: none; }
.climb-personal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(244, 196, 48, 0.7);
  animation: climbPulseDot 2s ease-in-out infinite;
}
@keyframes climbPulseDot {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.3); opacity: 1; }
}
.climb-personal-text strong { color: var(--gold-300); font-weight: 700; }

.climb-svg text {
  font-family: var(--font-body);
}
.climb-mark-label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.climb-mark-sub {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Marker states */
.climb-mark {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.4s ease;
  transform-box: fill-box;
  transform-origin: center;
}
.climb-mark .climb-mark-bg {
  transition: stroke-width 0.4s ease, fill 0.4s ease;
  opacity: 1;
}
.climb-mark .climb-mark-icon,
.climb-mark .climb-mark-label,
.climb-mark .climb-mark-sub {
  transition: opacity 0.4s ease;
  opacity: 0.55;
}
.climb-mark.is-active {
  filter: drop-shadow(0 0 18px rgba(244, 196, 48, 0.55));
}
.climb-mark.is-active .climb-mark-bg { stroke-width: 2.5; }
.climb-mark.is-active .climb-mark-icon,
.climb-mark.is-active .climb-mark-label,
.climb-mark.is-active .climb-mark-sub {
  opacity: 1;
}
.climb-mark.was-active .climb-mark-icon,
.climb-mark.was-active .climb-mark-label,
.climb-mark.was-active .climb-mark-sub {
  opacity: 0.85;
}

/* YOU ARE HERE pin */
.climb-pin {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.climb-pin[hidden] { display: none; }
@keyframes climbPinBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.climb-pin > rect,
.climb-pin > path,
.climb-pin > text {
  animation: climbPinBob 2s ease-in-out infinite;
}

/* Animated atmospherics */
@keyframes climbFogDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}
.climb-fog { animation: climbFogDrift 14s ease-in-out infinite; }

/* ===== Scrolling chapters ===== */
.climb-chapters {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 88px;
  padding-top: 8px;
}

.ch {
  position: relative;
  max-width: 620px;
  opacity: 0.5;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.ch.in-view {
  opacity: 1;
  transform: translateY(0);
}

.ch-time {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  font-style: italic;
  margin-bottom: 12px;
  padding: 6px 14px 6px 6px;
  background: linear-gradient(90deg, rgba(244, 196, 48, 0.15), rgba(244, 196, 48, 0.03));
  border-left: 3px solid var(--gold-400);
  border-radius: 4px;
}
.ch-n {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ch-u {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.ch h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.ch-lede {
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 18px;
}
.ch p:not(.ch-lede) {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 18px;
}

.ch-highlight {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--gold-300);
  padding: 18px 22px;
  border-left: 3px solid var(--gold-400);
  background: rgba(244, 196, 48, 0.06);
  border-radius: 0 12px 12px 0;
  margin: 24px 0 0;
  position: relative;
}
.ch-highlight::before {
  content: """;
  position: absolute;
  top: 6px;
  left: 12px;
  font-size: 2.2rem;
  color: rgba(244, 196, 48, 0.25);
  font-family: serif;
  line-height: 1;
}

/* The end-of-journey closer */
.climb-end {
  margin-top: 32px;
  padding: 56px 32px;
  background: radial-gradient(circle at 50% 0%, rgba(244, 196, 48, 0.15), transparent 60%),
              linear-gradient(180deg, rgba(75, 50, 134, 0.4), rgba(75, 50, 134, 0.15));
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(244, 196, 48, 0.2);
}
.climb-end-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
}
.climb-end-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  color: #fff;
  line-height: 1.4;
  margin: 0 0 28px;
}
.climb-end-cta {
  display: inline-block;
}

/* ===== Mobile / tablet collapse ===== */
@media (max-width: 980px) {
  .climb { padding: 40px 0 32px; }
  .climb-inner {
    display: block;
    padding: 0 20px;
  }
  /* On mobile: no sticky anything. Compact intro panel at top, chapters flow naturally below. */
  .climb-map {
    position: relative;
    background: linear-gradient(180deg, rgba(75, 50, 134, 0.35), rgba(75, 50, 134, 0.15));
    border: 1px solid rgba(244, 196, 48, 0.18);
    border-radius: 16px;
    margin-bottom: 28px;
    padding: 18px 18px 16px;
  }
  .climb-map-sticky {
    position: static;
    height: auto;
    max-height: none;
    display: block;
  }
  .climb-map-head { margin-bottom: 0; }
  .climb-title {
    font-size: 1.15rem;
    line-height: 1.3;
    margin: 0 0 10px;
  }
  .climb-title br { display: none; }
  .climb-title em { white-space: nowrap; }
  .climb-intro {
    font-size: 0.9rem;
    margin: 0 0 14px;
    opacity: 0.75;
  }
  .climb-eyebrow {
    font-size: 0.62rem;
    margin-bottom: 8px;
    letter-spacing: 0.2em;
  }
  .climb-personal {
    padding: 10px 14px;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
  }
  /* Hide the SVG map entirely on mobile */
  .climb-svg { display: none; }

  .climb-chapters {
    gap: 56px;
    padding-top: 0;
  }
  .ch {
    max-width: none;
    /* Disable fade-in transform on mobile */
    opacity: 1;
    transform: none;
  }
  .ch h2 { font-size: 1.45rem; line-height: 1.25; }
  .ch-lede { font-size: 1.02rem; line-height: 1.65; }
  .ch-highlight { font-size: 0.98rem; }
  .climb-end { padding: 36px 22px; margin-top: 16px; }
}

@media (max-width: 600px) {
  .climb { padding: 32px 0 28px; }
  .climb-inner { padding: 0 16px; }
  .climb-map { padding: 16px 16px 14px; margin-bottom: 24px; }
  .climb-title { font-size: 1.05rem; }
  .climb-intro { font-size: 0.85rem; }
  .climb-personal { font-size: 0.8rem; padding: 9px 12px; }
  .climb-chapters { gap: 44px; }
  .ch h2 { font-size: 1.28rem; }
  .ch-lede { font-size: 0.98rem; line-height: 1.6; }
  .ch p:not(.ch-lede) { font-size: 0.95rem; line-height: 1.6; }
  .ch-highlight { font-size: 0.94rem; padding: 14px 18px 14px 22px; }
  .ch-n { font-size: 1.5rem; }
  .climb-end-quote { font-size: 1.08rem; }
}


/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ch, .climb-mark, .climb-pin, .climb-fog, .climb-personal-dot,
  .climb-pin > rect, .climb-pin > path, .climb-pin > text {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .climb-mark .climb-mark-bg,
  .climb-mark .climb-mark-icon,
  .climb-mark .climb-mark-label,
  .climb-mark .climb-mark-sub { opacity: 1 !important; }
}

/* =========================================================
   Asterisk footnotes — used on multiple pages
   ========================================================= */
.asterisk-note {
  display: block;
  margin: 20px auto 0;
  padding: 10px 18px;
  max-width: 780px;
  text-align: center;
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--muted);
  scroll-margin-top: 110px;
  background: rgba(75, 50, 134, 0.04);
  border-left: 2px solid rgba(244, 196, 48, 0.55);
  border-right: 2px solid rgba(244, 196, 48, 0.55);
  border-radius: 8px;
}
.asterisk-note .ast { color: var(--gold-600); font-weight: 700; font-style: normal; margin-right: 4px; }
.asterisk-note a {
  color: var(--purple-700);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dotted rgba(75, 50, 134, 0.4);
}
.asterisk-note a:hover { border-bottom-style: solid; }

/* On dark/purple section backgrounds */
.section-purple .asterisk-note,
.climb .asterisk-note {
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.04);
}
.section-purple .asterisk-note a,
.climb .asterisk-note a {
  color: var(--gold-300);
  border-bottom-color: rgba(244, 196, 48, 0.45);
}
.section-purple .asterisk-note .ast,
.climb .asterisk-note .ast { color: var(--gold-300); }

.inline-ast-link {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px dotted currentColor;
}
.inline-ast-link:hover { border-bottom-style: solid; }

/* Footer legal/company info line */
.footer-legal {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}
.footer-legal > div + div { margin-top: 4px; }
  line-height: 1.6;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.25);
}
.footer-legal a:hover { color: var(--gold-300); border-bottom-color: rgba(244, 196, 48, 0.5); }
@media (max-width: 600px) {
  .footer-legal { font-size: 0.72rem; }
}

/* =========================================================
   MULTILINGUAL WELCOME STRIP (footer)
   ========================================================= */
.welcome-strip {
  margin-bottom: 38px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}
.welcome-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.welcome-greetings {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}
.welcome-greetings span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.welcome-greetings span[lang="en"] {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-400);
  font-size: 1.15rem;
}
.welcome-greetings span[lang="ur"],
.welcome-greetings span[lang="bn"],
.welcome-greetings span[lang="pa"] {
  font-size: 1.15rem;
}
.welcome-msg {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  flex: 0 1 auto;
  max-width: 360px;
}
.welcome-msg a {
  color: var(--gold-400);
  font-weight: 700;
  white-space: nowrap;
}
.welcome-msg a:hover { color: var(--gold-300); }

@media (max-width: 720px) {
  .welcome-strip { margin-bottom: 28px; padding: 16px 18px; }
  .welcome-strip-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .welcome-msg { font-size: 0.85rem; max-width: 100%; }
}

/* =========================================================
   UTILITY CLASSES (replacing former inline style="..." attrs)
   ========================================================= */
.pt-tight { padding-top: 10px; }
.pt-0 { padding-top: 0; }
.pt-24 { padding-top: 24px; }
.pt-56 { padding-top: 56px; }
.mt-16 { margin-top: 16px; }
.mt-8-sm { margin-top: 8px; font-size: 0.92rem; }
.mt-12-sm { font-size: 0.9rem; margin-top: 12px; }
.mr-18 { margin-right: 18px; }
.mb-0 { margin-bottom: 0; }
.mb0-sm { font-size: 0.9rem; margin-bottom: 0; }
.w-auto-m0 { width: auto; margin: 0; }
.icon-top-16 { top: 16px; }
.tal-mb24 { text-align: left; margin-bottom: 24px; }
.italic-medium { font-style: italic; font-weight: 500; }
.flex-row-18 { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.inline-icon-row { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; cursor: pointer; }
.reset-link { color: inherit; text-decoration: none; }
.card-white { background: #fff; border-color: var(--line); }
.text-muted { color: var(--muted); }
.text-purple { color: var(--purple-700); }
.h-purple-mb8 { color: var(--purple-700); margin-bottom: 8px; }
.text-white-85 { color: rgba(255, 255, 255, 0.85); }
.text-white-large { color: rgba(255, 255, 255, 0.9); font-size: 1.08rem; line-height: 1.8; }
.cta-purple-grad { background: linear-gradient(135deg, #4B3286, #5C4399); color: #fff; }
