:root {
  color-scheme: light;
  --background: #fff9f6;
  --foreground: #261612;
  --primary: #df6f63;
  --primary-strong: #b9423c;
  --primary-soft: #ffe2dc;
  --primary-foreground: #ffffff;
  --secondary: #184f55;
  --secondary-soft: #e8f4f2;
  --accent: #d99b52;
  --muted: #f8ede8;
  --muted-foreground: #6d514a;
  --border: rgba(105, 57, 48, 0.16);
  --card: rgba(255, 255, 255, 0.78);
  --ring: rgba(223, 111, 99, 0.46);
  --shadow: 0 24px 70px rgba(100, 42, 32, 0.14);
  --shadow-soft: 0 14px 34px rgba(100, 42, 32, 0.1);
  --radius: 8px;
  --radius-lg: 18px;
  --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 192, 181, 0.5), transparent 24rem),
    radial-gradient(circle at 95% 18%, rgba(24, 79, 85, 0.12), transparent 28rem),
    var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--secondary);
  color: white;
  font-weight: 800;
  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;
}

.container {
  width: min(100% - 40px, 1160px);
  margin-inline: auto;
}

.section-pad {
  padding: clamp(76px, 9vw, 132px) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.section-title {
  margin: 12px 0 0;
  max-width: 760px;
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.section-lead {
  margin: 16px 0 0;
  max-width: 640px;
  color: var(--muted-foreground);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.section-center {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-center .eyebrow {
  justify-content: center;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease),
    background 180ms var(--ease),
    border-color 180ms var(--ease);
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transition: transform 620ms var(--ease);
}

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

.btn:hover::after {
  transform: translateX(120%) skewX(-18deg);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: var(--primary-foreground);
  box-shadow: 0 14px 34px rgba(185, 66, 60, 0.28);
}

.btn-ghost {
  border-color: rgba(38, 22, 18, 0.14);
  background: rgba(255, 255, 255, 0.68);
  color: var(--foreground);
  backdrop-filter: blur(16px);
}

.btn-light {
  background: #fff;
  color: var(--primary-strong);
  box-shadow: 0 16px 40px rgba(87, 25, 22, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 246, 0.82);
  border-bottom: 1px solid rgba(105, 57, 48, 0.08);
  backdrop-filter: blur(20px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  width: min(100% - 32px, 1220px);
  min-height: var(--header-h);
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--primary), #ffb0a2);
  box-shadow: 0 10px 28px rgba(185, 66, 60, 0.24);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted-foreground);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 34px);
  color: rgba(38, 22, 18, 0.72);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms var(--ease);
}

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

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

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

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--secondary);
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(24, 79, 85, 0.18);
  transition:
    transform 180ms var(--ease),
    background 180ms var(--ease);
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: #123e43;
}

.nav-cta svg,
.sticky-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--foreground);
  cursor: pointer;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  overflow: hidden;
  padding-top: clamp(44px, 7vw, 84px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 75% 18%, rgba(223, 111, 99, 0.34), transparent 20rem),
    radial-gradient(circle at 76% 72%, rgba(24, 79, 85, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(255, 226, 220, 0.34), transparent 74%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

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

.hero-title {
  margin: 14px 0 0;
  max-width: 700px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.rotator {
  position: relative;
  display: inline-grid;
  min-width: 0;
  color: var(--primary-strong);
}

.rotator span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(0.42em);
  transition:
    opacity 520ms var(--ease),
    transform 520ms var(--ease);
}

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

.hero-text {
  margin: 34px 0 0;
  max-width: 610px;
  color: var(--muted-foreground);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

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

.hero-proof span {
  border: 1px solid rgba(185, 66, 60, 0.18);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(38, 22, 18, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.hero-media {
  position: relative;
  min-width: 0;
  min-height: 560px;
  aspect-ratio: 4 / 5;
}

.smile-orbit {
  position: absolute;
  inset: 3%;
  border: 1px solid rgba(185, 66, 60, 0.14);
  border-radius: 50%;
  animation: orbitPulse 8s ease-in-out infinite;
}

.smile-orbit span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 8px rgba(24, 79, 85, 0.12);
}

.smile-orbit span:nth-child(1) {
  left: 18%;
  top: 8%;
}

.smile-orbit span:nth-child(2) {
  right: 4%;
  top: 45%;
  background: var(--primary);
}

.smile-orbit span:nth-child(3) {
  bottom: 12%;
  left: 28%;
  background: var(--accent);
}

.tooth-glass {
  position: absolute;
  inset: 8% 5% 12%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 38% 62% 54% 46% / 42% 37% 63% 58%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 204, 194, 0.32)),
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.78), transparent 24rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  animation: morphCard 11s ease-in-out infinite;
}

.tooth-art {
  width: min(76%, 360px);
  height: auto;
  filter: drop-shadow(0 28px 34px rgba(100, 42, 32, 0.18));
}

.tooth-shape {
  fill: url("#toothGradient");
  stroke: rgba(185, 66, 60, 0.34);
  stroke-width: 5;
}

.smile-line,
.shine-line {
  fill: none;
  stroke: var(--secondary);
  stroke-linecap: round;
  stroke-width: 9;
  stroke-dasharray: 190;
  stroke-dashoffset: 190;
  animation: drawSmile 2.6s 0.5s var(--ease) forwards;
}

.shine-line {
  stroke: rgba(223, 111, 99, 0.55);
  stroke-width: 7;
  animation-delay: 1s;
}

.hero-card-stack {
  position: absolute;
  right: 0;
  bottom: 10%;
  width: min(270px, 70%);
  min-height: 138px;
}

.floating-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  padding: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  backdrop-filter: blur(18px);
  transition:
    opacity 520ms var(--ease),
    transform 520ms var(--ease);
}

.floating-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.floating-card strong {
  color: var(--secondary);
  font-size: 1.08rem;
}

.floating-card span {
  color: var(--muted-foreground);
  font-size: 0.94rem;
}

.ticker-band {
  overflow: hidden;
  border-block: 1px solid rgba(105, 57, 48, 0.12);
  background: #fff;
}

.ticker {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

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

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

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.stat-card {
  min-height: 210px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(223, 111, 99, 0.32);
  box-shadow: var(--shadow);
}

.stat-number {
  display: block;
  color: var(--primary-strong);
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 0.9;
}

.stat-card p {
  margin: 18px 0 0;
  color: var(--muted-foreground);
  font-weight: 700;
}

.care {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(248, 237, 232, 0.78)),
    var(--background);
}

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

.care-card {
  min-height: 294px;
  border: 1px solid rgba(105, 57, 48, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 242, 238, 0.8));
  box-shadow: 0 18px 44px rgba(100, 42, 32, 0.08);
  transition:
    transform 220ms var(--ease),
    background 220ms var(--ease),
    border-color 220ms var(--ease);
}

.care-card:hover {
  transform: translateY(-6px);
  border-color: rgba(223, 111, 99, 0.34);
  background: #fff;
}

.care-card svg {
  width: 44px;
  height: 44px;
  color: var(--primary-strong);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.care-card h3,
.story-panel h3,
.process-card h3,
.decision-card h3 {
  margin: 22px 0 8px;
  font-size: 1.18rem;
  line-height: 1.15;
}

.care-card p,
.story-panel p,
.process-card p,
.decision-card p,
.feature-item p {
  margin: 0;
  color: var(--muted-foreground);
}

.experience {
  --p: 0;
  --wash-a: color-mix(in oklab, #ffe2dc, #184f55 calc(var(--p) * 64%));
  --wash-b: color-mix(in oklab, #df6f63, #f6c78e calc(var(--p) * 54%));
  position: relative;
  background:
    radial-gradient(circle at calc(18% + var(--p) * 58%) 20%, rgba(255, 255, 255, 0.42), transparent 20rem),
    linear-gradient(135deg, var(--wash-a), var(--wash-b));
  color: var(--foreground);
  overflow: clip;
  transition: background 160ms linear;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 96px);
  align-items: start;
}

.story-sticky {
  position: sticky;
  top: calc(var(--header-h) + 42px);
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 30px 80px rgba(43, 19, 15, 0.13);
  backdrop-filter: blur(18px);
}

.story-sticky p {
  max-width: 480px;
  color: rgba(38, 22, 18, 0.72);
}

.story-progress {
  height: 7px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
}

.story-progress span {
  display: block;
  width: calc(18% + var(--p) * 82%);
  height: 100%;
  border-radius: inherit;
  background: var(--secondary);
}

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

.story-panel {
  min-height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.story-panel span,
.process-card span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  background: var(--secondary);
  color: #fff;
  font-weight: 900;
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.studio-visual {
  position: relative;
  min-height: 470px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.86), transparent 11rem),
    linear-gradient(145deg, rgba(223, 111, 99, 0.28), rgba(24, 79, 85, 0.18));
  overflow: hidden;
  box-shadow: var(--shadow);
}

.studio-ring {
  position: absolute;
  inset: 18%;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  animation: spinSlow 20s linear infinite;
}

.studio-ring::before,
.studio-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
}

.studio-ring::before {
  width: 18px;
  height: 18px;
  left: 9%;
  top: 12%;
}

.studio-ring::after {
  width: 12px;
  height: 12px;
  right: 16%;
  bottom: 6%;
  background: var(--secondary);
}

.studio-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: min(48vw, 190px);
  height: min(48vw, 190px);
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 28px 70px rgba(38, 22, 18, 0.12);
  backdrop-filter: blur(18px);
}

.studio-core svg {
  width: 86px;
  height: 86px;
  fill: none;
  stroke: var(--primary-strong);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dot {
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 20px 42px rgba(38, 22, 18, 0.09);
  backdrop-filter: blur(12px);
}

.dot-a {
  left: 9%;
  bottom: 11%;
}

.dot-b {
  right: 8%;
  top: 12%;
  width: 72px;
  height: 72px;
}

.dot-c {
  right: 17%;
  bottom: 18%;
  width: 46px;
  height: 46px;
  background: rgba(24, 79, 85, 0.58);
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.feature-item {
  border-left: 3px solid var(--primary);
  padding: 2px 0 2px 18px;
}

.feature-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--secondary);
  font-size: 1.02rem;
}

.process {
  background: #fff;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.process-card {
  position: sticky;
  top: calc(var(--header-h) + 18px);
  min-height: 250px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: var(--background);
  box-shadow: var(--shadow-soft);
}

.process-card:nth-child(2) {
  top: calc(var(--header-h) + 38px);
}

.process-card:nth-child(3) {
  top: calc(var(--header-h) + 58px);
}

.decision {
  background:
    radial-gradient(circle at 86% 16%, rgba(217, 155, 82, 0.16), transparent 18rem),
    linear-gradient(180deg, #fff, var(--muted));
}

.decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

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

.decision-card {
  border: 1px solid rgba(105, 57, 48, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 40px rgba(100, 42, 32, 0.06);
}

.decision-card h3 {
  margin-top: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  border: 1px solid rgba(105, 57, 48, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(100, 42, 32, 0.06);
  overflow: hidden;
}

.accordion summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--foreground);
  font-weight: 900;
  cursor: pointer;
}

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

.accordion summary::after {
  content: "+";
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 1.2rem;
  line-height: 1;
}

.accordion details[open] summary::after {
  content: "-";
}

.accordion p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted-foreground);
}

.location {
  background: #fff;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: 22px;
  align-items: stretch;
}

.location-card {
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 42px);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 226, 220, 0.72), transparent 16rem),
    var(--secondary);
  color: white;
  box-shadow: var(--shadow);
}

.location-card .eyebrow,
.location-card .section-title {
  color: white;
}

.location-card address {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  font-weight: 700;
}

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

.location-card .btn-ghost {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

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

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

.final-cta {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.28), transparent 17rem),
    linear-gradient(135deg, var(--primary-strong), var(--primary) 48%, #f6b49f);
}

.final-box {
  position: relative;
  display: grid;
  justify-items: center;
  max-width: 920px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 28px;
  padding: clamp(34px, 7vw, 72px) clamp(20px, 6vw, 66px);
  background: rgba(255, 255, 255, 0.16);
  color: white;
  text-align: center;
  box-shadow: 0 30px 90px rgba(87, 25, 22, 0.22);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.final-box::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: translateX(-80%) rotate(14deg);
  animation: ctaSweep 5s ease-in-out infinite;
}

.final-box > * {
  position: relative;
}

.final-box .eyebrow,
.final-box h2 {
  color: white;
}

.final-box h2 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 6vw, 5.5rem);
  line-height: 0.95;
}

.final-box p {
  max-width: 610px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.site-footer {
  background: #241512;
  color: rgba(255, 255, 255, 0.76);
  padding: 68px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) 0.7fr 0.8fr 1fr;
  gap: clamp(24px, 5vw, 62px);
}

.brand-footer .brand-mark {
  box-shadow: none;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
}

.health-note {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 9px;
  font-style: normal;
}

.footer-col h2 {
  margin: 0 0 8px;
  color: white;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.sticky-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 18px;
  background: var(--secondary);
  color: white;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(24, 79, 85, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 180ms var(--ease),
    transform 180ms var(--ease),
    background 180ms var(--ease);
}

.is-scrolled .sticky-whatsapp {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-whatsapp:hover {
  transform: translateY(-3px);
  background: #123e43;
}

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

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

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

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

@keyframes morphCard {
  0%,
  100% {
    border-radius: 38% 62% 54% 46% / 42% 37% 63% 58%;
    transform: translateY(0);
  }
  50% {
    border-radius: 55% 45% 41% 59% / 54% 48% 52% 46%;
    transform: translateY(-10px);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.035);
    opacity: 1;
  }
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ctaSweep {
  0%,
  46% {
    transform: translateX(-84%) rotate(14deg);
  }
  72%,
  100% {
    transform: translateX(84%) rotate(14deg);
  }
}

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

  .nav-toggle {
    display: grid;
    justify-self: end;
    order: 3;
  }

  .nav-cta {
    justify-self: end;
    order: 2;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    right: 16px;
    left: 16px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-16px);
    pointer-events: none;
    transition:
      opacity 180ms var(--ease),
      transform 180ms var(--ease);
  }

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

  .nav-links a {
    min-height: 46px;
    padding: 12px;
  }

  .hero-grid,
  .experience-grid,
  .studio-grid,
  .decision-grid,
  .faq-grid,
  .location-grid,
  .split-heading {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    min-height: 500px;
  }

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

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

  .process-rail,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .process-card,
  .process-card:nth-child(2),
  .process-card:nth-child(3) {
    position: relative;
    top: auto;
  }

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

@media (max-width: 680px) {
  :root {
    --header-h: 70px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .section-pad {
    padding: 66px 0;
  }

  .nav-shell {
    width: min(100% - 24px, 1220px);
    gap: 10px;
  }

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

  .brand small {
    font-size: 0.72rem;
  }

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

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-title {
    font-size: clamp(2.35rem, 10.6vw, 3.1rem);
  }

  .hero-copy,
  .hero-media {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

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

  .hero-text {
    width: min(100%, 350px);
    max-width: 350px;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .hero-proof {
    width: min(100%, 350px);
    max-width: 350px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof span {
    font-size: 0.82rem;
  }

  .hero-media {
    min-height: 410px;
    margin-top: 4px;
  }

  .tooth-glass {
    inset: 5% 1% 17%;
  }

  .hero-card-stack {
    right: 5%;
    bottom: 4%;
    width: min(275px, 84%);
  }

  .floating-card {
    padding: 18px;
  }

  .section-title {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

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

  .care-card {
    min-height: 240px;
  }

  .studio-visual {
    min-height: 360px;
    border-radius: 24px;
  }

  .story-panel {
    min-height: 230px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 390px;
  }

  .location-actions {
    display: grid;
  }

  .footer-bottom {
    display: grid;
    padding-bottom: 68px;
  }

  .sticky-whatsapp {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 2.3rem;
  }

  .btn {
    padding-inline: 14px;
    font-size: 0.94rem;
  }

  .hero-media {
    min-height: 382px;
  }
}

@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;
  }

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

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