/* ==========================================================
   BRIGHT COMPANION CARE LLC — Stylesheet
   Premium non-medical companion care, Boston.
   Full redesign: editorial, warm-authoritative, lead-first.
   ========================================================== */

:root {
  --pearl:       #FFFDFC;
  --ivory:       #F3ECE4;
  --ivory-mid:   #EDE3D8;
  --blush:       #E4CDD1;
  --mauve:       #B79BA5;
  --mauve-deep:  #765A63;
  --gold:        #C7AA68;
  --gold-soft:   #DCC48F;
  --gold-pale:   #F0E4C4;
  --gold-faint:  #FAF4E6;
  --ink:         #3A2E32;
  --ink-soft:    #6B5D61;
  --ink-faint:   #9A8C90;
  --maroon:      #3B0F17;
  --maroon-mid:  #5C1D28;
  --maroon-lite: #7A2D3A;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --w-max:   1200px;
  --w-text:  680px;

  --r-sm:  6px;
  --r-md:  14px;
  --r-lg:  24px;
  --r-xl:  36px;
  --r-2xl: 52px;

  --shadow-xs:   0 1px 3px rgba(59,15,23,0.07);
  --shadow-sm:   0 4px 16px -4px rgba(59,15,23,0.1);
  --shadow-md:   0 8px 32px -8px rgba(59,15,23,0.16);
  --shadow-lg:   0 20px 60px -12px rgba(59,15,23,0.22);
  --shadow-xl:   0 32px 80px -16px rgba(59,15,23,0.28);
  --shadow-gold: 0 8px 32px -6px rgba(199,170,104,0.4);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--pearl);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--maroon);
  letter-spacing: -0.01em;
}

.container {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Eyebrow ─────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mauve-deep);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Section base ────────────────────────────────── */
.section { padding: 108px 0; }
.section--ivory  { background: var(--ivory); }
.section--ivory2 { background: var(--ivory-mid); }
.section--blush  { background: linear-gradient(170deg, var(--blush) 0%, var(--ivory) 85%); }
.section--deep {
  background: linear-gradient(140deg, var(--maroon) 0%, var(--maroon-mid) 100%);
  color: var(--pearl);
}
.section--deep h2,
.section--deep h3,
.section--deep h4 { color: var(--pearl); }
.section--deep .eyebrow { color: var(--gold-soft); }
.section--deep .eyebrow::before { background: var(--gold-soft); }

.section-head {
  max-width: var(--w-text);
  margin: 0 auto 68px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 18px;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.75;
  margin: 0;
}

/* ── Utility ──────────────────────────────────────── */
.dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}
.text-gold { color: var(--gold); }
.text-mauve { color: var(--mauve-deep); }

/* ══════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 34px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
              background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.btn--primary {
  background: var(--maroon);
  color: var(--pearl);
  border-color: var(--maroon);
  box-shadow: 0 4px 20px -6px rgba(59,15,23,0.45);
}
.btn--primary:hover {
  transform: translateY(-2px);
  background: var(--maroon-mid);
  border-color: var(--maroon-mid);
  box-shadow: 0 12px 36px -8px rgba(59,15,23,0.5);
}

.btn--gold {
  background: var(--gold);
  color: var(--maroon);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}
.btn--gold:hover {
  transform: translateY(-2px);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  box-shadow: 0 16px 44px -10px rgba(199,170,104,0.55);
}

.btn--outline {
  background: transparent;
  color: var(--maroon);
  border-color: rgba(118,90,99,0.4);
}
.btn--outline:hover {
  background: rgba(183,155,165,0.08);
  border-color: var(--mauve-deep);
}

.btn--outline-light {
  background: transparent;
  color: var(--pearl);
  border-color: rgba(255,253,252,0.35);
}
.btn--outline-light:hover {
  background: rgba(255,253,252,0.08);
  border-color: rgba(255,253,252,0.6);
}

.btn--sm { padding: 11px 24px; font-size: 0.875rem; }
.btn--lg { padding: 18px 42px; font-size: 1rem; font-weight: 700; }

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* ══════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,253,252,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(183,155,165,0.18);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--maroon);
  line-height: 1.1;
}
.brand-name span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mauve-deep);
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a:not(.btn) {
  font-size: 0.91rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:not(.btn):hover { color: var(--maroon); }
.main-nav a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--maroon);
  margin: 5px 0;
  transition: 0.28s ease;
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  min-height: 82vh;
  display: flex;
  align-items: center;
}

/* Warm atmospheric background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 100% 50%, rgba(199,170,104,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 55% 65% at 0% 20%, rgba(228,205,209,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 100% 80% at 50% 110%, rgba(243,236,228,0.9) 0%, var(--ivory) 60%);
  pointer-events: none;
}

/* Signature left gold bar */
.hero::after {
  content: "";
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  border-radius: 0 2px 2px 0;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 440px;
  grid-template-areas:
    "copy   visual"
    "ctas   visual"
    "trust  visual";
  gap: 0 64px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-copy { grid-area: copy; max-width: 580px; }
.hero-visual { grid-area: visual; }
.hero-ctas { grid-area: ctas; }
.hero .trust-bar { grid-area: trust; }

.hero .eyebrow { margin-bottom: 28px; }

.hero h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  color: var(--maroon);
  line-height: 1.1;
  margin-bottom: 26px;
}
.hero h1 em {
  font-style: italic;
  color: var(--maroon-mid);
}

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mauve-deep);
  margin-bottom: 20px;
}

.hero-lede {
  font-size: 1.16rem;
  color: var(--ink-soft);
  line-height: 1.78;
  max-width: 520px;
  margin-bottom: 38px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  align-items: center;
}

/* Trust pill row */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  max-width: 100%;
}
.trust-bar li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 9px 16px;
  background: rgba(255,253,252,0.75);
  border: 1px solid rgba(183,155,165,0.2);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
}

/* Hero right visual */
.hero-visual { position: relative; }

.hero-img-wrap {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 4.2;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Gold decorative ring */
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: calc(var(--r-2xl) + 14px);
  border: 1.5px solid rgba(199,170,104,0.25);
  pointer-events: none;
  z-index: -1;
}

/* Floating stat badge */
.hero-badge {
  position: absolute;
  bottom: 32px;
  left: -36px;
  background: var(--pearl);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(183,155,165,0.15);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
  z-index: 3;
}
.hero-badge-ico {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}
.hero-badge-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--maroon);
  line-height: 1.25;
  font-weight: 600;
}
.hero-badge-text span {
  font-size: 0.7rem;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════════════════
   SOCIAL PROOF / MINI BANNER
   ══════════════════════════════════════════════════ */
.proof-banner {
  background: var(--maroon);
  padding: 0;
  overflow: hidden;
}
.proof-banner .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 0;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,253,252,0.82);
  font-size: 0.84rem;
  font-weight: 500;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,253,252,0.1);
  white-space: nowrap;
}
.proof-item:last-child { border-right: none; }
.proof-item-num {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gold-soft);
  line-height: 1;
  flex-shrink: 0;
}
.proof-item-text { line-height: 1.4; white-space: normal; }
/* Dividers are now done via border-right on items; remove old divider elements */
.proof-divider { display: none; }

/* ══════════════════════════════════════════════════
   THE REAL WORRY
   ══════════════════════════════════════════════════ */
.worry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.worry-copy h2 {
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  margin-bottom: 24px;
}
.worry-copy p {
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.78;
}

.worry-right { padding-top: 4px; }

.worry-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve-deep);
  margin-bottom: 22px;
}

.worry-cards {
  display: grid;
  gap: 12px;
}

.worry-card {
  background: var(--pearl);
  border: 1px solid rgba(183,155,165,0.25);
  border-radius: var(--r-md);
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
  box-shadow: var(--shadow-xs);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.worry-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(199,170,104,0.3);
}
.worry-card .q-mark {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
  margin-top: -5px;
}
.worry-card p {
  font-size: 0.97rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   WHY US
   ══════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  background: var(--pearl);
  border-radius: var(--r-lg);
  padding: 36px 28px 32px;
  border: 1px solid rgba(183,155,165,0.18);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-card:hover::after { opacity: 1; }

.why-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-faint);
  border: 1.5px solid rgba(199,170,104,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--maroon-mid);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.68;
}

/* ══════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.svc-card {
  background: var(--pearl);
  border-radius: var(--r-xl);
  padding: 50px 44px;
  border: 1px solid rgba(183,155,165,0.2);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.svc-card.is-live {
  border-color: rgba(199,170,104,0.4);
  box-shadow: 0 0 0 1px rgba(199,170,104,0.15), var(--shadow-lg);
}

.svc-pill {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.svc-pill.live {
  background: rgba(199,170,104,0.14);
  color: var(--maroon-mid);
  border: 1px solid rgba(199,170,104,0.3);
}
.svc-pill.soon {
  background: rgba(183,155,165,0.12);
  color: var(--ink-soft);
  border: 1px solid rgba(183,155,165,0.25);
}

.svc-card h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
  line-height: 1.15;
}
.svc-card .svc-sub {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.99rem;
  line-height: 1.65;
  margin-bottom: 26px;
}

.svc-list {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}
.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.94rem;
  color: var(--ink);
  line-height: 1.58;
}
.svc-list li::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 9px;
  flex-shrink: 0;
}

.svc-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183,155,165,0.28), transparent);
  margin: 0 0 26px;
}

.svc-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--maroon);
  font-weight: 600;
  margin-bottom: 4px;
}
.svc-price span {
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.svc-note {
  font-size: 0.76rem;
  color: var(--mauve-deep);
  font-weight: 500;
  margin-bottom: 26px;
  line-height: 1.5;
}
.svc-card .btn { align-self: flex-start; margin-top: auto; }

/* ══════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════ */
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-wrap::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220,196,143,0.35) 20%, rgba(220,196,143,0.35) 80%, transparent);
  pointer-events: none;
}

.step-item {
  padding: 0 26px;
  text-align: center;
}

.step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(220,196,143,0.12);
  border: 1.5px solid rgba(220,196,143,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  position: relative;
  z-index: 1;
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-soft);
  font-weight: 600;
  line-height: 1;
}

.step-item h3 {
  font-size: 1.06rem;
  margin-bottom: 10px;
  line-height: 1.3;
}
.step-item p {
  font-size: 0.91rem;
  color: rgba(255,253,252,0.7);
  margin: 0;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   MEET EZINNE
   ══════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

/* Photo frame */
.about-photo-wrap {
  position: relative;
}
.about-photo-frame {
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
  position: relative;
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}

/* Warm photo overlay at bottom */
.about-photo-frame::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(59,15,23,0.45), transparent);
  pointer-events: none;
}

/* Gold decorative ring */
.about-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: calc(var(--r-2xl) + 14px);
  border: 1.5px solid rgba(199,170,104,0.22);
  pointer-events: none;
  z-index: -1;
}

/* Name nameplate on photo */
.about-nameplate {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,253,252,0.96);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 14px 22px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  z-index: 2;
  border: 1px solid rgba(183,155,165,0.15);
}
.about-nameplate strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--maroon);
  font-weight: 600;
  line-height: 1.2;
}
.about-nameplate span {
  font-size: 0.72rem;
  color: var(--mauve-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Copy side */
.about-copy h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  margin-bottom: 20px;
}
.about-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.78;
}

.cred-row {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin: 28px 0 34px;
  background: var(--ivory);
  border: 1px solid rgba(183,155,165,0.2);
  border-radius: 100px;
  overflow: hidden;
  width: fit-content;
}
.cred-row li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mauve-deep);
  padding: 10px 18px;
  border-right: 1px solid rgba(183,155,165,0.18);
}
.cred-row li:last-child { border-right: none; }

/* ══════════════════════════════════════════════════
   BOOK A CALL
   ══════════════════════════════════════════════════ */
.book-box {
  max-width: 680px;
  margin: 0 auto;
  background: var(--pearl);
  border-radius: var(--r-xl);
  border: 1px solid rgba(183,155,165,0.22);
  padding: 60px 52px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.book-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mauve), var(--gold), var(--mauve));
}
.book-box-ico {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  font-size: 1.6rem;
  box-shadow: var(--shadow-gold);
  color: var(--maroon);
}
.book-box h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.book-box > p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.72;
  margin-bottom: 30px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.book-box .book-note {
  margin-top: 22px;
  font-size: 0.74rem;
  color: var(--mauve-deep);
  background: var(--ivory);
  border-radius: 100px;
  padding: 8px 20px;
  display: inline-block;
  border: 1px solid rgba(183,155,165,0.18);
}

/* ══════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 11px;
}

.faq-item {
  background: var(--pearl);
  border: 1px solid rgba(183,155,165,0.25);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.22s ease, border-color 0.22s ease;
}
.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: rgba(199,170,104,0.35);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--maroon);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  user-select: none;
  line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-ico {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(183,155,165,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--mauve-deep);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  font-family: var(--font-body);
  line-height: 1;
  font-weight: 400;
}
.faq-item[open] .faq-ico {
  transform: rotate(45deg);
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--maroon);
}

.faq-body {
  padding: 0 28px 24px;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.75;
  max-width: 680px;
}

/* ══════════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════════ */
.final-cta {
  text-align: center;
  padding: 128px 0;
  background: linear-gradient(145deg, var(--maroon) 0%, var(--maroon-mid) 55%, var(--maroon-lite) 100%);
  color: var(--pearl);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: -120px; left: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,170,104,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta::after {
  content: "";
  position: absolute;
  bottom: -140px; right: -80px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228,205,209,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
  color: var(--pearl);
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  max-width: 580px;
  margin: 0 auto 20px;
  line-height: 1.08;
}
.final-cta p {
  color: rgba(255,253,252,0.78);
  max-width: 500px;
  margin: 0 auto 44px;
  font-size: 1.1rem;
  line-height: 1.72;
}
.final-cta .cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta .cta-email-note {
  margin-top: 22px;
  font-size: 0.85rem;
  color: rgba(255,253,252,0.55);
}
.final-cta .cta-email-note a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.site-footer {
  background: var(--maroon);
  color: rgba(255,253,252,0.65);
  padding: 80px 0 34px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,253,252,0.09);
  margin-bottom: 28px;
}

.footer-brand-block { }
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand-row img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-brand-row span {
  font-family: var(--font-display);
  color: var(--pearl);
  font-size: 1.05rem;
  font-weight: 600;
}
.footer-desc {
  font-size: 0.89rem;
  line-height: 1.72;
  color: rgba(255,253,252,0.55);
  max-width: 265px;
}
.footer-scope {
  margin-top: 16px;
  font-size: 0.74rem;
  color: rgba(255,253,252,0.4);
  line-height: 1.65;
  max-width: 260px;
}

.footer-col h4 {
  color: var(--pearl);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-col ul {
  display: grid;
  gap: 12px;
}
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,253,252,0.6);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-col li:not(:has(a)) {
  font-size: 0.9rem;
  color: rgba(255,253,252,0.45);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,253,252,0.35);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,253,252,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(255,253,252,0.5);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ══════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1040px)
   ══════════════════════════════════════════════════ */
@media (max-width: 1040px) {
  .container { padding: 0 30px; }

  .hero .container {
    grid-template-columns: 1fr 340px;
    gap: 44px;
  }
  .about-grid {
    grid-template-columns: 360px 1fr;
    gap: 60px;
  }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-top .footer-col:last-child { display: none; } /* hide service area on tablet */
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — SMALL TABLET (≤ 860px)
   ══════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .section { padding: 80px 0; }

  /* Hero: stacked layout — copy first, contained photo card second,
     then CTAs and trust pills. Text always sits on the plain hero
     background, never on top of the photo, so legibility never
     depends on how bright or busy the image is. */
  .hero {
    min-height: 0;
  }

  .hero .container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "ctas"
      "trust";
    row-gap: 36px;
    padding-top: 96px;
    padding-bottom: 64px;
  }

  .hero-copy { max-width: 100%; }

  /* Photo card: same rounded, shadowed treatment as desktop, just
     full-width and shorter so both people are comfortably in frame */
  .hero-visual { width: 100%; }
  .hero-visual::before { inset: -8px; border-radius: calc(var(--r-2xl) + 8px); }
  .hero-visual .hero-img-wrap {
    aspect-ratio: 4 / 3.1;
  }
  .hero-visual .hero-img-wrap img {
    object-position: center 30%;
  }

  /* Badge sits inside the image bounds on mobile instead of overhanging left */
  .hero-badge {
    left: 16px;
    bottom: 16px;
    min-width: auto;
    width: calc(100% - 32px);
  }

  .hero-ctas { margin-bottom: 0; }

  .worry-grid { grid-template-columns: 1fr; gap: 52px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-wrap { grid-template-columns: repeat(2, 1fr); gap: 44px; }
  .steps-wrap::before { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 380px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-top .footer-brand-block { grid-column: 1 / -1; }
  .proof-banner .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-item:nth-child(2) { border-right: none; }
  .proof-item:nth-child(1),
  .proof-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,253,252,0.1);
  }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
   ══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  /* Mobile nav */
  .main-nav {
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: rgba(255,253,252,0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px 32px;
    gap: 18px;
    border-bottom: 1px solid rgba(183,155,165,0.18);
    transform: translateY(-110%);
    transition: transform 0.32s cubic-bezier(0.22,1,0.36,1);
    z-index: 199;
    box-shadow: var(--shadow-lg);
    pointer-events: none;
    visibility: hidden;
  }
  .main-nav.is-open {
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }
  .nav-toggle { display: flex; align-items: center; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Keep header height consistent; truncate long brand name gracefully */
  .site-header .container {
    height: 64px;
    padding: 0 16px;
    gap: 10px;
  }
  .brand-name {
    font-size: 0.88rem;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-name span { display: none; } /* hide "Boston, Massachusetts" on mobile */
  .brand img { width: 36px; height: 36px; }
  .main-nav { top: 64px; }

  .why-grid { grid-template-columns: 1fr; }
  .steps-wrap { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr; }

  /* Cred row vertical on mobile */
  .cred-row {
    flex-direction: column;
    border-radius: var(--r-lg);
    width: 100%;
  }
  .cred-row li {
    border-right: none;
    border-bottom: 1px solid rgba(183,155,165,0.16);
  }
  .cred-row li:last-child { border-bottom: none; }

  .book-box { padding: 40px 20px; }
  .book-box .btn { white-space: normal; text-align: center; width: 100%; padding: 16px 20px; }
  .book-box a[href^="mailto:"] {
    font-size: 14px;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .svc-card { padding: 36px 26px; }
  .faq-item summary { padding: 18px 20px; font-size: 0.97rem; }
  .faq-body { padding: 0 20px 20px; }

  .proof-banner .container {
    grid-template-columns: 1fr;
  }
  .proof-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,253,252,0.1);
    white-space: normal;
    padding: 18px 20px;
  }
  .proof-item:last-child { border-bottom: none; }
  .proof-item:nth-child(1),
  .proof-item:nth-child(2) { border-bottom: 1px solid rgba(255,253,252,0.1); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }

  .section-head { margin-bottom: 48px; }
  .section-head h2 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
}

/* ══════════════════════════════════════════════════
   ACCESSIBILITY
   ══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  html { scroll-behavior: auto; }
}

:focus-visible {
  outline: 2px solid var(--mauve-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════
   HERO IMAGE CAPTION (new photo treatment)
   ══════════════════════════════════════════════════ */

.hero-img-caption {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(59,15,23,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,253,252,0.9);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  white-space: nowrap;
  border: 1px solid rgba(255,253,252,0.12);
}

/* ══════════════════════════════════════════════════
   WORRY SECTION: PHOTO
   ══════════════════════════════════════════════════ */

.worry-photo-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  margin-bottom: 0;
}

.worry-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.6s ease;
}

.worry-photo-wrap:hover img {
  transform: scale(1.02);
}

/* Warm overlay on bottom of worry photo */
.worry-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(59,15,23,0.5) 100%
  );
  pointer-events: none;
}

.worry-photo-caption {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  color: rgba(255,253,252,0.92);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
  z-index: 2;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* Adjust worry grid to handle the taller right column */
.worry-grid {
  align-items: start;
}

/* On tablet: photo goes full width above quotes */
@media (max-width: 860px) {
  .worry-photo-wrap {
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 640px) {
  .worry-photo-wrap {
    aspect-ratio: 4 / 3;
    border-radius: var(--r-lg);
  }
  .hero-img-caption {
    font-size: 0.65rem;
    padding: 7px 14px;
  }
}

/* ══════════════════════════════════════════════════
   CLARITY CALL PAGE — Qualification form + Calendly
   ══════════════════════════════════════════════════ */

.cc-hero {
  background: var(--ivory);
  padding: 88px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(199,170,104,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cc-hero .container { position: relative; z-index: 1; }
.cc-hero .eyebrow { justify-content: center; }
.cc-hero h1 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  max-width: 700px;
  margin: 0 auto 18px;
}
.cc-hero p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.cc-progress {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}
.cc-progress li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink-faint);
  padding: 8px 16px;
  background: var(--pearl);
  border: 1px solid rgba(183,155,165,0.2);
  border-radius: 100px;
}
.cc-progress li.is-active {
  color: var(--maroon);
  border-color: rgba(199,170,104,0.4);
  background: var(--gold-faint);
}
.cc-progress li span {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--maroon);
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cc-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.cc-panel {
  background: var(--pearl);
  border: 1px solid rgba(183,155,165,0.22);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 52px;
  position: relative;
  overflow: hidden;
}
.cc-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mauve), var(--gold), var(--mauve));
}
.cc-panel h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.cc-panel > p.cc-panel-lede {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-bottom: 34px;
}

.cc-field {
  margin-bottom: 22px;
}
.cc-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 8px;
}
.cc-field .cc-optional {
  font-weight: 500;
  color: var(--ink-faint);
  text-transform: none;
  letter-spacing: 0;
}
.cc-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cc-field input[type="text"],
.cc-field input[type="email"],
.cc-field input[type="tel"],
.cc-field select,
.cc-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1.5px solid rgba(183,155,165,0.28);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.cc-field textarea {
  min-height: 96px;
  resize: vertical;
  font-family: var(--font-body);
}
.cc-field input:focus,
.cc-field select:focus,
.cc-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--pearl);
}
.cc-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9'><path d='M1 1l6 6 6-6' stroke='%23765A63' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.cc-submit-row {
  margin-top: 8px;
}
.cc-submit-row .btn {
  width: 100%;
}
.cc-status {
  margin-top: 16px;
  font-size: 0.86rem;
  line-height: 1.6;
  border-radius: var(--r-sm);
  padding: 12px 16px;
  display: none;
}
.cc-status.is-visible { display: block; }
.cc-status.is-error {
  background: rgba(122,45,58,0.08);
  color: var(--maroon-lite);
  border: 1px solid rgba(122,45,58,0.2);
}
.cc-status.is-success {
  background: rgba(199,170,104,0.14);
  color: var(--maroon-mid);
  border: 1px solid rgba(199,170,104,0.3);
}

.cc-privacy-note {
  margin-top: 18px;
  font-size: 0.76rem;
  color: var(--ink-faint);
  line-height: 1.6;
  text-align: center;
}

/* Calendly section */
.cc-calendly-section {
  padding: 96px 0 120px;
}
.cc-calendly-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}
.cc-calendly-intro h2 { font-size: 1.7rem; margin-bottom: 12px; }
.cc-calendly-intro p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.72; }

.cc-calendly-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--pearl);
  border: 1px solid rgba(183,155,165,0.22);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 8px;
}
.calendly-inline-widget {
  min-width: 280px;
  height: 700px;
}

@media (max-width: 640px) {
  .cc-hero { padding: 72px 0 48px; }
  .cc-panel { padding: 30px 20px; }
  .cc-row2 { grid-template-columns: 1fr; gap: 0; }
  .cc-progress { flex-wrap: wrap; gap: 8px; }
  .cc-calendly-section { padding: 64px 0 80px; }
  .calendly-inline-widget { height: 780px; }
}
