:root {
  --ivory: #f5f3ee;
  --paper: #fbfaf7;
  --navy: #102432;
  --blue: #294c5a;
  --mist: #afc2c8;
  --clay: #a96958;
  --sand: #d8cfc2;
  --sage: #7f9389;
  --ink: #1c252b;
  --muted: #68747a;
  --white: #ffffff;
  --serif: "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --page: min(1440px, calc(100vw - 64px));
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --shadow: 0 26px 80px rgba(16, 36, 50, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 122px;
  background: var(--ivory);
  overflow-x: clip;
}

html.menu-open,
html.menu-open body {
  overflow: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 5%, rgba(175, 194, 200, 0.18), transparent 26rem),
    var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

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

::selection {
  color: var(--paper);
  background: var(--clay);
}

.section-anchor {
  scroll-margin-top: 112px;
}

.section-pad {
  padding: clamp(88px, 10vw, 164px) max(32px, calc((100vw - var(--page)) / 2));
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--mist);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 em,
h2 em,
.manifesto-serif {
  color: var(--clay);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.button {
  min-height: 52px;
  padding: 0 22px 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--navy);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 260ms ease, background 260ms ease, color 260ms ease, border-color 260ms ease;
}

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

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

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

.button-dark {
  background: var(--navy);
}

.arrow {
  position: relative;
  width: 13px;
  height: 13px;
  display: inline-block;
  flex: 0 0 auto;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}

.arrow::before {
  width: 12px;
  height: 1.5px;
  left: 0;
  top: 6px;
  transform: rotate(-42deg);
}

.arrow::after {
  width: 6px;
  height: 6px;
  right: 0;
  top: 0;
  background: transparent;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 0;
}

.text-link .arrow {
  transition: transform 220ms ease;
}

.text-link:hover .arrow {
  transform: translate(3px, -3px);
}

.light-link {
  color: var(--paper);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(5px);
  transition: opacity 780ms cubic-bezier(0.22, 1, 0.36, 1), transform 780ms cubic-bezier(0.22, 1, 0.36, 1), filter 780ms ease;
}

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

/* Loader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--paper);
  animation: loader-exit 240ms ease 580ms forwards;
}

.preloader-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.2;
}

.preloader-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  animation: loader-line 560ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes loader-line { to { transform: scaleX(1); } }
@keyframes loader-exit { to { opacity: 0; visibility: hidden; } }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 22px;
  left: 50%;
  width: min(1260px, calc(100vw - 44px));
  min-height: 76px;
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(245, 243, 238, 0.79);
  box-shadow: 0 15px 44px rgba(16, 36, 50, 0.13);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 48px;
  height: 48px;
  position: relative;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(16, 36, 50, 0.22);
  border-radius: 50%;
  color: var(--navy);
  font-family: var(--serif);
  font-style: italic;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(169, 105, 88, 0.65);
  border-radius: 50%;
}

.brand-mark i {
  position: absolute;
  font-style: italic;
  font-size: 1.28rem;
  line-height: 1;
}

.brand-mark i:first-child { transform: translate(-4px, -3px); }
.brand-mark i:last-child { color: var(--clay); transform: translate(5px, 4px); }

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.015em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  transition: background 220ms ease, color 220ms ease;
}

.desktop-nav a:hover {
  background: rgba(41, 76, 90, 0.08);
  color: var(--blue);
}

.header-contact {
  min-height: 50px;
}

.menu-toggle {
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(16, 36, 50, 0.2);
  border-radius: 50%;
  background: transparent;
  display: none;
  place-items: center;
  position: relative;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 240ms ease, top 240ms ease;
}

.menu-toggle span:first-child { top: 23px; }
.menu-toggle span:last-child { top: 30px; }
.menu-toggle.is-open span:first-child { top: 27px; transform: rotate(45deg); }
.menu-toggle.is-open span:last-child { top: 27px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  padding: 124px 24px 24px;
  background: rgba(16, 36, 50, 0.97);
  color: var(--paper);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  transition: opacity 280ms ease, visibility 280ms ease, transform 280ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-inner {
  width: min(680px, 100%);
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu nav {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-menu nav a {
  padding: 15px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3.7rem);
  line-height: 1;
}

.mobile-menu nav a span {
  color: var(--mist);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mobile-menu-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mobile-menu-footer .button {
  background: var(--paper);
  color: var(--navy);
}

.mobile-menu-footer p {
  margin: 0;
  color: var(--mist);
  font-size: 0.78rem;
}

/* Hero */
.hero {
  width: var(--page);
  min-height: min(960px, 100svh);
  margin: 0 auto;
  padding: 150px 0 64px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(440px, 0.84fr);
  align-items: center;
  gap: clamp(54px, 8vw, 130px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-left: clamp(0px, 3vw, 44px);
}

.availability-pill {
  width: fit-content;
  margin-bottom: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(41, 76, 90, 0.17);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.69rem;
  font-weight: 700;
}

.availability-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(127, 147, 137, 0.13);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(4.5rem, 6.4vw, 7.8rem);
}

.hero h1 em {
  display: block;
  margin-left: clamp(42px, 7vw, 120px);
}

.hero-lead {
  max-width: 580px;
  margin: 34px 0 30px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-notes {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 36, 50, 0.13);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
}

.hero-notes span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-notes span::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--clay);
  display: inline-block;
  vertical-align: middle;
}

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

.hero-image-shell {
  height: min(700px, 72vh);
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-radius: 50% 50% var(--radius-xl) var(--radius-xl) / 34% 34% var(--radius-xl) var(--radius-xl);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.hero-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.88) contrast(1.02);
}

.image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(16, 36, 50, 0.83) 100%);
}

.hero-signature {
  position: absolute;
  left: 34px;
  bottom: 28px;
  color: var(--paper);
  display: flex;
  flex-direction: column;
}

.hero-signature span {
  font-family: var(--serif);
  font-size: 1.28rem;
}

.hero-signature small {
  margin-top: 4px;
  color: var(--mist);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.floating-card {
  position: absolute;
  z-index: 4;
  width: 232px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  background: rgba(245, 243, 238, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(16, 36, 50, 0.16);
  display: flex;
  gap: 13px;
  align-items: center;
}

.floating-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.45;
}

.floating-card strong { color: var(--ink); font-size: 0.74rem; }
.floating-card-top { top: 14%; left: -70px; }
.floating-card-bottom { right: -36px; bottom: 15%; }

.soft-icon {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--paper);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.signal {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 36, 50, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 2px;
  padding-bottom: 12px;
  flex: 0 0 auto;
}

.signal i { width: 3px; border-radius: 3px; background: var(--clay); }
.signal i:nth-child(1) { height: 7px; }
.signal i:nth-child(2) { height: 13px; }
.signal i:nth-child(3) { height: 9px; }

.hero-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(41, 76, 90, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one { width: 540px; height: 540px; left: -310px; top: 250px; }
.orbit-two { width: 820px; height: 820px; right: -570px; top: 60px; }

.hero-index {
  position: absolute;
  right: 0;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-index i { width: 84px; height: 1px; background: rgba(16, 36, 50, 0.18); }

/* Position */
.position-strip {
  min-height: 230px;
  padding: 28px 3vw;
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
}

.position-word {
  color: rgba(245, 243, 238, 0.72);
  font-size: clamp(3.1rem, 6.8vw, 8.6rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.position-word:first-child { text-align: right; }
.position-muted { color: rgba(175, 194, 200, 0.12); }

.position-center {
  min-width: 330px;
  text-align: center;
}

.position-center p {
  margin: 8px 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.position-center em { color: var(--clay); }
.position-center small { color: var(--mist); font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; }
.position-dot { width: 7px; height: 7px; margin: 0 auto; border-radius: 50%; background: var(--clay); display: block; }

/* Manifesto */
.manifesto {
  background: var(--navy);
  color: var(--paper);
  padding-top: 100px;
}

.manifesto-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.manifesto h2 {
  margin-bottom: 12px;
  font-size: clamp(3.6rem, 6vw, 7rem);
}

.manifesto-serif {
  max-width: 700px;
  margin-bottom: 40px;
  font-size: clamp(2rem, 3vw, 3.6rem);
  line-height: 1.08;
}

.body-copy {
  max-width: 610px;
  font-size: 1rem;
  line-height: 1.75;
}

.light-copy { color: rgba(245, 243, 238, 0.68); }
.manifesto-art { min-height: 620px; position: relative; display: grid; place-items: center; }

.manifesto-art img {
  width: 100%;
  max-width: 610px;
  aspect-ratio: 1 / 1.08;
  border-radius: 50% 50% 30px 30px / 32% 32% 30px 30px;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.78);
}

.manifesto-art::after {
  content: "";
  position: absolute;
  inset: 14% 8% 12%;
  border: 1px solid rgba(175, 194, 200, 0.26);
  border-radius: 50%;
}

.art-ring { position: absolute; border: 1px solid rgba(175, 194, 200, 0.18); border-radius: 50%; }
.ring-a { width: 76%; aspect-ratio: 1; transform: rotate(25deg); }
.ring-b { width: 54%; aspect-ratio: 1; transform: rotate(-18deg); }
.manifesto-art p { position: absolute; right: 0; bottom: 40px; margin: 0; color: var(--mist); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; }

/* About */
.about { background: var(--paper); }
.section-heading { max-width: 940px; margin-bottom: clamp(60px, 8vw, 110px); }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2 { margin-bottom: 0; color: var(--navy); font-size: clamp(3.8rem, 6.8vw, 7.6rem); }
.about-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.85fr); gap: clamp(80px, 11vw, 170px); align-items: center; }
.about-portrait { min-height: 720px; position: relative; }
.about-main-image { width: 78%; height: 660px; overflow: hidden; border-radius: 42% 42% var(--radius-lg) var(--radius-lg) / 25% 25% var(--radius-lg) var(--radius-lg); }
.about-main-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.about-inset-image { position: absolute; right: 0; bottom: 0; width: 44%; aspect-ratio: 1; overflow: hidden; border: 10px solid var(--paper); border-radius: 50%; box-shadow: var(--shadow); }
.about-inset-image img { width: 100%; height: 100%; object-fit: cover; }
.image-label { position: absolute; left: 30px; bottom: 22px; padding: 10px 15px; border-radius: 999px; color: var(--paper); background: rgba(16, 36, 50, 0.82); backdrop-filter: blur(10px); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.about-copy { max-width: 660px; }
.about-copy > p { color: var(--muted); line-height: 1.85; }
.about-copy .large-copy { margin-bottom: 34px; color: var(--ink); font-family: var(--serif); font-size: clamp(1.8rem, 2.8vw, 3.1rem); line-height: 1.25; }
.about-meta { margin-top: 45px; border-top: 1px solid rgba(16, 36, 50, 0.14); }
.about-meta > div { padding: 18px 0; border-bottom: 1px solid rgba(16, 36, 50, 0.14); display: flex; justify-content: space-between; gap: 20px; }
.about-meta span { color: var(--muted); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.about-meta strong { color: var(--navy); font-family: var(--serif); font-size: 1rem; font-weight: 500; text-align: right; }

/* Pillars */
.pillars { padding-top: 80px; background: var(--paper); }
.section-kicker { margin-bottom: 46px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.section-kicker > p:last-child { margin: 0; color: var(--muted); font-family: var(--serif); font-size: 1.3rem; line-height: 1.35; text-align: right; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar-card { min-height: 440px; padding: 32px; border: 1px solid rgba(16, 36, 50, 0.1); border-radius: var(--radius-lg); background: var(--ivory); display: flex; flex-direction: column; transition: background 300ms ease, color 300ms ease, transform 300ms ease; }
.pillar-card:hover { background: var(--blue); color: var(--paper); transform: translateY(-8px); }
.pillar-card > span { color: var(--muted); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.16em; }
.pillar-symbol { width: 150px; height: 150px; margin: 48px auto 38px; position: relative; border: 1px solid var(--sand); border-radius: 50%; }
.pillar-symbol::before, .pillar-symbol::after, .pillar-symbol i { content: ""; position: absolute; border: 1px solid var(--clay); border-radius: 50%; }
.pillar-symbol::before { inset: 24px; }
.pillar-symbol::after { inset: 48px; background: var(--clay); }
.pillar-symbol i:nth-child(1) { width: 30px; height: 30px; top: -5px; left: 58px; }
.pillar-symbol i:nth-child(2) { width: 18px; height: 18px; right: 9px; bottom: 22px; }
.pillar-symbol i:nth-child(3) { width: 12px; height: 12px; left: 8px; bottom: 34px; }
.pillar-card h3 { margin: auto 0 12px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.pillar-card p { margin-bottom: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.7; transition: color 300ms ease; }
.pillar-card:hover p, .pillar-card:hover > span { color: var(--mist); }

/* Care */
.care { background: var(--navy); color: var(--paper); }
.care-heading { max-width: 950px; margin-bottom: 80px; }
.care-heading h2 { margin-bottom: 30px; font-size: clamp(4rem, 7vw, 8.3rem); }
.care-heading > p:last-child { max-width: 620px; color: rgba(245, 243, 238, 0.65); line-height: 1.75; }
.care-layout { display: grid; grid-template-columns: 1fr 0.46fr; gap: clamp(70px, 9vw, 140px); align-items: start; }
.care-list { border-top: 1px solid rgba(255, 255, 255, 0.16); }
.care-item { min-height: 150px; padding: 28px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.16); display: grid; grid-template-columns: 54px 1fr 140px; align-items: center; gap: 22px; }
.care-item > span { color: var(--clay); font-size: 0.66rem; font-weight: 700; }
.care-item h3 { margin-bottom: 6px; font-family: var(--serif); font-size: clamp(1.7rem, 2.6vw, 2.8rem); font-weight: 400; }
.care-item p { max-width: 640px; margin: 0; color: rgba(245, 243, 238, 0.58); font-size: 0.85rem; line-height: 1.6; }
.care-line { height: 1px; background: rgba(175, 194, 200, 0.22); position: relative; }
.care-line::after { content: ""; position: absolute; right: 0; top: -4px; width: 9px; height: 9px; border: 1px solid var(--clay); border-radius: 50%; }
.care-aside { position: sticky; top: 130px; border-radius: var(--radius-lg); overflow: hidden; background: rgba(255, 255, 255, 0.05); }
.care-aside img { width: 100%; aspect-ratio: 0.8; object-fit: cover; filter: saturate(0.65); }
.care-aside > div { padding: 28px; }
.care-aside span { color: var(--clay); font-size: 0.63rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.care-aside p { margin: 12px 0 0; color: var(--mist); font-family: var(--serif); font-size: 1.1rem; line-height: 1.55; }

/* Consultation */
.consultation { background: var(--ivory); }
.consultation-heading { max-width: 900px; margin-bottom: 70px; }
.consultation-heading h2 { margin-bottom: 28px; color: var(--navy); font-size: clamp(4rem, 7vw, 8rem); }
.consultation-heading > p:last-child { max-width: 610px; color: var(--muted); line-height: 1.75; }
.consultation-console { border: 1px solid rgba(16, 36, 50, 0.13); border-radius: var(--radius-xl); overflow: hidden; background: rgba(255, 255, 255, 0.55); box-shadow: var(--shadow); }
.console-topbar { min-height: 66px; padding: 0 30px; border-bottom: 1px solid rgba(16, 36, 50, 0.11); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: var(--muted); font-size: 0.61rem; font-weight: 700; letter-spacing: 0.14em; }
.console-topbar > div { display: flex; gap: 7px; }
.console-topbar i { width: 7px; height: 7px; border-radius: 50%; background: var(--sand); }
.console-topbar i:first-child { background: var(--clay); }
.console-topbar small { justify-self: end; font-size: inherit; }
.console-body { min-height: 670px; display: grid; grid-template-columns: 1.05fr 0.95fr; }
.console-visual { position: relative; overflow: hidden; display: grid; place-items: center; background: linear-gradient(145deg, rgba(175, 194, 200, 0.26), rgba(245, 243, 238, 0.2)); }
.core { position: relative; z-index: 4; width: 110px; height: 110px; border-radius: 50%; background: var(--navy); color: var(--paper); box-shadow: 0 0 0 20px rgba(16, 36, 50, 0.07); display: grid; place-items: center; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; }
.console-ring { position: absolute; border: 1px solid rgba(41, 76, 90, 0.16); border-radius: 50%; }
.ring-one { width: 250px; height: 250px; }
.ring-two { width: 430px; height: 430px; }
.ring-three { width: 620px; height: 620px; }
.orbit { position: absolute; z-index: 3; padding: 9px 14px; border: 1px solid rgba(41, 76, 90, 0.18); border-radius: 999px; background: rgba(251, 250, 247, 0.68); color: var(--blue); backdrop-filter: blur(8px); font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.orbit-history { top: 17%; left: 25%; }
.orbit-body { top: 29%; right: 14%; }
.orbit-routine { bottom: 20%; left: 13%; }
.orbit-relations { bottom: 15%; right: 21%; }
.consultation-steps { list-style: none; margin: 0; padding: 32px 42px; background: var(--paper); }
.consultation-steps li { min-height: 116px; padding: 22px 0; border-bottom: 1px solid rgba(16, 36, 50, 0.11); display: grid; grid-template-columns: 50px 1fr; gap: 18px; }
.consultation-steps li:last-child { border-bottom: 0; }
.consultation-steps li > span { color: var(--clay); font-size: 0.64rem; font-weight: 800; }
.consultation-steps strong { color: var(--navy); font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.consultation-steps p { margin: 7px 0 0; color: var(--muted); font-size: 0.78rem; line-height: 1.55; }

/* Decisions */
.decisions { padding-top: 0; background: var(--ivory); display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.decision-card { min-height: 630px; padding: clamp(42px, 6vw, 84px); border-radius: var(--radius-xl); overflow: hidden; position: relative; display: flex; flex-direction: column; }
.decision-card h2 { max-width: 620px; margin-bottom: 30px; font-size: clamp(3.3rem, 5vw, 6rem); }
.decision-card > p:not(.eyebrow) { max-width: 590px; color: rgba(245, 243, 238, 0.68); line-height: 1.8; }
.diagnostic { background: var(--blue); color: var(--paper); }
.decision-scale { margin-top: auto; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.16); display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.decision-scale span { position: relative; color: var(--mist); font-size: 0.57rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.decision-scale span::before { content: ""; width: 7px; height: 7px; margin-bottom: 12px; border-radius: 50%; background: var(--clay); display: block; box-shadow: 0 0 0 8px rgba(169, 105, 88, 0.13); }
.medication { background: var(--sand); color: var(--navy); }
.medication h2 em { color: var(--blue); }
.medication > p:not(.eyebrow) { color: rgba(28, 37, 43, 0.64); }
.medication::after { content: ""; width: 330px; height: 330px; position: absolute; right: -90px; bottom: -80px; border: 1px solid rgba(41, 76, 90, 0.17); border-radius: 50%; box-shadow: 0 0 0 45px rgba(41, 76, 90, 0.04), 0 0 0 90px rgba(41, 76, 90, 0.025); }
.medication-footnote { margin-top: auto; display: flex; align-items: center; gap: 12px; color: var(--blue); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.medication-footnote span { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 7px rgba(41, 76, 90, 0.1); }

/* Support */
.support-notice { width: min(1240px, calc(100vw - 64px)); margin: 30px auto 120px; padding: 38px 42px; border: 1px solid rgba(16, 36, 50, 0.12); border-radius: var(--radius-lg); background: rgba(251, 250, 247, 0.74); box-shadow: var(--shadow); display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; }
.support-orb { width: 86px; height: 86px; border: 1px solid rgba(41, 76, 90, 0.16); border-radius: 50%; display: grid; place-items: center; position: relative; }
.support-orb::before { content: ""; position: absolute; inset: 11px; border: 1px dashed var(--clay); border-radius: 50%; }
.support-orb span { color: var(--blue); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em; }
.support-notice .eyebrow { margin-bottom: 5px; }
.support-notice h2 { margin-bottom: 5px; color: var(--navy); font-size: clamp(1.8rem, 3vw, 3rem); letter-spacing: -0.03em; }
.support-notice p:last-child { margin-bottom: 0; color: var(--muted); font-size: 0.75rem; }

/* Journey */
.journey { background: var(--ink); color: var(--paper); display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(70px, 10vw, 150px); align-items: center; }
.journey-visual { min-height: 760px; position: relative; overflow: hidden; border-radius: 46% 46% var(--radius-lg) var(--radius-lg) / 24% 24% var(--radius-lg) var(--radius-lg); }
.journey-visual img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; filter: saturate(0.68) brightness(0.72); }
.journey-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(16, 36, 50, 0.84)); }
.journey-quote { position: absolute; z-index: 2; left: 40px; right: 40px; bottom: 38px; }
.journey-quote span { color: var(--clay); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.journey-quote p { max-width: 480px; margin: 9px 0 0; font-family: var(--serif); font-size: clamp(2rem, 3.3vw, 4rem); line-height: 1.02; }
.journey-content h2 { margin-bottom: 40px; font-size: clamp(3.5rem, 5.6vw, 6.6rem); }
.journey-content ol { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255, 255, 255, 0.15); }
.journey-content li { min-height: 102px; padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.15); display: grid; grid-template-columns: 52px 1fr; gap: 16px; }
.journey-content li > span { color: var(--clay); font-size: 0.62rem; font-weight: 800; }
.journey-content strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; }
.journey-content li p { margin: 5px 0 0; color: rgba(245, 243, 238, 0.56); font-size: 0.76rem; line-height: 1.55; }

/* Modalities */
.modalities { background: var(--paper); }
.modality-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.modality-card { min-height: 550px; padding: 34px; border-radius: var(--radius-lg); overflow: hidden; position: relative; display: flex; flex-direction: column; }
.modality-card > span, .modality-overlay > span { color: var(--clay); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.1em; }
.modality-card h3 { margin: auto 0 14px; font-family: var(--serif); font-size: clamp(2.1rem, 3.4vw, 3.7rem); font-weight: 400; line-height: 1; }
.modality-card p { margin-bottom: 0; font-size: 0.82rem; line-height: 1.65; }
.modality-image { padding: 0; color: var(--paper); }
.modality-photo, .modality-photo img { width: 100%; height: 100%; position: absolute; inset: 0; }
.modality-photo img { object-fit: cover; object-position: center; filter: saturate(0.72) brightness(0.74); }
.modality-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 32%, rgba(16, 36, 50, 0.92)); }
.modality-overlay { position: relative; z-index: 2; margin-top: auto; padding: 34px; }
.modality-overlay h3 { margin-top: 80px; }
.modality-overlay p { color: var(--mist); }
.modality-color { background: var(--blue); color: var(--paper); }
.modality-color p { color: var(--mist); }
.map-lines { width: 240px; height: 240px; position: absolute; right: -15px; top: 85px; border: 1px solid rgba(175, 194, 200, 0.25); border-radius: 50%; }
.map-lines::before, .map-lines::after, .map-lines i { content: ""; position: absolute; inset: 18%; border: 1px solid rgba(175, 194, 200, 0.18); border-radius: 50%; }
.map-lines::after { inset: 36%; background: var(--clay); }
.map-lines i:nth-child(1) { width: 120%; height: 1px; left: -10%; top: 50%; background: rgba(175, 194, 200, 0.22); border: 0; }
.map-lines i:nth-child(2) { width: 1px; height: 120%; left: 50%; top: -10%; background: rgba(175, 194, 200, 0.22); border: 0; }
.modality-light { border: 1px solid rgba(16, 36, 50, 0.1); background: var(--ivory); color: var(--navy); }
.modality-light p { color: var(--muted); }
.online-symbol { width: 210px; height: 210px; margin: 66px auto 0; border: 1px solid var(--sand); border-radius: 50%; position: relative; }
.online-symbol::before { content: ""; position: absolute; inset: 34px; border: 1px dashed var(--clay); border-radius: 50%; }
.online-symbol::after { content: ""; position: absolute; inset: 72px; border-radius: 50%; background: var(--navy); }
.online-symbol i { position: absolute; width: 28px; height: 28px; border: 1px solid var(--blue); border-radius: 50%; }
.online-symbol i:first-child { left: 3px; top: 58px; }
.online-symbol i:last-child { right: 12px; bottom: 36px; background: var(--clay); border-color: var(--clay); }

/* Adolescents */
.adolescents { background: var(--sage); color: var(--paper); display: grid; grid-template-columns: 1fr 0.8fr; gap: clamp(70px, 10vw, 150px); align-items: center; }
.adolescent-copy h2 { margin-bottom: 32px; font-size: clamp(3.8rem, 6vw, 7rem); }
.adolescent-copy h2 em { color: var(--navy); }
.adolescent-copy > p:not(.eyebrow) { max-width: 680px; color: rgba(255, 255, 255, 0.75); line-height: 1.8; }
.adolescent-copy ul { list-style: none; margin: 42px 0 0; padding: 0; }
.adolescent-copy li { padding: 16px 0 16px 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.2); position: relative; font-family: var(--serif); font-size: 1.1rem; }
.adolescent-copy li::before { content: ""; position: absolute; left: 0; top: 24px; width: 9px; height: 9px; border: 1px solid var(--paper); border-radius: 50%; }
.adolescent-art { min-height: 640px; border-radius: 48% 48% var(--radius-lg) var(--radius-lg) / 28% 28% var(--radius-lg) var(--radius-lg); overflow: hidden; position: relative; }
.adolescent-art img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; filter: saturate(0.65) brightness(0.8); }
.adolescent-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(16, 36, 50, 0.72)); }
.adolescent-art > div { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 34px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.adolescent-art span { color: var(--clay); font-family: var(--serif); font-size: 4.5rem; }
.adolescent-art p { margin: 0; font-family: var(--serif); font-size: 1.25rem; text-align: right; }

/* Content */
.content-section { background: var(--paper); overflow: hidden; }
.content-top { margin-bottom: 52px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.content-top h2 { max-width: 820px; margin: 0; color: var(--navy); font-size: clamp(3.5rem, 5.7vw, 6.8rem); }
.gallery-controls { display: flex; gap: 10px; }
.gallery-controls button { width: 52px; height: 52px; border: 1px solid rgba(16, 36, 50, 0.16); border-radius: 50%; background: transparent; display: grid; place-items: center; cursor: pointer; }
.gallery-controls button:first-child .arrow { transform: rotate(180deg); }
.gallery-controls button:hover { background: var(--navy); color: var(--paper); }
.content-rail { margin-right: calc((100vw - var(--page)) / -2); padding-right: max(32px, calc((100vw - var(--page)) / 2)); overflow-x: auto; scroll-snap-type: x mandatory; display: grid; grid-auto-flow: column; grid-auto-columns: min(510px, 78vw); gap: 18px; scrollbar-width: none; }
.content-rail::-webkit-scrollbar { display: none; }
.content-card { height: 560px; border-radius: var(--radius-lg); overflow: hidden; position: relative; scroll-snap-align: start; color: var(--paper); }
.content-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.72) brightness(0.74); transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1); }
.content-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 28%, rgba(16, 36, 50, 0.92)); }
.content-card > div { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 32px; }
.content-card span { color: var(--clay); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.content-card h3 { max-width: 420px; margin: 12px 0 24px; font-family: var(--serif); font-size: 2.4rem; font-weight: 400; line-height: 1.08; }
.content-card p { margin: 0; color: var(--mist); display: flex; align-items: center; gap: 12px; font-size: 0.7rem; font-weight: 700; }
.content-card:hover img { transform: scale(1.045); }

/* FAQ */
.faq { background: var(--navy); color: var(--paper); display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(70px, 10vw, 150px); align-items: start; }
.faq-heading { position: sticky; top: 150px; }
.faq-heading h2 { margin-bottom: 26px; font-size: clamp(3.5rem, 5.4vw, 6.5rem); }
.faq-heading > p:not(.eyebrow) { max-width: 440px; color: var(--mist); line-height: 1.7; }
.faq-heading .button { margin-top: 20px; }
.faq-list { border-top: 1px solid rgba(255, 255, 255, 0.16); }
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.faq-item > button { width: 100%; min-height: 100px; padding: 22px 0; border: 0; background: transparent; color: var(--paper); display: grid; grid-template-columns: 48px 1fr 32px; align-items: center; gap: 18px; text-align: left; cursor: pointer; }
.faq-item > button > span { color: var(--clay); font-size: 0.6rem; font-weight: 800; }
.faq-item > button strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; }
.faq-item > button i { width: 24px; height: 24px; position: relative; justify-self: end; }
.faq-item > button i::before, .faq-item > button i::after { content: ""; position: absolute; left: 3px; top: 11px; width: 18px; height: 1px; background: var(--mist); transition: transform 220ms ease; }
.faq-item > button i::after { transform: rotate(90deg); }
.faq-item.is-open > button i::after { transform: rotate(0deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 320ms ease; }
.faq-answer > p { overflow: hidden; margin: 0 48px 0 66px; color: rgba(245, 243, 238, 0.62); font-size: 0.9rem; line-height: 1.8; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > p { margin-bottom: 30px; }

/* Emergency */
.emergency { padding: 58px max(32px, calc((100vw - var(--page)) / 2)); background: var(--clay); color: var(--paper); display: grid; grid-template-columns: 0.35fr 1fr auto; align-items: center; gap: 50px; }
.emergency-label { display: flex; align-items: center; gap: 12px; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.emergency-label span { width: 9px; height: 9px; border-radius: 50%; background: var(--paper); box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.12); }
.emergency h2 { margin-bottom: 8px; font-size: clamp(2rem, 3.6vw, 4.2rem); letter-spacing: -0.035em; }
.emergency-copy p { margin: 0; color: rgba(255, 255, 255, 0.74); font-size: 0.8rem; }
.emergency-actions { display: flex; gap: 10px; }
.emergency-actions a { min-width: 122px; padding: 14px 18px; border: 1px solid rgba(255, 255, 255, 0.32); border-radius: 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.emergency-actions span { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em; }
.emergency-actions strong { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }

/* Locations */
.locations { background: var(--ivory); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.location-card { min-height: 570px; border: 1px solid rgba(16, 36, 50, 0.11); border-radius: var(--radius-lg); overflow: hidden; background: var(--paper); }
.map-frame { height: 300px; overflow: hidden; background: var(--sand); }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) sepia(0.22) saturate(0.65) contrast(0.9); }
.location-info { padding: 34px; }
.location-info > span { color: var(--clay); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.location-info h3 { margin: 10px 0 8px; color: var(--navy); font-family: var(--serif); font-size: 2.4rem; font-weight: 400; }
.location-info p { max-width: 560px; min-height: 52px; color: var(--muted); font-size: 0.8rem; line-height: 1.65; }
.location-info a { margin-top: 18px; display: inline-flex; align-items: center; gap: 14px; color: var(--blue); font-size: 0.7rem; font-weight: 800; }

/* Final */
.final-cta { min-height: 780px; background: var(--ink); color: var(--paper); display: grid; grid-template-columns: 0.7fr 1fr; gap: clamp(70px, 11vw, 170px); align-items: center; }
.final-image { height: 620px; overflow: hidden; border-radius: 48% 48% var(--radius-lg) var(--radius-lg) / 28% 28% var(--radius-lg) var(--radius-lg); }
.final-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(0.72) brightness(0.8); }
.final-copy h2 { max-width: 900px; margin-bottom: 26px; font-size: clamp(4rem, 6.5vw, 8rem); }
.final-copy > p:not(.eyebrow) { max-width: 620px; color: var(--mist); font-family: var(--serif); font-size: 1.35rem; line-height: 1.5; }
.final-copy .button { margin-top: 20px; }
.final-copy small { display: block; margin-top: 20px; color: rgba(245, 243, 238, 0.42); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* Footer */
.site-footer { padding: 80px max(32px, calc((100vw - var(--page)) / 2)) 26px; background: #0b1a24; color: var(--paper); display: grid; grid-template-columns: 1.5fr 0.55fr 0.65fr 0.95fr; gap: 50px; }
.footer-brand { display: flex; align-items: start; gap: 18px; }
.footer-brand .brand-mark { color: var(--paper); border-color: rgba(255,255,255,.25); }
.footer-brand > div { display: flex; flex-direction: column; }
.footer-brand strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; }
.footer-brand small { margin-top: 8px; color: var(--mist); font-size: 0.62rem; line-height: 1.7; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-col { display: flex; flex-direction: column; align-items: start; gap: 10px; }
.footer-col > span { margin-bottom: 9px; color: var(--mist); font-size: 0.61rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-col a, .footer-col button { padding: 0; border: 0; background: transparent; color: rgba(245, 243, 238, 0.72); font-size: 0.75rem; cursor: pointer; }
.footer-col a:hover, .footer-col button:hover { color: var(--clay); }
.footer-legal p { max-width: 330px; margin: 12px 0 0; color: rgba(245, 243, 238, 0.38); font-size: 0.62rem; line-height: 1.65; }
.footer-bottom { grid-column: 1 / -1; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.12); color: rgba(245, 243, 238, 0.38); display: flex; justify-content: space-between; gap: 20px; font-size: 0.58rem; letter-spacing: 0.08em; text-transform: uppercase; }
.legal-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px; }
.legal-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(11, 26, 36, 0.76); backdrop-filter: blur(14px); cursor: pointer; }
.legal-panel { width: min(680px, 100%); max-height: 80vh; padding: clamp(34px, 6vw, 70px); border-radius: var(--radius-lg); position: relative; z-index: 2; overflow-y: auto; background: var(--paper); box-shadow: var(--shadow); }
.legal-panel h2 { color: var(--navy); font-size: clamp(2.6rem, 5vw, 4.8rem); }
.legal-panel > p:last-child { color: var(--muted); line-height: 1.8; }
.legal-close { float: right; padding: 8px 13px; border: 1px solid rgba(16,36,50,.16); border-radius: 999px; background: transparent; font-size: .65rem; cursor: pointer; }

.floating-contact { display: none; }

@media (max-width: 1180px) {
  :root { --page: calc(100vw - 48px); }
  .desktop-nav { display: none; }
  .site-header { justify-content: space-between; }
  .header-contact { margin-left: auto; }
  .menu-toggle { display: grid; }
  .hero { grid-template-columns: 1fr 0.8fr; gap: 54px; }
  .hero h1 { font-size: clamp(4.3rem, 7.4vw, 6.3rem); }
  .floating-card-top { left: -30px; }
  .floating-card-bottom { right: -10px; }
  .care-layout { grid-template-columns: 1fr 0.4fr; gap: 60px; }
  .care-item { grid-template-columns: 48px 1fr 70px; }
  .decision-card { padding: 50px; }
}

@media (max-width: 900px) {
  :root { --page: calc(100vw - 40px); --radius-xl: 34px; --radius-lg: 26px; }
  .section-pad { padding-left: 20px; padding-right: 20px; }
  .hero { min-height: auto; padding-top: 136px; grid-template-columns: 1fr; gap: 66px; }
  .hero-copy { padding: 0 4px; }
  .hero h1 { font-size: clamp(4rem, 12vw, 6.4rem); }
  .hero h1 em { margin-left: 9vw; }
  .hero-visual { width: min(620px, 100%); margin: 0 auto; }
  .hero-image-shell { height: min(720px, 110vw); }
  .floating-card-top { left: -8px; }
  .floating-card-bottom { right: -8px; }
  .hero-index { display: none; }
  .position-strip { grid-template-columns: 1fr; min-height: 270px; }
  .position-word { display: none; }
  .position-center { min-width: 0; }
  .manifesto-grid, .about-grid, .care-layout, .console-body, .journey, .adolescents, .faq, .final-cta { grid-template-columns: 1fr; }
  .manifesto-art { min-height: 560px; }
  .about-grid { gap: 70px; }
  .about-portrait { min-height: 660px; }
  .about-main-image { height: 610px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: 360px; }
  .pillar-symbol { margin-top: 24px; margin-bottom: 24px; }
  .care-aside { position: static; display: grid; grid-template-columns: .8fr 1fr; }
  .care-aside img { aspect-ratio: 1; }
  .console-body { min-height: 0; }
  .console-visual { min-height: 560px; }
  .decisions { grid-template-columns: 1fr; padding-left: 20px; padding-right: 20px; }
  .support-notice { width: calc(100vw - 40px); grid-template-columns: auto 1fr; }
  .support-notice .button { grid-column: 1 / -1; }
  .journey-visual { min-height: 700px; }
  .modality-grid { grid-template-columns: 1fr; }
  .modality-card { min-height: 520px; }
  .adolescent-art { min-height: 650px; }
  .faq-heading { position: static; }
  .emergency { grid-template-columns: 1fr; gap: 24px; }
  .emergency-actions { justify-content: start; }
  .final-image { height: 600px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-bottom { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --page: calc(100vw - 28px); --radius-xl: 28px; --radius-lg: 24px; }
  html { scroll-padding-top: 94px; }
  body { font-size: 15px; padding-bottom: 82px; }
  .section-anchor { scroll-margin-top: 92px; }
  .section-pad { padding: 84px 14px; }
  .eyebrow { margin-bottom: 14px; font-size: 0.64rem; }

  .site-header { top: 10px; width: calc(100vw - 20px); min-height: 68px; padding: 8px 9px 8px 14px; gap: 10px; }
  .brand { gap: 10px; min-width: 0; }
  .brand-mark { width: 43px; height: 43px; }
  .brand-mark i { font-size: 1.12rem; }
  .brand-copy { min-width: 0; }
  .brand-copy strong { max-width: 166px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 0.86rem; }
  .brand-copy small { font-size: 0.5rem; }
  .header-contact { display: none; }
  .menu-toggle { width: 48px; height: 48px; flex: 0 0 auto; }
  .menu-toggle span:first-child { top: 20px; }
  .menu-toggle span:last-child { top: 27px; }
  .menu-toggle.is-open span:first-child, .menu-toggle.is-open span:last-child { top: 24px; }
  .mobile-menu { padding: 104px 18px 24px; }
  .mobile-menu-footer { align-items: stretch; flex-direction: column; }
  .mobile-menu-footer .button { width: 100%; }

  .hero { width: calc(100vw - 28px); padding-top: 118px; padding-bottom: 38px; gap: 50px; }
  .availability-pill { margin-bottom: 28px; padding: 8px 12px; font-size: 0.62rem; }
  .hero h1 { font-size: clamp(3.42rem, 15.6vw, 5.05rem); line-height: 0.94; }
  .hero h1 em { margin-left: 0; margin-top: 7px; }
  .hero-lead { margin: 26px 0 25px; font-size: 1.18rem; line-height: 1.42; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 8px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; min-height: 46px; }
  .hero-notes { margin-top: 26px; padding-top: 17px; gap: 8px 14px; }
  .hero-notes span { font-size: 0.56rem; }
  .hero-image-shell { min-height: 0; height: min(128vw, 590px); border-radius: 48% 48% 24px 24px / 24% 24% 24px 24px; }
  .hero-image-shell img { object-position: center 28%; }
  .hero-signature { left: 22px; bottom: 20px; }
  .hero-signature span { font-size: 1.05rem; }
  .hero-signature small { font-size: 0.52rem; }
  .floating-card { width: 184px; padding: 12px; border-radius: 18px; }
  .floating-card p { font-size: 0.58rem; }
  .floating-card strong { font-size: 0.62rem; }
  .soft-icon, .signal { width: 32px; height: 32px; }
  .signal { padding-bottom: 8px; }
  .floating-card-top { top: 8%; left: -4px; }
  .floating-card-bottom { right: -4px; bottom: 20%; }

  .position-strip { min-height: 228px; padding: 38px 22px; }
  .position-center p { font-size: 1.55rem; }
  .position-center small { font-size: 0.48rem; }

  .manifesto { padding-top: 80px; }
  .manifesto h2 { font-size: 3.45rem; }
  .manifesto-serif { font-size: 2.05rem; }
  .manifesto-art { min-height: 460px; }
  .manifesto-art img { aspect-ratio: .82; }
  .manifesto-art p { right: 8px; bottom: 16px; font-size: .49rem; }

  .section-heading { margin-bottom: 48px; }
  .section-heading h2 { font-size: 3.5rem; }
  .about-grid { gap: 58px; }
  .about-portrait { min-height: 520px; }
  .about-main-image { width: 86%; height: 480px; }
  .about-inset-image { width: 45%; border-width: 7px; }
  .image-label { left: 14px; bottom: 12px; font-size: .5rem; }
  .about-copy .large-copy { font-size: 1.75rem; }
  .about-meta > div { align-items: start; flex-direction: column; gap: 6px; }
  .about-meta strong { text-align: left; }

  .section-kicker { align-items: start; flex-direction: column; gap: 8px; }
  .section-kicker > p:last-child { text-align: left; font-size: 1.05rem; }
  .pillar-card { min-height: 330px; padding: 26px; }
  .pillar-symbol { width: 120px; height: 120px; }
  .pillar-symbol::before { inset: 20px; }
  .pillar-symbol::after { inset: 40px; }
  .pillar-symbol i:nth-child(1) { left: 44px; }

  .care-heading { margin-bottom: 50px; }
  .care-heading h2 { font-size: 3.55rem; }
  .care-item { min-height: 0; padding: 24px 0; grid-template-columns: 34px 1fr; align-items: start; gap: 10px; }
  .care-item h3 { font-size: 1.8rem; }
  .care-item p { font-size: .77rem; }
  .care-line { display: none; }
  .care-aside { grid-template-columns: 1fr; }
  .care-aside img { aspect-ratio: 1.15; }

  .consultation-heading h2 { font-size: 3.55rem; }
  .consultation-console { border-radius: 26px; }
  .console-topbar { min-height: 54px; padding: 0 17px; grid-template-columns: 1fr auto; }
  .console-topbar > div { display: none; }
  .console-topbar small { font-size: .48rem; }
  .console-visual { min-height: 400px; }
  .core { width: 82px; height: 82px; }
  .ring-one { width: 180px; height: 180px; }
  .ring-two { width: 300px; height: 300px; }
  .ring-three { width: 430px; height: 430px; }
  .orbit { padding: 7px 9px; font-size: .49rem; }
  .orbit-history { left: 12%; }
  .orbit-body { right: 7%; }
  .orbit-routine { left: 7%; }
  .orbit-relations { right: 8%; }
  .consultation-steps { padding: 18px 22px; }
  .consultation-steps li { min-height: 100px; grid-template-columns: 38px 1fr; }

  .decisions { padding-left: 14px; padding-right: 14px; gap: 14px; }
  .decision-card { min-height: 540px; padding: 35px 28px; }
  .decision-card h2 { font-size: 3.35rem; }
  .decision-scale { grid-template-columns: 1fr 1fr; gap: 18px; }

  .support-notice { width: calc(100vw - 28px); margin-bottom: 84px; padding: 28px 22px; grid-template-columns: 1fr; gap: 20px; }
  .support-orb { width: 68px; height: 68px; }
  .support-notice h2 { font-size: 2rem; }

  .journey { gap: 65px; }
  .journey-visual { min-height: 570px; }
  .journey-quote { left: 24px; right: 24px; bottom: 25px; }
  .journey-quote p { font-size: 2.25rem; }
  .journey-content h2 { font-size: 3.5rem; }

  .modality-card { min-height: 470px; padding: 28px; }
  .modality-overlay { padding: 28px; }
  .modality-card h3 { font-size: 2.5rem; }
  .online-symbol { width: 170px; height: 170px; margin-top: 50px; }
  .online-symbol::after { inset: 58px; }

  .adolescent-copy h2 { font-size: 3.5rem; }
  .adolescent-copy li { font-size: 1rem; }
  .adolescent-art { min-height: 560px; }
  .adolescent-art > div { align-items: start; flex-direction: column; }
  .adolescent-art p { text-align: left; }

  .content-top { align-items: start; flex-direction: column; }
  .content-top h2 { font-size: 3.45rem; }
  .content-rail { margin-right: -14px; padding-right: 14px; grid-auto-columns: 86vw; }
  .content-card { height: 490px; }
  .content-card > div { left: 25px; right: 25px; bottom: 25px; }
  .content-card h3 { font-size: 2rem; }

  .faq { gap: 58px; }
  .faq-heading h2 { font-size: 3.45rem; }
  .faq-item > button { min-height: 88px; grid-template-columns: 34px 1fr 28px; gap: 10px; }
  .faq-item > button strong { font-size: 1.05rem; }
  .faq-answer > p { margin-left: 44px; margin-right: 20px; font-size: .8rem; }

  .emergency { padding: 42px 20px; }
  .emergency h2 { font-size: 2.35rem; }
  .emergency-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .emergency-actions a { min-width: 0; }

  .location-grid { grid-template-columns: 1fr; }
  .location-card { min-height: 530px; }
  .map-frame { height: 270px; }
  .location-info { padding: 26px; }
  .location-info h3 { font-size: 2.1rem; }

  .final-cta { gap: 60px; }
  .final-image { height: 520px; }
  .final-copy h2 { font-size: 3.55rem; }
  .final-copy > p:not(.eyebrow) { font-size: 1.15rem; }
  .final-copy .button { width: 100%; }

  .site-footer { padding: 64px 20px 22px; grid-template-columns: 1fr 1fr; gap: 42px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-legal { grid-column: 1 / -1; }
  .footer-bottom { align-items: start; flex-direction: column; }

  .floating-contact {
    position: fixed;
    z-index: 80;
    left: 10px;
    right: 10px;
    bottom: max(9px, env(safe-area-inset-bottom));
    height: 64px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(16, 36, 50, 0.94);
    box-shadow: 0 12px 34px rgba(16, 36, 50, 0.28);
    backdrop-filter: blur(16px);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5px;
  }
  .floating-contact .button { min-height: 50px; padding: 0 14px; background: var(--paper); color: var(--navy); font-size: .7rem; }
  .floating-secondary { display: grid; place-items: center; color: var(--paper); font-size: .68rem; font-weight: 700; }
}

@media (max-width: 380px) {
  .brand-copy strong { max-width: 132px; }
  .hero h1 { font-size: 3.08rem; }
  .floating-card { width: 168px; }
  .floating-card-bottom { bottom: 14%; }
  .section-heading h2, .care-heading h2, .consultation-heading h2, .journey-content h2, .adolescent-copy h2, .content-top h2, .faq-heading h2, .final-copy h2 { font-size: 3.05rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; filter: none; }
  .preloader { display: none; }
}
