:root {
  --green: #55785f;
  --green-dark: #3f604b;
  --green-soft: #e7eee7;
  --ivory: #fbf7ee;
  --ivory-2: #f5eddf;
  --sand: #d4ac72;
  --sand-dark: #b98749;
  --ink: #25322b;
  --muted: #66726a;
  --line: #e7d8c2;
  --white: #fffdf8;
  --shadow: 0 18px 48px rgba(63, 96, 75, .12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 172, 114, .13), transparent 28%),
    radial-gradient(circle at 92% 26%, rgba(85, 120, 95, .10), transparent 30%),
    linear-gradient(180deg, var(--ivory), #fffaf2 46%, var(--ivory-2));
  font-family: var(--sans);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 238, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand img {
  width: 214px;
  height: 74px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .92rem;
}
.menu a {
  padding: 8px 0;
  color: #34443b;
  border-bottom: 2px solid transparent;
}
.menu a:hover, .menu a.active { color: var(--sand-dark); border-color: var(--sand); }
.menu a.btn {
  padding: 12px 18px;
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}
.menu a.btn:hover {
  color: #fff;
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 1.45rem;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--green-dark);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--sand);
  border-radius: 7px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  transition: .18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn.green { background: var(--green); border-color: var(--green); color: #fff; }
.btn.ghost { background: transparent; color: var(--sand-dark); }
.btn.block { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--ivory) 0%, var(--ivory) 42%, rgba(251,247,238,.65) 55%, rgba(251,247,238,0) 72%), var(--hero);
  background-size: cover;
  background-position: center right;
  border-bottom: 1px solid var(--line);
}
.hero-centered {
  background:
    linear-gradient(180deg, rgba(251,247,238,.20), rgba(37,50,43,.22)),
    var(--hero);
  background-size: cover;
  background-position: center;
}
.hero-centered .container {
  min-height: 430px;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  padding: 44px 0;
}
.hero-centered .hero-copy {
  max-width: 760px;
  padding: 26px;
  border: 1px solid rgba(255,253,248,.68);
  border-radius: 8px;
  background: rgba(251,247,238,.76);
  backdrop-filter: blur(6px);
}
.hero-centered .lead { margin-left: auto; margin-right: auto; }
.hero-centered .actions { justify-content: center; }
.hero-balanced {
  background:
    linear-gradient(90deg, rgba(251,247,238,.96) 0%, rgba(251,247,238,.90) 37%, rgba(251,247,238,.40) 62%, rgba(251,247,238,.04) 100%),
    var(--hero);
  background-size: cover;
  background-position: center right;
}
.hero-copy {
  padding: 22px 0;
}
.hero .container {
  min-height: 530px;
  display: grid;
  grid-template-columns: minmax(310px, 510px) 1fr;
  align-items: center;
  padding: 58px 0;
}
.eyebrow {
  color: var(--sand-dark);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 12px;
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  color: var(--green-dark);
  margin: 0;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 3.2vw, 3.35rem); }
h3 { font-size: 1.45rem; }
.lead {
  color: #35433a;
  font-size: 1.08rem;
  max-width: 620px;
  margin: 22px 0 28px;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; }

.section {
  position: relative;
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
}
.section::before {
  content: "";
  position: absolute;
  inset: 24px auto auto 0;
  width: 180px;
  height: 220px;
  pointer-events: none;
  opacity: .12;
  background:
    radial-gradient(ellipse at 45% 18%, transparent 38%, var(--sand) 39% 40%, transparent 41%),
    radial-gradient(ellipse at 68% 42%, transparent 38%, var(--green) 39% 40%, transparent 41%),
    radial-gradient(ellipse at 32% 62%, transparent 38%, var(--sand) 39% 40%, transparent 41%);
}
.section.tight { padding: 48px 0; }
.section.green-band {
  background: var(--green);
  color: #fff;
}
.section.green-band h2, .section.green-band h3 { color: #fff; }
.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 26px;
}
.compact-section { padding: 58px 0; }
.compact-split {
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
}
.section-title p { color: var(--muted); margin-top: 14px; }
.center-copy {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.center-copy .lead,
.center-copy p { margin-left: auto; margin-right: auto; }

.intro-grid, .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}
.compact-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
}
.compact-intro .portrait img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}
.intro-copy {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.intro-copy .lead { margin-left: auto; margin-right: auto; }
.portrait {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.soft-panel {
  background: rgba(255,255,255,.52);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.value-card {
  min-height: 190px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  padding: 22px 16px;
  background: rgba(255,253,248,.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(63,96,75,.08);
}
.value-card p {
  color: var(--muted);
  margin: 10px 0 0;
  font-size: .94rem;
}
.visual-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fffaf2;
}
.visual-icon::before,
.visual-icon::after {
  content: "";
  position: absolute;
  display: block;
}
.icon-leaf::before {
  width: 18px;
  height: 28px;
  border: 2px solid var(--green);
  border-radius: 90% 0 90% 0;
  transform: rotate(45deg);
}
.icon-heart::before,
.icon-heart::after {
  width: 14px;
  height: 22px;
  border: 2px solid var(--sand-dark);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}
.icon-heart::before { transform: rotate(-45deg); left: 12px; top: 12px; }
.icon-heart::after { transform: rotate(45deg); right: 12px; top: 12px; }
.icon-hands::before {
  width: 26px;
  height: 18px;
  border: 2px solid var(--green);
  border-top: 0;
  border-radius: 0 0 18px 18px;
}
.icon-bowl::before {
  width: 28px;
  height: 16px;
  border: 2px solid var(--sand-dark);
  border-top: 0;
  border-radius: 0 0 28px 28px;
}
.icon-calendar::before {
  width: 24px;
  height: 24px;
  border: 2px solid var(--green);
  border-radius: 4px;
}
.icon-search::before {
  width: 20px;
  height: 20px;
  border: 2px solid var(--sand-dark);
  border-radius: 50%;
}
.icon-search::after {
  width: 10px;
  height: 2px;
  background: var(--sand-dark);
  transform: rotate(45deg);
  right: 8px;
  bottom: 11px;
}
.feature {
  padding: 18px;
  border-left: 1px solid var(--line);
  text-align: center;
}
.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--sand-dark);
  border: 1px solid var(--line);
  border-radius: 50%;
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.feature p, .card p, .step p, .mini p { color: var(--muted); font-size: .95rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(63, 96, 75, .06);
}
.card-body { padding: 22px; text-align: center; }
.card img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
}
.card .meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--sand-dark);
  font-size: .86rem;
  margin-top: 12px;
}
.link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--sand-dark);
  font-weight: 700;
}
.reserve-link {
  width: fit-content;
  margin: 16px auto 0;
  padding: 9px 14px;
  border-bottom: 2px solid var(--sand);
  color: var(--green-dark);
  letter-spacing: .02em;
}
.reserve-link:hover {
  color: var(--sand-dark);
  background: rgba(218, 181, 117, .12);
}
.button-link {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.path-section {
  background: linear-gradient(180deg, rgba(255,253,248,.64), rgba(245,237,223,.72));
}
.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: none;
  margin: 0 auto;
}
.path-card {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  padding: 14px;
  background: rgba(255, 253, 248, .82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(63, 96, 75, .08);
}
.path-card img {
  width: 100%;
  aspect-ratio: 1.2 / .82;
  object-fit: cover;
  border-radius: 6px;
}
.path-number {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--sand-dark);
  letter-spacing: .16em;
  font-weight: 800;
  font-size: .78rem;
}
.path-card p { color: var(--muted); margin-bottom: 0; }
.path-card .link {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-dark);
  background: #fffaf2;
}

.gallery-section {
  background:
    linear-gradient(90deg, rgba(251,247,238,.92), rgba(251,247,238,.70)),
    linear-gradient(135deg, rgba(85,120,95,.08), rgba(212,172,114,.10));
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 14px;
}
.gallery-item {
  position: relative;
  min-height: 210px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  cursor: zoom-in;
}
.gallery-item.wide { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .24s ease, filter .24s ease;
}
.gallery-item:hover img {
  transform: scale(1.035);
  filter: saturate(1.05);
}
.gallery-item::after {
  content: "Ver imagen";
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  background: rgba(63, 96, 75, .88);
  color: #fff;
  border-radius: 999px;
  font-size: .78rem;
}

.reserve-section {
  background: linear-gradient(180deg, #fffaf2, var(--green-soft));
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(37, 50, 43, .58);
}
.modal.open { display: flex; }
.modal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(86vh, 780px);
  overflow: auto;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255,253,248,.98), rgba(245,237,223,.98));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--green-dark);
  cursor: pointer;
}
.modal-list {
  margin: 16px 0 22px;
  padding-left: 20px;
  color: var(--muted);
}
.therapy-modal {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: .92fr 1fr;
  gap: 28px;
  align-items: center;
}
.therapy-modal > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.gallery-panel {
  width: min(920px, 100%);
  padding: 18px;
}
.gallery-panel img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}
.gallery-panel p {
  margin: 12px 6px 0;
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-visual {
  background: linear-gradient(135deg, var(--green), #789378);
  color: #fff;
}
.process-visual .section-title h2,
.process-visual .section-title p { color: #fff; }
.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.process-strip article {
  min-height: 210px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  padding: 22px 16px;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 8px;
  background: rgba(255,255,255,.12);
}
.process-strip span {
  color: #f2d49d;
  letter-spacing: .14em;
  font-weight: 800;
  font-size: .78rem;
}
.process-strip h3 { color: #fff; }
.process-strip p {
  color: rgba(255,255,255,.84);
  margin: 8px 0 0;
}
.process-strip .visual-icon {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.30);
}
.process-strip .visual-icon::before,
.process-strip .visual-icon::after {
  border-color: #f2d49d;
}
.process-strip .icon-search::after { background: #f2d49d; }
.step {
  position: relative;
  padding: 26px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
}
.step b {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sand);
  color: #fff;
  margin-bottom: 14px;
}
.step p { color: rgba(255,255,255,.82); }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.quote .mark { color: var(--sand); font-size: 2rem; font-family: var(--serif); }
.quote cite { display: block; margin-top: 12px; color: var(--muted); font-style: normal; }

.cta {
  background: linear-gradient(90deg, var(--green), #6f8d72);
  color: #fff;
  border-radius: 8px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}
.centered-cta { flex-direction: column; }
.centered-cta .btn { margin: 0 auto; }

.therapy-choice-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  grid-auto-rows: minmax(238px, auto);
  gap: 16px;
}
.therapy-choice {
  position: relative;
  display: flex;
  min-height: 238px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.therapy-choice.large { grid-row: span 2; }
.therapy-choice.wide { grid-column: span 2; }
.therapy-choice img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .25s ease;
}
.therapy-choice::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(37,50,43,.06), rgba(37,50,43,.78));
}
.therapy-choice span,
.therapy-choice strong,
.therapy-choice small {
  position: relative;
  z-index: 2;
}
.therapy-choice span {
  color: #f2d49d;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 800;
}
.therapy-choice strong {
  margin: 6px 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
  font-weight: 400;
}
.therapy-choice small {
  max-width: 360px;
  font-size: .94rem;
  line-height: 1.45;
  color: rgba(255,255,255,.88);
}
.therapy-choice:hover img { transform: scale(1.04); }

.soft-map-section {
  background: linear-gradient(135deg, rgba(255,250,242,.94), rgba(231,238,231,.76));
}
.decision-list {
  display: grid;
  gap: 12px;
}
.decision-grid {
  grid-template-columns: repeat(2, 1fr);
}
.decision-list button {
  display: grid;
  gap: 10px;
  justify-items: center;
  align-content: center;
  width: 100%;
  min-height: 180px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,253,248,.78);
  color: var(--ink);
  text-align: center;
  cursor: pointer;
}
.decision-list button:hover {
  border-color: var(--sand);
  box-shadow: var(--shadow);
}
.decision-list b { font-family: var(--serif); color: var(--green-dark); font-size: 1.12rem; font-weight: 400; }
.decision-list span { color: var(--sand-dark); font-size: .86rem; font-weight: 800; }

.therapy-gallery .gallery-item { min-height: 250px; }
.cta h2, .cta h3 { color: #fff; }
.cta p { color: rgba(255,255,255,.85); }

.tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.tab {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: 18px;
  text-align: left;
  color: var(--green-dark);
  font-weight: 700;
  cursor: pointer;
}
.tab.active { background: var(--green); color: #fff; border-color: var(--green); }
.therapy-group { display: none; }
.therapy-group.active { display: grid; }

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  border-top: 2px solid var(--line);
  padding-top: 24px;
}
.time b { color: var(--sand-dark); }
.time p { color: var(--muted); font-size: .9rem; }

.formation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.formation-card {
  min-height: 230px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,253,248,.92), rgba(231,238,231,.62));
  color: var(--ink);
  text-align: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(63,96,75,.08);
}
.formation-card:hover {
  transform: translateY(-2px);
  border-color: var(--sand);
  box-shadow: var(--shadow);
}
.formation-card p { color: var(--muted); margin: 0; }
.formation-modal {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  align-items: center;
}
.formation-modal img {
  width: 100%;
  aspect-ratio: 1 / .9;
  object-fit: cover;
  border-radius: 8px;
}
.mission-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: center;
}
.visual-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.visual-timeline::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sand), var(--green), transparent);
}
.visual-timeline article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 18px 12px;
  text-align: center;
  background: rgba(255,253,248,.84);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(63,96,75,.06);
}
.visual-timeline span {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--green-dark);
  color: #fff;
  font-weight: 800;
  font-size: .82rem;
}
.visual-timeline h3 { font-size: 1.2rem; }
.visual-timeline p { margin: 0; color: var(--muted); font-size: .9rem; }

.consult-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  align-items: center;
}
.consult-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.consult-badges span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffaf2;
  color: var(--green-dark);
  font-weight: 700;
  font-size: .86rem;
}
.consult-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.consult-cards article,
.process-card article {
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,253,248,.82);
}
.consult-cards p,
.process-card p { color: var(--muted); margin: 8px 0 0; }
.inline-photo {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 18px;
  box-shadow: var(--shadow);
}
.process-card {
  display: grid;
  gap: 14px;
}
.process-card b {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sand);
  color: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: start;
}
form {
  display: grid;
  gap: 12px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffaf2;
  color: var(--ink);
  border-radius: 7px;
  padding: 13px 14px;
  font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
label.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: .9rem;
}
label.check input { width: auto; margin-top: 5px; }
.contact-list { display: grid; gap: 18px; }
.contact-list .mini {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
}
summary { cursor: pointer; color: var(--green-dark); font-weight: 700; }
details p { margin-top: 12px; color: var(--muted); }

.footer {
  padding: 28px 0 0;
  background: #fff8ed;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr 1fr;
  gap: 14px;
  padding-bottom: 24px;
  align-items: stretch;
  text-align: center;
}
.footer img {
  width: 190px;
  height: 96px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 8px;
  mix-blend-mode: multiply;
}
.footer h4 {
  margin: 0 0 12px;
  color: var(--green-dark);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .75rem;
}
.footer-grid > div {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255,253,248,.42);
}
.footer-brand {
  background: transparent !important;
  border: 0;
}
.footer-action {
  background: var(--green);
}
.footer-action h4,
.footer-action p { color: #fff; }
.footer p, .footer a { color: var(--muted); font-size: .93rem; }
.footer .btn, .footer a.btn {
  color: #fff;
  font-size: .92rem;
}
.footer-action .btn,
.footer-action a.btn {
  margin-top: 4px;
  padding: 14px 22px;
  min-height: 48px;
  background: #263f31;
  border-color: #263f31;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 14px 28px rgba(27, 53, 38, .22);
}
.footer-action .btn:hover,
.footer-action a.btn:hover {
  background: #1d3025;
  border-color: #1d3025;
}
.subfooter {
  background: var(--green-dark);
  color: rgba(255,255,255,.82);
  padding: 12px 0;
  font-size: .82rem;
}
.subfooter .container { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }

@media (max-width: 920px) {
  .nav { min-height: 82px; }
  .brand img { width: 178px; height: 62px; }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0;
  }
  .menu {
    position: absolute;
    top: 74px;
    left: auto;
    right: 13px;
    width: min(320px, calc(100% - 26px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 16px;
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .menu.open { display: flex; }
  .menu a { padding: 12px 0; }
  .hero, .hero-balanced {
    background: linear-gradient(180deg, rgba(251,247,238,.96), rgba(251,247,238,.84)), var(--hero);
    background-size: cover;
    background-position: center;
  }
  .hero .container {
    min-height: 360px;
    grid-template-columns: 1fr;
  }
  .hero-centered .container { min-height: 360px; }
  .intro-grid, .split, .form-grid, .compact-intro, .consult-grid, .formation-modal { grid-template-columns: 1fr; }
  .feature-row, .value-grid, .cards, .cards.four, .process, .process-strip, .quote-grid, .tabs, .timeline, .footer-grid, .faq, .gallery-grid, .path-grid, .consult-cards, .formation-grid, .visual-timeline {
    grid-template-columns: 1fr 1fr;
  }
  .path-card { grid-template-columns: 1fr; }
  .path-card .link { grid-column: auto; }
  .cta { align-items: center; flex-direction: column; }
  .therapy-choice-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(230px, auto);
  }
  .therapy-choice.large, .therapy-choice.wide {
    grid-row: auto;
    grid-column: auto;
  }
  .therapy-modal { grid-template-columns: 1fr; }
  .therapy-modal > img { min-height: 280px; }
  .decision-list button { grid-template-columns: 1fr; }
  .visual-timeline::before { display: none; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 26px, 1120px); }
  .hero .container { min-height: 330px; padding: 28px 0; }
  .hero-centered .container { min-height: 330px; }
  .hero-centered .hero-copy { padding: 20px 16px; }
  h1 { font-size: 2.55rem; }
  .actions { justify-content: center; }
  .actions .btn { min-width: 190px; width: auto; }
  .section { padding: 42px 0; }
  .feature-row, .value-grid, .cards, .cards.four, .process, .process-strip, .quote-grid, .tabs, .timeline, .footer-grid, .faq, .gallery-grid, .path-grid, .decision-grid, .consult-cards, .formation-grid, .visual-timeline, .mission-panel {
    grid-template-columns: 1fr;
  }
  .path-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .path-card .link { grid-column: auto; }
  .gallery-item, .gallery-item.wide { min-height: 220px; grid-row: auto; }
  .therapy-choice-grid { grid-template-columns: 1fr; }
  .therapy-choice { min-height: 245px; }
  .therapy-gallery .gallery-item { min-height: 230px; }
  .footer-grid > div { padding: 16px; }
  .modal { padding: 12px; }
  .modal-panel { padding: 24px 18px; }
  .soft-panel, .card-body, .cta { padding: 22px; }
}
