/* ============================================================
   EV ABBOTT COACHING
   Visual system adapted from the Reframd home page (editorial /
   asymmetric & declarative). Palette and fonts are Ev's; the
   layout language is the same. WCAG 2.2 AA targeted throughout.
   ============================================================ */

/* ───────── TOKENS ───────── */
:root {
  /* Brand palette (client brief — small contrast tweaks only) */
  --paper:      #FFFFFF;
  --canvas:     #F7F9FB;   /* off-white — main background */
  --mist:       #E8EAEE;   /* light grey — quiet alt bands */
  --soft-blue:  #B3C9F6;   /* soft blue — pop band / light accent */
  --blue:       #4A6BD4;   /* primary blue — actions + closing block */
  --blue-deep:  #3A57B8;   /* darker blue — hover/active (tweak) */
  --olive:      #7E8A52;   /* bright olive — LARGE decorative type ONLY (54px+ marks, 72px+ numerals) + non-text icons/markers, where 3:1 is enough */
  --olive-deep: #5F6A3C;   /* darkened olive for text, labels & button hovers — passes WCAG AA on light backgrounds */
  --olive-text: #5F6A3C;   /* alias of --olive-deep, kept so existing label rules pick up the darker tone */
  --ink:        #1B2440;   /* near-navy — headings, body text, dark blocks */
  --ink-70:     #4C5468;   /* muted text — AA-safe on canvas & mist (tweak) */

  --on-dark:        #F7F9FB;
  --on-dark-soft:   rgba(247, 249, 251, 0.80);
  --on-dark-faint:  rgba(247, 249, 251, 0.55);
  --on-blue-soft:   rgba(255, 255, 255, 0.92);

  --line:        rgba(27, 36, 64, 0.14);
  --line-soft:   rgba(27, 36, 64, 0.08);
  --line-on-dark: rgba(247, 249, 251, 0.16);

  --serif: 'Cormorant Garamond', 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, serif;
  --sans:  'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  --maxw:   1200px;
  --gutter: clamp(24px, 5vw, 64px);
  --header-h: 76px;
  --pad-section: clamp(64px, 9vw, 124px);
}

/* ───────── RESET / BASE ───────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--canvas); }
body {
  font-family: var(--sans);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--soft-blue); color: var(--ink); }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 3px; }

/* Visible keyboard focus everywhere */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}
/* On dark/blue surfaces use a light focus ring */
.challenge :focus-visible,
.contact :focus-visible,
.site-footer :focus-visible { outline-color: var(--soft-blue); }

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

/* Skip link */
.skip-link {
  position: absolute; left: 14px; top: -120px; z-index: 300;
  background: var(--ink); color: #fff;
  padding: 12px 18px; border-radius: 8px;
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  transition: top 0.18s ease;
}
.skip-link:hover { color: #fff; text-decoration: none; }
.skip-link:focus-visible { top: 14px; outline-offset: 2px; }

/* ───────── LAYOUT HELPERS ───────── */
.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section { padding-block: var(--pad-section); scroll-margin-top: calc(var(--header-h) + 12px); }
section.alt { background: var(--mist); }

/* Micro-label (mono eyebrow) */
.micro-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-text);
  margin-bottom: 22px;
}
.micro-label--light { color: var(--soft-blue); }

/* Display type (Cormorant Garamond) */
.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.018em;
  color: var(--ink);
  text-wrap: balance;
  /* Ligatures off: Cormorant's "fi" ligature drops the dot on the i
     (e.g. "Confident"), which reads as a typo on big display text. */
  font-variant-ligatures: none;
  font-feature-settings: 'liga' 0, 'dlig' 0;
}
.display__italic {
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 46px;
  padding: 13px 24px;
  font-family: var(--sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.11em; text-transform: uppercase;
  line-height: 1;
  border: 1.5px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.2s ease;
}
.btn:hover { text-decoration: none; }
.btn .arrow { transition: transform 0.22s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn--lg { min-height: 54px; padding: 17px 30px; font-size: 13px; }
/* Solid CTA — blue #4A6BD4 with white text (~4.83:1, passes AA), olive #7E8A52 on hover */
.btn--solid { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn--solid:hover { background: var(--olive-deep); border-color: var(--olive-deep); color: #fff; }
.btn--quiet {
  background: transparent; color: var(--ink); border: none;
  border-radius: 0;
  letter-spacing: 0.04em; text-transform: none; font-weight: 500; font-size: 14px;
  border-bottom: 1.5px solid var(--ink-70);
  min-height: 0; padding: 8px 2px;
}
.btn--quiet:hover { color: var(--blue); border-color: var(--blue); }
/* Contact CTA on the blue section — cream button with dark navy text/arrow, sage hover. */
.btn--on-blue { background: var(--on-dark); color: var(--ink); border-color: var(--on-dark); }
.btn--on-blue:hover { background: var(--olive-deep); border-color: var(--olive-deep); color: #fff; }
/* Olive modifier — kept as a no-op alias of .btn--solid */
.btn--olive { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn--olive:hover { background: var(--olive-deep); color: #fff; border-color: var(--olive-deep); }

/* Placeholder image system (swap .img-ph contents for a real <img>) */
.img-ph {
  position: relative;
  display: flex; align-items: flex-end; justify-content: flex-start;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-color: var(--soft-blue);
  background-image: repeating-linear-gradient(135deg, rgba(27,36,64,0.06) 0 2px, transparent 2px 15px);
  border: 1px solid var(--line-soft);
}
.img-ph--tall { aspect-ratio: 4 / 5; }
.img-ph__label {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--ink);
  background: rgba(247, 249, 251, 0.86);
  border: 1px dashed var(--line);
  padding: 7px 11px;
  margin: 16px;
}
.img-ph:has(img) { background: none; border: 0; }
.img-ph:has(img) .img-ph__label { display: none; }
.img-ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Draft / placeholder flag */
.draft-flag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.04em;
  color: var(--ink-70);
  background: rgba(27, 36, 64, 0.06);
  padding: 3px 8px; border-radius: 4px;
}
.micro-label--light + .display .draft-flag,
.challenge .draft-flag,
.contact .draft-flag { color: var(--on-dark-soft); background: rgba(247,249,251,0.12); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 249, 251, 0.9);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.wordmark {
  display: inline-flex; align-items: center;
  flex-shrink: 0; line-height: 0;
}
.wordmark img { height: 64px; width: auto; display: block; transition: opacity 0.2s ease; }
.wordmark:hover { text-decoration: none; }
.wordmark:hover img { opacity: 0.78; }
.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav > a:not(.btn) {
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink);
}
.primary-nav > a:not(.btn):hover { color: var(--blue); text-decoration: none; }
/* Header CTA inherits blue + olive-hover via .btn--solid; just size overrides here */
.nav-cta { min-height: 44px; padding: 12px 18px; }

.nav-toggle {
  display: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  width: 46px; height: 46px;
  background: transparent; border: 1px solid var(--line); border-radius: 6px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 1.6px; background: var(--ink); transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute; left: 0; right: 0; top: var(--header-h);
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--canvas);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 22px;
    box-shadow: 0 14px 30px -18px rgba(27, 36, 64, 0.3);
    max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.22s ease, visibility 0.22s ease, padding 0.3s ease;
  }
  .primary-nav.is-open { max-height: 480px; opacity: 1; visibility: visible; padding-top: 8px; }
  .primary-nav > a:not(.btn) {
    padding: 15px 2px; font-size: 12px;
    border-bottom: 1px solid var(--line-soft);
  }
  .primary-nav .btn { width: 100%; margin-top: 16px; }
}

/* ============================================================
   HERO — full-bleed photo + light wash overlay
   ============================================================ */
.hero {
  position: relative;
  display: flex; align-items: center;
  min-height: clamp(520px, 80vh, 800px);
  padding-block: clamp(56px, 9vw, 112px);
  overflow: hidden;
  color: var(--ink);
  background-color: var(--mist);
  /* School photo under a strong, light #E8EAEE wash — kept very light across the
     left two-thirds (where all the text sits) for readability, easing off only
     on the far right so a hint of the building still shows. */
  background-image:
    linear-gradient(102deg,
      rgba(232, 234, 238, 0.97) 0%,
      rgba(232, 234, 238, 0.95) 48%,
      rgba(232, 234, 238, 0.86) 76%,
      rgba(232, 234, 238, 0.74) 100%),
    url('../images/ev-abbott-coaching-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw);
  margin-inline: auto; padding-inline: var(--gutter);
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 24px;
}
.hero h1.display {
  font-size: clamp(44px, 7.4vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.028em;
  max-width: 16ch;
}
.hero .display__italic { color: var(--blue); }
.hero__sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--ink-70);
  max-width: 38rem;
  margin-top: 2px;
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 30px; margin-top: 12px; }

/* ============================================================
   A BRIEF INTRODUCTION
   ============================================================ */
.intro { padding-block: clamp(56px, 7vw, 96px); }
.intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.intro__text { max-width: 34rem; }
.intro__lead {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2; letter-spacing: -0.015em;
  margin-bottom: 22px;
}
/* .intro__lead .display__italic — inherits global .display__italic colour (blue) */
.intro__body { color: var(--ink-70); font-size: clamp(17px, 1.4vw, 19px); line-height: 1.62; }
.intro__sig {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 21px; color: var(--olive-text);
  margin-top: 28px;
}
.intro__media .img-ph { max-height: 520px; }

/* ============================================================
   THE CHALLENGE — bold dark block
   ============================================================ */
.challenge {
  background: var(--ink);
  color: var(--on-dark);
}
.challenge .display { color: var(--on-dark); }
.challenge__h2 {
  /* same fluid scale as the How section heading */
  font-size: clamp(36px, 5.6vw, 84px);
  line-height: 1.06;
  letter-spacing: -0.024em;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.challenge__accent { color: var(--soft-blue); }
/* Two-column body: paragraphs on the left, callouts on the right */
.challenge__cols {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.challenge__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--on-dark-soft);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
  max-width: 60ch;
}
.challenge__callouts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  background: var(--mist);
  padding: clamp(18px, 2vw, 24px) clamp(20px, 2.4vw, 28px);
}
.callout__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--olive);
  flex-shrink: 0;
}
.callout__icon svg { width: 100%; height: 100%; display: block; }
.callout__text {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}

@media (max-width: 880px) {
  .challenge__cols { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   COACHING DEPTH — quiet editorial section between challenge & how-it-works
   ============================================================ */
.depth { background: var(--paper); } /* pure white — distinct from the slightly-grey canvas elsewhere */
.depth__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  max-width: 1100px;
  margin-inline: auto;
}
.depth__media .img-ph {
  max-width: 460px;
  max-height: 580px;
}
.depth__text { max-width: 60ch; }
.depth__h2 {
  text-align: left;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 0 clamp(22px, 2.6vw, 34px);
}
.depth__pull {
  text-align: left;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--blue);
  margin: 0 0 clamp(32px, 4vw, 48px);
}
.depth__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  text-align: left;
  font-family: var(--sans);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.66;
  color: var(--ink);
}

@media (max-width: 880px) {
  .depth__inner { grid-template-columns: 1fr; gap: 36px; }
  .depth__media .img-ph { max-width: 440px; margin-inline: auto; }
}

/* ============================================================
   HOW IT WORKS — three steps
   ============================================================ */
.how__head {
  margin-bottom: clamp(40px, 5vw, 64px);
  text-align: center;
}
.how__h2 {
  font-size: clamp(36px, 5.6vw, 84px);
  line-height: 1.06;
  /* no max-width — heading spans the full section width so it can sit on one line at desktop */
  margin-bottom: 24px;
}
.how__intro {
  color: var(--ink-70);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  /* no max-width — extends to the same width as the heading above */
  margin-inline: auto;
}
.how__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.how__step {
  background: var(--canvas);
  padding: clamp(28px, 3.4vw, 44px) clamp(22px, 2.4vw, 36px);
  min-height: clamp(300px, 30vw, 400px);
  display: flex; flex-direction: column; gap: 14px;
  transition: background-color 0.3s ease;
}
.alt .how__step { background: var(--mist); }
.how__step:hover { background: var(--soft-blue); }
.how__num {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(72px, 7vw, 110px);
  line-height: 0.85;
  color: var(--olive);
  margin-bottom: clamp(16px, 3vw, 40px);
}
.how__step h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.15; letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 16ch;
}
.how__step p { color: var(--ink-70); font-size: 15.5px; line-height: 1.6; }
.how__cta { margin-top: clamp(40px, 5vw, 64px); display: flex; justify-content: center; }

/* ============================================================
   WHAT CHANGES — outcomes cards
   ============================================================ */
/* What-changes section sits on a mist band */
.outcomes { background: var(--mist); }
.outcomes .micro-label { color: var(--olive-text); } /* brand olive returns — borderline AA-large on mist */
.outcomes__head { margin-bottom: clamp(40px, 5vw, 64px); }
.outcomes__h2 {
  font-size: clamp(36px, 6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.025em;
}
/* ── Outcomes as three tap-to-read flip cards ─────────────────────────
   Same card pattern as the Rita Hurson site: a fine accent line on the
   top edge of each front face, a label, then a tap that flips the card to
   a coloured back face carrying the detail. Here an icon replaces the
   numeral, and the three accents are drawn from Ev's palette
   (blue → navy back · olive → olive back · navy line → soft-blue back). */
.oc-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
  max-width: 1040px;
  margin-inline: auto;
}
.oc-block { display: flex; flex-direction: column; height: 100%; }

.oc-card { perspective: 1200px; flex: 1; min-height: 280px; }
.oc-card-inner {
  position: relative; width: 100%; height: 100%;
  transition: transform 0.55s ease;
  transform-style: preserve-3d;
}
.oc-card[data-flipped="true"] .oc-card-inner { transform: rotateY(180deg); }

.oc-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  padding: clamp(24px, 2.6vw, 34px);
  display: flex; flex-direction: column; justify-content: space-between;
  border-radius: 5px;
  box-shadow: 0 22px 46px -32px rgba(27, 36, 64, 0.42);
}
/* Default (card 1) accent: blue line + blue icon, deep-navy back face */
.oc-front { background: var(--paper); border-top: 4px solid var(--blue); }
.oc-icon { display: block; width: 40px; height: 40px; color: var(--blue); margin-bottom: 18px; }
.oc-icon svg { width: 100%; height: 100%; display: block; }
.oc-front h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(20px, 1.7vw, 25px); line-height: 1.15;
  letter-spacing: -0.01em; color: var(--ink); margin: 0;
}
.oc-back { transform: rotateY(180deg); background: var(--ink); color: var(--on-dark); }
.oc-back p {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(17px, 1.5vw, 20px); line-height: 1.5; margin: 0;
}
.oc-flip-btn {
  margin-top: 18px; align-self: flex-start;
  background: none; border: none;
  font-family: var(--mono); font-weight: 500;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); cursor: pointer;
  padding: 0.5rem 0; min-height: 44px;
}
.oc-flip-btn .arrow { transition: transform 0.2s ease; display: inline-block; }
.oc-flip-btn:hover { color: var(--blue-deep); }
.oc-flip-btn:hover .arrow { transform: translateX(3px); }
.oc-back .oc-flip-btn { color: var(--on-dark-soft); }
.oc-back .oc-flip-btn:hover { color: var(--on-dark); }

/* Card 2 — olive line + olive icon, olive back face */
.oc-block[data-accent="olive"] .oc-front { border-top-color: var(--olive); }
.oc-block[data-accent="olive"] .oc-icon { color: var(--olive-deep); }
.oc-block[data-accent="olive"] .oc-back { background: var(--olive-deep); color: #fff; }

/* Card 3 — navy line + navy icon, light soft-blue back face with dark text */
.oc-block[data-accent="soft"] .oc-front { border-top-color: var(--ink); }
.oc-block[data-accent="soft"] .oc-icon { color: var(--ink); }
.oc-block[data-accent="soft"] .oc-back { background: var(--soft-blue); color: var(--ink); }
.oc-block[data-accent="soft"] .oc-back .oc-flip-btn { color: var(--blue-deep); }
.oc-block[data-accent="soft"] .oc-back .oc-flip-btn:hover { color: var(--ink); }

.oc-cards :focus-visible { outline-color: var(--blue); }

@media (prefers-reduced-motion: reduce) {
  .oc-card-inner { transition: none; }
  .oc-flip-btn .arrow { transition: none; }
}

/* Stack on narrow screens; taller cards so the longest back copy fits */
@media (max-width: 820px) {
  .oc-cards { grid-template-columns: 1fr; gap: 1.25rem; }
  .oc-card { min-height: 300px; }
}

/* ============================================================
   THE PROGRAMME & INVESTMENT
   ============================================================ */
.programme { background: var(--paper); }
.programme__head { margin-bottom: clamp(36px, 4.5vw, 56px); }
.programme__h2 {
  font-size: clamp(34px, 5.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  max-width: 20ch;
}
.programme__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.programme__text { display: flex; flex-direction: column; gap: 20px; color: var(--ink-70); font-size: 17px; line-height: 1.65; max-width: 46ch; }
.programme__text p strong, .programme__strong { color: var(--ink); font-weight: 600; }
.programme__text .btn { align-self: flex-start; margin-top: 8px; }
.programme__panel {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: clamp(28px, 3.4vw, 44px);
  box-shadow: 0 16px 36px -24px rgba(27, 36, 64, 0.28);
}
.programme__panel h3 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--ink);
  margin-bottom: 20px;
}
.programme__list {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 0;
}
.programme__list li {
  position: relative; padding-left: 26px;
  color: var(--ink-70); font-size: 15.5px; line-height: 1.5;
}
.programme__list li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 14px; height: 2px; background: var(--olive); border-radius: 2px;
}

/* ============================================================
   TESTIMONIALS — three stacked full-width colour bands
   ============================================================ */
.testimonials { padding-block: 0; }
.testimonials__eyebrow {
  display: block;
  text-align: center;
  padding: clamp(56px, 7vw, 96px) var(--gutter) 0;
  margin: 0;
}

.t-band {
  margin: 0;
  padding: clamp(40px, 5vw, 72px) var(--gutter);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: clamp(14px, 1.8vw, 22px);
  text-align: center;
  color: var(--ink);
  height: 100%;
}
.t-band--soft-blue { background: var(--soft-blue); }
.t-band--mist      { background: var(--mist); }
.t-band--canvas    { background: var(--canvas); }

/* ── Testimonial slider ── */
.t-slider {
  position: relative;
  margin-top: clamp(28px, 4vw, 44px);
}
.t-slider__viewport { overflow: hidden; }
.t-slider__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.t-slide {
  flex: 0 0 100%;
  min-width: 100%;
  list-style: none;
  display: flex;            /* let the band fill the tallest slide's height */
}
.t-slide > .t-band { width: 100%; }

.t-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 28px);
  padding: clamp(24px, 3.5vw, 40px) var(--gutter);
}
.t-slider__arrow {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.t-slider__arrow svg { width: 22px; height: 22px; }
.t-slider__arrow:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--on-dark);
}
.t-slider__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.t-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid var(--ink-70);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.t-slider__dot[aria-current="true"] {
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .t-slider__track { transition: none; }
}

.t-band__mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(54px, 6vw, 88px);
  line-height: 0.6;
  color: var(--ink);
}
.t-band__mark--accent { color: var(--olive); } /* canvas band only */

.t-band blockquote,
.t-band__quote-placeholder {
  margin: 0;
  max-width: 64ch;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.t-band__italic { font-style: italic; color: var(--blue-deep); }

.t-band figcaption {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ============================================================
   ABOUT EV — fuller, with stats
   ============================================================ */
.about { background: var(--paper); color: var(--ink); }
/* eyebrow back to brand olive on the paper-white background */
.about .micro-label { color: var(--olive-text); }
.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.about__media-col { display: flex; flex-direction: column; }
.about__media-col .img-ph { aspect-ratio: 4 / 5; }
/* Slight brand-grey wash over the school photo so its bright whites settle
   into the palette (matching grey = --mist #E8EAEE). */
.about__media-col .img-ph::after {
  content: "";
  position: absolute; inset: 0;
  background: #E8EAEE;
  opacity: 0.22;
  pointer-events: none;
}
.intro__stats {
  margin-top: clamp(28px, 3.4vw, 44px);
  padding-top: clamp(22px, 2.4vw, 32px);
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
}
.intro__stat { display: flex; flex-direction: column; gap: 8px; }
.intro__stat-num {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1; color: var(--blue);
  transition: color 0.25s ease;
}
/* .intro__stat-num .display__italic — inherits the parent's blue / hover olive */
.intro__stat-num .display__italic { color: inherit; }
/* "20+" uses Cormorant's old-style figures, which sit shorter than the "ILM"/
   "UCL" capitals. Scale that one number up to cap-height and compensate the
   line-height so its box (and the label beneath it) stays aligned with the
   other two stats. */
.intro__stat:first-child .intro__stat-num { font-size: clamp(38px, 3.53vw, 53px); line-height: 0.68; }
.intro__stat-lbl {
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--olive-text); line-height: 1.5;
  transition: color 0.25s ease;
}
.intro__stat:hover .intro__stat-num { color: var(--olive); }
.intro__stat:hover .intro__stat-lbl { color: var(--blue); }

/* Fourth credibility line below the three stat blocks */
.intro__accreditor {
  margin-top: clamp(14px, 1.6vw, 20px);
  text-align: left;
  font-family: var(--mono);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--olive-text);
  transition: color 0.25s ease;
  cursor: default;
}
.intro__accreditor:hover { color: var(--blue); }
.about__eyebrow {
  display: block;
  margin-bottom: clamp(20px, 2.4vw, 32px);
}
.about__text { display: flex; flex-direction: column; gap: clamp(20px, 2.4vw, 32px); }
.about__box--full { margin-top: clamp(28px, 3.4vw, 44px); }
.about__h2 {
  font-size: clamp(34px, 5vw, 76px);
  line-height: 1.02; letter-spacing: -0.025em;
  margin-bottom: 0;
  color: var(--ink);   /* dark navy on the soft-blue background (~9.2:1) */
}
/* italic accent back to cornflower on paper-white (~4.6:1, passes AA-normal) */
.about .display__italic { color: var(--blue); }

/* Bare text — no grey boxes; paragraphs flow on the soft-blue bg */
.about__box {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about__box--body p {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.66;
  color: var(--ink);
  max-width: 64ch;
}
.about__box--italic p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.4;
  color: var(--ink);
  text-align: left;
  /* no max-width — italic lines extend to the full container width, aligning with the right edge of the body block */
}

/* ============================================================
   FAQ — accordion (native <details>)
   ============================================================ */
.faq__inner { max-width: 920px; }
.faq__head {
  margin-bottom: clamp(40px, 5vw, 64px);
}
.faq__h2 {
  font-size: clamp(38px, 6vw, 100px);
  line-height: 0.94; letter-spacing: -0.025em;
}
.faq__intro { color: var(--ink-70); font-size: 16px; line-height: 1.55; max-width: 40ch; padding-bottom: 10px; }
.faq__list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: flex-start; gap: 24px;
  padding: 22px 0;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item__q {
  flex: 1;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.3; letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq-item > summary:hover .faq-item__q { color: var(--blue); }
.faq-item__icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--line);
  position: relative; margin-top: 2px;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.3s ease;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--ink);
  transition: transform 0.3s ease, background-color 0.2s ease;
}
.faq-item__icon::before { width: 11px; height: 1.6px; transform: translate(-50%, -50%); }
.faq-item__icon::after  { width: 1.6px; height: 11px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-item__icon { background: var(--ink); border-color: var(--ink); }
.faq-item[open] .faq-item__icon::before { background: var(--canvas); }
.faq-item[open] .faq-item__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-item__a { padding: 0 54px 26px 0; }
.faq-item__a p { color: var(--ink-70); font-size: 16px; line-height: 1.66; max-width: 66ch; }

/* ============================================================
   CONTACT — bold blue closing block
   ============================================================ */
.contact {
  background: var(--blue);
  color: #fff;
  padding-block: clamp(48px, 6vw, 80px); /* compact — overrides the default section padding */
}
.contact .display { color: #fff; }
/* Eyebrow to white: soft-blue on this bright blue is only 2.9:1 (fails AA for
   13px text); white is 4.83:1. Scoped to .contact so the challenge eyebrow
   (soft-blue on navy, which passes) is untouched. */
.contact .micro-label--light { color: #fff; }
.contact__inner {
  text-align: center;
  max-width: 900px;   /* wide enough for the two cards; the h2/lead keep their own narrower max-widths */
  margin-inline: auto;
}
.contact__h2 {
  font-size: clamp(36px, 5.4vw, 88px);
  line-height: 1.02; letter-spacing: -0.028em;
  margin: 16px auto 20px;
  max-width: 18ch;
}
.contact .display__italic { color: var(--on-dark); } /* cream on cornflower, italic style differentiates */
.contact__lead {
  color: #fff;                       /* solid white on the blue → 4.83:1, passes AA */
  font-size: clamp(16px, 1.3vw, 18px); line-height: 1.6;
  max-width: 56ch;
  margin: 0 auto;
}
.contact__based {
  margin: clamp(14px, 1.4vw, 18px) auto 0;
  color: #fff;                       /* solid white → 4.83:1, passes AA (kept small for hierarchy) */
  font-family: var(--sans);
  font-size: clamp(13px, 1vw, 14px);
}
.contact__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: clamp(24px, 2.8vw, 36px);
}

/* Two-choice contact: book a call · send a message — white cards on the blue band */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
  max-width: 900px;
  margin: clamp(30px, 3.6vw, 46px) auto 0;
  text-align: left;
}
.contact-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
}
/* Navy CTAs on the white cards — carry the brand navy without a heavy edge/shadow */
.contact-card .btn--solid,
.contact-form .btn--solid { background: var(--ink); border-color: var(--ink); color: #fff; }
.contact-card .btn--solid:hover,
.contact-form .btn--solid:hover { background: var(--olive-deep); border-color: var(--olive-deep); color: #fff; }
.contact-card__h {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(22px, 2.2vw, 28px); line-height: 1.12;
  letter-spacing: -0.01em; color: var(--ink);
  margin: 0 0 10px;
}
.contact-card__sub {
  color: var(--ink-70);
  font-size: clamp(15px, 1.2vw, 16px); line-height: 1.55;
  margin: 0 0 18px;
}
.contact-card__points {
  list-style: none; margin: 0 0 auto; padding: 16px 18px;
  background: rgba(179, 201, 246, 0.30);   /* pale soft-blue inset groups the reassurances */
  border-radius: 6px;
  display: flex; flex-direction: column; gap: 9px;
}
.contact-card__points li {
  position: relative; padding-left: 24px;
  font-size: clamp(14px, 1.1vw, 15px); color: var(--ink);
}
.contact-card__points li::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 12px; height: 6px;
  border-left: 2px solid var(--olive); border-bottom: 2px solid var(--olive);
  transform: translateY(-2px) rotate(-45deg); /* small check mark */
}
.contact-card__cta { margin-top: clamp(22px, 2.6vw, 30px); width: 100%; }

/* Message form */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-70);
}
.field input, .field textarea {
  font-family: var(--sans);
  font-size: 16px; /* 16px avoids iOS zoom-on-focus */
  color: var(--ink); background: var(--canvas);
  border: 1.5px solid var(--line); border-radius: 4px;
  padding: 11px 13px; width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus-visible, .field textarea:focus-visible {
  outline: 3px solid var(--blue); outline-offset: 2px; border-color: var(--blue);
}
.contact-form__submit { margin-top: 6px; width: 100%; }
/* honeypot: off-screen, never shown to users */
.hp { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

@media (max-width: 720px) {
  .contact__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--on-dark-faint);
  padding-block: clamp(32px, 4vw, 44px);
}
.site-footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2vw, 26px);
  text-align: center;
  padding-bottom: clamp(22px, 2.6vw, 32px);
  margin-bottom: clamp(20px, 2.4vw, 28px);
  border-bottom: 1px solid var(--line-on-dark);
}
.site-footer__logo {
  height: 64px; width: auto; display: block;
  /* logo artwork is solid black on transparent — invert to white for the dark footer */
  filter: brightness(0) invert(1);
}
.site-footer__copy {
  margin: 0;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-dark-faint);
}
.site-footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 26px; }
.site-footer__nav a {
  display: inline-block; padding-block: 11px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--on-dark-soft);
}
.site-footer__nav a:hover { color: var(--soft-blue); }
.site-footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 28px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-dark-faint);
}
.site-footer__legal { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; }
.site-footer__bottom a { display: inline-block; padding-block: 11px; color: var(--on-dark-soft); }
@media (max-width: 720px) {
  .site-footer__bottom { justify-content: center; text-align: center; }
  .site-footer__legal { justify-content: center; }
}
.site-footer__bottom a:hover { color: var(--soft-blue); }
.site-footer__sep { opacity: 0.4; }
.site-footer__regulatory {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 11.5px; line-height: 1.55;
  color: rgba(247, 249, 251, 0.35);
  max-width: 72ch;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero {
    /* narrower screens: near-even, very light wash so every line stays legible */
    background-image:
      linear-gradient(180deg,
        rgba(232, 234, 238, 0.96) 0%,
        rgba(232, 234, 238, 0.92) 55%,
        rgba(232, 234, 238, 0.88) 100%),
      url('../images/ev-abbott-coaching-hero.jpg');
  }
  .intro__inner { grid-template-columns: 1fr; gap: 40px; }
  .intro__media .img-ph { max-width: 440px; }
  .how__steps { grid-template-columns: 1fr; }
  .how__step { min-height: auto; }
  .programme__grid { grid-template-columns: 1fr; gap: 36px; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__media-col .img-ph { max-width: 420px; }
  .intro__stats { max-width: 460px; }
  .faq__head { grid-template-columns: 1fr; gap: 16px; align-items: start; }
  .faq__intro { padding-bottom: 0; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .wordmark img { height: 48px; }
  .site-footer__logo { height: 52px; }
  .intro__stats { grid-template-columns: 1fr; gap: 20px; }
  .intro__stat { flex-direction: row; align-items: baseline; gap: 14px; }
  .intro__stat-num { font-size: 32px; }
  .intro__stat:first-child .intro__stat-num { font-size: 32px; line-height: 1; } /* row/baseline layout on mobile — no bump needed */
  .faq-item__a { padding-right: 0; }
  .btn--lg { width: 100%; }
  .hero__actions .btn--lg { width: auto; }
}

/* ============================================================
   SCROLL-TO-TOP BUTTON
   ============================================================ */
.scroll-top {
  position: fixed;
  /* respect the home-indicator safe area on notched phones */
  bottom: max(24px, env(safe-area-inset-bottom));
  right: max(24px, env(safe-area-inset-right));
  z-index: 90;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  border: 1.5px solid var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 30px -14px rgba(27, 36, 64, 0.45);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease,
              background-color 0.22s ease, border-color 0.22s ease;
}
.scroll-top.is-visible {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.scroll-top:hover {
  background: var(--olive-deep); border-color: var(--olive-deep);
  transform: translateY(-2px);
}
.scroll-top svg { width: 20px; height: 20px; display: block; }
@media (max-width: 600px) {
  .scroll-top { width: 46px; height: 46px; bottom: 18px; right: 18px; }
}

/* ============================================================
   INTERACTIVE ENHANCEMENTS
   Added in review pass. All states are covered by the global
   reduced-motion block below (transitions neutralised there).
   ============================================================ */

/* Challenge callouts — subtle lift + border on hover. Nothing hidden;
   all three pains stay legible. */
.callout {
  border: 1px solid transparent;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.callout:hover {
  transform: translateY(-3px);
  background: var(--paper);
  border-color: var(--line);
}
.callout:hover .callout__icon { color: var(--ink); }
.callout__icon { transition: color 0.25s ease; }

/* How-it-works — keep the soft-blue fill, animate the numeral too so the
   whole card feels alive. Bodies stay visible (no collapse). */
.how__num { transition: color 0.3s ease; }
.how__step:hover .how__num { color: var(--ink); }

/* Hero — one quiet entrance on load. Neutralised under reduced motion. */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .micro-label { animation: heroRise 0.7s ease both; }
.hero .display     { animation: heroRise 0.7s ease 0.08s both; }
.hero__sub         { animation: heroRise 0.7s ease 0.16s both; }
.hero__actions     { animation: heroRise 0.7s ease 0.24s both; }

/* ============================================================
   CREDIBILITY STRIP — monochrome navy logo band
   Logos are cleaned to transparent PNGs; the filter unifies them all to
   brand navy (--ink #1B2440) regardless of their source colour.
   ============================================================ */
.cred {
  padding: clamp(2.75rem, 6vw, 4.25rem) 0;
  background: var(--mist);   /* quiet grey band: white intro → grey strip → navy challenge */
}
.cred__label {
  display: block;              /* .micro-label is inline-block; block lets it centre */
  text-align: center;
  margin: 0 0 clamp(1.9rem, 4vw, 2.6rem);
  color: var(--ink);
}
.cred__dot { margin: 0 0.5em; color: var(--olive-text); }
.cred__strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.cred__item { display: flex; align-items: center; justify-content: center; }
/* brightness(0) crushes each logo to black, then the chain tints it to navy. */
.cred__item img {
  height: clamp(26px, 3.4vw, 34px);
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(11%) sepia(28%) saturate(1620%) hue-rotate(196deg) brightness(94%) contrast(93%);
  opacity: 0.78;
  transition: opacity 0.25s ease;
}
.cred__item img:hover,
.cred__item img:focus-visible { opacity: 1; }
/* Optical balancing — match visual weight, not just height, so the bold/wide
   marks don't dominate and the compact ones don't disappear. */
.cred__item img[data-logo="cis"]   { height: clamp(30px, 4vw, 40px); }
.cred__item img[data-logo="the"]   { height: clamp(30px, 4vw, 40px); }
.cred__item img[data-logo="bsc"]   { height: clamp(23px, 3vw, 30px); }
.cred__item img[data-logo="nsead"] { height: clamp(23px, 3vw, 30px); }
.cred__item img[data-logo="insea"] { height: clamp(20px, 2.6vw, 26px); }
@media (max-width: 600px) {
  .cred__strip { gap: 1.75rem 2rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
