@font-face {
  font-family: "Onest";
  src: url("assets/fonts/Onest-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #403e3f;
  --ink-deep: #292728;
  --ink-soft: #5b5758;
  --stone: #b1aa9c;
  --stone-light: #ded8cf;
  --paper: #f7f3ed;
  --paper-deep: #ece5dc;
  --white: #ffffff;
  --rose: #e9bfaf;
  --rose-deep: #8c4f45;
  --bronze: #b89c72;
  --whatsapp: #075e54;
  --display: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --body: "Onest", Arial, sans-serif;
  --page: 1380px;
  --header-height: 94px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

img,
picture,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

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

button {
  border: 0;
}

address {
  font-style: normal;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

::selection {
  background: var(--rose);
  color: var(--ink-deep);
}

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #69362f;
}

.page-shell {
  width: min(calc(100% - 64px), var(--page));
  margin-inline: auto;
}

.section {
  padding-block: clamp(104px, 10vw, 168px);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink-deep);
  font-size: 0.875rem;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
  color: var(--rose-deep);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--rose);
}

.section-intro h2,
.implant-focus h2,
.journey h2,
.cases h2,
.reviews h2,
.location h2,
.closing h2 {
  margin-bottom: 0;
  color: var(--ink-deep);
  font-family: var(--body);
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-intro h2 em,
.implant-focus h2 em,
.journey h2 em,
.cases h2 em,
.reviews h2 em,
.location h2 em,
.closing h2 em {
  color: var(--rose-deep);
  font-family: var(--display);
  font-weight: 400;
}

.section-intro--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: end;
}

.section-intro--split > p {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.75;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 15px 19px 15px 24px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 0.84rem;
  font-weight: 740;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 280ms var(--ease),
    background-color 280ms var(--ease),
    border-color 280ms var(--ease),
    transform 280ms var(--ease);
}

.button svg {
  width: 28px;
  height: 28px;
  padding: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button:hover {
  transform: translateY(-3px);
}

.button--rose {
  background: var(--rose);
  color: var(--ink-deep);
}

.button--rose:hover {
  background: #f2cbbb;
}

.button--light {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.button--light:hover {
  border-color: var(--rose);
  background: var(--rose);
  color: var(--ink-deep);
}

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

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

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 630;
  transition:
    border-color 220ms ease,
    color 220ms ease;
}

.text-link:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.text-link--dark {
  border-color: rgba(41, 39, 40, 0.35);
  color: var(--ink-deep);
}

.text-link--dark:hover {
  border-color: var(--rose-deep);
  color: var(--rose-deep);
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 850ms var(--ease),
    transform 850ms var(--ease);
}

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

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(28, 27, 28, 0.72), rgba(28, 27, 28, 0));
  color: var(--white);
  transition:
    height 300ms var(--ease),
    background-color 300ms ease,
    border-color 300ms ease,
    backdrop-filter 300ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  height: 78px;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(41, 39, 40, 0.94);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  width: min(calc(100% - 64px), var(--page));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.brand {
  display: flex;
  width: 188px;
  height: 80px;
  align-items: center;
  flex: 0 0 auto;
  transition:
    width 300ms var(--ease),
    height 300ms var(--ease);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header.is-scrolled .brand,
.site-header.is-menu-open .brand {
  width: 154px;
  height: 66px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: clamp(32px, 4vw, 68px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 44px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 590;
  letter-spacing: 0.04em;
}

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

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

.nav-cta {
  min-height: 48px;
  padding-block: 10px;
}

.menu-toggle {
  display: none;
  min-width: 54px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-toggle__lines {
  position: relative;
  display: block;
  width: 26px;
  height: 18px;
}

.menu-toggle__lines i {
  position: absolute;
  right: 0;
  width: 26px;
  height: 1px;
  background: currentColor;
  transition:
    top 240ms ease,
    transform 240ms ease;
}

.menu-toggle__lines i:first-child {
  top: 5px;
}

.menu-toggle__lines i:last-child {
  top: 13px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child {
  top: 9px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child {
  top: 9px;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: max(830px, 100svh);
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.hero__texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 3% 12%, rgba(233, 191, 175, 0.14), transparent 28%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 34px 34px;
  opacity: 0.7;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: max(830px, 100svh);
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(38px, 5vw, 84px);
  align-items: center;
  padding-top: calc(var(--header-height) + 36px);
  padding-bottom: 82px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 60px;
}

.hero__title {
  max-width: 760px;
  margin-bottom: 32px;
  color: var(--white);
  font-family: var(--body);
  font-size: clamp(3.4rem, 5.7vw, 6.4rem);
  font-weight: 490;
  letter-spacing: -0.063em;
  line-height: 0.91;
}

.hero__title em {
  display: block;
  margin-top: 12px;
  color: var(--rose);
  font-family: var(--display);
  font-size: 0.82em;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  align-items: center;
}

.hero__proof {
  display: grid;
  max-width: 680px;
  grid-template-columns: repeat(3, 1fr);
  margin: 52px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  list-style: none;
}

.hero__proof li {
  display: grid;
  gap: 5px;
  padding-right: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 570;
  line-height: 1.4;
}

.hero__proof li + li {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.hero__proof span {
  color: var(--rose);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero__visual {
  position: relative;
  width: 100%;
  height: min(76vh, 760px);
  min-height: 590px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%, 0 13%);
}

.hero__visual picture,
.hero__visual img {
  width: 100%;
  height: 100%;
}

.hero__visual img {
  object-fit: cover;
  object-position: 75% 50%;
  transform: scale(1.015);
  transition: transform 1.2s var(--ease);
}

.hero__visual:hover img {
  transform: scale(1.045);
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(27, 25, 26, 0.82)),
    linear-gradient(90deg, rgba(41, 39, 40, 0.12), transparent 40%);
  content: "";
  pointer-events: none;
}

.hero__visual figcaption {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 30px;
  left: 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  line-height: 1.35;
}

.hero__visual figcaption span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__visual figcaption strong {
  max-width: 190px;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 400;
  text-align: right;
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 26px;
  left: 50%;
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll span {
  position: relative;
  width: 1px;
  height: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.hero__scroll span::after {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--rose);
  content: "";
  animation: scroll-line 2.2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    top: -50%;
  }
  55%,
  100% {
    top: 100%;
  }
}

.service-ribbon {
  position: relative;
  z-index: 4;
  display: flex;
  height: 74px;
  align-items: center;
  overflow: hidden;
  background: var(--rose);
  color: var(--ink-deep);
}

.service-ribbon > div {
  display: flex;
  width: max-content;
  align-items: center;
  animation: ribbon 34s linear infinite;
}

.service-ribbon span {
  padding-inline: 28px;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.45vw, 1.45rem);
  font-style: italic;
  white-space: nowrap;
}

.service-ribbon i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink-deep);
}

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

/* Structure */
.structure {
  background:
    linear-gradient(90deg, rgba(177, 170, 156, 0.09) 1px, transparent 1px),
    var(--paper);
  background-size: 12.5% 100%;
}

.structure__main {
  margin-top: clamp(68px, 8vw, 126px);
}

.structure__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(64, 62, 63, 0.25);
  border-bottom: 1px solid rgba(64, 62, 63, 0.25);
}

.structure__facts article {
  display: grid;
  min-height: 228px;
  grid-template-columns: 56px 1fr;
  align-content: center;
  gap: clamp(20px, 2.4vw, 36px);
  padding: clamp(36px, 4.8vw, 66px);
}

.structure__facts article:nth-child(odd) {
  border-right: 1px solid rgba(64, 62, 63, 0.25);
}

.structure__facts article:nth-child(n + 3) {
  border-top: 1px solid rgba(64, 62, 63, 0.25);
}

.fact-number {
  padding-top: 4px;
  color: var(--rose-deep);
  font-size: 0.66rem;
  font-weight: 720;
  letter-spacing: 0.14em;
}

.structure__facts h3 {
  margin-bottom: 9px;
  color: var(--ink-deep);
  font-size: clamp(1.2rem, 1.45vw, 1.5rem);
  font-weight: 590;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.structure__facts p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* Implant focus */
.implant-focus {
  position: relative;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.implant-focus::before {
  position: absolute;
  top: -15vw;
  right: -10vw;
  width: 44vw;
  height: 44vw;
  border: 1px solid rgba(233, 191, 175, 0.12);
  border-radius: 50%;
  content: "";
}

.implant-focus__copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: end;
}

.implant-focus__copy .eyebrow {
  grid-column: 1 / -1;
}

.implant-focus h2 {
  grid-column: 1 / 8;
  color: var(--white);
}

.implant-focus h2 em {
  color: var(--rose);
}

.implant-focus__copy > p {
  grid-column: 9 / -1;
  margin-bottom: 86px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1rem;
  line-height: 1.75;
}

.implant-focus__copy > .button {
  grid-column: 9 / -1;
  grid-row: 3;
  justify-self: start;
  margin-top: -64px;
}

.campaign-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
  aspect-ratio: 1672 / 941;
  margin: clamp(70px, 8vw, 116px) auto 0;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.2);
  clip-path: polygon(4% 0, 100% 0, 100% 100%, 0 100%, 0 12%);
}

.campaign-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.campaign-frame:hover img {
  transform: scale(1.018);
}

/* Treatments */
.treatments {
  background: var(--paper);
}

.treatment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(52px, 7vw, 108px);
  margin-top: clamp(66px, 8vw, 116px);
  border-top: 1px solid rgba(64, 62, 63, 0.2);
}

.treatment {
  display: grid;
  min-height: 180px;
  grid-template-columns: 36px 96px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding-block: 28px;
  border-bottom: 1px solid rgba(64, 62, 63, 0.2);
}

.treatment__number {
  align-self: start;
  padding-top: 6px;
  color: var(--rose-deep);
  font-size: 0.63rem;
  font-weight: 740;
  letter-spacing: 0.13em;
}

.treatment img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  transition:
    transform 420ms var(--ease),
    box-shadow 420ms var(--ease);
}

.treatment:hover img {
  box-shadow: 0 18px 34px rgba(41, 39, 40, 0.14);
  transform: translateY(-5px) rotate(-2deg);
}

.treatment h3 {
  margin-bottom: 8px;
  color: var(--ink-deep);
  font-size: clamp(1.18rem, 1.5vw, 1.52rem);
  font-weight: 620;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.treatment p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.treatments__note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 42px;
}

.treatments__note > p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

/* Journey */
.journey {
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  background: var(--ink-deep);
  color: var(--white);
}

.journey__media {
  position: relative;
  width: min(calc(100% - 64px), 610px);
  aspect-ratio: 1122 / 1402;
  justify-self: end;
  margin: clamp(54px, 6vw, 94px) 0;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.28);
  clip-path: polygon(0 0, 100% 0, 100% 94%, 91% 100%, 0 100%);
}

.journey__media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.journey__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.journey__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 132px) clamp(32px, 6.2vw, 108px);
  border-left: 1px solid rgba(233, 191, 175, 0.24);
}

.journey h2 {
  color: var(--white);
  font-size: clamp(2.8rem, 4.4vw, 5.15rem);
}

.journey h2 em {
  color: var(--rose);
}

.journey__steps {
  margin: clamp(52px, 6vw, 82px) 0 0;
  padding: 0;
  list-style: none;
}

.journey__steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.journey__steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.journey__steps > li > span {
  padding-top: 3px;
  color: var(--rose);
  font-size: 0.65rem;
  font-weight: 720;
  letter-spacing: 0.12em;
}

.journey__steps h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.journey__steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  line-height: 1.6;
}

/* Cases */
.cases {
  overflow: hidden;
  background: var(--paper-deep);
}

.cases__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
}

.cases__header > div:first-child {
  max-width: 980px;
}

.cases__controls {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  padding-bottom: 8px;
}

.cases__controls button {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(64, 62, 63, 0.35);
  border-radius: 50%;
  background: transparent;
  color: var(--ink-deep);
  cursor: pointer;
  transition:
    color 240ms ease,
    background-color 240ms ease,
    transform 240ms var(--ease);
}

.cases__controls button:hover {
  background: var(--ink-deep);
  color: var(--white);
  transform: translateY(-3px);
}

.cases__controls svg,
.case-dialog__controls svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.cases-track {
  display: grid;
  grid-auto-columns: clamp(330px, 37vw, 540px);
  grid-auto-flow: column;
  gap: 22px;
  margin-top: clamp(62px, 7vw, 100px);
  padding: 4px 0 26px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--rose-deep) rgba(64, 62, 63, 0.14);
  scrollbar-width: thin;
  scroll-padding-inline: 2px;
  scroll-snap-type: inline mandatory;
}

.cases-track::-webkit-scrollbar {
  height: 5px;
}

.cases-track::-webkit-scrollbar-track {
  background: rgba(64, 62, 63, 0.14);
}

.cases-track::-webkit-scrollbar-thumb {
  background: var(--rose-deep);
}

.case-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--ink-deep);
  color: var(--white);
  cursor: zoom-in;
  scroll-snap-align: start;
}

.case-card::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(25, 24, 24, 0.82));
  content: "";
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 650ms var(--ease);
}

.case-card:hover img {
  transform: scale(1.025);
}

.case-card > span {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--display);
  font-size: 1.08rem;
  font-style: italic;
}

.case-card > span b {
  color: var(--rose);
  font-family: var(--body);
  font-size: 0.66rem;
  font-style: normal;
  letter-spacing: 0.14em;
}

.cases__disclaimer {
  max-width: 740px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.65;
}

/* Reviews */
.reviews {
  background: var(--rose);
}

.reviews__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(42px, 6vw, 94px);
  align-items: center;
}

.reviews__intro .eyebrow,
.reviews__intro h2 {
  grid-column: 1;
}

.reviews__intro h2 {
  max-width: 960px;
}

.reviews__intro .eyebrow {
  color: var(--ink-deep);
}

.reviews__proof {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  justify-items: center;
  gap: 26px;
}

.reviews__proof > p {
  max-width: 290px;
  margin: 0;
  color: rgba(41, 39, 40, 0.7);
  font-size: 0.82rem;
  line-height: 1.65;
  text-align: center;
}

.rating-seal {
  position: relative;
  display: flex;
  width: clamp(212px, 19vw, 252px);
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 38px;
  background: #f6eee4;
  clip-path: polygon(50% 0%, 56.03% 4.2%, 62.94% 1.7%, 67.68% 7.32%, 75% 6.7%, 78.12% 13.35%, 85.36% 14.64%, 86.65% 21.88%, 93.3% 25%, 92.68% 32.32%, 98.3% 37.06%, 95.8% 43.97%, 100% 50%, 95.8% 56.03%, 98.3% 62.94%, 92.68% 67.68%, 93.3% 75%, 86.65% 78.12%, 85.36% 85.36%, 78.12% 86.65%, 75% 93.3%, 67.68% 92.68%, 62.94% 98.3%, 56.03% 95.8%, 50% 100%, 43.97% 95.8%, 37.06% 98.3%, 32.32% 92.68%, 25% 93.3%, 21.88% 86.65%, 14.64% 85.36%, 13.35% 78.12%, 6.7% 75%, 7.32% 67.68%, 1.7% 62.94%, 4.2% 56.03%, 0% 50%, 4.2% 43.97%, 1.7% 37.06%, 7.32% 32.32%, 6.7% 25%, 13.35% 21.88%, 14.64% 14.64%, 21.88% 13.35%, 25% 6.7%, 32.32% 7.32%, 37.06% 1.7%, 43.97% 4.2%);
  color: var(--ink-deep);
  filter: drop-shadow(0 24px 28px rgba(65, 48, 43, 0.2));
  text-align: center;
  transform: rotate(-3deg);
}

.rating-seal::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(41, 39, 40, 0.52);
  border-radius: 50%;
  content: "";
}

.rating-seal > * {
  position: relative;
  z-index: 1;
}

.rating-seal__google {
  width: 32px;
  height: 32px;
}

.rating-seal__stars {
  color: #8a5600;
  font-size: 1.08rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.rating-seal strong {
  max-width: 152px;
  margin-top: 5px;
  font-size: 0.75rem;
  font-weight: 780;
  letter-spacing: -0.01em;
  line-height: 1.22;
}

.rating-seal > span:last-child {
  max-width: 142px;
  font-size: 0.63rem;
  font-weight: 560;
  line-height: 1.28;
}

.reviews h2 em {
  color: var(--ink-deep);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(68px, 8vw, 112px);
  border-top: 1px solid rgba(41, 39, 40, 0.27);
  border-bottom: 1px solid rgba(41, 39, 40, 0.27);
}

.review {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  margin: 0;
  padding: clamp(34px, 4vw, 58px);
}

.review + .review {
  border-left: 1px solid rgba(41, 39, 40, 0.27);
}

.review__stars {
  margin-bottom: 48px;
  color: var(--ink-deep);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
}

.review blockquote {
  flex: 1;
  margin-bottom: 34px;
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.1vw, 2.15rem);
  font-style: italic;
  line-height: 1.28;
}

.review figcaption {
  color: var(--ink-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.review figcaption span {
  color: rgba(41, 39, 40, 0.58);
  font-weight: 480;
}

/* Location */
.location {
  position: relative;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.location::before {
  position: absolute;
  bottom: -18vw;
  left: -10vw;
  width: 43vw;
  height: 43vw;
  border: 1px solid rgba(233, 191, 175, 0.13);
  border-radius: 50%;
  content: "";
}

.location__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(380px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 7vw, 112px);
  align-items: center;
}

.location h2 {
  margin-bottom: 34px;
  color: var(--white);
  font-size: clamp(3.2rem, 5.1vw, 5.7rem);
}

.location h2 em {
  color: var(--rose);
}

.location__content > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

.location address {
  display: grid;
  gap: 3px;
  padding-block: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.location address span {
  margin-bottom: 7px;
  color: var(--rose);
  font-size: 0.62rem;
  font-weight: 720;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location address strong {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
}

.location address small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 26px;
  align-items: center;
  margin-top: 36px;
}

.location__map {
  position: relative;
  height: 650px;
  overflow: hidden;
  border: 1px solid rgba(233, 191, 175, 0.2);
  background: var(--stone);
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.24);
}

.location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Closing and footer */
.closing {
  position: relative;
  overflow: hidden;
  padding-block: clamp(100px, 10vw, 160px);
  background: var(--rose);
  color: var(--ink-deep);
}

.closing::after {
  position: absolute;
  top: 50%;
  right: -7vw;
  width: 29vw;
  aspect-ratio: 1;
  border: 1px solid rgba(41, 39, 40, 0.22);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.closing__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: end;
}

.closing .eyebrow {
  grid-column: 1 / -1;
  color: var(--ink-deep);
}

.closing h2 {
  grid-column: 1 / 9;
  font-size: clamp(3.1rem, 5.7vw, 6.2rem);
}

.closing h2 em {
  color: var(--ink-deep);
}

.closing__inner > p:not(.eyebrow) {
  grid-column: 1 / 7;
  margin: 24px 0 0;
  color: rgba(41, 39, 40, 0.7);
  font-size: 1rem;
}

.closing .button {
  grid-column: 10 / -1;
  grid-row: 2 / span 2;
  justify-self: end;
  margin-bottom: 6px;
}

.site-footer {
  padding-top: clamp(72px, 8vw, 116px);
  background: #211f20;
  color: var(--white);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.7fr) 0.6fr 0.8fr;
  gap: 54px;
  padding-bottom: 72px;
}

.site-footer__brand img {
  width: 210px;
  height: auto;
  margin-bottom: 25px;
}

.site-footer__brand p {
  max-width: 330px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--display);
  font-size: 1.2rem;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer__column h2 {
  margin-bottom: 16px;
  color: var(--rose);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer__column a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  transition: color 220ms ease;
}

.site-footer__column a:hover {
  color: var(--rose);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.72);
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 11px;
  padding: 11px 18px 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  font-size: 0.77rem;
  font-weight: 760;
  letter-spacing: 0.02em;
  transition:
    transform 280ms var(--ease),
    box-shadow 280ms ease;
}

.floating-whatsapp::before {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: inherit;
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scale(1);
  animation: whatsapp-attention 3.6s var(--ease) infinite;
}

@keyframes whatsapp-attention {
  0%,
  58% {
    opacity: 0;
    transform: scale(1);
  }

  68% {
    opacity: 0.42;
  }

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

@keyframes whatsapp-icon-attention {
  0%,
  58%,
  100% {
    transform: scale(1);
  }

  72% {
    transform: scale(1.12);
  }
}

.floating-whatsapp:hover {
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.floating-whatsapp svg {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: none;
}

/* Case dialog */
.case-dialog {
  width: min(1180px, calc(100% - 48px));
  max-width: none;
  max-height: calc(100dvh - 48px);
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: var(--ink-deep);
}

.case-dialog::backdrop {
  background: rgba(16, 15, 15, 0.88);
  backdrop-filter: blur(10px);
}

.case-dialog[open] {
  animation: dialog-in 320ms var(--ease) both;
}

.case-dialog.is-fallback-open {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 24px;
  place-items: center;
  overflow: auto;
  background: rgba(16, 15, 15, 0.88);
  animation: none;
  transform: none;
}

.case-dialog.is-fallback-open .case-dialog__panel {
  width: min(1180px, 100%);
  animation: dialog-in 320ms var(--ease) both;
}

.case-dialog:not([open]) {
  display: none;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
}

.case-dialog__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.7fr);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.34);
}

.case-dialog__close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink-deep);
  color: var(--white);
  cursor: pointer;
}

.case-dialog__close span {
  position: absolute;
  top: 23px;
  left: 14px;
  width: 20px;
  height: 1px;
  background: currentColor;
}

.case-dialog__close span:first-child {
  transform: rotate(45deg);
}

.case-dialog__close span:last-child {
  transform: rotate(-45deg);
}

.case-dialog__media {
  display: grid;
  min-height: min(76vh, 760px);
  place-items: center;
  background: var(--ink-deep);
}

.case-dialog__media img {
  width: 100%;
  max-height: min(76vh, 760px);
  object-fit: contain;
}

.case-dialog__caption {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 84px 36px 38px;
}

.case-dialog__caption .eyebrow {
  margin-bottom: 18px;
}

.case-dialog__caption h2 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.case-dialog__caption > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.6;
}

.case-dialog__controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(64, 62, 63, 0.22);
}

.case-dialog__controls button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  color: var(--ink-deep);
  font-size: 0.72rem;
  font-weight: 670;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1180px) {
  :root {
    --header-height: 80px;
  }

  .nav-cta {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  }

  .hero__title {
    font-size: clamp(3.25rem, 6.1vw, 5.4rem);
  }

  .journey {
    grid-template-columns: minmax(340px, 0.82fr) minmax(480px, 1.18fr);
  }
}

@media (max-width: 1024px) {
  .brand,
  .menu-toggle {
    position: relative;
    z-index: 2;
  }

  .brand,
  .site-header.is-scrolled .brand,
  .site-header.is-menu-open .brand {
    width: 166px;
    height: 70px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-panel {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    display: flex;
    width: min(520px, 100%);
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 48px;
    padding: 118px 48px 60px;
    background:
      radial-gradient(circle at 100% 0, rgba(233, 191, 175, 0.14), transparent 38%),
      var(--ink-deep);
    box-shadow: -30px 0 80px rgba(0, 0, 0, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition:
      opacity 320ms ease,
      transform 420ms var(--ease);
  }

  .nav-panel.is-open {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links li {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nav-links li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nav-links a {
    min-height: 74px;
    font-family: var(--display);
    font-size: 1.8rem;
    font-weight: 400;
  }

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

  .nav-cta {
    display: inline-flex;
    align-self: flex-start;
  }

  .hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + 72px);
    padding-bottom: 64px;
  }

  .hero__content {
    max-width: 820px;
    padding-block: 42px 0;
  }

  .hero__title {
    font-size: clamp(3.7rem, 8vw, 6rem);
  }

  .hero__visual {
    height: min(72vw, 760px);
    min-height: 560px;
  }

  .hero__visual img {
    object-position: 73% 50%;
  }

  .hero__scroll {
    display: none;
  }

  .implant-focus__copy > p,
  .implant-focus__copy > .button {
    grid-column: 8 / -1;
  }

  .journey {
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .journey__media {
    width: min(calc(100% - 64px), 520px);
    height: auto;
    min-height: 0;
    justify-self: center;
    margin: 0;
  }

  .journey__content {
    border-top: 1px solid rgba(233, 191, 175, 0.24);
    border-left: 0;
  }

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

  .journey__steps li,
  .journey__steps li:last-child {
    grid-template-columns: 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .review {
    min-height: 0;
  }

  .review + .review {
    border-top: 1px solid rgba(41, 39, 40, 0.27);
    border-left: 0;
  }

  .review__stars {
    margin-bottom: 28px;
  }

  .review blockquote {
    max-width: 760px;
  }

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

  .location__content {
    max-width: 760px;
  }

  .location__map {
    height: 580px;
  }

  .closing h2 {
    grid-column: 1 / 10;
  }

  .closing .button {
    grid-column: 9 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 74px;
  }

  .page-shell,
  .nav-shell {
    width: min(calc(100% - 32px), var(--page));
  }

  .section {
    padding-block: 94px;
  }

  .brand,
  .site-header.is-scrolled .brand,
  .site-header.is-menu-open .brand {
    width: 142px;
    height: 62px;
  }

  .menu-toggle__label {
    display: none;
  }

  .nav-panel {
    width: 100%;
    padding-inline: 28px;
  }

  .section-intro--split,
  .reviews__intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-intro h2,
  .implant-focus h2,
  .journey h2,
  .cases h2,
  .reviews h2,
  .location h2,
  .closing h2 {
    font-size: clamp(2.65rem, 12vw, 4.2rem);
  }

  .hero__grid {
    gap: 52px;
    padding-top: calc(var(--header-height) + 52px);
    padding-bottom: 0;
  }

  .hero__content {
    padding-top: 36px;
  }

  .hero__title {
    font-size: clamp(3.1rem, 14vw, 4.5rem);
    line-height: 0.94;
  }

  .hero__title em {
    margin-top: 10px;
    font-size: 0.78em;
  }

  .hero__lead {
    font-size: 0.98rem;
  }

  .hero__actions {
    align-items: stretch;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    justify-content: space-between;
  }

  .hero__proof {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
  }

  .hero__proof li,
  .hero__proof li + li {
    min-height: 54px;
    grid-template-columns: 34px 1fr;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .hero__proof li:first-child {
    border-top: 0;
  }

  .hero__visual {
    width: calc(100% + 32px);
    height: min(142vw, 780px);
    min-height: 590px;
    margin-left: -16px;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 8%);
  }

  .hero__visual img {
    object-position: center;
  }

  .hero__visual figcaption {
    right: 20px;
    bottom: 22px;
    left: 20px;
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .hero__visual figcaption strong {
    text-align: left;
  }

  .service-ribbon {
    height: 62px;
  }

  .structure {
    background-size: 25% 100%;
  }

  .structure__main {
    margin-top: 64px;
  }

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

  .structure__facts article {
    min-height: 0;
    grid-template-columns: 42px 1fr;
    padding: 34px 0;
    border-right: 0;
  }

  .structure__facts article:nth-child(odd) {
    border-right: 0;
  }

  .structure__facts article:nth-child(n + 2) {
    border-top: 1px solid rgba(64, 62, 63, 0.25);
  }

  .implant-focus__copy {
    grid-template-columns: 1fr;
  }

  .implant-focus__copy .eyebrow,
  .implant-focus h2,
  .implant-focus__copy > p,
  .implant-focus__copy > .button {
    grid-column: 1;
  }

  .implant-focus__copy > p {
    margin: 22px 0 8px;
  }

  .implant-focus__copy > .button {
    grid-row: auto;
    margin-top: 14px;
  }

  .campaign-frame {
    width: 100%;
    margin-left: auto;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 7%);
  }

  .campaign-frame img {
    width: 100%;
  }

  .treatment-list {
    grid-template-columns: 1fr;
    margin-top: 62px;
  }

  .treatment {
    min-height: 150px;
    grid-template-columns: 30px 72px minmax(0, 1fr);
    gap: 14px;
    padding-block: 24px;
  }

  .treatment img {
    width: 68px;
    height: 68px;
  }

  .treatments__note {
    align-items: flex-start;
    flex-direction: column;
  }

  .journey__media {
    width: calc(100% - 32px);
    height: auto;
    min-height: 0;
    max-width: 560px;
    aspect-ratio: 1122 / 1402;
  }

  .journey__content {
    padding: 86px 24px;
  }

  .journey__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .journey__steps li,
  .journey__steps li:last-child {
    grid-template-columns: 38px 1fr;
  }

  .cases__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .cases__controls {
    align-self: flex-end;
  }

  .cases-track {
    grid-auto-columns: 86vw;
    margin-right: -16px;
  }

  .reviews__intro .eyebrow,
  .reviews__intro h2,
  .reviews__proof {
    grid-column: 1;
    grid-row: auto;
  }

  .reviews__proof {
    margin-top: 18px;
  }

  .reviews__grid {
    margin-top: 62px;
  }

  .review {
    padding: 36px 0;
  }

  .location__grid {
    gap: 62px;
  }

  .location__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .location__actions .button {
    width: 100%;
  }

  .location__actions .text-link {
    justify-content: space-between;
  }

  .location__map {
    width: 100%;
    height: 480px;
    margin-left: 0;
  }

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

  .closing .eyebrow,
  .closing h2,
  .closing__inner > p:not(.eyebrow),
  .closing .button {
    grid-column: 1;
    grid-row: auto;
  }

  .closing .button {
    width: 100%;
    justify-self: stretch;
    margin-top: 20px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
  }

  .case-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
  }

  .case-dialog__panel {
    max-height: calc(100dvh - 20px);
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .case-dialog__media {
    min-height: 0;
  }

  .case-dialog__media img {
    max-height: 58dvh;
  }

  .case-dialog__caption {
    padding: 28px 24px 26px;
  }

  .case-dialog__close {
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 480px) {
  body {
    padding-bottom: 72px;
  }

  .hero__title {
    font-size: clamp(2.82rem, 13.8vw, 3.7rem);
  }

  .button {
    min-height: 56px;
    gap: 14px;
    padding-inline: 18px 14px;
    font-size: 0.76rem;
  }

  .treatment {
    grid-template-columns: 26px 60px minmax(0, 1fr);
    gap: 11px;
  }

  .treatment img {
    width: 58px;
    height: 58px;
  }

  .treatment p {
    font-size: 0.83rem;
  }

  .journey__content {
    padding-inline: 16px;
  }

  .location__map {
    height: 440px;
  }

  .floating-whatsapp {
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 64px;
    justify-content: center;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }

  .floating-whatsapp::before {
    display: none;
  }

  .floating-whatsapp svg {
    animation: whatsapp-icon-attention 3.6s var(--ease) infinite;
  }

  .case-dialog__media img {
    max-height: 52dvh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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