:root {
  --background: #f7fbff;
  --foreground: #07111f;
  --primary: #071426;
  --primary-2: #0c2340;
  --primary-3: #102f55;
  --primary-foreground: #ffffff;
  --secondary: #0e7490;
  --secondary-dark: #155e75;
  --accent: #d9b46a;
  --accent-2: #67e8f9;
  --mint: #d7fff4;
  --coral: #f59f8d;
  --muted: #eaf1f8;
  --muted-foreground: #516174;
  --surface: #ffffff;
  --surface-soft: #eef7fb;
  --border: rgba(10, 39, 69, 0.14);
  --ring: #67e8f9;
  --shadow: 0 24px 80px rgba(3, 18, 37, 0.16);
  --shadow-soft: 0 16px 44px rgba(7, 20, 38, 0.1);
  --radius: 8px;
  --radius-large: 24px;
  --header-height: 76px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--foreground);
  background: var(--background);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 12px 16px;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  transition: transform 180ms var(--ease);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 251, 255, 0.86);
  border-bottom: 1px solid rgba(7, 20, 38, 0.08);
  backdrop-filter: blur(22px);
  transition: box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.site-header.scrolled {
  background: rgba(247, 251, 255, 0.95);
  box-shadow: 0 12px 38px rgba(7, 20, 38, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--primary-foreground);
  background:
    radial-gradient(circle at 28% 18%, rgba(103, 232, 249, 0.65), transparent 34%),
    linear-gradient(145deg, var(--primary), var(--primary-3));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(7, 20, 38, 0.18);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.05;
  color: var(--primary);
}

.brand small {
  margin-top: 3px;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(7, 17, 31, 0.76);
  font-weight: 700;
  font-size: 0.92rem;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease);
}

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

.header-cta {
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0 18px;
  color: var(--primary-foreground);
  background: var(--primary);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(7, 20, 38, 0.16);
  transition: transform 180ms var(--ease), background 180ms var(--ease);
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  background: var(--secondary-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--primary);
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

.menu-open .menu-toggle span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(3) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.section-shell {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
}

.hero {
  padding: clamp(42px, 8vw, 94px) 0 clamp(34px, 7vw, 82px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--secondary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero h1,
.section-heading h2,
.story-sticky h2,
.decision-copy h2,
.final-card h2,
.location-copy h2 {
  margin: 0;
  color: var(--primary);
  font-weight: 800;
  line-height: 0.98;
}

.hero h1 {
  max-width: 10.8ch;
  font-size: clamp(3rem, 5.4vw, 4.95rem);
}

.rotator {
  position: relative;
  display: inline-block;
  min-width: 4.9em;
  color: var(--secondary-dark);
}

.rotator.is-changing {
  animation: wordSwap 420ms var(--ease);
}

.hero-lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: #35445a;
  font-size: clamp(1.04rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  position: relative;
  overflow: hidden;
  color: var(--primary-foreground);
  background: linear-gradient(135deg, var(--primary), var(--secondary-dark));
  box-shadow: 0 20px 42px rgba(7, 20, 38, 0.2);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.18) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: sheen 4.6s ease-in-out infinite;
}

.btn-primary span,
.btn-primary svg {
  position: relative;
}

.btn-primary:hover svg,
.btn-primary:focus-visible svg {
  transform: translateX(4px);
}

.btn-secondary {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--border);
  box-shadow: 0 12px 30px rgba(7, 20, 38, 0.07);
}

.btn.light {
  color: var(--primary);
  background: linear-gradient(135deg, #ffffff, var(--mint));
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0 14px;
  color: var(--primary-2);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-media {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: clamp(470px, 54vw, 660px);
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 26% 18%, rgba(103, 232, 249, 0.55), transparent 20rem),
    radial-gradient(circle at 82% 78%, rgba(217, 180, 106, 0.42), transparent 17rem),
    linear-gradient(145deg, var(--primary) 0%, var(--primary-2) 58%, #08212f 100%);
  box-shadow: var(--shadow);
}

.hero-photo-frame {
  position: absolute;
  top: 16%;
  right: 7%;
  z-index: 2;
  width: min(275px, 45%);
  aspect-ratio: 275 / 183;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
  transform: rotate(3deg);
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 20, 38, 0.04), rgba(7, 20, 38, 0.32));
  pointer-events: none;
}

.hero-photo-frame img,
.treatment-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-orbit {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 40% 60% 58% 42% / 48% 44% 56% 52%;
  animation: morph 8s ease-in-out infinite alternate;
}

.orbit {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.06);
}

.orbit-one {
  width: 112px;
  height: 112px;
  top: 8%;
  right: 13%;
  animation: floatOne 6.2s ease-in-out infinite;
}

.orbit-two {
  width: 76px;
  height: 76px;
  left: 8%;
  bottom: 24%;
  animation: floatTwo 5.8s ease-in-out infinite;
}

.orbit-three {
  width: 48px;
  height: 48px;
  right: 20%;
  bottom: 13%;
  background: rgba(217, 180, 106, 0.2);
  animation: floatOne 5.4s ease-in-out infinite reverse;
}

.face-line {
  position: absolute;
  inset: 7% 2% auto 6%;
  z-index: 1;
  width: 90%;
  height: 86%;
  overflow: visible;
  color: rgba(255, 255, 255, 0.92);
}

.face-line path {
  fill: none;
  stroke: currentColor;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
}

.face-path,
.profile-path,
.smile-path,
.spark-path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawLine 2.4s var(--ease) forwards;
}

.profile-path {
  animation-delay: 260ms;
  color: rgba(103, 232, 249, 0.92);
}

.smile-path {
  animation-delay: 520ms;
  color: var(--accent);
}

.spark-path {
  animation-delay: 780ms;
}

.hero-card {
  position: absolute;
  z-index: 3;
  width: min(260px, 46%);
  padding: 16px;
  color: var(--primary-foreground);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  font-size: clamp(0.98rem, 1.4vw, 1.15rem);
}

.hero-card span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.card-top {
  top: 8%;
  left: 8%;
  animation: cardFloat 5.6s ease-in-out infinite;
}

.card-bottom {
  right: 7%;
  bottom: 8%;
  animation: cardFloat 6.2s ease-in-out infinite reverse;
}

.hero-billboard {
  width: 100%;
  margin-top: clamp(30px, 6vw, 62px);
  overflow: hidden;
  border-block: 1px solid var(--border);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
  width: max-content;
  display: flex;
  animation: ticker 30s linear infinite;
}

.ticker-group {
  display: flex;
  min-width: max-content;
}

.ticker-group span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  color: var(--primary-2);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(0.8rem, 1.5vw, 0.96rem);
  letter-spacing: 0.12em;
}

.ticker-group span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--accent);
}

.proof,
.treatments,
.signature,
.experience,
.decision,
.faq,
.location,
.final-cta {
  padding: clamp(58px, 9vw, 116px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.section-heading.wide {
  max-width: 960px;
}

.section-heading h2,
.story-sticky h2,
.decision-copy h2,
.location-copy h2,
.final-card h2 {
  font-size: clamp(2rem, 5.2vw, 4.45rem);
}

.section-heading p:not(.eyebrow),
.decision-copy p,
.location-copy address,
.final-card p,
.story-sticky p {
  color: #4e5f73;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.7;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.metric-card,
.service-card,
.tab-card,
.experience-card,
.decision-item,
.faq-item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.metric-card {
  min-height: 210px;
  padding: clamp(22px, 3vw, 32px);
}

.metric {
  display: block;
  color: var(--primary);
  font-size: clamp(3.4rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 0.85;
}

.text-metric {
  color: var(--secondary-dark);
}

.metric-card p {
  margin: 24px 0 0;
  color: var(--muted-foreground);
  font-weight: 700;
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.treatment-photo-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 16px;
  margin: -12px 0 34px;
}

.treatment-photo {
  position: relative;
  min-height: 214px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--muted);
  box-shadow: var(--shadow-soft);
}

.treatment-photo.tall {
  min-height: 260px;
}

.treatment-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 20, 38, 0.76));
  pointer-events: none;
}

.treatment-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--primary-foreground);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.service-card {
  min-height: 290px;
  padding: 24px;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 116, 144, 0.35);
  box-shadow: 0 24px 60px rgba(7, 20, 38, 0.14);
}

.icon-shell {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--secondary-dark);
  background: linear-gradient(135deg, var(--surface-soft), var(--mint));
  border-radius: var(--radius);
}

.icon-shell svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.experience-card h3,
.tab-panel h3,
.decision-item p,
.faq-item summary {
  color: var(--primary);
}

.service-card h3 {
  margin: 28px 0 12px;
  font-size: 1.25rem;
}

.service-card p,
.experience-card p,
.tab-panel p,
.faq-item p {
  color: var(--muted-foreground);
  line-height: 1.62;
}

.story {
  --p: 0;
  width: 100%;
  max-width: none;
  padding: clamp(64px, 10vw, 130px) max(18px, calc((100vw - var(--container)) / 2));
  color: var(--primary-foreground);
  background:
    radial-gradient(circle at calc(10% + var(--p) * 70%) 16%, rgba(103, 232, 249, 0.36), transparent 18rem),
    radial-gradient(circle at calc(88% - var(--p) * 42%) 84%, rgba(217, 180, 106, 0.28), transparent 16rem),
    linear-gradient(135deg, color-mix(in oklab, #071426, #0e7490 calc(var(--p) * 42%)), color-mix(in oklab, #0c2340, #0f766e calc(var(--p) * 42%)));
}

.story-layout {
  width: min(100%, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.story-sticky {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story .eyebrow,
.story-sticky h2,
.story-sticky p {
  color: var(--primary-foreground);
}

.story-sticky p {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.78);
}

.progress-shell {
  width: min(100%, 420px);
  height: 8px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.progress-shell span {
  display: block;
  width: calc(var(--p) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  border-radius: inherit;
}

.story-panels {
  display: grid;
  gap: 18px;
}

.story-panel {
  min-height: 260px;
  padding: clamp(24px, 4vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  opacity: 0.72;
  transform: scale(0.98);
  transition: opacity 240ms var(--ease), transform 240ms var(--ease), background 240ms var(--ease);
}

.story-panel.is-active {
  opacity: 1;
  transform: scale(1);
  background: rgba(255, 255, 255, 0.16);
}

.story-panel span {
  color: var(--accent);
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
}

.story-panel h3 {
  margin: 18px 0 12px;
  color: var(--primary-foreground);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.story-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.65;
}

.signature-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
}

.signature-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 28% 20%, rgba(103, 232, 249, 0.42), transparent 14rem),
    radial-gradient(circle at 75% 80%, rgba(245, 159, 141, 0.28), transparent 13rem),
    linear-gradient(145deg, #071426, #0e2a47);
  box-shadow: var(--shadow);
}

.smile-arch {
  position: absolute;
  inset: 18% 12% 25%;
  border: 6px solid rgba(255, 255, 255, 0.9);
  border-top: 0;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 0 0 50% 50%;
  transform: rotate(-7deg);
}

.balance-line {
  position: absolute;
  left: 18%;
  right: 18%;
  top: 48%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: balanceGlow 3.4s ease-in-out infinite;
}

.mini-points span {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent-2);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(103, 232, 249, 0.5);
}

.mini-points span:nth-child(1) {
  top: 28%;
  left: 28%;
}

.mini-points span:nth-child(2) {
  top: 56%;
  right: 24%;
}

.mini-points span:nth-child(3) {
  bottom: 22%;
  left: 42%;
}

.tab-card {
  padding: clamp(20px, 3vw, 34px);
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: var(--muted);
  border-radius: var(--radius);
}

.tab-button {
  min-height: 46px;
  padding: 0 12px;
  color: var(--primary);
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.tab-button.active {
  color: var(--primary-foreground);
  background: var(--primary);
  box-shadow: 0 12px 26px rgba(7, 20, 38, 0.14);
}

.tab-button:active {
  transform: scale(0.96);
}

.tab-panel {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 4vw, 46px) 4px 8px;
}

.tab-panel h3 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.35rem);
  line-height: 1;
}

.tab-panel p {
  max-width: 570px;
  margin: 18px 0 0;
  font-size: 1.08rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.experience-card {
  min-height: 250px;
  padding: 24px;
}

.experience-card.large {
  grid-column: span 2;
  background:
    radial-gradient(circle at 90% 20%, rgba(103, 232, 249, 0.3), transparent 12rem),
    linear-gradient(135deg, #ffffff, #e8f8fc);
}

.experience-card.dark {
  color: var(--primary-foreground);
  background:
    radial-gradient(circle at 80% 20%, rgba(217, 180, 106, 0.36), transparent 11rem),
    linear-gradient(145deg, var(--primary), var(--primary-3));
}

.experience-card.dark h3,
.experience-card.dark p {
  color: var(--primary-foreground);
}

.experience-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.experience-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--secondary-dark);
  font-weight: 900;
}

.decision {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(26px, 6vw, 76px);
  align-items: center;
}

.decision-copy p {
  max-width: 630px;
}

.decision-list {
  display: grid;
  gap: 14px;
}

.decision-item {
  min-height: 112px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.decision-item span {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(217, 180, 106, 0.14);
}

.decision-item p {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 800;
  line-height: 1.3;
}

.faq {
  width: min(100% - 36px, 940px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--primary-foreground);
  background: var(--primary);
  border-radius: var(--radius);
  transition: transform 180ms var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
}

.location {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
}

.location-copy address {
  margin: 22px 0 0;
  font-style: normal;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.map-frame {
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--muted);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: block;
  border: 0;
}

.final-cta {
  width: min(100% - 36px, 1060px);
}

.final-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 72px);
  color: var(--primary-foreground);
  background:
    radial-gradient(circle at 18% 18%, rgba(103, 232, 249, 0.34), transparent 18rem),
    radial-gradient(circle at 88% 70%, rgba(217, 180, 106, 0.34), transparent 18rem),
    linear-gradient(135deg, var(--primary), var(--primary-2));
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.final-card::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -130px;
  bottom: -170px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 45%;
  transform: rotate(18deg);
}

.final-card .eyebrow,
.final-card h2,
.final-card p {
  position: relative;
  z-index: 1;
  color: var(--primary-foreground);
}

.final-card p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.final-card .btn {
  position: relative;
  z-index: 1;
  margin-top: 16px;
}

.site-footer {
  padding: clamp(46px, 8vw, 76px) clamp(18px, 4vw, 56px) 28px;
  color: rgba(255, 255, 255, 0.78);
  background: #050d18;
}

.footer-grid {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr 1fr;
  gap: clamp(24px, 5vw, 58px);
}

.site-footer .brand strong,
.site-footer .brand small {
  color: var(--primary-foreground);
}

.footer-about {
  max-width: 360px;
  line-height: 1.65;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--primary-foreground);
  font-size: 0.98rem;
}

.site-footer nav,
.site-footer address,
.site-footer div {
  font-style: normal;
}

.site-footer nav a,
.site-footer address a,
.site-footer address span,
.footer-route,
.site-footer div > p {
  display: block;
  margin: 0 0 10px;
  line-height: 1.55;
}

.site-footer a {
  transition: color 180ms var(--ease);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-2);
}

.footer-route {
  color: var(--accent);
  font-weight: 900;
}

.footer-bottom {
  width: min(100%, var(--container));
  margin: 38px auto 0;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: #062016;
  background: #7cf7b2;
  border: 1px solid rgba(6, 32, 22, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(6, 32, 22, 0.2);
  font-weight: 900;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

body:not(.show-floating) .floating-whatsapp {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(6, 32, 22, 0.28);
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

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

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

@keyframes wordSwap {
  0% {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes sheen {
  0%,
  48% {
    transform: translateX(-120%);
  }
  70%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes morph {
  to {
    border-radius: 57% 43% 46% 54% / 42% 55% 45% 58%;
    transform: rotate(4deg) scale(1.02);
  }
}

@keyframes floatOne {
  50% {
    transform: translate3d(12px, -18px, 0);
  }
}

@keyframes floatTwo {
  50% {
    transform: translate3d(-10px, 16px, 0);
  }
}

@keyframes cardFloat {
  50% {
    transform: translateY(-12px);
  }
}

@keyframes balanceGlow {
  50% {
    opacity: 0.45;
    transform: scaleX(0.82);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .header-cta {
    order: 2;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 18px auto;
    z-index: 99;
    display: grid;
    gap: 4px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms var(--ease), opacity 180ms var(--ease);
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: var(--radius);
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: var(--muted);
  }

  .main-nav a::after {
    display: none;
  }

  .hero-grid,
  .story-layout,
  .signature-grid,
  .decision,
  .location {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .story-sticky {
    position: relative;
    top: auto;
    min-height: auto;
  }

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

  .treatment-photo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .treatment-photo.tall {
    grid-column: span 2;
  }

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

@media (max-width: 720px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding: 12px 16px;
    gap: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .section-shell,
  .faq,
  .final-cta {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.15rem);
  }

  .rotator {
    min-width: 0;
  }

  .hero-actions,
  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    padding-inline: 16px;
  }

  .hero-proof span {
    min-height: 36px;
    font-size: 0.8rem;
  }

  .hero-media {
    min-height: 430px;
    border-radius: 18px;
  }

  .hero-photo-frame {
    top: 14%;
    right: 6%;
    width: min(230px, 64%);
  }

  .hero-card {
    width: min(225px, 62%);
    padding: 13px;
  }

  .card-top {
    top: 6%;
    left: 6%;
  }

  .card-bottom {
    right: 6%;
    bottom: 6%;
  }

  .ticker-group span {
    padding-inline: 18px;
  }

  .proof-grid,
  .service-grid,
  .treatment-photo-strip,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .treatment-photo-strip {
    margin: -6px 0 24px;
  }

  .treatment-photo,
  .treatment-photo.tall {
    grid-column: auto;
    min-height: 206px;
  }

  .metric-card,
  .service-card,
  .experience-card,
  .story-panel {
    min-height: auto;
  }

  .service-card,
  .experience-card {
    padding: 22px;
  }

  .story {
    padding-inline: 14px;
  }

  .story-panel {
    padding: 24px;
  }

  .signature-visual {
    min-height: 340px;
  }

  .tab-list {
    grid-template-columns: 1fr;
  }

  .tab-panel {
    min-height: 220px;
  }

  .experience-card.large {
    grid-column: auto;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 380px;
    border-radius: 18px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2.32rem;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .hero-card span {
    font-size: 0.8rem;
  }
}

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

  .ticker-track {
    animation: none;
    flex-wrap: wrap;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
