:root {
  /* Palette: keyed to the logo, deep navy wordmark, bridge-blue structure, vegetation green, warm paper neutrals */
  --ink: #1F1D1A;
  --charcoal: #5A574F;
  --soft: #8A8678;
  --paper: #F5F1EA;
  --cream: #EDE6D8;
  --sand: #E0D6C2;
  --line: #D9D2C2;
  --line-soft: rgba(31, 29, 26, 0.08);

  --navy: #1E3A5F;
  --navy-deep: #15293F;
  --bridge-blue: #6E8AA8;
  --water: #B8CBDB;

  --green: #5C7A52;
  --green-deep: #3F5938;
  --sage: #9DA68C;
  --sage-pale: #C9CFB8;

  --serif: "Cormorant Garamond", "Source Serif 4", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.005em;
  line-height: 1.12;
}
h1 { font-size: clamp(46px, 6.6vw, 92px); font-weight: 500; }
h2 { font-size: clamp(34px, 4.8vw, 58px); }
h3 { font-size: clamp(22px, 2.8vw, 30px); }
p { color: var(--charcoal); font-weight: 300; }
em, i { font-style: italic; color: var(--green); }
h1 em, h1 i, h2 em, h2 i, h3 em, h3 i { color: var(--green-deep); }

a {
  color: var(--green);
  text-decoration: none;
  transition: color 200ms var(--ease);
}
a:hover { color: var(--green-deep); }
a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 2px;
}
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 600px) {
  .container, .container-narrow { padding: 0 24px; }
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--bridge-blue);
  margin-bottom: 28px;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 18px 36px;
  transition: all 220ms var(--ease);
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
}
.btn:hover {
  background: var(--navy);
  color: var(--paper);
  transform: translateY(-1px);
}
.btn-solid {
  background: var(--green);
  border-color: var(--green);
  color: var(--paper);
}
.btn-solid:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--paper);
}
.btn-light {
  border-color: var(--paper);
  color: var(--paper);
}
.btn-light:hover {
  background: var(--paper);
  color: var(--navy);
}
.btn::after {
  content: "→";
  font-size: 14px;
  letter-spacing: 0;
  transition: transform 220ms var(--ease);
}
.btn:hover::after { transform: translateX(4px); }

.link-underline {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--navy);
  transition: all 200ms var(--ease);
}
.link-underline:hover {
  color: var(--green);
  border-color: var(--green);
}

/* HEADER */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms var(--ease);
}
header.is-scrolled { border-bottom-color: var(--line-soft); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
}
.brand img {
  height: 52px;
  width: auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.06em;
}
.brand-sub {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--soft);
  margin-top: 4px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .brand-text { display: none; }
  .brand img { height: 44px; }
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta a {
  background: var(--green);
  color: var(--paper);
  padding: 13px 24px;
  transition: background 220ms var(--ease);
}
.nav-cta a:hover { background: var(--green-deep); }
.nav-cta a::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 110;
}
.hamburger span {
  display: block;
  position: absolute;
  left: 6px; right: 6px;
  height: 1px;
  background: var(--navy);
  transition: transform 280ms var(--ease), opacity 280ms var(--ease), top 280ms var(--ease);
}
.hamburger span:nth-child(1) { top: 12px; }
.hamburger span:nth-child(2) { top: 18px; }
.hamburger span:nth-child(3) { top: 24px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 105;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ease);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  color: var(--navy);
}
.mobile-menu a:hover { color: var(--green); }
.mobile-menu .menu-meta {
  margin-top: 32px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft);
}

/* HERO (homepage): full-bleed bridge variant */
.hero-bridge {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  padding-top: 92px;
}
@media (max-width: 760px) {
  .hero-bridge { min-height: 88vh; padding-top: 88px; }
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 72% 120% at 22% 62%,
      rgba(15, 30, 50, 0.78) 0%,
      rgba(15, 30, 50, 0.42) 52%,
      rgba(15, 30, 50, 0.08) 100%),
    linear-gradient(180deg,
      rgba(15, 30, 50, 0.22) 0%,
      rgba(15, 30, 50, 0.05) 40%,
      rgba(15, 30, 50, 0.34) 100%);
  pointer-events: none;
}
@media (max-width: 760px) {
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(15, 30, 50, 0.55) 0%,
        rgba(15, 30, 50, 0.35) 35%,
        rgba(15, 30, 50, 0.10) 60%,
        rgba(15, 30, 50, 0.55) 100%);
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 80px 100px;
}
@media (max-width: 960px) { .hero-inner { padding: 56px 40px 72px; } }
@media (max-width: 600px) { .hero-inner { padding: 40px 24px 56px; } }

.hero-bridge .hero-text {
  padding: 0;
  max-width: 640px;
  display: block;
}
.hero-bridge .hero-text .eyebrow {
  color: var(--water);
  opacity: 0.95;
  margin-bottom: 28px;
}
.hero-bridge .hero-text h1 {
  color: #FBF7EF;
  font-weight: 500;
  letter-spacing: 0.002em;
  margin-bottom: 32px;
  text-shadow: 0 2px 28px rgba(10, 20, 36, 0.55), 0 1px 3px rgba(10, 20, 36, 0.35);
}
.hero-bridge .hero-text h1 em {
  font-weight: 500;
  color: #D9E0C8;
}
.hero-bridge .hero-text p {
  color: rgba(245, 241, 234, 0.94);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 44px;
  max-width: 520px;
  text-shadow: 0 1px 16px rgba(0,0,0,0.18);
}
.hero-bridge .hero-text p em {
  font-style: italic;
  color: var(--sage-pale);
}
.hero-bridge .hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-bridge .hero-phone {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(245, 241, 234, 0.78);
}
.hero-bridge .hero-phone a {
  color: var(--paper);
  border-bottom: 1px solid rgba(245, 241, 234, 0.45);
  padding-bottom: 2px;
}
.hero-bridge .hero-phone a:hover {
  color: var(--sage-pale);
  border-bottom-color: var(--sage-pale);
}
.hero-bridge .btn-solid {
  box-shadow: 0 8px 28px -10px rgba(0, 0, 0, 0.45);
}

.hero-caption {
  position: absolute;
  right: 28px;
  bottom: 22px;
  z-index: 3;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.55);
}
@media (max-width: 600px) {
  .hero-caption { right: 18px; bottom: 16px; font-size: 9px; }
}

/* Legacy two-column hero (kept for fallback / other pages) */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
  padding-top: 92px;
}
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; }
}
.hero-text {
  padding: 100px 80px 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
}
@media (max-width: 960px) { .hero-text { padding: 60px 40px 80px; } }
@media (max-width: 600px) { .hero-text { padding: 40px 24px 64px; } }
.hero-text h1 {
  font-weight: 500;
  margin-bottom: 32px;
  color: var(--navy);
}
.hero-text h1 em {
  color: var(--green);
}
.hero-text p {
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 44px;
  max-width: 460px;
  color: var(--charcoal);
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-phone {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--soft);
}
.hero-phone a {
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.hero-phone a:hover { color: var(--green); border-color: var(--green); }

.hero-image {
  position: relative;
  background: linear-gradient(140deg, var(--sage-pale) 0%, var(--sage) 100%);
  overflow: hidden;
}
@media (max-width: 960px) {
  .hero-image { aspect-ratio: 4/5; }
}
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,29,26,0) 60%, rgba(31,29,26,0.18) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-credentials {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 2;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.92;
}
.hero-credentials span {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  margin-bottom: 6px;
  opacity: 0.96;
}

/* INTRO BAND */
.intro {
  padding: 160px 0;
  text-align: center;
  background: var(--paper);
}
@media (max-width: 760px) { .intro { padding: 96px 0; } }
.intro h2 {
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
}
.intro h2 em {
  font-style: normal;
  color: var(--green);
}
.intro .ornament {
  width: 28px;
  height: 1px;
  background: var(--bridge-blue);
  margin: 0 auto 40px;
  opacity: 0.6;
}

/* APPROACH: fully typographic */
.approach {
  padding: 140px 0;
  background: var(--cream);
}
@media (max-width: 760px) { .approach { padding: 88px 0; } }
.approach-head {
  text-align: center;
  margin-bottom: 100px;
}
.approach-head h2 {
  color: var(--navy);
  max-width: 880px;
  margin: 0 auto;
}
.approach-rows {
  border-top: 1px solid var(--line);
}
.approach-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
@media (max-width: 760px) {
  .approach-row { grid-template-columns: 1fr; gap: 24px; padding: 56px 0; }
}
.approach-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  color: var(--bridge-blue);
  opacity: 0.85;
}
.approach-row h3 {
  margin-bottom: 24px;
  color: var(--navy);
}
.approach-text p {
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 640px;
}
.approach-text p:last-child { margin-bottom: 0; }
.approach-tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--bridge-blue);
  margin-bottom: 16px;
  display: inline-block;
}

/* PULL QUOTE */
.quote {
  padding: 160px 0;
  background: var(--paper);
  text-align: center;
}
@media (max-width: 760px) { .quote { padding: 96px 0; } }
.quote .ornament {
  width: 28px;
  height: 1px;
  background: var(--bridge-blue);
  margin: 0 auto 48px;
  opacity: 0.6;
}
.quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.35;
  color: var(--navy);
  max-width: 880px;
  margin: 0 auto 36px;
}
.quote cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--soft);
  font-weight: 500;
}

/* ABOUT (homepage preview) */
.about {
  padding: 160px 0;
  background: var(--paper);
}
@media (max-width: 760px) { .about { padding: 96px 0; } }
.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 100px;
  align-items: start;
}
.about-grid > div:not(.about-img-wrap) {
  padding-top: 20px;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
}
.about-img-wrap {
  aspect-ratio: 4/5;
  background: linear-gradient(140deg, #D8C9AC 0%, #C8B795 100%);
  position: relative;
  overflow: hidden;
}
.about-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.about h2 { margin-bottom: 28px; color: var(--navy); }
.about p {
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-creds {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
}
.about-cred {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}
.about-cred strong {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--bridge-blue);
  margin-bottom: 6px;
}
.about .link-underline { margin-top: 32px; }

/* WHO WE HELP */
.who { padding: 160px 0; background: var(--cream); }
@media (max-width: 760px) { .who { padding: 96px 0; } }
.who-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  margin-bottom: 72px;
  align-items: end;
}
@media (max-width: 880px) {
  .who-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}
.who-header h2 { color: var(--navy); }
.who-header p { font-size: 17px; line-height: 1.85; }
.who-list { border-top: 1px solid var(--line); }
.who-row {
  display: grid;
  grid-template-columns: 280px 1fr 40px;
  gap: 60px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding 220ms var(--ease), background 220ms var(--ease);
  cursor: pointer;
}
.who-row:hover {
  padding-left: 20px;
  padding-right: 20px;
  background: rgba(110, 138, 168, 0.06);
}
@media (max-width: 760px) {
  .who-row { grid-template-columns: 1fr; gap: 6px; padding: 28px 0; }
  .who-row:hover { padding-left: 0; padding-right: 0; }
  .who-row .arrow { display: none; }
}
.who-row h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin: 0;
}
.who-row p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0;
}
.who-row .arrow {
  font-size: 14px;
  color: var(--bridge-blue);
  transition: transform 220ms var(--ease), color 220ms var(--ease);
}
.who-row:hover .arrow {
  transform: translateX(6px);
  color: var(--green);
}

/* SPECIALTY */
.specialty {
  background: var(--sand);
  padding: 160px 0;
  text-align: center;
  position: relative;
}
@media (max-width: 760px) { .specialty { padding: 96px 0; } }
.specialty .container-narrow { max-width: 720px; }
.specialty h2 {
  margin-bottom: 32px;
  color: var(--navy);
}
.specialty p {
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 44px;
  color: var(--charcoal);
}
.specialty .ornament {
  width: 28px;
  height: 1px;
  background: var(--green);
  margin: 0 auto 36px;
  opacity: 0.7;
}

/* PRACTICAL */
.practical {
  padding: 160px 0;
  background: var(--paper);
}
@media (max-width: 760px) { .practical { padding: 96px 0; } }
.practical .section-head {
  text-align: center;
  margin-bottom: 72px;
}
.practical .section-head h2 { color: var(--navy); }
.practical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
@media (max-width: 760px) {
  .practical-grid { grid-template-columns: 1fr; gap: 48px; }
}
.practical-item {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.practical-item .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--bridge-blue);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.practical-item h3 {
  font-size: 26px;
  margin-bottom: 14px;
  color: var(--navy);
}
.practical-item p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--charcoal);
}
.practical-insurance {
  margin-top: 14px;
  font-size: 13px;
  color: var(--soft);
  line-height: 1.7;
}

/* FAQ */
.faq {
  padding: 140px 0;
  background: var(--paper);
}
@media (max-width: 760px) { .faq { padding: 88px 0; } }
.faq .section-head {
  text-align: center;
  margin-bottom: 64px;
}
.faq .section-head h2 {
  color: var(--navy);
  font-size: clamp(32px, 4.2vw, 48px);
}
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 40px 28px 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--navy);
  line-height: 1.35;
  position: relative;
  transition: color 200ms var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 300;
  color: var(--bridge-blue);
  transition: transform 280ms var(--ease), color 280ms var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--green);
}
.faq-item summary:hover {
  color: var(--green);
}
.faq-item summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}
.faq-answer {
  padding: 0 60px 32px 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal);
  max-width: 720px;
}
.faq-answer p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}
.faq-answer strong {
  color: var(--navy);
  font-weight: 500;
}

/* LOCATION CALLOUT (homepage) */
.location-callout {
  padding: 120px 0;
  background: var(--sand);
  text-align: center;
}
@media (max-width: 760px) { .location-callout { padding: 80px 0; } }
.location-callout h2 {
  color: var(--navy);
  margin-bottom: 24px;
  font-size: clamp(32px, 4vw, 48px);
}
.location-callout .address-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 24px);
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 400;
}
.location-callout .context-line {
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
  max-width: 540px;
  margin: 0 auto 36px;
}

/* FINAL CTA */
.final-cta {
  background: var(--navy);
  color: var(--paper);
  padding: 180px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 760px) { .final-cta { padding: 120px 0; } }
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(184, 203, 219, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(92, 122, 82, 0.10) 0%, transparent 50%);
  pointer-events: none;
}
.final-cta .ornament {
  width: 28px;
  height: 1px;
  background: var(--water);
  margin: 0 auto 36px;
  opacity: 0.5;
}
.final-cta h2 {
  color: var(--paper);
  margin-bottom: 24px;
  font-weight: 500;
  position: relative;
}
.final-cta p {
  color: rgba(245, 241, 234, 0.78);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto 56px;
  line-height: 1.75;
  position: relative;
}
.final-cta .btn { position: relative; }

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(245, 241, 234, 0.7);
  padding: 96px 0 40px;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.footer-brand img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.92);
  margin-bottom: 20px;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(245, 241, 234, 0.85);
  line-height: 1.5;
  font-weight: 300;
  max-width: 280px;
}
footer h4 {
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--sage);
  margin-bottom: 20px;
  font-weight: 500;
}
footer ul { list-style: none; }
footer li { margin-bottom: 10px; line-height: 1.7; }
footer a {
  color: rgba(245, 241, 234, 0.7);
  transition: color 200ms var(--ease);
}
footer a:hover { color: var(--paper); }
.crisis {
  background: rgba(184, 203, 219, 0.08);
  border-left: 2px solid var(--water);
  padding: 18px 24px;
  margin-bottom: 40px;
  font-size: 13px;
  color: rgba(245, 241, 234, 0.82);
  line-height: 1.7;
}
.crisis strong { color: var(--paper); font-weight: 500; }
.footer-bottom {
  border-top: 1px solid rgba(245, 241, 234, 0.10);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(245, 241, 234, 0.48);
  letter-spacing: 0.04em;
}

/* Motion: subtle scroll reveals */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Skip to content */
.skip-link {
  position: absolute;
  left: 0;
  top: 0;
  padding: 12px 18px;
  background: var(--navy);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  z-index: 999;
  transform: translateY(-120%);
  transition: transform 200ms var(--ease);
}
.skip-link:focus { transform: translateY(0); color: var(--paper); }

/* ============================================
   PAGE-SPECIFIC: ABOUT
   ============================================ */

/* About hero — two-column portrait + text */
.about-hero {
  padding: 160px 0 100px;
  background: var(--paper);
}
@media (max-width: 760px) { .about-hero { padding: 124px 0 72px; } }

.about-hero-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 880px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 56px; }
}

.about-hero-img {
  aspect-ratio: 4/5;
  background: linear-gradient(140deg, #B9C3A4 0%, #8FA379 100%);
  position: relative;
  overflow: hidden;
}
.about-hero-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.about-hero-text h1 {
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 28px;
  font-size: clamp(40px, 5.6vw, 72px);
}
.about-hero-text h1 i {
  color: var(--green);
  font-size: 0.7em;
  letter-spacing: 0.03em;
}
.about-hero-text .subhead {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 36px;
  max-width: 480px;
}

.quick-creds {
  list-style: none;
  padding: 28px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.quick-creds li {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  padding: 8px 0;
  position: relative;
  padding-left: 22px;
}
.quick-creds li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 1px;
  background: var(--bridge-blue);
}

/* Long-form bio */
.bio {
  padding: 120px 0;
  background: var(--cream);
}
@media (max-width: 760px) { .bio { padding: 80px 0; } }
.bio .eyebrow { display: block; text-align: center; }
.bio h2 {
  text-align: center;
  color: var(--navy);
  margin-bottom: 64px;
  font-size: clamp(36px, 4.6vw, 56px);
}
@media (max-width: 760px) { .bio h2 { margin-bottom: 40px; } }

.bio-body p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 24px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.bio-body p:last-child { margin-bottom: 0; }
.bio-body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  line-height: 0.85;
  float: left;
  margin: 8px 12px 0 0;
  color: var(--navy);
}
@media (max-width: 600px) {
  .bio-body p:first-of-type::first-letter { font-size: 48px; }
}

/* Credentials list */
.credentials {
  padding: 140px 0;
  background: var(--paper);
}
@media (max-width: 760px) { .credentials { padding: 88px 0; } }
.credentials .section-head {
  text-align: center;
  margin-bottom: 64px;
}
.credentials .section-head h2 {
  color: var(--navy);
  font-size: clamp(32px, 4.2vw, 48px);
}
.creds-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.cred-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
@media (max-width: 760px) {
  .cred-row { grid-template-columns: 1fr; gap: 6px; padding: 24px 0; }
}
.cred-row dt {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--bridge-blue);
}
.cred-row dd {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
}
.cred-row dd .cred-meta {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

/* In her words variant (sage background) */
.in-her-words {
  background: rgba(157, 166, 140, 0.18);
}
.in-her-words .eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 32px;
}
.in-her-words .ornament {
  background: var(--green);
  opacity: 0.7;
}

/* ============================================
   PAGE-SPECIFIC: CONTACT
   ============================================ */

/* Page hero (single-column variant) */
.page-hero {
  padding: 180px 0 100px;
  background: var(--paper);
  text-align: center;
}
@media (max-width: 760px) { .page-hero { padding: 140px 0 72px; } }
.page-hero .ornament {
  width: 28px;
  height: 1px;
  background: var(--bridge-blue);
  margin: 0 auto 32px;
  opacity: 0.6;
}
.page-hero h1 {
  color: var(--navy);
  margin-bottom: 28px;
  font-size: clamp(48px, 6.4vw, 84px);
}
.page-hero p {
  font-size: 18px;
  line-height: 1.85;
  max-width: 580px;
  margin: 0 auto;
  color: var(--charcoal);
}

/* Booking section: SimplePractice link-out card */
.booking {
  padding: 80px 0 140px;
  background: var(--paper);
}
@media (max-width: 760px) { .booking { padding: 56px 0 88px; } }
.booking-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 64px 72px;
  text-align: center;
  position: relative;
}
@media (max-width: 760px) {
  .booking-card { padding: 48px 32px; }
}
.booking-card .consult-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--green);
  background: rgba(92, 122, 82, 0.10);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.booking-card h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 18px;
  color: var(--navy);
}
.booking-card p {
  font-size: 17px;
  line-height: 1.8;
  margin: 0 auto 36px;
  max-width: 540px;
  color: var(--charcoal);
}
.booking-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.booking-card .meta {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 12px;
  color: var(--soft);
  letter-spacing: 0.06em;
}

/* Secondary (smaller, demoted) booking card */
.booking-secondary {
  padding: 40px 0 100px;
  background: var(--paper);
}
@media (max-width: 760px) { .booking-secondary { padding: 24px 0 72px; } }
.booking-secondary .booking-card {
  background: transparent;
  border: 1px solid var(--line);
  padding: 36px 48px;
  max-width: 640px;
}
@media (max-width: 760px) {
  .booking-secondary .booking-card { padding: 28px 24px; }
}
.booking-secondary .booking-card .eyebrow {
  color: var(--soft);
  margin-bottom: 14px;
}
.booking-secondary .booking-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 26px);
  color: var(--navy);
  margin-bottom: 10px;
}
.booking-secondary .booking-card p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 auto 20px;
  max-width: 460px;
  color: var(--charcoal);
}
.booking-secondary .booking-actions {
  gap: 16px;
}
.booking-secondary .booking-sep {
  color: var(--line);
  font-size: 11px;
}

/* Divider between booking and form */
.contact-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
  color: var(--soft);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.contact-divider::before, .contact-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Form section */
.contact-form-section {
  padding: 80px 0 140px;
  background: var(--paper);
}
@media (max-width: 760px) { .contact-form-section { padding: 56px 0 88px; } }
.contact-form-section .section-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}
.contact-form-section h2 {
  color: var(--navy);
  margin-bottom: 20px;
  font-size: clamp(28px, 3.4vw, 38px);
}
.contact-form-section .section-head p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal);
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 600px) {
  .field-row { grid-template-columns: 1fr; gap: 28px; }
}
.field label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--bridge-blue);
}
.field input, .field textarea, .field select {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 12px;
  transition: border-color 200ms var(--ease);
  width: 100%;
}
.field input:hover, .field textarea:hover {
  border-bottom-color: var(--bridge-blue);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--navy);
  border-bottom-width: 1px;
}
.field input::placeholder, .field textarea::placeholder {
  color: var(--soft);
  font-style: italic;
  opacity: 0.7;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
}
.field-note {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--soft);
  line-height: 1.6;
  margin-top: -8px;
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.form-disclaimer {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--soft);
  line-height: 1.6;
  max-width: 380px;
}

/* Other ways to reach */
.other-ways {
  padding: 120px 0;
  background: var(--cream);
}
@media (max-width: 760px) { .other-ways { padding: 88px 0; } }
.other-ways .section-head {
  text-align: center;
  margin-bottom: 64px;
}
.other-ways h2 {
  color: var(--navy);
  font-size: clamp(28px, 3.4vw, 38px);
}
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .ways-grid { grid-template-columns: 1fr; gap: 48px; }
}
.way {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.way .label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--bridge-blue);
  margin-bottom: 16px;
  display: block;
}
.way .value {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--navy);
  line-height: 1.4;
  display: block;
}
.way .value a {
  color: var(--navy);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease);
}
.way .value a:hover {
  border-bottom-color: var(--green);
  color: var(--green);
}
.way .sub {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--soft);
  margin-top: 10px;
  line-height: 1.6;
}

/* Map / office */
.office {
  background: var(--paper);
  padding: 120px 0;
}
@media (max-width: 760px) { .office { padding: 88px 0; } }
.office-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 880px) {
  .office-grid { grid-template-columns: 1fr; gap: 48px; }
}
.office-info h2 {
  color: var(--navy);
  margin-bottom: 28px;
  font-size: clamp(28px, 3.4vw, 38px);
}
.office-info p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.office-info .address {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.5;
  margin: 32px 0;
}
.office-map {
  aspect-ratio: 4/3;
  background: var(--sand);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.office-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(0.95);
}

/* Crisis prominent block (contact page) */
.crisis-page {
  background: var(--cream);
  padding: 80px 0 120px;
}
.crisis-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--paper);
  border-left: 3px solid var(--bridge-blue);
  padding: 40px 48px;
}
@media (max-width: 760px) {
  .crisis-card { padding: 32px 28px; }
}
.crisis-card .label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--bridge-blue);
  margin-bottom: 14px;
  display: block;
}
.crisis-card h3 {
  color: var(--navy);
  margin-bottom: 18px;
  font-size: 24px;
}
.crisis-card p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
}
.crisis-card strong {
  color: var(--navy);
  font-weight: 500;
}

/* ============================================
   LEGAL / NOTICE PAGES
   ============================================ */
.legal-hero {
  padding: 180px 0 72px;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
}
.legal-hero h1 {
  color: var(--navy);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.08;
  margin-bottom: 20px;
}
.legal-hero .subhead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--charcoal);
  max-width: 620px;
}
.legal-meta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--soft);
}
.legal-meta span { display: inline-block; margin-right: 28px; }
.legal-meta strong { color: var(--charcoal); font-weight: 500; }

.legal {
  padding: 88px 0 120px;
  background: var(--cream);
}
.legal-body h2 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  margin: 64px 0 22px;
}
.legal-body > h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 38px 0 14px;
}
.legal-body p,
.legal-body li {
  font-size: 17px;
  line-height: 1.85;
  color: var(--charcoal);
}
.legal-body p { margin-bottom: 22px; }
.legal-body ul,
.legal-body ol { margin: 0 0 24px; padding-left: 22px; }
.legal-body li { margin-bottom: 12px; padding-left: 6px; }
.legal-body ul { list-style: none; padding-left: 0; }
.legal-body ul > li { position: relative; padding-left: 24px; }
.legal-body ul > li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 13px;
  width: 7px;
  height: 1px;
  background: var(--bridge-blue);
}
.legal-body strong { color: var(--navy); font-weight: 500; }
.legal-body a {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal-body a:hover { color: var(--navy); }

.legal-callout {
  background: var(--paper);
  border-left: 2px solid var(--bridge-blue);
  padding: 28px 32px;
  margin: 34px 0;
}
.legal-callout p:last-child { margin-bottom: 0; }
.legal-callout p { font-size: 16px; }

.legal-contact {
  margin-top: 20px;
  padding: 28px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.legal-contact p { margin-bottom: 6px; font-size: 16px; }
.legal-contact p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
  .legal-hero { padding: 140px 0 56px; }
  .legal { padding: 64px 0 88px; }
  .legal-body h2 { margin-top: 48px; }
  .legal-callout, .legal-contact { padding: 22px 20px; }
  .legal-meta span { display: block; margin: 0 0 8px; }
}

/* ============================================
   SECURE INTAKE EMBED (SimplePractice)
   ============================================ */
.sp-embed-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 1px 3px rgba(31, 29, 26, 0.04);
  overflow: hidden;
}
.sp-embed-wrap::before {
  content: "Loading secure form\2026";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 120px;
  text-align: center;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--soft);
}
.sp-embed {
  position: relative;
  display: block;
  width: 100%;
  height: 1250px;
  border: 0;
}
.sp-fallback {
  max-width: 860px;
  margin: 20px auto 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--soft);
}
.sp-fallback a {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sp-fallback a:hover { color: var(--navy); }
.sp-disclaimer {
  max-width: 860px;
  margin: 14px auto 0;
  text-align: center;
}
@media (max-width: 700px) {
  .sp-embed { height: 1720px; }
}

/* ============================================
   SERVICE / POPULATION PAGES
   ============================================ */

/* Jump nav */
.jump-nav {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 20px 0;
}
.jump-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 34px;
}
.jump-nav a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--charcoal);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.jump-nav a:hover { color: var(--navy); border-bottom-color: var(--bridge-blue); }

/* Age blocks */
.ages { padding: 110px 0; background: var(--cream); }
.age-block {
  max-width: 760px;
  margin: 0 auto 76px;
  padding-bottom: 76px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}
.age-block:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.age-block .age-range {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--bridge-blue);
  display: block;
  margin-bottom: 16px;
}
.age-block h2 {
  color: var(--navy);
  font-size: clamp(30px, 3.6vw, 42px);
  margin-bottom: 22px;
}
.age-block > p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.age-issues {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px;
}
.age-issues li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
}
.age-issues li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 1px;
  background: var(--sage);
}
.age-cue {
  background: var(--paper);
  border-left: 2px solid var(--green);
  padding: 20px 26px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
}
.age-cue strong { color: var(--navy); font-weight: 500; }

/* Concern cards */
.concerns { padding: 110px 0; background: var(--paper); }
.concern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.concern-card {
  display: block;
  background: #FBF8F1;
  border: 1px solid var(--line);
  border-top: 2px solid var(--bridge-blue);
  padding: 30px 28px;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.concern-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.concern-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0;
}
a.concern-card:hover { border-color: var(--bridge-blue); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(31, 29, 26, 0.06); }
.concern-card .card-more {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green-deep);
}

/* Modality cards */
.modalities { padding: 110px 0; background: var(--paper); }
.modality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.modality-card {
  background: #FBF8F1;
  border: 1px solid var(--line);
  border-top: 2px solid var(--bridge-blue);
  padding: 32px 30px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.modality-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(31, 29, 26, 0.06);
}
.modality-card .mod-abbr {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--navy);
  background: var(--water);
  padding: 5px 10px;
  margin-bottom: 16px;
}
.modality-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: 0.01em;
}
.modality-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--charcoal);
  margin: 0;
}

/* Session steps */
.steps { padding: 110px 0; background: var(--cream); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.step { border-top: 2px solid var(--bridge-blue); padding-top: 26px; }
.step .step-num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bridge-blue);
  display: block;
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 14px;
}
.step p { font-size: 16px; line-height: 1.78; color: var(--charcoal); margin-bottom: 14px; }
.step p:last-child { margin-bottom: 0; }
.step .step-meta {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--soft);
}

/* Sand band callout */
.band-sand {
  background: var(--sand);
  padding: 96px 0;
  text-align: center;
}
.band-sand h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 24px;
  line-height: 1.15;
}
.band-sand p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--charcoal);
  max-width: 660px;
  margin: 0 auto 34px;
}

/* Long-form prose block reused on specialty pages */
.prose { padding: 104px 0; }
.prose.on-cream { background: var(--cream); }
.prose.on-paper { background: var(--paper); }
.prose h2 {
  color: var(--navy);
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 26px;
  line-height: 1.18;
}
.prose h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 34px 0 14px;
  letter-spacing: 0.02em;
}
.prose p {
  font-size: 17.5px;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 22px;
}
.prose p:last-child { margin-bottom: 0; }
.prose ul { list-style: none; margin: 0 0 26px; padding: 0; }
.prose ul li {
  position: relative;
  padding-left: 24px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 14px;
  width: 7px;
  height: 1px;
  background: var(--bridge-blue);
}
.prose strong { color: var(--navy); font-weight: 500; }

@media (max-width: 900px) {
  .concern-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 700px) {
  .modality-grid { grid-template-columns: 1fr; }
  .concern-grid { grid-template-columns: 1fr; }
  .age-issues { grid-template-columns: 1fr; }
  .ages, .concerns, .modalities, .steps { padding: 72px 0; }
  .prose { padding: 72px 0; }
  .band-sand { padding: 72px 0; }
  .age-block { margin-bottom: 52px; padding-bottom: 52px; }
}

/* ============================================
   RESOURCES / ARTICLES
   ============================================ */

/* Keep a 5-item nav from crowding just above the mobile breakpoint */
@media (max-width: 1100px) and (min-width: 881px) {
  .nav-links { gap: 26px; }
}

/* Index */
.resource-list { padding: 96px 0 120px; background: var(--cream); }
.resource-item {
  display: block;
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.resource-item:first-child { padding-top: 0; }
.resource-item:last-child { border-bottom: 0; padding-bottom: 0; }
.resource-item .r-meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bridge-blue);
  display: block;
  margin-bottom: 14px;
}
.resource-item h2 {
  color: var(--navy);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  margin-bottom: 14px;
  transition: color 0.3s var(--ease);
}
a.resource-item:hover h2 { color: var(--green-deep); }
.resource-item p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.resource-item .r-more {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green-deep);
}

/* Article */
.article-hero {
  padding: 176px 0 68px;
  background: var(--paper);
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}
.article-hero h1 {
  color: var(--navy);
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.12;
  margin-bottom: 22px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.article-hero .dek {
  font-size: 19px;
  line-height: 1.7;
  color: var(--charcoal);
  max-width: 620px;
  margin: 0 auto 30px;
}
.article-meta {
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--soft);
}
.article-meta span + span::before { content: "·"; margin: 0 12px; color: var(--line); }

.article { padding: 84px 0 104px; background: var(--cream); }
.article-body { max-width: 680px; margin: 0 auto; }
.article-body h2 {
  color: var(--navy);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.22;
  margin: 58px 0 20px;
}
.article-body > h2:first-child { margin-top: 0; }
.article-body h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin: 36px 0 14px;
}
.article-body p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.article-body ul, .article-body ol { margin: 0 0 26px; padding: 0 0 0 4px; }
.article-body ul { list-style: none; }
.article-body ul li {
  position: relative;
  padding-left: 26px;
  font-size: 17.5px;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 13px;
}
.article-body ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 14px;
  width: 8px;
  height: 1px;
  background: var(--bridge-blue);
}
.article-body ol { padding-left: 22px; }
.article-body ol li {
  font-size: 17.5px;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 13px;
  padding-left: 6px;
}
.article-body strong { color: var(--navy); font-weight: 500; }
.article-body a {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.article-body a:hover { color: var(--navy); }

/* Pull quote — Sage band, breaks the column */
.pullquote {
  background: var(--sage-pale);
  margin: 52px calc(50% - 50vw);
  padding: 56px calc(50vw - 50% + 0px);
  text-align: center;
}
.pullquote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.38;
  color: var(--navy-deep);
  max-width: 680px;
  margin: 0 auto;
}

.article-note {
  background: var(--paper);
  border-left: 2px solid var(--bridge-blue);
  padding: 26px 30px;
  margin: 40px 0;
}
.article-note p { font-size: 16px; margin-bottom: 12px; }
.article-note p:last-child { margin-bottom: 0; }

.article-cta {
  max-width: 680px;
  margin: 64px auto 0;
  padding-top: 44px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.article-cta h3 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 16px;
}
.article-cta p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 26px;
}

@media (max-width: 700px) {
  .article-hero { padding: 140px 0 52px; }
  .article { padding: 60px 0 80px; }
  .resource-list { padding: 64px 0 84px; }
  .pullquote { padding: 40px 24px; }
  .article-body h2 { margin-top: 44px; }
}

/* ============================================
   PHOTO BAND (deep-page imagery)
   ============================================ */
.photo-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--sand);
  min-height: 380px;
}
.photo-band .pb-img { position: relative; overflow: hidden; }
.photo-band .pb-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-band .pb-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
}
.photo-band .pb-txt h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 34px);
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 18px;
  max-width: 480px;
}
.photo-band .pb-txt p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal);
  margin: 0;
  max-width: 460px;
}
@media (max-width: 700px) {
  .photo-band { grid-template-columns: 1fr; }
  .photo-band .pb-img { min-height: 240px; }
  .photo-band .pb-txt { padding: 44px 28px; }
}
