/* =========================================================
   Maria Ostapenko, RP — Therapy practice website
   Palette: warm sand, sage/eucalyptus, soft clay accent
   ========================================================= */

:root {
  --sand-50:  #faf7f2;
  --sand-100: #f3ede3;
  --sand-200: #e8dfd1;
  --ink:      #2e2a26;
  --ink-soft: #57514a;
  --ink-mute: #837b71;

  --sage-50:  #eef2ec;
  --sage-100: #dbe4d6;
  --sage-400: #7f9573;
  --sage-600: #5b7150;
  --sage-700: #46583e;
  --sage-900: #2c3826;

  --clay:     #c2683f;
  --clay-dark:#a8552f;
  --clay-soft:#f3e2d8;

  --line:     #e6ddd0;
  --white:    #ffffff;

  --shadow-sm: 0 1px 2px rgba(46, 42, 38, 0.05);
  --shadow-md: 0 18px 40px -24px rgba(46, 42, 38, 0.35);
  --shadow-lg: 0 30px 70px -30px rgba(46, 42, 38, 0.45);

  --radius:   14px;
  --radius-lg:22px;

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --maxw: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sand-50);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

a { color: var(--sage-700); text-decoration: none; }

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

.section { padding: 96px 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay-dark);
  margin: 0 0 14px;
}
.eyebrow--light { color: var(--sage-100); }

.section-head { max-width: 660px; margin: 0 0 56px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.section-sub { color: var(--ink-soft); font-size: 1.08rem; margin: 12px 0 0; }
.section-sub em { font-style: italic; color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-align: center;
}
.btn-primary { background: var(--clay); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--clay-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--sage-700); border-color: var(--sage-400); }
.btn-ghost:hover { background: var(--sage-50); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }
.brand { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--ink); }
.brand-cred { font-size: 0.72rem; color: var(--ink-mute); letter-spacing: 0.02em; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--sage-700); color: #fff !important;
  padding: 10px 20px; border-radius: 999px;
}
.nav-cta:hover { background: var(--sage-900); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 500px at 85% -10%, var(--sage-50), transparent 60%),
    linear-gradient(180deg, var(--sand-100), var(--sand-50));
  padding: 80px 0 96px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-badges-top { margin-bottom: 22px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line);
  padding: 7px 16px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 500; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage-400); box-shadow: 0 0 0 4px var(--sage-50); }

.hero-h1 {
  font-size: clamp(1.1rem, 2.1vw, 1.42rem);
  font-weight: 500;
  color: var(--sage-700);
  line-height: 1.32;
  margin: 0 0 16px;
}
.hero-h2 {
  font-size: clamp(2.2rem, 5.2vw, 3.5rem);
  line-height: 1.08;
  margin-bottom: 22px;
}
.lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 38ch; margin: 0 0 32px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.trust-badges {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 12px 26px;
}
.trust-badges li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.86rem; color: var(--ink-mute); font-weight: 500;
}
.trust-badges i { color: var(--sage-600); font-size: 1.1rem; }

.hero-media { position: relative; }
.hero-photo {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-media--portrait { position: relative; width: 100%; max-width: 330px; margin-left: auto; justify-self: end; }
.hero-media--portrait::before {
  content: ""; position: absolute; inset: 20px -18px -18px 20px;
  background: var(--sage-100); border-radius: var(--radius-lg); z-index: 0;
}
.hero-media--portrait .hero-photo {
  position: relative; z-index: 1;
  width: 100%; height: auto; aspect-ratio: 4 / 5; object-position: center top;
}
.hero-headshot {
  position: absolute; bottom: -28px; left: -28px;
  width: 168px; height: 200px;
  border-radius: 18px; overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}
.hero-headshot img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Social proof ---------- */
.proof { background: var(--sage-50); padding: 72px 0; }
.quote { max-width: 820px; margin: 0 auto; text-align: center; position: relative; }
.quote-mark { font-size: 3rem; color: var(--sage-400); opacity: .5; }
.quote blockquote {
  margin: 6px 0 22px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  line-height: 1.5; color: var(--sage-900); font-weight: 400;
}
.quote figcaption { font-weight: 600; color: var(--ink); }
.quote figcaption span { display: block; font-weight: 400; color: var(--ink-mute); font-size: 0.92rem; }

/* ---------- Approach ---------- */
.approach { background: var(--sand-50); }
.approach h2 { font-size: clamp(1.9rem, 4.2vw, 2.8rem); margin-bottom: 28px; }
.approach-body p { font-size: 1.12rem; color: var(--ink-soft); margin: 0 0 22px; }
.approach-body .emphasis {
  color: var(--ink); font-family: var(--serif); font-size: 1.25rem;
  font-style: italic; line-height: 1.5;
  border-left: 3px solid var(--clay); padding-left: 22px; margin-top: 30px;
}

/* ---------- Who I help ---------- */
.who { background: var(--white); }
.bucket-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  margin-bottom: 64px;
}
.bucket {
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.bucket:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage-100); }
.bucket-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--sage-50); color: var(--sage-600);
  font-size: 1.5rem; margin-bottom: 18px;
}
.bucket h3 { font-size: 1.25rem; margin-bottom: 8px; }
.bucket p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

.focus-band {
  background: var(--sage-900);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--sand-100);
}
.focus-title { color: #fff; font-size: 1.5rem; margin-bottom: 28px; }
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.focus-item h4 {
  color: #fff; font-size: 1.12rem; display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.focus-item h4 i { color: var(--sage-400); }
.focus-item p { margin: 0; color: #d4d8cf; font-size: 0.97rem; }

/* ---------- Modalities ---------- */
.modalities { background: var(--sand-100); }
.toolkit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.toolkit {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px 32px;
  box-shadow: var(--shadow-sm);
}
.toolkit-head { margin-bottom: 22px; }
.toolkit-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
}
.toolkit-tag--a { background: var(--sage-50); color: var(--sage-700); }
.toolkit-tag--b { background: var(--clay-soft); color: var(--clay-dark); }
.toolkit-head h3 { font-size: 1.35rem; }
.modality-list { list-style: none; margin: 0; padding: 0; }
.modality-list li {
  padding: 14px 0; border-top: 1px solid var(--line);
  color: var(--ink-soft); font-size: 0.98rem;
}
.modality-list li:first-child { border-top: 0; padding-top: 0; }
.modality-list strong { color: var(--ink); font-weight: 600; }

/* Modality pillars (How we heal) */
.pillar-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px; margin-bottom: 28px;
}
.pillar {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 30px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage-100); }
.pillar-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--sage-50); color: var(--sage-600);
  font-size: 1.5rem; margin-bottom: 18px;
}
.pillar h3 { font-size: 1.3rem; margin-bottom: 6px; line-height: 1.2; }
.pillar .pillar-tags { margin: 0 0 12px; font-size: 0.9rem; color: var(--ink-mute); }
.pillar .pillar-tags strong { color: var(--sage-700); font-weight: 600; }
.pillar p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* Condensed clinical focuses (Who I help) */
.focus-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.focus-list .focus-item {
  background: var(--sand-50); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 28px;
}
.focus-list .focus-item h4 {
  font-family: var(--serif); font-size: 1.22rem; font-weight: 500; color: var(--ink);
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.focus-list .focus-item h4 i { color: var(--sage-600); font-size: 1.3rem; }
.focus-list .focus-item p { margin: 0; color: var(--ink-soft); font-size: 1rem; }

.highlight-box {
  display: flex; align-items: center; gap: 24px;
  background: linear-gradient(120deg, var(--sage-700), var(--sage-600));
  color: #fff; border-radius: var(--radius-lg);
  padding: 32px 38px; box-shadow: var(--shadow-md);
}
.highlight-icon {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(255,255,255,0.16); font-size: 1.7rem;
}
.highlight-box h3 { color: #fff; font-size: 1.3rem; margin-bottom: 4px; }
.highlight-box p { margin: 0; color: #e7ece2; }

/* ---------- About ---------- */
.about { background: var(--sand-50); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.about-media img {
  width: 100%; aspect-ratio: 3 / 4; height: auto; object-fit: cover;
  object-position: center 35%;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.about-copy h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 22px; }
.about-copy p { color: var(--ink-soft); font-size: 1.06rem; margin: 0 0 18px; }
.cred-list { list-style: none; margin: 26px 0 0; padding: 0; }
.cred-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; color: var(--ink); font-weight: 500;
}
.cred-list i {
  color: var(--sage-600); background: var(--sage-50);
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 0.9rem;
}

/* ---------- Fees ---------- */
.fees { background: var(--white); }
.fees-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 28px; }
.fee-card {
  background: var(--sand-50); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px; text-align: center;
}
.fee-card--soft { background: var(--clay-soft); border-color: #ecd6c8; }
.fee-amount { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: var(--ink); margin: 0; }
.fee-card--soft .fee-amount { color: var(--clay-dark); }
.fee-label { font-weight: 600; color: var(--ink); margin: 6px 0 0; }
.fee-note { font-size: 0.9rem; color: var(--ink-mute); margin: 8px 0 0; }

.fees-detail { display: grid; grid-template-columns: 1fr 1.4fr; gap: 28px; }
.detail-block {
  background: var(--sand-50); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
}
.detail-block h3 { font-size: 1.2rem; display: flex; align-items: center; gap: 10px; }
.detail-block h3 i { color: var(--sage-600); }
.detail-block p { color: var(--ink-soft); margin: 0; }
.insurer-list {
  list-style: none; margin: 18px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.insurer-list li {
  font-size: 0.85rem; font-weight: 500; color: var(--sage-700);
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 14px; white-space: nowrap;
}

/* ---------- Locations ---------- */
.locations { background: var(--sand-100); }
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.loc-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.loc-img { height: 190px; overflow: hidden; }
.loc-img img { width: 100%; height: 100%; object-fit: cover; }
.loc-img--virtual {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--sage-700), var(--sage-600));
  color: rgba(255,255,255,0.92); font-size: 3.2rem;
}
.loc-body { padding: 24px 26px 30px; }
.loc-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--clay-dark); margin-bottom: 12px;
}
.loc-body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.loc-body p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }
.loc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 600; font-size: 0.92rem; color: var(--clay-dark); }
.loc-link:hover { gap: 9px; }

/* ---------- Location landing pages ---------- */
.lp-breadcrumb { font-size: 0.85rem; color: var(--ink-mute); }
.lp-breadcrumb a { color: var(--sage-700); }
.lp-breadcrumb .sep { margin: 0 8px; color: var(--line); }
.office-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 30px; align-items: stretch; }
.office-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 34px; }
.office-card h3 { font-size: 1.4rem; margin-bottom: 18px; }
.office-meta { list-style: none; margin: 0; padding: 0; }
.office-meta li { display: flex; gap: 13px; padding: 13px 0; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 0.97rem; }
.office-meta li:first-child { border-top: 0; padding-top: 0; }
.office-meta i { color: var(--sage-600); font-size: 1.25rem; margin-top: 1px; flex: 0 0 auto; }
.office-meta b { color: var(--ink); font-weight: 600; display: block; }
.lp-map-wrap { overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); min-height: 360px; }
.lp-map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 360px; border: 0; }
.catchment { background: var(--sage-50); border-radius: var(--radius-lg); padding: 32px 36px; }
.catchment h3 { font-size: 1.25rem; margin-bottom: 8px; }
.catchment p { color: var(--ink-soft); margin: 0 0 18px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 8px 17px; font-size: 0.9rem; color: var(--ink-soft); font-weight: 500; }
.lp-prose { max-width: 760px; }
.lp-prose p { font-size: 1.08rem; color: var(--ink-soft); margin: 0 0 20px; }
.lp-prose p:last-child { margin-bottom: 0; }
@media (max-width: 860px) {
  .office-grid { grid-template-columns: 1fr; }
  .lp-map-wrap, .lp-map-wrap iframe { min-height: 300px; }
}

/* ---------- Contact ---------- */
.contact {
  background:
    radial-gradient(800px 400px at 80% 0%, var(--sage-700), transparent 70%),
    var(--sage-900);
  color: var(--sand-100);
}
.contact-inner { text-align: center; }
.contact h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 18px; }
.contact-lede { color: #d4d8cf; font-size: 1.1rem; max-width: 60ch; margin: 0 auto 40px; }

.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 36px; text-align: left;
  max-width: 620px; margin: 0 auto 30px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.88rem; font-weight: 500; color: #e7ece2; margin-bottom: 7px; }
.field .optional { color: var(--sage-400); font-weight: 400; }
.field input, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px; padding: 13px 15px; resize: vertical;
  transition: border-color .18s ease, background .18s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.4); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--sage-400); background: rgba(255,255,255,0.12);
}
.form-status { margin: 14px 0 0; font-size: 0.92rem; color: var(--sage-100); min-height: 1.2em; text-align: center; }

.contact-or { color: #cfd6c8; font-size: 0.98rem; margin: 4px 0 16px; }
.contact-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 30px; }
.btn-light { background: #fff; color: var(--sage-900); border-color: #fff; }
.btn-light:hover { background: var(--sand-100); border-color: var(--sand-100); transform: translateY(-2px); }

.contact-direct {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 8px 16px; font-size: 1.02rem;
}
.contact-direct a, .contact-direct span { color: #e7ece2; display: inline-flex; align-items: center; gap: 7px; }
.contact-direct a:hover { color: #fff; }
.contact-direct i { color: var(--sage-400); }
.contact-direct .sep { color: rgba(255,255,255,0.3); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cfc8bf; padding: 56px 0 30px; }
.footer-inner {
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-name { color: #fff; font-size: 1.3rem; }
.footer-brand p { margin: 8px 0 0; max-width: 40ch; font-size: 0.95rem; color: #a59d92; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; }
.footer-nav a { color: #cfc8bf; font-size: 0.95rem; }
.footer-nav a:hover { color: #fff; }
.footer-base { padding-top: 24px; }
.footer-base p { margin: 0 0 6px; font-size: 0.82rem; color: #8c857b; }
.footer-local { max-width: 70ch; margin: 0 0 16px !important; font-size: 0.86rem !important; color: #a59d92 !important; line-height: 1.6; }
.footer-disclaimer { color: #b0a89d !important; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-media { max-width: 520px; margin: 0 auto; }
  .hero-media--portrait { max-width: 300px; }
  .hero-photo { height: 400px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { max-width: 460px; margin: 0 auto; }
  .bucket-grid { grid-template-columns: repeat(2, 1fr); }
  .toolkit-grid { grid-template-columns: 1fr; }
  .fees-detail { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr; gap: 22px; }
  .loc-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 760px) {
  .section { padding: 68px 0; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--sand-50); border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
    transform: translateY(-120%); transition: transform .3s ease;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-cta { text-align: center; margin-top: 14px; border-bottom: 0 !important; }
  .nav-toggle { display: block; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .focus-band { padding: 34px 26px; }
  .toolkit { padding: 28px 24px; }
  .highlight-box { flex-direction: column; text-align: center; padding: 30px 26px; }
  .contact-form { padding: 26px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .insurer-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .bucket-grid { grid-template-columns: 1fr; }
  .fees-grid { grid-template-columns: 1fr; }
  .hero-headshot { width: 130px; height: 156px; left: -14px; bottom: -20px; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
