@font-face {
  font-family: "Frank Ruhl Libre";
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  src: url("../fonts/frank-ruhl-libre-hebrew.woff2") format("woff2");
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

@font-face {
  font-family: "Frank Ruhl Libre";
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  src: url("../fonts/frank-ruhl-libre-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/heebo-hebrew.woff2") format("woff2");
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/heebo-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --abyss: #16313a;
  --abyss-2: #10272e;
  --deep: #0e5e63;
  --slate: #655a9a;
  --lagoon: #16757a;
  --aqua: #55c8be;
  --sea-glass: #bde2d7;
  --dune: #ebc9a8;
  --wet-sand: #d87866;
  --gold: #f28b72;
  --gold-light: #ffd2c8;
  --foam: #f2fff9;
  --ink: #16313a;
  --coral: #f28b72;
  --lavender: #655a9a;
  --pale-lavender: #d3c8ea;
  --mint: #bde2d7;
  --shell: #ebc9a8;
  --muted-light: rgba(242, 255, 249, .82);
  --line-light: rgba(242, 255, 249, .22);
  --line-dark: rgba(22, 49, 58, .2);
  --container: min(1220px, calc(100vw - 64px));
  --serif: "Frank Ruhl Libre", Georgia, serif;
  --sans: "Heebo", Arial, sans-serif;
  --shadow-deep: 0 28px 80px rgba(0, 8, 12, .38);
  --ease-water: cubic-bezier(.22, .75, .26, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--abyss);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--foam);
  background: var(--abyss);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

::selection {
  color: var(--abyss);
  background: var(--gold-light);
}

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

.experience :focus-visible,
.for-whom :focus-visible {
  outline-color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  right: 12px;
  padding: 10px 16px;
  color: var(--abyss);
  background: var(--gold-light);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.container {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  isolation: isolate;
}

.section h2,
.section h3,
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.02;
}

.section h2 {
  font-size: clamp(3rem, 5.4vw, 5.2rem);
}

.section p {
  margin-block: 0;
}

.section-index {
  min-width: 84px;
  margin: 0;
  font-family: var(--serif);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.section-index::after {
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 8px;
  background: currentColor;
  content: "";
  opacity: .7;
}

.section-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(70px, 8vw, 112px);
}

.section-heading > div {
  max-width: 860px;
}

.section-heading p:not(.section-index) {
  max-width: 680px;
  margin-top: 24px;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.section-heading-light {
  color: var(--foam);
}

.section-heading-light .section-index,
.section-heading-light h2 {
  color: var(--gold-light);
}

.section-heading-dark,
.section-heading-ink {
  color: var(--ink);
}

.section-heading-dark .section-index,
.section-heading-ink .section-index {
  color: #392a0c;
}

.section-heading-light .section-index {
  color: #fff8e7;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 26px;
  overflow: hidden;
  border: 1px solid transparent;
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.2;
  transition: color .3s ease, border-color .3s ease, background .3s ease, transform .3s var(--ease-water), box-shadow .3s ease;
}

.button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 12%, rgba(255, 255, 255, .24) 48%, transparent 82%);
  content: "";
  transform: translateX(130%);
  transition: transform .7s var(--ease-water);
}

.button:hover::before {
  transform: translateX(-130%);
}

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

.button svg {
  width: 23px;
  flex: 0 0 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-gold {
  color: var(--abyss);
  border-color: var(--gold-light);
  background: linear-gradient(135deg, #e1c984 0%, #c49c45 100%);
  box-shadow: 0 14px 38px rgba(198, 168, 78, .2);
}

.button-gold:hover {
  background: linear-gradient(135deg, #edd898 0%, #d3ad57 100%);
  box-shadow: 0 18px 48px rgba(198, 168, 78, .28);
}

.button-outline {
  color: var(--foam);
  border-color: rgba(224, 196, 124, .72);
  background: rgba(7, 30, 38, .35);
  backdrop-filter: blur(12px);
}

.button-outline:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  background: rgba(16, 47, 56, .75);
}

.button-ink {
  color: var(--dune);
  border-color: var(--ink);
  background: var(--ink);
}

.button-ink:hover {
  color: var(--gold-light);
  background: var(--abyss);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: rgba(6, 23, 29, .76);
  backdrop-filter: blur(16px);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.admin-bar .site-header { top: 32px; }

.site-header.is-scrolled,
.site-header.nav-active {
  border-color: rgba(224, 196, 124, .18);
  background: rgba(6, 23, 29, .88);
  box-shadow: 0 16px 44px rgba(0, 7, 10, .22);
  backdrop-filter: blur(18px);
}

.header-shell {
  display: grid;
  width: min(1340px, calc(100vw - 48px));
  min-height: 92px;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: 250px minmax(0, 1fr) 162px;
  gap: 32px;
}

.brand,
.footer-brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(227, 236, 231, .95), rgba(224, 196, 124, .97));
  clip-path: polygon(2% 8%, 97% 0, 100% 84%, 94% 100%, 0 92%);
}

.brand img,
.footer-brand img {
  width: 205px;
  height: auto;
  filter: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 42px);
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 42px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu .menu-item {
  margin: 0;
}

.primary-nav a {
  position: relative;
  color: rgba(227, 236, 231, .82);
  font-size: .91rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color .25s ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  width: 100%;
  height: 1px;
  background: var(--gold-light);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease-water);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--gold-light);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  color: var(--abyss);
  background: var(--gold-light);
  font-size: .88rem;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease;
}

.header-cta:hover {
  background: var(--dune);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  color: var(--foam);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .3s ease, opacity .3s ease;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: max(780px, 100svh);
  overflow: hidden;
  align-items: center;
  isolation: isolate;
  background: var(--abyss);
}

.hero-art {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-color: var(--abyss);
  background-image: url("../images/hero-water-portal.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: hero-breathe 18s ease-in-out infinite alternate;
}

.hero-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0 42%, rgba(11, 41, 51, .06) 50%, rgba(11, 41, 51, .32) 68%, rgba(11, 41, 51, .64) 100%);
  content: "";
}

.hero-grain,
.sand-grain {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.36'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-layout {
  display: grid;
  min-height: max(720px, 100svh);
  align-items: center;
  padding-block: 150px 190px;
  grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
}

.hero-copy {
  position: relative;
  grid-column: 1;
  max-width: 690px;
  isolation: isolate;
  justify-self: end;
}

.hero-copy::before {
  position: absolute;
  z-index: -1;
  inset: -42px -52px;
  background: linear-gradient(135deg, rgba(7, 30, 38, .86), rgba(7, 30, 38, .82));
  clip-path: polygon(3% 4%, 96% 0, 100% 88%, 92% 100%, 0 94%);
  content: "";
  pointer-events: none;
}

.hero h1 {
  color: var(--gold-light);
  font-size: clamp(4rem, 5.4vw, 6rem);
  text-wrap: balance;
  text-shadow: 0 8px 32px rgba(0, 7, 10, .36);
}

.hero h1 span {
  display: block;
  margin-top: .08em;
  color: var(--foam);
}

.hero-lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(227, 236, 231, .84);
  font-size: clamp(1.14rem, 1.65vw, 1.4rem);
  font-weight: 300;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero-actions .button {
  min-width: 222px;
}

.whatsapp-icon,
.direct-whatsapp svg,
.floating-whatsapp svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  margin: 38px 0 0;
  padding: 0;
  color: rgba(227, 236, 231, .67);
  font-size: .87rem;
  letter-spacing: .05em;
  list-style: none;
}

.hero-facts li {
  position: relative;
}

.hero-facts li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  left: -15px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
  content: "";
  transform: translateY(-50%);
}

.hero-orbit {
  position: absolute;
  bottom: 155px;
  left: 4%;
  display: none;
  width: 230px;
  height: 230px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(224, 196, 124, .22);
  border-radius: 50%;
  animation: orbit-spin 35s linear infinite;
  color: rgba(227, 236, 231, .7);
  font-size: .72rem;
  letter-spacing: .12em;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border: 1px solid rgba(101, 191, 193, .2);
  border-radius: 50%;
  content: "";
}

.hero-orbit::before { inset: 26px; }
.hero-orbit::after { inset: 58px; }

.hero-orbit span {
  position: absolute;
}

.hero-orbit span:nth-child(1) { top: -12px; right: 88px; }
.hero-orbit span:nth-child(2) { right: -20px; bottom: 55px; }
.hero-orbit span:nth-child(3) { bottom: -12px; left: 84px; }

.scroll-cue {
  position: absolute;
  z-index: 4;
  right: 50%;
  bottom: 53px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  color: rgba(227, 236, 231, .68);
  background: rgba(7, 30, 38, .82);
  font-size: .78rem;
  transform: translateX(50%);
}

.scroll-cue svg {
  width: 24px;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  animation: cue-bob 1.8s ease-in-out infinite;
}

/* Section wave system */
.wave-divider {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: -1px;
  left: 0;
  height: clamp(110px, 12vw, 190px);
  overflow: hidden;
  pointer-events: none;
}

.wave-divider svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.wave-hero { height: clamp(145px, 14vw, 205px); }
.wave-hero .wave-dune { fill: rgba(212, 195, 155, .68); }
.wave-hero .wave-gold-line { fill: none; stroke: var(--gold-light); stroke-width: 3; }
.wave-hero .wave-aqua { fill: rgba(44, 127, 134, .86); }
.wave-hero .wave-deep { fill: var(--sea-glass); }

/* Experience */
.experience {
  min-height: 930px;
  padding: 160px 0 225px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 25%, rgba(227, 236, 231, .46), transparent 30%),
    linear-gradient(150deg, var(--sea-glass), #93c6c3 57%, #7fb3b2);
}

.brush-wing {
  position: absolute;
  z-index: 0;
  width: 600px;
  height: 240px;
  opacity: .9;
  background:
    radial-gradient(ellipse at center, transparent 0 42%, rgba(7, 30, 38, .95) 44% 50%, transparent 52%),
    linear-gradient(13deg, transparent 0 42%, var(--abyss) 43% 57%, transparent 58%);
  filter: blur(.2px);
  transform: rotate(-13deg) skewX(-18deg);
}

.brush-wing-one {
  top: 60px;
  left: -220px;
}

.water-rings {
  position: absolute;
  border: 1px solid rgba(198, 168, 78, .2);
  border-radius: 50%;
}

.water-rings::before,
.water-rings::after {
  position: absolute;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.water-rings::before { inset: -34px; }
.water-rings::after { inset: -72px; }
.rings-one { top: 220px; right: -40px; width: 170px; height: 68px; }

.triad-flow {
  position: relative;
  display: grid;
  min-height: 410px;
  align-items: start;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 6vw, 90px);
}

.triad-current {
  position: absolute;
  z-index: -1;
  top: 35px;
  right: -4%;
  width: 108%;
  height: 280px;
  overflow: visible;
  fill: none;
  stroke: rgba(198, 168, 78, .72);
  stroke-width: 2;
}

.triad-current path:last-child {
  stroke: rgba(7, 30, 38, .18);
  stroke-dasharray: 4 11;
}

.triad-item {
  position: relative;
  max-width: 320px;
}

.triad-item:nth-child(2) { margin-top: 120px; }
.triad-item:nth-child(3) { margin-top: 40px; }

.triad-number {
  position: absolute;
  top: -32px;
  left: 4px;
  color: rgba(7, 30, 38, .62);
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
}

.triad-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  border: 1px solid rgba(130, 106, 53, .55);
  border-radius: 50%;
  place-items: center;
  color: #745a26;
  background: rgba(227, 236, 231, .18);
}

.triad-icon svg {
  width: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.triad-item h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 2.2rem;
}

.triad-item p {
  max-width: 31ch;
  color: rgba(16, 42, 49, .92);
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(16, 42, 49, .38);
  color: var(--ink);
  font-weight: 700;
}

.text-link svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform .25s ease;
}

.text-link:hover svg { transform: translateX(-5px); }

.wave-ripple .ripple-base { fill: var(--deep); }
.wave-ripple .ripple-line { fill: none; stroke: var(--gold); stroke-width: 2; }
.wave-ripple circle { fill: none; stroke: rgba(101, 191, 193, .45); stroke-width: 1.4; }

/* Treatments */
.treatments {
  min-height: 1180px;
  padding: 170px 0 230px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(101, 191, 193, .27), transparent 28%),
    linear-gradient(180deg, var(--deep), #123843 72%, #194b56);
}

.caustic,
.about-caustic,
.contact-caustic {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.caustic-one {
  top: 0;
  right: -12%;
  width: 56%;
  height: 74%;
  opacity: .18;
  background:
    repeating-radial-gradient(ellipse at 30% 20%, transparent 0 23px, rgba(101, 191, 193, .28) 25px 27px, transparent 30px 57px);
  filter: blur(2px);
  transform: rotate(13deg);
  animation: caustic-drift 22s ease-in-out infinite alternate;
}

.treatment-river {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.treatment-river::before,
.treatment-river::after {
  position: absolute;
  z-index: -1;
  right: -10%;
  left: -10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 196, 124, .48), transparent);
  content: "";
}

.treatment-river::before { top: 20%; transform: rotate(2deg); }
.treatment-river::after { bottom: 18%; transform: rotate(-2deg); }

.treatment-current {
  --indent: 0px;
  position: relative;
  display: grid;
  width: calc(88% - var(--indent));
  min-height: 138px;
  align-items: center;
  margin-right: var(--indent);
  padding: 25px clamp(28px, 4vw, 58px);
  overflow: hidden;
  border-block: 1px solid rgba(224, 196, 124, .18);
  grid-template-columns: 70px minmax(0, 1fr) 70px;
  gap: 26px;
  background: linear-gradient(92deg, rgba(44, 127, 134, .38), rgba(7, 30, 38, .16));
  clip-path: polygon(3% 10%, 96% 0, 100% 72%, 92% 100%, 2% 91%, 0 38%);
  transition: background .35s ease, transform .35s var(--ease-water), border-color .35s ease;
}

.treatment-current::after {
  position: absolute;
  right: -20%;
  bottom: -80%;
  width: 60%;
  height: 160%;
  border: 1px solid rgba(101, 191, 193, .28);
  border-radius: 50%;
  content: "";
}

.treatment-current:hover {
  border-color: rgba(224, 196, 124, .58);
  background: linear-gradient(92deg, rgba(44, 127, 134, .57), rgba(7, 30, 38, .24));
  transform: translateX(-8px);
}

.current-one { --indent: 2%; }
.current-two { --indent: 9%; width: 86%; }
.current-three { --indent: 4%; width: 93%; }
.current-four { --indent: 13%; width: 82%; }
.current-five { --indent: 7%; width: 89%; }

.treatment-mark {
  color: #fff8e7;
  font-family: var(--serif);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.treatment-current h3 {
  color: var(--foam);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.treatment-current p {
  margin-top: 8px;
  color: #fff8e7;
  font-size: .98rem;
}

.treatment-current > svg {
  width: 58px;
  fill: none;
  stroke: var(--sea-glass);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.wave-sand .sand-foam { fill: rgba(101, 191, 193, .84); }
.wave-sand .sand-line { fill: none; stroke: var(--gold-light); stroke-width: 2.5; }
.wave-sand .sand-base { fill: var(--dune); }

/* For whom */
.for-whom {
  min-height: 1070px;
  padding: 165px 0 225px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 26%, rgba(227, 236, 231, .25), transparent 28%),
    linear-gradient(135deg, var(--dune), #cfb77f 62%, #c2a165);
}

.sand-grain {
  opacity: .19;
  mix-blend-mode: multiply;
}

.audience-tide {
  position: relative;
  display: grid;
  min-height: 430px;
  align-items: start;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px);
}

.audience-path {
  position: absolute;
  z-index: -1;
  top: -80px;
  right: -4%;
  width: 108%;
  height: 420px;
  fill: none;
  stroke: rgba(16, 42, 49, .36);
  stroke-width: 1.7;
}

.audience-path path:last-child {
  stroke: rgba(198, 168, 78, .9);
  stroke-dasharray: 3 10;
}

.audience-item {
  position: relative;
  max-width: 250px;
  padding-top: 34px;
}

.audience-item:nth-child(2) { margin-top: 118px; }
.audience-item:nth-child(3) { margin-top: 30px; }
.audience-item:nth-child(4) { margin-top: 155px; }

.audience-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  border: 3px solid var(--gold-light);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 7px rgba(16, 42, 49, .12);
}

.audience-item h3 {
  margin-bottom: 13px;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.audience-item p {
  color: rgba(16, 42, 49, .92);
  font-size: .96rem;
}

.pregnancy-note {
  position: relative;
  display: grid;
  min-height: 190px;
  align-items: center;
  margin-top: 70px;
  padding: 38px 46px;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 49, .24);
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 34px;
  background: rgba(168, 212, 208, .42);
  clip-path: polygon(2% 10%, 97% 0, 100% 78%, 95% 100%, 0 89%);
}

.pregnancy-note h3 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.pregnancy-note p {
  max-width: 650px;
  color: rgba(16, 42, 49, .92);
}

.pregnancy-orbit {
  position: relative;
  width: 98px;
  height: 98px;
  border: 1px solid rgba(16, 42, 49, .45);
  border-radius: 50%;
}

.pregnancy-orbit::before,
.pregnancy-orbit::after {
  position: absolute;
  border: 1px solid rgba(16, 42, 49, .2);
  border-radius: 50%;
  content: "";
}

.pregnancy-orbit::before { inset: 14px; }
.pregnancy-orbit::after { inset: 31px; }
.pregnancy-orbit span { position: absolute; inset: 42px; border-radius: 50%; background: var(--gold); }

.wave-brush .brush-shadow { fill: rgba(7, 30, 38, .78); }
.wave-brush .brush-stroke { fill: var(--deep); }
.wave-brush .brush-gold { fill: none; stroke: var(--gold-light); stroke-width: 2; }

/* About */
.about {
  min-height: 940px;
  padding: 175px 0 235px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(101, 191, 193, .19), transparent 32%),
    linear-gradient(145deg, var(--deep), #20515b 50%, #123a45);
}

.about-caustic {
  top: 0;
  left: -4%;
  width: 54%;
  height: 100%;
  opacity: .13;
  background: repeating-radial-gradient(ellipse at 45% 35%, transparent 0 28px, var(--aqua) 30px 32px, transparent 35px 72px);
  filter: blur(1px);
  transform: rotate(-9deg);
}

.ink-crescent {
  position: absolute;
  z-index: 0;
  top: 80px;
  left: -130px;
  width: 560px;
  height: 560px;
  border: 58px solid rgba(3, 14, 18, .78);
  border-left-color: transparent;
  border-radius: 50%;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, .22));
  transform: rotate(-22deg) scaleX(.74);
}

.ink-crescent::after {
  position: absolute;
  top: -45px;
  right: 25px;
  width: 130px;
  height: 390px;
  background: linear-gradient(to bottom, transparent, rgba(3, 14, 18, .72) 18% 78%, transparent);
  content: "";
  transform: rotate(19deg) skewX(-8deg);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .7fr);
  gap: 80px;
}

.about-copy .section-index {
  margin-bottom: 30px;
  color: #fff8e7;
}

.about-copy h2 {
  max-width: 760px;
  color: var(--gold-light);
}

.about-copy p {
  max-width: 720px;
  color: rgba(227, 236, 231, .9);
}

.about-copy .about-lead {
  margin-top: 32px;
  color: var(--foam);
  font-size: clamp(1.1rem, 1.75vw, 1.35rem);
  line-height: 1.72;
}

.about-copy .about-lead + p {
  margin-top: 22px;
}

.experience-seal {
  position: relative;
  display: grid;
  width: min(100%, 350px);
  aspect-ratio: 1;
  align-content: center;
  justify-self: center;
  color: var(--foam);
  text-align: center;
}

.experience-seal svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(224, 196, 124, .5);
  stroke-width: 1.4;
  animation: orbit-spin 32s linear infinite;
}

.experience-seal svg circle:last-child {
  stroke: rgba(101, 191, 193, .32);
  stroke-dasharray: 5 11;
}

.seal-number {
  color: var(--gold-light);
  direction: ltr;
  font-family: var(--serif);
  font-size: clamp(5.3rem, 8vw, 7.8rem);
  font-weight: 900;
  line-height: .74;
  unicode-bidi: isolate;
}

.seal-number span {
  font-size: .45em;
}

.seal-copy {
  margin-top: 22px;
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.35;
}

.expertise-stream {
  display: flex;
  align-items: center;
  gap: 21px;
  grid-column: 1 / -1;
  margin-top: 38px;
  padding: 24px 32px;
  border-block: 1px solid rgba(224, 196, 124, .24);
  color: rgba(227, 236, 231, .9);
  font-size: .95rem;
}

.expertise-stream i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
}

.wave-rings .rings-base { fill: var(--slate); }
.wave-rings .rings-line { fill: none; stroke: var(--gold-light); stroke-width: 2; }
.wave-rings ellipse { fill: none; stroke: rgba(168, 212, 208, .42); stroke-width: 1.5; }

/* Voices */
.voices {
  min-height: 800px;
  padding: 155px 0 220px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 48%, rgba(101, 191, 193, .2), transparent 28%),
    linear-gradient(135deg, var(--slate), #3a5f67 72%, #34565e);
}

.voices-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 120px);
}

.voices-heading .section-index {
  margin-bottom: 28px;
  color: #fff8e7;
}

.voices-heading h2 {
  color: var(--foam);
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.voices-heading > p:last-child {
  margin-top: 22px;
  color: #fff8e7;
}

.testimonial {
  position: relative;
  margin: 50px 0 0;
  padding: 45px 60px 42px;
  border-inline-start: 1px solid var(--gold-light);
}

.quote-mark {
  position: absolute;
  top: -62px;
  right: 40px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 10rem;
  line-height: 1;
  opacity: 1;
}

.testimonial blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--foam);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.25vw, 4.15rem);
  font-weight: 600;
  line-height: 1.22;
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: #fff8e7;
  font-weight: 700;
}

.testimonial figcaption::before {
  width: 40px;
  height: 1px;
  background: currentColor;
  content: "";
}

.testimonial-water {
  position: absolute;
  z-index: 0;
  right: 35%;
  bottom: 40px;
  width: 420px;
  height: 140px;
  opacity: .28;
}

.testimonial-water span {
  position: absolute;
  border: 1px solid var(--aqua);
  border-radius: 50%;
}

.testimonial-water span:nth-child(1) { inset: 50px 30px; }
.testimonial-water span:nth-child(2) { inset: 34px 5px; }
.testimonial-water span:nth-child(3) { inset: 17px -35px; }
.testimonial-water span:nth-child(4) { inset: 0 -75px; }

.wave-fins .fins-back { fill: rgba(7, 30, 38, .76); }
.wave-fins .fins-front { fill: var(--lagoon); }
.wave-fins .fins-line { fill: none; stroke: var(--gold-light); stroke-width: 2; }

/* Training */
.training {
  min-height: 780px;
  padding: 160px 0 230px;
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(11, 41, 51, .68), rgba(11, 41, 51, .38)),
    var(--lagoon);
}

.training-current {
  position: absolute;
  z-index: -1;
  top: -38%;
  left: -8%;
  width: 65%;
  height: 125%;
  border: 70px solid rgba(7, 30, 38, .72);
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(16deg) scaleX(.76);
}

.training-current::after {
  position: absolute;
  inset: 35px;
  border: 1px solid rgba(224, 196, 124, .4);
  border-radius: 50%;
  content: "";
}

.training-layout {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  gap: 56px 90px;
}

.training-copy .section-index {
  margin-bottom: 26px;
  color: #fff8e7;
}

.training-copy h2 {
  max-width: 780px;
  color: var(--foam);
}

.training-copy p {
  max-width: 680px;
  margin-top: 28px;
  color: var(--foam);
  font-size: 1.1rem;
}

.training-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(224, 196, 124, .35);
  list-style: none;
}

.training-steps li {
  display: grid;
  min-height: 62px;
  align-items: center;
  border-bottom: 1px solid rgba(224, 196, 124, .24);
  grid-template-columns: 54px 1fr;
  color: var(--foam);
  font-size: 1.05rem;
}

.training-steps li span {
  color: #fff8e7;
  font-family: var(--serif);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.training-layout > .button {
  grid-column: 1 / -1;
  justify-self: start;
}

.wave-vortex .vortex-back { fill: rgba(168, 212, 208, .62); }
.wave-vortex .vortex-mid { fill: var(--slate); }
.wave-vortex .vortex-line { fill: none; stroke: var(--gold-light); stroke-width: 2.2; }
.wave-vortex .vortex-front { fill: var(--abyss); }

/* Contact */
.contact {
  min-height: 990px;
  padding: 175px 0 150px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 82%, rgba(101, 191, 193, .2), transparent 29%),
    linear-gradient(155deg, var(--abyss), #0a2b34 62%, #123944);
}

.contact-caustic {
  top: 0;
  right: -8%;
  width: 48%;
  height: 70%;
  opacity: .11;
  background: repeating-radial-gradient(ellipse at center, transparent 0 31px, var(--aqua) 33px 35px, transparent 38px 78px);
  filter: blur(2px);
  transform: rotate(18deg);
}

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, .82fr) minmax(450px, 1.18fr);
  gap: clamp(60px, 8vw, 120px);
}

.contact-story .section-index {
  margin-bottom: 28px;
  color: var(--gold-light);
}

.contact-story h2 {
  color: var(--gold-light);
  font-size: clamp(3.4rem, 5.4vw, 5.25rem);
}

.contact-story > p {
  max-width: 570px;
  margin-top: 28px;
  color: var(--muted-light);
}

.contact-details {
  display: grid;
  margin: 50px 0 0;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-details > div {
  min-width: 0;
  min-height: 104px;
  padding: 20px 0 18px;
  border-bottom: 1px solid var(--line-light);
}

.contact-details > div:nth-child(odd) {
  padding-left: 22px;
  border-left: 1px solid var(--line-light);
}

.contact-details > div:nth-child(even) {
  padding-right: 22px;
}

.contact-details dt {
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 700;
}

.contact-details dd {
  min-width: 0;
  margin: 5px 0 0;
  color: var(--foam);
  font-size: .98rem;
  overflow-wrap: anywhere;
}

.contact-details a {
  min-width: 0;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  overflow-wrap: anywhere;
  transition: color .25s ease;
}

.contact-details a:hover {
  color: var(--aqua);
}

.direct-whatsapp {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 13px;
  margin-top: 32px;
  color: #8bd29a;
  font-size: .95rem;
  font-weight: 700;
}

.direct-whatsapp svg {
  width: 34px;
}

.lead-form {
  position: relative;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(224, 196, 124, .35);
  background:
    linear-gradient(145deg, rgba(16, 47, 56, .86), rgba(7, 30, 38, .72));
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(18px);
}

.lead-form::before,
.lead-form::after {
  position: absolute;
  width: 110px;
  height: 110px;
  border-color: var(--gold-light);
  content: "";
  pointer-events: none;
}

.lead-form::before {
  top: -1px;
  right: -1px;
  border-top: 3px solid;
  border-right: 3px solid;
}

.lead-form::after {
  bottom: -1px;
  left: -1px;
  border-bottom: 3px solid;
  border-left: 3px solid;
}

.form-heading {
  position: relative;
  margin-bottom: 34px;
  padding-right: 40px;
}

.form-heading > span {
  position: absolute;
  top: 5px;
  right: 0;
  width: 24px;
  height: 42px;
  border: 2px solid var(--gold-light);
  border-radius: 50% 50% 43% 57% / 60% 60% 40% 40%;
  transform: rotate(22deg);
}

.form-heading h3 {
  color: var(--foam);
  font-size: 2.4rem;
}

.form-heading p {
  margin-top: 9px;
  color: var(--muted-light);
  font-size: .92rem;
}

.field-row {
  position: relative;
  margin-bottom: 21px;
}

.field-row label {
  display: block;
  margin-bottom: 8px;
  color: var(--foam);
  font-size: .86rem;
  font-weight: 600;
}

.field-row label span {
  color: var(--gold-light);
}

.field-row input,
.field-row select,
.field-row textarea {
  width: 100%;
  min-height: 55px;
  padding: 13px 16px;
  border: 1px solid rgba(177, 218, 214, .62);
  border-radius: 0;
  outline: 0;
  color: var(--foam);
  background: rgba(5, 24, 30, .58);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.field-row textarea {
  min-height: 120px;
  resize: vertical;
}

.field-row input:focus,
.field-row select:focus,
.field-row textarea:focus {
  border-color: var(--gold-light);
  background: rgba(5, 24, 30, .78);
  box-shadow: 0 0 0 3px rgba(224, 196, 124, .12);
}

.field-row input[aria-invalid="true"],
.field-row select[aria-invalid="true"],
.field-row textarea[aria-invalid="true"] {
  border-color: #ef998d;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  padding-left: 46px;
  appearance: none;
}

.select-wrap svg {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 21px;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transform: translateY(-50%);
  pointer-events: none;
}

.field-row select option {
  color: var(--foam);
  background: var(--deep);
}

.field-error {
  display: block;
  min-height: 1.35em;
  margin-top: 5px;
  color: #ffb0a6;
  font-size: .76rem;
}

.consent-row {
  display: flex;
  min-height: 44px;
  align-items: flex-start;
  gap: 12px;
  color: rgba(227, 236, 231, .8);
  font-size: .83rem;
  cursor: pointer;
}

.consent-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.custom-check {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 1px solid rgba(224, 196, 124, .65);
  place-items: center;
  transition: background .2s ease, border-color .2s ease;
}

.custom-check svg {
  width: 16px;
  fill: none;
  stroke: var(--abyss);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  opacity: 0;
}

.consent-row input:checked + .custom-check {
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.consent-row input:checked + .custom-check svg { opacity: 1; }
.consent-row input:focus-visible + .custom-check { outline: 3px solid var(--gold-light); outline-offset: 3px; }

.consent-error {
  margin-right: 34px;
}

.form-submit {
  width: 100%;
  margin-top: 12px;
}

.form-note {
  margin-top: 12px !important;
  color: rgba(227, 236, 231, .62);
  font-size: .76rem;
  text-align: center;
}

.form-status {
  min-height: 28px;
  margin-top: 10px;
  color: #8bd29a;
  font-size: .84rem;
  font-weight: 600;
  text-align: center;
}

.form-status.is-error { color: #ffb0a6; }
.form-status.is-pending { color: var(--gold-light); }
.form-status a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

.form-submit:disabled {
  cursor: wait;
  opacity: .86;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hp-field input { background: transparent; }

/* Footer and floating action */
.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(224, 196, 124, .22);
  background: var(--abyss-2);
}

.footer-wave {
  position: absolute;
  right: 0;
  bottom: -90px;
  left: 0;
  height: 150px;
  border: 1px solid rgba(101, 191, 193, .2);
  border-radius: 50%;
  transform: scaleX(1.3);
}

.footer-layout {
  display: grid;
  min-height: 150px;
  align-items: center;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 35px;
}

.footer-brand img {
  width: 190px;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: rgba(227, 236, 231, .66);
  font-size: .84rem;
}

.site-footer nav a:hover { color: var(--gold-light); }
.site-footer nav a { display: inline-flex; min-height: 44px; align-items: center; }
.site-footer p { margin: 0; color: rgba(227, 236, 231, .62); font-size: .78rem; }

.floating-whatsapp {
  position: fixed;
  z-index: 80;
  bottom: 24px;
  left: 24px;
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(139, 210, 154, .62);
  color: #a4e3af;
  background: rgba(7, 30, 38, .9);
  box-shadow: 0 16px 42px rgba(0, 8, 12, .3);
  font-size: .86rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
  transition: transform .25s ease, background .25s ease;
}

.floating-whatsapp:hover {
  background: rgba(16, 47, 56, .96);
  transform: translateY(-3px);
}

.floating-whatsapp.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

.floating-whatsapp svg {
  width: 30px;
}

/* Reveal and motion */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease-water), transform .75s var(--ease-water);
}

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

@keyframes hero-breathe {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes cue-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

@keyframes caustic-drift {
  from { transform: rotate(13deg) translate3d(0, 0, 0); }
  to { transform: rotate(10deg) translate3d(-30px, 24px, 0); }
}

/* Responsive */
@media (max-width: 1120px) {
  :root { --container: min(100% - 48px, 1040px); }

  .header-shell {
    grid-template-columns: 214px minmax(0, 1fr) 148px;
    gap: 18px;
  }

  .brand img { width: 180px; }
  .primary-nav { gap: 20px; }
  .primary-nav a { font-size: .84rem; }

  .hero-layout {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, .72fr);
  }

  .hero-copy { max-width: 600px; }
  .hero-orbit { display: none; }

  .treatment-current { width: 94%; }
  .current-two, .current-four { width: 88%; }

  .audience-tide { gap: 28px; }
  .audience-item:nth-child(4) { margin-top: 125px; }

  .about-grid { gap: 50px; }
  .contact-layout { gap: 60px; }
}

@media (max-width: 900px) {
  :root { --container: min(100% - 40px, 760px); }

  .site-header { background: rgba(6, 23, 29, .76); backdrop-filter: blur(16px); }
  .header-shell { min-height: 78px; grid-template-columns: 1fr auto; }
  .brand img { width: 177px; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }

  .primary-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    display: flex;
    width: min(88vw, 420px);
    height: 100dvh;
    max-height: 100svh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 105px 44px 55px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background:
      radial-gradient(circle at 0 0, rgba(44, 127, 134, .32), transparent 34%),
      var(--abyss);
    box-shadow: -30px 0 70px rgba(0, 0, 0, .38);
    transform: translateX(105%);
    transition: transform .42s var(--ease-water);
    -webkit-overflow-scrolling: touch;
    scrollbar-color: var(--gold-light) rgba(11, 41, 51, .45);
    scrollbar-width: thin;
  }

  .primary-nav::-webkit-scrollbar { width: 6px; }
  .primary-nav::-webkit-scrollbar-track { background: rgba(11, 41, 51, .45); }
  .primary-nav::-webkit-scrollbar-thumb { background: var(--gold-light); }

  .primary-menu {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .primary-nav::before {
    position: absolute;
    top: 24%;
    left: -105px;
    width: 220px;
    height: 360px;
    border: 24px solid rgba(101, 191, 193, .12);
    border-right-color: transparent;
    border-radius: 50%;
    content: "";
  }

  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line-light); font-family: var(--serif); font-size: 1.65rem; font-weight: 700; }
  .primary-nav a::after { display: none; }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero {
    min-height: 880px;
  }

  .hero-art {
    background-position: 34% center;
  }

  .hero-art::after {
    background: linear-gradient(90deg, rgba(11, 41, 51, .2) 0 34%, rgba(11, 41, 51, .55) 62%, rgba(11, 41, 51, .82) 100%);
  }

  .hero-layout {
    min-height: 880px;
    padding-block: 120px 180px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 590px;
    justify-self: start;
  }

  .hero h1 { font-size: clamp(3.5rem, 9vw, 5.4rem); }

  .section-heading { grid-template-columns: 62px minmax(0, 1fr); gap: 24px; }

  .triad-flow {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .triad-item,
  .triad-item:nth-child(2),
  .triad-item:nth-child(3) {
    display: grid;
    max-width: none;
    align-items: center;
    margin-top: 0;
    grid-template-columns: 76px 1fr;
    gap: 0 24px;
  }

  .triad-item .triad-icon { margin: 0; grid-row: 1 / 3; }
  .triad-item h3 { align-self: end; }
  .triad-item p { align-self: start; }
  .triad-number { display: none; }
  .triad-current { display: none; }

  .experience { min-height: auto; }
  .treatments { min-height: auto; }

  .treatment-current,
  .current-one,
  .current-two,
  .current-three,
  .current-four,
  .current-five {
    --indent: 0px;
    width: 100%;
    margin-right: 0;
  }

  .audience-tide {
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 58px 45px;
  }

  .audience-item,
  .audience-item:nth-child(2),
  .audience-item:nth-child(3),
  .audience-item:nth-child(4) {
    max-width: none;
    margin-top: 0;
  }

  .audience-path { display: none; }

  .pregnancy-note {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .pregnancy-note .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .pregnancy-orbit { width: 78px; height: 78px; }

  .about-grid,
  .voices-layout,
  .training-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .experience-seal {
    width: 310px;
    justify-self: start;
  }

  .expertise-stream { flex-wrap: wrap; }
  .ink-crescent { left: -250px; opacity: .55; }

  .testimonial { margin-top: 10px; }
  .training-steps { max-width: 620px; }
  .contact-layout { gap: 75px; }
  .contact-story { max-width: 690px; }

  .footer-layout {
    min-height: 220px;
    padding-block: 35px;
    grid-template-columns: 1fr;
    gap: 23px;
    text-align: center;
  }

  .footer-brand { justify-content: center; }
  .site-footer nav { flex-wrap: wrap; gap: 13px 23px; }
  .site-footer p { text-align: center; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 32px); }

  body { font-size: 16px; }
  html { scroll-padding-top: 76px; }

  .header-shell { width: calc(100vw - 28px); min-height: 72px; }
  .brand img { width: 155px; }

  .hero {
    min-height: 840px;
    align-items: end;
  }

  .hero-art {
    background-position: 34% top;
    background-size: auto 100%;
  }

  .hero-art::after {
    background:
      linear-gradient(180deg, rgba(11, 41, 51, .03) 0 25%, rgba(11, 41, 51, .52) 54%, rgba(11, 41, 51, .9) 79%),
      linear-gradient(90deg, transparent 0 22%, rgba(11, 41, 51, .3) 68%, rgba(11, 41, 51, .65) 100%);
  }

  .hero-layout {
    min-height: 840px;
    align-items: end;
    padding-block: 118px 162px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 14.6vw, 4.45rem);
    line-height: .98;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 1.05rem;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    gap: 11px;
    margin-top: 27px;
  }

  .hero-actions .button { width: 100%; min-width: 0; }
  .hero-facts { display: none; }
  .scroll-cue { bottom: 38px; }

  .wave-divider { height: 82px; }
  .wave-hero { height: 108px; }

  .section {
    padding-top: 105px;
    padding-bottom: 135px;
  }

  .section h2 { font-size: clamp(2.7rem, 12vw, 3.65rem); }

  .section-heading {
    display: block;
    margin-bottom: 58px;
  }

  .section-heading .section-index {
    margin-bottom: 24px;
  }

  .section-heading p:not(.section-index) {
    margin-top: 18px;
    font-size: 1.02rem;
  }

  .experience { padding-top: 110px; }
  .brush-wing { width: 380px; height: 170px; }
  .brush-wing-one { top: 20px; left: -220px; }

  .triad-flow { gap: 38px; }
  .triad-item,
  .triad-item:nth-child(2),
  .triad-item:nth-child(3) {
    display: block;
    padding-right: 90px;
  }

  .triad-item .triad-icon { position: absolute; top: 0; right: 0; width: 66px; height: 66px; }
  .triad-icon svg { width: 39px; }
  .triad-item h3 { font-size: 1.85rem; }
  .triad-item p { font-size: .94rem; }
  .text-link { margin-top: 45px; }

  .treatment-current,
  .current-one,
  .current-two,
  .current-three,
  .current-four,
  .current-five {
    min-height: 155px;
    padding: 25px 20px;
    grid-template-columns: 38px minmax(0, 1fr) 42px;
    gap: 12px;
    clip-path: polygon(2% 5%, 97% 0, 100% 82%, 94% 100%, 0 94%);
  }

  .treatment-current > svg { width: 42px; }
  .treatment-current h3 { font-size: 1.7rem; }
  .treatment-current p { font-size: .86rem; line-height: 1.5; }

  .audience-tide { grid-template-columns: 1fr; gap: 35px; }
  .audience-item { padding: 4px 36px 20px 0; border-bottom: 1px solid rgba(16, 42, 49, .16); }
  .audience-dot { top: 7px; }
  .audience-item h3 { font-size: 1.65rem; }

  .pregnancy-note {
    display: block;
    margin-top: 50px;
    padding: 32px 26px;
    clip-path: polygon(2% 4%, 97% 0, 100% 94%, 3% 100%, 0 29%);
  }

  .pregnancy-orbit { margin-bottom: 24px; }
  .pregnancy-note h3 { font-size: 1.8rem; }
  .pregnancy-note .button { width: 100%; margin-top: 28px; }

  .about { padding-top: 115px; }
  .about-copy h2 { font-size: clamp(2.8rem, 12.2vw, 3.75rem); }
  .about-copy .about-lead { margin-top: 24px; font-size: 1.04rem; }
  .experience-seal { width: 260px; margin-top: 5px; justify-self: center; }
  .seal-number { font-size: 6rem; }
  .expertise-stream { display: grid; grid-template-columns: 1fr; gap: 13px; margin-top: 15px; text-align: center; }
  .expertise-stream i { width: 1px; height: 20px; justify-self: center; border: 0; border-right: 1px solid var(--gold-light); border-radius: 0; }

  .voices-heading h2,
  .contact-story h2 { font-size: clamp(2.8rem, 12vw, 3.7rem); }
  .testimonial { padding: 40px 24px 30px; }
  .quote-mark { right: 15px; font-size: 8rem; }
  .testimonial blockquote { font-size: 2.15rem; }

  .training { padding-top: 110px; }
  .training-copy h2 { font-size: clamp(2.7rem, 11.7vw, 3.6rem); }
  .training-layout > .button { width: 100%; }

  .contact { padding-top: 110px; padding-bottom: 100px; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-details > div:nth-child(odd),
  .contact-details > div:nth-child(even) { min-height: 86px; padding: 17px 0; border-left: 0; }
  .contact-details dd { overflow-wrap: anywhere; }
  .lead-form { margin-inline: -4px; padding: 32px 22px; }
  .form-heading h3 { font-size: 2.05rem; }

  .footer-layout {
    min-height: 220px;
    padding-block: 35px;
    grid-template-columns: 1fr;
    gap: 23px;
    text-align: center;
  }

  .footer-brand { justify-content: center; }
  .site-footer nav { flex-wrap: wrap; gap: 13px 23px; }
  .site-footer p { text-align: center; }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    left: auto;
    width: 56px;
    height: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
  }

  .floating-whatsapp span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
}

/* Inner WordPress pages and archives */
.inner-main {
  min-height: 75vh;
  padding: 170px 0 130px;
  background:
    radial-gradient(circle at 12% 18%, rgba(101, 191, 193, .2), transparent 30%),
    linear-gradient(145deg, var(--abyss), #0a2b34 58%, var(--lagoon));
}

.inner-shell {
  position: relative;
  width: var(--container);
  margin-inline: auto;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(224, 196, 124, .32);
  background: rgba(7, 30, 38, .75);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(18px);
}

.inner-shell::before {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 120px;
  height: 120px;
  border-top: 3px solid var(--gold-light);
  border-right: 3px solid var(--gold-light);
  content: "";
  pointer-events: none;
}

.inner-kicker {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.inner-shell h1 {
  max-width: 900px;
  color: var(--foam);
  font-size: clamp(3rem, 7vw, 6rem);
}

.inner-content {
  max-width: 820px;
  margin-top: 34px;
  color: var(--muted-light);
  font-size: 1.08rem;
}

.inner-content > * + * { margin-top: 1.2em; }
.inner-content a { color: var(--gold-light); text-decoration: underline; }
.inner-content img { height: auto; }

.archive-grid {
  display: grid;
  margin-top: 50px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.archive-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(168, 212, 208, .25);
  background: rgba(16, 47, 56, .66);
}

.archive-card h2 { color: var(--gold-light); font-size: 2rem; }
.archive-card p { margin-top: 12px; color: var(--muted-light); }
.archive-card a { overflow-wrap: anywhere; }
.testimonial-date { color: #fff8e7; }

@media (max-width: 700px) {
  .inner-main { padding-top: 125px; }
  .inner-shell { padding: 34px 22px; }
  .archive-grid { grid-template-columns: 1fr; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Watsu-Ways visual system 1.1.2 */
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container {
  z-index: 3;
}

.wave-divider {
  z-index: 1;
}

.section h2,
.hero h1 {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -.04em;
}

.site-header {
  border-bottom-color: rgba(85, 200, 190, .18);
  background: rgba(16, 39, 46, .82);
}

.site-header.is-scrolled,
.site-header.nav-active {
  border-color: rgba(85, 200, 190, .3);
  background: rgba(16, 39, 46, .94);
}

.brand,
.footer-brand {
  border: 1px solid rgba(85, 200, 190, .32);
  border-radius: 18px 6px 18px 6px;
  background: linear-gradient(135deg, rgba(242, 255, 249, .96), rgba(189, 226, 215, .96));
  clip-path: none;
}

.primary-nav a::after {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--aqua), var(--coral), var(--pale-lavender));
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--mint);
}

.header-cta,
.button-gold {
  border-color: var(--coral);
  color: var(--ink);
  background: var(--coral);
  box-shadow: 0 14px 38px rgba(242, 139, 114, .24);
}

.header-cta:hover,
.button-gold:hover {
  color: var(--ink);
  background: #ffab95;
  box-shadow: 0 18px 46px rgba(242, 139, 114, .34);
}

.button-outline {
  border-color: rgba(189, 226, 215, .88);
  color: var(--mint);
  background: rgba(16, 39, 46, .48);
}

.button-outline:hover {
  border-color: var(--aqua);
  color: var(--foam);
  background: rgba(14, 94, 99, .78);
}

.button-ink {
  border-color: var(--ink);
  color: var(--foam);
  background: var(--ink);
}

/* Full-bleed video hero */
.hero {
  min-height: max(760px, 100svh);
  background: var(--abyss-2);
}

.hero-art {
  z-index: -3;
  overflow: hidden;
  background-color: var(--abyss-2);
  background-position: center;
  background-size: cover;
  animation: none;
}

.hero-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-art::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 39, 46, .12) 0%, rgba(16, 39, 46, .28) 38%, rgba(16, 39, 46, .84) 68%, rgba(16, 39, 46, .98) 100%),
    linear-gradient(180deg, rgba(16, 39, 46, .14), transparent 44%, rgba(16, 39, 46, .2));
}

.hero-grain {
  opacity: .09;
}

.hero-layout {
  min-height: max(720px, 100svh);
  padding-block: 138px 182px;
}

.hero-copy {
  width: min(100%, 680px);
  max-width: 680px;
}

.hero-copy::before {
  inset: -42px -48px;
  border: 1px solid rgba(85, 200, 190, .22);
  border-radius: 30px 8px 30px 8px;
  background: linear-gradient(135deg, rgba(16, 39, 46, .8), rgba(14, 94, 99, .48));
  box-shadow: 0 30px 80px rgba(3, 22, 27, .3);
  clip-path: none;
  backdrop-filter: blur(7px);
}

.hero h1 {
  color: var(--foam);
  font-size: clamp(3.9rem, 5.2vw, 5.9rem);
  line-height: .98;
}

.hero h1 span {
  margin-top: .16em;
  color: var(--gold-light);
  font-size: .62em;
  line-height: 1.12;
}

.hero-lead {
  color: rgba(242, 255, 249, .9);
  font-weight: 400;
}

.hero-facts {
  color: rgba(242, 255, 249, .76);
}

.hero-facts li:not(:last-child)::after {
  background: var(--coral);
}

.hero-orbit {
  display: none !important;
}

.scroll-cue {
  border: 1px solid rgba(85, 200, 190, .28);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(16, 39, 46, .82);
}

.scroll-cue svg {
  stroke: var(--coral);
}

.hero-video-toggle {
  position: absolute;
  z-index: 6;
  bottom: 46px;
  left: 28px;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(189, 226, 215, .64);
  border-radius: 50%;
  place-items: center;
  color: var(--foam);
  background: rgba(16, 39, 46, .82);
  box-shadow: 0 12px 30px rgba(3, 22, 27, .26);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, background .25s ease;
}

.hero-video-toggle:hover {
  background: var(--deep);
  transform: translateY(-2px);
}

.hero-video-toggle svg {
  position: absolute;
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-video-toggle .video-play-icon {
  display: none;
}

.hero-video-toggle.is-paused .video-pause-icon {
  display: none;
}

.hero-video-toggle.is-paused .video-play-icon {
  display: block;
}

/* Centered graphic heading system */
.section-heading,
.voices-heading,
.training-copy,
.contact-heading {
  --heading-color: var(--ink);
  --heading-muted: rgba(22, 49, 58, .86);
  --heading-accent: var(--aqua);
  --heading-accent-two: var(--coral);
  display: grid;
  width: min(100%, 920px);
  justify-items: center;
  margin: 0 auto clamp(64px, 7vw, 96px);
  grid-template-columns: 1fr;
  gap: 0;
  color: var(--heading-color);
  text-align: center;
}

.section-heading::before,
.voices-heading::before,
.training-copy::before,
.contact-heading::before {
  width: clamp(126px, 12vw, 174px);
  height: 38px;
  margin-bottom: 14px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 38' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 10c24-9 39-9 62 0s40 9 63 0 34-8 51-2' fill='none' stroke='%2355c8be' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M13 21c22-9 38-9 59 0s39 9 60 0 32-7 44-3' fill='none' stroke='%23f28b72' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M32 32c18-7 33-7 51 0s34 7 52 0' fill='none' stroke='%23655a9a' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  animation: heading-waves 6s ease-in-out infinite;
}

.section-heading::after,
.voices-heading::after,
.training-copy::after,
.contact-heading::after {
  width: min(176px, 42%);
  height: 4px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--heading-accent), var(--heading-accent-two), transparent);
  content: "";
}

.section-heading-copy {
  display: grid;
  max-width: 880px;
  justify-items: center;
}

.section-heading h2,
.voices-heading h2,
.training-copy h2,
.contact-heading h2 {
  max-width: 880px;
  margin-inline: auto;
  color: var(--heading-color);
  font-family: var(--sans);
  font-size: clamp(3rem, 5vw, 4.9rem);
  font-weight: 700;
  line-height: 1.06;
  text-align: center;
  text-wrap: balance;
}

.section-heading p:not(.section-index),
.voices-heading p,
.training-copy p,
.contact-heading p {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--heading-muted);
  font-size: clamp(1.04rem, 1.55vw, 1.22rem);
  line-height: 1.72;
  text-align: center;
}

.section-index {
  display: none;
}

.treatments .section-heading,
.about .section-heading,
.voices .section-heading,
.training .section-heading,
.contact .section-heading {
  --heading-color: var(--foam);
  --heading-muted: rgba(242, 255, 249, .86);
}

.treatments .section-heading { --heading-accent: var(--coral); --heading-accent-two: var(--aqua); }
.for-whom .section-heading { --heading-color: var(--foam); --heading-muted: rgba(242, 255, 249, .86); --heading-accent: var(--pale-lavender); --heading-accent-two: var(--coral); }
.about .section-heading { --heading-accent: var(--mint); --heading-accent-two: var(--coral); }
.voices .section-heading { --heading-accent: var(--coral); --heading-accent-two: var(--aqua); }
.training .section-heading { --heading-accent: var(--aqua); --heading-accent-two: var(--pale-lavender); }
.contact .section-heading { --heading-accent: var(--pale-lavender); --heading-accent-two: var(--coral); }

.section-title-visual {
  display: block;
  direction: rtl;
}

.section-title-word {
  display: inline-block;
  white-space: nowrap;
}

.section-title-letter {
  display: inline-block;
}

.js [data-title-animation].is-title-ready .section-title-letter {
  opacity: 0;
  transform: translateY(.45em) scale(.92);
}

.js [data-title-animation].is-title-writing .section-title-letter {
  animation: title-letter-in .58s var(--ease-water) forwards;
  animation-delay: var(--letter-delay);
}

.js [data-title-animation].is-title-complete .section-title-letter {
  opacity: 1;
  transform: none;
}

@keyframes title-letter-in {
  from { opacity: 0; transform: translateY(.45em) scale(.92); }
  to { opacity: 1; transform: none; }
}

@keyframes heading-waves {
  0%, 100% { transform: translateY(0) scaleX(1); }
  50% { transform: translateY(-4px) scaleX(1.04); }
}

/* Ordered section compositions */
.experience {
  min-height: auto;
  padding: 150px 0 220px;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 18%, rgba(242, 255, 249, .58), transparent 30%),
    linear-gradient(145deg, var(--mint), #a8d8d0 58%, #96cec8);
}

.brush-wing,
.water-rings {
  display: none;
}

.triad-flow {
  min-height: auto;
  align-items: stretch;
  gap: clamp(26px, 4vw, 58px);
}

.triad-current {
  display: none;
}

.triad-item,
.triad-item:nth-child(2),
.triad-item:nth-child(3) {
  display: grid;
  max-width: none;
  min-height: 330px;
  align-content: start;
  justify-items: center;
  margin-top: 0;
  padding: 34px 28px 30px;
  border-inline-start: 1px solid rgba(22, 49, 58, .16);
  text-align: center;
}

.triad-item:first-child {
  border-inline-start: 0;
}

.triad-number {
  position: static;
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 22px;
  border: 0;
  border-radius: 50%;
  place-items: center;
  color: var(--ink);
  background: var(--aqua);
  box-shadow: 0 14px 34px rgba(22, 49, 58, .14);
  font-family: var(--sans);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  animation: numbered-float 5.5s ease-in-out infinite;
}

.triad-therapist .triad-number {
  background: var(--coral);
  animation-delay: -1.8s;
}

.triad-patient .triad-number {
  color: var(--foam);
  background: var(--lavender);
  animation-delay: -3.6s;
}

.triad-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-color: rgba(22, 49, 58, .24);
  color: var(--deep);
  background: rgba(242, 255, 249, .34);
}

.triad-icon svg {
  width: 38px;
}

.triad-item h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 2rem;
  font-weight: 700;
}

.triad-item p {
  max-width: 32ch;
  color: rgba(22, 49, 58, .88);
}

.text-link {
  justify-content: center;
  margin: 38px auto 0;
  border-color: rgba(22, 49, 58, .36);
}

.treatments {
  min-height: auto;
  padding: 150px 0 230px;
  background:
    radial-gradient(circle at 12% 12%, rgba(85, 200, 190, .24), transparent 30%),
    linear-gradient(150deg, #115a62, var(--deep) 55%, #174c60);
}

.treatment-river {
  display: grid;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.treatment-river::before,
.treatment-river::after {
  display: none;
}

.treatment-current,
.current-one,
.current-two,
.current-three,
.current-four,
.current-five {
  --indent: 0;
  width: 100%;
  min-height: 178px;
  margin: 0;
  padding: 28px 30px;
  border: 1px solid rgba(189, 226, 215, .28);
  border-radius: 26px 7px 26px 7px;
  grid-template-columns: 44px minmax(0, 1fr) 54px;
  gap: 20px;
  background: linear-gradient(135deg, rgba(242, 255, 249, .12), rgba(22, 117, 122, .2));
  clip-path: none;
  box-shadow: 0 20px 50px rgba(7, 40, 45, .15);
}

.treatment-current:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.treatment-current:hover {
  border-color: rgba(242, 139, 114, .68);
  background: linear-gradient(135deg, rgba(242, 255, 249, .17), rgba(85, 200, 190, .24));
  transform: translateY(-6px);
}

.treatment-current::after {
  border-color: rgba(85, 200, 190, .18);
}

.treatment-mark {
  color: var(--gold-light);
  font-family: var(--sans);
}

.treatment-current h3 {
  font-family: var(--sans);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.treatment-current p {
  color: rgba(242, 255, 249, .84);
}

.for-whom {
  min-height: auto;
  padding: 150px 0 230px;
  color: var(--foam);
  background:
    radial-gradient(circle at 84% 74%, rgba(85, 200, 190, .22), transparent 32%),
    linear-gradient(145deg, #0d666b, #0a565e 62%, #174c60);
}

.sand-grain {
  opacity: .07;
}

.audience-tide {
  isolation: isolate;
  min-height: auto;
  padding-bottom: 124px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 34px);
}

.audience-path {
  z-index: 0;
  top: auto;
  right: -3%;
  bottom: 0;
  width: 106%;
  height: 126px;
  stroke: rgba(189, 226, 215, .72);
  stroke-width: 2;
  animation: audience-wave 9s ease-in-out infinite alternate;
}

.audience-path path:last-child {
  stroke: var(--coral);
  stroke-dasharray: 5 12;
}

.audience-item,
.audience-item:nth-child(2),
.audience-item:nth-child(3),
.audience-item:nth-child(4) {
  z-index: 1;
  max-width: none;
  min-height: 190px;
  margin-top: 0;
  padding: 58px 24px 28px;
  border: 1px solid rgba(189, 226, 215, .5);
  border-radius: 25px 7px 25px 7px;
  color: var(--ink);
  background: linear-gradient(145deg, rgba(242, 255, 249, .98), rgba(189, 226, 215, .96));
  box-shadow: 0 24px 52px rgba(4, 38, 43, .2);
  text-align: center;
}

.audience-item:nth-child(2) { transform: translateY(24px); }
.audience-item:nth-child(3) { transform: translateY(4px); }
.audience-item:nth-child(4) { transform: translateY(30px); }

.audience-dot {
  top: 22px;
  right: 50%;
  width: 22px;
  height: 22px;
  border: 0;
  background: var(--aqua);
  box-shadow: 0 0 0 8px rgba(85, 200, 190, .2);
  transform: translateX(50%);
}

.audience-item:nth-child(2) .audience-dot { background: var(--pale-lavender); box-shadow: 0 0 0 8px rgba(211, 200, 234, .26); }
.audience-item:nth-child(3) .audience-dot { background: var(--coral); box-shadow: 0 0 0 8px rgba(242, 139, 114, .22); }
.audience-item:nth-child(4) .audience-dot { background: var(--aqua); }

.audience-item h3 {
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1.35rem, 1.85vw, 1.75rem);
  line-height: 1.25;
}

.audience-item p {
  color: rgba(22, 49, 58, .86);
}

.audience-item p:empty {
  display: none;
}

.pregnancy-note {
  margin-top: 36px;
  border-color: rgba(189, 226, 215, .54);
  border-radius: 28px 8px 28px 8px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--shell), #f5d8bc);
  box-shadow: 0 24px 55px rgba(4, 38, 43, .17);
  clip-path: none;
}

.pregnancy-note p {
  color: rgba(22, 49, 58, .88);
}

.pregnancy-orbit {
  border-color: rgba(22, 49, 58, .3);
  background: rgba(242, 255, 249, .45);
}

.pregnancy-orbit span {
  background: var(--coral);
}

.about {
  min-height: auto;
  padding: 150px 0 230px;
  background:
    radial-gradient(circle at 14% 25%, rgba(211, 200, 234, .2), transparent 30%),
    linear-gradient(145deg, #625b96, var(--lavender) 52%, #435d83);
}

.ink-crescent {
  display: none;
}

.about-grid {
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .7fr);
  gap: 70px;
}

.about-copy h2 {
  color: var(--foam);
}

.about-copy p,
.about-copy .about-lead {
  color: rgba(242, 255, 249, .9);
}

.about-copy .about-lead {
  margin-top: 0;
}

.experience-seal {
  width: min(100%, 320px);
  aspect-ratio: auto;
  padding: 54px 34px;
  border: 1px solid rgba(242, 255, 249, .38);
  border-radius: 48% 52% 46% 54% / 56% 44% 56% 44%;
  color: var(--ink);
  background: linear-gradient(145deg, var(--coral), #f6ad98);
  box-shadow: 0 25px 60px rgba(24, 24, 55, .2);
}

.experience-seal svg {
  display: none;
}

.seal-number {
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(4.7rem, 7vw, 6.7rem);
}

.expertise-stream {
  justify-content: center;
  border-block-color: rgba(242, 255, 249, .24);
  color: rgba(242, 255, 249, .9);
}

.expertise-stream i {
  border-color: var(--coral);
}

.voices {
  min-height: auto;
  padding: 145px 0 225px;
  background:
    radial-gradient(circle at 84% 22%, rgba(85, 200, 190, .18), transparent 30%),
    linear-gradient(145deg, #0f7378, var(--deep) 62%, #274f70);
}

.voices-layout {
  position: relative;
  display: block;
  width: min(100%, 940px);
  margin-inline: auto;
}

.testimonial {
  margin: 0;
  padding: clamp(44px, 6vw, 72px);
  border: 1px solid rgba(189, 226, 215, .38);
  border-inline-start: 5px solid var(--coral);
  border-radius: 30px 8px 30px 8px;
  background: linear-gradient(145deg, rgba(242, 255, 249, .11), rgba(16, 39, 46, .2));
  box-shadow: 0 28px 70px rgba(4, 38, 43, .18);
}

.quote-mark {
  top: -54px;
  color: var(--gold-light);
}

.testimonial blockquote {
  font-size: clamp(2.15rem, 4vw, 3.7rem);
}

.testimonial figcaption {
  color: var(--mint);
}

.testimonial-water {
  display: none;
}

.training {
  min-height: auto;
  padding: 145px 0 230px;
  background:
    radial-gradient(circle at 18% 82%, rgba(211, 200, 234, .2), transparent 28%),
    linear-gradient(145deg, #5a568f, var(--lavender) 62%, #3f547c);
}

.training-current {
  display: none;
}

.training-layout {
  display: grid;
  justify-items: center;
  grid-template-columns: 1fr;
  gap: 34px;
}

.training-steps {
  display: grid;
  width: min(100%, 880px);
  border: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.training-steps li {
  min-height: 82px;
  padding: 18px 22px;
  border: 1px solid rgba(211, 200, 234, .34);
  border-radius: 20px 6px 20px 6px;
  grid-template-columns: 52px 1fr;
  background: rgba(16, 39, 46, .22);
}

.training-steps li span {
  color: var(--gold-light);
  font-family: var(--sans);
}

.training-layout > .button {
  grid-column: auto;
  justify-self: center;
}

.resources {
  min-height: auto;
  padding: 145px 0 225px;
  background:
    radial-gradient(circle at 86% 22%, rgba(242, 139, 114, .16), transparent 28%),
    radial-gradient(circle at 12% 78%, rgba(211, 200, 234, .18), transparent 30%),
    linear-gradient(145deg, #244e5a, #1b4651 58%, #2b5264);
}

.resources .section-heading {
  --heading-color: var(--foam);
  --heading-muted: rgba(242, 255, 249, .84);
  --heading-accent: var(--aqua);
  --heading-accent-two: var(--coral);
}

.resource-links {
  display: grid;
  width: min(100%, 1080px);
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.resource-links a {
  position: relative;
  display: grid;
  min-height: 92px;
  padding: 22px 24px;
  overflow: hidden;
  border: 1px solid rgba(189, 226, 215, .5);
  border-radius: 22px 7px 22px 7px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 14px;
  color: var(--ink);
  background: linear-gradient(145deg, rgba(242, 255, 249, .98), rgba(189, 226, 215, .94));
  box-shadow: 0 18px 42px rgba(4, 31, 38, .16);
  font-weight: 650;
  line-height: 1.35;
  transition: border-color .28s ease, box-shadow .28s ease, transform .28s var(--ease-water);
}

.resource-links a::before {
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--aqua), var(--coral), var(--pale-lavender));
  content: "";
  transform: scaleX(.35);
  transform-origin: right;
  transition: transform .35s var(--ease-water);
}

.resource-links a:nth-child(3n + 2) {
  background: linear-gradient(145deg, rgba(242, 255, 249, .98), rgba(211, 200, 234, .94));
}

.resource-links a:nth-child(3n) {
  background: linear-gradient(145deg, rgba(242, 255, 249, .98), rgba(235, 201, 168, .94));
}

.resource-links a:hover,
.resource-links a:focus-visible {
  border-color: var(--coral);
  box-shadow: 0 24px 52px rgba(4, 31, 38, .24);
  transform: translateY(-5px);
}

.resource-links a:hover::before,
.resource-links a:focus-visible::before {
  transform: scaleX(1);
}

.resource-links svg {
  width: 25px;
  fill: none;
  stroke: var(--deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact {
  min-height: auto;
  padding: 145px 0 130px;
  background:
    radial-gradient(circle at 8% 84%, rgba(85, 200, 190, .18), transparent 30%),
    linear-gradient(150deg, #203f49, var(--abyss) 58%, #174c58);
}

.contact-layout {
  grid-template-columns: minmax(0, .85fr) minmax(430px, 1.15fr);
  gap: clamp(50px, 7vw, 100px);
}

.contact-details {
  margin-top: 0;
}

.contact-details dt {
  color: var(--gold-light);
}

.direct-whatsapp {
  color: var(--mint);
}

.lead-form {
  border: 1px solid rgba(85, 200, 190, .48);
  border-radius: 30px 8px 30px 8px;
  color: var(--ink);
  background: linear-gradient(145deg, var(--mint), #9fd4cc);
  box-shadow: 0 30px 76px rgba(3, 22, 27, .28);
  backdrop-filter: none;
}

.lead-form::before,
.lead-form::after {
  border-color: var(--coral);
}

.form-heading > span {
  border-color: var(--coral);
}

.form-heading h3,
.field-row label {
  color: var(--ink);
}

.form-heading p,
.consent-row,
.form-note {
  color: rgba(22, 49, 58, .82);
}

.field-row label span {
  color: #8b2f25;
}

.field-row input,
.field-row select,
.field-row textarea {
  border-color: rgba(22, 49, 58, .36);
  border-radius: 12px 4px 12px 4px;
  color: var(--ink);
  background: rgba(242, 255, 249, .78);
}

.field-row input:focus,
.field-row select:focus,
.field-row textarea:focus {
  border-color: var(--deep);
  background: var(--foam);
  box-shadow: 0 0 0 4px rgba(14, 94, 99, .15);
}

.field-row input[aria-invalid="true"],
.field-row select[aria-invalid="true"],
.field-row textarea[aria-invalid="true"] {
  border-color: #8b2f25;
  box-shadow: 0 0 0 2px rgba(139, 47, 37, .14);
}

.field-row select option {
  color: var(--ink);
  background: var(--foam);
}

.select-wrap svg {
  stroke: var(--deep);
}

.custom-check {
  border-color: rgba(22, 49, 58, .62);
}

.consent-row input:checked + .custom-check {
  border-color: var(--deep);
  background: var(--deep);
}

.consent-row input:checked + .custom-check svg {
  stroke: var(--foam);
}

.form-status {
  color: #245f3d;
}

.field-error,
.form-status.is-error {
  color: #762319;
}

.form-status.is-pending {
  color: #594600;
}

.form-status a {
  color: var(--deep);
  text-decoration-thickness: 2px;
}

.site-footer {
  z-index: 1;
  border-top-color: rgba(85, 200, 190, .22);
  background: var(--abyss-2);
}

.site-footer nav,
.site-footer p {
  color: rgba(242, 255, 249, .72);
}

.site-footer nav a:hover {
  color: var(--coral);
}

.floating-whatsapp,
.floating-whatsapp.is-hidden {
  z-index: 1000;
  bottom: max(22px, env(safe-area-inset-bottom));
  border-color: rgba(189, 226, 215, .72);
  opacity: 1;
  color: var(--mint);
  background: rgba(16, 39, 46, .94);
  pointer-events: auto;
  transform: none;
}

.floating-whatsapp:hover {
  background: var(--deep);
  transform: translateY(-3px);
}

.motion-toggle {
  position: fixed;
  z-index: 1000;
  bottom: max(22px, env(safe-area-inset-bottom));
  left: 22px;
  display: flex;
  min-height: 54px;
  padding: 12px 18px;
  border: 1px solid rgba(211, 200, 234, .72);
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  color: var(--foam);
  background: rgba(16, 39, 46, .94);
  box-shadow: 0 18px 50px rgba(3, 22, 27, .3);
  font-size: .82rem;
  font-weight: 650;
  backdrop-filter: blur(12px);
  transition: background .25s ease, transform .25s ease;
}

.motion-toggle:hover {
  background: var(--deep);
  transform: translateY(-3px);
}

.motion-toggle svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.motion-toggle .motion-play-icon,
.motion-toggle.is-paused .motion-pause-icon {
  display: none;
}

.motion-toggle.is-paused .motion-play-icon {
  display: block;
}

.motion-paused *,
.motion-paused *::before,
.motion-paused *::after {
  animation-play-state: paused !important;
}

.wave-divider svg {
  transform-origin: 50% 100%;
  animation: divider-breathe 11s ease-in-out infinite alternate;
}

.wave-hero .wave-dune { fill: rgba(242, 139, 114, .62); }
.wave-hero .wave-gold-line { stroke: var(--pale-lavender); }
.wave-hero .wave-aqua { fill: rgba(85, 200, 190, .86); }
.wave-hero .wave-deep { fill: var(--mint); }
.wave-ripple .ripple-base { fill: #115a62; }
.wave-ripple .ripple-line { stroke: var(--coral); }
.wave-sand .sand-foam { fill: rgba(85, 200, 190, .78); }
.wave-sand .sand-line { stroke: var(--pale-lavender); }
.wave-sand .sand-base { fill: #0d666b; }
.wave-brush .brush-shadow { fill: rgba(16, 39, 46, .68); }
.wave-brush .brush-stroke { fill: var(--lavender); }
.wave-brush .brush-gold { stroke: var(--coral); }
.wave-rings .rings-base { fill: #0f7378; }
.wave-rings .rings-line { stroke: var(--coral); }
.wave-rings ellipse { stroke: rgba(189, 226, 215, .56); }
.wave-fins .fins-back { fill: rgba(22, 49, 58, .68); }
.wave-fins .fins-front { fill: var(--lavender); }
.wave-fins .fins-line { stroke: var(--aqua); }
.wave-vortex .vortex-back { fill: rgba(189, 226, 215, .54); }
.wave-vortex .vortex-mid { fill: #3f547c; }
.wave-vortex .vortex-line { stroke: var(--coral); }
.wave-vortex .vortex-front { fill: #244e5a; }
.wave-resources .resources-back { fill: rgba(242, 139, 114, .5); }
.wave-resources .resources-line { fill: none; stroke: var(--pale-lavender); stroke-width: 3; }
.wave-resources .resources-front { fill: #203f49; }

@keyframes numbered-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes audience-wave {
  from { transform: translateX(-1%) scaleX(1.01); }
  to { transform: translateX(1%) scaleX(.99); }
}

@keyframes divider-breathe {
  from { transform: scaleX(1.01) translateY(0); }
  to { transform: scaleX(1.035) translateY(3px); }
}

@media (max-width: 1080px) {
  .audience-tide {
    padding-bottom: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .audience-item,
  .audience-item:nth-child(2),
  .audience-item:nth-child(3),
  .audience-item:nth-child(4) {
    min-height: 170px;
    transform: none;
  }

  .audience-path {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    background: rgba(16, 39, 46, .92);
  }

  .primary-nav {
    background:
      radial-gradient(circle at 0 0, rgba(85, 200, 190, .24), transparent 34%),
      var(--abyss-2);
    scrollbar-color: var(--coral) rgba(22, 49, 58, .45);
  }

  .primary-nav::-webkit-scrollbar-thumb {
    background: var(--coral);
  }

  .primary-nav a {
    font-family: var(--sans);
  }

  .hero {
    min-height: 860px;
  }

  .hero-art::after {
    background:
      linear-gradient(90deg, rgba(16, 39, 46, .22), rgba(16, 39, 46, .62) 54%, rgba(16, 39, 46, .94)),
      linear-gradient(180deg, rgba(16, 39, 46, .08), transparent 35%, rgba(16, 39, 46, .42));
  }

  .hero-layout {
    min-height: 860px;
    padding-block: 122px 165px;
  }

  .hero-copy {
    max-width: 610px;
    justify-self: start;
  }

  .hero-copy::before {
    inset: -34px -34px;
  }

  .hero-video-toggle {
    bottom: 138px;
  }

  .section-heading,
  .voices-heading,
  .training-copy,
  .contact-heading {
    margin-bottom: 62px;
  }

  .section-heading h2,
  .voices-heading h2,
  .training-copy h2,
  .contact-heading h2 {
    font-size: clamp(2.8rem, 8.5vw, 4.25rem);
  }

  .experience,
  .treatments,
  .for-whom,
  .about,
  .voices,
  .training,
  .resources {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 175px;
  }

  .contact {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 105px;
  }

  .triad-flow {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .triad-item,
  .triad-item:nth-child(2),
  .triad-item:nth-child(3) {
    min-height: auto;
    padding: 30px 28px;
    border: 1px solid rgba(22, 49, 58, .16);
    border-radius: 24px 7px 24px 7px;
    background: rgba(242, 255, 249, .2);
  }

  .triad-number {
    display: grid;
  }

  .treatment-river {
    grid-template-columns: 1fr;
  }

  .treatment-current:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 50px;
  }

  .about-copy {
    max-width: 760px;
    text-align: center;
  }

  .about-copy p {
    margin-inline: auto;
  }

  .experience-seal {
    justify-self: center;
  }

  .contact-layout {
    gap: 54px;
  }

  .contact-story {
    width: min(100%, 720px);
    max-width: 720px;
    margin-inline: auto;
  }

  .lead-form {
    width: min(100%, 720px);
    margin-inline: auto;
  }

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

@media (max-width: 620px) {
  .hero {
    min-height: 820px;
    align-items: end;
  }

  .hero-video {
    object-position: center;
  }

  .hero-art::after {
    background:
      linear-gradient(180deg, rgba(16, 39, 46, .08) 0 22%, rgba(16, 39, 46, .58) 48%, rgba(16, 39, 46, .97) 72%),
      linear-gradient(90deg, rgba(16, 39, 46, .08), rgba(16, 39, 46, .38));
  }

  .hero-layout {
    min-height: 820px;
    align-items: end;
    padding-block: 112px 142px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy::before {
    inset: -24px -18px;
    border-radius: 22px 6px 22px 6px;
    background: rgba(16, 39, 46, .76);
    backdrop-filter: blur(4px);
  }

  .hero h1 {
    font-size: clamp(2.85rem, 13vw, 4rem);
  }

  .hero h1 span {
    font-size: .56em;
    line-height: 1.2;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-video-toggle {
    bottom: 112px;
    left: 16px;
    width: 44px;
    height: 44px;
  }

  .scroll-cue {
    bottom: 28px;
  }

  .section-heading,
  .voices-heading,
  .training-copy,
  .contact-heading {
    margin-bottom: 52px;
  }

  .section-heading::before,
  .voices-heading::before,
  .training-copy::before,
  .contact-heading::before {
    width: 118px;
    height: 30px;
    margin-bottom: 12px;
  }

  .section-heading h2,
  .voices-heading h2,
  .training-copy h2,
  .contact-heading h2 {
    font-size: clamp(2.45rem, 11vw, 3.35rem);
    line-height: 1.08;
  }

  .section-heading p:not(.section-index),
  .voices-heading p,
  .training-copy p,
  .contact-heading p {
    margin-top: 17px;
    font-size: .98rem;
    line-height: 1.62;
  }

  .experience,
  .treatments,
  .for-whom,
  .about,
  .voices,
  .training,
  .resources {
    padding-top: 100px;
    padding-bottom: 132px;
  }

  .contact {
    padding-top: 100px;
    padding-bottom: 88px;
  }

  .wave-divider {
    height: 80px;
  }

  .wave-hero {
    height: 102px;
  }

  .triad-item,
  .triad-item:nth-child(2),
  .triad-item:nth-child(3) {
    display: grid;
    justify-items: center;
    padding: 28px 22px;
    text-align: center;
  }

  .triad-item .triad-icon {
    position: static;
    width: 58px;
    height: 58px;
    margin: 0 0 16px;
  }

  .triad-number {
    width: 58px;
    height: 58px;
    margin-bottom: 17px;
    font-size: 1.75rem;
  }

  .triad-item h3 {
    font-size: 1.72rem;
  }

  .triad-item p {
    font-size: .94rem;
  }

  .treatment-current,
  .current-one,
  .current-two,
  .current-three,
  .current-four,
  .current-five {
    min-height: 150px;
    padding: 24px 18px;
    grid-template-columns: 34px minmax(0, 1fr) 40px;
    gap: 12px;
  }

  .treatment-current h3 {
    font-size: 1.55rem;
  }

  .treatment-current p {
    font-size: .88rem;
  }

  .audience-tide {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .audience-item,
  .audience-item:nth-child(2),
  .audience-item:nth-child(3),
  .audience-item:nth-child(4) {
    min-height: 150px;
    padding: 54px 22px 24px;
    border-bottom: 1px solid rgba(189, 226, 215, .5);
  }

  .pregnancy-note {
    margin-top: 32px;
    padding: 30px 24px;
  }

  .expertise-stream {
    display: grid;
    padding: 22px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .expertise-stream i {
    width: 28px;
    height: 1px;
    justify-self: center;
    border: 0;
    border-top: 1px solid var(--coral);
    border-radius: 0;
  }

  .testimonial {
    padding: 38px 24px 30px;
  }

  .testimonial blockquote {
    font-size: 1.9rem;
  }

  .training-steps {
    grid-template-columns: 1fr;
  }

  .training-steps li {
    min-height: 70px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-details > div:nth-child(odd),
  .contact-details > div:nth-child(even) {
    padding-inline: 0;
    border-left: 0;
  }

  .lead-form {
    margin-inline: 0;
    padding: 30px 20px;
  }

  .resource-links {
    grid-template-columns: 1fr;
  }

  .resource-links a {
    min-height: 78px;
    padding: 18px 20px;
  }

  .floating-whatsapp,
  .floating-whatsapp.is-hidden {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    left: auto;
    width: 56px;
    height: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
  }

  .motion-toggle {
    bottom: max(16px, env(safe-area-inset-bottom));
    left: 16px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
  }

  .motion-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}

/* Keep the three persistent motion and contact controls in separate zones. */
.motion-toggle {
  right: 22px;
  left: auto;
}

.hero-video-toggle {
  top: 108px;
  bottom: auto;
  left: 24px;
}

@media (max-width: 900px) {
  .hero-video-toggle {
    top: 96px;
    bottom: auto;
  }
}

@media (max-width: 620px) {
  .motion-toggle {
    right: auto;
    left: 16px;
  }

  .hero-video-toggle {
    top: 92px;
    bottom: auto;
    left: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero-video-toggle {
    display: none;
  }

  .motion-toggle {
    display: none;
  }

  .wave-divider svg,
  .section-heading::before,
  .voices-heading::before,
  .training-copy::before,
  .contact-heading::before,
  .triad-number,
  .audience-path {
    animation: none !important;
    transform: none !important;
  }

  .js [data-title-animation] .section-title-letter {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
}

/* Source-backed support pages retained for the SEO migration */
.inner-main {
  position: relative;
  isolation: isolate;
  min-height: 78vh;
  padding: 160px 0 150px;
  background:
    radial-gradient(circle at 12% 18%, rgba(85, 200, 190, .18), transparent 28%),
    radial-gradient(circle at 88% 76%, rgba(211, 200, 234, .16), transparent 30%),
    linear-gradient(145deg, #1b4651, var(--abyss) 62%, #2b5264);
}

.inner-main::after {
  position: absolute;
  z-index: -1;
  right: -5%;
  bottom: 0;
  left: -5%;
  height: 170px;
  opacity: .78;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 170' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 96c177-57 331-48 488 4s309 58 465 3c175-62 322-51 487 17v50H0Z' fill='%230e5e63'/%3E%3Cpath d='M0 112c177-49 330-40 487 11s310 52 465 0c176-59 322-44 488 23' fill='none' stroke='%23f28b72' stroke-width='3'/%3E%3C/svg%3E");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  pointer-events: none;
}

.inner-shell {
  width: min(940px, calc(100vw - 64px));
  padding: clamp(38px, 6vw, 78px);
  border: 1px solid rgba(189, 226, 215, .42);
  border-radius: 34px 9px 34px 9px;
  background: linear-gradient(145deg, rgba(16, 39, 46, .91), rgba(27, 70, 81, .88));
  box-shadow: 0 34px 90px rgba(3, 22, 27, .34);
}

.inner-shell::before {
  top: 0;
  right: 0;
  width: 160px;
  height: 46px;
  border: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 46' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 11c24-9 39-9 62 0s40 9 63 0 34-8 51-2' fill='none' stroke='%2355c8be' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M13 25c22-9 38-9 59 0s39 9 60 0 32-7 44-3' fill='none' stroke='%23f28b72' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.inner-kicker {
  color: var(--mint);
  font-size: .86rem;
  letter-spacing: .06em;
}

.inner-shell h1 {
  color: var(--foam);
  font-family: var(--sans);
  font-size: clamp(2.7rem, 6.4vw, 5.5rem);
  line-height: 1.06;
  text-wrap: balance;
}

.inner-content {
  max-width: 760px;
  margin-top: 44px;
  color: rgba(242, 255, 249, .9);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.82;
}

.inner-content h2 {
  margin-top: 2.1em;
  color: var(--mint);
  font-family: var(--sans);
  font-size: clamp(1.8rem, 3.4vw, 2.65rem);
  line-height: 1.2;
}

.inner-content ul,
.inner-content ol {
  padding-inline-start: 1.25em;
}

.inner-content li + li {
  margin-top: .5em;
}

.inner-content li::marker {
  color: var(--coral);
}

.inner-content blockquote {
  margin: 2.2em 0;
  padding: 28px 30px;
  border: 1px solid rgba(189, 226, 215, .3);
  border-inline-start: 5px solid var(--coral);
  border-radius: 24px 7px 24px 7px;
  color: var(--foam);
  background: rgba(85, 200, 190, .1);
}

.inner-content cite,
.inner-content blockquote footer {
  display: block;
  margin-top: 1em;
  color: var(--mint);
  font-style: normal;
  font-weight: 650;
}

.inner-content a {
  color: var(--mint);
  text-decoration-color: var(--coral);
  text-underline-offset: .2em;
}

.source-publications {
  display: grid;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.source-publications li {
  display: grid;
  min-height: 120px;
  padding: 22px;
  border: 1px solid rgba(189, 226, 215, .28);
  border-radius: 20px 6px 20px 6px;
  align-content: center;
  background: rgba(242, 255, 249, .07);
}

.source-publications strong {
  color: var(--foam);
  font-size: 1.08rem;
}

.source-publications span {
  margin-top: 7px;
  color: rgba(242, 255, 249, .74);
  font-size: .92rem;
}

.source-gallery {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(189, 226, 215, .38);
  border-radius: 28px 8px 28px 8px;
  background: var(--abyss-2);
  box-shadow: 0 24px 60px rgba(3, 22, 27, .28);
}

.source-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.inner-actions {
  display: flex;
  margin-top: 48px;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 700px) {
  .inner-main {
    padding: 118px 0 120px;
  }

  .inner-shell {
    width: calc(100vw - 32px);
    padding: 34px 22px 42px;
    border-radius: 25px 7px 25px 7px;
  }

  .inner-shell::before {
    width: 120px;
    height: 34px;
  }

  .inner-content {
    margin-top: 32px;
  }

  .source-publications {
    grid-template-columns: 1fr;
  }

  .inner-actions,
  .inner-actions .button {
    width: 100%;
  }
}
