/* ===================================================================
   Be A Buddy — Pleasantville
   A warm, accessible design system for a community heat-safety program.
   =================================================================== */

:root {
  /* Warmth (heat + human connection) */
  --coral:       #ef6a4d;
  --coral-deep:  #d24a2e;
  --coral-soft:  #fce4dc;
  --amber:       #f5a623;
  --amber-soft:  #fdeccb;

  /* Calm / care (relief, trust, hydration) */
  --teal:        #137a72;
  --teal-deep:   #0c544e;
  --teal-soft:   #e3f0ee;

  /* Neutrals */
  --cream:       #fbf5ec;
  --sand:        #f4e9d8;
  --paper:       #ffffff;
  --ink:         #2a211c;
  --ink-soft:    #6f6258;
  --line:        rgba(42, 33, 28, .12);

  --shadow-sm:   0 2px 10px rgba(80, 50, 30, .07);
  --shadow-md:   0 14px 40px rgba(80, 50, 30, .12);
  --shadow-lg:   0 30px 70px rgba(80, 50, 30, .18);

  --radius:      18px;
  --radius-lg:   28px;
  --radius-pill: 999px;

  --container:   1180px;
  --sunset:      linear-gradient(135deg, #f8b44a 0%, #ef6a4d 52%, #d24a2e 100%);
  --ease:        cubic-bezier(.22, 1, .36, 1);

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Nunito Sans", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 1.0625rem;        /* 17px base for readability */
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--amber); color: var(--ink); }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
.display-italic { font-style: italic; font-weight: 500; }
.text-coral { color: var(--coral-deep); }
.text-teal  { color: var(--teal); }

p { color: var(--ink-soft); }
.lead { font-size: 1.2rem; line-height: 1.65; color: var(--ink-soft); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section--sand  { background: var(--sand); }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.narrow { max-width: 760px; margin: 0 auto; }

.section-head { max-width: 680px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--coral); display: inline-block; }
.eyebrow.center-line::before { display: none; }
.eyebrow.on-dark { color: var(--amber); }
.eyebrow.on-dark::before { background: var(--amber); }

.section-head p { margin-top: 1rem; font-size: 1.15rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  padding: .95rem 1.7rem;
  border-radius: var(--radius-pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
  line-height: 1;
}
.btn i { font-size: .9em; }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 10px 24px rgba(210, 74, 46, .32); }
.btn-primary:hover { background: var(--coral-deep); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(210, 74, 46, .4); }
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 10px 24px rgba(12, 84, 78, .28); }
.btn-teal:hover { background: var(--teal-deep); transform: translateY(-3px); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--coral-deep); box-shadow: var(--shadow-md); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-outline-light:hover { background: rgba(255,255,255,.14); border-color: #fff; transform: translateY(-3px); }
.btn-lg { padding: 1.1rem 2.1rem; font-size: 1.08rem; }
.btn-full { width: 100%; }

/* ===================================================================
   NAV
   =================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 245, 236, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); background: rgba(251, 245, 236, .95); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.logo { display: flex; align-items: center; gap: .7rem; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--sunset);
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(239, 106, 77, .4);
  flex-shrink: 0;
}
.logo-mark svg { width: 26px; height: 26px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--ink); }
.logo-text span { font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); }

.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a { font-weight: 700; font-size: 1rem; color: var(--ink); position: relative; padding: .3rem 0; transition: color .2s; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--coral); transition: width .3s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--coral-deep); }
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after { width: 100%; }
.nav-links a:not(.btn).active { color: var(--coral-deep); }
/* keep the pill CTA white-on-coral (beats .nav-links a specificity) */
.nav-links a.btn-primary,
.nav-links a.btn-primary.active { color: #fff; background: var(--coral); }
.nav-links a.btn-primary:hover { color: #fff; background: var(--coral-deep); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: .3rem;
  padding: 1rem 24px 1.6rem;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: .85rem .4rem; font-weight: 700; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
.mobile-menu a.btn { margin-top: .8rem; border: none; justify-content: center; }

/* ===================================================================
   HERO (home)
   =================================================================== */
.hero { position: relative; padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 7vw, 6rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -30%; right: -10%;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, .22), transparent 65%);
  z-index: 0; pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--coral-soft); color: var(--coral-deep);
  font-weight: 800; font-size: .82rem; letter-spacing: .03em;
  padding: .5rem 1rem; border-radius: var(--radius-pill);
  margin-bottom: 1.6rem;
}
.hero-badge i { color: var(--coral); }
.hero h1 { margin-bottom: 1.3rem; }
.hero .lead { margin-bottom: 2.2rem; max-width: 30ch; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { margin-top: 2.2rem; display: flex; align-items: center; gap: .8rem; color: var(--ink-soft); font-size: .95rem; font-weight: 600; }
.hero-trust i { color: var(--teal); }

.hero-visual { position: relative; }
.hero-img {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5; position: relative;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; left: -28px; bottom: 38px;
  background: #fff; border-radius: var(--radius); padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .9rem;
  max-width: 250px;
}
.hero-float .icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: var(--teal-soft); color: var(--teal); display: grid; place-items: center; font-size: 1.3rem;
}
.hero-float strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }
.hero-float span { font-size: .85rem; color: var(--ink-soft); }
.hero-float--top {
  left: auto; right: -22px; top: 30px; bottom: auto; max-width: 210px;
}
.hero-float--top .icon { background: var(--coral-soft); color: var(--coral-deep); }

/* ===================================================================
   PAGE BANNER (inner pages)
   =================================================================== */
.banner { position: relative; padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem); text-align: center; overflow: hidden; }
.banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(245, 166, 35, .2), transparent 60%);
}
.banner-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.banner h1 { margin-bottom: 1.1rem; }
.banner p { font-size: 1.18rem; }
.breadcrumb { font-size: .85rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.1rem; }

/* ===================================================================
   STAT STRIP
   =================================================================== */
.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.stat-card {
  background: var(--paper); border-radius: var(--radius); padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); text-align: center;
}
.stat-card .num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--coral-deep); line-height: 1; }
.stat-card .num span { font-size: 1.5rem; }
.stat-card p { margin-top: .6rem; font-size: .98rem; }

/* ===================================================================
   SPLIT (image + text)
   =================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5 / 4; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-body h2 { margin-bottom: 1.2rem; }
.split-body p + p { margin-top: 1rem; }
.split-body .btn { margin-top: 1.8rem; }

/* ===================================================================
   CARDS — factors / tips
   =================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }
.info-card {
  background: var(--paper); border-radius: var(--radius); padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.info-card .ic {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 1.2rem;
}
.ic.warm { background: var(--coral-soft); color: var(--coral-deep); }
.ic.cool { background: var(--teal-soft); color: var(--teal); }
.ic.sun  { background: var(--amber-soft); color: #c47e10; }
.info-card h3 { margin-bottom: .6rem; }
.info-card p { font-size: 1rem; }

/* ===================================================================
   STEPS / TIMELINE
   =================================================================== */
.steps { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.6rem; padding-bottom: 2.4rem; position: relative; }
.step:not(:last-child)::before {
  content: ""; position: absolute; left: 27px; top: 56px; bottom: 0; width: 2px;
  background: linear-gradient(var(--coral), var(--amber)); opacity: .35;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--sunset); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  box-shadow: 0 8px 18px rgba(239, 106, 77, .35); z-index: 1;
}
.step-body { padding-top: .4rem; }
.step-body h3 { margin-bottom: .4rem; }
.step-body p { font-size: 1.02rem; }

/* ===================================================================
   CALLOUT — emergency / important
   =================================================================== */
.callout {
  border-radius: var(--radius); padding: 2rem 2.2rem;
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: start;
}
.callout-icon { font-size: 2rem; line-height: 1; }
.callout h3 { margin-bottom: .5rem; }
.callout p { font-size: 1.02rem; }
.callout.danger { background: #fdeae6; border: 1.5px solid var(--coral); }
.callout.danger .callout-icon, .callout.danger h3 { color: var(--coral-deep); }
.callout.info { background: var(--teal-soft); border: 1.5px solid rgba(19, 122, 114, .35); }
.callout.info .callout-icon, .callout.info h3 { color: var(--teal-deep); }
.sign-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.sign-list li {
  background: #fff; border: 1px solid var(--coral); color: var(--coral-deep);
  font-weight: 700; font-size: .92rem; padding: .45rem .95rem; border-radius: var(--radius-pill);
}

/* ===================================================================
   QUOTE / SOURCE
   =================================================================== */
.quote-block {
  background: var(--teal-deep); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 3.5rem); text-align: center; position: relative; overflow: hidden;
}
.quote-block::before {
  content: "\201C"; font-family: var(--font-display); font-size: 9rem; line-height: 1;
  position: absolute; top: -10px; left: 28px; color: rgba(255,255,255,.12);
}
.quote-block p { position: relative; font-family: var(--font-display); font-style: italic; font-size: clamp(1.4rem, 3vw, 2rem); color: #fff; line-height: 1.35; }
.quote-block .attrib { font-family: var(--font-body); font-style: normal; font-size: .95rem; color: var(--amber); margin-top: 1.4rem; font-weight: 700; letter-spacing: .02em; }

.source-cite {
  background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--teal);
  border-radius: 12px; padding: 1.4rem 1.6rem; font-size: .92rem; color: var(--ink-soft);
}
.source-cite strong { color: var(--ink); display: block; margin-bottom: .4rem; font-family: var(--font-body); letter-spacing: .04em; text-transform: uppercase; font-size: .78rem; }
.source-cite a { color: var(--teal); font-weight: 700; word-break: break-word; }

/* ===================================================================
   CTA BAND
   =================================================================== */
.cta-band { background: var(--sunset); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.1);
}
.cta-band::before { width: 320px; height: 320px; top: -120px; left: -60px; }
.cta-band::after  { width: 240px; height: 240px; bottom: -110px; right: -40px; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 1.2rem; max-width: 560px; margin: 0 auto 2.2rem; }
.cta-band .hero-btns { justify-content: center; }

/* ===================================================================
   FORMS / SIGN UP
   =================================================================== */
.form-tabs { display: flex; gap: .5rem; background: var(--sand); padding: .4rem; border-radius: var(--radius-pill); max-width: 540px; margin: 0 auto 2.5rem; }
.form-tab {
  flex: 1; padding: .9rem 1rem; border-radius: var(--radius-pill);
  font-weight: 800; font-size: 1rem; color: var(--ink-soft); transition: .25s var(--ease); text-align: center;
}
.form-tab.active { background: #fff; color: var(--coral-deep); box-shadow: var(--shadow-sm); }

.form-card {
  background: var(--paper); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  border: 1px solid var(--line); padding: clamp(1.8rem, 4vw, 3rem); max-width: 620px; margin: 0 auto;
}
.form-panel { display: none; }
.form-panel.active { display: block; animation: fadeUp .4s var(--ease); }
.form-panel-head { margin-bottom: 1.8rem; }
.form-panel-head .tag {
  display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase; padding: .4rem .9rem; border-radius: var(--radius-pill); margin-bottom: 1rem;
}
.tag.buddy { background: var(--coral-soft); color: var(--coral-deep); }
.tag.senior { background: var(--teal-soft); color: var(--teal-deep); }
.form-panel-head h2 { font-size: 1.7rem; margin-bottom: .5rem; }
.form-panel-head p { font-size: 1rem; }

.field { margin-bottom: 1.3rem; }
.field label { display: block; font-weight: 700; font-size: .95rem; margin-bottom: .5rem; color: var(--ink); }
.field label .req { color: var(--coral); }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1.05rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 12px;
  padding: .95rem 1.1rem; transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #b5a99d; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); background: #fff;
  box-shadow: 0 0 0 4px rgba(19, 122, 114, .12);
}
.field textarea { resize: vertical; min-height: 96px; }
.form-note { font-size: .9rem; color: var(--ink-soft); text-align: center; margin-top: 1rem; display: flex; align-items: center; justify-content: center; gap: .5rem; }
.form-note i { color: var(--teal); }
.form-subhead { font-family: var(--font-display, inherit); font-weight: 700; font-size: 1.05rem; color: var(--ink); margin: 1.6rem 0 .25rem; padding-top: 1.3rem; border-top: 1px solid var(--line, #e7ddd2); }
.form-subnote { font-size: .88rem; color: var(--ink-soft); margin: 0 0 1.1rem; }

.form-success { text-align: center; padding: 1rem 0; display: none; }
.form-success.show { display: block; animation: fadeUp .4s var(--ease); }
.form-success .check {
  width: 76px; height: 76px; border-radius: 50%; background: var(--teal-soft); color: var(--teal);
  display: grid; place-items: center; font-size: 2.2rem; margin: 0 auto 1.4rem;
}
.form-success h3 { font-size: 1.7rem; margin-bottom: .7rem; }
.form-success p { max-width: 380px; margin: 0 auto 1.6rem; }

.next-steps { display: grid; gap: 1rem; max-width: 760px; margin: 3rem auto 0; }
.next-step { display: flex; gap: 1rem; align-items: flex-start; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.5rem; }
.next-step .n { width: 34px; height: 34px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-weight: 800; flex-shrink: 0; font-size: .95rem; }
.next-step strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: 1.1rem; }
.next-step span { font-size: .96rem; color: var(--ink-soft); }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer .logo-text strong { color: #fff; }
.footer-brand p { color: rgba(255,255,255,.6); margin-top: 1.2rem; max-width: 36ch; font-size: .98rem; }
.footer h4 { color: #fff; font-family: var(--font-body); font-weight: 800; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.68); padding: .35rem 0; font-size: .98rem; transition: color .2s; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 1.8rem; font-size: .88rem; color: rgba(255,255,255,.5); }
.footer-bottom .heart { color: var(--coral); }

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

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

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 440px; margin: 0 auto; order: -1; }
  .hero .lead { max-width: none; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stat-strip { grid-template-columns: 1fr; }
  .callout { grid-template-columns: 1fr; }
  .hero-float { left: 0; }
  .hero-float--top { right: 0; }
  .form-tabs { flex-direction: column; border-radius: var(--radius); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
