:root {
  --background: #f4f7ef;
  --surface: #fffffb;
  --surface-strong: #eef4e9;
  --foreground: #14231c;
  --muted-foreground: #5d6b61;
  --primary: #7f9a82;
  --primary-deep: #415f49;
  --primary-foreground: #ffffff;
  --accent: #c9a96b;
  --teal: #527b77;
  --ink: #0d1914;
  --border: rgba(65, 95, 73, 0.18);
  --ring: rgba(127, 154, 130, 0.42);
  --shadow: 0 24px 70px rgba(32, 54, 41, 0.14);
  --shadow-soft: 0 14px 34px rgba(32, 54, 41, 0.1);
  --radius: 8px;
  --radius-large: 18px;
  --container: 1160px;
  --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--foreground);
  background:
    radial-gradient(circle at 12% 10%, rgba(201, 169, 107, 0.16), transparent 24rem),
    linear-gradient(180deg, #f7faf2 0%, var(--background) 34%, #edf4e9 100%);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.section {
  scroll-margin-top: 96px;
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 56px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(65, 95, 73, 0.12);
  background: rgba(247, 250, 242, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--primary-deep);
  background: rgba(255, 255, 251, 0.76);
  box-shadow: var(--shadow-soft);
}

.brand-mark svg {
  width: 27px;
  height: 27px;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 0 14px;
  color: #27392f;
  font-size: 0.94rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
  background: rgba(127, 154, 130, 0.13);
  transform: translateY(-1px);
}

.main-nav .nav-cta {
  background: var(--primary-deep);
  color: white;
  box-shadow: 0 10px 22px rgba(65, 95, 73, 0.24);
}

.main-nav .nav-cta:hover {
  background: var(--ink);
  color: white;
}

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

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

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  padding-top: clamp(34px, 7vw, 80px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 7% auto auto -14%;
  width: 46vw;
  min-width: 340px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 154, 130, 0.18), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
  max-width: var(--container);
  margin: 0 auto;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-title {
  font-size: clamp(3rem, 5.2vw, 5rem);
  max-width: 7.15em;
  overflow-wrap: break-word;
  hyphens: manual;
}

.rotator-wrap {
  display: inline-grid;
  min-width: 4.85em;
  color: var(--primary-deep);
  vertical-align: baseline;
}

.rotator {
  display: inline-block;
  transition: opacity 240ms ease, transform 240ms ease;
}

.mobile-title-break {
  display: none;
}

.hero-tail,
.hero-tail span {
  display: inline;
}

.rotator.is-changing {
  opacity: 0;
  transform: translateY(14px);
}

.hero-text {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted-foreground);
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
}

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

.button {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 18px;
  font-weight: 900;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.button-primary {
  color: var(--primary-foreground);
  background: var(--primary-deep);
  box-shadow: 0 18px 38px rgba(65, 95, 73, 0.28);
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: -120% auto -120% -40%;
  width: 36%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent);
  animation: sheen 3.8s ease-in-out infinite;
}

.button-primary:hover {
  background: #314838;
  box-shadow: 0 22px 46px rgba(65, 95, 73, 0.34);
}

.button-secondary {
  border-color: var(--border);
  color: var(--primary-deep);
  background: rgba(255, 255, 251, 0.72);
}

.button-secondary:hover {
  border-color: rgba(65, 95, 73, 0.34);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.button-light {
  color: var(--primary-deep);
  background: white;
  box-shadow: 0 14px 30px rgba(3, 15, 10, 0.14);
}

.hero-proof span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 13px;
  color: #33483a;
  background: rgba(255, 255, 251, 0.62);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.hero-card {
  position: relative;
  min-height: clamp(460px, 48vw, 620px);
  border: 1px solid rgba(255, 255, 251, 0.78);
  border-radius: var(--radius-large);
  background:
    linear-gradient(150deg, rgba(255,255,251,0.94), rgba(222, 234, 217, 0.88)),
    radial-gradient(circle at 75% 16%, rgba(201, 169, 107, 0.28), transparent 18rem);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(65, 95, 73, 0.12);
  border-radius: 14px;
  pointer-events: none;
}

.visual-topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 30px;
  color: var(--muted-foreground);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tooth-visual {
  position: absolute;
  inset: 62px 18px 42px;
  display: grid;
  place-items: center;
}

.tooth-visual svg {
  width: min(88%, 390px);
  filter: drop-shadow(0 28px 34px rgba(65, 95, 73, 0.18));
}

.tooth-shape {
  stroke: rgba(65, 95, 73, 0.42);
  stroke-width: 3;
}

.tooth-line {
  stroke: rgba(65, 95, 73, 0.5);
  stroke-width: 6;
  stroke-linecap: round;
}

.tooth-line.thin {
  stroke-width: 3;
  opacity: 0.62;
}

.orbit {
  stroke: rgba(65, 95, 73, 0.22);
  stroke-width: 2;
  stroke-dasharray: 8 12;
  animation: dash 10s linear infinite;
}

.orbit-two {
  animation-duration: 13s;
  animation-direction: reverse;
}

.floating-panel {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(65, 95, 73, 0.14);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: #26382e;
  background: rgba(255, 255, 251, 0.86);
  box-shadow: 0 20px 45px rgba(32, 54, 41, 0.16);
  backdrop-filter: blur(10px);
}

.panel-one {
  right: 22px;
  bottom: 36px;
  max-width: 245px;
}

.panel-one strong {
  color: var(--primary-deep);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.panel-two {
  left: 24px;
  bottom: 144px;
  max-width: 235px;
  animation: floatPanel 5s ease-in-out infinite;
}

.panel-two svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--primary-deep);
}

.floating-panel span {
  font-size: 0.87rem;
  font-weight: 800;
  line-height: 1.25;
}

.hero-billboard {
  max-width: min(1280px, calc(100vw - 28px));
  margin: clamp(34px, 5vw, 58px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(65, 95, 73, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 251, 0.58);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

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

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

.ticker-group span {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 28px;
  color: var(--primary-deep);
  font-weight: 900;
  white-space: nowrap;
}

.ticker-group span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 20px;
  border-radius: 50%;
  background: var(--accent);
}

.section-heading {
  max-width: var(--container);
  margin: 0 auto clamp(30px, 5vw, 54px);
}

.section-heading.compact {
  max-width: 780px;
  text-align: center;
}

h2 {
  max-width: 820px;
  font-size: clamp(2.35rem, 5vw, 4.85rem);
}

.section-heading.compact h2 {
  margin: 0 auto;
}

.metrics-grid,
.service-grid,
.bento-grid {
  max-width: var(--container);
  margin: 0 auto;
}

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

.metric-card,
.service-card,
.bento-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 251, 0.75);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.magnetic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201, 169, 107, 0.18), transparent 28%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.magnetic-card:hover {
  transform: translateY(-5px);
  border-color: rgba(65, 95, 73, 0.28);
  box-shadow: var(--shadow-soft);
}

.magnetic-card:hover::before {
  opacity: 1;
}

.metric-card {
  min-height: 210px;
  padding: 26px;
}

.metric-number {
  display: block;
  color: var(--primary-deep);
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 8vw, 6rem);
  line-height: 0.85;
}

.metric-card p {
  max-width: 270px;
  margin: 26px 0 0;
  color: var(--muted-foreground);
  font-weight: 700;
}

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.74fr);
  gap: clamp(28px, 7vw, 88px);
  max-width: calc(var(--container) + clamp(40px, 10vw, 112px));
  margin: 0 auto;
}

.editorial-text {
  align-self: end;
  border-left: 2px solid rgba(65, 95, 73, 0.22);
  padding-left: clamp(22px, 4vw, 40px);
  color: var(--muted-foreground);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.editorial-text p {
  margin: 0;
}

.editorial-text p + p {
  margin-top: 18px;
}

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

.service-card {
  min-height: 300px;
  padding: 24px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  color: var(--primary-deep);
  background: rgba(127, 154, 130, 0.13);
}

.service-icon svg {
  width: 27px;
  height: 27px;
}

.service-card h3,
.bento-card h3,
.journey-card h3 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.15;
}

.service-card p,
.bento-card p,
.journey-card p {
  margin: 0;
  color: var(--muted-foreground);
}

.journey {
  --p: 0;
  --wash-a: color-mix(in oklab, #48664f, #7f9a82 calc(var(--p) * 68%));
  --wash-b: color-mix(in oklab, #101f18, #c9a96b calc(var(--p) * 52%));
  background:
    radial-gradient(circle at calc(18% + var(--p) * 56%) 18%, rgba(255, 255, 255, 0.23), transparent 18rem),
    linear-gradient(132deg, var(--wash-a), var(--wash-b));
  color: white;
}

.journey .eyebrow,
.journey h2,
.journey p {
  color: white;
}

.journey-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.9fr);
  gap: clamp(28px, 7vw, 88px);
  max-width: var(--container);
  margin: 0 auto;
}

.journey-sticky {
  position: sticky;
  top: 112px;
  align-self: start;
}

.journey-sticky h2 {
  max-width: 620px;
}

.progress-frame {
  width: min(360px, 100%);
  height: 4px;
  margin: 34px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  overflow: hidden;
}

.progress-line {
  display: block;
  width: calc(var(--p) * 100%);
  height: 100%;
  border-radius: inherit;
  background: white;
}

.journey-steps {
  display: grid;
  gap: 18px;
}

.journey-card {
  min-height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 50px rgba(3, 15, 10, 0.15);
  backdrop-filter: blur(14px);
  transform: scale(0.975);
  transition: background 240ms ease, transform 240ms ease, border-color 240ms ease;
}

.journey-card.active {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1);
}

.journey-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.journey-card h3 {
  color: white;
}

.journey-card p {
  color: rgba(255, 255, 255, 0.84);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
}

.bento-card {
  min-height: 220px;
  padding: 26px;
}

.bento-card.large {
  grid-row: span 2;
  min-height: 456px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255,255,251,0.72), rgba(255,255,251,0.94)),
    radial-gradient(circle at 20% 20%, rgba(127, 154, 130, 0.26), transparent 18rem);
}

.bento-card a {
  width: fit-content;
  margin-top: 24px;
  color: var(--primary-deep);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.visual-bento {
  display: grid;
  place-items: center;
  color: rgba(65, 95, 73, 0.5);
  background: #dfe9db;
}

.visual-bento svg {
  width: 100%;
  min-height: 190px;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(340px, 0.86fr);
  gap: clamp(28px, 7vw, 86px);
  max-width: calc(var(--container) + clamp(40px, 10vw, 112px));
  margin: 0 auto;
}

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

details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 251, 0.76);
  overflow: hidden;
}

summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

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

summary::after {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-right: 2px solid var(--primary-deep);
  border-bottom: 2px solid var(--primary-deep);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

details[open] summary::after {
  transform: rotate(225deg) translateY(-2px);
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted-foreground);
}

.location {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(360px, 1fr);
  align-items: stretch;
  gap: 22px;
  max-width: calc(var(--container) + clamp(40px, 10vw, 112px));
  margin: 0 auto;
}

.location h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
}

.address-card {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 251, 0.78);
  box-shadow: var(--shadow-soft);
  font-style: normal;
}

.address-card a:not(.button),
.site-footer a {
  color: inherit;
  font-weight: 800;
}

.address-card .button {
  width: fit-content;
  margin-top: 8px;
}

.map-frame {
  min-height: 480px;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 458px;
  border-radius: 12px;
}

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

.cta-panel {
  max-width: var(--container);
  margin: 0 auto;
  border-radius: var(--radius-large);
  padding: clamp(30px, 7vw, 76px);
  color: white;
  background:
    radial-gradient(circle at 84% 16%, rgba(201, 169, 107, 0.34), transparent 18rem),
    linear-gradient(135deg, #314838, #789279);
  box-shadow: var(--shadow);
}

.cta-panel h2,
.cta-panel .eyebrow {
  color: white;
}

.cta-panel p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.cta-panel .button {
  margin-top: 12px;
  background: white;
  color: var(--primary-deep);
}

.site-footer {
  padding: 56px clamp(20px, 5vw, 56px) 120px;
  color: rgba(255, 255, 255, 0.8);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.86fr 1fr;
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-brand {
  color: white;
  font-size: 1.05rem;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: white;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer p,
.site-footer address,
.site-footer nav {
  margin: 14px 0 0;
  font-style: normal;
}

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

.site-footer a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer-legal {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

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

.sticky-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 13px 18px;
  color: white;
  background: #315f42;
  box-shadow: 0 16px 38px rgba(14, 54, 34, 0.32);
  font-weight: 900;
  transform: translateY(88px);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease, background 180ms ease;
}

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

.sticky-whatsapp:hover {
  background: #254a34;
}

.sticky-whatsapp svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

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

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

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

@keyframes sheen {
  0%, 50% {
    transform: translateX(0) rotate(18deg);
  }
  72%, 100% {
    transform: translateX(520%) rotate(18deg);
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: -120;
  }
}

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

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    min-height: 70px;
  }

  .brand {
    max-width: calc(100vw - 96px);
  }

  .brand strong {
    display: block;
    max-width: 210px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: inline-block;
    flex: 0 0 auto;
  }

  .main-nav {
    position: fixed;
    inset: 70px 12px auto;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background: rgba(255, 255, 251, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .main-nav a {
    justify-content: center;
  }

  .sticky-whatsapp {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .editorial,
  .journey-shell,
  .faq,
  .location {
    grid-template-columns: 1fr;
  }

  .hero-title {
    max-width: 10ch;
    font-size: clamp(3rem, 8vw, 4.4rem);
  }

  .hero-card {
    min-height: 470px;
  }

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

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

  .bento-card.large {
    grid-column: 1 / -1;
    min-height: 320px;
  }

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

@media (max-width: 680px) {
  .section {
    padding: 66px 18px;
  }

  .hero {
    padding-top: 30px;
  }

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

  .brand small {
    display: none;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.25rem, 8.9vw, 2.75rem);
    line-height: 1.03;
  }

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

  .hero-text {
    max-width: 30ch;
  }

  .rotator-wrap {
    min-width: 4.1em;
  }

  .mobile-title-break {
    display: block;
  }

  .hero-tail,
  .hero-tail span {
    display: block;
  }

  .hero-proof {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button,
  .address-card .button,
  .cta-panel .button {
    width: 100%;
  }

  .hero-proof {
    gap: 8px;
  }

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

  .hero-card {
    min-height: 420px;
  }

  .visual-topline {
    padding: 24px;
  }

  .tooth-visual {
    inset: 62px 0 46px;
  }

  .panel-two {
    left: 16px;
    right: 16px;
    bottom: 116px;
    max-width: none;
  }

  .panel-one {
    left: 16px;
    right: 16px;
    bottom: 22px;
    max-width: none;
  }

  .metrics-grid,
  .service-grid,
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .metric-card,
  .service-card {
    min-height: 210px;
  }

  .editorial-text {
    padding-left: 20px;
  }

  .journey-card {
    min-height: 210px;
  }

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

  .footer-bottom {
    display: grid;
  }

  .sticky-whatsapp {
    display: inline-flex;
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}

@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,
  .sticky-whatsapp {
    opacity: 1;
    transform: none;
  }

  .ticker-track {
    flex-wrap: wrap;
    width: auto;
  }
}
