/* ===========================================================
   RememberTogether shared styles
   =========================================================== */
:root {
  --navy: #1D465D;
  --navy-deep: #163a4e;
  --navy-700: #2a5670;
  --ink: #16242e;
  --muted: #445C64;
  --line: #e3eaee;
  --surface: #f4f7f9;
  --surface-2: #eaf1f4;
  --white: #ffffff;
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(22,36,46,.04), 0 4px 12px rgba(22,36,46,.05);
  --shadow: 0 2px 6px rgba(22,36,46,.06), 0 18px 40px -18px rgba(22,36,46,.18);
  --shadow-lg: 0 30px 70px -28px rgba(22,36,46,.30);
  --font-head: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { 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(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 700;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 760px) { .wrap, .wrap-narrow { padding: 0 48px; } }

/* ===========================================================
   12-column grid system
   - .grid12 is the row container (12 equal tracks + gutter)
   - children default to full width on mobile, then span columns
     at >=900px via .col-N (and optional .start-N)
   =========================================================== */
:root { --gutter: 24px; --gutter-lg: 32px; }
.grid12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gutter);
  row-gap: 40px;
}
/* mobile-first: every direct child fills the row */
.grid12 > * { grid-column: 1 / -1; }

@media (min-width: 640px) {
  .grid12 { column-gap: var(--gutter); }
  /* tablet spans */
  .sm\:col-6 { grid-column: span 6; }
  .sm\:col-4 { grid-column: span 4; }
  .sm\:col-3 { grid-column: span 3; }
}
@media (min-width: 900px) {
  .grid12 { column-gap: var(--gutter-lg); }
  .col-1 { grid-column: span 1; }  .col-2 { grid-column: span 2; }
  .col-3 { grid-column: span 3; }  .col-4 { grid-column: span 4; }
  .col-5 { grid-column: span 5; }  .col-6 { grid-column: span 6; }
  .col-7 { grid-column: span 7; }  .col-8 { grid-column: span 8; }
  .col-9 { grid-column: span 9; }  .col-10 { grid-column: span 10; }
  .col-11 { grid-column: span 11; } .col-12 { grid-column: span 12; }
  .start-2 { grid-column-start: 2; } .start-3 { grid-column-start: 3; }
  .start-4 { grid-column-start: 4; }
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 1.05rem;
  padding: 16px 30px; border-radius: 999px; min-height: 56px;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  cursor: pointer; border: none; white-space: nowrap;
}
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-sm { padding: 12px 24px; min-height: 48px; font-size: 1rem; }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo {
  font-family: var(--font-head); font-weight: 700; font-size: 1.5rem;
  color: var(--navy); letter-spacing: -0.03em; display: flex; align-items: center; gap: 11px;
}
.logo .mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--navy); display: grid; place-items: center; flex-shrink: 0;
}
.nav-links { display: none; align-items: center; gap: 32px; }
.nav-links a { font-weight: 500; color: var(--muted); font-size: 1rem; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover { text-decoration: underline; text-underline-offset: 5px; }
.nav-cta { display: none; }
.hamburger {
  background: none; border: none; width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; cursor: pointer; color: var(--navy);
}
.hamburger:hover { background: var(--surface); }
.mobile-menu {
  display: none; flex-direction: column; gap: 4px; padding: 12px 24px 24px;
  border-bottom: 1px solid var(--line); background: #fff;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 12px; font-weight: 500; color: var(--ink); border-radius: 12px; font-size: 1.05rem; }
.mobile-menu a:hover { color: var(--navy); text-decoration: underline; text-underline-offset: 5px; }

@media (min-width: 1000px) {
  .nav-links, .nav-cta { display: flex; }
  .hamburger { display: none; }
}

/* ---------- Section scaffolding ---------- */
section { padding: 84px 0; }
.section-head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.12rem; }
.section-head ul {
  text-align: left;
  list-style: disc;
  margin: 0 0 16px 3em;
  color: var(--muted);
  font-size: 1.12rem;
}

.headline {
  padding: 20px 0 30px;
  text-align: center;
}
.headline h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  max-width: 620px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .92rem; color: var(--navy);
  letter-spacing: .04em; margin-bottom: 24px; text-transform: uppercase;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 72px 0 28px; }
.page-hero.center { text-align: center; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 3.6rem); margin-bottom: 20px; }
.page-hero .lede { font-size: 1.22rem; color: var(--muted); max-width: 56ch; }
.page-hero.center .lede { margin: 0 auto; }
.page-hero .lede + .lede { margin-top: 14px; }

.page-hero + section { padding-top: 24px; }

/* ---------- Feature-page hero (text + phone) ---------- */
.feature-hero { padding: 64px 0 28px; }
.feature-hero-grid { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); column-gap: var(--gutter); row-gap: 40px; align-items: start; }
.feature-hero-grid > * { grid-column: 1 / -1; }
@media (min-width: 900px) { .feature-hero-grid { column-gap: var(--gutter-lg); } .feature-hero-grid > :first-child { grid-column: span 7; } .feature-hero-grid > :last-child { grid-column: span 5; } }
.feature-hero h1 { font-size: clamp(2.4rem, 5.5vw, 3.6rem); margin-bottom: 20px; }
.feature-hero .lede { font-size: 1.22rem; color: var(--muted); max-width: 50ch; margin-bottom: 32px; }
.phone-stage {
  position: relative; display: grid; place-items: start center;
}
.phone-stage img {
  position: relative; z-index: 1; width: auto; max-height: 600px; max-width: 100%;
}
@media (max-width: 560px) { .phone-stage img { max-height: 480px; } }



/* ---------- Hero (home) ---------- */
.hero { padding: 72px 0 40px; }
.hero-grid { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); column-gap: var(--gutter); row-gap: 48px; align-items: center; }
.hero-grid > * { grid-column: 1 / -1; }
@media (min-width: 900px) { .hero-grid { column-gap: var(--gutter-lg); } .hero-grid > :first-child { grid-column: 1 / 7; } .hero-grid > :last-child { grid-column: 8 / 13; } }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.1rem); margin-bottom: 22px; }
.hero h1 .accent { color: var(--navy-700); }
.hero-sub { font-size: 1.22rem; color: var(--muted); max-width: 38ch; margin-bottom: 18px; }
.hero-note + .hero-actions { margin-top: 27px; }
.hero-line { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.35rem; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 768px) {
  .hero-actions {
    justify-content: center;
  }
}
.hero-note { margin-top: 18px; font-size: 1.22rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero-note .note-text { display: block; }
.hero-note .bold { font-weight: 700; }
.hero-media { position: relative; }
.hero-photo {
  width: 100%; border-radius: var(--radius-xl); object-fit: cover;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg); position: relative; z-index: 2;
}
.hero-media::before {
  content: ""; position: absolute; inset: -18px -18px auto auto;
  width: 62%; height: 62%; background: var(--surface-2);
  border-radius: var(--radius-xl); z-index: 1;
}
.floaty {
  position: absolute; z-index: 3; background: #fff; border-radius: 16px;
  box-shadow: var(--shadow); padding: 14px 16px; display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line);
}
.floaty .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--surface-2); display: grid; place-items: center; color: var(--navy); flex-shrink: 0; }
.floaty .t1 { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: .98rem; line-height: 1.1; }
.floaty .t2 { font-size: .8rem; color: var(--muted); }
.floaty.fa { bottom: 26px; left: -16px; }
.floaty.fb { top: 40px; right: -14px; }
@media (max-width: 768px) {
  .floaty.fa { left: 8px; }
  .floaty.fb { right: 8px; }
  .hero-media::before {
    inset: -8px -8px auto auto;
    width: 50%;
    height: 50%;
  }
}

/* ---------- Trust strip ---------- */
.strip { margin-top: 80px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.strip-inner { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); column-gap: var(--gutter); row-gap: 28px; padding: 36px 0; text-align: center; }
.strip-inner > * { grid-column: span 6; }
@media (min-width: 760px) { .strip-inner > * { grid-column: span 3; } }
.stat .n { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 2.1rem; letter-spacing: -.03em; }
.stat .l { color: var(--muted); font-size: .98rem; margin-top: 4px; }

/* ---------- Modes (home) ---------- */
.modes { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); column-gap: var(--gutter); row-gap: 28px; }
.modes > * { grid-column: 1 / -1; }
@media (min-width: 860px) { .modes { column-gap: var(--gutter-lg); } .modes > * { grid-column: span 6; } }
.mode-card {
  border-radius: var(--radius-xl); overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mode-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mode-photo { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.mode-body { padding: 30px 30px 32px; display: flex; flex-direction: column; flex: 1; }
.mode-tag { font-weight: 600; font-size: .82rem; color: var(--navy); align-self: flex-start; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .04em; }
.mode-body h3 { font-size: 1.75rem; margin-bottom: 12px; }
.mode-body p { color: var(--muted); font-size: 1.05rem; margin-bottom: 22px; flex: 1; }
.mode-link { font-family: var(--font-head); font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; letter-spacing: -.01em; }
.mode-link svg { transition: transform .15s; }
.mode-card:hover .mode-link svg { transform: translateX(4px); }

/* ---------- Features grid ---------- */
.features-sec { background: var(--surface); }
.features { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); column-gap: var(--gutter); row-gap: 18px; }
.features > * { grid-column: 1 / -1; }
@media (min-width: 640px) { .features > * { grid-column: span 6; } }
@media (min-width: 1000px) { .features { column-gap: var(--gutter-lg); } .features > * { grid-column: span 4; } }
.feat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.feat .ic {
  width: 52px; height: 52px; border-radius: 14px; background: var(--surface-2);
  display: grid; place-items: center; color: var(--navy); margin-bottom: 18px;
}
.feat h3 { font-size: 1.18rem; margin-bottom: 8px; letter-spacing: -.02em; }
.feat p { color: var(--muted); font-size: .98rem; }

/* ---------- Detail cards (feature pages, 2-col) ---------- */
.detail-grid { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); column-gap: var(--gutter-lg); row-gap: 22px; }
.detail-grid > * { grid-column: 1 / -1; }
@media (min-width: 760px) { .detail-grid > * { grid-column: span 6; } }
.detail {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 30px; display: flex; flex-direction: column; gap: 12px;
}
.detail .ic { width: 56px; height: 56px; border-radius: 15px; background: var(--surface-2); display: grid; place-items: center; color: var(--navy); }
.detail h3 { font-size: 1.4rem; letter-spacing: -.02em; }
.detail p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Value cards (about) ---------- */
.values { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); column-gap: var(--gutter-lg); row-gap: 20px; }
.values > * { grid-column: 1 / -1; }
@media (min-width: 640px) { .values > * { grid-column: span 6; } }
.value {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px;
}
.value h3 { font-size: 1.3rem; margin-bottom: 8px; letter-spacing: -.02em; }
.value p { color: var(--muted); font-size: 1.02rem; }

/* ---------- Prose blocks (privacy, story) ---------- */
.prose-block { margin-bottom: 40px; text-align: center; }
.prose-block:last-child { margin-bottom: 0; }
.prose-block h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.prose-block p { color: var(--muted); font-size: 1.1rem; }
.prose-block p + p { margin-top: 14px; }
.alt-sec { background: var(--surface); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 26px;
  font-family: var(--font-head); font-weight: 700; color: var(--navy);
  font-size: 1.15rem; letter-spacing: -.02em; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex-shrink: 0; transition: transform .2s ease; color: var(--navy); }
.faq[open] summary .chev { transform: rotate(180deg); }
.faq .faq-body { padding: 0 26px 24px; color: var(--muted); font-size: 1.05rem; }
.faq .faq-body ul {
  margin: 0;
  padding-left: 0;
  list-style: disc;
  list-style-position: inside;
}

.faq-controls {
  max-width: 820px;
  margin: 0 auto 16px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.faq-controls .faq-toggle {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 16px;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.faq-controls .faq-toggle:hover {
  border-color: var(--navy);
}

/* ---------- Contact / simple cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); column-gap: var(--gutter-lg); row-gap: 22px; max-width: 980px; margin: 0 auto; }
.card-grid > * { grid-column: 1 / -1; }
@media (min-width: 720px) { .card-grid > * { grid-column: span 4; } }
.simple-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px;
  display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
}
.simple-card .ic { width: 56px; height: 56px; border-radius: 15px; background: var(--surface-2); display: grid; place-items: center; color: var(--navy); }
.simple-card h2 { font-size: 1.5rem; }
.simple-card p { color: var(--muted); font-size: 1.05rem; }
.inline-link { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.inline-link:hover { color: var(--navy-deep); }

/* ---------- Contact form ---------- */
.contact-form {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.hp {
  display: none;
}
.form-status {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); column-gap: var(--gutter-lg); row-gap: 22px; max-width: 880px; margin: 0 auto; }
.pricing > * { grid-column: 1 / -1; }
@media (min-width: 720px) { .pricing > * { grid-column: span 6; } }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px;
}
.price-card.feature { border-color: var(--navy); box-shadow: var(--shadow); }
.price-card .tier { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.4rem; letter-spacing: -.02em; }
.price-card .amt { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 2.4rem; letter-spacing: -.03em; margin: 12px 0 4px; }
.price-card .amt span { font-size: 1rem; color: var(--muted); font-family: var(--font-body); font-weight: 500; }
.price-card p { color: var(--muted); font-size: 1.02rem; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); column-gap: var(--gutter-lg); row-gap: 24px; }
.quotes > * { grid-column: 1 / -1; }
@media (min-width: 760px) { .quotes > * { grid-column: span 4; } }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.quote .stars { color: var(--navy); margin-bottom: 16px; letter-spacing: 2px; }
.quote p { font-size: 1.08rem; color: var(--ink); flex: 1; line-height: 1.55; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.quote .av { width: 44px; height: 44px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: var(--navy); }
.quote .who .nm { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: .98rem; }
.quote .who .rl { color: var(--muted); font-size: .85rem; }
.quotes-note { text-align: center; color: var(--muted); margin-top: 36px; font-size: 1.05rem; }

/* ---------- Download CTA ---------- */
.cta { padding: 0; }
.cta.spaced { padding: 84px 0 0; }
.cta-card {
  background: var(--navy); border-radius: var(--radius-xl); padding: 64px 32px;
  text-align: center; color: #fff; position: relative; overflow: hidden;
  overflow-wrap: break-word;
}
.cta-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(620px circle at 80% -10%, rgba(255,255,255,.10), transparent 55%);
}
.cta-card > * { position: relative; }
.cta-card h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-card .cta-subhead { color: #fff; font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; }
.cta-card p { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 48ch; margin: 0 auto 34px; }
.badges { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; align-items: center; }
.badges img { height: 58px; width: auto; border-radius: 10px; }
.badges a { transition: transform .15s; display: inline-block; }
.badges a:hover { transform: translateY(-3px); }
.cta-fine { margin-top: 26px; color: rgba(255,255,255,.78); font-size: .95rem; }
.cta-card .inline-link { color: #fff; }

/* ---------- Footer ---------- */
footer { background: var(--surface); border-top: 1px solid var(--line); padding: 56px 0 40px; margin-top: 84px; }
.foot-grid { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); column-gap: var(--gutter-lg); row-gap: 32px; }
.foot-grid > * { grid-column: 1 / -1; }
@media (min-width: 760px) { .foot-grid > :nth-child(1) { grid-column: span 6; } .foot-grid > :nth-child(2) { grid-column: span 3; } .foot-grid > :nth-child(3) { grid-column: span 3; } }
.foot-brand .logo { margin-bottom: 14px; }
.foot-brand p { color: var(--muted); max-width: 34ch; font-size: .98rem; }
.foot-col h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 16px; font-family: var(--font-body); font-weight: 600; }
.foot-col a { display: block; color: var(--ink); padding: 7px 0; font-size: .98rem; }
.foot-col a:hover { color: var(--navy); text-decoration: underline; text-underline-offset: 4px; }
.foot-bottom { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 26px; display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; color: var(--muted); font-size: .9rem; }
.foot-bottom a { color: var(--muted); text-decoration: underline; }
.foot-bottom a:hover { color: var(--navy); }

.foot-col .obf-email { color: var(--ink); }
.foot-col .obf-email:hover { color: var(--navy); }
.foot-bottom .obf-email { color: var(--muted); }
.foot-bottom .obf-email:hover { color: var(--navy); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
