:root {
  --ink: #162424;
  --muted: #63706d;
  --deep: #102f2d;
  --deep-2: #164842;
  --aqua: #dbe8e1;
  --paper: #fffdf8;
  --ivory: #f8f1e6;
  --linen: #ede0cc;
  --champagne: #c6a15f;
  --copper: #9a654f;
  --sage: #738674;
  --herb: #526f55;
  --mint: #e5efe7;
  --wheat: #dfc58b;
  --line: rgba(16, 47, 45, 0.16);
  --line-dark: rgba(255, 253, 248, 0.18);
  --shadow: 0 28px 80px rgba(16, 47, 45, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1.1rem;
  font-size: 2.04rem;
  line-height: 1.05;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.08;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.26rem;
  line-height: 1.18;
}

p {
  color: var(--muted);
}

.narrative-title {
  margin-bottom: 1rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.08;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
  position: relative;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  background: var(--deep);
  color: var(--paper);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(16, 47, 45, 0.08);
  background: rgba(248, 241, 230, 0.9);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 14px 44px rgba(16, 47, 45, 0.09);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: max-content;
}

.brand-mark {
  display: block;
  width: clamp(46px, 5vw, 58px);
  height: clamp(46px, 5vw, 58px);
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: clamp(48px, 6vw, 64px);
  height: clamp(48px, 6vw, 64px);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.42rem, 2.3vw, 1.82rem);
  font-weight: 400;
  color: var(--deep);
  line-height: 1;
}

.brand-role {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-top: 4px;
}

.brand-crn {
  display: none;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.site-footer .brand-crn {
  color: rgba(255, 253, 248, 0.66);
}

.nav-links {
  position: fixed;
  inset: 74px 16px auto;
  display: grid;
  gap: 0.1rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links a {
  padding: 0.85rem 0.8rem;
  border-radius: 6px;
  color: #2f403e;
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(16, 47, 45, 0.08);
  outline: none;
}

.header-cta {
  display: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--deep);
}

.hero {
  overflow: hidden;
  background: #f6ecdd;
}

.hero-canvas {
  position: relative;
  padding: 34px 0 30px;
}

.hero-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(229, 239, 231, 0.72), transparent 28%),
    linear-gradient(112deg, rgba(255, 253, 248, 0.94) 0 45%, rgba(234, 221, 198, 0.66) 45% 100%),
    repeating-linear-gradient(90deg, rgba(16, 47, 45, 0.045) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(198, 161, 95, 0.09) 0 1px, transparent 1px 68px);
  pointer-events: none;
}

.hero-grid,
.thesis-grid,
.recovery-grid,
.care-map-grid,
.authority-grid,
.evidence-grid,
.about-grid,
.family-grid,
.proof-grid,
.location-grid,
.education-grid,
.faq-grid,
.final-cta-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid,
.signal-strip {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lede {
  display: block;
  margin-bottom: 1.05rem;
  max-width: 620px;
  color: #3f514d;
  font-size: 1rem;
  font-weight: 560;
  line-height: 1.68;
}

.hero-positioning {
  display: block;
  width: auto;
  max-width: 590px;
  margin-bottom: 1.05rem;
  padding: 0.12rem 0 0.12rem 1rem;
  border-left: 4px solid var(--champagne);
  color: var(--deep);
  font-size: 1rem;
  font-weight: 780;
  line-height: 1.46;
}

.hero-note {
  margin-bottom: 1.6rem;
  color: #ecd7ab;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.86rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  background: var(--deep);
  color: var(--paper);
  box-shadow: 0 18px 38px rgba(16, 47, 45, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #0b2523;
}

.button.quiet,
.button.secondary {
  border-color: rgba(16, 47, 45, 0.22);
  background: rgba(255, 253, 248, 0.72);
  color: var(--deep);
}

.button.light {
  background: var(--paper);
  color: var(--deep);
}

.button.ghost {
  border-color: rgba(255, 253, 248, 0.32);
  color: var(--paper);
}

.button.full {
  width: 100%;
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 0.95rem;
  color: var(--deep);
  font-size: 2.42rem;
  line-height: 0.98;
}

.hero .eyebrow {
  color: var(--copper);
}

.hero .button.primary {
  background: var(--deep);
  color: var(--paper);
  box-shadow: 0 18px 44px rgba(16, 47, 45, 0.2);
}

.hero .button.primary:hover,
.hero .button.primary:focus-visible {
  background: #0b2523;
}

.hero .button.quiet {
  border-color: rgba(16, 47, 45, 0.22);
  background: rgba(255, 253, 248, 0.72);
  color: var(--deep);
}

.hero-scroll-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-top: 0.86rem;
  color: var(--deep);
  font-size: 0.86rem;
  font-weight: 850;
}

.hero-scroll-link::after {
  content: "";
  width: 34px;
  height: 1px;
  margin-left: 0.65rem;
  background: linear-gradient(90deg, var(--champagne), rgba(82, 111, 85, 0.42));
}

.hero-assurance {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 253, 248, 0.16);
}

.hero-assurance span {
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.88rem;
  font-weight: 750;
}

.nutrition-board {
  display: grid;
  gap: 0.8rem;
  max-width: 540px;
  margin-top: 1.18rem;
  padding: 1rem;
  border: 1px solid rgba(16, 47, 45, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(247, 239, 226, 0.86));
  box-shadow: 0 18px 48px rgba(16, 47, 45, 0.09);
}

.nutrition-board > div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.72rem;
  border-bottom: 1px solid rgba(16, 47, 45, 0.12);
}

.nutrition-board strong {
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.1;
}

.nutrition-board > div span {
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.nutrition-board ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nutrition-board li {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  color: #31423f;
  font-size: 0.82rem;
  font-weight: 800;
}

.nutrition-board li b {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 47, 45, 0.11);
}

.nutrition-board li b::after {
  content: "";
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--herb), var(--champagne));
}

.nutrition-board li:nth-child(1) b::after {
  width: 78%;
}

.nutrition-board li:nth-child(2) b::after {
  width: 64%;
}

.nutrition-board li:nth-child(3) b::after {
  width: 52%;
}

.nutrition-board li:nth-child(4) b::after {
  width: 44%;
}

.hero-visual {
  order: 1;
  position: relative;
  max-width: 680px;
  margin-inline: auto;
  margin-top: 1.45rem;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero-portrait {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(198, 161, 95, 0.32);
  border-radius: var(--radius);
  background: var(--linen);
  box-shadow: 0 28px 80px rgba(16, 47, 45, 0.18);
}

.hero-portrait img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
  object-position: center;
}

.clinical-dossier {
  position: relative;
  width: auto;
  margin: -42px 12px 0;
  padding: 1rem;
  border: 1px solid rgba(198, 161, 95, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 18px 48px rgba(16, 47, 45, 0.16);
}

.clinical-dossier span,
.clinical-dossier li {
  color: var(--muted);
  font-size: 0.82rem;
}

.clinical-dossier span {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.clinical-dossier strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.16;
}

.nutrition-dossier {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(247, 239, 226, 0.96));
}

.dossier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.dossier-grid small {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(16, 47, 45, 0.12);
  border-radius: 999px;
  background: rgba(229, 239, 231, 0.72);
  color: var(--deep);
  font-size: 0.76rem;
  font-weight: 850;
}

.clinical-dossier ul,
.family-note ul,
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clinical-dossier li {
  display: flex;
  gap: 0.5rem;
  padding: 0.28rem 0;
}

.clinical-dossier li::before,
.family-note li::before,
.signal-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--champagne);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 0;
  padding: 0 0 46px;
}

.signal-strip span {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  padding: 0.58rem 0.7rem;
  border: 1px solid rgba(16, 47, 45, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(247, 239, 226, 0.74));
  color: var(--deep);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: left;
  box-shadow: 0 12px 30px rgba(16, 47, 45, 0.06);
}

.signal-strip span b {
  position: relative;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(198, 161, 95, 0.48);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(229, 239, 231, 0.95), rgba(255, 253, 248, 0.95));
}

.signal-strip span b::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  background: var(--herb);
}

.chapter-label {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.chapter-label span {
  display: grid;
  place-items: center;
  min-width: 54px;
  height: 54px;
  border: 1px solid rgba(198, 161, 95, 0.52);
  border-radius: 50%;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
}

.chapter-label p {
  margin: 0.55rem 0 0;
  color: var(--deep);
  font-weight: 800;
}

.chapter-label h2 {
  margin: 0.2rem 0 0;
  font-size: 2rem;
}

.thesis {
  background: var(--paper);
}

.thesis-signals {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.2rem;
  border: 1px solid rgba(16, 47, 45, 0.12);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(90deg, rgba(16, 47, 45, 0.045) 0 1px, transparent 1px 64px),
    linear-gradient(135deg, rgba(198, 161, 95, 0.12), rgba(255, 253, 248, 0.72)),
    var(--paper);
}

.signal-title {
  max-width: 420px;
  margin: 0;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.22;
}

.signal-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  padding: 0.58rem 0.65rem;
  border: 1px solid rgba(16, 47, 45, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.66);
  color: #334341;
  font-size: 0.96rem;
  font-weight: 750;
}

.thesis-copy p {
  font-size: 1.05rem;
}

.thesis-link {
  margin-top: 1.2rem;
}

blockquote {
  margin: 1.5rem 0 0;
  padding: 1.1rem 0 1.1rem 1.1rem;
  border-left: 3px solid var(--champagne);
  color: var(--deep);
  font-size: 1.35rem;
  line-height: 1.24;
}

.recovery {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 20%, rgba(198, 161, 95, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(229, 239, 231, 0.7), transparent 44%),
    var(--ivory);
}

.recovery-copy .hero-actions {
  margin-top: 1.35rem;
}

.recovery-board {
  display: grid;
  gap: 0.85rem;
  counter-reset: recovery-card;
}

.recovery-board div {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.15rem;
  padding: 1.12rem 1.15rem 1.12rem 1.35rem;
  border: 1px solid rgba(16, 47, 45, 0.12);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(90deg, rgba(16, 47, 45, 0.04) 0 1px, transparent 1px 42px),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(246, 237, 222, 0.92));
  box-shadow: 0 16px 42px rgba(16, 47, 45, 0.07);
}

.recovery-board div::before {
  counter-increment: recovery-card;
  content: "0" counter(recovery-card);
  position: absolute;
  right: 0.9rem;
  top: 0.72rem;
  color: rgba(16, 47, 45, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.9rem;
  line-height: 1;
  pointer-events: none;
}

.recovery-board div::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 0;
  background: linear-gradient(180deg, var(--champagne), var(--herb));
}

.recovery-board span {
  position: relative;
  z-index: 1;
  width: max-content;
  padding: 0.32rem 0.58rem;
  border: 1px solid rgba(198, 161, 95, 0.38);
  border-radius: 999px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recovery-board strong {
  position: relative;
  z-index: 1;
  max-width: 330px;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.2;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading p {
  font-size: 1.02rem;
}

.case-entry {
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.045) 0 1px, transparent 1px 88px),
    linear-gradient(135deg, rgba(198, 161, 95, 0.11), transparent 36%),
    var(--deep);
  color: var(--paper);
}

.case-entry .eyebrow {
  color: #ecd7ab;
}

.case-entry h2 {
  color: var(--paper);
}

.case-entry .section-heading {
  max-width: none;
}

.case-entry .section-heading p {
  color: rgba(255, 253, 248, 0.74);
}

.entry-grid {
  display: grid;
  gap: 1rem;
  counter-reset: entry-card;
}

.entry-card {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(246, 237, 222, 0.96));
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
}

.entry-card::before {
  counter-increment: entry-card;
  content: "0" counter(entry-card);
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  color: rgba(16, 47, 45, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.8rem;
  line-height: 1;
  pointer-events: none;
}

.entry-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--champagne), var(--herb));
}

.entry-card.featured {
  background:
    linear-gradient(160deg, rgba(16, 47, 45, 0.97), rgba(8, 35, 33, 0.98));
  color: var(--paper);
  border-color: rgba(198, 161, 95, 0.42);
}

.entry-card.featured::before {
  color: rgba(255, 253, 248, 0.1);
}

.entry-card span {
  position: relative;
  z-index: 1;
  width: max-content;
  margin-bottom: 1.45rem;
  padding: 0.32rem 0.6rem;
  border: 1px solid rgba(198, 161, 95, 0.38);
  border-radius: 999px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.entry-card.featured span {
  color: #ecd7ab;
}

.entry-card h3 {
  position: relative;
  z-index: 1;
  color: var(--deep);
}

.entry-card.featured h3,
.entry-card.featured p {
  color: var(--paper);
}

.entry-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.nutrition-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin-top: auto;
  padding-top: 1.05rem;
}

.nutrition-tags small {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.52rem;
  border: 1px solid rgba(16, 47, 45, 0.13);
  border-radius: 999px;
  background: rgba(229, 239, 231, 0.7);
  color: var(--deep);
  font-size: 0.73rem;
  font-weight: 850;
}

.entry-card.featured .nutrition-tags small {
  border-color: rgba(236, 215, 171, 0.28);
  background: rgba(255, 253, 248, 0.08);
  color: #ecd7ab;
}

.audience-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.audience-cloud span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.08);
  color: rgba(255, 253, 248, 0.86);
  font-size: 0.86rem;
  font-weight: 800;
}

.care-map {
  background:
    linear-gradient(90deg, rgba(229, 239, 231, 0.55), transparent 42%),
    var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--deep);
  font-weight: 850;
  transition: transform 180ms ease;
}

.text-link::after {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--champagne);
}

.care-photo {
  margin: 1.6rem 0 0;
  overflow: hidden;
  border: 1px solid rgba(16, 47, 45, 0.12);
  border-radius: var(--radius);
  background: var(--linen);
  box-shadow: 0 18px 54px rgba(16, 47, 45, 0.1);
}

.care-photo img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center top;
}

.method-steps {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  position: relative;
  overflow: hidden;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(245, 236, 222, 0.92)),
    var(--paper);
  box-shadow: 0 16px 42px rgba(16, 47, 45, 0.06);
}

.method-steps li::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--champagne), var(--herb));
}

.method-steps span {
  display: inline-flex;
  margin-bottom: 1.2rem;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
}

.method-steps h3 {
  color: var(--deep);
}

.method-steps p {
  margin-bottom: 0;
}

.step-axis {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin-top: 0.95rem;
}

.step-axis em {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.52rem;
  border: 1px solid rgba(16, 47, 45, 0.12);
  border-radius: 999px;
  background: var(--mint);
  color: var(--deep);
  font-size: 0.73rem;
  font-style: normal;
  font-weight: 850;
}

.authority,
.final-cta {
  background:
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.045) 0 1px, transparent 1px 86px),
    var(--deep);
  color: var(--paper);
}

.authority p,
.final-cta p,
.final-cta small {
  color: rgba(255, 253, 248, 0.74);
}

.authority .eyebrow,
.final-cta .eyebrow {
  color: #ecd7ab;
}

.authority h2,
.final-cta h2 {
  color: var(--paper);
}

.authority-panel {
  padding: 1.2rem 0;
}

.authority-quote {
  margin: 1.4rem 0 0;
  padding: 1rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.06);
  color: var(--paper) !important;
  font-weight: 750;
}

.authority-list {
  display: grid;
  gap: 0.7rem;
}

.authority-list div {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.95rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.055);
}

.authority-list div::after {
  content: "";
  position: absolute;
  right: 0.9rem;
  bottom: 0.75rem;
  width: 58px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(236, 215, 171, 0.72), rgba(115, 134, 116, 0.72));
}

.authority-list span {
  color: #ecd7ab;
  font-family: Georgia, "Times New Roman", serif;
}

.authority-list strong {
  color: var(--paper);
  line-height: 1.25;
}

.evidence {
  background:
    linear-gradient(135deg, rgba(198, 161, 95, 0.13), transparent 38%),
    var(--paper);
}

.evidence-grid {
  align-items: start;
}

.evidence-copy p {
  font-size: 1.05rem;
}

.evidence-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.evidence-list span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0.56rem 0.75rem;
  border: 1px solid rgba(16, 47, 45, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(245, 236, 222, 0.82));
  color: var(--deep);
  font-weight: 850;
}

.conditions {
  background:
    linear-gradient(180deg, #f6ecdd, #efe1cd);
}

.split-heading {
  display: grid;
  gap: 1rem;
  max-width: none;
}

.condition-board {
  display: grid;
  border-top: 1px solid var(--line);
}

.condition-board a {
  position: relative;
  display: grid;
  gap: 0.28rem;
  min-height: 82px;
  padding: 0.95rem 2.5rem 0.95rem 1.05rem;
  border-bottom: 1px solid var(--line);
  color: var(--deep);
  font-weight: 850;
}

.condition-board a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.12rem;
  width: 6px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--champagne), var(--herb));
}

.condition-board a span {
  line-height: 1.25;
}

.condition-board a small {
  color: #60706c;
  font-size: 0.84rem;
  font-weight: 720;
  line-height: 1.35;
}

.condition-board a::after {
  content: "\2192";
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.condition-board a:hover,
.condition-board a:focus-visible {
  color: var(--copper);
  outline: none;
}

.about {
  background: var(--paper);
}

.about-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.identity-pills,
.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.identity-pills span,
.topic-cloud span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(16, 47, 45, 0.15);
  border-radius: 999px;
  background: #f5ecde;
  color: var(--deep);
  font-size: 0.86rem;
  font-weight: 800;
}

.nutrition-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.2rem;
  padding: 0.85rem;
  border: 1px solid rgba(16, 47, 45, 0.13);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(90deg, rgba(16, 47, 45, 0.04) 0 1px, transparent 1px 42px),
    rgba(255, 253, 248, 0.72);
}

.nutrition-scope strong {
  flex: 0 0 100%;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.15;
}

.nutrition-scope span {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.55rem;
  border: 1px solid rgba(16, 47, 45, 0.12);
  border-radius: 999px;
  background: var(--mint);
  color: var(--deep);
  font-size: 0.76rem;
  font-weight: 850;
}

.family {
  background:
    linear-gradient(rgba(16, 47, 45, 0.83), rgba(16, 47, 45, 0.9)),
    url("assets/images/foto-consultorio.webp") center / cover;
  color: var(--paper);
}

.family p {
  color: rgba(255, 253, 248, 0.76);
}

.family .narrative-title {
  color: var(--paper);
}

.family .eyebrow {
  color: #ecd7ab;
}

.family h2 {
  color: var(--paper);
}

.family-note {
  padding: 1.1rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.12), rgba(255, 253, 248, 0.07));
  backdrop-filter: blur(10px);
}

.family-note h3 {
  color: var(--paper);
}

.family-note ul {
  display: grid;
  gap: 0.62rem;
}

.family-note li {
  display: flex;
  gap: 0.55rem;
  padding-bottom: 0.52rem;
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
  color: rgba(255, 253, 248, 0.86);
}

.family-note li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.proof {
  background:
    radial-gradient(circle at 12% 20%, rgba(115, 134, 116, 0.14), transparent 30%),
    linear-gradient(180deg, #f6ecdd, var(--paper));
}

.proof-grid {
  align-items: start;
}

.proof-cards {
  display: grid;
  gap: 0.8rem;
}

.proof-cards article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 1.15rem;
  border: 1px solid rgba(16, 47, 45, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(246, 237, 222, 0.9));
  box-shadow: 0 18px 48px rgba(16, 47, 45, 0.08);
}

.proof-cards article::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--champagne), var(--herb));
}

.proof-cards span {
  display: inline-flex;
  margin-bottom: 1.2rem;
  padding: 0.32rem 0.58rem;
  border: 1px solid rgba(198, 161, 95, 0.38);
  border-radius: 999px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-cards strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.18;
}

.location {
  background: var(--ivory);
}

.location-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.location-image img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.contact-card {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 239, 226, 0.98));
  box-shadow: 0 16px 44px rgba(16, 47, 45, 0.07);
}

.contact-actions {
  flex-direction: column;
}

.contact-actions .button {
  width: 100%;
}

.contact-lines {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0;
}

.contact-lines div {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.contact-lines span {
  display: block;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-lines strong {
  display: block;
  margin-top: 0.2rem;
  color: var(--deep);
  line-height: 1.35;
}

.consult-prep {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 1.2rem 0;
  padding: 0.9rem;
  border: 1px solid rgba(16, 47, 45, 0.13);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(90deg, rgba(16, 47, 45, 0.04) 0 1px, transparent 1px 46px),
    rgba(229, 239, 231, 0.54);
}

.consult-prep strong {
  grid-column: 1 / -1;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.15;
}

.consult-prep span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.5rem;
  border: 1px solid rgba(16, 47, 45, 0.11);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--deep);
  font-size: 0.76rem;
  font-weight: 850;
}

.education {
  background: var(--paper);
}

.topic-cloud {
  margin: 1rem 0;
}

.faq {
  background: linear-gradient(180deg, var(--ivory), #f1e4d1);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  overflow: hidden;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 60px;
  padding: 1rem;
  color: var(--deep);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--deep);
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 1rem 1rem;
}

.final-cta {
  padding: 72px 0;
}

.final-cta-grid {
  align-items: center;
}

.site-footer {
  padding: 54px 0 32px;
  background: #0b2523;
  color: var(--paper);
}

.site-footer p,
.site-footer li,
.site-footer a,
.footer-bottom {
  color: rgba(255, 253, 248, 0.72);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 1rem;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.45rem;
}

.site-footer h3 {
  margin-bottom: 0.85rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 0.45rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--paper);
  outline: none;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 253, 248, 0.3);
  border-radius: 50%;
  background: #1f8f61;
  color: white;
  box-shadow: 0 16px 42px rgba(16, 47, 45, 0.24);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #188354;
  box-shadow: 0 18px 46px rgba(16, 47, 45, 0.3);
  transform: translateY(-2px);
  outline: none;
}

.legal-page {
  max-width: 840px;
  padding-block: 24px;
}

.legal-page h1 {
  margin-bottom: 1rem;
  color: var(--deep);
}

.legal-page h2 {
  margin-top: 2rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 560px) {
  h1 {
    font-size: 2.45rem;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .narrative-title {
    font-size: 2.45rem;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .signal-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .hero-assurance {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .signal-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .entry-grid,
  .recovery-board,
  .method-steps,
  .family-note ul,
  .evidence-list,
  .proof-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .entry-card {
    min-height: 280px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 880px) {
  .section,
  .final-cta {
    padding: 104px 0;
  }

  .hero-canvas {
    padding: 82px 0 56px;
  }

  h1 {
    font-size: 3.22rem;
  }

  h2 {
    font-size: 3.15rem;
  }

  .narrative-title {
    font-size: 3.15rem;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-links a {
    padding: 0.55rem 0.65rem;
    font-size: 0.86rem;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.62rem 0.9rem;
    border-radius: 999px;
    background: var(--deep);
    color: var(--paper);
    font-size: 0.86rem;
    font-weight: 850;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(460px, 0.96fr);
    align-items: center;
    gap: 4rem;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-lede {
    display: block;
    font-size: 1.07rem;
  }

  .hero-positioning {
    font-size: 1.08rem;
  }

  .hero h1 {
    max-width: 690px;
    font-size: 4.18rem;
  }

  .hero-visual {
    order: 1;
    max-width: 680px;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 76px;
  }

  .hero-portrait img {
    aspect-ratio: 16 / 11;
  }

  .clinical-dossier {
    position: absolute;
    right: -24px;
    bottom: 0;
    width: min(92%, 360px);
    margin: 0;
  }

  .thesis-grid,
  .recovery-grid,
  .care-map-grid,
  .authority-grid,
  .evidence-grid,
  .about-grid,
  .family-grid,
  .proof-grid,
  .location-grid,
  .education-grid,
  .faq-grid,
  .final-cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .thesis-grid,
  .evidence-grid,
  .proof-grid,
  .faq-grid {
    align-items: start;
  }

  .recovery-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    gap: 3rem;
  }

  .thesis-grid {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
    align-items: center;
    gap: 4rem;
  }

  .thesis-signals {
    min-height: 330px;
    padding: 1.45rem;
  }

  .entry-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .entry-card {
    min-height: 340px;
  }

  .entry-card span {
    margin-bottom: 1.4rem;
  }

  .method-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-heading {
    grid-template-columns: 1.08fr 0.75fr;
    align-items: end;
  }

  .case-entry .section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
    align-items: end;
    gap: 3rem;
  }

  .case-entry .section-heading p {
    margin-bottom: 0.35rem;
  }

  .condition-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 1fr 0.8fr;
  }
}

@media (min-width: 1120px) {
  .nav-links a {
    padding-inline: 0.82rem;
  }

  .header-cta {
    padding-inline: 1.05rem;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  h1 {
    font-size: 1.94rem;
  }

  .hero h1 {
    font-size: 2.08rem;
  }

  h2 {
    font-size: 1.84rem;
  }

  .narrative-title {
    font-size: 1.84rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }
  
  .brand-name {
    font-size: 1.4rem;
  }

  .clinical-dossier {
    width: auto;
    right: auto;
    left: auto;
  }

  .button {
    padding-inline: 0.9rem;
  }

  .nutrition-board > div,
  .nutrition-board li {
    display: block;
  }

  .nutrition-board > div span {
    display: block;
    margin-top: 0.25rem;
    text-align: left;
  }

  .nutrition-board li span {
    display: block;
    margin-bottom: 0.25rem;
  }

  .consult-prep {
    grid-template-columns: 1fr;
  }
}
