:root {
  --ink: #132522;
  --muted: #5d6f6b;
  --paper: #fbfcfa;
  --panel: #ffffff;
  --line: #dbe7e2;
  --mint: #b9ded7;
  --teal: #0f7b75;
  --teal-dark: #075650;
  --coral: #d87a64;
  --gold: #b28b4d;
  --shadow: 0 24px 70px rgba(19, 37, 34, 0.12);
  --radius: 8px;
  --max: 1180px;
  --header-height: 110px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-weight: 740;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.45rem, 5vw, 5rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  max-width: 16ch;
}

h3 {
  font-size: 1.25rem;
}

address {
  font-style: normal;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem max(1.25rem, calc((100vw - var(--max)) / 2));
  color: #ecf7f4;
  background: var(--teal-dark);
  font-size: 0.92rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 252, 250, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219, 231, 226, 0.85);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.95rem 1.25rem;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 156px;
  height: auto;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-menu a {
  padding: 0.72rem 0.82rem;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 680;
  font-size: 0.96rem;
}

.site-menu a:hover,
.site-menu a[aria-current="page"] {
  color: var(--teal-dark);
  background: #edf7f4;
}

.site-menu .lang-switch {
  color: var(--gold);
}

.site-menu .nav-cta {
  margin-left: 0.35rem;
  color: #fff;
  background: var(--teal);
}

.site-menu .nav-cta:hover {
  color: #fff;
  background: var(--teal-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 46px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 45, 42, 0.86), rgba(9, 45, 42, 0.45) 48%, rgba(9, 45, 42, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 4rem 0 5rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 650px;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: #eef8f5;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  color: #fff;
  background: var(--teal);
  font-weight: 800;
  cursor: pointer;
}

.button:hover {
  background: var(--teal-dark);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.button.dark {
  background: var(--ink);
  border-color: var(--ink);
}

.text-link {
  display: inline-flex;
  margin-top: 0.6rem;
  color: var(--teal-dark);
  font-weight: 800;
  border-bottom: 2px solid var(--mint);
}

.intro-grid,
.section,
.split-section,
.faq,
.contact-layout,
.legal-page,
.cta-band,
.page-hero {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  padding: 5rem 0 3rem;
}

.intro-grid p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.stat-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1rem;
  align-self: start;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.stat-list strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
}

.stat-list span {
  color: var(--muted);
}

.section {
  padding: 4.5rem 0;
}

.section.soft {
  width: 100%;
  max-width: none;
  padding-inline: max(1.25rem, calc((100vw - var(--max)) / 2));
  background: #eef7f4;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-grid,
.values,
.urgent-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card,
.values article,
.urgent-grid article,
.steps article,
.contact-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.service-card {
  min-height: 230px;
}

.service-card p,
.values p,
.urgent-grid p,
.steps p,
.faq p,
.legal-page p {
  color: var(--muted);
}

.tooth-icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  background: var(--mint);
  clip-path: path("M19 2C11 2 6 8 7 17c1 8 4 17 8 17 2 0 2-6 4-6s2 6 4 6c4 0 7-9 8-17C32 8 27 2 19 2Z");
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
  padding: 4.5rem 0;
}

.split-section p {
  color: var(--muted);
}

.framed-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.framed-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.before-after {
  position: relative;
  --compare-width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dce6e2;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 8;
  touch-action: pan-y;
}

.before-after > img,
.before-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-layer {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  border-right: 3px solid #fff;
}

.before-layer img {
  width: var(--compare-width);
  min-width: var(--compare-width);
  max-width: none;
  height: 100%;
}

.before-after input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.before-after .label {
  position: absolute;
  top: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(19, 37, 34, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
}

.before-after .before {
  left: 1rem;
}

.before-after .after {
  right: 1rem;
}

.steps article span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--coral);
  font-weight: 900;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
  padding: 2rem;
  border-radius: var(--radius);
  color: #fff;
  background: var(--teal-dark);
}

.cta-band h2 {
  max-width: none;
}

.cta-band p {
  max-width: 760px;
  color: #e7f5f1;
}

.page-hero {
  padding: 5rem 0 3rem;
}

.page-hero.compact {
  max-width: 930px;
}

.page-hero.urgent {
  padding: 4.5rem 1.5rem 3rem;
  margin-top: 2rem;
  border-radius: var(--radius);
  background: #fff3ef;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.15rem;
}

.faq {
  padding: 1rem 0 4.5rem;
}

.faq h2 {
  margin-bottom: 1.5rem;
}

details {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

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

summary {
  cursor: pointer;
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 1.7rem;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--teal);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
  padding: 2rem 0 5rem;
}

.contact-card {
  align-self: start;
  box-shadow: var(--shadow);
}

.contact-card a,
.site-footer a,
.legal-page a {
  color: var(--teal-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd9d4;
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.legal-page {
  max-width: 860px;
  padding: 5rem 0;
}

.legal-page h1 {
  margin-bottom: 1.5rem;
}

.legal-page h2 {
  margin-top: 2rem;
  font-size: 1.45rem;
}

.site-footer {
  padding: 3rem max(1.25rem, calc((100vw - var(--max)) / 2)) 1.4rem;
  color: #eaf4f1;
  background: #102a27;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 0.85fr;
  gap: 2rem;
}

.site-footer img {
  filter: brightness(0) invert(1);
}

.site-footer h2 {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.site-footer p,
.site-footer li,
.site-footer address {
  color: #c5d8d3;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--blue-soft);
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #b8cbc6;
  font-size: 0.92rem;
}

.cookie-banner {
  position: fixed;
  left: auto;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: none;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0.9rem;
  width: min(420px, calc(100vw - 2rem));
  max-width: 420px;
  margin: 0;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: grid;
}

.menu-open .cookie-banner.is-visible {
  display: none;
}

.cookie-banner p {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
}

.cookie-actions button {
  min-height: 44px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 980px) {
  h1 {
    font-size: clamp(2.35rem, 9vw, 4rem);
  }

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

  .site-menu {
    position: fixed;
    top: 113px;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 1rem 1.25rem 1.4rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .menu-open .site-menu {
    display: grid;
  }

  .site-menu a {
    padding: 0.95rem 0.75rem;
  }

  .site-menu .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .intro-grid,
  .split-section,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .values,
  .urgent-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head {
    display: block;
  }
}

@media (max-width: 680px) {
  .topbar {
    display: none;
  }

  .site-menu {
    top: 78px;
  }

  .navbar {
    padding: 0.8rem 1rem;
  }

  .brand img {
    width: 142px;
  }

  .hero {
    min-height: calc(100vh - 78px);
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(9, 45, 42, 0.72), rgba(9, 45, 42, 0.9));
  }

  .hero-content {
    width: min(100% - 2rem, var(--max));
    min-height: calc(100vh - 78px);
    padding-top: 2rem;
  }

  .actions,
  .cta-band,
  .footer-bottom,
  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .intro-grid,
  .section,
  .split-section,
  .faq,
  .contact-layout,
  .legal-page,
  .page-hero {
    width: min(100% - 2rem, var(--max));
  }

  .service-grid,
  .values,
  .urgent-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .before-after {
    aspect-ratio: 4 / 3;
  }

  .cta-band {
    width: min(100% - 2rem, var(--max));
    padding: 1.3rem;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    left: 1rem;
    right: 1rem;
    width: auto;
    max-width: none;
    padding: 0.75rem;
    gap: 0.7rem;
  }

  .cookie-banner p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .cookie-actions button {
    flex: 1;
    min-height: 42px;
    padding: 0.6rem 0.75rem;
  }
}

/* Static copy of the current DottiSmile one-page canvas */
.current-intro {
  padding: 6rem max(1.25rem, calc((100vw - 980px) / 2)) 5rem;
  text-align: center;
  color: #fff;
  background: #9bcfe0;
}

.current-intro h2 {
  max-width: 820px;
  margin: 0 auto 1.4rem;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 1;
}

.current-intro p {
  max-width: 720px;
  margin: 0 auto;
  color: #11273c;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  font-style: italic;
}

.current-care {
  padding: 5rem max(1rem, calc((100vw - 1320px) / 2));
  background: #9bcfe0;
}

.current-care > h2 {
  margin: 0 auto 2rem;
  color: #fff;
  text-align: center;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 900;
}

.current-care .service-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.25rem 0.15rem 1rem;
}

.current-care .service-grid::-webkit-scrollbar {
  display: none;
}

.service-slider {
  position: relative;
}

.slider-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  color: #11273c;
  background: #fff;
  box-shadow: 0 16px 36px rgba(17, 39, 60, 0.18);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.slider-nav.prev {
  left: -1.4rem;
}

.slider-nav.next {
  right: -1.4rem;
}

.current-care .service-card {
  flex: 0 0 calc((100% - 3.6rem) / 4.6);
  scroll-snap-align: center;
  min-height: 345px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.55rem;
  text-align: center;
  background: #e9eff9;
  border-radius: 8px;
  box-shadow: none;
}

.current-care a.service-card {
  color: inherit;
  text-decoration: none;
}

.current-care a.service-card:focus-visible {
  outline: 4px solid #fff;
  outline-offset: 4px;
}

.current-care .service-card::before {
  display: none;
}

.care-icon {
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin-bottom: 1.55rem;
}

.current-care .service-card h3 {
  color: #11273c;
  font-size: 1.18rem;
  font-weight: 900;
}

.current-care .service-card p {
  max-width: 290px;
  margin: 1rem auto 0;
  color: #11273c;
  font-size: 1.02rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.35;
}

.current-rehab,
.current-results,
.current-rdv,
.current-address,
.current-social {
  padding: 5rem max(1.25rem, calc((100vw - 1180px) / 2));
  text-align: center;
}

.current-rehab {
  color: #fff;
  background: #11273c;
}

.current-results {
  padding-right: max(1.25rem, calc((100vw - 1440px) / 2));
  padding-left: max(1.25rem, calc((100vw - 1440px) / 2));
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: stretch;
  color: #11273c;
  background: #fff;
  text-align: center;
}

.current-results > div:first-child {
  max-width: 980px;
  margin: 0 auto;
}

.current-rehab h2,
.current-results h2,
.current-rdv h2,
.current-address h2,
.current-social h2 {
  max-width: none;
  margin: 0 auto 1.2rem;
  font-size: clamp(2.45rem, 5vw, 5.4rem);
  font-weight: 900;
}

.current-rehab p,
.current-results p,
.current-rdv p,
.current-address p {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 700;
  line-height: 1.45;
}

.current-results .before-after {
  box-shadow: 0 24px 70px rgba(17, 39, 60, 0.16);
}

.results-carousel {
  position: relative;
  display: grid;
  gap: 0.9rem;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.results-gallery {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding: 0.4rem 0.1rem 1.2rem;
}

.results-gallery .before-after {
  flex: 0 0 min(100%, 1120px);
  scroll-snap-align: center;
  aspect-ratio: 16 / 9;
  box-shadow: 0 22px 58px rgba(17, 39, 60, 0.14);
}

.results-nav {
  position: absolute;
  top: calc(50% - 1.1rem);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  color: #11273c;
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 39, 60, 0.18);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.results-nav.prev {
  left: -1rem;
}

.results-nav.next {
  right: -1rem;
}

.results-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  padding: 0 2.6rem;
}

.results-dots button {
  width: 9px;
  height: 9px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 39, 60, 0.26);
  cursor: pointer;
}

.results-dots button.is-active {
  width: 22px;
  background: #11273c;
}

.current-rdv {
  background: #fff;
  color: #11273c;
}

.map-frame {
  overflow: hidden;
  width: min(100%, 860px);
  margin: 2rem auto 0;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(280px, 42vw, 430px);
  border: 0;
}

.map-frame.compact iframe {
  height: 260px;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.icon-button span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #11273c;
  background: #fff;
  font-weight: 900;
  line-height: 1;
}

.icon-button.google span {
  font-family: Arial, sans-serif;
}

.current-rdv a {
  display: inline-block;
  margin: 0.4rem 0 1.3rem;
  color: #11273c;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 900;
}

.current-team {
  display: grid;
  grid-template-columns: minmax(260px, 430px) 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem max(1.25rem, calc((100vw - 1040px) / 2));
  color: #11273c;
  background: #e9eff9;
}

.current-team img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.current-team h2 {
  max-width: none;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
}

.current-team h3 {
  margin: 0.5rem 0 1rem;
  font-size: 1.7rem;
  color: #11273c;
}

.current-team p {
  margin: 0.25rem 0;
  color: #11273c;
  font-size: 1.1rem;
  font-weight: 700;
}

.current-address {
  color: #fff;
  background: #11273c;
}

.current-social {
  background: #9bcfe0;
  color: #11273c;
}

@media (max-width: 880px) {
  .current-care .service-grid {
    gap: 1rem;
  }

  .current-care .service-card {
    flex-basis: 72%;
    min-height: 390px;
  }

  .slider-nav {
    display: none;
  }

  .slider-nav.prev {
    left: 0.3rem;
  }

  .slider-nav.next {
    right: 0.3rem;
  }

  .current-results {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .results-gallery .before-after {
    flex-basis: min(100%, 680px);
  }

  .results-gallery {
    overflow-x: hidden;
    touch-action: pan-y;
  }

  .before-after input {
    pointer-events: none;
  }

  .results-nav {
    top: calc(50% - 1.3rem);
    width: 38px;
    height: 38px;
  }

  .results-nav.prev {
    left: 0.35rem;
  }

  .results-nav.next {
    right: 0.35rem;
  }

  .results-dots {
    padding: 0 1rem;
  }

  .current-team {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* DottiSmile premium skin aligned with the current WordPress visual system */
:root {
  --ink: #11273c;
  --navy: #11273c;
  --navy-deep: #07182a;
  --blue-soft: #91c7dc;
  --blue-pale: #e9eff9;
  --paper: #f7f9fc;
  --panel: #ffffff;
  --muted: #69727d;
  --line: rgba(17, 39, 60, 0.12);
  --gold: #d7c7a4;
  --teal: #11273c;
  --teal-dark: #07182a;
  --shadow: 0 28px 90px rgba(17, 39, 60, 0.16);
}

body {
  font-family: Poppins, "Avenir Next", "Segoe UI", system-ui, sans-serif;
  background: var(--paper);
}

.topbar {
  display: none;
}

.site-header {
  position: sticky;
  background: var(--navy);
  border: 0;
  box-shadow: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  z-index: -1;
  height: 52px;
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 100% 38%, 0 100%);
}

.navbar {
  max-width: 1220px;
  height: var(--header-height);
  min-height: 0;
  padding: 1.05rem 2rem 1.35rem;
}

.brand img {
  width: 132px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-menu {
  gap: clamp(0.75rem, 1.4vw, 1.35rem);
}

.site-menu a {
  color: #fff;
  background: transparent;
  border-radius: 0;
  padding: 0.45rem 0.05rem;
  font-size: clamp(0.84rem, 1vw, 1.02rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.site-menu a:hover,
.site-menu a[aria-current="page"] {
  color: #fff;
  background: transparent;
}

.site-menu a[aria-current="page"] {
  color: var(--blue-soft);
  border-bottom: 4px solid var(--blue-soft);
}

.site-menu .lang-switch {
  color: #fff;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.site-menu .lang-switch::before {
  content: "🇧🇪 ";
  font-size: 0.72em;
}

.site-menu .nav-cta {
  margin-left: 0.2rem;
  color: var(--navy);
  background: #fff;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font-size: 1rem;
  white-space: nowrap;
}

.site-menu .nav-cta:hover {
  color: var(--navy);
  background: var(--blue-soft);
}

.menu-toggle {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  background: #fff;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  background: var(--navy);
}

.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  opacity: 0;
  transform: scale(1.06);
  animation: heroFade 30s infinite;
  animation-delay: calc(var(--slide) * 5s);
}

.hero-slides img:first-child {
  opacity: 1;
  animation-name: heroFirstFade;
}

.hero::after {
  background:
    linear-gradient(180deg, rgba(17, 39, 60, 0.18), rgba(17, 39, 60, 0.62)),
    linear-gradient(90deg, rgba(17, 39, 60, 0.78), rgba(17, 39, 60, 0.28) 52%, rgba(17, 39, 60, 0.5));
}

.hero-collage {
  position: absolute;
  right: max(1.4rem, calc((100vw - 1180px) / 2));
  top: 50%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(36vw, 470px);
  transform: translateY(-50%) rotate(-2deg);
}

.hero-collage img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
}

.hero-collage img:nth-child(2),
.hero-collage img:nth-child(3) {
  transform: translateY(1.6rem);
}

.hero-content {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: calc(100vh - var(--header-height));
  width: min(1180px, calc(100% - 3rem));
  padding: 3rem 0;
  text-align: left;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero img.hero-logo {
  position: relative;
  inset: auto;
  display: block;
  width: min(44vw, 430px);
  height: auto;
  max-width: 100%;
  margin: 0 0 1.35rem;
  object-fit: contain;
  filter: drop-shadow(0 22px 54px rgba(0, 0, 0, 0.34));
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  color: #fff;
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  font-weight: 900;
  line-height: 0.92;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.hero-content p {
  max-width: 600px;
  margin: 1.25rem 0 0;
  color: #fff;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 800;
  line-height: 1.45;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.36);
}

@keyframes heroFade {
  0%,
  12% {
    opacity: 0;
    transform: scale(1.06);
  }

  18%,
  30% {
    opacity: 1;
    transform: scale(1.12);
  }

  38%,
  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

@keyframes heroFirstFade {
  0%,
  30% {
    opacity: 1;
    transform: scale(1.08);
  }

  38%,
  94% {
    opacity: 0;
    transform: scale(1.16);
  }

  100% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.opening {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: end;
  width: min(var(--max), calc(100% - 2.5rem));
  margin: -3.2rem auto 0;
  padding: 2.2rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.opening h2 {
  max-width: 13ch;
  color: var(--navy);
  font-family: "Noto Sans", Poppins, system-ui, sans-serif;
  font-weight: 300;
}

.opening p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  color: var(--blue-soft);
}

.actions {
  justify-content: flex-start;
  margin-top: 1.35rem;
}

.button {
  border-color: #fff;
  color: var(--navy);
  background: #fff;
  border-radius: 999px;
  font-weight: 900;
}

.button:hover {
  color: var(--navy);
  background: var(--blue-soft);
}

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button.outline {
  color: var(--navy);
  background: transparent;
  border-color: rgba(17, 39, 60, 0.22);
}

.button.dark {
  color: #fff;
  background: var(--navy);
}

.intro-grid {
  padding-top: 4.5rem;
}

.intro-grid h2,
.section-head h2,
.split-section h2,
.cta-band h2,
.page-hero h1 {
  color: var(--navy);
  font-weight: 900;
}

.stat-list {
  border: 0;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}

.stat-list strong {
  color: var(--blue-soft);
}

.stat-list span {
  color: rgba(255, 255, 255, 0.84);
}

.section.soft {
  background: var(--blue-pale);
}

.service-card,
.values article,
.urgent-grid article,
.steps article,
.contact-card,
.contact-form {
  border: 0;
  box-shadow: 0 18px 50px rgba(17, 39, 60, 0.08);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--blue-soft);
}

.tooth-icon {
  background: var(--navy);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.team-grid article {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 39, 60, 0.08);
}

.team-grid img {
  width: 170px;
  height: 170px;
  border-radius: 8px;
  object-fit: cover;
}

.team-grid p {
  color: var(--muted);
}

.framed-media {
  border-radius: 8px;
}

.cta-band,
.site-footer {
  background: var(--navy);
}

.site-footer img {
  filter: brightness(0) invert(1);
}

.before-after {
  border-radius: 8px;
}

@media (max-width: 980px) {
  :root {
    --header-height: 96px;
  }

  .site-header::after {
    bottom: -18px;
    height: 34px;
  }

  .navbar {
    height: var(--header-height);
    min-height: 0;
  }

  .site-menu {
    top: var(--header-height);
    background: var(--navy);
    border-bottom: 0;
  }

  .site-menu a {
    font-size: 1.35rem;
    color: #fff;
  }

  .site-menu .nav-cta {
    color: var(--navy);
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 104px;
  }

  .navbar {
    height: var(--header-height);
    min-height: 0;
  }

  .brand img {
    width: 142px;
  }

  .site-menu {
    top: var(--header-height);
  }

  .hero {
    min-height: calc(100vh - var(--header-height));
  }

  .hero-content {
    min-height: calc(100vh - var(--header-height));
    width: min(100% - 2rem, var(--max));
    padding: 2rem 0;
  }

  .hero img.hero-logo {
    width: min(78vw, 340px);
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .hero-content p {
    max-width: 22rem;
    font-size: 1rem;
  }

  .hero-collage {
    right: 1rem;
    top: 50%;
    bottom: auto;
    width: min(50vw, 240px);
    gap: 0.45rem;
    opacity: 0.9;
    transform: translateY(-50%) rotate(-2deg);
  }

  .opening {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: min(100% - 2rem, var(--max));
    margin-top: -2.4rem;
    padding: 1.2rem;
  }

  .opening h2 {
    max-width: none;
    font-size: 2rem;
  }

  .team-grid,
  .team-grid article {
    grid-template-columns: 1fr;
  }

  .team-grid img {
    width: 100%;
    height: 260px;
  }
}
