/* ============================================================
   CARIAD COUNSELLING — style.css
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --cream:        #FAF8F4;
  --linen:        #F2EDE6;
  --linen-deep:   #E8E0D4;
  --sage:         #8FAF9F;
  --sage-dark:    #6A9482;
  --sage-light:   #C8DAD2;
  --terracotta:   #C9A090;
  --text:         #3C3028;
  --text-muted:   #9C8E82;
  --white:        #FFFFFF;
  --border:       #E2D8CC;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;

  --nav-h:        82px;
  --max-w:        1160px;
  --radius:       6px;
  --radius-lg:    14px;
  --transition:   0.22s ease;
}

/* ── Material Symbols ──────────────────────────────────────── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 200, 'OPSZ' 24, 'GRAD' 0;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  user-select: none;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.65rem); font-weight: 400; }
em { font-style: italic; }

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
}
.section          { padding: 5.5rem 0; }
.section--white   { background: var(--white); }
.section--linen   { background: var(--linen); }
.section--cream   { background: var(--cream); }

/* ── Utility ───────────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.6rem;
}
.section-label .material-symbols-outlined {
  font-size: 0.95rem;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'OPSZ' 20, 'GRAD' 0;
  letter-spacing: 0;
}
.section-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 54ch;
  line-height: 1.8;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.9rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 400;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn--primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn--primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 148, 130, 0.3);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--text-muted);
  background: var(--linen);
}
.btn--lg { padding: 0.88rem 2.4rem; font-size: 0.95rem; }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 16px rgba(60, 48, 40, 0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav__logo-icon {
  height: 46px;
  width: auto;
  flex-shrink: 0;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1;
}
.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 1.15;
}
.nav__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: lowercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav__links a:hover,
.nav__links a.active { color: var(--text); }
.nav__cta {
  background: var(--sage) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-size: 0.85rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav__cta:hover {
  background: var(--sage-dark) !important;
  transform: translateY(-1px);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 23px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.5rem 2.5rem;
  flex-direction: column;
  gap: 0;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(60, 48, 40, 0.08);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--sage-dark); }
.nav__mobile .nav__cta {
  margin-top: 1.2rem;
  text-align: center;
  justify-content: center;
  border-bottom: none;
  padding: 0.75rem 1.5rem !important;
  font-size: 0.95rem !important;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 62% 38%;
  padding-top: var(--nav-h);
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem max(1.5rem, calc((100vw - var(--max-w)) / 2 + 1.5rem));
  padding-right: 4rem;
}
.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1.2rem;
}
.hero__title {
  margin-bottom: 1.4rem;
  line-height: 1.15;
}
.hero__title em {
  color: var(--sage-dark);
  font-style: italic;
}
.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 2.75rem;
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.hero__image {
  position: relative;
  overflow: hidden;
  background: var(--linen);
  border-radius: 120px 0 0 0;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust {
  background: var(--linen);
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  padding: 0 1.5rem;
}
.trust__item + .trust__item {
  border-left: 1px solid var(--border);
}
.trust__icon {
  font-size: 2.1rem;
  color: var(--sage);
  flex-shrink: 0;
}
.trust__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.trust__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ── Overview Cards ────────────────────────────────────────── */
.overview__intro { margin-bottom: 3rem; }
.overview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.overview__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--sage);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 2.25rem;
  transition: box-shadow var(--transition);
}
.overview__card:hover {
  box-shadow: 0 4px 20px rgba(60, 48, 40, 0.07);
}
.overview__card .card-icon {
  font-size: 2rem;
  color: var(--sage);
  margin-bottom: 1rem;
  display: block;
}
.overview__card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}
.overview__card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.overview__card a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--sage-dark);
  border-bottom: 1px solid var(--sage-light);
  padding-bottom: 1px;
  transition: border-color var(--transition);
}
.overview__card a:hover { border-color: var(--sage-dark); }

/* ── About Teaser ──────────────────────────────────────────── */
.about-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-teaser__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.about-teaser__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.about-teaser__text h2 { margin-bottom: 1.25rem; }
.about-teaser__text p { color: var(--text-muted); font-size: 0.975rem; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--sage-dark);
  border-bottom: 1px solid var(--sage-light);
  padding-bottom: 2px;
  transition: border-color var(--transition), gap var(--transition);
}
.text-link:hover { border-color: var(--sage-dark); gap: 0.6rem; }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: var(--linen);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5.5rem 0;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p {
  color: var(--text-muted);
  max-width: 50ch;
  margin: 0 auto 2.25rem;
  font-size: 1rem;
}
.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.cta-banner__note {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.cta-banner__note a {
  color: var(--sage-dark);
  border-bottom: 1px solid var(--sage-light);
  transition: border-color var(--transition);
}
.cta-banner__note a:hover { border-color: var(--sage-dark); }

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 3.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 0.85rem; }
.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 56ch;
  margin: 0;
  line-height: 1.75;
}

/* ── About Page ────────────────────────────────────────────── */
.about-main__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}
.about-main__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.about-main__image img { width: 100%; height: auto; }

.about-main__content h2 { margin-bottom: 1.1rem; }
.about-main__content p { color: var(--text-muted); font-size: 0.975rem; }

.qualifications {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.qual-tag {
  background: var(--linen);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
}

.approach__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.approach__card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.approach__card .card-icon {
  font-size: 1.75rem;
  color: var(--sage);
  margin-bottom: 0.75rem;
  display: block;
}
.approach__name {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.45rem;
}
.approach__card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Services Page ─────────────────────────────────────────── */
.service-block {
  padding: 5.5rem 0;
}
.service-block + .service-block {
  border-top: 1px solid var(--border);
}
.service__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}
.service__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.service__content h2 { margin-bottom: 1rem; }
.service__content > p { color: var(--text-muted); font-size: 0.975rem; margin-bottom: 1.5rem; }

.issue-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.issue-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.issue-list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 0.55em;
}

.outcomes-box {
  background: var(--linen);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.5rem;
  margin-bottom: 2rem;
}
.outcomes-box__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1.5rem;
}
.outcomes-box__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
.outcome-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.outcome-item__num {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
  padding-top: 0.05em;
}
.outcome-item__text {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.55;
}

/* ── Pricing ───────────────────────────────────────────────── */
.pricing-section {
  padding: 5.5rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 680px;
  margin: 2.75rem auto 0;
}
.pricing__card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem 2.5rem;
  text-align: center;
  background: var(--cream);
}
.pricing__type {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}
.pricing__amount {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.pricing__session {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.pricing__details {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.pricing__concession {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.pricing__concession a {
  color: var(--sage-dark);
  border-bottom: 1px solid var(--sage-light);
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.975rem;
  font-weight: 400;
  color: var(--text);
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--sage-dark); }
.faq-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--sage);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer__inner {
  padding-bottom: 1.35rem;
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.8;
}

/* ── Crisis Support ────────────────────────────────────────── */
.crisis { padding: 5.5rem 0; background: var(--linen); border-top: 1px solid var(--border); }
.crisis__note {
  background: #FFF6F3;
  border: 1px solid #EDD5CC;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 640px;
  line-height: 1.65;
}
.crisis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.crisis-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.crisis-card__name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.crisis-card .card-icon {
  font-size: 1.5rem;
  color: var(--sage);
  margin-bottom: 0.6rem;
  display: block;
}
.crisis-card__number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--sage-dark);
  margin-bottom: 0.3rem;
}
.crisis-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ── Contact Page ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 5rem;
  align-items: start;
}
.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 1.75rem;
  font-weight: 400;
}
.form-row { margin-bottom: 1.25rem; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
input, select, textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.925rem;
  font-weight: 300;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--sage); }
textarea { resize: vertical; min-height: 140px; }
.form-submit { margin-top: 0.5rem; width: 100%; border: none; cursor: pointer; }

.contact-info {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  padding: 2rem;
  background: var(--linen);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.info-item { margin-bottom: 1.75rem; }
.info-item:last-child { margin-bottom: 0; }
.info-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.info-label .material-symbols-outlined {
  font-size: 1rem;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'OPSZ' 20, 'GRAD' 0;
}
.info-value {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
}
.info-value a {
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition);
}
.info-value a:hover { border-color: var(--text-muted); }
.contact-note {
  background: #FFF6F3;
  border: 1px solid #EDD5CC;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 1.5rem;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--linen-deep);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2.5rem;
}
.footer__main {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1.2fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer__logo-icon { height: 44px; width: auto; flex-shrink: 0; }
.footer__logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 1.15;
}
.footer__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: lowercase;
}
.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 28ch;
}
.footer__heading {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--text); }
.footer__crisis {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.footer__crisis strong { color: var(--text); font-weight: 400; }
.footer__crisis a {
  color: var(--text-muted);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.footer__crisis a:hover { border-color: var(--text-muted); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer__bottom-links {
  display: flex;
  gap: 1.25rem;
}
.footer__bottom-links a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__bottom-links a:hover { color: var(--text); }

/* ── Thank You Page ────────────────────────────────────────── */
.thankyou-section {
  min-height: calc(100vh - var(--nav-h) - 280px);
  display: flex;
  align-items: center;
  padding: 6rem 0;
  background: var(--white);
}
.thankyou-icon {
  font-size: 3rem;
  color: var(--terracotta);
  display: block;
  margin: 0 auto 1.5rem;
  font-variation-settings: 'FILL' 1, 'wght' 200, 'OPSZ' 48, 'GRAD' 0;
}
.thankyou-section h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}
.thankyou-section p {
  color: var(--text-muted);
  font-size: 1rem;
}
.thankyou-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ── Policy Pages ──────────────────────────────────────────── */
.policy-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.policy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.policy-row:last-child { border-bottom: none; }
.policy-row__scenario {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
}
.policy-row__scenario .material-symbols-outlined {
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--text-muted);
}
.policy-row__fee {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 0.3rem 0.9rem;
  border-radius: 99px;
}
.policy-row__fee--nil   { background: #E8F4EE; color: #2E7D52; }
.policy-row__fee--half  { background: #FFF3E0; color: #B45309; }
.policy-row__fee--full  { background: #FDE8E8; color: #B91C1C; }

/* ── Pricing Rebate ────────────────────────────────────────── */
.pricing__rebate {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 560px;
  margin: 1.5rem auto 0;
  padding: 1.1rem 1.4rem;
  background: var(--linen);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.pricing__rebate .material-symbols-outlined {
  color: var(--sage-dark);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.pricing__rebate strong { color: var(--text); font-weight: 400; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__main { grid-template-columns: 1fr 1fr; }
  .about-main__grid { gap: 3.5rem; }
  .service__grid { gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 72px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  /* Keep CTA compact on mobile */
  .nav__cta {
    padding: 0.45rem 1rem !important;
    font-size: 0.78rem !important;
  }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__image { order: -1; height: 60vw; min-height: 300px; }
  .hero__content { padding: 3rem 1.5rem 3.5rem; }
  .hero__content { padding-right: 1.5rem; }

  .trust__grid { grid-template-columns: 1fr; }
  .trust__item + .trust__item { border-left: none; border-top: 1px solid var(--border); padding-top: 1.5rem; }
  .overview__grid { grid-template-columns: 1fr; }
  .about-teaser__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-main__grid { grid-template-columns: 1fr; }
  .about-main__image { position: static; }
  .approach__grid { grid-template-columns: 1fr; }
  .service__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service__image { position: static; aspect-ratio: 3 / 2; }
  .outcomes-box__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 360px; }
  .crisis-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info { position: static; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 520px) {
  .section { padding: 4rem 0; }
  .crisis-grid { grid-template-columns: 1fr; }
  .cta-banner__actions { flex-direction: column; }
  .footer__main { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  /* Hide logo text on very small phones — icon alone is enough */
  .nav__logo-text { display: none; }
  .nav__logo-icon { height: 36px; }
  .nav__cta {
    padding: 0.4rem 0.85rem !important;
    font-size: 0.75rem !important;
  }
}
