/* =========================================================
   Lantern Living Advisors — design system
   Navy + warm gold + sage palette pulled from the logo
   (navy = trust, gold = the lantern's light, sage = family/community).
   ========================================================= */

:root {
  /* Brand — navy */
  --navy: #102A52;
  --navy-700: #1C3766;
  --navy-900: #0A1A35;

  /* Brand — gold (the lantern flame & arc) */
  --gold: #D4A24F;
  --gold-700: #A87C26;
  --gold-200: #ECDAAE;
  --gold-50:  #F8F1DD;

  /* Brand — sage (the family figures) */
  --sage:     #7E9A6E;
  --sage-700: #5C7551;
  --sage-200: #C5D4B7;
  --sage-50:  #ECF1E5;

  /* Neutrals */
  --ivory: #FAF6EC;
  --cream: #F4ECDB;
  --bone:  #FFFCF5;
  --white: #FFFFFF;
  --ink:   #1C2233;
  --body:  #4A5468;
  --mute:  #8893A3;
  --line:  #E6DDC9;

  /* Status */
  --success: #2F7A4D;

  /* Type */
  --serif: "League Spartan", "Abril Fatface", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --max:    1200px;
  --max-narrow: 960px;
  --max-tight:  780px;
  --radius: 14px;
  --radius-sm: 8px;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(16,35,74,0.06);
  --shadow:    0 12px 32px rgba(16,35,74,0.10);
  --shadow-lg: 0 28px 60px rgba(16,35,74,0.16);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: rgba(16,35,74,0.10); }

html, body {
  margin: 0; padding: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
html { scroll-behavior: smooth; }
body { min-height: 100vh; }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold-700); }
button { font: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
ul { padding: 0; margin: 0; list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 { font-family: var(--serif); color: var(--navy); margin: 0; line-height: 1.15; font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: clamp(36px, 5.4vw, 64px); }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: clamp(22px, 2.4vw, 28px); }
h4 { font-size: clamp(18px, 1.8vw, 22px); }
p  { margin: 0 0 1rem; color: var(--body); }

/* ============== Layout primitives ============== */
.container       { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.container-narrow{ max-width: var(--max-narrow); margin: 0 auto; padding: 0 1.25rem; }
.container-tight { max-width: var(--max-tight); margin: 0 auto; padding: 0 1.25rem; }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-tight { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.section.bg-cream { background: var(--cream); }
.section.bg-ivory { background: var(--ivory); }
.section.bg-navy  { background: var(--navy); color: var(--bone); }
.section.bg-navy h1, .section.bg-navy h2, .section.bg-navy h3, .section.bg-navy h4 { color: var(--bone); }
.section.bg-navy p  { color: rgba(255,252,245,0.78); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 600;
  color: var(--gold-700);
  margin-bottom: 0.75rem;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 24px; height: 2px;
  background: var(--gold);
  vertical-align: middle; margin-right: 0.5rem;
  position: relative; top: -2px;
}
.section.bg-navy .eyebrow { color: var(--gold-200); }
.section.bg-navy .eyebrow::before { background: var(--gold); }

.lede { font-size: 1.125rem; color: var(--body); max-width: 60ch; margin: 0 auto 2rem; }
.text-center { text-align: center; }

/* ============== Buttons ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border: 2px solid var(--navy);
  background: var(--navy); color: var(--bone);
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
}
.btn:hover { background: var(--navy-700); color: var(--bone); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-700); border-color: var(--gold-700); color: var(--bone); }
.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--bone); }
.btn-light { background: var(--bone); border-color: var(--bone); color: var(--navy); }
.btn-light:hover { background: transparent; color: var(--bone); border-color: var(--bone); }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 13px; }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 16px; }

/* Phone link in button form */
.btn .phone-icn { width: 18px; height: 18px; }

/* ============== Top utility bar ============== */
.utility {
  background: var(--navy);
  color: var(--bone);
  font-size: 13px;
}
.utility .container {
  display: flex; justify-content: flex-end; align-items: center;
  padding-top: 0.5rem; padding-bottom: 0.5rem;
  flex-wrap: wrap; gap: 0.5rem 1.25rem;
}
.utility a { color: var(--bone); }
.utility .util-left { display: flex; gap: 1.25rem; align-items: center; }
.utility .util-left span { display: inline-flex; align-items: center; gap: 0.4rem; }
.utility svg { width: 14px; height: 14px; }

/* ============== Nav ============== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,252,245,0.96);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.85rem; padding-bottom: 0.85rem;
}
.nav-brand {
  display: flex; align-items: center; gap: 0.75rem;
}
.nav-brand img {
  height: 160px; width: auto;
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-text .b1 { font-family: var(--serif); font-size: 22px; color: var(--navy); letter-spacing: 0.02em; font-weight: 600; }
.nav-brand-text .b2 { font-size: 10px; color: var(--gold-700); letter-spacing: 0.28em; text-transform: uppercase; margin-top: 4px; }

.nav-menu {
  display: flex; gap: 2rem; align-items: center;
}
.nav-menu a {
  color: var(--ink); font-weight: 500; font-size: 15px;
  position: relative; padding: 0.25rem 0;
}
.nav-menu a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; gap: 0.65rem; align-items: center; }
.nav-cta .phone-text { color: var(--navy); font-weight: 600; }
.nav-cta .phone-text small { display: block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-700); font-weight: 500; }

.nav-toggle { display: none; background: transparent; border: 0; padding: 0.5rem; }
.nav-toggle svg { width: 24px; height: 24px; color: var(--navy); }

@media (max-width: 1000px) {
  .nav-menu, .nav-cta .phone-text { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-brand img { height: 130px; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(10,23,51,0.55);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.mobile-drawer.open { opacity: 1; pointer-events: auto; }
.mobile-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(86vw, 380px);
  background: var(--bone);
  padding: 1.5rem 1.25rem 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transform: translateX(100%); transition: transform .3s ease;
}
.mobile-drawer.open .mobile-drawer-panel { transform: translateX(0); }
.mobile-drawer-panel a { color: var(--ink); font-size: 18px; padding: 0.75rem 0; border-bottom: 1px solid var(--line); }
.mobile-drawer-close { align-self: flex-end; background: transparent; border: 0; padding: 0.5rem; }
.mobile-drawer-close svg { width: 24px; height: 24px; color: var(--navy); }
.mobile-drawer-cta { margin-top: 1rem; display: grid; gap: 0.6rem; }

/* ============== Hero ============== */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 600px at 90% -10%, rgba(201,163,81,0.18), transparent 60%),
    radial-gradient(900px 700px at -10% 110%, rgba(16,35,74,0.10), transparent 65%),
    var(--bone);
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1150px;
  gap: 1.25rem;
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}
.hero h1 {
  color: var(--navy);
  margin: 0;
  max-width: none;
  font-size: clamp(28px, 4.4vw, 50px);
  line-height: 1.15;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--gold-700); font-style: italic; }
.hero p.lede {
  margin: 0 auto;
  max-width: 62ch;
  font-size: 1.15rem;
}
.hero-ctas {
  display: flex; gap: 0.85rem; flex-wrap: wrap; justify-content: center;
  margin-top: 0.75rem;
}
.hero-trust {
  margin-top: 1.25rem;
  display: flex; gap: 1.5rem 2rem; flex-wrap: wrap; justify-content: center;
  font-size: 14px; color: var(--body);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-trust svg { width: 18px; height: 18px; color: var(--gold-700); }

/* ============== Trust strip ============== */
.trust-strip {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.trust-strip .grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 0.75rem;
  border-right: 1px solid var(--line);
  padding-right: 1.5rem;
}
.trust-item:last-child { border-right: 0; }
.trust-item svg { width: 32px; height: 32px; color: var(--gold-700); flex-shrink: 0; }
.trust-item .ti-num { font-family: var(--serif); font-size: 19px; color: var(--navy); line-height: 1.15; font-weight: 600; }
.trust-item .ti-lab { font-size: 11px; color: var(--body); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.3rem; }
@media (max-width: 760px) {
  .trust-strip .grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: 0; padding-right: 0; }
}

/* ============== About / Meet Janeth ============== */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  max-width: 1150px;
  margin: 0 auto;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { line-height: 1.7; }

/* Photo column — sticks in place while the story scrolls beside it */
.about-photo {
  position: sticky;
  top: 210px;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ivory);
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,252,245,0.4), transparent 55%),
    linear-gradient(160deg, var(--gold-200), var(--gold) 55%, var(--sage-700));
  color: var(--bone);
  padding: 2rem;
  text-align: center;
}
.about-photo-placeholder svg { width: 96px; height: 96px; opacity: 0.55; }
.about-photo-placeholder span {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
}
.about-photo-placeholder small {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,252,245,0.75); font-weight: 500;
}

/* Sub-headings inside the story */
.about-subhead {
  font-family: var(--serif);
  color: var(--navy);
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 2rem 0 0.75rem;
  line-height: 1.2;
  font-weight: 600;
}

/* What You Can Expect list */
.about-expect { display: grid; gap: 1rem; margin: 0 0 1rem; }
.about-expect li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 15px; color: var(--body); line-height: 1.6;
}
.about-expect svg { width: 22px; height: 22px; color: var(--sage-700); flex-shrink: 0; margin-top: 3px; }
.about-expect strong { color: var(--ink); font-weight: 600; }

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; max-width: 720px; gap: 2rem; }
  .about-photo { position: relative; top: 0; max-width: 420px; margin: 0 auto; aspect-ratio: 1/1; }
}

/* Sage accent in the About section — the "family/community" tone */
#about .eyebrow { color: var(--sage-700); }
#about .eyebrow::before { background: var(--sage); }

/* Sage accent on the "Families Guided" trust-strip item */
.trust-strip .trust-item:nth-child(3) svg { color: var(--sage-700); }

/* ============== Services section ============== */
.services-head { text-align: center; margin-bottom: 3.5rem; }
.services-head h2 { margin-bottom: 1rem; }
.services-head p { max-width: 60ch; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-700));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-200); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-50), var(--gold-200));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--navy);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 0.5rem; font-size: 22px; text-align: center; }
.service-card p { color: var(--body); font-size: 15px; margin-bottom: 1.25rem; }
.service-meta {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.service-tag {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--ivory); color: var(--navy);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-weight: 600;
}
.service-card .more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--navy); font-weight: 600; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.service-card .more svg { width: 14px; height: 14px; transition: transform .2s ease; }
.service-card:hover .more svg { transform: translateX(4px); }

/* ============== How It Works (process) ============== */
.process {
  background:
    radial-gradient(800px 400px at 50% -20%, rgba(201,163,81,0.10), transparent 60%),
    var(--cream);
}
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 3rem;
  position: relative;
}
.process-grid::before {
  content: ""; position: absolute;
  top: 36px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(to right, var(--gold) 0 8px, transparent 8px 16px);
  opacity: 0.5;
}
.process-step {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--serif); font-size: 26px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 6px var(--cream), 0 0 0 7px var(--gold-200);
}
.process-step h3 { font-size: 20px; margin-bottom: 0.6rem; }
.process-step p { color: var(--body); font-size: 14px; margin: 0; }
@media (max-width: 880px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
}
@media (max-width: 520px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ============== Why Choose Us ============== */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: rgba(255,252,245,0.05);
  border: 1px solid rgba(232,217,176,0.2);
  border-radius: var(--radius);
  padding: 2rem;
}
.why-card .icn {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(201,163,81,0.16);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.why-card .icn svg { width: 26px; height: 26px; color: var(--gold); }
.why-card h3 { color: var(--bone); margin-bottom: 0.6rem; font-size: 22px; }
.why-card p { color: rgba(255,252,245,0.78); font-size: 15px; margin: 0; }
@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr; } }

/* ============== Services aside (the "other care needs" note) ============== */
.services-aside {
  text-align: center;
  max-width: 60ch;
  margin: 2.5rem auto 0;
  color: var(--body);
  font-size: 15px;
  font-style: italic;
}

/* ============== Field label (optional) suffix ============== */
.field-optional {
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--mute);
  text-transform: none;
  margin-left: 0.35rem;
  font-size: 11px;
  font-style: italic;
}

/* ============== About-points wrapped spans (strong + body text) ============== */
.about-points li > span { display: inline; }
.about-points li strong { color: var(--ink); font-weight: 600; }

/* ============== Contact / CTA ============== */
.cta-band {
  background:
    radial-gradient(700px 400px at 80% 30%, rgba(201,163,81,0.18), transparent 55%),
    var(--navy);
  color: var(--bone);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.cta-band-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center;
}
.cta-band h2 { color: var(--bone); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,252,245,0.80); margin: 0 0 1.5rem; }
.cta-band-list { display: grid; gap: 0.75rem; }
.cta-band-list li {
  display: flex; gap: 0.65rem; align-items: center; color: rgba(255,252,245,0.90); font-size: 15px;
}
.cta-band-list svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.cta-band-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
@media (max-width: 900px) { .cta-band-inner { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--bone);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.contact-card h3 { margin-bottom: 0.5rem; }
.contact-card p { font-size: 14px; margin-bottom: 1.5rem; color: var(--body); }
.contact-card form { display: grid; gap: 0.85rem; }
.field { display: grid; gap: 0.35rem; }
.field label {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); font-weight: 600;
}
.field input, .field select, .field textarea {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,163,81,0.22);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.contact-card .privacy { font-size: 12px; color: var(--mute); margin: 0.25rem 0 0; }
.form-status { font-size: 14px; min-height: 1rem; color: var(--success); font-weight: 600; }

/* ============== Footer ============== */
.footer {
  background: var(--navy-900);
  color: rgba(255,252,245,0.78);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,252,245,0.10);
}
.footer-brand img { height: 160px; width: auto; margin-bottom: 1rem; background: var(--bone); padding: 0.75rem 1rem; border-radius: 12px; }
.footer-brand .fb-name { font-family: var(--serif); color: var(--bone); font-size: 22px; margin-bottom: 0.5rem; }
.footer-brand p { color: rgba(255,252,245,0.65); font-size: 14px; margin: 0 0 1.25rem; max-width: 36ch; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,252,245,0.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--bone); transition: background .2s ease, color .2s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  color: var(--bone); font-family: var(--serif); font-size: 18px;
  margin-bottom: 1rem;
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { color: rgba(255,252,245,0.72); font-size: 14px; }
.footer-col a:hover { color: var(--gold); }
.footer-col .contact-line {
  display: flex; gap: 0.55rem; align-items: flex-start;
  color: rgba(255,252,245,0.78); font-size: 14px;
  line-height: 1.5;
}
.footer-col .contact-line svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0;
  font-size: 13px; color: rgba(255,252,245,0.55);
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom a { color: rgba(255,252,245,0.65); }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CINEMATIC ENHANCEMENTS
   - Cursor glow (warm gold radial that trails the mouse)
   - Spotlight border on service cards
   - Sticky-stack narrative for the How It Works section
   - Magnetic gold CTA buttons
   ========================================================= */

/* ---------- Cursor glow ---------- */
.cursor-glow {
  position: fixed; top: 0; left: 0;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,162,79,0.14) 0%, rgba(212,162,79,0.05) 35%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-9999px, -9999px);
  will-change: transform;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cursor-glow.on { opacity: 1; }
@media (max-width: 900px) { .cursor-glow { display: none; } }
@media (prefers-reduced-motion: reduce) { .cursor-glow { display: none; } }

/* ---------- Spotlight border on service cards ---------- */
.service-card::after {
  content: ""; position: absolute; inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 50%), rgba(212,162,79,0.14), transparent 60%);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.service-card:hover::after { opacity: 1; }

/* ---------- Step cards (How It Works) ---------- */
.stack-features {
  display: flex; flex-direction: column; gap: 1.25rem;
  max-width: 720px;
  margin: 2.5rem auto 0;
}
.feature-card {
  padding: 1.75rem 1.75rem;
  border-radius: 14px;
  background: var(--bone);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.feature-num {
  font-size: 12px; font-weight: 600;
  color: var(--gold-700);
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.5rem;
}
.feature-card h3 { font-size: 22px; margin-bottom: 0.55rem; }
.feature-card p { color: var(--body); font-size: 15px; line-height: 1.55; margin: 0; }

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

/* ============== Toast ============== */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: var(--bone);
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  display: flex; align-items: center; gap: 0.55rem;
  max-width: calc(100vw - 2rem);
  text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.toast svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ===========================================================
   MOBILE POLISH — pulls everything inward at <=640 / <=480 / <=380
   =========================================================== */

/* Utility visibility helpers */
.hide-sm { }
@media (max-width: 720px) { .hide-sm { display: none !important; } }
.hide-xs { }
@media (max-width: 480px) { .hide-xs { display: none !important; } }

/* Tablet & below */
@media (max-width: 900px) {
  .container, .container-narrow, .container-tight { padding-left: 1rem; padding-right: 1rem; }
  .section { padding: clamp(2.75rem, 7vw, 5rem) 0; }
  h1 { font-size: clamp(30px, 7vw, 48px); }
  h2 { font-size: clamp(26px, 5.5vw, 38px); }
  h3 { font-size: clamp(20px, 3vw, 24px); }
  .lede { font-size: 1rem; }
}

/* Phone */
@media (max-width: 640px) {
  /* Nav: smaller logo, drop the inline gold CTA so the bar isn't cramped */
  .nav .container { padding-top: 0.6rem; padding-bottom: 0.6rem; }
  .nav-brand img { height: 110px; }
  .nav-cta .btn-gold { display: none; }
  .nav-toggle { padding: 0.4rem; }

  /* Utility bar: tighter, single row */
  .utility { font-size: 12px; }
  .utility .container { padding-top: 0.4rem; padding-bottom: 0.4rem; gap: 0.5rem; }

  /* Hero: tighter spacing, full-width CTAs */
  .hero .container { padding-top: 2.5rem; padding-bottom: 2.5rem; gap: 1rem; }
  .hero h1 { font-size: clamp(28px, 8.5vw, 42px); line-height: 1.1; }
  .hero p.lede { font-size: 1rem; max-width: none; }
  .hero-ctas { gap: 0.6rem; flex-direction: column; align-items: stretch; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust { gap: 0.6rem 1rem; margin-top: 0.75rem; font-size: 13px; }

  /* Trust strip: 1-col on tiny screens, no dividers */
  .trust-strip { padding: 1rem 0; }
  .trust-strip .grid { gap: 0.85rem; }
  .trust-item { padding-right: 0; border-right: 0; gap: 0.6rem; }
  .trust-item .ti-num { font-size: 20px; }
  .trust-item .ti-lab { font-size: 11px; letter-spacing: 0.1em; }

  /* About: tighter type on mobile */
  .about-expect li { font-size: 14px; }
  .about-text p { font-size: 15px; }
  .about-subhead { font-size: 20px; margin-top: 1.5rem; }

  /* Services: tighter cards */
  .services-grid { gap: 0.85rem; grid-template-columns: 1fr; }
  .service-card { padding: 1.5rem 1.25rem; }
  .service-card h3 { font-size: 20px; }
  .service-card p { font-size: 14px; }
  .service-icon { width: 48px; height: 48px; margin-bottom: 1rem; }
  .service-icon svg { width: 24px; height: 24px; }
  .service-tag { font-size: 10px; padding: 0.25rem 0.55rem; }

  /* Process */
  .process-grid { gap: 0.75rem; margin-top: 2rem; }
  .process-step { padding: 1.25rem 1rem; }
  .process-num { width: 60px; height: 60px; font-size: 22px; box-shadow: 0 0 0 5px var(--cream), 0 0 0 6px var(--gold-200); }
  .process-step h3 { font-size: 18px; }
  .process-step p { font-size: 13px; }

  /* Why cards */
  .why-card { padding: 1.5rem 1.25rem; }
  .why-card h3 { font-size: 20px; }
  .why-card p { font-size: 14px; }

  /* Contact band */
  .cta-band { padding: 2.5rem 0; }
  .cta-band-inner { gap: 1.75rem; }
  .contact-card { padding: 1.5rem 1.25rem; }
  .contact-card h3 { font-size: 22px; }
  .field-row { grid-template-columns: 1fr; }
  /* Prevent iOS Safari from zooming on focus when font-size < 16px */
  .field input, .field select, .field textarea { font-size: 16px; padding: 0.75rem 0.85rem; }

  /* CTA buttons in the band stack and full-width */
  .cta-band-buttons { flex-direction: column !important; align-items: stretch; }
  .cta-band-buttons .btn { width: 100%; }

  /* Footer: tighter, breathing room */
  .footer { padding-top: 2.5rem; }
  .footer-grid { gap: 2rem; padding-bottom: 2rem; }
  .footer-brand img { height: 120px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }

  /* Eyebrow + buttons: minimum 44px touch target */
  .btn { padding: 0.85rem 1.3rem; font-size: 14px; min-height: 44px; }
  .btn-lg { padding: 0.95rem 1.5rem; font-size: 15px; min-height: 48px; }
  .btn-sm { padding: 0.6rem 1rem; min-height: 40px; }

  /* Eyebrow inside services-head should breathe */
  .services-head { margin-bottom: 2.25rem; }
}

/* Very small phones */
@media (max-width: 380px) {
  .nav-brand img { height: 88px; }
  h1 { font-size: 26px !important; }
  .hero p.lede { font-size: 0.95rem; }
  .trust-item .ti-num { font-size: 18px; }
  .service-card { padding: 1.25rem 1rem; }
  .footer-brand img { height: 56px; }
  .utility { font-size: 11px; }
}

