:root {
  --background: #fff7eb;
  --surface: #fffaf2;
  --surface-strong: #f7e7d0;
  --foreground: #2a1a14;
  --muted: #745c51;
  --primary: #9f4f36;
  --primary-dark: #6f2f1f;
  --primary-foreground: #fffaf2;
  --secondary: #6c8c75;
  --secondary-dark: #365b42;
  --accent: #d8a35d;
  --border: rgba(111, 47, 31, 0.18);
  --ring: rgba(159, 79, 54, 0.42);
  --shadow: 0 24px 70px rgba(82, 38, 23, 0.16);
  --radius: 8px;
  --radius-lg: 24px;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--foreground);
  background:
    linear-gradient(90deg, rgba(111, 47, 31, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #fff7eb 0%, #fffaf2 34%, #f7e7d0 100%);
  background-size: 44px 44px, auto;
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--primary-dark);
  color: var(--primary-foreground);
  padding: 12px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
}

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

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

.section {
  position: relative;
  padding: clamp(72px, 10vw, 128px) 0;
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 7vw, 5.9rem);
  line-height: 0.9;
  letter-spacing: 0;
  font-weight: 400;
}

.section-lead,
.hero-lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 62ch;
}

.eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 12px clamp(16px, 4vw, 48px);
  background: rgba(255, 247, 235, 0.78);
  border-bottom: 1px solid rgba(111, 47, 31, 0.12);
  backdrop-filter: blur(18px);
  transition: background 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 242, 0.95);
  box-shadow: 0 16px 44px rgba(82, 38, 23, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--foreground);
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: linear-gradient(145deg, #fffaf2, #f1d5b7);
  box-shadow: 0 10px 24px rgba(111, 47, 31, 0.12);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  fill: var(--primary);
}

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

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

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.82);
}

.main-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--primary-dark);
  background: rgba(159, 79, 54, 0.08);
}

.header-cta {
  justify-self: end;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--secondary-dark);
  color: #fffaf2;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(54, 91, 66, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(54, 91, 66, 0.26);
}

.header-cta svg,
.btn svg,
.floating-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--foreground);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-h) + clamp(42px, 7vw, 92px));
  padding-bottom: 0;
}

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

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

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 8vw, 7.2rem);
  line-height: 0.86;
  letter-spacing: 0;
  font-weight: 400;
}

.rotating-word {
  position: relative;
  display: inline-block;
  color: var(--primary);
  min-width: min(100%, 5.9em);
}

.rotating-word.is-changing {
  animation: wordSwap 420ms ease both;
}

.hero-lead {
  margin-top: 28px;
}

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

.btn {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  overflow: hidden;
  transition: transform 150ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

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

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

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 18px 42px rgba(159, 79, 54, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}

.btn-ghost {
  border-color: var(--border);
  background: rgba(255, 250, 242, 0.7);
  color: var(--foreground);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(82, 38, 23, 0.1);
}

.btn-light {
  background: #fffaf2;
  color: var(--primary-dark);
  box-shadow: 0 20px 42px rgba(42, 26, 20, 0.2);
}

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

.hero-proof span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.78);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-media {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-visual {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 4 / 5;
  margin-inline: auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 48% 48% 8px 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.78), rgba(247, 231, 208, 0.62)),
    repeating-linear-gradient(90deg, rgba(159, 79, 54, 0.08) 0 1px, transparent 1px 28px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(111, 47, 31, 0.12);
  border-radius: inherit;
  pointer-events: none;
}

.tooth-sculpture {
  width: min(88%, 480px);
  filter: drop-shadow(0 28px 34px rgba(111, 47, 31, 0.16));
  animation: sculptureFloat 5s ease-in-out infinite;
}

.draw-line {
  stroke: rgba(111, 47, 31, 0.16);
  stroke-width: 2;
}

.smile-arc {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: drawSmile 1.4s ease 450ms forwards;
}

.spark {
  transform-origin: center;
  animation: sparkPulse 2.8s ease-in-out infinite;
}

.spark-b {
  animation-delay: 0.8s;
}

.hero-card {
  position: absolute;
  width: min(210px, 44%);
  padding: 14px;
  border: 1px solid rgba(111, 47, 31, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.9);
  box-shadow: 0 18px 42px rgba(82, 38, 23, 0.13);
  backdrop-filter: blur(14px);
}

.hero-card span,
.story-panel span,
.step-card span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.78rem;
  font-weight: 900;
}

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

.hero-card strong {
  line-height: 1.2;
}

.hero-card small {
  color: var(--muted);
  margin-top: 3px;
}

.hero-card-top {
  top: 12%;
  right: 6%;
  animation: cardDrift 4.6s ease-in-out infinite;
}

.hero-card-bottom {
  left: 5%;
  bottom: 12%;
  animation: cardDrift 4.8s ease-in-out infinite reverse;
}

.billboard {
  margin-top: clamp(52px, 8vw, 84px);
  overflow: hidden;
  border-block: 1px solid rgba(111, 47, 31, 0.18);
  background: var(--primary-dark);
  color: var(--primary-foreground);
}

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

.billboard-group {
  display: flex;
  align-items: center;
  min-width: max-content;
}

.billboard span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 72px;
  padding: 0 32px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4vw, 3rem);
  white-space: nowrap;
}

.billboard span::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 32px;
  border-radius: 50%;
  background: var(--accent);
}

.proof-band {
  background: #fffaf2;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.4fr) minmax(180px, 0.4fr);
  gap: 28px;
  align-items: end;
}

.metric {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff7eb, #f7e7d0);
}

.metric strong {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.84;
  font-weight: 400;
  color: var(--primary);
}

.metric span {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.split-grid,
.values-grid,
.location-grid,
.decision-grid,
.faq-grid,
.experience-grid {
  display: grid;
  gap: clamp(28px, 6vw, 72px);
}

.split-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}

.care-list {
  display: grid;
  gap: 16px;
}

.care-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 168px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 18px 42px rgba(82, 38, 23, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.care-item:hover {
  transform: translateY(-5px);
  border-color: rgba(159, 79, 54, 0.34);
  box-shadow: 0 28px 64px rgba(82, 38, 23, 0.13);
}

.icon-circle {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(108, 140, 117, 0.12);
  color: var(--secondary-dark);
}

.icon-circle svg,
.decision-item svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.care-item h3,
.story-panel h3,
.step-card h3,
.value-point strong {
  margin: 0;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.2;
}

.care-item p,
.story-panel p,
.step-card p,
.value-point p,
.decision-item {
  color: var(--muted);
}

.experience-section {
  --p: 0;
  --wash-a: color-mix(in oklab, #8f432e, #365b42 calc(var(--p) * 56%));
  --wash-b: color-mix(in oklab, #f7e7d0, #d8a35d calc(var(--p) * 42%));
  color: #fffaf2;
  background:
    linear-gradient(135deg, rgba(42, 26, 20, calc(0.24 + var(--p) * 0.18)), rgba(42, 26, 20, 0.1)),
    linear-gradient(135deg, var(--wash-a), var(--wash-b));
  overflow: clip;
}

.experience-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 250, 242, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  pointer-events: none;
}

.experience-grid {
  position: relative;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.experience-section .eyebrow,
.experience-section .section-lead {
  color: rgba(255, 250, 242, 0.82);
}

.experience-sticky {
  position: sticky;
  top: calc(var(--header-h) + 42px);
}

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

.progress-shell span {
  display: block;
  width: calc(var(--p) * 100%);
  height: 100%;
  border-radius: inherit;
  background: #fffaf2;
}

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

.story-panel {
  min-height: 245px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 250, 242, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.1);
  backdrop-filter: blur(12px);
  transform: scale(0.98);
  transition: transform 240ms ease, background 240ms ease, border-color 240ms ease;
}

.story-panel.is-active {
  transform: scale(1);
  background: rgba(255, 250, 242, 0.2);
  border-color: rgba(255, 250, 242, 0.55);
}

.story-panel span {
  background: #fffaf2;
  color: var(--primary-dark);
}

.story-panel p {
  color: rgba(255, 250, 242, 0.82);
}

.center-copy {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 42px;
}

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

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

.step-card {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fffaf2;
  box-shadow: 0 20px 52px rgba(82, 38, 23, 0.08);
}

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

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

.step-card:nth-child(4) {
  top: calc(var(--header-h) + 84px);
}

.values-section {
  background: #fffaf2;
}

.values-grid {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
}

.value-visual {
  min-height: 520px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius) var(--radius);
  background:
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(111, 47, 31, 0.09) 32px 33px),
    linear-gradient(180deg, #f7e7d0, #fffaf2);
  overflow: hidden;
}

.arch-lines {
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
}

.arch-lines span {
  position: absolute;
  bottom: -28%;
  width: calc(38% + var(--i, 0) * 10%);
  aspect-ratio: 1;
  border: 2px solid rgba(159, 79, 54, 0.36);
  border-radius: 50% 50% 0 0;
  border-bottom: 0;
  animation: archBreathe 4.2s ease-in-out infinite;
}

.arch-lines span:nth-child(1) { --i: 1; }
.arch-lines span:nth-child(2) { --i: 2; animation-delay: 0.2s; }
.arch-lines span:nth-child(3) { --i: 3; animation-delay: 0.4s; }
.arch-lines span:nth-child(4) { --i: 4; animation-delay: 0.6s; }

.value-points {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.value-point {
  padding-block: 22px;
  border-top: 1px solid var(--border);
}

.value-point p {
  margin-bottom: 0;
}

.decision-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
}

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

.decision-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.84);
  font-weight: 800;
}

.decision-item svg {
  color: var(--secondary-dark);
}

.location-section {
  background: linear-gradient(180deg, #f7e7d0 0%, #fff7eb 100%);
}

.location-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  align-items: center;
}

.address-card {
  display: grid;
  gap: 8px;
  margin: 30px 0 24px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.86);
  font-style: normal;
  box-shadow: 0 18px 42px rgba(82, 38, 23, 0.1);
}

.address-card a,
.site-footer a {
  color: var(--primary-dark);
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

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

.faq-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.88);
}

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

.faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(159, 79, 54, 0.1);
  color: var(--primary-dark);
}

.faq-item[open] summary::after {
  content: "−";
}

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

.final-cta {
  padding-top: 60px;
}

.cta-panel {
  padding: clamp(36px, 7vw, 76px);
  border-radius: var(--radius-lg);
  color: #fffaf2;
  background:
    linear-gradient(135deg, rgba(42, 26, 20, 0.16), rgba(42, 26, 20, 0)),
    linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 8vw, 6.7rem);
  line-height: 0.9;
  font-weight: 400;
}

.cta-panel p {
  max-width: 650px;
  color: rgba(255, 250, 242, 0.82);
}

.site-footer {
  padding: 64px 0 26px;
  background: #251711;
  color: #fffaf2;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.8fr));
  gap: 32px;
}

.footer-brand {
  color: #fffaf2;
}

.site-footer .brand-mark {
  background: rgba(255, 250, 242, 0.08);
  border-color: rgba(255, 250, 242, 0.18);
}

.site-footer .brand-mark svg {
  fill: #f7e7d0;
}

.site-footer p,
.site-footer small,
.site-footer span {
  color: rgba(255, 250, 242, 0.72);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fffaf2;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer nav,
.site-footer address,
.site-footer div {
  min-width: 0;
}

.site-footer nav,
.site-footer address {
  display: grid;
  gap: 9px;
  font-style: normal;
}

.site-footer a {
  color: #f7e7d0;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 242, 0.14);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--secondary-dark);
  color: #fffaf2;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(54, 91, 66, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.floating-whatsapp.is-visible:hover {
  transform: translateY(-3px);
}

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

.js-ready .reveal {
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes wordSwap {
  0% { opacity: 0; transform: translateY(14px); clip-path: inset(0 0 100% 0); }
  100% { opacity: 1; transform: translateY(0); clip-path: inset(0); }
}

@keyframes sculptureFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

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

@keyframes sparkPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.74; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes cardDrift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

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

@keyframes archBreathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-h) 16px auto 16px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: var(--radius);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .main-nav a {
    justify-content: center;
    min-height: 48px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .experience-grid,
  .values-grid,
  .decision-grid,
  .location-grid,
  .faq-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .section-copy,
  .experience-sticky {
    position: relative;
    top: auto;
  }

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

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

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

  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 68px 0;
  }

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

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

  .brand small {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-h) + 34px);
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.7rem);
  }

  .rotating-word {
    min-width: auto;
  }

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

  .btn {
    width: 100%;
  }

  .hero-visual {
    border-radius: 42% 42% 8px 8px;
  }

  .hero-card {
    position: relative;
    width: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    animation: none;
  }

  .hero-card-top {
    justify-self: end;
    margin-right: 14px;
    margin-bottom: -42px;
    z-index: 2;
  }

  .hero-card-bottom {
    justify-self: start;
    margin-left: 14px;
    margin-top: -54px;
    z-index: 2;
  }

  .billboard span {
    min-height: 60px;
    padding-inline: 22px;
  }

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

  .journey-steps {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .step-card {
    position: relative;
    top: auto !important;
    min-width: 82%;
    scroll-snap-align: start;
  }

  .value-visual {
    min-height: 320px;
  }

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

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

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

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

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

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

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