/* ============================================================
   TOTAL LOVING CARE — Landing page design system
   Warm, trustworthy, conversion-focused.
   ============================================================ */

:root {
  /* — Canvas & ink — */
  --cream:      #FAF4EA;   /* page background, warm ivory */
  --paper:      #FFFDF9;   /* cards */
  --cream-deep: #F2E7D6;   /* soft surfaces / alt bands */
  --ink:        #2B2620;   /* primary text, warm near-black */
  --ink-soft:   #6A6155;   /* secondary text */
  --ink-faint:  #9A9081;   /* captions / meta */
  --rule:       rgba(43, 38, 32, 0.12);
  --rule-soft:  rgba(43, 38, 32, 0.07);

  /* — Brand colors — */
  --coral:       #D9694F;  /* signature warm action color */
  --coral-hover: #C4583E;
  --coral-press: #AF4C33;
  --coral-tint:  #FBEBE3;
  --teal:        #2E6E73;  /* trust / credentials */
  --teal-deep:   #244F53;
  --teal-tint:   #E2EDEC;
  --sage:        #6E8C5A;
  --gold:        #E0A53F;
  --gold-tint:   #FBEFD6;

  /* accent = the active "mood" color (overridden per data-mood) */
  --accent:        var(--coral);
  --accent-hover:  var(--coral-hover);
  --accent-press:  var(--coral-press);
  --accent-tint:   var(--coral-tint);

  --rainbow: linear-gradient(90deg, #34B7E0 0%, #4FBE7A 22%, #EFC23F 44%, #ED8B2E 64%, #DF4A3C 82%, #9C3F9E 100%);

  /* — Type — */
  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* — Spacing / shape — */
  --container: 1180px;
  --container-narrow: 760px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(43,38,32,.05), 0 4px 12px rgba(43,38,32,.06);
  --shadow-md: 0 4px 10px rgba(43,38,32,.07), 0 14px 30px rgba(43,38,32,.10);
  --shadow-lg: 0 10px 24px rgba(43,38,32,.10), 0 30px 60px rgba(43,38,32,.16);

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

/* mood variants (Tweak) */
:root[data-mood="teal"] {
  --accent: var(--teal); --accent-hover: var(--teal-deep); --accent-press: #1E4346; --accent-tint: var(--teal-tint);
}
:root[data-mood="sage"] {
  --accent: #5F7C4D; --accent-hover: #4E6840; --accent-press: #415736; --accent-tint: #E9EFE1;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* rainbow top hairline — brand nod */
body::before {
  content: ""; position: fixed; top: 0; left: 0; right: 0; height: 4px;
  background: var(--rainbow); z-index: 200;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 16px; display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--accent); border-radius: 2px; }
.eyebrow.center { justify-content: center; }

h1, h2, h3 { font-family: var(--display); font-weight: 500; color: var(--ink); margin: 0; letter-spacing: -.01em; }
h1 { font-size: clamp(2.5rem, 5.2vw, 4.1rem); line-height: 1.04; }
h2 { font-size: clamp(2rem, 3.8vw, 3.05rem); line-height: 1.08; }
h3 { font-size: 1.4rem; line-height: 1.2; }
.serif-i { font-style: italic; color: var(--accent); }
.lede { font-size: 1.2rem; color: var(--ink-soft); line-height: 1.6; }

.section { padding: clamp(64px, 9vw, 128px) 0; }
.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head p { margin: 18px 0 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 1.02rem;
  padding: 16px 28px; border-radius: var(--radius-pill); border: 1.5px solid transparent;
  text-decoration: none; transition: transform .15s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  line-height: 1;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px -8px var(--accent); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-primary:active { background: var(--accent-press); transform: translateY(0) scale(.99); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn-ghost:hover { background: rgba(43,38,32,.05); }
.btn-block { width: 100%; }
.btn-lg { padding: 19px 34px; font-size: 1.1rem; }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 120;
  background: rgba(250,244,234,.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s, background .3s;
}
.header.scrolled { border-color: var(--rule); box-shadow: 0 4px 20px rgba(43,38,32,.05); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; }
.header .logo { height: 38px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 30px; }
.header-nav a.navlink { font-weight: 600; font-size: .98rem; text-decoration: none; color: var(--ink-soft); transition: color .2s; }
.header-nav a.navlink:hover { color: var(--accent); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.phone-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; text-decoration: none; color: var(--teal); white-space: nowrap; }
.phone-link svg { width: 18px; height: 18px; }
.phone-link:hover { color: var(--teal-deep); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(36px, 5vw, 64px) 0 clamp(56px, 7vw, 96px); }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.hero-copy { padding-top: 18px; }
.hero h1 { margin-bottom: 22px; }
.hero .lede { max-width: 30ch; margin-bottom: 28px; }

.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper); border: 1px solid var(--rule); color: var(--ink);
  padding: 9px 15px; border-radius: var(--radius-pill); font-size: .9rem; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.badge svg { width: 17px; height: 17px; color: var(--teal); }

.hero-photo-wrap { position: relative; margin-top: 8px; max-width: 520px; }
.hero-photo { width: 100%; aspect-ratio: 5/4; object-fit: cover; object-position: 50% 28%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.proof-chip {
  position: absolute; left: -14px; bottom: -18px;
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius-md);
  padding: 12px 16px; box-shadow: var(--shadow-md); max-width: 270px;
}
.proof-chip .stars { color: var(--gold); font-size: .95rem; letter-spacing: 2px; }
.proof-chip p { margin: 4px 0 0; font-size: .86rem; line-height: 1.4; color: var(--ink-soft); }
.proof-chip strong { color: var(--ink); }

/* lead form card */
.lead-card {
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); padding: clamp(26px, 3vw, 38px); position: relative; overflow: hidden;
}
.lead-card .ribbon { position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--rainbow); }
.lead-card h2 { font-size: 1.85rem; line-height: 1.1; }
.lead-card .sub { color: var(--ink-soft); font-size: 1rem; margin: 10px 0 22px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.field label .opt { color: var(--ink-faint); font-weight: 500; }
.field input, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--rule); border-radius: var(--radius-md);
  background: #fff; transition: border-color .18s, box-shadow .18s;
}
.field textarea { resize: vertical; min-height: 80px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.field.invalid input, .field.invalid textarea { border-color: #C9483B; box-shadow: 0 0 0 3px #f6dcd7; }
.field .err { color: #C9483B; font-size: .8rem; margin: 5px 0 0; display: none; }
.field.invalid .err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lead-card .submit-note { font-size: .82rem; color: var(--ink-faint); text-align: center; margin: 14px 0 0; }
.lead-card .call-fallback { text-align: center; margin: 16px 0 0; padding-top: 16px; border-top: 1px solid var(--rule-soft); font-size: .95rem; color: var(--ink-soft); }
.lead-card .call-fallback a { color: var(--teal); font-weight: 700; text-decoration: none; white-space: nowrap; }
.trust-line { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .82rem; color: var(--ink-faint); margin-bottom: 18px; }
.trust-line svg { width: 15px; height: 15px; color: var(--sage); }

/* form success state */
.form-success { display: none; text-align: center; padding: 30px 6px; }
.lead-card.done .form-body { display: none; }
.lead-card.done .form-success { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .check svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 1.6rem; margin-bottom: 10px; }
.form-success p { color: var(--ink-soft); margin: 0 auto; max-width: 34ch; }

/* ---------- Credentials ---------- */
.bg-soft { background: var(--cream-deep); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.feature {
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; margin-bottom: 18px; }
.feature .ic svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.22rem; margin-bottom: 8px; }
.feature p { margin: 0; font-size: .98rem; color: var(--ink-soft); }

/* ---------- Credentials (editorial) ---------- */
.cred-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(40px, 6vw, 92px); align-items: start; }
.cred-aside { position: sticky; top: 104px; }
.cred-aside h2 { margin-bottom: 18px; }
.cred-aside p { color: var(--ink-soft); margin: 0 0 26px; }
.license-proof { display: grid; gap: 12px; }
.license-proof .lp {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border: 1px solid var(--rule); border-radius: var(--radius-md);
  background: var(--paper); box-shadow: var(--shadow-sm);
}
.license-proof .lp .ic { width: 26px; height: 26px; color: var(--teal); flex: 0 0 auto; }
.license-proof .lp strong { display: block; font-size: 1rem; color: var(--ink); }
.license-proof .lp span { font-size: .85rem; color: var(--ink-faint); }

.cred-list { display: grid; }
.cred-row {
  display: grid; grid-template-columns: 30px 1fr; gap: 22px; align-items: start;
  padding: 26px 4px; border-bottom: 1px solid var(--rule);
}
.cred-row:first-child { padding-top: 4px; }
.cred-row .ic { color: var(--accent); width: 30px; height: 30px; margin-top: 2px; }
.cred-row .ic svg { width: 30px; height: 30px; }
.cred-row h3 { font-family: var(--display); font-size: 1.32rem; margin: 0 0 4px; }
.cred-row p { margin: 0; color: var(--ink-soft); font-size: 1rem; }

/* ---------- Lee Bowles spotlight ---------- */
.spotlight {
  display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(32px, 5vw, 64px); align-items: center;
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md); overflow: hidden; margin-top: 12px;
}
.spotlight-photo { width: 100%; height: 100%; min-height: 380px; object-fit: cover; object-position: 50% 30%; }
.spotlight-body { padding: clamp(30px, 4vw, 54px) clamp(28px, 4vw, 56px) clamp(30px, 4vw, 54px) 0; }
.spotlight-body .role { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin: 0 0 8px; }
.spotlight-body h3 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 0 0 16px; }
.spotlight-body p { margin: 0 0 16px; color: var(--ink-soft); font-size: 1.08rem; }
.spotlight-body .support { font-size: .95rem; color: var(--ink); padding-top: 18px; border-top: 1px solid var(--rule-soft); }
.spotlight-body .support strong { color: var(--ink); }

/* ---------- Location band ---------- */
.location { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.location-copy h2 { margin-bottom: 18px; }
.location-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.location-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.location-pin {
  position: absolute; left: 18px; bottom: 18px; display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,253,249,.94); backdrop-filter: blur(6px); border-radius: var(--radius-pill);
  padding: 10px 18px; font-weight: 700; color: var(--ink); box-shadow: var(--shadow-sm); font-size: .95rem;
}
.location-pin svg { width: 18px; height: 18px; color: var(--coral); }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 86px); align-items: center; }
.split.flip .split-media { order: 2; }
.split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); object-fit: cover; }
.split-copy h2 { margin-bottom: 20px; }
.split-copy p + p { margin-top: 16px; }
.pullquote { font-family: var(--display); font-style: italic; font-size: 1.55rem; line-height: 1.34; color: var(--ink); margin: 0 0 24px; }
.check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 1rem; color: var(--ink); }
.check-list li svg { width: 22px; height: 22px; color: var(--accent); flex: 0 0 auto; margin-top: 1px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 50px; }
.gallery figure { margin: 0; position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 3/4; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute; left: 12px; bottom: 12px; background: rgba(43,38,32,.72); color: #fff;
  font-size: .8rem; font-weight: 600; padding: 6px 12px; border-radius: var(--radius-pill); backdrop-filter: blur(4px);
}

/* ---------- Memory care (dark band) ---------- */
.band-dark { background: var(--teal-deep); color: #F3EEE4; position: relative; overflow: hidden; }
.band-dark .eyebrow { color: #9FD0CF; }
.band-dark .eyebrow::before { background: #9FD0CF; }
.band-dark h2 { color: #fff; }
.band-dark .split-copy p { color: #D6E1DE; }
.band-dark .check-list li { color: #EFF4F2; }
.band-dark .check-list li svg { color: #F0B27A; }
.band-dark .split-media img { box-shadow: 0 30px 60px rgba(0,0,0,.35); }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 22px; margin-top: 50px; align-items: stretch; }
.team-card { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.team-card.lead-feature { grid-row: span 1; }
.team-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: 50% 30%; }
.team-card .body { padding: 24px 26px; }
.team-card .role { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin: 0 0 6px; }
.team-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.team-card p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.team-icon-card .ic { width: 50px; height: 50px; border-radius: 13px; background: var(--accent-tint); color: var(--accent); display: grid; place-items: center; margin-bottom: 16px; }
.team-icon-card .ic svg { width: 25px; height: 25px; }
.team-icon-card { padding: 28px 26px; justify-content: center; }
.oncall-tag { display: inline-flex; align-items: center; gap: 7px; background: var(--teal-tint); color: var(--teal-deep); font-size: .8rem; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-pill); margin-top: 14px; }
.oncall-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: #2F9E6E; box-shadow: 0 0 0 3px rgba(47,158,110,.25); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.testi {
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.testi .stars { color: var(--gold); letter-spacing: 3px; font-size: 1rem; margin-bottom: 14px; }
.testi blockquote { margin: 0 0 20px; font-family: var(--display); font-size: 1.18rem; line-height: 1.45; color: var(--ink); }
.testi .card-img { margin-top: auto; }
.testi .card-img img { width: 100%; border-radius: var(--radius-sm); border: 1px solid var(--rule); box-shadow: var(--shadow-sm); }
.testi .who { margin: 16px 0 0; font-size: .9rem; }
.testi .who strong { display: block; color: var(--ink); }
.testi .who span { color: var(--ink-faint); }

/* ---------- FAQ ---------- */
.faq { max-width: var(--container-narrow); margin: 46px auto 0; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 24px 44px 24px 0; position: relative;
  font-family: var(--display); font-size: 1.28rem; color: var(--ink); line-height: 1.25; }
.faq-q .pm { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 26px; height: 26px; color: var(--accent); transition: transform .3s var(--ease); }
.faq-item.open .faq-q .pm { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { margin: 0 0 24px; color: var(--ink-soft); font-size: 1.02rem; max-width: 64ch; }

/* ---------- Final CTA ---------- */
.cta-band { background: var(--accent); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; max-width: 18ch; margin: 0 auto 18px; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 46ch; margin: 0 auto 34px; font-size: 1.15rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-primary { background: #fff; color: var(--accent); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.cta-band .btn-primary:hover { background: #fff; transform: translateY(-2px); }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.12); }
p.micro.micro { margin: 22px auto 0; font-size: .92rem; color: rgba(255,255,255,.8); text-align: center; max-width: 100%; }

/* ---------- Footer ---------- */
.footer { background: #211D18; color: #C9C0B2; padding: 64px 0 110px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.footer .flogo { background: #fff; padding: 12px 16px; border-radius: var(--radius-md); display: inline-block; }
.footer .flogo img { height: 40px; }
.footer .tag { font-family: var(--display); font-style: italic; font-size: 1.15rem; color: #EBE3D5; margin: 20px 0 0; }
.footer h4 { font-family: var(--sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: #8E8473; margin: 0 0 16px; }
.footer a { color: #D9D1C3; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; font-size: .98rem; }
.footer .legal { margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; color: #877D6D; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* ---------- Mobile sticky action bar ---------- */
.mobile-bar { display: none; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { padding-top: 0; }
  .hero .lede { max-width: 46ch; }
  .hero-order-form { order: 3; }
  .hero-photo-wrap { max-width: 100%; margin: 0 auto; }
  .hero-photo { aspect-ratio: 16/10; object-position: 50% 25%; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-layout { grid-template-columns: 1fr; gap: 36px; }
  .cred-aside { position: static; }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-photo { min-height: 0; aspect-ratio: 16/10; }
  .spotlight-body { padding: 0 clamp(26px,5vw,40px) clamp(30px,5vw,44px); }
  .location { grid-template-columns: 1fr; gap: 28px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-card.lead-feature { grid-column: span 2; }
  .team-card.lead-feature { flex-direction: row; }
  .team-card.lead-feature .team-photo { width: 44%; aspect-ratio: auto; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .header-nav { display: none; }
  .header .header-cta .phone-link span.num { display: none; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.flip .split-media { order: 0; }
  .testi-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card.lead-feature { grid-column: auto; flex-direction: column; }
  .team-card.lead-feature .team-photo { width: 100%; aspect-ratio: 4/3; }
  .form-row { grid-template-columns: 1fr; }
  .proof-chip { left: 50%; transform: translateX(-50%); bottom: -24px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  body { padding-bottom: 0; }

  .mobile-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
    gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,253,249,.95); backdrop-filter: blur(10px); border-top: 1px solid var(--rule);
    box-shadow: 0 -6px 20px rgba(43,38,32,.08);
  }
  .mobile-bar .btn { flex: 1; padding: 15px 14px; font-size: 1rem; }
  .mobile-bar .btn-call { background: var(--teal); color: #fff; flex: 0 0 auto; }
  .section { padding: 64px 0; }
  .hero { padding-bottom: 40px; }
}

@media (max-width: 420px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .badges .badge { font-size: .82rem; }
}
