@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Prata&display=swap");

:root {
  --navy-950: #263a3b;
  --navy-900: #31494a;
  --navy-800: #4a6364;
  --navy-100: #e8eeee;
  --aqua-200: #c9ece8;
  --aqua-100: #def6f2;
  --aqua-50: #f1faf8;
  --porcelain: #ffffff;
  --paper: #f4f6f5;
  --ink: #28393a;
  --muted: #596d6e;
  --gold: #a8862e;
  --gold-ink: #80651f;
  --gold-soft: #d9c987;
  --line: rgba(49, 73, 74, 0.16);
  --shadow: 0 24px 70px rgba(38, 58, 59, 0.12);
  --font-display: "Prata", "Bodoni 72", Didot, Georgia, serif;
  --font-body: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--porcelain);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

.site-loader {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: none;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 26%, rgba(201, 236, 232, 0.95) 0%, rgba(201, 236, 232, 0) 34%),
    radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 38%),
    var(--aqua-100);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity 460ms cubic-bezier(0.16, 1, 0.3, 1), visibility 460ms;
}

.loader-enabled .site-loader {
  display: grid;
  animation: site-loader-failsafe 0.01ms 5s forwards;
}

.site-loader__mark {
  display: grid;
  width: min(72vw, 360px);
  justify-items: center;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  opacity: 0;
  transform: scale(0.965);
  animation: site-loader-mark-in 720ms cubic-bezier(0.16, 1, 0.3, 1) 80ms forwards;
  transition: opacity 280ms ease, transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-loader__logo {
  width: 100%;
  height: auto;
}

.site-loader__line {
  width: min(52vw, 220px);
  height: 1px;
  overflow: hidden;
  background: rgba(168, 134, 46, 0.2);
}

.site-loader__line::after {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  animation: site-loader-line-in 680ms cubic-bezier(0.16, 1, 0.3, 1) 220ms forwards;
}

.loader-complete .site-loader {
  opacity: 0;
  visibility: hidden;
}

.loader-complete .site-loader__mark {
  opacity: 0;
  transform: scale(0.985);
}

@keyframes site-loader-mark-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes site-loader-line-in {
  to {
    transform: scaleX(1);
  }
}

@keyframes site-loader-failsafe {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

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

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

::selection {
  background: var(--aqua-200);
  color: var(--navy-950);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--navy-950);
  color: white;
  padding: 0.75rem 1rem;
}

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

.scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold-soft);
  box-shadow: 0 1px 8px rgba(217, 201, 135, 0.45);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.scroll-top {
  position: fixed;
  z-index: 45;
  right: clamp(1rem, 2vw, 1.75rem);
  bottom: clamp(4.75rem, 7vw, 5.5rem);
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(217, 201, 135, 0.72);
  border-radius: 0;
  background: rgba(38, 58, 59, 0.96);
  box-shadow: 0 12px 30px rgba(38, 58, 59, 0.2);
  color: var(--gold-soft);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
  transition:
    opacity 180ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 180ms,
    background-color 180ms ease,
    color 180ms ease;
  visibility: hidden;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.scroll-top:hover {
  background: var(--gold-soft);
  color: var(--navy-950);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section-sm {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.1rem;
  color: var(--navy-800);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.25rem;
  height: 1px;
  background: var(--gold);
  content: "";
}

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

h1,
h2,
.display {
  color: var(--navy-950);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.5rem, 7.2vw, 6.9rem);
}

h2 {
  max-width: 17ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 4.7vw, 4.6rem);
}

h3 {
  margin-bottom: 0.75rem;
  color: var(--navy-900);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.lede {
  max-width: 59ch;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.measure {
  max-width: 64ch;
}

.policy-page .page-hero {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.policy-page .page-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.85rem, 6vw, 5rem);
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(0, 720px);
  align-items: start;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.policy-note {
  border-top: 2px solid var(--gold);
  padding-top: 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.policy-note strong {
  color: var(--navy-950);
}

.policy-note p {
  margin: 0.45rem 0 0;
}

.policy-copy {
  min-width: 0;
  overflow-wrap: anywhere;
}

.policy-copy section + section {
  margin-top: 2.6rem;
}

.policy-copy h2 {
  max-width: none;
  margin-bottom: 0.8rem;
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
}

.policy-copy p {
  margin-bottom: 0.8rem;
}

.policy-copy a {
  color: var(--navy-900);
  text-decoration: underline;
}

.policy-copy a:is(:hover, :focus-visible) {
  color: var(--gold-ink);
}

.policy-next {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

.muted {
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid var(--navy-900);
  background: var(--navy-900);
  color: white;
  padding: 0.78rem 1.2rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--gold-ink);
  background: var(--gold-ink);
  color: white;
  transform: translateY(-2px);
}

.button--ghost {
  background: transparent;
  color: var(--navy-900);
}

.button--light {
  border-color: white;
  background: white;
  color: var(--navy-950);
}

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

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy-900);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.text-link:is(:hover, :focus-visible) {
  color: var(--gold-ink);
}

.text-link svg,
.button svg {
  width: 1rem;
  transition: transform 180ms ease;
}

.text-link:hover svg,
.text-link:focus-visible svg,
.button:hover svg {
  transform: translateX(4px);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(49, 73, 74, 0.08);
  background: var(--porcelain);
}

.home-page .site-header {
  position: fixed;
  right: 0;
  left: 0;
  border-color: transparent;
  background-color: transparent;
  transition: background-color 260ms ease, border-color 260ms ease;
}

.home-page .site-header.is-scrolled,
.home-page.nav-open .site-header {
  border-color: rgba(49, 73, 74, 0.08);
  background-color: var(--porcelain);
}

.nav-shell {
  display: grid;
  min-height: 82px;
  grid-template-columns: minmax(190px, 1fr) auto auto;
  align-items: center;
  gap: 1.8rem;
}

.brand {
  display: inline-flex;
  width: min(275px, 100%);
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
  transition: filter 260ms ease, opacity 180ms ease;
}

.brand:is(:hover, :focus-visible) img {
  opacity: 0.76;
}

.home-page:not(.nav-open) .site-header:not(.is-scrolled) .brand img {
  filter: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.2rem);
}

.primary-nav .button {
  display: none;
}

.primary-nav a:not(.button) {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--navy-900);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 260ms ease;
}

.home-page:not(.nav-open) .site-header:not(.is-scrolled) .primary-nav a:not(.button) {
  color: var(--navy-900);
}

.primary-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--navy-900);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.menu-toggle:hover {
  background: var(--navy-900);
  color: white;
}

.menu-toggle svg {
  width: 24px;
}

.home-page:not(.nav-open) .site-header:not(.is-scrolled) .menu-toggle {
  border-color: var(--line);
  color: var(--navy-900);
}

.home-page:not(.nav-open) .site-header:not(.is-scrolled) .menu-toggle:hover {
  background: var(--navy-900);
  color: white;
}

.home-page #main {
  position: relative;
  isolation: isolate;
}

.home-page #main > :not(.hero) {
  position: relative;
  z-index: 2;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: linear-gradient(135deg, var(--aqua-100) 0%, #edf8f6 54%, var(--paper) 100%);
}

.hero::before {
  position: absolute;
  z-index: 2;
  top: 6%;
  left: -7rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(217, 201, 135, 0.38);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 0;
  inset: -24%;
  background:
    radial-gradient(circle at 18% 26%, rgba(153, 217, 209, 0.92) 0%, rgba(153, 217, 209, 0) 38%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 62% 84%, rgba(188, 219, 214, 0.9) 0%, rgba(188, 219, 214, 0) 43%);
  content: "";
  pointer-events: none;
  transform: translate3d(-13%, -8%, 0) scale(1.1);
  animation: hero-gradient-drift 9s cubic-bezier(0.45, 0, 0.2, 1) infinite alternate;
  will-change: transform;
}

.hero-watermark {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  width: min(128vw, 1900px);
  aspect-ratio: 1485 / 676;
  background: url("assets/brand/favicon.png") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
  transform: translate(-50%, 32%);
}

.hero-video {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: min(100%, 510px, calc(49vh + 30px));
  justify-self: center;
  border: 3px solid var(--gold-soft);
  border-radius: 0;
  background: linear-gradient(145deg, #ffffff 0%, #edf3f2 60%, #dfecea 100%);
  padding: clamp(0.9rem, 1.3vw, 1.2rem);
  box-shadow: 0 32px 80px rgba(38, 58, 59, 0.18);
  pointer-events: none;
}

.hero-video::after {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(217, 201, 135, 0.32);
  content: "";
  pointer-events: none;
}

.hero-video__media {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(217, 201, 135, 0.42);
  background: var(--paper);
}

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

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 1700px);
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);
  padding-inline: clamp(3.5rem, 7vw, 8rem);
  padding-block: clamp(6rem, 8vw, 7rem);
}

.hero-grid::before {
  position: absolute;
  z-index: -1;
  inset: 8% 10% 12% 4%;
  background: radial-gradient(circle at 58% 42%, rgba(167, 224, 217, 0.76) 0%, rgba(226, 246, 243, 0.52) 28%, rgba(226, 246, 243, 0) 66%);
  content: "";
  pointer-events: none;
  transform: translate3d(16%, -12%, 0) scale(1.16);
  animation: hero-glow-drift 12s cubic-bezier(0.45, 0, 0.2, 1) infinite alternate-reverse;
  will-change: transform;
}

.hero.is-motion-paused::after,
.hero.is-motion-paused .hero-grid::before {
  animation-play-state: paused;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h1,
.hero-copy .lede,
.hero-copy .text-link {
  color: var(--navy-950);
}

.hero-copy .text-link:is(:hover, :focus-visible) {
  color: var(--gold-ink);
}

.hero-copy .lede {
  max-width: 44ch;
  margin-bottom: 2rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.25rem;
}

@keyframes hero-gradient-drift {
  0% {
    opacity: 0.82;
    transform: translate3d(-13%, -8%, 0) scale(1.1) rotate(-0.8deg);
  }

  34% {
    opacity: 1;
    transform: translate3d(12%, -3%, 0) scale(1.2) rotate(0.8deg);
  }

  68% {
    opacity: 0.88;
    transform: translate3d(7%, 13%, 0) scale(1.13) rotate(1.2deg);
  }

  100% {
    opacity: 1;
    transform: translate3d(-10%, 8%, 0) scale(1.22) rotate(-0.6deg);
  }
}

@keyframes hero-glow-drift {
  0% {
    opacity: 0.65;
    transform: translate3d(16%, -12%, 0) scale(1.16);
  }

  50% {
    opacity: 1;
    transform: translate3d(-17%, 12%, 0) scale(1.34);
  }

  100% {
    opacity: 0.78;
    transform: translate3d(10%, 19%, 0) scale(1.12);
  }
}

.rail-item__icon {
  display: inline-flex;
  width: 1.45rem;
  height: 1.45rem;
  align-items: center;
  justify-content: center;
  color: var(--gold-ink);
  transition: color 180ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.rail-item__icon svg {
  width: 100%;
  height: 100%;
}

.treatment-rail {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--porcelain);
  box-shadow: 0 -20px 48px rgba(38, 58, 59, 0.08);
}

.treatment-rail__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.rail-item {
  position: relative;
  isolation: isolate;
  display: grid;
  overflow: hidden;
  min-height: 160px;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 0.9rem 1.1rem;
  border-right: 1px solid var(--line);
  padding: 2rem clamp(1rem, 2.5vw, 2.4rem);
  text-decoration: none;
}

.rail-item::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--aqua-100);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.rail-item:is(:hover, :focus-visible)::before {
  transform: scaleY(1);
}

.rail-item:last-child {
  border-right: 0;
}

.rail-item__number {
  color: var(--gold-ink);
  font-family: var(--font-display);
}

.rail-item strong {
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.25;
  transition: color 180ms ease;
}

.rail-item span:last-child {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.8rem;
  transition: color 180ms ease;
}

.rail-item:is(:hover, :focus-visible) .rail-item__icon {
  color: var(--gold-ink);
  transform: translateY(-0.2rem);
}

.rail-item:is(:hover, :focus-visible) strong {
  color: var(--navy-950);
}

.rail-item:is(:hover, :focus-visible) span:last-child {
  color: var(--muted);
}

.intro-grid,
.split-grid,
.visit-grid,
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.intro-grid--image-led {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: clamp(3.5rem, 7vw, 6.5rem);
}

.home-page #approach {
  background: var(--porcelain);
}

.portrait-frame,
.editorial-image {
  position: relative;
}

.portrait-frame::before {
  position: absolute;
  z-index: 1;
  top: -1.2rem;
  right: -1.2rem;
  width: 48%;
  height: 62%;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  content: "";
}

.portrait-frame img,
.editorial-image img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.portrait-frame--maria img {
  object-position: center top;
}

.maria-profile-section {
  background: var(--paper);
}

.maria-profile {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 5.5rem);
}

.maria-profile .portrait-frame {
  margin-left: clamp(-2rem, -2vw, -1rem);
}

.maria-profile .portrait-frame img {
  height: clamp(650px, 54vw, 760px);
}

.maria-profile__content {
  padding-top: 0;
}

.maria-profile__content h2 {
  max-width: none;
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 4.2vw, 4.35rem);
  text-wrap: balance;
}

.bio-copy {
  display: grid;
  gap: 1rem;
  max-width: 64ch;
  color: var(--muted);
}

.bio-copy .lede,
.bio-copy p {
  margin: 0;
}

.bio-copy .button {
  justify-self: start;
  margin-top: 0.5rem;
}

.intro-grid--image-led .portrait-frame,
.intro-grid--image-led .editorial-image {
  margin-left: clamp(-5rem, -5vw, -2.5rem);
}

.intro-grid--image-led .portrait-frame img,
.intro-grid--image-led .editorial-image img {
  height: clamp(610px, 50vw, 720px);
}

.fact-line {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.9rem;
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

.fact-line:last-child {
  border-bottom: 1px solid var(--line);
}

.fact-line span:first-child {
  color: var(--gold-ink);
  font-family: var(--font-display);
}

.fact-line strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--navy-900);
}

.skin-atlas {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 82px;
  background: var(--paper);
}

.skin-atlas::before {
  position: absolute;
  top: clamp(1rem, 4vw, 3rem);
  right: clamp(-10rem, -8vw, -4rem);
  width: min(52vw, 42rem);
  aspect-ratio: 1485 / 676;
  background: url("assets/brand/favicon.png") center / contain no-repeat;
  content: "";
  opacity: 0.045;
  pointer-events: none;
}

.skin-atlas > .container {
  position: relative;
  z-index: 1;
}

.skin-atlas__header {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(290px, 0.95fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 6rem);
  margin-bottom: clamp(2.75rem, 6vw, 5rem);
}

.skin-atlas__header h2,
.skin-atlas__header .lede {
  margin-bottom: 0;
}

.skin-atlas__header .text-link {
  margin-top: 1.25rem;
}

.skin-atlas__layout {
  display: grid;
  grid-template-columns: minmax(245px, 0.42fr) minmax(0, 1.58fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.skin-atlas__chooser {
  border-right: 1px solid var(--line);
  padding: clamp(1.75rem, 3vw, 2.8rem) clamp(1.25rem, 3vw, 2.5rem) clamp(1.75rem, 3vw, 2.8rem) 0;
}

.skin-atlas__prompt {
  max-width: 15ch;
  margin-bottom: 1.6rem;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.22;
}

.skin-atlas__goals {
  border-top: 1px solid var(--line);
}

.skin-atlas__goal {
  display: grid;
  width: 100%;
  min-height: 68px;
  grid-template-columns: 2.25rem 1fr auto;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--navy-950);
  padding: 0.85rem 0.9rem;
  cursor: pointer;
  text-align: left;
  transition: background-color 220ms ease, color 180ms ease, padding 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.skin-atlas__goal > span:nth-child(2) {
  font-weight: 700;
}

.skin-atlas__index {
  color: var(--gold-ink);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  transition: color 180ms ease;
}

.skin-atlas__marker {
  width: 0.75rem;
  height: 0.75rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px transparent;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.skin-atlas__goal:is(:hover, :focus-visible),
.skin-atlas__goal[aria-pressed="true"] {
  background: var(--navy-950);
  color: white;
  padding-inline: 1.15rem 0.9rem;
}

.skin-atlas__goal:is(:hover, :focus-visible) .skin-atlas__index,
.skin-atlas__goal[aria-pressed="true"] .skin-atlas__index {
  color: var(--gold-soft);
}

.skin-atlas__goal[aria-pressed="true"] .skin-atlas__marker {
  background: var(--gold-soft);
  box-shadow: inset 0 0 0 3px var(--navy-950);
  color: var(--gold-soft);
  transform: scale(1.15);
}

.skin-atlas__chooser .fine-print {
  margin: 1.4rem 0 0;
}

.skin-atlas__result {
  position: relative;
  isolation: isolate;
  display: grid;
  overflow: hidden;
  min-height: 540px;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  background: var(--aqua-100);
  color: var(--ink);
}

.skin-atlas__result::after {
  position: absolute;
  z-index: -1;
  right: -11rem;
  bottom: -16rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(217, 201, 135, 0.24);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.skin-atlas__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--paper);
}

.skin-atlas__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 68%, rgba(222, 246, 242, 0.5));
  content: "";
  pointer-events: none;
}

.skin-atlas__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skin-atlas__result-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.skin-atlas__coordinate {
  margin-bottom: 1.3rem;
  color: var(--gold-ink);
  font-size: 0.76rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.skin-atlas__result h3 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.55rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.skin-atlas__result-copy > p:not(.skin-atlas__coordinate) {
  max-width: 43ch;
  margin-bottom: 1.8rem;
  color: var(--muted);
}

.skin-atlas__paths {
  display: grid;
  border-top: 1px solid var(--line);
}

.skin-atlas__paths .text-link {
  width: 100%;
  min-height: 58px;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--navy-900);
}

.skin-atlas__paths .text-link:is(:hover, :focus-visible) {
  color: var(--gold-ink);
}

.skin-atlas__result.is-refreshing .skin-atlas__media img {
  animation: atlas-image-refresh 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.skin-atlas__result.is-refreshing .skin-atlas__result-copy > * {
  animation: atlas-copy-refresh 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes atlas-image-refresh {
  from {
    opacity: 0.45;
    filter: blur(5px);
    transform: scale(1.025);
  }
}

@keyframes atlas-copy-refresh {
  from {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(12px);
  }
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.treatment-list {
  border-top: 1px solid var(--line);
}

.treatment-row {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 98px;
  padding-block: clamp(2.2rem, 5vw, 4.2rem);
}

.treatment-row.is-atlas-arrival {
  background: var(--aqua-50);
  padding-inline: clamp(1rem, 3vw, 2.25rem);
}

.treatment-arrival-label {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--gold-ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.treatment-row--feature {
  grid-template-columns: minmax(330px, 1.08fr) minmax(0, 0.92fr);
}

.treatment-row--feature .treatment-image {
  min-height: clamp(390px, 38vw, 480px);
}

.treatment-row[hidden] {
  display: none;
}

.treatment-image {
  overflow: hidden;
  min-height: 285px;
  background: var(--navy-100);
}

.treatment-image img,
.treatment-image video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.treatment-row--feature .treatment-image--video {
  min-height: clamp(360px, 34vw, 440px);
  background: var(--paper);
}

.treatment-image--video video {
  object-fit: contain;
}

.treatment-row:hover .treatment-image.treatment-image--video video {
  transform: none;
}

.treatment-row:hover .treatment-image img,
.treatment-row:hover .treatment-image video {
  transform: scale(1.035);
}

.treatment-image--trim-edge img {
  transform: scale(1.03);
}

.treatment-row:hover .treatment-image--trim-edge img {
  transform: scale(1.06);
}

.treatment-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 1rem 2rem;
}

.treatment-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 400;
}

.treatment-title--stacked span {
  display: block;
}

.treatment-meta {
  color: var(--gold-ink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.treatment-copy p,
.treatment-copy .text-link {
  grid-column: 1 / -1;
}

.treatment-copy p {
  max-width: 61ch;
  margin-bottom: 0;
  color: var(--muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.filter-button {
  min-height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--navy-900);
  padding: 0.65rem 1rem;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: white;
}

.care-band {
  position: relative;
  overflow: hidden;
  background: var(--aqua-100);
  color: var(--ink);
}

.care-band::before {
  position: absolute;
  right: clamp(-9rem, -7vw, -3rem);
  bottom: clamp(-3rem, -3vw, -1rem);
  width: min(48vw, 40rem);
  aspect-ratio: 1485 / 676;
  background: url("assets/brand/favicon.png") center / contain no-repeat;
  content: "";
  opacity: 0.065;
  pointer-events: none;
}

.care-band > .container {
  position: relative;
  z-index: 1;
}

.care-band h2,
.care-band h3,
.care-band .eyebrow {
  color: var(--navy-950);
}

.care-band .eyebrow::before {
  background: var(--gold-soft);
}

.care-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3rem;
  background: var(--line);
}

.care-step {
  display: block;
  min-height: 250px;
  background: white;
  color: var(--ink);
  padding: clamp(1.5rem, 3vw, 2.7rem);
  text-decoration: none;
  transition: background-color 220ms ease;
}

.care-step > span {
  color: var(--gold-ink);
  font-family: var(--font-display);
  font-size: 2rem;
  transition: color 180ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.care-step h3 {
  transition: color 180ms ease;
}

.care-step p {
  margin-bottom: 0;
  color: var(--muted);
  transition: color 180ms ease;
}

.care-step:is(:hover, :focus-visible) {
  background: var(--aqua-200);
}

.care-step:is(:hover, :focus-visible) > span {
  color: var(--gold-ink);
  transform: translateX(0.25rem);
}

.care-step:is(:hover, :focus-visible) h3 {
  color: var(--navy-950);
}

.care-step:is(:hover, :focus-visible) p {
  color: var(--ink);
}

.quote-panel {
  position: relative;
  border-left: 1px solid var(--gold);
  padding-left: clamp(1.5rem, 4vw, 3.2rem);
}

.quote-panel blockquote {
  margin: 0 0 1.5rem;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.25rem);
  line-height: 1.25;
}

.quote-panel cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.location-block {
  background: var(--aqua-100);
}

.section.location-block--mapped {
  padding-bottom: 0;
}

.location-details {
  display: grid;
  gap: 0;
}

.location-line {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

.location-line:last-child {
  border-bottom: 1px solid var(--line);
}

.location-line strong {
  color: var(--navy-900);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-line a {
  overflow-wrap: anywhere;
}

.location-line a:is(:hover, :focus-visible) {
  color: var(--gold-ink);
  text-decoration: underline;
}

.map-embed {
  width: 100%;
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid rgba(49, 73, 74, 0.22);
}

.map-embed__toolbar {
  display: flex;
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-inline: auto;
  padding-block: 1rem;
}

.map-embed__toolbar h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 400;
}

.map-embed__canvas {
  position: relative;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: clamp(400px, 44vw, 600px);
  border: 0;
  background: var(--paper);
}

.map-embed__fallback {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  max-width: calc(100% - 2rem);
  padding: 0.75rem 1rem;
  background: var(--navy-950);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(38, 58, 59, 0.18);
}

.map-embed__fallback:is(:hover, :focus-visible) {
  background: var(--navy-800);
  text-decoration: underline;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--aqua-100);
  padding-block: clamp(4rem, 9vw, 8rem);
}

.page-hero::before {
  position: absolute;
  top: 50%;
  right: clamp(-8rem, -6vw, -3rem);
  width: min(52vw, 44rem);
  aspect-ratio: 1485 / 676;
  background: url("assets/brand/favicon.png") center / contain no-repeat;
  content: "";
  opacity: 0.075;
  pointer-events: none;
  transform: translateY(-50%);
}

.page-hero::after {
  position: absolute;
  right: -7rem;
  bottom: -13rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(49, 73, 74, 0.22);
  border-radius: 50%;
  content: "";
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.25rem, 7vw, 6.4rem);
}

.page-hero .lede {
  margin-bottom: 0;
}

.page-hero--navy {
  background: var(--aqua-200);
  color: var(--ink);
}

.page-hero--navy h1,
.page-hero--navy .eyebrow,
.page-hero--navy .lede {
  color: var(--navy-950);
}

.page-hero--navy .lede {
  color: var(--muted);
}

.page-hero--navy::after {
  border-color: rgba(49, 73, 74, 0.2);
}

.booking-notice {
  border-top: 1px solid var(--gold);
  background: var(--aqua-50);
  padding: 1.3rem 1.5rem;
}

.booking-notice strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy-900);
}

.action-stack {
  display: grid;
  gap: 0.75rem;
}

.action-line {
  display: grid;
  min-height: 72px;
  grid-template-columns: 2.5rem 1fr auto;
  align-items: center;
  gap: 0.9rem;
  border-bottom: 1px solid var(--line);
  padding-inline: 0.75rem;
  text-decoration: none;
  transition: background-color 180ms ease;
}

.action-line:is(:hover, :focus-visible) {
  background: var(--aqua-50);
}

.action-line:first-child {
  border-top: 1px solid var(--line);
}

.action-line svg {
  width: 1.25rem;
  color: var(--gold);
  transition: color 180ms ease, transform 220ms ease;
}

.action-line strong {
  display: block;
  color: var(--navy-900);
}

.action-line small {
  color: var(--muted);
}

.action-line:is(:hover, :focus-visible) svg {
  color: var(--gold-ink);
  transform: translateX(0.2rem);
}

.action-line:is(:hover, :focus-visible) strong {
  color: var(--gold-ink);
}

.action-line > span:last-child {
  transition: color 180ms ease, transform 220ms ease;
}

.action-line:is(:hover, :focus-visible) > span:last-child {
  color: var(--gold-ink);
  transform: translateX(0.2rem);
}

.form-shell {
  display: grid;
  gap: 1.15rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field label {
  color: var(--navy-900);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(49, 73, 74, 0.25);
  border-radius: 0;
  background: white;
  color: var(--ink);
  padding: 0.85rem 1rem;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--navy-900);
  outline: 2px solid var(--aqua-200);
  outline-offset: 2px;
}

.form-status {
  min-height: 1.5rem;
  color: var(--navy-900);
  font-weight: 600;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
  text-align: left;
}

.hours-table th {
  width: 45%;
  color: var(--navy-900);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.fine-print {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 1.3fr) repeat(2, minmax(150px, 0.7fr));
  gap: 3rem;
  padding-block: clamp(4rem, 7vw, 6rem);
}

.footer-brand img {
  width: min(310px, 100%);
  filter: none;
}

.footer-brand p {
  max-width: 42ch;
  margin: 1.5rem 0 0;
  color: var(--muted);
}

.footer-links h2 {
  margin-bottom: 1rem;
  color: var(--gold-ink);
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  display: block;
  width: fit-content;
  color: var(--muted);
  text-decoration: none;
}

.footer-links a {
  display: flex;
  min-height: 44px;
  align-items: center;
}

.footer-links a:hover {
  color: var(--navy-950);
  text-decoration: underline;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-block: 1.2rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-bottom a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-self: end;
  color: inherit;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem 1.25rem;
  flex-wrap: wrap;
}

.footer-legal a:is(:hover, :focus-visible),
.footer-legal a[aria-current="page"] {
  color: var(--navy-950);
  text-decoration: underline;
}

.footer-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
}

.footer-credit a {
  flex: 0 0 auto;
  width: 64px;
  height: 36px;
  min-height: 36px;
  background: url("assets/brand/a4-graphic-logo-white.png") center / contain no-repeat;
  filter: brightness(0) opacity(0.72);
  color: transparent;
  font-size: 0;
  opacity: 0.88;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.footer-credit a:is(:hover, :focus-visible) {
  opacity: 1;
}

.action-line > span:last-child {
  display: inline-flex;
  width: 1.25rem;
  height: 1.25rem;
  align-items: center;
  justify-content: center;
}

.action-line > span:last-child svg {
  width: 100%;
  height: 100%;
}

.section .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  display: none;
}

/* The Skin Atlas motion language: text settles into focus while imagery is
   uncovered as a calm editorial plate. Content remains visible without JS. */
.motion-ready [data-motion] {
  --motion-delay: 0ms;
  transition-delay: var(--motion-delay);
}

.motion-ready [data-motion="text"] {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition:
    opacity 560ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--motion-delay);
}

.motion-ready [data-motion="text"]:not(.is-visible) {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(24px);
}

.motion-ready [data-motion="image"] {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0) scale(1);
  transition:
    opacity 500ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 820ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--motion-delay);
}

.motion-ready [data-motion="image"]:not(.is-visible) {
  opacity: 0.35;
  clip-path: inset(0 0 18% 0);
  transform: translateY(28px) scale(0.985);
}

.motion-ready [data-motion="surface"] {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  filter: blur(0);
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 760ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--motion-delay);
}

.motion-ready [data-motion="surface"]:not(.is-visible) {
  opacity: 0;
  clip-path: inset(0 0 55% 0);
  filter: blur(5px);
}

.motion-ready [data-motion="group"] {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 500ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--motion-delay);
}

.motion-ready [data-motion="group"]:not(.is-visible) {
  opacity: 0;
  transform: translateY(20px);
}

/* Native mobile select menus position against their nearest transformed
   ancestor. Keep the form's entrance fade, but leave its coordinate system
   untouched so the interest options stay anchored to the field. */
.motion-ready .form-shell[data-motion="group"],
.motion-ready .form-shell[data-motion="group"]:not(.is-visible) {
  transform: none;
}

.motion-ready [data-motion]:not(.is-visible) {
  will-change: opacity, transform, filter, clip-path;
}

.motion-ready [data-motion].is-visible {
  will-change: auto;
}

@media (max-width: 1020px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .primary-nav,
  .header-book {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav.is-open {
    position: fixed;
    inset: 82px 0 0;
    display: grid;
    align-content: start;
    gap: 0;
    background: var(--porcelain);
    padding: 2rem var(--gutter);
  }

  .primary-nav.is-open a:not(.button) {
    min-height: 62px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .primary-nav.is-open .button {
    display: inline-flex;
    margin-top: 1.5rem;
  }

  .hero {
    background: linear-gradient(135deg, var(--aqua-100) 0%, #edf8f6 55%, var(--paper) 100%);
  }

  .hero-video {
    width: min(100%, 420px, calc(46vh + 30px));
  }

  .hero-grid {
    min-height: 100svh;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 40vw);
    gap: clamp(2rem, 4vw, 3.5rem);
    padding-inline: clamp(2rem, 5vw, 3.5rem);
    padding-block: clamp(5.5rem, 9vw, 6.5rem);
  }

  .hero-copy {
    max-width: 680px;
  }

  .intro-grid,
  .split-grid,
  .visit-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .maria-profile {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .maria-profile .portrait-frame {
    margin-left: 0;
  }

  .intro-grid--image-led {
    gap: 3.5rem;
  }

  .intro-grid--image-led .portrait-frame,
  .intro-grid--image-led .editorial-image {
    margin-left: 0;
  }

  .skin-atlas__header,
  .skin-atlas__layout {
    grid-template-columns: 1fr;
  }

  .skin-atlas__chooser {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 2rem 0;
  }

  .skin-atlas__prompt {
    max-width: none;
  }

  .skin-atlas__goals {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .skin-atlas__goal {
    position: relative;
    min-height: 106px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 0.25rem;
    border-right: 1px solid var(--line);
    padding: 1rem;
  }

  .skin-atlas__goal:last-child {
    border-right: 0;
  }

  .skin-atlas__goal:is(:hover, :focus-visible),
  .skin-atlas__goal[aria-pressed="true"] {
    padding: 1rem;
  }

  .skin-atlas__marker {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }

  .portrait-frame img,
  .editorial-image img {
    height: 440px;
  }
}

@media (min-width: 721px) {
  .home-page .hero {
    position: sticky;
    z-index: 0;
    top: 0;
  }
}

@media (max-width: 720px) {
  .site-loader__mark {
    width: min(70vw, 280px);
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .section {
    padding-block: 4rem;
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand {
    width: min(232px, 75vw);
  }

  .primary-nav.is-open {
    inset: 72px 0 0;
  }

  h1 {
    font-size: clamp(3.05rem, 15vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.5rem);
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 7.5rem;
  }

  .hero-video {
    width: min(88vw, 370px);
    justify-self: center;
    border-radius: 0;
  }

  .hero-watermark {
    width: 190vw;
    opacity: 0.055;
    transform: translate(-50%, 5%);
  }

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

  .rail-item {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .rail-item:last-child {
    border-bottom: 0;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .intro-grid--image-led .portrait-frame img,
  .intro-grid--image-led .editorial-image img {
    height: clamp(420px, 128vw, 500px);
  }

  .maria-profile .portrait-frame img {
    height: clamp(440px, 128vw, 540px);
  }

  .skin-atlas__header {
    gap: 1.5rem;
  }

  .skin-atlas__goals {
    grid-template-columns: 1fr;
  }

  .skin-atlas__goal {
    min-height: 64px;
    grid-template-columns: 2.25rem 1fr auto;
    align-content: initial;
    gap: 0.75rem;
    border-right: 0;
    padding: 0.75rem 0.9rem;
  }

  .skin-atlas__goal:is(:hover, :focus-visible),
  .skin-atlas__goal[aria-pressed="true"] {
    padding-inline: 1.15rem 0.9rem;
  }

  .skin-atlas__marker {
    position: static;
  }

  .skin-atlas__result {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .skin-atlas__media {
    min-height: 360px;
  }

  .skin-atlas__result-copy {
    padding: 2rem 1.5rem 2.5rem;
  }

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

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

  .treatment-image {
    min-height: 240px;
  }

  .treatment-row--feature .treatment-image {
    min-height: clamp(300px, 74vw, 390px);
  }

  .treatment-row--feature .treatment-image--video {
    min-height: clamp(280px, 68vw, 350px);
  }

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

  .treatment-meta,
  .treatment-copy p,
  .treatment-copy .text-link {
    grid-column: 1;
    text-align: left;
  }

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

  .care-step {
    min-height: auto;
  }

  .location-line {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .map-embed__toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .map-embed iframe {
    height: 390px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-bottom a {
    justify-self: start;
  }

  .footer-credit {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-motion] {
    opacity: 1 !important;
    clip-path: none !important;
    filter: none !important;
    transform: none !important;
  }

  .site-loader,
  .site-loader__mark,
  .site-loader__line::after {
    animation: none;
    transition-duration: 0.01ms;
  }

  .site-loader__mark {
    opacity: 1;
    transform: none;
  }

  .site-loader__line::after {
    transform: scaleX(1);
  }

  .home-page .hero {
    position: relative;
    top: auto;
  }

  .hero::after,
  .hero-grid::before {
    animation: none !important;
    transform: none;
    will-change: auto;
  }

}
