/* ============================================================
   1300 Easy Dial — clean.css  (identity: "The Dial / Phoneword")
   Token-first design system. Only linked stylesheet after P3/P7.
   ============================================================ */

/* ---------- Fonts (self-hosted, no third-party) ---------- */
@font-face {
  font-family: 'PT Sans Narrow';
  src: url('/assets/fonts/pt-sans-narrow-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'PT Sans Narrow';
  src: url('/assets/fonts/pt-sans-narrow-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-latin-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --ed-navy: #143B72;
  --ed-navy-deep: #0D2A50;
  --ed-sky: #18A1D7;
  --ed-sky-hi: #19A1D7;
  --ed-ink: #102A3C;
  --ed-slate: #4A5B6B;
  --ed-line: #DCE5EC;
  --ed-bg: #FFFFFF;
  --ed-bg-mist: #F2F7FB;
  --ed-bg-tint: #EEF4FB;
  --ed-gold: #F2B02E;
  --ed-white: #FFFFFF;

  --font-display: 'PT Sans Narrow', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --fs-xs: .8125rem;
  --fs-sm: .9375rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.35rem;
  --fs-xl: clamp(1.7rem, 3.4vw, 2.5rem);
  --fs-hero: clamp(2.4rem, 6vw, 4.2rem);

  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-7: 28px; --sp-8: 32px;
  --sp-9: 36px; --sp-10: 40px; --sp-12: 48px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-pill: 999px;

  --shadow-card: 0 6px 24px rgba(13,42,80,.08);
  --shadow-hero: 0 12px 40px rgba(13,42,80,.18);

  --container-max: 1280px;
  --gutter: 1.5rem;
  --header-h: 72px;
  --section-pad: 4.5rem;

  --color-primary: var(--ed-navy);
  --color-primary-dark: var(--ed-navy-deep);
  --color-accent: var(--ed-sky);
  --color-cta: var(--ed-sky);
  --color-cta-dark: var(--ed-navy-deep);
  --color-text: var(--ed-ink);
  --color-text-muted: var(--ed-slate);
  --color-background: var(--ed-bg);
  --color-background-alt: var(--ed-bg-mist);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ed-ink);
  background: var(--ed-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--ed-sky); text-underline-offset: 3px; }
a:hover { color: var(--ed-navy); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.08;
  color: var(--ed-navy);
  margin: 0 0 .5em;
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-xl); }
h3 { font-size: var(--fs-lg); }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; }
:focus-visible { outline: 3px solid var(--ed-sky); outline-offset: 2px; }

/* ---------- Layout primitives ---------- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
.site-main { min-height: 60vh; }
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--ed-bg-mist); }
.grid { display: grid; gap: var(--sp-6); }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; min-height: 48px; padding: .7rem 1.5rem;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; text-decoration: none; border-radius: var(--radius-md);
  border: 2px solid transparent; cursor: pointer; transition: all .18s ease;
}
.btn--primary { background: var(--ed-sky); color: #fff; }
.btn--primary:hover { background: var(--ed-navy); color: #fff; }
.btn--dark { background: var(--ed-navy); color: #fff; }
.btn--dark:hover { background: var(--ed-navy-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--ed-white); border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.btn--outline { background: transparent; color: var(--ed-navy); border-color: var(--ed-navy); }
.btn--outline:hover { background: var(--ed-navy); color: #fff; }
.btn--block { width: 100%; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h); background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--ed-line);
}
.navbar { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand {
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  text-transform: uppercase; letter-spacing: .04em; color: var(--ed-navy);
  text-decoration: none; display: inline-flex; align-items: center; gap: .5rem;
}
.brand:hover { color: var(--ed-navy); }
.brand__mark { color: var(--ed-sky); }
.nav-links { display: flex; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ed-navy); text-decoration: none; font-weight: 600;
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 .2rem;
}
.nav-links a:hover { color: var(--ed-sky); }
.nav-links a[aria-current] { color: var(--ed-sky); }
.nav-cta { display: flex; align-items: center; gap: .75rem; }
.nav-hamburger {
  display: none; background: none; border: 0; min-height: 44px; min-width: 44px;
  font-size: 1.6rem; color: var(--ed-navy); cursor: pointer;
}
/* Products dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: "▾"; margin-left: .35rem; font-size: .8em; opacity: .7; }
.nav-dropdown .submenu {
  position: absolute; top: 100%; left: 0; min-width: 210px; background: #fff;
  border: 1px solid var(--ed-line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card); padding: .5rem; list-style: none; display: block;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .15s ease;
}
.nav-dropdown:hover .submenu, .nav-dropdown:focus-within .submenu { opacity: 1; visibility: visible; transform: none; }
.submenu a { display: block; padding: .55rem .75rem; min-height: 44px; border-radius: var(--radius-sm); }
.submenu a:hover { background: var(--ed-bg-mist); }

/* Mobile drawer */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(13,42,80,.4); z-index: 60;
  opacity: 0; visibility: hidden; transition: opacity .2s ease;
}
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(320px, 88vw);
  background: #fff; z-index: 70; padding: var(--sp-6);
  transform: translateX(100%); transition: transform .22s ease;
  overflow-y: auto;
}
body.drawer-open { overflow: hidden; }
body.drawer-open .drawer { transform: none; }
body.drawer-open .drawer-overlay { opacity: 1; visibility: visible; }
.drawer nav a {
  display: block; padding: .85rem .25rem; color: var(--ed-navy); text-decoration: none;
  font-weight: 600; border-bottom: 1px solid var(--ed-line); min-height: 48px;
}
.drawer-close { float: right; background: none; border: 0; font-size: 1.6rem; color: var(--ed-navy); min-height: 44px; min-width: 44px; }

@media (max-width: 960px) {
  .nav-links, .nav-cta .nav-cta-login { display: none; }
  .nav-hamburger { display: inline-flex; align-items: center; justify-content: center; }
  .nav-cta .btn { min-height: 44px; padding: .5rem 1rem; font-size: .9rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; color: var(--ed-ink);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}
.hero--dark { color: #fff; }
.hero--dark h1, .hero--dark h2, .hero--dark h3, .hero--dark p.hero__proof { color: #fff; }
.hero--grad {
  background: linear-gradient(145deg, var(--ed-navy-deep) 0%, var(--ed-navy) 55%, var(--ed-sky) 130%);
  color: #fff;
}
.hero--grad h1, .hero--grad .hero__kicker, .hero--grad .hero__proof { color: #fff; }
.hero--grad .hero__sub { color: rgba(255,255,255,.85); }
.hero__inner { max-width: 820px; }
.hero__kicker {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em;
  font-size: .9rem; color: var(--ed-sky); margin-bottom: .75rem; display: block;
}
.hero--grad .hero__kicker { color: var(--ed-sky-hi); }
.hero__sub { font-size: var(--fs-md); color: var(--ed-slate); max-width: 640px; margin: 1rem 0 1.6rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__proof { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; margin-top: 1.8rem; font-size: var(--fs-sm); }
.hero__proof span::before { content: "✓ "; color: var(--ed-sky); font-weight: 700; }
.hero__proof a { color: inherit; }

/* Hero with side image */
.hero--with-img { padding: clamp(2rem, 5vw, 4rem) 0; }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.hero__content { min-width: 0; }
.hero__visual { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-hero); }
.hero__visual img { display: block; width: 100%; height: auto; object-fit: cover; aspect-ratio: 1/1; }
@media (max-width: 860px) { .hero__grid { grid-template-columns: 1fr; } .hero__visual { max-width: 400px; } }

/* ---------- Feature cards ---------- */
.card {
  background: #fff; border: 1px solid var(--ed-line); border-radius: var(--radius-sm);
  padding: var(--sp-6); box-shadow: var(--shadow-card);
}
.card--tint { background: var(--ed-bg-tint); }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--ed-navy), var(--ed-sky));
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  text-transform: uppercase; margin-bottom: var(--sp-3);
}
.card h3 { font-size: 1.15rem; }
.card__img { margin: calc(-1 * var(--sp-6)) calc(-1 * var(--sp-6)) var(--sp-4); border-radius: var(--radius-sm) var(--radius-sm) 0 0; overflow: hidden; }
.card__img img { display: block; width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }

/* ---------- Pricing ---------- */
.price-card { text-align: center; }
.price-card .price { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--ed-navy); }
.price-card .per { color: var(--ed-slate); font-size: var(--fs-sm); }
.price-card .tag {
  display: inline-block; background: var(--ed-gold); color: var(--ed-navy-deep);
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: .2rem .6rem; border-radius: var(--radius-pill); margin-bottom: .5rem;
}
.price-card ul { text-align: left; list-style: none; padding: 0; }
.price-card ul li { padding: .4rem 0 .4rem 1.4rem; position: relative; }
.price-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--ed-sky); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq details {
  background: #fff; border: 1px solid var(--ed-line); border-radius: var(--radius-sm);
  padding: var(--sp-4) var(--sp-5); margin-bottom: var(--sp-3);
}
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--ed-navy); font-size: var(--fs-md);
  list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--ed-sky); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq p { margin: .75rem 0 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(145deg, var(--ed-navy-deep), var(--ed-navy));
  color: #fff; padding: var(--section-pad) 0; text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 620px; margin: 0 auto 1.6rem; }
.cta-band .btn--primary { background: var(--ed-sky); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: var(--fs-sm); color: var(--ed-slate); padding-top: var(--sp-4); }
.breadcrumbs ol { list-style: none; display: flex; gap: .5rem; padding: 0; margin: 0; }
.breadcrumbs li + li::before { content: "/"; margin-right: .5rem; color: var(--ed-line); }
.breadcrumbs a { text-decoration: none; }

/* ---------- Page header ---------- */
.page-header { padding: 3rem 0 1.5rem; }
.page-header h1 { font-size: var(--fs-hero); }
.page-header p { font-size: var(--fs-md); color: var(--ed-slate); max-width: 640px; }

/* ---------- Section kicker ---------- */
.kicker {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em;
  font-size: .9rem; color: var(--ed-sky); margin-bottom: .75rem; display: block;
}

/* ---------- Contact layout ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-layout__info h2 { margin-bottom: 1rem; }
.contact-layout__info ul { list-style: none; padding: 0; }
.contact-layout__info li { margin-bottom: .75rem; font-size: var(--fs-md); }
.contact-layout__info a { font-weight: 600; }

/* ---------- Prose / content ---------- */
.prose > :first-child { margin-top: 0; }
.prose h2 { margin-top: 2.5rem; margin-bottom: .5rem; }
.prose h3 { margin-top: 1.8rem; margin-bottom: .4rem; }
.prose p { margin-bottom: 1.2rem; }
.prose ul, .prose ol { margin-bottom: 1.2rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.prose th, .prose td { border: 1px solid var(--ed-line); padding: .6rem .8rem; text-align: left; }
.prose th { background: var(--ed-bg-mist); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; }
.prose blockquote { border-left: 4px solid var(--ed-sky); margin: 1.5rem 0; padding: .5rem 1.2rem; color: var(--ed-slate); }
.prose img { border-radius: var(--radius-sm); }
.prose hr { margin: 2.5rem 0; border: 0; border-top: 1px solid var(--ed-line); }

/* ---------- Search tool ---------- */
.search-tool {
  background: var(--ed-bg-tint);
  border: 1px solid var(--ed-line);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  margin: 1.5rem 0;
}
.search-tool__filters { margin-bottom: var(--sp-5); }
.search-tool__toggle {
  display: flex; gap: 0; margin-bottom: var(--sp-4);
  border: 1px solid var(--ed-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: fit-content;
}
.search-tool__btn {
  padding: .6rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em;
  background: #fff; color: var(--ed-navy);
  border: none; cursor: pointer;
  min-height: 44px;
  transition: all .15s ease;
}
.search-tool__btn:not(:last-child) { border-right: 1px solid var(--ed-line); }
.search-tool__btn:hover { background: var(--ed-bg-mist); }
.search-tool__btn.is-active { background: var(--ed-sky); color: #fff; }
.search-tool__input-group {
  display: flex; gap: .75rem; flex-wrap: wrap;
}
.search-tool__input {
  flex: 1; min-width: 220px; min-height: 48px;
  padding: .6rem .9rem; border: 1px solid var(--ed-line);
  border-radius: var(--radius-md); font-size: 1rem;
  font-family: var(--font-body); color: var(--ed-ink);
}
.search-tool__input:focus { outline: 3px solid rgba(24,161,215,.25); border-color: var(--ed-sky); }
.search-tool__hint { font-size: var(--fs-sm); color: var(--ed-slate); margin-top: var(--sp-3); }
.search-tool__results { min-height: 100px; }
.search-tool__loading { text-align: center; padding: 2rem 0; color: var(--ed-slate); }
.search-tool__spinner {
  width: 32px; height: 32px; margin: 0 auto .75rem;
  border: 3px solid var(--ed-line); border-top-color: var(--ed-sky);
  border-radius: 50%; animation: sp 0.6s linear infinite;
}
@keyframes sp { to { transform: rotate(360deg); } }
.search-tool__empty { text-align: center; padding: 2rem 0; color: var(--ed-slate); }
.search-tool__error {
  background: #fef2f2; color: #c0392b; padding: 1rem;
  border-radius: var(--radius-sm); margin: 1rem 0;
}
.search-tool__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--sp-4);
}
.search-result {
  background: #fff; border: 1px solid var(--ed-line);
  border-radius: var(--radius-sm); padding: var(--sp-4);
  text-align: center; transition: all .15s ease;
}
.search-result:hover { border-color: var(--ed-sky); box-shadow: var(--shadow-card); }
.search-result__number {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-md); color: var(--ed-navy);
  margin-bottom: .25rem; word-break: break-all;
}
.search-result__price {
  font-size: var(--fs-sm); color: var(--ed-slate);
  margin-bottom: .15rem;
}
.search-result__avail {
  display: inline-block; font-size: var(--fs-xs);
  color: var(--ed-slate); margin-bottom: var(--sp-4);
  padding: .15rem .5rem; background: var(--ed-bg-mist);
  border-radius: var(--radius-pill);
}
.search-result__buy { margin-bottom: .4rem; }
.search-result__info {
  font-size: var(--fs-xs); color: var(--ed-slate);
  text-decoration: none; display: inline-block;
}

/* ---------- Forms ---------- */
.form { max-width: 620px; }
.form .field { margin-bottom: 1.1rem; }
.form label { display: block; font-weight: 600; margin-bottom: .35rem; color: var(--ed-navy); }
.form input, .form select, .form textarea {
  width: 100%; min-height: 48px; padding: .6rem .9rem; border: 1px solid var(--ed-line);
  border-radius: var(--radius-md); font-family: var(--font-body); font-size: 1rem;
  color: var(--ed-ink); background: #fff;
}
.form textarea { min-height: 120px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 3px solid rgba(24,161,215,.25); border-color: var(--ed-sky); }
.form-hint { font-size: var(--fs-sm); color: var(--ed-slate); }
.form-error { color: #c0392b; font-weight: 600; }
.form-success { color: #1e8449; font-weight: 600; padding: 1rem; background: #eaf7ef; border-radius: var(--radius-sm); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ed-navy-deep); color: rgba(255,255,255,.82); padding: 3rem 0 2rem; }
.site-footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 2rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { color: #fff; }
.footer-col h4 {
  color: #fff; font-size: 1rem; margin-bottom: 1rem; text-transform: uppercase;
  letter-spacing: .06em; font-family: var(--font-display);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .55rem; }
.footer-contact { margin: 1rem 0; font-size: var(--fs-sm); }
.footer-contact .big { font-family: var(--font-display); font-size: 1.4rem; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); margin-top: 2rem; padding-top: 1.25rem; font-size: var(--fs-sm); color: rgba(255,255,255,.6); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }

/* ---------- Related pages ---------- */
.related-pages { text-align: center; }
.related-pages__title { margin-bottom: 1.8rem; }
.related-pages__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-4); max-width: 900px; margin: 0 auto;
}
.related-pages__card {
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem; padding: var(--sp-4) var(--sp-5);
  background: #fff; border: 1px solid var(--ed-line);
  border-radius: var(--radius-sm); text-decoration: none;
  color: var(--ed-navy); font-weight: 600;
  transition: all .18s ease; min-height: 52px;
}
.related-pages__card:hover {
  border-color: var(--ed-sky); box-shadow: 0 4px 16px rgba(24,161,215,.15);
  color: var(--ed-sky); transform: translateY(-2px);
}
.related-pages__card-arrow {
  color: var(--ed-sky); font-size: 1.1rem; flex-shrink: 0;
  transition: transform .18s ease;
}
.related-pages__card:hover .related-pages__card-arrow { transform: translateX(4px); }

/* ---------- Motion (fl-fade-*) ---------- */
.fl-fade-up { opacity: 0; transform: translate3d(0, 18px, 0); transition: opacity .6s ease, transform .6s ease; }
.fl-fade-left { opacity: 0; transform: translate3d(-20px, 0, 0); transition: opacity .6s ease, transform .6s ease; }
.fl-fade-right { opacity: 0; transform: translate3d(20px, 0, 0); transition: opacity .6s ease, transform .6s ease; }
.fl-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fl-fade-up, .fl-fade-left, .fl-fade-right { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Scroll animations JS hook ---------- */
.fl-appear { opacity: 0; transform: translate3d(0, 18px, 0); transition: opacity .6s ease, transform .6s ease; }
.fl-appear.fl-in { opacity: 1; transform: none; }
.fl-appear .grid > * { transition-delay: var(--stagger-delay, 0s); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-1 { margin-bottom: var(--sp-1); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mt-6 { margin-top: var(--sp-6); }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ed-navy); color: #fff;
  padding: .75rem 1rem; z-index: 100; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- CM layout (split prose sections) ---------- */
.prose--split .section:first-child { padding-top: 0; }
.prose--split .section--alt:last-of-type { padding-bottom: var(--section-pad); }

/* Float images in cm layout sections for text wrapping */
.prose--split .container::after {
    content: "";
    display: table;
    clear: both;
}
.prose--split .container img {
    float: left;
    max-width: 45% !important;
    margin: .25rem 1.5rem 1rem 0 !important;
    box-shadow: var(--shadow-card);
}

/* Inline media within split prose */
.inline-media {
    display: block; width: 100%; max-width: 720px; height: auto;
    margin: 0 auto 1.5rem; border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
}

/* FAQ / details-summary inside prose content */
.prose details {
    background: #fff; border: 1px solid var(--ed-line); border-radius: var(--radius-sm);
    padding: var(--sp-4) var(--sp-5); margin-bottom: var(--sp-3);
}
.prose summary {
    cursor: pointer; font-weight: 700; color: var(--ed-navy); font-size: var(--fs-md);
    list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.prose summary::-webkit-details-marker { display: none; }
.prose summary::after { content: "+"; color: var(--ed-sky); font-size: 1.4rem; line-height: 1; }
.prose details[open] summary::after { content: "–"; }
.prose details p { margin: .75rem 0 0; }
