/* ==========================================================================
   BEFORE YOU'RE GONE — brand + design system
   Islamic estate planning. Hani Amra, Esq.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Core palette */
  --bone:        #FAF6EE;
  --bone-2:      #F3ECDF;
  --bone-3:      #E9DFCC;
  --ink:         #12110E;
  --ink-2:       #35332C;
  --ink-3:       #6B675C;

  --pine:        #12684F;
  --pine-2:      #17805F;
  --pine-3:      #1E9B76;
  --pine-glow:   #56C79F;

  --ember:       #D9541F;
  --ember-2:     #F0693A;
  --ember-soft:  #FBE4D8;

  --gold:        #C8973E;
  --gold-2:      #E9BE6A;
  --gold-soft:   #F7EAD1;

  /* Light green surface, so not every green block has to be a dark one */
  --sage:        #E4F4EC;
  --sage-line:   rgba(18,104,79, .14);
  --footer-bg:   #0F5A45;

  --white:       #FFFFFF;

  /* Semantic */
  --bg:          var(--bone);
  --fg:          var(--ink);
  --muted:       var(--ink-3);
  --line:        rgba(18, 17, 14, 0.10);
  --line-strong: rgba(18, 17, 14, 0.18);

  /* Type */
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Space */
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --maxw: 1180px;
  --maxw-narrow: 760px;
  --section-y: clamp(4.5rem, 9vw, 8.5rem);

  /* Radius + shadow */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --shadow-sm: 0 1px 2px rgba(18,17,14,.05), 0 4px 14px rgba(18,17,14,.05);
  --shadow-md: 0 2px 6px rgba(18,17,14,.05), 0 18px 44px rgba(18,17,14,.09);
  --shadow-lg: 0 4px 12px rgba(18,17,14,.06), 0 36px 80px rgba(18,17,14,.14);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-feature-settings: "kern", "liga", "calt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

::selection { background: var(--pine); color: var(--bone); }

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

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "SOFT" 0, "WONK" 0;
  line-height: 1.03;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 7.2vw, 5.1rem); }
h2 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); line-height: 1.15; }
h4 { font-size: 1.15rem; line-height: 1.25; letter-spacing: -0.012em; }

p { text-wrap: pretty; }

.lede {
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 40ch;
}
.lede-wide { max-width: 56ch; }

.eyebrow {
  font-size: .74rem;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ember);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--ember);
  border-radius: 2px;
}
.eyebrow.is-light { color: var(--gold-2); }
.eyebrow.is-light::before { background: var(--gold-2); }
.eyebrow.no-rule::before { display: none; }

/* Marker highlight on key phrases.
   Painted as a background so it survives wrapping onto a second line,
   which it does on narrow screens. */
.mark {
  background-image: linear-gradient(
    to top,
    rgba(233, 190, 106, .62) 0,
    rgba(233, 190, 106, .62) .3em,
    transparent .3em
  );
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size .8s var(--ease);
  padding-inline: .1em;
  margin-inline: -.1em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.is-in .mark, .mark.is-on { background-size: 100% 100%; }

.fg-ember { color: var(--ember); }
.fg-gold { color: var(--gold); }
.fg-muted { color: var(--muted); }
.fg-pine { color: var(--pine); }

/* ---------- 4. Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap-narrow { max-width: var(--maxw-narrow); }
.section { padding-block: var(--section-y); position: relative; }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }

.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.75rem); }
.g-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 900px) {
  .g-3, .g-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
}

.stack > * + * { margin-top: 1.1rem; }
.stack-lg > * + * { margin-top: 1.9rem; }
.center { text-align: center; }
.center .lede, .center .section-head p { margin-inline: auto; }

.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head h2 + p { margin-top: 1.1rem; }

.rule { height: 1px; background: var(--line); border: 0; }

/* Surfaces */
.surface-dark {
  background: var(--pine);
  color: var(--bone);
  --fg: var(--bone);
  /* Opacities lifted with the green: a brighter background needs brighter
     body text to stay above the 4.5:1 contrast floor. */
  --muted: rgba(250, 246, 238, .8);
  --line: rgba(250, 246, 238, .16);
  --line-strong: rgba(250, 246, 238, .3);
}
.surface-dark .lede { color: rgba(250, 246, 238, .88); }
.surface-dark h1, .surface-dark h2, .surface-dark h3, .surface-dark h4 { color: var(--bone); }
.surface-tint { background: var(--bone-2); }

/* Light green section. Same brand colour, none of the heaviness. */
.surface-sage { background: var(--sage); }
.surface-sage .card,
.surface-sage .step { background: var(--white); border-color: var(--sage-line); }
.surface-sage .rule { background: var(--sage-line); }

/* Islamic geometric texture */
.pattern-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23FAF6EE' stroke-width='1'%3E%3Cpath d='M60 0 L120 60 L60 120 L0 60 Z'/%3E%3Cpath d='M60 30 L90 60 L60 90 L30 60 Z'/%3E%3Ccircle cx='60' cy='60' r='42'/%3E%3Cpath d='M0 0 L120 120 M120 0 L0 120'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  opacity: .05;
  pointer-events: none;
}
.pattern-bg > * { position: relative; z-index: 1; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.05rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -.005em;
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
  white-space: nowrap;
  text-align: center;
}
.btn svg { flex: none; }
.btn:active { transform: translateY(1px) scale(.995); }

.btn-primary {
  background: var(--ember);
  color: var(--white);
  box-shadow: 0 2px 4px rgba(217,84,31,.2), 0 12px 30px rgba(217,84,31,.28);
}
.btn-primary:hover {
  background: var(--ember-2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(217,84,31,.22), 0 20px 44px rgba(217,84,31,.36);
}
.btn-dark {
  background: var(--pine);
  color: var(--bone);
  box-shadow: var(--shadow-sm);
}
.btn-dark:hover { background: var(--pine-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: currentColor; background: rgba(18,17,14,.04); transform: translateY(-2px); }
.surface-dark .btn-ghost:hover { background: rgba(250,246,238,.08); }

.btn-light { background: var(--bone); color: var(--pine); }
.btn-light:hover { background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-sm { padding: .7rem 1.25rem; font-size: .93rem; }
.btn-lg { padding: 1.2rem 2.2rem; font-size: 1.08rem; }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }
.center .btn-row { justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  color: var(--ember);
  font-size: .98rem;
}
.link-arrow svg { transition: transform .22s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* Micro reassurance under CTAs */
.cta-note {
  font-size: .88rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 52ch;
}
.cta-note svg { display: inline; vertical-align: -3px; margin-right: .4rem; color: var(--pine-3); }
.cta-note strong { color: var(--fg); font-weight: 600; }
.center .cta-note, .cta-band .cta-note { margin-inline: auto; }

/* ---------- 6. Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 76px;
}

/* Rebrand notice. Visible at rest, collapses away once you start scrolling. */
.header-bar {
  background: var(--pine);
  color: rgba(250, 246, 238, .82);
  height: 40px;
  overflow: hidden;
  transition: height .32s var(--ease), opacity .24s var(--ease);
}
.header-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 40px;
  font-size: .82rem;
}
.header-bar strong { color: var(--gold-2); font-weight: 650; }
.header-bar p { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.header-bar a { font-weight: 650; color: var(--bone); white-space: nowrap; }
.header-bar a:hover { color: var(--gold-2); }
.header.is-stuck .header-bar { height: 0; opacity: 0; }
@media (max-width: 720px) {
  .header-bar, .header-bar-inner { height: 36px; }
  .header-bar-inner { font-size: .76rem; justify-content: center; }
  .hide-sm { display: none; }
}
.header.is-stuck {
  background: rgba(250, 246, 238, .88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--line);
}

.logo { display: inline-flex; align-items: center; gap: .62rem; }
.logo-mark { width: 34px; height: 34px; flex: none; }
.logo-type {
  font-family: var(--display);
  font-weight: 650;
  font-size: 1.02rem;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--pine);
}
.logo-type span {
  display: block;
  font-size: .58rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
  white-space: nowrap;
}
@media (max-width: 400px) { .logo-type span { font-size: .53rem; letter-spacing: .06em; } }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding-block: .35rem;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s var(--ease);
  border-radius: 2px;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="page"] { color: var(--ink); }

.header-cta { display: flex; align-items: center; gap: .8rem; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 650;
  font-size: .95rem;
  color: var(--pine);
  white-space: nowrap;
}

.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 112px 0 0 0;
  background: var(--bone);
  z-index: 190;
  padding: 2rem var(--gutter) 3rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.mobile-nav.is-open { opacity: 1; transform: none; visibility: visible; }
.header.is-stuck ~ .mobile-nav { top: 76px; }
.mobile-nav a {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -.02em;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 1.6rem; }

@media (max-width: 1000px) {
  .nav, .header-phone { display: none; }
  .burger { display: flex; }
}
@media (max-width: 560px) {
  .header-cta .btn { display: none; }
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(9.25rem, 14vw, 11.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%; right: -12%;
  width: 62vw; height: 62vw;
  max-width: 820px; max-height: 820px;
  background: radial-gradient(circle at 50% 50%, rgba(86,199,159,.16), rgba(86,199,159,0) 62%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -18%; left: -14%;
  width: 46vw; height: 46vw;
  max-width: 620px; max-height: 620px;
  background: radial-gradient(circle at 50% 50%, rgba(217,84,31,.10), rgba(217,84,31,0) 65%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { margin-block: 1.3rem 1.5rem; }
.hero .lede { max-width: 46ch; }
.hero-art { position: relative; }
.hero-art img { width: 100%; }

/* Trust emblem sitting on the hero illustration */
.emblem {
  position: absolute;
  left: -8%;
  bottom: -3%;
  width: clamp(108px, 11.5vw, 152px);
  height: auto;
  aspect-ratio: 1;
  filter: drop-shadow(0 10px 26px rgba(18,104,79, .3));
}
.emblem text {
  font-family: var(--sans);
  font-weight: 650;
  fill: #FAF6EE;
}
.emblem .emblem-t { font-size: 9.8px; letter-spacing: .95px; }
.emblem .emblem-b { font-size: 9.8px; letter-spacing: 4.5px; fill: #E9BE6A; }

@media (max-width: 980px) {
  .emblem { left: -5%; bottom: -11%; width: clamp(112px, 26vw, 144px); }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 480px; margin-inline: auto; }
}

/* Urgency pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .48rem .95rem .48rem .6rem;
  border-radius: 999px;
  background: var(--ember-soft);
  color: #97370F;
  font-size: .86rem;
  font-weight: 600;
  border: 1px solid rgba(217,84,31,.18);
}
.pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ember);
  position: relative;
  flex: none;
  margin-left: .2rem;
}
.pill .dot::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--ember);
  opacity: .5;
  animation: ping 2s var(--ease) infinite;
}
@keyframes ping {
  0% { transform: scale(.7); opacity: .6; }
  70%, 100% { transform: scale(1.6); opacity: 0; }
}
.pill.is-dark { background: rgba(233,190,106,.12); color: var(--gold-2); border-color: rgba(233,190,106,.24); }
.pill.is-dark .dot, .pill.is-dark .dot::after { background: var(--gold-2); border-color: var(--gold-2); }

/* ---------- 8. Trust strip ---------- */
.trust-strip {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3.5vw, 3rem);
  flex-wrap: wrap;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}
.trust-item { display: flex; align-items: center; gap: .7rem; }
.trust-item .num {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--pine);
}
.trust-item .lbl { font-size: .82rem; line-height: 1.3; color: var(--muted); max-width: 13ch; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 15px; height: 15px; }

/* Logo / credential bar */
.cred-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 4vw, 3.4rem);
  padding-block: 1.9rem;
  border-block: 1px solid var(--line);
}
.cred-bar li {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.cred-bar svg { width: 17px; height: 17px; color: var(--pine-3); flex: none; }

/* ---------- 9. Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card h3, .card h4 { margin-bottom: .6rem; }
.card p { color: var(--ink-2); font-size: .98rem; }
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--gold-soft);
  display: grid;
  place-items: center;
  margin-bottom: 1.35rem;
  flex: none;
}
.card-icon svg { width: 26px; height: 26px; color: var(--pine); }
.card .link-arrow { margin-top: auto; padding-top: 1.4rem; }

.surface-dark .card {
  background: rgba(250,246,238,.05);
  border-color: rgba(250,246,238,.13);
}
.surface-dark .card p { color: rgba(250,246,238,.74); }
.surface-dark .card-icon { background: rgba(233,190,106,.14); }
.surface-dark .card-icon svg { color: var(--gold-2); }

/* Service card with illustration */
.svc-card { padding: 0; overflow: hidden; }
.svc-card .svc-art {
  background: var(--bone-2);
  padding: 1.8rem 1.8rem .6rem;
  display: grid;
  place-items: center;
}
.svc-card .svc-art img { width: 100%; max-width: 230px; }
.svc-card .svc-body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; flex: 1; }

/* ---------- 10. Consequence blocks (urgency) ---------- */
.consequence {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.consequence:last-child { border-bottom: 0; }
.consequence .cx-num {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--gold-2);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(233,190,106,.32);
  display: grid;
  place-items: center;
  flex: none;
}
.consequence h4 { margin-bottom: .35rem; }
.consequence p { color: var(--muted); font-size: .97rem; }

/* Split compare: without a plan vs with */
.compare { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(1rem, 2.5vw, 1.75rem); }
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }
.compare-col {
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
}
.compare-col.bad { background: #FDF1EC; border-color: rgba(217,84,31,.2); }
.compare-col.good { background: #ECF4EF; border-color: rgba(30,155,118,.2); }
.compare-col h3 { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.4rem; font-size: 1.3rem; }
.compare-col .tag {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
}
.compare-col.bad .tag { background: var(--ember); color: #fff; }
.compare-col.good .tag { background: var(--pine-3); color: #fff; }
.compare-col li {
  display: flex; gap: .7rem;
  padding: .62rem 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-2);
  border-top: 1px solid rgba(18,17,14,.07);
}
.compare-col li:first-of-type { border-top: 0; }
.compare-col li svg { width: 19px; height: 19px; flex: none; margin-top: 3px; }
.compare-col.bad li svg { color: var(--ember); }
.compare-col.good li svg { color: var(--pine-3); }

/* ---------- 11. Steps ---------- */
.steps { counter-reset: step; display: grid; gap: clamp(1rem, 2.4vw, 1.6rem); grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
}
.surface-dark .step { background: rgba(250,246,238,.05); border-color: rgba(250,246,238,.13); }
.step-n {
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ember);
  display: block;
  margin-bottom: 1rem;
}
.surface-dark .step-n { color: var(--gold-2); }
.step h3 { margin-bottom: .55rem; }
.step p { color: var(--muted); font-size: .98rem; }
.step-time {
  margin-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 600;
  /* --pine-3 is a graphics accent and too light for small text, so this
     small label uses the deep green instead. */
  color: var(--pine);
  background: rgba(30,155,118,.12);
  padding: .35rem .75rem;
  border-radius: 999px;
}
.surface-dark .step-time { color: var(--gold-2); background: rgba(233,190,106,.12); }

/* ---------- 12. Testimonials ---------- */
.tst {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.6vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tst:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tst blockquote { font-size: 1.02rem; line-height: 1.6; color: var(--ink-2); flex: 1; }
.tst-who { display: flex; align-items: center; gap: .8rem; margin-top: auto; padding-top: .3rem; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 650;
  font-size: .92rem;
  color: var(--white);
  flex: none;
  letter-spacing: .01em;
}
.tst-name { font-weight: 650; font-size: .96rem; line-height: 1.25; }
.tst-src { font-size: .81rem; color: var(--muted); display: flex; align-items: center; gap: .35rem; }
.tst-src svg { width: 13px; height: 13px; }

.tst-featured {
  background: var(--pine);
  color: var(--bone);
  border-color: transparent;
  grid-column: span 2;
}
.tst-featured blockquote { color: rgba(250,246,238,.9); font-family: var(--display); font-size: clamp(1.25rem, 2.1vw, 1.6rem); line-height: 1.4; letter-spacing: -.015em; }
.tst-featured .tst-src { color: rgba(250,246,238,.6); }
@media (max-width: 900px) { .tst-featured { grid-column: span 2; } }
@media (max-width: 620px) { .tst-featured { grid-column: span 1; } }

.rating-block {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.rating-block .big { font-family: var(--display); font-size: 1.7rem; font-weight: 650; line-height: 1; }
.rating-block .meta { font-size: .84rem; color: var(--muted); line-height: 1.3; }

/* Marquee of names */
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 1rem; width: max-content; animation: slide 46s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: .88rem;
  white-space: nowrap;
}
.chip .stars svg { width: 12px; height: 12px; }

/* ---------- 12b. Video testimonials ---------- */

/* Featured, for the well known names */
.vfeature {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.vfeature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
@media (max-width: 780px) {
  .vfeature { grid-template-columns: 1fr; text-align: center; gap: 1.2rem; }
}

.vfeature-art {
  position: relative;
  border-radius: 24px 24px 20px 20px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--sage), var(--bone-3));
  max-width: 280px;
  margin-inline: auto;
}
.vfeature-art img { width: 100%; }
/* must come after the base rule above, or the 280px there wins.
   A full width portrait eats the screen once three of these stack up. */
@media (max-width: 780px) { .vfeature-art { max-width: 178px; } }
.vfeature blockquote {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  line-height: 1.4;
  letter-spacing: -.015em;
  color: var(--ink);
}
.vfeature-meta { margin-top: 1.3rem; }
.vfeature-name { font-weight: 700; font-size: 1.05rem; }
.vfeature-role { font-size: .92rem; color: var(--muted); margin-top: .15rem; }
@media (max-width: 780px) { .vfeature .btn-row { justify-content: center; } }

/* Play button */
.btn-play { padding-left: 1.25rem; }
.btn-play .ico {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  display: grid; place-items: center;
  flex: none;
}
.btn-play .ico svg { width: 12px; height: 12px; margin-left: 2px; }

/* Grid of video cards */
.vgrid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: clamp(.9rem, 2vw, 1.5rem); }
@media (max-width: 1000px) { .vgrid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 720px)  { .vgrid { grid-template-columns: repeat(2, minmax(0,1fr)); } }

.vcard {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--pine);
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.vcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vcard video, .vcard img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.vcard::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,40,31,.82) 0%, rgba(12,40,31,.12) 46%, transparent 70%);
  pointer-events: none;
}
.vcard-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-58%) scale(.94);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(250,246,238,.94);
  display: grid; place-items: center;
  z-index: 2;
  transition: transform .28s var(--ease), background .2s var(--ease);
  pointer-events: none;
}
.vcard-play svg { width: 17px; height: 17px; margin-left: 3px; color: var(--pine); }
.vcard:hover .vcard-play { transform: translate(-50%,-58%) scale(1.08); background: var(--white); }
.vcard-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .9rem .95rem 1rem;
  text-align: left;
  z-index: 2;
  pointer-events: none;
}
.vcard-label .n { display: block; color: var(--bone); font-weight: 650; font-size: .95rem; line-height: 1.25; }
.vcard-label .r { display: block; color: rgba(250,246,238,.72); font-size: .8rem; margin-top: .15rem; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(10, 32, 25, .94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.lightbox.is-mounted { display: grid; }
.lightbox.is-open { opacity: 1; }
.lightbox-inner {
  position: relative;
  /* Capped to roughly the encoded width of the clips. Going wider only
     upscales a talking head and buys nothing. */
  max-width: min(94vw, 620px);
  width: 100%;
  transform: scale(.96);
  transition: transform .3s var(--ease);
}
.lightbox.is-open .lightbox-inner { transform: none; }
/* width:auto lets a portrait clip size off its height instead of
   stretching to the full width of the box */
.lightbox video {
  width: auto;
  max-width: 100%;
  max-height: 76vh;
  margin-inline: auto;
  border-radius: var(--r-lg);
  background: #000;
  display: block;
  box-shadow: var(--shadow-lg);
}
.lightbox iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 76vh;
  border: 0;
  border-radius: var(--r-lg);
  background: #000;
  display: block;
  box-shadow: var(--shadow-lg);
}
.lightbox-cap {
  margin-top: 1rem;
  text-align: center;
  color: var(--bone);
}
.lightbox-cap .n { font-weight: 650; }
.lightbox-cap .r { font-size: .87rem; color: rgba(250,246,238,.66); margin-top: .1rem; }
.lightbox-close {
  position: absolute;
  top: -3.2rem; right: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(250,246,238,.28);
  background: rgba(250,246,238,.08);
  color: var(--bone);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.lightbox-close:hover { background: rgba(250,246,238,.2); transform: rotate(90deg); }
.lightbox-close svg { width: 18px; height: 18px; }

/* ---------- 13. Attorney block ---------- */
.bio-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) { .bio-grid { grid-template-columns: 1fr; } }
.bio-art {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(160deg, var(--gold-soft), var(--bone-3));
  max-width: 460px;
}
.bio-art img { width: 100%; }
.bio-badges { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; }
.bio-badges li {
  font-size: .82rem;
  font-weight: 600;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: rgba(30,155,118,.09);
  color: var(--pine);
}
.surface-dark .bio-badges li { background: rgba(233,190,106,.13); color: var(--gold-2); }


/* ---------- 14. FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 1.5rem 3rem 1.5rem 0;
  font-family: var(--display);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.3;
  cursor: pointer;
  position: relative;
  color: var(--fg);
  transition: color .2s var(--ease);
}
.faq-q:hover { color: var(--ember); }
.faq-q::after, .faq-q::before {
  content: "";
  position: absolute;
  right: 6px; top: 50%;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-q::before { width: 16px; height: 2px; transform: translateY(-50%); }
.faq-q::after { width: 2px; height: 16px; transform: translate(7px, -50%); }
.faq-item.is-open .faq-q::after { transform: translate(7px, -50%) rotate(90deg); opacity: 0; }
.faq-item.is-open .faq-q { color: var(--ember); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .38s var(--ease);
}
.faq-a-inner { padding-bottom: 1.6rem; color: var(--ink-2); max-width: 68ch; }
.faq-a-inner > * + * { margin-top: .85rem; }
.surface-dark .faq-a-inner { color: rgba(250,246,238,.76); }

/* ---------- 15. Quiz ---------- */
.quiz {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 3.2rem);
  box-shadow: var(--shadow-md);
  max-width: 760px;
  margin-inline: auto;
}
.quiz-progress { height: 5px; background: var(--bone-3); border-radius: 999px; overflow: hidden; margin-bottom: 2rem; }
.quiz-progress span { display: block; height: 100%; background: var(--ember); border-radius: 999px; width: 0; transition: width .45s var(--ease); }
.quiz-step { display: none; }
.quiz-step.is-active { display: block; animation: fadeUp .45s var(--ease) both; }
.quiz-count { font-size: .8rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.quiz-q { font-family: var(--display); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 600; letter-spacing: -.02em; line-height: 1.18; margin: .9rem 0 1.7rem; }
.quiz-opts { display: flex; gap: .8rem; flex-wrap: wrap; }
.quiz-opt {
  flex: 1 1 160px;
  padding: 1.05rem 1.4rem;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line-strong);
  background: var(--bone);
  font-weight: 600;
  cursor: pointer;
  transition: all .2s var(--ease);
  text-align: center;
}
.quiz-opt:hover { border-color: var(--pine); background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.quiz-result { display: none; text-align: center; }
.quiz-result.is-active { display: block; animation: fadeUp .5s var(--ease) both; }
.quiz-result form { text-align: left; margin-top: 1.9rem; }
.quiz-score {
  font-family: var(--display);
  font-size: clamp(3.2rem, 9vw, 5rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--ember);
}
.quiz-gaps { text-align: left; margin: 1.8rem 0; }
.quiz-gaps li {
  display: flex; gap: .7rem; align-items: flex-start;
  padding: .7rem 0;
  border-top: 1px solid var(--line);
  font-size: .98rem;
  color: var(--ink-2);
}
.quiz-gaps li svg { width: 19px; height: 19px; color: var(--ember); flex: none; margin-top: 3px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* ---------- 16. Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.6rem, 3.2vw, 2.6rem);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.05rem; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 650;
  margin-bottom: .45rem;
  letter-spacing: .005em;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .92rem 1.05rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--bone);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  font-size: 1rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--pine);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(30,155,118,.11);
}
.field textarea { min-height: 108px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .84rem; color: var(--muted); margin-top: .95rem; text-align: center; }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* ---------- 17. Big CTA ---------- */
.cta-band {
  border-radius: var(--r-xl);
  padding: clamp(2.4rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band h2 { max-width: 18ch; margin-inline: auto; }
.cta-band .lede { max-width: 50ch; margin-inline: auto; }

/* ---------- 18. Footer ---------- */
.footer { background: var(--footer-bg); color: rgba(250,246,238,.72); padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; }
.footer h4 { color: var(--bone); font-family: var(--sans); font-size: .78rem; font-weight: 650; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer a { color: rgba(250,246,238,.72); transition: color .2s var(--ease); }
.footer a:hover { color: var(--gold-2); }
.footer li { padding: .3rem 0; font-size: .94rem; }
/* comfortable thumb targets on a phone */
@media (max-width: 760px) {
  .footer li { padding: .55rem 0; }
  .footer li a, .footer-bottom nav a { display: inline-block; padding-block: .25rem; }
  .breadcrumb a { display: inline-block; padding-block: .25rem; }
}
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(1.75rem, 4vw, 3rem); padding-bottom: 3rem; }
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer .logo-type { color: var(--bone); }
.footer .logo-type span { color: rgba(250,246,238,.5); }
.footer-bottom {
  border-top: 1px solid rgba(250,246,238,.12);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .84rem;
  color: rgba(250,246,238,.5);
}
.footer-bottom nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.disclaimer { font-size: .78rem; line-height: 1.6; color: rgba(250,246,238,.42); max-width: 78ch; margin-top: 1.4rem; }
.social { display: flex; gap: .6rem; margin-top: 1.3rem; }
.social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(250,246,238,.16);
  display: grid; place-items: center;
  transition: all .22s var(--ease);
}
.social a:hover { background: var(--gold-2); border-color: var(--gold-2); color: var(--ink); }
.social svg { width: 17px; height: 17px; }

/* ---------- 19. Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 180;
  background: rgba(250,246,238,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom));
  display: none;
  gap: .6rem;
  transform: translateY(110%);
  transition: transform .35s var(--ease);
}
.sticky-cta.is-on { transform: none; }
.sticky-cta .btn { flex: 1; padding: .95rem 1rem; font-size: .95rem; }
@media (max-width: 760px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 74px; }
}

/* ---------- 20. Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ---------- 21. Page hero (inner pages) ---------- */
.page-hero {
  padding-top: clamp(9.25rem, 13vw, 10.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 55vw; height: 55vw;
  max-width: 700px; max-height: 700px;
  background: radial-gradient(circle, rgba(86,199,159,.13), transparent 62%);
  pointer-events: none;
}
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; position: relative; }
.page-hero-art img { width: 100%; max-width: 460px; margin-inline: auto; }
.page-hero-art .bio-art { margin-inline: auto; }
@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-art { max-width: 400px; margin-inline: auto; }
}
.breadcrumb { font-size: .84rem; color: var(--muted); margin-bottom: 1.2rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--ember); }

/* Prose */
.prose { max-width: 68ch; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { margin-top: 2.8rem; font-size: clamp(1.7rem, 3.2vw, 2.3rem); }
.prose h3 { margin-top: 2rem; }
.prose ul { margin-left: 0; }
.prose ul li { position: relative; padding-left: 1.7rem; padding-block: .3rem; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: .3rem; top: .95rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ember);
}
.prose strong { font-weight: 650; }

/* Checklist */
.checklist li {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  color: var(--ink-2);
}
.checklist li:last-child { border-bottom: 0; }
.checklist svg { width: 21px; height: 21px; color: var(--pine-3); flex: none; margin-top: 2px; }
.surface-dark .checklist li { color: rgba(250,246,238,.8); }
.surface-dark .checklist svg { color: var(--gold-2); }

/* Stat tiles */
.stat {
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--white);
}
.surface-dark .stat { background: rgba(250,246,238,.05); border-color: rgba(250,246,238,.13); }
.stat .n {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--pine);
  display: block;
  margin-bottom: .6rem;
}
.surface-dark .stat .n { color: var(--gold-2); }
.stat p { font-size: .95rem; color: var(--muted); }

/* Utility */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: .8rem; }
.mt-2 { margin-top: 1.6rem; }
.mt-3 { margin-top: 2.4rem; }
.mt-4 { margin-top: 3.2rem; }
.mb-2 { margin-bottom: 1.6rem; }
.hide { display: none !important; }
.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;
}
.sr-only:focus {
  position: fixed; top: 12px; left: 12px;
  width: auto; height: auto; margin: 0;
  clip: auto; overflow: visible;
  padding: .8rem 1.3rem;
  background: var(--pine); color: var(--bone);
  border-radius: 999px; font-weight: 600;
  z-index: 999;
}
:focus-visible { outline: 3px solid var(--ember); outline-offset: 3px; border-radius: 4px; }
