/* ==========================================================================
   Sijo Psychology & Wellness Associates
   Direction: clean clinical. Healthcare practice site that converts.
   Type: Hanken Grotesk (body / UI) + Fraunces (display, sparingly).
   ========================================================================== */

:root {
  /* Brand palette */
  --ink:        #1A2332;
  --ink-soft:   #2B3445;
  --ivory:      #F4EFE6;
  --ivory-2:    #FAF6EC;
  --paper:      #FFFFFF;
  --rose:       #B87B6E;
  --rose-deep:  #955F4F;
  --sage:       #8A9288;
  --sage-deep:  #6D746A;
  --char:       #2B2B2B;

  --rule:       rgba(26, 35, 50, 0.10);
  --rule-soft:  rgba(26, 35, 50, 0.06);

  --shadow-sm:  0 1px 2px rgba(26, 35, 50, 0.04), 0 1px 1px rgba(26, 35, 50, 0.06);
  --shadow:     0 8px 24px -8px rgba(26, 35, 50, 0.12), 0 2px 6px -2px rgba(26, 35, 50, 0.06);
  --shadow-lg:  0 24px 56px -16px rgba(26, 35, 50, 0.18), 0 6px 14px -4px rgba(26, 35, 50, 0.08);

  --r-sm:       6px;
  --r:          10px;
  --r-lg:       18px;

  --font:       'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --serif:      'Fraunces', Georgia, 'Times New Roman', serif;

  --maxw:       1240px;
  --pad:        clamp(20px, 4vw, 56px);

  --section-y:  clamp(64px, 7vw, 104px);
}

/* ----------- Reset ----------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern' on, 'liga' on, 'ss01' on;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
strong { font-weight: 600; }
:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; border-radius: 2px; }

/* ----------- Type primitives ----------- */

.eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 18px;
}
.eyebrow--light { color: rgba(244, 239, 230, 0.78); }

.section__head {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section__head--inset { margin-left: 0; }
.section__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 18px;
  font-variation-settings: 'opsz' 96;
  text-wrap: balance;
}
.section__lede {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.55;
  color: var(--sage-deep);
  max-width: 60ch;
}

/* ----------- Buttons & link-arrows ----------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1;
  border: 1px solid transparent;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 14px; height: 14px; }
.btn--lg { height: 56px; padding: 0 28px; font-size: 15.5px; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--ink-soft);
  box-shadow: var(--shadow);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(26, 35, 50, 0.22);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.link-arr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--ink);
  padding: 2px 0;
  border-bottom: 1.5px solid var(--rose);
  transition: gap 180ms ease, color 180ms ease, border-color 180ms ease;
}
.link-arr:hover { gap: 12px; color: var(--rose-deep); border-color: var(--rose-deep); }
.link-arr svg { width: 13px; height: 13px; color: var(--rose); }

/* ----------- Utility bar ----------- */

.util {
  background: var(--ink);
  color: rgba(244, 239, 230, 0.85);
  font-size: 13px;
}
.util__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.util__crisis {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ivory);
  font-weight: 500;
}
.util__crisis strong { color: #F2C9A8; font-weight: 700; letter-spacing: 0.01em; }
.util__crisis:hover strong { color: var(--ivory); }
.util__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 3px rgba(184, 123, 110, 0.25);
}
.util__right { display: inline-flex; align-items: center; gap: 14px; }
.util__accept {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(244, 239, 230, 0.78);
}
.util__check {
  width: 13px; height: 13px;
  color: #9CC59A;
}
.util__sep { color: rgba(244, 239, 230, 0.3); }
.util__phone {
  color: var(--ivory);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  transition: color 160ms ease;
}
.util__phone:hover { color: #F2C9A8; }

/* ----------- Header ----------- */

.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--rule);
}
.hdr__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  height: 80px;
}
.hdr__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.hdr__mark {
  width: 30px;
  height: 30px;
  color: var(--rose);
}
.hdr__name {
  display: inline-flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  font-variation-settings: 'opsz' 28;
}
.hdr__name small {
  font-family: var(--font);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-top: 4px;
  letter-spacing: 0.06em;
}
.hdr__nav {
  display: inline-flex;
  gap: 28px;
  justify-self: center;
}
.hdr__nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.005em;
  position: relative;
  padding: 6px 0;
  transition: color 160ms ease;
}
.hdr__nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}
.hdr__nav a:hover { color: var(--rose-deep); }
.hdr__nav a:hover::after { transform: scaleX(1); }

.hdr__cta { box-shadow: var(--shadow-sm); }

/* hamburger */
.hdr__burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  position: relative;
  flex-shrink: 0;
}
.hdr__burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 240ms ease, opacity 200ms ease, top 200ms ease;
}
.hdr__burger span:nth-child(1) { top: 14px; }
.hdr__burger span:nth-child(2) { top: 20px; }
.hdr__burger span:nth-child(3) { top: 26px; }
.hdr__burger[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.hdr__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hdr__burger[aria-expanded="true"] span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ----------- Hero ----------- */

.hero {
  padding: clamp(40px, 5vw, 72px) 0 var(--section-y);
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* warm gradient backdrop, very soft */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 88% 0%, rgba(184, 123, 110, 0.08), transparent 60%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(138, 146, 136, 0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.hero__copy { max-width: 580px; }
.hero__title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.6vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin: 0 0 24px;
  font-variation-settings: 'opsz' 96;
  text-wrap: balance;
}
.hero__lede {
  font-family: var(--font);
  font-size: 18.5px;
  line-height: 1.55;
  color: var(--sage-deep);
  margin-bottom: 32px;
  max-width: 52ch;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__points li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
}
.hero__points li svg {
  width: 16px; height: 16px;
  color: var(--rose);
  flex-shrink: 0;
}

.hero__photo {
  margin: 0;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  transition: transform 600ms ease;
}
.hero__photo:hover img { transform: scale(1.02); }
.hero__photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 14px;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  font-variation-settings: 'opsz' 14;
}

/* ----------- Insurance trust strip ----------- */

.insurance {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.insurance__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px var(--pad) 14px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.insurance__lbl {
  margin: 0;
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.insurance__lbl::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--rule);
  margin-left: 16px;
}
.insurance__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
  flex: 1;
  min-width: 0;
}
.insurance__list li {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 0 20px;
  line-height: 1.2;
  position: relative;
  white-space: nowrap;
}
.insurance__list li + li::before {
  content: '·';
  position: absolute;
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sage);
  opacity: 0.45;
  font-size: 14px;
}
.insurance__list li:first-child { padding-left: 0; }
.insurance__list li:last-child { padding-right: 0; }
.insurance__self {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--rose-deep);
  font-variation-settings: 'opsz' 14;
  font-size: 15.5px;
  white-space: nowrap;
}
.insurance__verify {
  display: flex;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) 18px;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sage-deep);
  transition: color 160ms ease, gap 160ms ease;
  letter-spacing: 0.005em;
}
.insurance__verify:hover { color: var(--rose-deep); gap: 12px; }
.insurance__verify svg { width: 12px; height: 12px; color: var(--rose); }

/* ----------- Services ----------- */

.services {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--section-y) var(--pad);
}
.srv-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.srv {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.srv:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(26, 35, 50, 0.16);
}
.srv--feature {
  background: linear-gradient(180deg, #1A2332 0%, #232E42 100%);
  color: var(--ivory);
  border-color: transparent;
}
.srv--feature:hover { box-shadow: 0 24px 56px -16px rgba(26, 35, 50, 0.32); }

.srv__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.srv__icon {
  width: 36px;
  height: 36px;
  color: var(--rose);
}
.srv--feature .srv__icon { color: #E8A593; }
.srv__pill {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(184, 123, 110, 0.18);
  color: #F2C9A8;
}
.srv__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: inherit;
  margin: 0;
  font-variation-settings: 'opsz' 28;
}
.srv__lede {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--sage-deep);
}
.srv--feature .srv__lede { color: rgba(244, 239, 230, 0.78); }
.srv__list {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  flex-grow: 1;
}
.srv--feature .srv__list { border-top-color: rgba(244, 239, 230, 0.12); }
.srv__list li {
  font-size: 14px;
  padding: 7px 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--ink);
}
.srv--feature .srv__list li { color: rgba(244, 239, 230, 0.88); }
.srv__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  margin-top: 8px;
}
.srv__list li + li { border-top: 1px solid var(--rule-soft); }
.srv--feature .srv__list li + li { border-top-color: rgba(244, 239, 230, 0.08); }

.srv .link-arr { align-self: flex-start; margin-top: 8px; }
.srv--feature .link-arr {
  color: var(--ivory);
  border-color: #E8A593;
}
.srv--feature .link-arr svg { color: #E8A593; }
.srv--feature .link-arr:hover { color: #F2C9A8; border-color: #F2C9A8; }

/* ----------- How it works ----------- */

.how {
  background: var(--ivory-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.how__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--section-y) var(--pad);
}
.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 28px;
  counter-reset: step;
}
.how__step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
  position: relative;
}
.how__no {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--rose);
  line-height: 1;
  font-variation-settings: 'opsz' 36;
  font-variant-numeric: tabular-nums;
}
.how__step h3 {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
.how__step p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--sage-deep);
}

/* ----------- Team ----------- */

.team {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--section-y) var(--pad);
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(26, 35, 50, 0.16);
}

.card__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  position: relative;
  flex-shrink: 0;
  isolation: isolate;
}
.card__avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 -8px 18px -8px rgba(26, 35, 50, 0.22);
  pointer-events: none;
}
.card__avatar span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  color: rgba(244, 239, 230, 0.96);
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 36;
  text-shadow: 0 2px 6px rgba(26, 35, 50, 0.22);
}
.card__avatar--a { background: linear-gradient(160deg, #A6886A 0%, #7A5E40 100%); }
.card__avatar--b { background: linear-gradient(160deg, #B58A82 0%, #8A655C 100%); }
.card__avatar--c { background: linear-gradient(160deg, #8E9583 0%, #67705F 100%); }
.card__avatar--d { background: linear-gradient(160deg, #B59B7A 0%, #876A4C 100%); }

.card__role {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0;
}
.card__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
  font-variation-settings: 'opsz' 28;
}
.card__creds {
  font-size: 12.5px;
  color: var(--sage-deep);
  letter-spacing: 0.005em;
  margin: 0;
}
.card__focus {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
  flex-grow: 1;
}
.card__chips {
  border-top: 1px solid var(--rule);
  padding-top: 18px;
  margin-top: 8px;
}
.card__chips-lbl {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 8px;
}
.card__chips ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.card__chips li {
  font-size: 11.5px;
  font-weight: 500;
  padding: 3px 9px;
  background: var(--ivory-2);
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink);
  letter-spacing: 0.005em;
}
.card__cta {
  align-self: flex-start;
  margin-top: 10px;
  font-size: 13.5px;
}

/* ----------- Office ----------- */

.office {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.office__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--section-y) var(--pad);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.office__photo {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}
.office__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.office__body { max-width: 520px; }
.office__title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 0 18px;
  font-variation-settings: 'opsz' 48;
  text-wrap: balance;
}
.office__lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--sage-deep);
  margin-bottom: 32px;
}
.office__meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.office__meta > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.office__meta dt {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.office__meta dd {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
}

/* ----------- FAQ ----------- */

.faq {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--section-y) var(--pad);
}
.faq__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.faq__item {
  border-bottom: 1px solid var(--rule);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font);
  font-size: 17.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  transition: color 160ms ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--rose-deep); }
.faq__icon {
  width: 18px;
  height: 18px;
  color: var(--rose);
  transition: transform 240ms ease;
  flex-shrink: 0;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__body {
  padding: 0 0 26px;
  max-width: 64ch;
}
.faq__body p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--sage-deep);
}

/* ----------- Final CTA ----------- */

.cta {
  background: var(--ink);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(184, 123, 110, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(138, 146, 136, 0.18), transparent 70%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--section-y) var(--pad);
  text-align: center;
}
.cta__seal {
  margin: 0 auto 28px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  overflow: hidden;
  background: #000;
  display: grid;
  place-items: center;
  position: relative;
  box-shadow:
    0 22px 48px -16px rgba(184, 123, 110, 0.40),
    0 8px 18px -4px rgba(0, 0, 0, 0.30);
}
.cta__seal::before,
.cta__seal::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184, 123, 110, 0.40);
  pointer-events: none;
}
.cta__seal::before { inset: -7px; }
.cta__seal::after { inset: -14px; border-color: rgba(184, 123, 110, 0.18); }
.cta__seal img { width: 114%; height: auto; display: block; }
.cta__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ivory);
  margin: 0 auto 18px;
  max-width: 18ch;
  font-variation-settings: 'opsz' 96;
  text-wrap: balance;
}
.cta__lede {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(244, 239, 230, 0.78);
  margin: 0 auto 48px;
  max-width: 56ch;
}
.cta__paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 920px;
  margin: 0 auto 48px;
}
.cta__path {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 22px;
  background: rgba(244, 239, 230, 0.05);
  border: 1px solid rgba(244, 239, 230, 0.12);
  border-radius: var(--r-lg);
  text-align: left;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.cta__path:hover {
  background: rgba(244, 239, 230, 0.10);
  border-color: rgba(244, 239, 230, 0.24);
  transform: translateY(-2px);
}
.cta__path-lbl {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.6);
}
.cta__path-val {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ivory);
  font-variation-settings: 'opsz' 28;
}
.cta__path-sub {
  font-size: 13px;
  color: rgba(244, 239, 230, 0.6);
}

.cta__crisis {
  max-width: 560px;
  margin: 0 auto;
  padding: 14px 20px;
  border: 1px solid rgba(244, 239, 230, 0.16);
  border-left: 3px solid var(--rose);
  border-radius: 4px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(244, 239, 230, 0.82);
  text-align: left;
}
.cta__crisis strong { color: var(--ivory); font-weight: 600; }

/* ----------- Footer ----------- */

.ftr {
  background: #14202E;
  color: rgba(244, 239, 230, 0.68);
  padding: 64px 0 28px;
  font-size: 14px;
}
.ftr__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
}
.ftr__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory);
  margin-bottom: 18px;
}
.ftr__mark { width: 26px; height: 26px; color: var(--rose); }
.ftr__brand > span {
  display: inline-flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ftr__brand small {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.55);
  margin-top: 5px;
}
.ftr__about {
  max-width: 40ch;
  line-height: 1.55;
  color: rgba(244, 239, 230, 0.62);
}
.ftr__col h6 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.55);
  margin: 0 0 14px;
}
.ftr__col p { line-height: 1.55; margin-bottom: 8px; }
.ftr__col ul li { padding: 4px 0; }
.ftr__col a { transition: color 160ms ease; }
.ftr__col a:hover { color: var(--ivory); }

.ftr__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px var(--pad) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 12.5px;
  color: rgba(244, 239, 230, 0.50);
}
.ftr__bottom ul { display: flex; flex-wrap: wrap; gap: 20px; }
.ftr__bottom a:hover { color: var(--ivory); }

/* ----------- Mobile sticky call ----------- */

.mcall {
  display: none;
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  height: 56px;
  padding: 0 22px;
  background: var(--ink);
  color: var(--ivory);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  z-index: 100;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 32px -8px rgba(26, 35, 50, 0.4), 0 4px 8px -2px rgba(184, 123, 110, 0.22);
}

/* ----------- Responsive ----------- */

@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__photo { max-width: 560px; aspect-ratio: 5 / 4; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .srv--feature { grid-column: 1 / -1; }
  .how__steps { grid-template-columns: 1fr 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .office__inner { grid-template-columns: 1fr; }
  .office__photo { max-width: 600px; aspect-ratio: 5 / 4; }
  .faq__inner { grid-template-columns: 1fr; gap: 24px; }
  .insurance__inner { gap: 16px; padding-top: 18px; }
  .insurance__lbl::after { display: none; }
  .insurance__list { gap: 4px 0; }
  .ftr__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  body { padding-bottom: 88px; }
  body.is-nav-open { overflow: hidden; }
  .util__inner { font-size: 12px; padding: 8px var(--pad); }
  .util__right { gap: 10px; }
  .hdr {
    /* Remove backdrop-filter so the fixed mobile nav can escape the header's containing block */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--ivory);
  }
  .hdr__inner { grid-template-columns: auto auto; gap: 12px; height: 68px; }
  .hdr__cta { display: none; }
  .hdr__burger { display: inline-block; }
  .hdr__name { font-size: 19px; }
  .hdr__name small { display: none; }

  /* mobile nav panel */
  .hdr__nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 16px var(--pad) 32px;
    background: var(--ivory);
    border-top: 1px solid var(--rule);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
    z-index: 60;
    overflow-y: auto;
  }
  body.is-nav-open .hdr__nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 240ms ease, transform 280ms cubic-bezier(.2,.7,.2,1), visibility 0s;
  }
  .hdr__nav a {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    font-variation-settings: 'opsz' 32;
    letter-spacing: -0.02em;
    color: var(--ink);
    padding: 18px 0;
    border-bottom: 1px solid var(--rule);
  }
  .hdr__nav a::after { display: none; }
  .hdr__nav a:hover { color: var(--rose-deep); }
  .hero { padding-top: 32px; }
  .hero__title { font-size: 38px; }
  .hero__lede { font-size: 16.5px; }
  .srv-grid, .team__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr; gap: 24px; }
  .office__meta > div { grid-template-columns: 90px 1fr; gap: 12px; }
  .cta__paths { grid-template-columns: 1fr; }
  .ftr__inner { grid-template-columns: 1fr; gap: 28px; }
  .ftr__bottom { flex-direction: column; align-items: flex-start; }
  .mcall { display: inline-flex; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
