﻿:root {
  color-scheme: light;
  --ink: #1d1e24;
  --muted: #68636f;
  --paper: #efebe3;
  --soft: #ddd4c5;
  --line: rgba(29, 30, 36, .16);
  --therapy: #386f80;
  --therapy-deep: #163945;
  --show: #c34f78;
  --show-deep: #35233f;
  --gold: #d39b42;
  --white: #fff;
  --shadow: 0 20px 60px rgba(23, 21, 31, .14);
  --radius: 8px;
  --wrap: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255,255,255,.56), rgba(255,255,255,0) 34%),
    linear-gradient(180deg, #efebe3 0%, #e7e1d6 100%);
  line-height: 1.65;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 247, 240, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav {
  width: var(--wrap);
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: grid;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}
.brand span { font-size: .78rem; color: var(--muted); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 14px; font-size: .9rem; }
.nav-links a { color: var(--muted); font-weight: 650; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-toggle { display: none; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); padding: 10px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-therapy { background: var(--therapy); color: var(--white); }
.btn-show { background: var(--show); color: var(--white); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: rgba(255,255,255,.56); }

.hero {
  min-height: clamp(430px, 58vh, 620px);
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--show-deep);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23,21,31,.82), rgba(23,21,31,.42) 48%, rgba(23,21,31,.1)), var(--hero-image) center/cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32vh;
  background: linear-gradient(0deg, var(--paper), transparent);
  z-index: -1;
}
.hero-inner {
  width: var(--wrap);
  margin: 0 auto;
  padding: 70px 0;
  color: var(--white);
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
h1, h2, h3 { line-height: 1.06; margin: 0; letter-spacing: 0; }
h1 { max-width: 780px; font-size: clamp(2rem, 3.4vw, 3.7rem); }
h2 { font-size: clamp(1.55rem, 2.45vw, 2.55rem); }
h3 { font-size: 1.35rem; }
.lead { max-width: 680px; font-size: clamp(1rem, 1.45vw, 1.18rem); color: rgba(255,255,255,.84); margin: 24px 0 0; }
.hero-actions, .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.actions.centered { justify-content: center; }

.section { padding: 78px 0; }
.section.tight { padding: 54px 0; }
.wrap { width: var(--wrap); margin: 0 auto; }
.intro { max-width: 760px; margin-bottom: 34px; }
.intro p, .muted { color: var(--muted); }
.grid { display: grid; gap: 22px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.feature-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 22px 54px rgba(32, 24, 38, .16);
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,23,30,.06), rgba(45,28,52,.28) 42%, rgba(32,24,38,.82)), var(--img) center/cover;
  z-index: -1;
  transform: scale(1.02);
  transition: transform .28s ease, filter .28s ease;
}
.feature-card:hover::before { transform: scale(1.07); filter: saturate(1.12) contrast(1.04); }
.feature-card h3, .feature-card p { text-shadow: 0 2px 18px rgba(0,0,0,.32); }
.card.media { padding: 0; overflow: hidden; }
.card.media img { width: 100%; height: 300px; object-fit: cover; }
.card.media .pad { padding: 24px; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .78fr);
  gap: 42px;
  align-items: center;
}
.media-split {
  grid-template-columns: minmax(280px, .68fr) minmax(420px, 1fr);
  align-items: center;
}
.portrait {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--soft);
}
.portrait img { width: 100%; max-height: 620px; object-fit: cover; }
.portrait.compact {
  width: min(100%, 380px);
  justify-self: center;
}
.portrait.compact img { max-height: 480px; }

.band {
  color: var(--white);
  background: linear-gradient(135deg, #223d3b, #2d3038 58%, #3b2a28);
}
.band .muted, .band .intro p { color: rgba(255,255,255,.76); }
.band .card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }

.duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.duo-panel {
  min-height: 430px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  position: relative;
  isolation: isolate;
}
.duo-panel::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,18,26,.86), rgba(20,18,26,.18)), var(--img) center/cover; z-index: -1; }

.list { padding-left: 18px; color: var(--muted); }
.list li + li { margin-top: 8px; }
.kpis { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.kpi { border: 1px solid var(--line); padding: 15px 18px; border-radius: var(--radius); background: rgba(255,255,255,.6); }
.kpi strong { display: block; font-size: 1.45rem; }

.form {
  display: grid;
  gap: 16px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.field { display: grid; gap: 7px; }
label { font-weight: 800; }
.form label { color: var(--ink); }
.field small { color: var(--muted); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fffdfa;
}
textarea { min-height: 140px; resize: vertical; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(92px, 1fr)); gap: 10px; }
.slot-option { position: relative; }
.slot-option input { position: absolute; opacity: 0; inset: 0; }
.slot-option span {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdfa;
  font-weight: 800;
}
.slot-option input:checked + span { background: var(--therapy); color: var(--white); border-color: var(--therapy); }
.slot-empty { color: var(--muted); padding: 12px 0; }
.hidden-field { position: absolute; left: -9999px; opacity: 0; }
.notice { padding: 14px 16px; border-radius: var(--radius); background: #eef7f2; color: #174c35; border: 1px solid #b9dec7; }
.notice.error { background: #fff0ed; color: #74342e; border-color: #ebb9ae; }

.review {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stars { color: var(--gold); font-weight: 900; letter-spacing: .08em; }
.source { color: var(--muted); font-size: .92rem; }
.video-frame, .map-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #111;
  box-shadow: var(--shadow);
}
.video-frame { width: min(100%, 760px); justify-self: center; }
.video-frame iframe, .video-frame video, .map-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
.map-frame iframe { min-height: 420px; aspect-ratio: auto; }
.media-carousel {
  position: relative;
  width: min(100%, 820px);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
}
.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  min-width: 100%;
  scroll-snap-align: start;
}
.carousel-slide img {
  width: 100%;
  height: clamp(260px, 42vw, 460px);
  object-fit: cover;
}
.carousel-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(32, 32, 39, .78);
  color: var(--white);
  font-weight: 800;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  background: rgba(32, 32, 39, .62);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}
.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }
.refined-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.refined-strip img { width: 100%; height: 210px; object-fit: cover; }
.choice-gateway {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--show-deep);
  overflow: hidden;
}
.choice-panel {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 640px;
  padding: clamp(28px, 7vw, 86px);
  color: var(--white);
  overflow: hidden;
  transition: flex .35s ease, box-shadow .35s ease;
}
.choice-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18,18,24,.88), rgba(18,18,24,.16)), var(--img) center/cover;
  transform: scale(1.02);
  transition: transform .7s ease, filter .7s ease;
  z-index: -2;
}
.choice-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(255,255,255,.16), transparent 0),
    linear-gradient(135deg, rgba(184,139,74,.2), transparent 44%);
  opacity: .78;
  transition: opacity .35s ease, background .35s ease;
  z-index: -1;
}
.choice-panel:hover { box-shadow: inset 0 0 0 1px rgba(255,255,255,.24); }
.choice-panel:hover::before { transform: scale(1.08); filter: saturate(1.18) brightness(1.08); }
.choice-panel:hover::after {
  opacity: 1;
  background:
    radial-gradient(circle at 50% 48%, rgba(255,255,255,.18), transparent 34%),
    linear-gradient(135deg, rgba(211,155,66,.34), rgba(195,79,120,.2) 55%, transparent);
}
.choice-content { max-width: 560px; width: min(100%, 560px); transform: translateY(18px); transition: transform .35s ease; }
.choice-panel:hover .choice-content { transform: translateY(0); }
.choice-content h1, .choice-content h2 { font-size: clamp(2.35rem, 5vw, 5.2rem); }
.choice-content p { color: rgba(255,255,255,.82); font-size: 1.08rem; max-width: 520px; }
.choice-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
.whatsapp-bubble {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  box-shadow: none;
  border: 0;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.whatsapp-bubble:hover {
  transform: translateY(-3px);
  filter: saturate(1.08);
}
.whatsapp-mark {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: linear-gradient(145deg, #12d95b, #06b83f);
  color: #fff;
  border: 3px solid rgba(255,255,255,.92);
  box-shadow: 0 18px 45px rgba(7, 90, 45, .28);
}
.whatsapp-mark svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
  display: block;
}
.whatsapp-label {
  line-height: 1;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: 0 10px 28px rgba(16, 12, 20, .14);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: .82rem;
  white-space: nowrap;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.facebook-simple {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-top: 0;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 0;
  font-weight: 950;
  text-decoration: none;
  box-shadow: inset 0 -9px 18px rgba(0,0,0,.12), 0 14px 30px rgba(24,119,242,.24);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.facebook-icon {
  width: 28px;
  height: 28px;
  display: block;
}
.facebook-simple:hover {
  transform: translateY(-2px);
  filter: brightness(.98);
  box-shadow: inset 0 -9px 18px rgba(0,0,0,.12), 0 18px 38px rgba(24,119,242,.3);
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #1877f2;
  color: #fff;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(24,119,242,.18);
}
.facebook-module {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(245,248,255,.9));
  box-shadow: 0 18px 44px rgba(24,119,242,.12);
}
.facebook-logo {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 950;
  font-family: Arial, sans-serif;
  box-shadow: inset 0 -8px 18px rgba(0,0,0,.12), 0 12px 24px rgba(24,119,242,.24);
  text-decoration: none;
  flex: 0 0 auto;
}
.facebook-content {
  display: grid;
  gap: 7px;
}
.facebook-like-wrap {
  min-width: 118px;
  min-height: 28px;
  display: flex;
  align-items: center;
}
.facebook-note {
  color: var(--muted);
  font-size: .86rem;
}
.facebook-direct {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #1877f2;
  color: #fff;
  font-weight: 850;
  font-size: .86rem;
  text-decoration: none;
}
.facebook-direct:hover { filter: brightness(.96); }

.footer {
  padding: 54px 0;
  background: #17151f;
  color: rgba(255,255,255,.76);
}
.footer a, .footer strong { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: start; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
.footer-note { grid-column: 1 / -1; max-width: 980px; font-size: .9rem; color: rgba(255,255,255,.68); margin-top: 18px; }
.footer-note a { text-decoration: underline; text-underline-offset: 3px; }
.spectacle-page {
  background:
    radial-gradient(circle at 18% 12%, rgba(211,155,66,.22), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(195,79,120,.2), transparent 30%),
    linear-gradient(180deg, #f8f0e7 0%, #efe7dc 100%);
}
.spectacle-page .hero { background: #48304d; }
.spectacle-page .hero::before {
  background: linear-gradient(90deg, rgba(53,35,63,.72), rgba(83,45,74,.34) 55%, rgba(195,79,120,.12)), var(--hero-image) center/cover;
}
.spectacle-page .hero::after { background: linear-gradient(0deg, #f8f0e7, transparent); }
.spectacle-page .band {
  background: linear-gradient(135deg, #4b314f, #8c405f 52%, #d39b42);
}
.quote-band { overflow: hidden; }
.quote-layout {
  display: grid;
  gap: 28px;
}
.quote-heading {
  max-width: 920px;
}
.quote-heading h2 {
  max-width: 820px;
}
.quote-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: none;
  border: 1px solid rgba(255,255,255,.36);
  box-shadow: 0 22px 70px rgba(33, 22, 38, .2);
}
.quote-form .intro,
.quote-form .field:has(textarea),
.quote-form button {
  grid-column: 1 / -1;
}
.quote-form > .field {
  grid-column: span 2;
}
.quote-form > .grid.two {
  display: contents;
}
.quote-form > .grid.two > .field {
  min-width: 0;
}
.quote-form textarea {
  min-height: 118px;
}
.spectacle-page .feature-card {
  min-height: 300px;
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 24px 70px rgba(58, 35, 54, .16);
}
.spectacle-page .feature-card::before {
  background:
    radial-gradient(circle at 80% 18%, rgba(255,255,255,.24), transparent 23%),
    linear-gradient(180deg, rgba(41,27,52,.08) 0%, rgba(72,48,77,.28) 42%, rgba(31,25,40,.9) 100%),
    var(--img) center/cover;
  filter: saturate(1.05) contrast(1.03);
}
.spectacle-page .feature-card:nth-child(1) {
  border-bottom: 5px solid #d39b42;
}
.spectacle-page .feature-card:nth-child(2) {
  border-bottom: 5px solid #c34f78;
}
.spectacle-page .feature-card:nth-child(3) {
  border-bottom: 5px solid #3b7c88;
}
.spectacle-page .feature-card:nth-child(1)::after {
  background: radial-gradient(circle, #fff3bd 0 20%, #d39b42 21% 42%, rgba(211,155,66,.22) 43% 100%);
}
.spectacle-page .feature-card:nth-child(2)::after {
  background: radial-gradient(circle, #ffe4ef 0 20%, #c34f78 21% 42%, rgba(195,79,120,.24) 43% 100%);
}
.spectacle-page .feature-card:nth-child(3)::after {
  background: radial-gradient(circle, #def7f5 0 20%, #3b7c88 21% 42%, rgba(59,124,136,.24) 43% 100%);
}
.spectacle-page .feature-card h3 {
  font-size: 1.55rem;
}
.spectacle-page .feature-card p {
  color: rgba(255,255,255,.94);
}
.spectacle-page .feature-card::after {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.96) 0 18%, rgba(211,155,66,.9) 19% 32%, rgba(195,79,120,.62) 33% 100%);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.price-card strong {
  display: block;
  font-size: 2rem;
  color: var(--therapy);
  margin: 8px 0;
}
.therapy-note {
  border-left: 4px solid var(--therapy);
  padding-left: 18px;
  color: var(--muted);
}
.showcase {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(320px, 1.15fr);
  gap: 24px;
  align-items: stretch;
}
.showcase-main, .showcase-stack figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--soft);
  box-shadow: var(--shadow);
}
.showcase-main img, .showcase-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-main img { min-height: 560px; }
.showcase-stack { display: grid; gap: 24px; }
.showcase-stack figure { min-height: 268px; }
.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}
.logo-tile {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,250,244,.72));
  box-shadow: 0 14px 34px rgba(32, 24, 38, .08);
}
.logo-tile img { max-height: 70px; width: auto; object-fit: contain; filter: saturate(1.04); }
.faq-page {
  background:
    radial-gradient(circle at 12% 14%, rgba(56,111,128,.16), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(195,79,120,.14), transparent 28%),
    linear-gradient(180deg, #f6efe6 0%, #ebe4da 100%);
}
.faq-hero { padding-bottom: 44px; }
.lead.dark { color: var(--ink); max-width: 690px; }
.faq-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.faq-pills a {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.64);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  color: var(--ink);
}
.faq-portrait {
  margin: 0;
  justify-self: end;
  width: min(100%, 360px);
  border-radius: 24px 8px 24px 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.6);
}
.faq-portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; align-items: start; }
.faq-column {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: rgba(255,255,255,.56);
  box-shadow: 0 18px 48px rgba(32, 24, 38, .08);
}
.faq-column.therapy { border-top: 5px solid var(--therapy); }
.faq-column.show { border-top: 5px solid var(--show); }
.faq-column-head { margin-bottom: 22px; }
.faq-list { display: grid; gap: 14px; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  padding: 18px 20px;
  box-shadow: 0 8px 24px rgba(32, 24, 38, .05);
}
.faq-list summary { cursor: pointer; font-weight: 850; color: var(--ink); }
.faq-list p { color: var(--muted); margin-bottom: 0; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    inset: 76px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .grid.two, .grid.three, .grid.four, .split, .media-split, .duo, .footer-grid { grid-template-columns: 1fr; }
  .choice-gateway {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }
  .choice-panel {
    min-height: 0;
    padding: 24px 14px 30px;
    align-items: flex-start;
  }
  .choice-content { transform: none; }
  .choice-content h1, .choice-content h2 {
    font-size: clamp(1.55rem, 8.4vw, 3rem);
    line-height: .98;
  }
  .choice-content p {
    font-size: .88rem;
    line-height: 1.42;
  }
  .choice-kicker {
    font-size: .62rem;
    margin-bottom: 10px;
  }
  .choice-content .btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 8px;
    font-size: .82rem;
  }
  .facebook-module {
    width: 100%;
    align-items: center;
  }
  .showcase, .faq-grid { grid-template-columns: 1fr; }
  .logo-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .showcase-main img { min-height: 420px; }
  .refined-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-inner { padding: 56px 0; }
  .section { padding: 62px 0; }
  .duo-panel { min-height: 340px; }
}

@media (max-width: 520px) {
  :root { --wrap: min(100vw - 24px, 1160px); }
  .nav { min-height: 68px; }
  .nav-links { inset-top: 68px; }
  .hero { min-height: 520px; }
  h1 { font-size: clamp(2rem, 11vw, 3rem); }
  .carousel-slide img { height: 300px; }
  .btn { width: 100%; }
  .card, .form, .duo-panel { padding: 20px; }
  .quote-form { grid-template-columns: 1fr; }
  .quote-form > .field,
  .quote-form .intro,
  .quote-form .field:has(textarea),
  .quote-form button { grid-column: 1; }
  .quote-form > .grid.two { display: grid; grid-template-columns: 1fr; }
  .whatsapp-bubble {
    right: 14px;
    bottom: 14px;
  }
  .whatsapp-label {
    display: block;
    font-size: .74rem;
    padding: 8px 10px;
  }
  .whatsapp-mark {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }
  .whatsapp-mark svg { width: 36px; height: 36px; }
}
