/* ───────────── Nav ───────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}
.nav.scrolled { border-color: var(--line); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
}
.nav-inner--no-logo {
  justify-content: flex-end;
}
.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
}
.logo .mark { color: var(--clay); font-size: 22px; }
.logo .a { font-weight: 400; }
.logo .b { font-weight: 600; }
.logo-img { height: 22px; width: auto; display: block; }
.foot-logo .logo-img { height: 86px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a:not(.btn) {
  color: var(--ink);
  text-decoration: none;
  font-size: 14.5px;
  opacity: 0.78;
  transition: opacity .2s;
}
.nav-links a:not(.btn):hover { opacity: 1; }
.nav-burger { display: none; }

/* ───────────── Hero ───────────── */
.hero {
  padding: 50px 0 130px;
  position: relative;
  overflow: hidden;
}
.hero .curve {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 28px;
}
.hero h1 .it { font-style: italic; color: var(--clay); font-family: var(--f-sans); }
.hero p.lede {
  margin: 28px 0 0;
  max-width: 380px;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.60;
}
.hero-ctas {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.hero-tilde {
  display: block;
  height: 26px;
  width: auto;
  max-width: 100%;
  align-self: flex-start;
  margin-top: 28px;
}
.hero-right {
  position: absolute;
  top: -80px;
  right: 1%;
  bottom: 0;
  width: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
}
.hero-right .script {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 96px;
  color: var(--clay);
  line-height: 0.9;
  white-space: nowrap;
  pointer-events: all;
}

/* ───────────── Steps ───────────── */
.section-cream { background: var(--paper); }
.steps-head {
  margin-bottom: 60px;
}
.steps-head p {
  color: var(--muted);
  margin: 18px 0 0;
  max-width: 520px;
  font-size: 15.5px;
}
.steps {
  display: flex;
  flex-direction: column;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  left: 42px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: repeating-linear-gradient(to bottom, var(--clay) 0 4px, transparent 4px 10px);
}
.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  align-items: start;
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step:first-child { border-top: 1px solid var(--line); }
.step-num {
  font-family: var(--f-sans);
  font-size: 14px;
  color: var(--clay);
  letter-spacing: 0.1em;
  padding-left: 8px;
  z-index: 1;
  background: var(--paper);
  width: 30px;
  text-align: center;
}
.step-body { display: grid; grid-template-columns: 1.1fr 2fr; gap: 40px; }
.step h3 { font-size: 21px; font-weight: 500; }
.step .tag {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}
.step p {
  color: var(--muted);
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
}

/* ───────────── Services ───────────── */
.services-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.services-head h2 { margin-top: 18px; }
.services-head p {
  color: var(--muted);
  margin: 22px 0 0;
  max-width: 520px;
  font-size: 15.5px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  grid-auto-rows: auto;
}

/* ───────────── Audience ───────────── */
.audience { background: var(--cream); }
.aud-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 80px;
}
.aud-head h2 { margin-top: 18px; }
.aud-head h2 em { font-family: var(--f-sans); font-style: italic; color: var(--clay); }
.aud-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.aud-cell {
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.aud-cell-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  background-repeat: no-repeat;
}
.aud-cell-body {
  padding: 28px 32px 36px;
}
.aud-cell h3 { font-size: 19px; font-weight: 500; margin-bottom: 10px; }
.aud-cell p { color: var(--muted); margin: 0; font-size: 14px; line-height: 1.55; max-width: 320px; }

/* ───────────── Script banner ───────────── */
.banner {
  background: var(--peach);
  text-align: center;
  padding: 50px 20px;
}
.banner .script {
  color: var(--paper);
  font-size: 86px;
  line-height: 1;
}

/* ───────────── Nurse ───────────── */
.nurse {
  background: var(--paper);
  padding: 80px 0;
}
.nurse-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.nurse-img {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #d8cdb3 0 14px, #cfc3a6 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nurse-img .ph {
  font-family: 'DM Sans', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(48,50,30,0.45);
  background: rgba(254,250,241,0.7);
  padding: 6px 12px;
  border-radius: 6px;
}
.nurse-img .tag {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: var(--clay);
  color: var(--paper);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.nurse-body h2 { margin-top: 22px; line-height: 1.05; }
.nurse-body h2 em { font-style: italic; color: var(--clay); font-family: var(--f-sans); }
.nurse-body > p {
  margin: 28px 0 0;
  color: var(--ink-2);
  max-width: 460px;
  font-size: 15.5px;
  line-height: 1.65;
}
.nurse-stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 520px;
}
.stat .tag {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
}
.stat strong { display: block; font-weight: 500; font-size: 15px; margin-bottom: 4px; }
.stat p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.45; }

/* ───────────── Testimonials ───────────── */
.testi {
  background: var(--ink-2);
  color: var(--paper);
  padding: 80px 0;
}
.testi .eyebrow { color: rgba(254,250,241,0.6); }
.testi .eyebrow::before { background: var(--clay); }
.testi h2 { margin-top: 18px; color: var(--paper); }
.testi-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* ───────────── FAQ ───────────── */
.faq { background: var(--paper); padding: 120px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.faq-left h2 { margin-top: 22px; line-height: 1.08; }
.faq-left h2 em { font-family: var(--f-sans); font-style: italic; color: var(--clay); }
.faq-left p {
  margin: 28px 0 36px;
  color: var(--muted);
  font-size: 14.5px;
  max-width: 320px;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  user-select: none;
  transition: color .2s;
}
.faq-q:hover { color: var(--clay); }
.faq-q .plus {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--clay);
  font-size: 18px;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 540px;
}


  /* ───────────── B2B / Clínicas ───────────── */
  .b2b {
    background: var(--paper);
    padding: 40px 0 110px;
  }
  .b2b-card {
    background: var(--cream);
    border-radius: 24px;
    padding: 56px 60px;
    display: grid;
    grid-template-columns: 0.85fr 1.3fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .b2b-card::before {
    content: '';
    position: absolute;
    inset: auto -80px -80px auto;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(183,129,96,0.18), transparent 60%);
    pointer-events: none;
  }
  .b2b-aside {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px 28px;
    background: var(--paper);
    border-radius: 18px;
    z-index: 1;
  }
  .b2b-aside .hero-tilde { margin-top: 0; }
  .b2b-pill {
    align-self: flex-start;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clay);
    background: rgba(183,129,96,0.12);
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 500;
    white-space: nowrap;
  }
  .b2b-glyph {
    font-family: var(--f-script);
    font-size: 110px;
    color: var(--clay);
    line-height: 0.6;
    margin: 6px 0 0;
  }
  .b2b-checklist {
    list-style: none;
    padding: 18px 0 0;
    margin: 0;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 12px;
  }
  .b2b-checklist li {
    font-size: 13.5px;
    color: var(--ink-2);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .b2b-checklist li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--clay);
    flex-shrink: 0;
  }
  .b2b-body { position: relative; z-index: 1; }
  .b2b-body h2 {
    font-size: 40px;
    line-height: 1.1;
    margin: 18px 0 22px;
  }
  .b2b-body h2 em { font-style: italic; color: var(--clay); font-family: var(--f-sans); }
  .b2b-body p {
    color: var(--ink-2);
    font-size: 15.5px;
    line-height: 1.65;
    margin: 0 0 32px;
    max-width: 540px;
  }
  .b2b-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

  @media (max-width: 980px) {
    .b2b-card { grid-template-columns: 1fr; padding: 40px 32px; gap: 32px; }
    .b2b-body h2 { font-size: 30px; }
  }

/* ───────────── CTA / Contact ───────────── */
.cta {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0;
}
.cta .eyebrow { color: rgba(254,250,241,0.55); }
.cta .eyebrow::before { background: var(--clay); }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: start;
}
.cta-left h2 {
  color: var(--paper);
  font-size: 56px;
  line-height: 0.98;
  margin-top: 22px;
}
.cta-direction { color: var(--clay) !important; font-size: 48px; font-style: italic !important; font-family: var(--f-sans) !important; line-height: 1.08; letter-spacing: -0.015em; font-weight: 500; }
.cta-left .sub {
  margin: 16px 0 50px;
  color: rgba(254,250,241,0.7);
  max-width: 380px;
  font-size: 14.5px;
  line-height: 1.6;
}
.cta-contact {
  display: grid;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(254,250,241,0.12);
}
.cta-contact .row { display: grid; grid-template-columns: 120px 1fr; gap: 16px; }
.cta-contact .tag {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(254,250,241,0.5);
  padding-top: 3px;
}
.cta-contact .val { font-size: 14px; color: var(--paper); }
.cta-contact .val small { display: block; color: rgba(254,250,241,0.5); font-size: 12px; margin-top: 3px; }

/* ───────────── Footer ───────────── */
footer.site {
  background: var(--ink);
  color: rgba(254,250,241,0.7);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(254,250,241,0.08);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(254,250,241,0.08);
}
.foot-logo .logo { color: var(--paper); font-size: 26px; }
.foot-logo .logo .mark { color: var(--clay); }
.foot-logo p {
  margin: 18px 0 0;
  font-size: 12.5px;
  color: rgba(254,250,241,0.5);
  max-width: 220px;
  line-height: 1.6;
}
.foot-col h4 {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(254,250,241,0.45);
  margin-bottom: 16px;
  font-weight: 500;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-col a {
  color: rgba(254,250,241,0.78);
  text-decoration: none;
  font-size: 13.5px;
  transition: color .2s;
}
.foot-col a:hover { color: var(--clay); }
.foot-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(254,250,241,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(254,250,241,0.4);
}
.foot-credit { color: rgba(254,250,241,0.3); }
.foot-credit a {
  color: rgba(254,250,241,0.55);
  /* color: --var(--clay); */
  text-decoration: none;
  letter-spacing: 0.06em;
  /* text-transform: uppercase; */
  font-size: 10.5px;
  font-weight: 500;
  transition: color .2s;
}
.foot-credit a:hover { color: var(--clay); }

/* ───────────── About (team) ───────────── */
.about-intro {
  max-width: 860px;
  margin: 0 auto 64px;
  text-align: center;
}
.about-intro .eyebrow { justify-content: center; }
.about-intro .eyebrow::after { display: none; }
.about-intro h2 { margin: 18px 0 24px; text-wrap: balance; }
.about-intro h2 em { font-style: italic; color: var(--clay); font-family: var(--f-sans); }
.about-intro > p { color: var(--muted); font-size: 17px; line-height: 1.65; }
.about-intro > p strong { color: var(--ink); font-weight: 600; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 820px) { .team-grid { grid-template-columns: 1fr; gap: 28px; } }

.team-card {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 24px;
  background: var(--paper);
  border: 0.1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
@media (max-width: 540px) { .team-card { grid-template-columns: 1fr; } }

.team-photo {
  overflow: hidden;
  background: #e8e2d4;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
}
@media (max-width: 540px) { .team-photo { aspect-ratio: 4 / 5; } }

.team-body {
  padding: 22px 24px 22px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 540px) { .team-body { padding: 28px; } }

.team-coren {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
  margin-bottom: 12px;
}
.team-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.15;
  margin-bottom: 6px;
  color: var(--ink);
}
.team-role {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--clay);
  font-size: 17px;
  margin-bottom: 14px;
}
.team-bio {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

.about-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 0.1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: center;
  flex-wrap: wrap;
}

/* ───────────── Responsive ───────────── */
@media (max-width: 980px) {
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  .hero-grid, .nurse-grid, .faq-grid, .cta-grid, .steps-head { grid-template-columns: 1fr; gap: 40px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .aud-grid { grid-template-columns: 1fr; }
  .aud-cell-img { height: 180px; }
  .foot-grid { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
  .foot-logo { grid-column: 1 / -1; margin-bottom: 16px; }
  .foot-logo .logo-img { height: 60px; }
  .foot-bottom { flex-direction: column; gap: 6px; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 49;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { font-size: 20px; opacity: 1; }
  .nav-links .btn { margin-top: 8px; }
  .nav-burger { display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 51;
  }
  .nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
  }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .step-body { grid-template-columns: 1fr; gap: 8px; }
  .hero-right { display: none; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 22px; }
  .nav-inner { padding-top: 24px; padding-bottom: 24px; }
  section { padding: 40px 0; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .service-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero { padding: 8px 0 40px; }
  .hero-grid { margin-top: 12px; }
  .hero p.lede { max-width: 100%; }
  .hero-ctas { flex-wrap: wrap; }
  .faq { padding-bottom: 40px; }
  .b2b { padding-top: 24px; }
}
