:root {
  --hazelnut: #eee1d5;
  --wine: #7c3e35;
  --truffle: #38251e;
  --dusty-rose: #b88676;
  --ivory: #faf6f0;
  --white: #ffffff;
  --ink-soft: #715b50;
  --line: rgba(56, 37, 30, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --container: 1200px;
  --section-space: clamp(5.75rem, 9vw, 9.5rem);
  --radius-sm: 0.45rem;
  --radius-md: 1.25rem;
  --shadow: 0 1.5rem 4rem rgba(56, 37, 30, 0.1);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --accent-gradient: linear-gradient(105deg, #7c3e35 8%, #b87463 92%);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--truffle);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

img { object-fit: cover; }

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

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

button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--dusty-rose);
  outline-offset: 4px;
}

::selection { background: var(--wine); color: var(--white); }

.container {
  width: min(var(--container), calc(100% - 3rem));
  margin-inline: auto;
}

.section { padding-block: var(--section-space); }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--truffle);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: .72rem;
  margin: 0 0 1.25rem;
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.35rem;
  height: .75rem;
  flex: 0 0 auto;
  background:
    radial-gradient(circle at .2rem 50%, transparent 0 .14rem, currentColor .15rem .2rem, transparent .21rem),
    radial-gradient(circle at calc(100% - .2rem) 50%, currentColor 0 .17rem, transparent .18rem),
    linear-gradient(currentColor, currentColor) center / .82rem 1px no-repeat;
  content: "";
}

.eyebrow-light { color: #e4b9a8; }

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.35rem, 3.55vw, 3.75rem);
  line-height: 1.06;
}

.text-gradient {
  display: inline;
  background: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font: inherit;
}

.text-accent { color: var(--wine); }
.text-accent-light { color: #e4b9a8; }
.no-orphan { display: inline-block; white-space: nowrap; }

.hero-lead strong,
.section-heading > p strong,
.about-copy > p strong,
.secondary-heading > p strong,
.programs-heading > p strong,
.books-heading > p strong,
.faq-intro > p strong {
  color: var(--truffle);
  font-weight: 700;
}

.connections-intro > p strong,
.closing-inner > p strong {
  color: rgba(255,255,255,.94);
  font-weight: 700;
}

/* Entrada e saída no padrão enviado */
.scroll-left,
.scroll-right,
.scroll-top,
.scroll-bottom,
.blur { will-change: opacity, transform, filter; }

body.elementor-editor-active .scroll-left,
body.elementor-editor-active .scroll-right,
body.elementor-editor-active .scroll-top,
body.elementor-editor-active .scroll-bottom,
body.elementor-editor-active .blur,
body.elementor-editor-active .lista .elementor-icon-list-item {
  visibility: visible !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

.scroll-left { opacity: 0; transition: .5s !important; transform: translate(-30px, 0); }
.scroll-right { opacity: 0; transition: .5s !important; transform: translate(30px, 0); }
.scroll-top { opacity: 0; transition: .5s !important; transform: translate(0, -30px); }
.scroll-bottom { opacity: 0; transition: .5s !important; transform: translate(0, 30px); }
.blur { opacity: 0; filter: blur(20px); transition: .5s !important; transform: scale(.9); }
.lista .elementor-icon-list-item { opacity: 0; filter: blur(10px); transition: .5s all !important; transform: translate3d(-30px, 0, 0); }
.lista .elementor-icon-list-item.ativo { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0); }
.ativo { opacity: 1; filter: blur(0); transition: .5s ease all; transform: translate(0, 0) scale(1); }

p:last-child { margin-bottom: 0; }

.button {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 1rem 1.5rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary { background: var(--truffle); color: var(--white); }
.button-primary:hover { background: var(--wine); }

.button-light { background: var(--ivory); color: var(--truffle); }
.button-light:hover { background: var(--dusty-rose); color: var(--white); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid currentColor;
  padding: 0.45rem 0;
  font-size: 0.8rem;
  font-weight: 600;
}

.icon-arrow {
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.icon-arrow-up-right {
  -webkit-mask-image: url("assets/icons/arrow-up-right.svg");
  mask-image: url("assets/icons/arrow-up-right.svg");
}

.icon-arrow-down {
  -webkit-mask-image: url("assets/icons/arrow-down.svg");
  mask-image: url("assets/icons/arrow-down.svg");
}

.icon-arrow-right,
.icon-arrow-left {
  -webkit-mask-image: url("assets/icons/arrow-right.svg");
  mask-image: url("assets/icons/arrow-right.svg");
}

.icon-arrow-left { transform: rotate(180deg); }

.text-link .icon-arrow { transition: transform 0.22s ease; }
.text-link:hover .icon-arrow { transform: translate(3px, 2px); }

/* Header */
.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 1.35rem;
}

.site-header.is-scrolled {
  position: fixed;
  padding-top: 0.65rem;
  animation: header-in 0.35s ease both;
}

@keyframes header-in { from { opacity: 0; transform: translateY(-1rem); } }

.header-inner {
  position: relative;
  z-index: 60;
  min-height: 4.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid rgba(56, 37, 30, 0.12);
  border-radius: 999px;
  padding: 0.5rem 0.65rem 0.5rem 1.55rem;
  background: rgba(250, 246, 240, 0.84);
  box-shadow: 0 0.75rem 2.5rem rgba(56, 37, 30, 0.07);
  backdrop-filter: blur(18px);
}

body.menu-open .whatsapp-float { opacity: 0 !important; pointer-events: none; }

.brand { display: inline-flex; width: fit-content; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.28rem; }
.brand-role { margin-top: 0.28rem; color: var(--ink-soft); font-size: 0.52rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; gap: 1.8rem; }
.desktop-nav a { position: relative; font-size: 0.76rem; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -0.35rem; left: 0; height: 1px; background: var(--wine); transform: scaleX(0); transform-origin: right; transition: transform 0.25s ease; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.button-header { justify-self: end; min-height: 3.35rem; background: var(--truffle); color: var(--white); }
.button-header:hover { background: var(--wine); }

.menu-toggle,
.mobile-menu { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 9.5rem 0 0;
  background: var(--hazelnut);
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image: radial-gradient(rgba(56, 37, 30, 0.11) 0.55px, transparent 0.55px);
  background-size: 5px 5px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 12.25rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(28rem, .82fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
}

.hero-copy { position: relative; z-index: 4; padding: 1.5rem 0 3rem; }

.hero h1 {
  max-width: 44rem;
  margin: 0;
  font-size: clamp(3.6rem, 4.5vw, 4.6rem);
  line-height: 0.98;
}

.hero-lead {
  max-width: 35rem;
  margin: 1.65rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.55;
}

.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.25rem; }

.hero-proof { display: flex; gap: 3rem; margin-top: 2.8rem; }
.hero-proof div { display: flex; max-width: 9.75rem; flex-direction: column; border-left: 1px solid var(--line); padding-left: 1rem; }
.hero-proof strong { font-family: var(--serif); font-size: 1.85rem; font-weight: 400; line-height: 1; }
.hero-proof span { margin-top: 0.5rem; color: var(--ink-soft); font-size: 0.72rem; line-height: 1.35; }

.hero-visual { position: relative; align-self: center; height: min(69svh, 720px); min-height: 570px; }
.hero-arch { position: absolute; inset: 4% -7% 0 1%; border-radius: 18rem 18rem 0 0; background: var(--dusty-rose); }
.hero-visual img { position: absolute; z-index: 2; right: -3%; bottom: 0; width: 100%; height: 94%; border-radius: 16rem 16rem 0 0; object-position: 51% 48%; filter: saturate(0.78) sepia(0.06); }
.hero-genogram { position: absolute; z-index: 1; inset: -2% auto auto -31%; width: 84%; overflow: visible; color: rgba(124, 62, 53, 0.6); pointer-events: none; }
.hero-genogram path { fill: none; stroke: currentColor; stroke-width: 1.4; }
.genogram-node { fill: var(--hazelnut); stroke: currentColor; stroke-width: 1.4; transform-box: fill-box; transform-origin: center; }

.location-card {
  position: absolute;
  z-index: 4;
  left: -1.2rem;
  bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: rgba(250, 246, 240, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  color: var(--truffle);
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.45;
}

.location-dot { width: 0.55rem; height: 0.55rem; margin-top: 0.2rem; border-radius: 50%; background: var(--wine); box-shadow: 0 0 0 0.3rem rgba(124, 62, 53, 0.12); }

.hero-band { position: relative; z-index: 5; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(250, 246, 240, 0.72); }
.band-track { width: max-content; display: flex; align-items: center; padding: 1.05rem 0; animation: band-scroll 28s linear infinite; will-change: transform; }
.band-group { min-width: 100vw; display: flex; flex-shrink: 0; align-items: center; justify-content: space-around; gap: 1.5rem; padding-right: 1.5rem; }
.band-group span { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.band-group i { flex: 0 0 .3rem; width: 0.3rem; height: 0.3rem; border-radius: 50%; background: var(--wine); }

@keyframes band-scroll { to { transform: translate3d(-50%, 0, 0); } }

@media (min-width: 600px) {
  .e1 { transition-delay: .5s !important; }
  .e2 { transition-delay: 1s !important; }
  .e3 { transition-delay: 1.5s !important; }
  .e4 { transition-delay: 2s !important; }
  .e5 { transition-delay: 2.5s !important; }
}

/* Services */
.services { background: var(--ivory); }
.section-heading { display: grid; grid-template-columns: 1.45fr 0.55fr; gap: 5rem; align-items: end; }
.section-heading h2 { max-width: 52rem; margin-bottom: 0; }
.section-heading > p { max-width: 27rem; margin-bottom: 0.5rem; color: var(--ink-soft); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 4.5rem; background: var(--line); border: 1px solid var(--line); }
.service-card { min-height: 42rem; display: flex; overflow: hidden; flex-direction: column; padding: 0 1.7rem 1.7rem; background: var(--hazelnut); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-card + .service-card { border-left: 1px solid var(--line); }
.service-card:hover { position: relative; z-index: 3; transform: translateY(-0.75rem); box-shadow: var(--shadow); }
.service-featured { background: var(--wine); color: var(--white); }
.service-media { position: relative; height: 14rem; margin: 0 -1.7rem 1.4rem; overflow: hidden; background: var(--dusty-rose); }
.service-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(56,37,30,.28), transparent 60%); }
.service-media img { width: 100%; height: 100%; transition: transform .6s cubic-bezier(.22,.75,.24,1); }
.service-card:first-child .service-media img { object-position: 50% 5%; }
.service-card:hover .service-media img { transform: scale(1.055); }
.service-top { padding-bottom: 1rem; border-bottom: 1px solid currentColor; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; opacity: 0.65; text-transform: uppercase; }
.service-card h3 { margin: 1.6rem 0 1.15rem; font-size: clamp(2.2rem, 2.6vw, 3rem); line-height: 0.98; }
.service-card p { min-height: 6.4rem; margin-bottom: 1.5rem; color: var(--ink-soft); font-size: 0.86rem; }
.service-featured p { color: rgba(255, 255, 255, 0.72); }
.card-link { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid currentColor; padding-top: 1.25rem; font-size: 0.72rem; font-weight: 700; }
.card-link .icon-arrow { transition: transform 0.22s ease; }
.card-link:hover .icon-arrow { transform: translate(0.25rem, -0.25rem); }

/* Connections */
.connections { position: relative; overflow: hidden; background: var(--truffle); color: var(--white); }
.connections::before { content: ""; position: absolute; inset: 0; opacity: 0.18; background: radial-gradient(circle at 70% 30%, var(--dusty-rose), transparent 35%); }
.connections-grid { position: relative; display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: 5vw; }
.connections-intro h2 { max-width: 38rem; font-size: clamp(2.7rem, 4vw, 4.15rem); }
.connections-intro > p:not(.eyebrow) { max-width: 34rem; color: rgba(255, 255, 255, 0.68); font-size: 1.05rem; }
.connections-intro .button { margin-top: 1.5rem; }
.connections-map { position: relative; min-height: 42rem; }
.connections-map > svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.connections-map path { fill: none; stroke: rgba(228, 185, 168, 0.58); stroke-width: 1.3; }
.map-node { fill: var(--truffle); stroke: rgba(228, 185, 168, 0.8); stroke-width: 1.4; transform-box: fill-box; transform-origin: center; }
.map-label { position: absolute; display: grid; grid-template-columns: auto 1fr; column-gap: 0.75rem; min-width: 12rem; padding: 1rem; border: 1px solid var(--line-light); background: rgba(56, 37, 30, 0.7); backdrop-filter: blur(9px); }
.map-label > span { grid-row: span 2; width: 0.55rem; height: 0.55rem; margin-top: 0.25rem; border-radius: 50%; background: #e4b9a8; }
.map-label strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; line-height: 1; }
.map-label small { margin-top: 0.35rem; color: rgba(255, 255, 255, 0.56); font-size: 0.62rem; }
.label-money { top: 7%; left: 4%; }
.label-origin { top: 43%; right: 2%; }
.label-bonds { bottom: 2%; left: 20%; }

/* About */
.about { background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.about-visual { position: relative; padding: 2.75rem 0 4rem; }
.about-frame { position: relative; aspect-ratio: 0.8; overflow: hidden; background: var(--hazelnut); }
.about-frame::before { content: ""; position: absolute; z-index: 2; inset: 1.1rem; border: 1px solid rgba(255, 255, 255, 0.38); pointer-events: none; }
.about-frame img { width: 100%; height: 100%; object-position: 50% 50%; filter: saturate(0.82); }
.about-visual blockquote { position: absolute; z-index: 3; right: -3.5rem; bottom: 0; max-width: 20rem; margin: 0; padding: 1.7rem; background: var(--wine); color: var(--white); font-family: var(--serif); font-size: 1.45rem; font-style: italic; line-height: 1.25; }
.about-copy h2 { max-width: 43rem; }
.about-copy > p { max-width: 38rem; color: var(--ink-soft); }
.about-lead { color: var(--truffle) !important; font-size: 1.08rem; }
.credentials { display: grid; grid-template-columns: 1fr 1fr; margin: 2.5rem 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.credentials div { padding: 1.1rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.credentials dt { color: var(--wine); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.credentials dd { margin: 0.4rem 0 0; font-size: 0.82rem; font-weight: 600; }

/* Secondary */
.secondary-care { overflow: hidden; padding-block: clamp(5rem, 8vw, 8rem); background: var(--hazelnut); }
.secondary-inner { display: grid; gap: 4rem; }
.secondary-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: clamp(3rem, 8vw, 8rem); }
.secondary-heading h2 { max-width: 46rem; margin-bottom: 0; font-size: clamp(2.55rem, 3.55vw, 3.75rem); }
.secondary-heading > p { max-width: 31rem; margin-bottom: .35rem; color: var(--ink-soft); }
.secondary-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.secondary-list article { display: grid; min-width: 0; grid-template-rows: 26rem auto; overflow: hidden; border: 1px solid var(--line); background: var(--ivory); }
.secondary-media { min-height: 0; overflow: hidden; background: var(--dusty-rose); }
.secondary-media img { width: 100%; height: 100%; transition: transform .6s ease; }
.secondary-list article:first-child .secondary-media img { object-position: 50% 27%; }
.secondary-list article:last-child .secondary-media img { object-position: 50% 58%; }
.secondary-list article:hover .secondary-media img { transform: scale(1.05); }
.secondary-content { position: relative; display: flex; min-height: 21rem; flex-direction: column; padding: clamp(1.6rem, 3vw, 2.8rem); }
.secondary-content > span { color: var(--wine); font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.secondary-list h3 { margin: .7rem 0 1rem; font-size: clamp(2.15rem, 3vw, 3.15rem); line-height: .98; }
.secondary-list p { max-width: 29rem; margin-bottom: 1.5rem; color: var(--ink-soft); font-size: .9rem; }
.secondary-link { display: flex; align-items: center; justify-content: space-between; margin-top: auto; border-top: 1px solid currentColor; padding-top: 1.15rem; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.secondary-link .icon-arrow { transition: transform .22s ease; }
.secondary-link:hover .icon-arrow { transform: translate(.2rem, -.2rem); }
.secondary-featured { background: var(--wine) !important; color: var(--white); }
.secondary-featured .secondary-content > span { color: #e4b9a8; }
.secondary-featured .secondary-content p { color: rgba(255,255,255,.72); }

/* Programs */
.programs { overflow: hidden; background: var(--ivory); }
.programs-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 5rem; align-items: end; }
.programs-heading h2 { max-width: 52rem; margin-bottom: 0; }
.programs-heading > p { max-width: 28rem; margin-bottom: .5rem; color: var(--ink-soft); }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 4rem; }
.program-card { overflow: hidden; border: 1px solid var(--line); background: var(--hazelnut); transition: transform .3s ease, box-shadow .3s ease; }
.program-card:hover { transform: translateY(-.55rem); box-shadow: var(--shadow); }
.program-media { position: relative; height: 21rem; overflow: hidden; background: var(--dusty-rose); }
.program-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(56,37,30,.38), transparent 55%); }
.program-media img { width: 100%; height: 100%; transition: transform .65s cubic-bezier(.22,.75,.24,1); }
.program-card:last-child .program-media img { object-position: 50% 12%; }
.program-card:hover .program-media img { transform: scale(1.055); }
.program-media span { position: absolute; z-index: 2; right: 1rem; bottom: .9rem; color: var(--white); font-size: .58rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.program-copy { min-height: 19rem; display: flex; flex-direction: column; padding: 1.6rem; }
.program-copy h3 { margin: 0 0 1rem; font-size: clamp(2rem, 2.35vw, 2.7rem); line-height: 1; }
.program-copy p { margin-bottom: 1.4rem; color: var(--ink-soft); font-size: .86rem; }
.program-link { display: flex; align-items: center; justify-content: space-between; margin-top: auto; border-top: 1px solid var(--line); padding-top: 1rem; font-size: .66rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.program-link .icon-arrow { transition: transform .22s ease; }
.program-link:hover .icon-arrow { transform: translate(.2rem, -.2rem); }

/* Books */
.books { background: var(--ivory); }
.books-heading { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: end; }
.books-heading h2 { max-width: 48rem; margin-bottom: 0; }
.books-heading > p { max-width: 28rem; color: var(--ink-soft); }
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 4rem; }
.book-card { position: relative; display: grid; grid-template-columns: 0.95fr 1.05fr; min-height: 32rem; overflow: hidden; border: 1px solid var(--line); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.book-card:hover { transform: translateY(-0.5rem); box-shadow: var(--shadow); }
.book-art { position: relative; overflow: hidden; padding: 2rem; color: var(--white); }
.book-kicker { position: relative; z-index: 2; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.book-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: 50% 50%; transition: transform .65s cubic-bezier(.22,.75,.24,1); }
.book-children { grid-template-columns: 1.15fr .85fr; }
.book-children .book-art { aspect-ratio: 2 / 3; }
.book-children .book-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(56,37,30,.48), transparent 34%, rgba(56,37,30,.12)); }
.book-children .book-kicker { z-index: 3; display: inline-flex; width: fit-content; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; padding: .5rem .75rem; background: rgba(56,37,30,.28); backdrop-filter: blur(10px); }
.book-children:hover .book-photo { transform: scale(1.045); }
.book-logo { position: absolute; z-index: 1; top: 4rem; left: 1.75rem; width: calc(100% - 3.5rem); height: auto; opacity: .18; filter: brightness(0) invert(1); }
.book-logo-anxiety { top: 5rem; opacity: .2; }
.book-art strong { position: relative; z-index: 2; display: block; margin-top: 7rem; font-family: var(--serif); font-size: clamp(2.4rem, 3.6vw, 4.2rem); font-weight: 400; line-height: 0.85; }
.book-art i { position: relative; z-index: 2; display: block; margin-top: 1.5rem; font-family: var(--serif); font-size: 1.05rem; }
.book-children .book-art { background: #8f725f; }
.book-anxiety .book-art { background: linear-gradient(145deg, #596e6e, #294749); }
.book-orbit { position: absolute; right: -7rem; bottom: -3rem; width: 18rem; height: 18rem; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; box-shadow: 0 0 0 2.8rem rgba(255,255,255,.06), 0 0 0 5rem rgba(255,255,255,.04); }
.breath-lines { position: absolute; right: -20%; bottom: 2rem; width: 120%; height: 10rem; opacity: .3; background: repeating-radial-gradient(ellipse at center, transparent 0 0.9rem, rgba(255,255,255,.62) 1rem 1.05rem); }
.book-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(1.5rem, 3vw, 3rem); background: var(--hazelnut); }
.book-copy > span { color: var(--wine); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.book-copy h3 { margin: 1rem 0; font-size: clamp(1.9rem, 2.5vw, 2.75rem); line-height: 1; }
.book-copy p { color: var(--ink-soft); font-size: 0.88rem; }
.book-copy b { display: flex; align-items: center; justify-content: space-between; margin-top: auto; border-top: 1px solid var(--line); padding-top: 1.2rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* Reviews */
.reviews { overflow: hidden; background: var(--hazelnut); }
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem; }
.reviews-head h2 { max-width: 48rem; margin-bottom: 0; }
.google-summary { flex: 0 0 auto; display: flex; align-items: center; gap: 0.9rem; padding: 1rem 1.2rem; border: 1px solid var(--line); background: rgba(250, 246, 240, .6); }
.google-g { display: grid; width: 2.8rem; height: 2.8rem; place-items: center; border-radius: 50%; background: var(--white); box-shadow: 0 .35rem 1rem rgba(56,37,30,.08); }
.google-g img { width: 1.55rem; height: 1.55rem; object-fit: contain; }
.google-summary > div { display: grid; grid-template-columns: auto auto; column-gap: 0.6rem; align-items: center; }
.google-summary strong { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; line-height: 1; }
.stars { color: #b47435; font-size: 0.72rem; letter-spacing: 0.08em; }
.google-summary small { grid-column: span 2; color: var(--ink-soft); font-size: 0.58rem; }
.carousel { margin-top: 4rem; }
.carousel-viewport { overflow: hidden; }
.reviews-track { --slides: 3; display: flex; gap: 1rem; touch-action: pan-y; transition: transform 0.55s cubic-bezier(.22,.75,.24,1); will-change: transform; }
.review-card { flex: 0 0 calc((100% - (var(--slides) - 1) * 1rem) / var(--slides)); min-height: 17rem; display: flex; flex-direction: column; padding: 1.8rem; border: 1px solid var(--line); background: var(--ivory); }
.review-top { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 0.75rem; }
.review-avatar { display: grid; width: 2.75rem; height: 2.75rem; place-items: center; overflow: hidden; border-radius: 50%; background: var(--dusty-rose); color: var(--white); font-family: var(--serif); font-size: 1.15rem; }
.review-avatar img { width: 100%; height: 100%; }
.review-top > div { display: flex; flex-direction: column; }
.review-top strong { font-size: 0.82rem; }
.review-top div span { color: #b47435; font-size: 0.62rem; letter-spacing: 0.08em; }
.review-top small { color: var(--ink-soft); font-size: 0.58rem; }
.google-source { display: grid; width: 2rem; height: 2rem; place-items: center; border-radius: 50%; background: var(--white); }
.google-source img { width: 1.1rem; height: 1.1rem; object-fit: contain; }
.review-card blockquote { max-width: 30rem; margin: 1.75rem 0 0; font-family: var(--sans); font-size: clamp(1.03rem, 1.35vw, 1.22rem); font-style: normal; font-weight: 500; line-height: 1.55; letter-spacing: -.012em; }
.review-time { margin-top: 1rem; color: var(--ink-soft); font-size: .62rem; }
.carousel-controls { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem; margin-top: 1.5rem; }
.carousel-buttons { display: flex; gap: 0.5rem; }
.carousel-buttons button { width: 3rem; height: 3rem; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--truffle); cursor: pointer; transition: background-color .2s ease, color .2s ease; }
.carousel-buttons .icon-arrow { width: 1rem; height: 1rem; }
.carousel-buttons button:hover { background: var(--truffle); color: var(--white); }
.carousel-buttons button:disabled { opacity: .35; cursor: not-allowed; }
.carousel-buttons button:disabled:hover { background: transparent; color: var(--truffle); }
.carousel-dots { display: flex; justify-content: center; gap: .5rem; }
.carousel-dots button { width: .45rem; height: .45rem; border: 0; border-radius: 50%; padding: 0; background: rgba(56,37,30,.25); cursor: pointer; }
.carousel-dots button.is-active { background: var(--wine); transform: scale(1.4); }
.carousel-controls > a { border-bottom: 1px solid currentColor; font-size: 0.7rem; font-weight: 700; }

/* FAQ */
.faq { background: var(--ivory); }
.faq-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(4rem, 9vw, 9rem); }
.faq-intro { position: sticky; top: 8rem; align-self: start; }
.faq-intro h2 { font-size: clamp(2.45rem, 3.5vw, 3.7rem); }
.faq-intro > p:not(.eyebrow) { max-width: 28rem; color: var(--ink-soft); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: flex; min-height: 5.6rem; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.2rem 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: clamp(1.35rem, 2.1vw, 1.8rem); line-height: 1.15; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; flex: 0 0 1.5rem; height: 1.5rem; }
.faq-list summary span::before,
.faq-list summary span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 1.1rem; height: 1px; background: var(--wine); transform: translate(-50%, -50%); transition: transform .25s ease; }
.faq-list summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }
.faq-list details p { max-width: 42rem; padding: 0 3rem 1.8rem 0; color: var(--ink-soft); font-size: .92rem; }

/* Closing */
.closing-cta { position: relative; overflow: hidden; isolation: isolate; padding-block: clamp(6rem, 11vw, 11rem); background: var(--wine); color: var(--white); text-align: center; }
.closing-cta::after { content: ""; position: absolute; z-index: 0; inset: 0; background: linear-gradient(115deg, rgba(124,62,53,.5), rgba(124,62,53,.28) 50%, rgba(56,37,30,.54)); }
.closing-photo { position: absolute; z-index: 0; inset: -2rem; width: calc(100% + 4rem); max-width: none; height: calc(100% + 4rem); object-fit: cover; object-position: 50% 20%; opacity: 1; filter: blur(9px) saturate(.7) contrast(1.04); mix-blend-mode: multiply; transform: scale(1.06); }
.closing-lines { position: absolute; z-index: 1; inset: 0; opacity: .12; background: radial-gradient(circle at center, transparent 0 16%, rgba(255,255,255,.45) 16.15% 16.25%, transparent 16.4% 28%, rgba(255,255,255,.35) 28.15% 28.25%, transparent 28.4% 42%, rgba(255,255,255,.3) 42.15% 42.25%, transparent 42.4%); }
.closing-inner { position: relative; z-index: 2; display: flex; align-items: center; flex-direction: column; }
.closing-inner h2 { max-width: 58rem; margin-inline: auto; font-size: clamp(2.8rem, 4.7vw, 4.9rem); }
.closing-inner > p:not(.eyebrow) { max-width: 42rem; margin-inline: auto; color: rgba(255,255,255,.72); font-size: 1.05rem; }
.closing-inner .button { margin-top: 1.75rem; }

/* Footer */
.site-footer { position: relative; overflow: hidden; padding: 6rem 0 1.5rem; background: var(--truffle); color: var(--white); }
.site-footer::before { content: ""; position: absolute; top: -18rem; right: -10rem; width: 38rem; height: 38rem; border: 1px solid rgba(217,169,150,.16); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(217,169,150,.035), 0 0 0 10rem rgba(217,169,150,.02); }
.footer-lead { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; border-bottom: 1px solid var(--line-light); padding-bottom: 4.5rem; }
.footer-lead .eyebrow { grid-column: 1 / -1; margin-bottom: -.25rem; }
.footer-lead h2 { max-width: 46rem; margin-bottom: 0; font-size: clamp(2.7rem, 4vw, 4.15rem); }
.footer-lead .button { margin-bottom: .4rem; }
.footer-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.35fr .55fr 1fr .8fr; gap: clamp(2rem, 5vw, 5rem); padding-top: 4rem; }
.footer-grid > div { display: flex; align-items: flex-start; flex-direction: column; }
.footer-brand .brand-name { font-size: 2rem; }
.footer-brand .brand-role { color: rgba(255,255,255,.55); }
.footer-grid > div:first-child > p { max-width: 22rem; margin-top: 1.5rem; color: rgba(255,255,255,.55); font-size: .82rem; }
.footer-label { margin-bottom: 1rem; color: #d9a996; font-size: .62rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid a:not(.brand) { margin-bottom: .55rem; font-size: .78rem; }
.footer-grid p { margin-bottom: .45rem; color: rgba(255,255,255,.65); font-size: .78rem; }
.footer-address { color: rgba(255,255,255,.74); font-size: .8rem !important; line-height: 1.75; }
.footer-address:hover, .footer-map-link:hover, .footer-phone:hover { color: #e4b9a8; }
.footer-note { margin-top: .85rem; color: rgba(255,255,255,.42); font-size: .66rem; }
.footer-phone { font-family: var(--serif); font-size: 1.2rem !important; }
.footer-map-link { margin-top: .8rem; border-bottom: 1px solid currentColor; color: #e4b9a8; }
.footer-bottom { position: relative; z-index: 2; display: flex; justify-content: space-between; margin-top: 4rem; border-top: 1px solid var(--line-light); padding-top: 1.25rem; color: rgba(255,255,255,.45); font-size: .62rem; }
.footer-credit a { border-bottom: 1px solid rgba(228,185,168,.45); color: #e4b9a8; transition: border-color .2s ease, color .2s ease; }
.footer-credit a:hover { border-color: var(--white); color: var(--white); }

/* WhatsApp floating */
.whatsapp-float { position: fixed; z-index: 80; right: 1.5rem; bottom: 1.5rem; display: flex; min-height: 4.3rem; align-items: center; gap: .8rem; border-radius: 999px; padding: .55rem 1rem .55rem .65rem; background: #1f8f5f; color: var(--white); box-shadow: 0 1rem 2.5rem rgba(31, 143, 95, .28); transition: box-shadow .25s ease; }
.whatsapp-float:hover { box-shadow: 0 1.35rem 3rem rgba(31,143,95,.36); }
.whatsapp-float > img { transition: transform .25s ease; }
.whatsapp-float:hover > img { transform: rotate(-6deg) scale(1.05); }
.whatsapp-float > img { position: relative; z-index: 2; width: 2.9rem; height: 2.9rem; border-radius: 50%; padding: .55rem; background: rgba(255,255,255,.14); filter: brightness(0) invert(1); }
.whatsapp-text { position: relative; z-index: 2; display: flex; flex-direction: column; line-height: 1.15; }
.whatsapp-text small { opacity: .72; font-size: .57rem; }
.whatsapp-text strong { margin-top: .22rem; font-size: .76rem; }
.whatsapp-ripple { position: absolute; left: .65rem; width: 2.9rem; height: 2.9rem; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; pointer-events: none; }

/* Notebook */
@media (min-width: 1024px) and (max-width: 1439px) {
  :root { --container: 1100px; --section-space: clamp(5.5rem, 8vw, 8rem); }
  .hero { min-height: 780px; }
  .hero-grid { min-height: 650px; grid-template-columns: 1.06fr .94fr; gap: 3rem; }
  .hero h1 { max-width: 38rem; font-size: clamp(3.4rem, 4.65vw, 4rem); }
  .hero-visual { height: 620px; min-height: 0; align-self: center; }
  .hero-visual img { object-position: 48% 48%; }
  .hero-copy { padding: 1rem 0 2.5rem; }
  .hero-proof { margin-top: 2.5rem; }
  .service-card { min-height: 40rem; }
  .service-card h3 { font-size: 2.45rem; }
  .desktop-nav { gap: 1.25rem; }
  .footer-grid { gap: 2.5rem; }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  :root { --section-space: 6rem; }
  .container { width: min(100% - 2.5rem, 900px); }
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .button-header { display: none; }
  .menu-toggle { display: flex; width: 3.25rem; height: 3.25rem; align-items: center; justify-content: center; flex-direction: column; gap: .45rem; border: 0; border-radius: 50%; background: var(--truffle); cursor: pointer; }
  .menu-toggle span { width: 1.1rem; height: 1px; background: var(--white); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(.23rem) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-.23rem) rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: 45; inset: 0; display: flex; padding: 8rem 2rem 2rem; background: var(--ivory); flex-direction: column; }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu nav a { border-bottom: 1px solid var(--line); padding: .9rem 0; font-family: var(--serif); font-size: 2.2rem; line-height: 1; }
  .mobile-menu .button { margin-top: auto; }
  .hero { min-height: auto; padding-top: 8rem; }
  .hero-grid { min-height: 680px; grid-template-columns: 1.05fr .95fr; gap: 2rem; }
  .hero-copy { padding: 3rem 0 4rem; }
  .hero h1 { font-size: clamp(3rem, 5.8vw, 3.5rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .hero-proof { gap: 1rem; }
  .hero-visual { height: 590px; min-height: 0; }
  .hero-arch { inset: 11% -20% 0 0; }
  .hero-visual img { right: -15%; width: 125%; height: 89%; object-position: 50% 10%; }
  .location-card { right: -1rem; left: auto; bottom: 1rem; }
  .section-heading, .books-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card + .service-card { border-left: 1px solid var(--line); }
  .service-card:last-child { grid-column: span 2; min-height: 30rem; border-top: 1px solid var(--line); border-left: 0; }
  .connections-grid { grid-template-columns: 1fr; }
  .connections-map { min-height: 34rem; }
  .about-grid { grid-template-columns: .9fr 1.1fr; gap: 3rem; }
  .about-visual blockquote { right: -1.5rem; max-width: 15rem; font-size: 1.1rem; }
  .credentials { grid-template-columns: 1fr; }
  .secondary-inner { gap: 3rem; }
  .secondary-heading { grid-template-columns: 1fr .7fr; gap: 2rem; }
  .secondary-list article { grid-template-rows: 20rem auto; }
  .program-grid { grid-template-columns: 1fr 1fr; }
  .program-card:last-child { grid-column: span 2; }
  .programs-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .book-card { grid-template-columns: 1fr; }
  .book-art { min-height: 22rem; }
  .book-copy { min-height: 19rem; }
  .reviews-track { --slides: 2; }
  .faq-grid { grid-template-columns: .8fr 1.2fr; gap: 3rem; }
  .footer-lead { grid-template-columns: 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem 2rem; }
}

/* Mobile */
@media (max-width: 767px) {
  :root { --section-space: 5.2rem; }
  .container { width: 100%; padding-inline: 5vw; }
  h2 { font-size: clamp(2.2rem, 9.5vw, 2.5rem); line-height: 1.08; }
  .site-header { padding-top: .75rem; }
  .header-inner { width: calc(100% - 1rem); min-height: 3.8rem; grid-template-columns: 1fr auto; padding: .4rem .4rem .4rem 1rem; }
  .brand-name { font-size: 1.1rem; }
  .brand-role { font-size: .44rem; }
  .desktop-nav, .button-header { display: none; }
  .menu-toggle { display: flex; width: 3rem; height: 3rem; align-items: center; justify-content: center; flex-direction: column; gap: .42rem; border: 0; border-radius: 50%; background: var(--truffle); cursor: pointer; }
  .menu-toggle span { width: 1rem; height: 1px; background: var(--white); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(.21rem) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-.21rem) rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: 45; inset: 0; display: flex; padding: 7.5rem 5vw 1.5rem; background: var(--ivory); flex-direction: column; }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu nav a { border-bottom: 1px solid var(--line); padding: .72rem 0; font-family: var(--serif); font-size: 2rem; line-height: 1; }
  .mobile-menu .button { width: 100%; margin-top: auto; }
  .hero { min-height: auto; padding-top: 6.7rem; }
  .hero-grid { min-height: 0; display: flex; flex-direction: column; padding-inline: 5vw; }
  .hero-copy { order: 2; width: 100%; padding: 2.3rem 0 3rem; }
  .hero h1 { max-width: 100%; font-size: clamp(2.45rem, 10.8vw, 2.75rem); line-height: 1.02; }
  .hero-lead { margin-top: 1.3rem; font-size: .94rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 1rem; margin-top: 2.5rem; }
  .hero-proof div { max-width: 8rem; }
  .hero-visual { order: 1; width: 100%; height: 26rem; min-height: 0; align-self: auto; }
  .hero-arch { inset: 7% -6vw 0; border-radius: 11rem 11rem 0 0; }
  .hero-visual img { right: 50%; width: 108%; height: 93%; border-radius: 10rem 10rem 0 0; object-position: 50% 10%; transform: translateX(50%); }
  .hero-genogram { top: -.5rem; left: -9%; z-index: 1; width: 78%; }
  .location-card { right: -2vw; left: auto; bottom: .8rem; max-width: 13rem; }
  .hero-band { margin-inline: 0; }
  .section-heading, .books-heading { grid-template-columns: 1fr; gap: 1rem; }
  .service-grid { grid-template-columns: 1fr; margin-top: 2.5rem; border-bottom: 0; }
  .service-card { min-height: 39rem; padding: 0 1.4rem 1.4rem; border-bottom: 1px solid var(--line); }
  .service-card + .service-card { border-left: 0; }
  .service-media { height: 15rem; margin-inline: -1.4rem; }
  .service-card h3 { font-size: 2.35rem; }
  .service-card p { min-height: 0; }
  .connections-grid { grid-template-columns: 1fr; gap: 3rem; }
  .connections-intro h2 { font-size: clamp(2.35rem, 10vw, 2.8rem); }
  .connections-map { min-height: 30rem; margin-inline: -5vw; }
  .map-label { min-width: 9.5rem; padding: .75rem; }
  .map-label strong { font-size: 1rem; }
  .map-label small { max-width: 8rem; }
  .label-money { left: 4%; }
  .label-origin { right: 2%; }
  .label-bonds { left: 12%; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { padding-top: 0; }
  .about-frame { aspect-ratio: .84; }
  .about-visual blockquote { right: 0; bottom: 0; max-width: 17rem; padding: 1.2rem; font-size: 1.1rem; }
  .about-copy h2 { font-size: clamp(2.35rem, 10vw, 2.8rem); }
  .credentials { grid-template-columns: 1fr; }
  .about-copy .button { width: 100%; }
  .secondary-inner { gap: 2.5rem; }
  .secondary-heading { grid-template-columns: 1fr; gap: 1rem; }
  .secondary-heading h2 { font-size: clamp(2.2rem, 9.5vw, 2.5rem); }
  .secondary-list { grid-template-columns: 1fr; }
  .secondary-list article { grid-template-rows: 20rem auto; }
  .secondary-content { min-height: 20rem; }
  .programs-heading { grid-template-columns: 1fr; gap: 1rem; }
  .program-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 2.5rem; }
  .program-media { height: 19rem; }
  .book-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 2.5rem; }
  .book-card { grid-template-columns: 1fr; min-height: 0; }
  .book-art { min-height: 25rem; }
  .book-art strong { font-size: 3.8rem; }
  .book-copy { min-height: 20rem; }
  .reviews-head { align-items: flex-start; flex-direction: column; }
  .google-summary { width: 100%; }
  .reviews-track { --slides: 1; }
  .review-card { min-height: 0; }
  .carousel-controls { grid-template-columns: auto 1fr; }
  .carousel-controls > a { grid-column: span 2; justify-self: start; }
  .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .faq-intro { position: static; }
  .faq-list summary { min-height: 4.8rem; font-size: 1.35rem; }
  .closing-inner h2 { font-size: clamp(2.45rem, 10.5vw, 3rem); }
  .footer-lead { grid-template-columns: 1fr; align-items: start; padding-bottom: 3rem; }
  .footer-lead h2 { font-size: clamp(2.4rem, 10vw, 3rem); }
  .footer-lead .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: .45rem; }
  .whatsapp-float { right: max(1rem, env(safe-area-inset-right)); bottom: max(1rem, env(safe-area-inset-bottom)); display: flex; width: 3.8rem; min-height: 3.8rem; justify-content: center; padding: .45rem; }
  .whatsapp-float > img { width: 2.8rem; height: 2.8rem; }
  .whatsapp-text { display: none; }
  .whatsapp-ripple { left: .5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .scroll-left, .scroll-right, .scroll-top, .scroll-bottom, .blur, [data-hero-item], [data-hero-visual] { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
}
