@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;1,6..72,400&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #f5f8f7;
  --bg-alt: #ebf2ee;
  --bg-soft: #e8f0f0;
  --white: #ffffff;
  --dark: #133d44;
  --primary: #1a565f;
  --primary-border: #2d6f78;
  --text: #52605e;
  --text-soft: #587c6f;
  --text-muted: #415250;
  --ink: #3f4b49;
  --nav-text: #222d2b;
  --border: #dfe7e4;
  --border-soft: #d9e4e0;
  --footer-bg: #133d44;
  --footer-text: #d6e4df;
  --footer-heading: #9fc2b4;
  --footer-border: #2b5860;
  --mint-soft: #b5d2c6;
  --mint-pale: #c5d9d1;
  --cycle-bg: #1f484f;
  --cycle-border: #315f67;

  --font-serif: 'Newsreader', Georgia, serif;
  --font-sans: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

/* Scroll-reveal animations: elements fade/rise into place as they enter
   the viewport (see main.js). JS adds `.reveal` to hide an element and
   `.is-visible` to animate it in, then removes both classes once the
   animation has finished so the element goes back to its normal styles.

   The `html` prefix bumps specificity above single-class rules like
   `.btn` or `.step-card` that define their own `transition` (for hover
   effects) — without it, those later rules would silently replace this
   fade/rise transition and the element would just snap into place.
   Delays are set per-property in the shorthand so they only apply to
   the reveal, not to anything else the element transitions. */
html .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease var(--reveal-delay, 0s),
              transform 0.7s ease var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

/* Full-bleed sections: each section's own box (background, border) can span
   the full viewport width, while its content is capped and centered at 1300px. */
.site-header,
.hero,
.hero-wide,
.contact-hero,
.empathy-hook,
.meet-section,
.formats-section,
.dark-banner,
.steps-section,
.faq-section,
.final-cta,
.site-footer,
.split-section,
.intro-section,
.narrative-section,
.credentials-section,
.fees-section,
.signs-section,
.pattern-section,
.text-section,
.connect-section {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}

.site-header::before,
.hero::before,
.hero-wide::before,
.contact-hero::before,
.empathy-hook::before,
.meet-section::before,
.formats-section::before,
.dark-banner::before,
.steps-section::before,
.faq-section::before,
.final-cta::before,
.site-footer::before,
.split-section::before,
.intro-section::before,
.narrative-section::before,
.credentials-section::before,
.fees-section::before,
.signs-section::before,
.pattern-section::before,
.text-section::before,
.connect-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background-color: inherit;
  border-top: inherit;
  border-bottom: inherit;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Tone overrides: force a section's background to alternate correctly
   against its neighbors on a given page, without touching the shared
   default used by that same section class on other pages. */
.tone-light {
  background: var(--bg) !important;
}

.tone-alt {
  background: var(--bg-alt) !important;
}

.section {
  padding: 120px 80px;
}

.section-narrow {
  padding: 80px 80px;
}

.eyebrow-pill {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.dark-banner .eyebrow-pill,
.split-section.dark .eyebrow-pill {
  color: var(--footer-heading);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--text-soft);
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 100px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  border: none;
  white-space: nowrap;
  transition: background 0.4s ease;
}

.btn img {
  width: 14.56px;
  height: 14.56px;
  filter: brightness(0) invert(1);
  transition: transform 0.4s ease;
}

.btn:hover {
  background: var(--dark);
}

.btn:hover img {
  transform: translateX(10px);
}

.btn-sm {
  padding: 12px 24px;
  font-size: 14px;
  gap: 8px;
}

.btn-sm img {
  width: 12.6px;
  height: 12.6px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link-arrow img {
  width: 10.4px;
  height: 10.4px;
}

.link:hover {
  text-decoration: underline;
}

.link-down {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* The shared arrow icon points right; rotating it 90deg points it down,
   and the hover nudge translates along the rotated axis (i.e. downward). */
.link-down img {
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.link-down:hover img {
  transform: rotate(90deg) translateX(4px);
}

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 80px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand img {
  height: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Horizontal padding lives on every link (with a correspondingly smaller
   gap above) so the active pill doesn't shift the layout of its neighbors. */
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--nav-text);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a.active {
  font-weight: 700;
  color: var(--dark);
  background: rgba(26, 86, 95, 0.12);
}

.nav-links a:hover {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-links a.active:hover {
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-actions .client-login {
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s ease;
}

.nav-actions .client-login:hover {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
}

/* Hero */
.hero {
  background: var(--bg-alt);
  display: flex;
  gap: 64px;
  align-items: center;
  padding: 120px 80px;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1.15;
  color: var(--dark);
  font-weight: 400;
}

.hero .subhead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  color: var(--primary);
}

.hero p.body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

.hero-image {
  flex-shrink: 0;
  width: 540px;
  height: 580px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Understated inline trust row (sits under the hero button) */
.trust-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: -8px;
}

.trust-inline-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  white-space: nowrap;
}

.trust-inline-item img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  filter: brightness(0);
  opacity: 0.5;
}

/* Alternate treatment: a quiet credential strip with dividers, no icons */
.trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 6px;
  margin-top: -8px;
}

.trust-line-item {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 0 16px;
  border-left: 1px solid var(--border);
  line-height: 1;
  white-space: nowrap;
}

.trust-line-item:first-child {
  padding-left: 0;
  border-left: none;
}

/* Alternate treatment: small pill/slug badges */
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -8px;
}

/* Label/value credential list under the About hero headline */
.hero-facts {
  width: 100%;
  max-width: 480px;
  margin: 0;
}

.hero-fact {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px solid rgba(19, 61, 68, 0.15);
}

.hero-fact:last-child {
  border-bottom: 1px solid rgba(19, 61, 68, 0.15);
}

.hero-fact dt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero-fact dd {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--dark);
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
}

/* Empathy hook */
.empathy-hook {
  background: var(--bg-alt);
  padding: 120px 80px;
  text-align: center;
}

.empathy-hook p {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.25;
  color: var(--dark);
  max-width: 1100px;
  margin: 0 auto;
}

/* Meet section */
.meet-section {
  background: var(--bg);
  display: flex;
  gap: 80px;
  align-items: center;
  padding: 120px 80px;
}

.meet-portrait {
  border: 1px solid #d1d1d1;
  border-radius: 16px;
  width: 460px;
  height: 520px;
  overflow: hidden;
  flex-shrink: 0;
}

.meet-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meet-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.meet-content h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--dark);
  font-weight: 400;
}

.meet-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  white-space: pre-wrap;
}

.signature p {
  margin: 0;
  white-space: nowrap;
}

.signature .name {
  font-weight: 700;
  color: var(--dark);
  font-size: 15px;
}

.signature .org {
  font-weight: 400;
  color: var(--text);
  font-size: 13px;
}

/* Generic section header */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.section-header.align-left {
  align-items: flex-start;
  text-align: left;
  margin: 0;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--dark);
  font-weight: 400;
  line-height: 1.2;
}

.section-header p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

/* Session formats */
.formats-section {
  background: var(--bg-alt);
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.formats-grid {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.format-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.format-card-icon-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.format-icon {
  background: var(--bg-soft);
  width: 57.2px;
  height: 57.2px;
  border-radius: 28.6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.format-icon img {
  width: 26px;
  height: 26px;
}

.format-card h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 28px;
  color: var(--dark);
}

.format-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

/* Ways to work / dark banner */
.dark-banner {
  background: var(--primary);
  padding: 90px 80px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 96px;
  align-items: center;
}

.dark-banner .section-header {
  max-width: none;
}

.dark-banner-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}

.dark-banner .section-header h2,
.dark-banner-content p {
  color: var(--white);
}

.dark-banner-content p {
  color: #e4eeea;
}

.dark-banner .link-arrow,
.split-section.dark .link-arrow {
  color: #dce6e4;
}

.dark-banner .link-arrow img,
.split-section.dark .link-arrow img {
  filter: brightness(0) invert(1);
}

/* How to start / steps */
.steps-section {
  background: var(--bg);
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.step-card:hover {
  background: var(--bg-soft);
  border-color: var(--text-soft);
}

.step-badge {
  font-family: var(--font-serif);
  font-size: 44px;
  line-height: 1;
  color: var(--text-soft);
  width: fit-content;
}

.step-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  color: var(--dark);
}

.step-card p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
}

.steps-cta {
  display: flex;
  justify-content: center;
}

/* FAQ */
.faq-section {
  background: var(--bg-alt);
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  border-top: 1px solid var(--border);
}

/* Two-column FAQ variant: label left, accordion right */
.faq-columns {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 24px;
  align-items: start;
  width: 100%;
  max-width: 1200px;
}

.faq-columns-label {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-columns .faq-list {
  grid-column: 6 / span 7;
  max-width: none;
}

.callout {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.4;
  color: var(--primary);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 76px;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
}

.faq-trigger .question {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: var(--dark);
  flex: 1;
}

.faq-num {
  color: var(--text-soft);
  margin-right: 14px;
}

.faq-trigger img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-trigger img {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  max-width: 700px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding-bottom 0.25s ease;
  padding-bottom: 0;
}

.faq-item.open .faq-answer {
  padding-bottom: 24px;
}

/* Final CTA */
.final-cta {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.final-cta-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
}

.final-cta h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1.2;
  color: var(--dark);
  font-weight: 400;
}

.final-cta p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  padding: 56px 80px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-main {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-brand {
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-wrap {
  background: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 8px;
  width: fit-content;
}

.footer-logo-wrap img {
  height: 38.4px;
}

.footer-brand p {
  color: var(--footer-text);
  font-size: 14px;
  line-height: 1.5;
}

.footer-nav, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav {
  width: 180px;
}

.footer-contact {
  width: 280px;
  margin-left: auto;
}

.footer-heading {
  color: var(--footer-heading);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-nav a, .footer-contact p {
  color: var(--white);
  font-size: 14px;
  margin: 0;
}

.footer-nav a {
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #a8d8c4;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-associations {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.association-header-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.association-header-row .footer-heading {
  flex-shrink: 0;
}

.footer-separator {
  background: var(--footer-border);
  height: 1px;
  width: 100%;
  border: none;
}

.association-items-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.association-item {
  flex: 0 0 auto;
}

.logo-badge {
  background: var(--white);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 73px;
  width: fit-content;
  max-width: 100%;
}

.logo-badge img {
  height: 100%;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.crisis-note {
  color: var(--footer-text);
  font-size: 14px;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid var(--footer-border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: var(--footer-text);
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a {
  text-decoration: underline;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #a8d8c4;
}

/* Generic two-column hero variant (services / disconnect) */
.hero-wide {
  background: var(--bg-alt);
  display: flex;
  gap: 64px;
  align-items: center;
  padding: 120px 80px;
}

.hero-wide .hero-left {
  width: 588px;
  flex-shrink: 0;
}

.hero-wide .hero-image {
  width: auto;
  flex: 1;
}

/* Intro card (services) */
.intro-section {
  background: var(--bg-alt);
  padding: 120px 80px;
  display: flex;
  justify-content: center;
}

.intro-card {
  background: #fbfdfc;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 40px;
  max-width: 920px;
  box-shadow: 0 16px 16px rgba(44, 67, 63, 0.07), 0 2px 4px rgba(44, 67, 63, 0.04);
}

.intro-card p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Two column content + image section (eft-overview / dont-wait / why-couples-therapy) */
.split-section {
  background: var(--bg);
  padding: 120px 80px;
  display: flex;
  gap: 80px;
  align-items: center;
}

.split-section.alt-bg {
  background: var(--bg-alt);
}

.split-section.dark {
  background: var(--dark);
  border: 1px solid #22555d;
}

.split-section.dark .section-header h2,
.split-section.dark p.body,
.split-section.dark .meet-content p {
  color: var(--white);
}

.split-section.sticky-media {
  display: grid;
  grid-template-columns: 480px 1fr;
  align-items: stretch;
}

.eft-sticky {
  position: relative;
}

.split-visual {
  flex-shrink: 0;
  width: 480px;
  border-radius: 24px;
  overflow: hidden;
}

.split-visual.tall {
  height: 520px;
}

.split-visual.short {
  height: 440px;
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.split-content h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1.25;
  color: var(--dark);
  font-weight: 400;
}

.split-content p.body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}

.benefit-box {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}

.benefit-box .icon-circle-lg {
  background: var(--bg-soft);
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-box .icon-circle-lg img {
  width: 20px;
  height: 20px;
}

.benefit-box-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-box h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--dark);
}

.benefit-box p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

/* Narrative two-column text blocks (about) */
.narrative-section {
  background: var(--bg-alt);
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.narrative-blocks {
  display: flex;
  gap: 48px;
}

.narrative-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}

/* Credentials */
.credentials-section {
  background: var(--bg);
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.credentials-grid {
  display: flex;
  gap: 32px;
  width: 100%;
}

.cred-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cred-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cred-card .icon-circle-sm {
  background: var(--bg-soft);
  width: 36px;
  height: 36px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cred-card .icon-circle-sm img {
  width: 18px;
  height: 18px;
}

.cred-card h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--dark);
}

.cred-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

/* Fees table */
.fees-section {
  background: var(--bg);
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.fees-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 804px;
}

.fees-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fees-icon {
  background: var(--bg-soft);
  width: 52px;
  height: 52px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fees-icon img {
  width: 23.4px;
  height: 23.4px;
}

.fees-title-row h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--dark);
  flex: 1;
}

.fee-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.fees-table > .fee-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.fee-row .fee-name {
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
}

.fee-row .fee-price {
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
}

/* Signs / disconnection cards grid */
.signs-section {
  background: var(--bg-alt);
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 575px 1fr;
  gap: 48px;
}

.signs-section .section-header {
  position: sticky;
  top: 100px;
}

.signs-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.sign-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.sign-card .icon-circle-sq {
  background: var(--bg-soft);
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sign-card .icon-circle-sq img {
  width: 20px;
  height: 20px;
}

.sign-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--dark);
  font-weight: 400;
  margin-bottom: 8px;
}

.sign-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

/* Why roommates section */
.pattern-section {
  background: var(--bg-alt);
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pattern-intro-row {
  display: flex;
  gap: 48px;
  align-items: stretch;
}

.pattern-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  max-width: 615px;
}

.pattern-visual {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
}

.pattern-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cycle-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cycle-row {
  display: flex;
  gap: 24px;
}

.cycle-card {
  flex: 1;
  background: var(--dark);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cycle-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  color: var(--white);
}

.cycle-card p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--footer-text);
}

/* EFT text-only section (disconnect page) */
.text-section {
  background: var(--bg);
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.text-section p.body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

.eft-grid {
  display: flex;
  gap: 24px;
}

.eft-card {
  flex: 1;
  background: #f9fcfb;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 10px 12px rgba(19, 61, 68, 0.08);
}

.eft-card .num {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-soft);
}

.eft-card h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  color: var(--dark);
}

.eft-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

.text-center {
  text-align: center;
}

/* Contact page */
.contact-hero {
  background: var(--bg-alt);
  display: flex;
  gap: 42px;
  align-items: center;
  padding: 120px 80px;
}

.contact-hero .hero-left {
  width: 590px;
  flex-shrink: 0;
}

.contact-hero .hero-image {
  width: auto;
  flex: 1;
  height: 340px;
}

.connect-section {
  background: var(--bg);
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.connect-grid {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 24px;
  align-items: center;
}

.connect-info {
  grid-column: span 5;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.connect-info-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.connect-info-header p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  max-width: 400px;
}

.elsewhere-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.elsewhere-block h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  color: var(--dark);
  margin: 0;
}

.elsewhere-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-row {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px 24px;
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-row:hover {
  background: var(--white);
  border-color: var(--text-soft);
}

.contact-row .icon-circle-md {
  background: var(--primary);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-row .icon-circle-md img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.icon-circle-text {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--white);
}

.contact-row > div:not(.icon-circle-md) {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-row .value {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--dark);
  margin: 0;
}

.contact-row .sublink {
  font-size: 14px;
  color: var(--text);
  margin: 0;
}

.contact-row .row-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.connect-panel {
  grid-column: 7 / span 6;
  min-width: 0;
  background: var(--dark);
  border-radius: 32px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.connect-panel h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 28px;
  color: var(--white);
  margin: 0;
}

.connect-panel-row {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--primary);
  border-radius: 20px;
  padding: 20px 24px;
  min-width: 0;
}

.connect-panel-row > div {
  min-width: 0;
}

.connect-panel-row .icon-circle-dark {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.connect-panel-row .icon-circle-dark img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.connect-panel-row .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint-soft);
  margin: 0 0 2px;
}

.connect-panel-row .value {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--white);
  margin: 0;
  overflow-wrap: anywhere;
}

/* Responsive */
@media (max-width: 1100px) {
  .section, .hero, .meet-section, .dark-banner, .formats-section,
  .steps-section, .faq-section, .final-cta, .empathy-hook, .section-narrow,
  .connect-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .site-header, .site-footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  /* The icon+label rows and the large serif phone/email panel need more
     breathing room than a 5/12+6/12 split gives them once the viewport
     narrows past a typical desktop width, so stack this section here
     rather than waiting for the general 900px collapse. */
  .connect-grid {
    grid-template-columns: 1fr;
  }

  .connect-info,
  .connect-panel {
    grid-column: auto;
  }

  .connect-panel-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 900px) {
  /* Closed: just the logo and hamburger. Open: the page links, then
     Client Login and the CTA button stacked at the bottom of the menu. */
  .nav-links, .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-header.nav-open {
    flex-wrap: wrap;
  }

  .site-header.nav-open .nav-links {
    display: flex;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: 16px;
  }

  .site-header.nav-open .nav-actions {
    display: flex;
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 0 8px;
  }

  .site-header.nav-open .nav-actions .client-login {
    padding: 8px 14px;
  }

  .site-header.nav-open .nav-actions .btn {
    justify-content: center;
  }

  .hero, .meet-section {
    flex-direction: column;
  }

  /* When the hero stacks, lead with the photo instead of the text. */
  .hero-image-first .hero-image {
    order: -1;
  }

  .hero-image, .meet-portrait {
    width: 100%;
  }

  .formats-grid, .association-items-row {
    flex-direction: column;
  }

  .steps-row {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 36px;
  }

  .section-header h2, .final-cta h2 {
    font-size: 30px;
  }

  .hero-wide, .contact-hero, .split-section,
  .pattern-intro-row, .narrative-blocks, .credentials-grid,
  .eft-grid, .cycle-row {
    flex-direction: column;
  }

  .signs-section,
  .split-section.sticky-media,
  .dark-banner,
  .faq-columns,
  .connect-grid {
    grid-template-columns: 1fr;
  }

  .faq-columns .faq-list,
  .faq-columns-label,
  .connect-info,
  .connect-panel {
    grid-column: auto;
  }

  .connect-panel {
    padding: 32px;
  }

  .connect-panel-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero-wide .hero-left, .contact-hero .hero-left,
  .split-visual {
    width: 100%;
  }

  .signs-section .section-header {
    position: static;
  }

  .contact-hero .hero-image {
    width: 100%;
    height: 260px;
  }
}

/* Phones: tighten every section to half its desktop vertical padding and
   a consistent 24px on the sides. This lives last in the file so it
   overrides both the base rules and the earlier tablet-width tweaks
   (which only covered some sections, leaving others at 80px sides). */
@media (max-width: 640px) {
  .section, .hero, .hero-wide, .contact-hero, .meet-section, .empathy-hook,
  .formats-section, .steps-section, .faq-section, .final-cta, .intro-section,
  .split-section, .narrative-section, .credentials-section, .fees-section,
  .signs-section, .pattern-section, .text-section, .connect-section {
    padding: 60px 24px;
  }

  .dark-banner {
    padding: 45px 24px;
  }

  .section-narrow {
    padding: 40px 24px;
  }

  .site-header, .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}
