@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --charcoal:      #2A2825;
  --charcoal-mid:  #3D3B38;
  --charcoal-lite: #524F4B;
  --navy:          #1b2230;
  --coral:         #D85A30;
  --coral-dark:    #B8451F;
  --coral-fill:    #C2512B;  /* AA-safe bg for white text on .btn--coral (~4.66:1; --coral alone is 3.87:1) */
  --coral-pale:    #FAEDE7;
  --amber:         #EF9F27;
  --cream:         #F4F1EB;
  --warm-white:    #FAFAF8;
  --white:         #FFFFFF;
  --text-dark:     #1C1A18;
  --text-mid:      #5C5955;
  --text-light:    #9A9793;
  --border:        rgba(0,0,0,0.09);
  --border-dark:   rgba(255,255,255,0.10);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1100px;
  --nav-h: 68px;

  --ease: 0.22s ease;
  --ease-slow: 0.4s ease;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.t-overline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--coral);
}
.t-overline--light { color: rgba(255,255,255,0.55); }

h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.25;
}
.t-body-lg {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
}
.t-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-mid);
}
.t-small {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-light);
}
em { font-style: italic; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.section { padding-block: 5rem; }
.section--sm { padding-block: 3.5rem; }
.section--lg { padding-block: 7rem; }
.section--dark {
  background: var(--charcoal);
  color: var(--warm-white);
}
.section--cream { background: var(--cream); }
.section--coral {
  background: var(--coral);
  color: var(--white);
}
.section--white { background: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--charcoal);
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
  margin-right: auto;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--warm-white);
  line-height: 1;
  letter-spacing: 0.01em;
}
.nav__logo-sub {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  transition: color var(--ease);
}
.nav__link:hover,
.nav__link.active { color: var(--warm-white); }
.nav__link.active {
  background: rgba(255,255,255,0.07);
}
.nav__phone {
  font-size: 13px;
  font-weight: 500;
  color: var(--coral);
  white-space: nowrap;
  transition: color var(--ease);
}
.nav__phone:hover { color: #f07050; }
.nav__cta {
  font-size: 13px;
  font-weight: 600;
  background: var(--coral);
  color: var(--white);
  padding: 0.5rem 1.1rem;
  border-radius: 5px;
  white-space: nowrap;
  transition: background var(--ease), transform var(--ease);
}
.nav__cta:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--warm-white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--charcoal);
  border-bottom: 1px solid var(--border-dark);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 0.25rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link {
  display: block;
  font-size: 15px;
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid var(--border-dark);
}
.nav__mobile .nav__phone,
.nav__mobile .nav__cta {
  margin-top: 0.75rem;
  display: block;
  text-align: center;
  padding: 0.75rem;
}
.nav__mobile .nav__cta { border-radius: 5px; }

/* Page offset for fixed nav */
main { padding-top: var(--nav-h); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: 5px;
  transition: all var(--ease);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn--coral {
  background: var(--coral-fill);
  color: var(--white);
  border: 2px solid var(--coral-fill);
}
.btn--coral:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-1px);
}
.btn--ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--ghost-light:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
}
.btn--ghost-dark {
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid var(--border);
}
.btn--ghost-dark:hover {
  color: var(--text-dark);
  border-color: rgba(0,0,0,0.25);
}
.btn--lg {
  font-size: 15px;
  padding: 0.95rem 2rem;
}
.btn--phone {
  background: var(--charcoal);
  color: var(--warm-white);
  border: 2px solid var(--charcoal);
  font-size: 18px;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 5px;
  transition: all var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn--phone:hover {
  background: var(--charcoal-mid);
  border-color: var(--charcoal-mid);
  transform: translateY(-1px);
}

/* ============================================================
   HERO (DARK)
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 660px;
  padding-block: 6rem 5rem;
  overflow: hidden;
  background-color: var(--navy);
}
.hero > .container {
  position: relative;
  z-index: 2;
  width: 100%;
  /* shift the hero copy right toward the people: paragraph slightly overlays the
     caregiver's hand, and "possible." sits a nice gap from the older woman's head,
     aligned toward her ear. Reset on mobile. */
  padding-left: 0.75rem;
  /* nudge the copy column UP so the orange "possible." period lines up with the
     bottom of the older woman's earlobe (photo is NOT moved). Reset on mobile. */
  margin-top: -5.2rem;
}
/* Featured photo layer: a right-anchored band (75%) so image pixels exist across the
   right 75% of the hero and only the leftmost 25% stays pure navy. The band's hard left
   edge sits at ~25%; the overlay gradient is down to ~0.55 opacity there, so seam
   concealment leans on both the overlay and this band's own 6% mask feather below.
   --hero-photo-w is the framing knob: smaller = people farther right / more left navy. */
.hero::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 0; left: auto;
  width: var(--hero-photo-w, 75%);
  z-index: 0;
  background-image: url('../images/hero-ai.jpg');
  background-repeat: no-repeat;
  /* bias to the left of the photo so the hand-on-shoulder is not clipped */
  background-position: left center;
  background-size: cover;
  /* thin feather on the band's left edge: softens the seam line without reaching the
     hand (which sits ~3-6% into the band) — the hand stays at full opacity */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 6%);
  pointer-events: none;
}
/* Strong left→right navy overlay that protects the copy zone:
   0–18% solid navy (~0.90+), the "solid navy" region the user caps at the left quarter;
   18–32% smooth transition so the image begins showing right at ~25%; 32–60% light
   cinematic; fully clear by 60%. Seam concealment at the band edge (~25%, ~0.55 opacity
   here) is shared between this overlay and the band's own 6% mask feather above. The slope
   stays gentle/multi-stop — never a steep dark panel. Opacities = readability knob. */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg,
      rgba(27,34,48,0.97) 0%,
      rgba(27,34,48,0.93) 12%,
      rgba(27,34,48,0.80) 18%,
      rgba(27,34,48,0.55) 25%,
      rgba(27,34,48,0.34) 32%,
      rgba(27,34,48,0.16) 42%,
      rgba(27,34,48,0.05) 52%,
      rgba(27,34,48,0.00) 60%),
    /* gentle vertical vignette keeps top/bottom from washing out */
    linear-gradient(180deg,
      rgba(27,34,48,0.16) 0%,
      rgba(27,34,48,0.00) 24%,
      rgba(27,34,48,0.00) 78%,
      rgba(27,34,48,0.18) 100%);
  pointer-events: none;
}
.hero__eyebrow {
  margin-bottom: 1.25rem;
}
.hero__headline {
  color: var(--warm-white);
  margin-bottom: 1.5rem;
  max-width: 620px;
}
.hero__headline em {
  color: var(--coral);
  font-style: italic;
}
.hero__sub {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.68);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
/* Desktop (≥1024px): the photo band is 75vw wide but the hero is only 660px tall, so on wide
   screens `cover` crops the photo's top (the lamp + the two heads). Scale the hero height with
   viewport width so the band's shape (~75vw × 50vw = 1.5) matches the photo's 1.5 aspect — then
   full-width `cover` (base rule above) shows the WHOLE frame (full lamp, full heads, more left
   curtain) while solid navy stays structurally the left 25% and the smooth `.hero::after` overlay
   does the cinematic fade — no zoom-out, no mid-band photo edge, no hard line. Capped so ultrawide
   screens don't get an excessively tall hero (there `cover` crops a little again, but navy is
   still exactly 25% and there is never a seam). Tablet (641–1023px) and mobile are unaffected. */
@media (min-width: 1024px) {
  .hero {
    min-height: clamp(660px, 50vw, 900px);
  }
}

/* ============================================================
   PHONE STRIP
   ============================================================ */
.phone-strip {
  background: var(--coral);
  padding: 0.9rem 0;
}
.phone-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.phone-strip__text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.phone-strip__num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
}
.phone-strip__num a { color: inherit; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--charcoal-mid);
  border-bottom: 1px solid var(--border-dark);
  padding: 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-bar__item {
  padding: 1.4rem 1.5rem;
  border-right: 1px solid var(--border-dark);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--coral);
  display: block;
  margin-bottom: 2px;
}
.trust-bar__label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  display: block;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { margin-bottom: 3.5rem; }
.section-header--centered { text-align: center; }
.section-header .h2 { margin-top: 0.5rem; }
.section-header p {
  margin-top: 1rem;
  max-width: 580px;
}
.section-header--centered p { margin-inline: auto; }

/* ============================================================
   SERVICES LIST (numbered, editorial)
   ============================================================ */
.services-list { display: flex; flex-direction: column; }
.service-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0 2rem;
  align-items: start;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.service-item:first-child { border-top: 1px solid var(--border); }
.service-item__num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-light);
  padding-top: 0.2rem;
}
.service-item__body {}
.service-item__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.service-item__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 560px;
}
.service-item__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  background: var(--coral-pale);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  white-space: nowrap;
  align-self: center;
}

/* ============================================================
   STEPS
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.step.visible { opacity: 1; transform: translateY(0); }
.step:first-child { border-top: 1px solid var(--border); padding-top: 1.75rem; }
.step__circle {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.step__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.step__body {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  border-left: 3px solid var(--coral);
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border-radius: 0 8px 8px 0;
}
.testimonial--dark {
  background: var(--charcoal-mid);
  border-left-color: var(--coral);
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial--dark .testimonial__quote { color: rgba(255,255,255,0.88); }
.testimonial__attrib {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.03em;
}
.testimonial--dark .testimonial__attrib { color: rgba(255,255,255,0.38); }

/* ============================================================
   FOUNDER / ABOUT
   ============================================================ */
.founder-block {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}
.founder-photo {
  aspect-ratio: 3/4;
  background: var(--charcoal-mid);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.founder-photo__initials {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.15);
  user-select: none;
}
.founder-photo__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}
.founder-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-block: 1.25rem 1.75rem;
}
.cred-chip {
  font-size: 11px;
  font-weight: 600;
  color: var(--coral);
  background: var(--coral-pale);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  letter-spacing: 0.02em;
}
.founder-bio p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.founder-bio p:last-child { margin-bottom: 0; }

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pull-quote {
  border-left: 4px solid var(--coral);
  padding: 1.25rem 2rem;
  margin-block: 2rem;
}
.pull-quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 0.6rem;
}
.pull-quote__attr {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   DIFFERENCE GRID
   ============================================================ */
.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.difference-item {
  padding: 2rem 2.25rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.difference-item__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.difference-item__title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
}
.difference-item__body {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-category { margin-bottom: 3rem; }
.faq-category__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.4;
  transition: color var(--ease);
}
.faq-item__btn:hover { color: var(--coral); }
.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  margin-top: 0.15rem;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--coral);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.faq-item__icon::before {
  width: 12px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-item__icon::after {
  width: 1.5px; height: 12px;
  transform: translate(-50%, -50%);
}
.faq-item.open .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-item__answer { max-height: 400px; }
.faq-item__answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  align-items: start;
}
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  background: var(--white);
  color: var(--text-dark);
  font-size: 15px;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(216,90,48,0.1);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form__note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: -0.25rem;
}
.form__submit {
  margin-top: 0.5rem;
}
.contact-aside {}
.contact-detail {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:first-child { padding-top: 0; }
.contact-detail__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.4rem;
}
.contact-detail__value {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}
.contact-detail__sub {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 0.2rem;
}
.contact-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--coral);
  transition: color var(--ease);
}
.contact-phone-link:hover { color: var(--coral-dark); }

/* ============================================================
   PAGE HERO (INTERIOR PAGES)
   ============================================================ */
.page-hero {
  background: var(--charcoal);
  padding-block: 4rem 3.5rem;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--coral);
}
.page-hero__eyebrow { margin-bottom: 1rem; }
.page-hero__headline { color: var(--warm-white); margin-bottom: 1rem; }
.page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  max-width: 620px;
  line-height: 1.75;
}

/* ============================================================
   FOOTER CTA
   ============================================================ */
.footer-cta {
  background: var(--charcoal);
  padding-block: 5rem;
  text-align: center;
}
.footer-cta__headline {
  color: var(--warm-white);
  margin-bottom: 0.75rem;
}
.footer-cta__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
}
.footer-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-cta__or {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-cta__phone {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
}
.footer-cta__phone a {
  color: var(--coral);
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1E1C1A;
  padding-block: 3rem;
  border-top: 1px solid var(--border-dark);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 0.3rem;
}
.footer__brand-address {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
}
.footer__brand-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  margin-top: 1rem;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  justify-content: flex-end;
}
.footer__nav a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color var(--ease);
}
.footer__nav a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   INLINE UTILITY COMPONENTS
   ============================================================ */
.concerns-list { display: flex; flex-direction: column; gap: 1.75rem; }
.concern-item {}
.concern-item__q {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 0.5rem;
}
.concern-item__a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* Service detail (services page) */
.service-detail {
  padding-block: 4rem;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.service-detail__num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  user-select: none;
}
.service-detail__headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.service-detail__body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 1.5rem;
}
.service-detail__sub-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}
.service-detail__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.service-detail__list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 1.25rem;
  position: relative;
}
.service-detail__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--coral);
}
.service-detail__note {
  background: var(--cream);
  border-left: 3px solid var(--coral);
  padding: 1rem 1.25rem;
  border-radius: 0 5px 5px 0;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 1rem;
}
.service-detail__who {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 0.75rem;
}

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HOW IT WORKS DETAIL
   ============================================================ */
.hiw-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding-block: 3.5rem;
  border-bottom: 1px solid var(--border);
}
.hiw-step:first-child { border-top: 1px solid var(--border); }
.hiw-step__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  padding-top: 0.2rem;
}
.hiw-step__overline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.5rem;
}
.hiw-step__headline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.hiw-step__body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.hiw-step__details {}
.hiw-step__details-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.hiw-step__list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.hiw-step__list li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding-left: 1.25rem;
  position: relative;
}
.hiw-step__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--coral);
}

/* ============================================================
   CONFIRMATION STATE
   ============================================================ */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
  border: 1.5px solid var(--coral);
  border-radius: 8px;
}
.form-success.visible { display: block; }
.form-success__icon {
  width: 48px; height: 48px;
  background: var(--coral-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--coral);
  font-size: 22px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__item:nth-child(2) { border-right: none; }
  .trust-bar__item:nth-child(3) { border-top: 1px solid var(--border-dark); }
  .trust-bar__item:nth-child(4) {
    border-right: none;
    border-top: 1px solid var(--border-dark);
  }

  .founder-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-photo { aspect-ratio: 16/9; max-width: 340px; }

  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }

  .difference-grid { grid-template-columns: 1fr; }

  .hiw-step { grid-template-columns: 60px 1fr; gap: 1.5rem; }
  .hiw-step__num { font-size: 2.5rem; }
}
@media (max-width: 640px) {
  :root { --nav-h: 60px; }
  .section { padding-block: 3.5rem; }
  .section--lg { padding-block: 4.5rem; }
  .hero { padding-block: 4rem 3rem; min-height: 520px; }
  /* Mobile: drop the desktop copy indent + upward nudge (full-bleed photo, no right-band) */
  .hero > .container { padding-left: 1.5rem; margin-top: 0; }
  /* Mobile: photo goes full-bleed (reset the desktop right-band) and is biased
     right so the people stay visible under the stronger top-down overlay. */
  .hero::before {
    left: 0; right: 0; width: 100%;
    background-position: 60% 28%;
    -webkit-mask-image: none;
            mask-image: none;
  }
  /* Mobile: readability first — stronger top-down navy so copy never sits on
     busy facial detail; photo reads warm toward the bottom. */
  .hero::after {
    background: linear-gradient(180deg,
      rgba(27,34,48,0.92) 0%,
      rgba(27,34,48,0.82) 40%,
      rgba(27,34,48,0.60) 68%,
      rgba(27,34,48,0.48) 100%);
  }

  .service-item {
    grid-template-columns: 44px 1fr;
    gap: 0 1rem;
  }
  .service-item__tag { display: none; }

  .phone-strip__inner { flex-direction: column; align-items: flex-start; gap: 0.25rem; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__nav { justify-content: flex-start; }

  .trust-bar__grid { grid-template-columns: 1fr 1fr; }

  .hiw-step { grid-template-columns: 1fr; }
  .hiw-step__num { font-size: 2rem; margin-bottom: -0.5rem; }

  .photos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PHOTO SOCIAL PROOF
   ============================================================ */

.photos-section { padding-top: 5rem; padding-bottom: 5rem; }

.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.photos-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

@media (max-width: 480px) {
  .photos-grid { grid-template-columns: 1fr; }
}

/* Founder photo — full rectangular portrait */
img.founder-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
