:root {
  --navy-950: #041722;
  --navy-900: #071e2d;
  --navy-800: #0a2a3d;
  --navy-700: #103b50;
  --teal-500: #2fc6bd;
  --teal-400: #59ded2;
  --cyan-100: #dff9f7;
  --ice: #f1fbfa;
  --white: #ffffff;
  --ink: #102833;
  --muted: #627780;
  --line: rgba(14, 65, 79, 0.14);
  --shadow: 0 30px 80px rgba(4, 28, 40, 0.13);
  --radius-lg: 38px;
  --radius-md: 24px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(7, 30, 45, 0.9);
  box-shadow: 0 10px 35px rgba(2, 17, 25, 0.18);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.brand-mark svg {
  width: 25px;
  fill: none;
  stroke: var(--teal-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--teal-400);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.32em;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 36px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
}

.primary-navigation a {
  position: relative;
  transition: color 0.2s ease;
}

.primary-navigation a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--teal-400);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible,
.primary-navigation a.is-active {
  color: var(--white);
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after,
.primary-navigation a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: var(--white);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--teal-400);
  color: var(--navy-950);
  transform: translateY(-2px);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 150px 0 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 82% 22%, rgba(54, 209, 198, 0.16), transparent 34%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 46%, #0b3447 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, black, transparent 82%);
}

.hero-orb {
  position: absolute;
  border: 1px solid rgba(89, 222, 210, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  width: 530px;
  height: 530px;
  right: -250px;
  bottom: -150px;
}

.hero-orb-two {
  width: 260px;
  height: 260px;
  top: 85px;
  left: -160px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: clamp(60px, 8vw, 118px);
}

.eyebrow {
  margin: 0 0 23px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--teal-400);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3.55rem, 7.2vw, 7.4rem);
  font-weight: 760;
  letter-spacing: -0.07em;
  line-height: 0.83;
}

.hero h1 em {
  color: var(--teal-400);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-name {
  margin: 36px 0 0;
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 750;
}

.hero-intro {
  max-width: 530px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

.hero-actions {
  margin-top: 31px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  min-height: 52px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background-color 0.25s ease;
}

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

.button svg {
  width: 19px;
  fill: currentColor;
}

.button-primary {
  background: var(--teal-400);
  color: var(--navy-950);
  box-shadow: 0 14px 32px rgba(47, 198, 189, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 40px rgba(47, 198, 189, 0.35);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.phone-inline {
  width: fit-content;
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.phone-inline span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--teal-400);
}

.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 590px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 220px 220px 42px 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  box-shadow: 0 42px 90px rgba(0, 8, 14, 0.35);
  overflow: hidden;
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 90px rgba(4, 23, 34, 0.18);
  pointer-events: none;
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.9) contrast(1.03);
}

.visual-label,
.visual-count {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 30, 44, 0.78);
  color: var(--white);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.visual-label {
  right: -24px;
  bottom: 52px;
  padding: 16px 34px 16px 20px;
  display: flex;
  flex-direction: column;
  border-radius: 18px 0 0 18px;
}

.visual-label span {
  color: var(--teal-400);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visual-label strong {
  font-size: 0.95rem;
}

.visual-count {
  top: 70px;
  left: -37px;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.visual-count strong {
  color: var(--teal-400);
  font-size: 1.9rem;
  line-height: 1;
}

.visual-count span {
  margin-top: 5px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-footer {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scroll-line {
  width: 75px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal-400), transparent);
}

.section {
  padding: 118px 0;
}

.treatments {
  position: relative;
  background: var(--ice);
}

.treatments::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: 70px;
  right: -180px;
  border: 1px solid rgba(47, 198, 189, 0.18);
  border-radius: 50%;
}

.section-heading {
  margin-bottom: 55px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.eyebrow-dark {
  color: #168f8b;
}

.section-heading h2,
.professional-copy h2,
.contact-heading h2 {
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  line-height: 0.97;
  letter-spacing: -0.06em;
}

.section-heading > p {
  max-width: 390px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1rem;
}

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

.treatment-card {
  position: relative;
  min-height: 260px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 30px rgba(9, 55, 65, 0.04);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, background-color 0.35s ease;
}

.treatment-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -70px;
  right: -55px;
  border-radius: 50%;
  background: rgba(47, 198, 189, 0.09);
  transition: transform 0.45s var(--ease);
}

.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(9, 55, 65, 0.1);
}

.treatment-card:hover::before {
  transform: scale(1.8);
}

.treatment-card-featured {
  grid-column: span 2;
  background: var(--navy-900);
  color: var(--white);
}

.treatment-card-featured::before {
  background: rgba(89, 222, 210, 0.12);
}

.card-number {
  color: #7b9299;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.treatment-card-featured .card-number {
  color: var(--teal-400);
}

.card-icon {
  width: 64px;
  height: 64px;
  margin: 10px 0 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cyan-100);
  color: var(--navy-700);
}

.card-icon svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.treatment-card-featured .card-icon {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(89, 222, 210, 0.12);
  color: var(--teal-400);
}

.treatment-card h3 {
  max-width: 260px;
  margin: auto 38px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.card-arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #168f8b;
  transition: transform 0.3s var(--ease), background-color 0.3s ease;
}

.treatment-card:hover .card-arrow {
  transform: rotate(45deg);
  background: var(--teal-400);
  color: var(--navy-950);
}

.treatment-card-featured .card-arrow {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--teal-400);
}

.professional {
  background: var(--white);
}

.professional-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(60px, 9vw, 132px);
}

.professional-art {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(89, 222, 210, 0.1), rgba(89, 222, 210, 0)),
    var(--navy-900);
  overflow: hidden;
}

.professional-art::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 27px;
}

.initials {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 7.2rem);
  letter-spacing: -0.08em;
}

.initials::after {
  content: "";
  width: 54px;
  height: 4px;
  display: block;
  margin: 20px auto 0;
  border-radius: 999px;
  background: var(--teal-400);
}

.art-ring {
  position: absolute;
  border: 1px solid rgba(89, 222, 210, 0.18);
  border-radius: 50%;
}

.art-ring-one {
  width: 330px;
  height: 330px;
}

.art-ring-two {
  width: 460px;
  height: 460px;
}

.professional-copy .eyebrow {
  color: #168f8b;
}

.professional-copy h2 {
  max-width: 660px;
  color: var(--navy-900);
}

.role {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.25rem;
}

.professional-line {
  width: 100%;
  height: 1px;
  margin: 38px 0 28px;
  background: var(--line);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy-700);
  font-weight: 850;
}

.text-link span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan-100);
  color: #168f8b;
  transition: transform 0.3s var(--ease), background-color 0.3s ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: rotate(45deg);
  background: var(--teal-400);
}

.contact {
  padding-top: 0;
  background: var(--white);
}

.contact-shell {
  position: relative;
  padding: clamp(48px, 7vw, 88px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(50px, 8vw, 110px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(89, 222, 210, 0.14), transparent 26%),
    var(--navy-900);
  color: var(--white);
  overflow: hidden;
}

.contact-shell::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -160px;
  bottom: -150px;
  border: 1px solid rgba(89, 222, 210, 0.25);
  border-radius: 50%;
}

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

.contact-heading h2 {
  font-size: clamp(2.35rem, 4.8vw, 4.35rem);
}

.contact-details {
  position: relative;
  z-index: 1;
}

.contact-item {
  padding: 0 0 23px;
  margin-bottom: 23px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-label {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-400);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item address {
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.contact-actions {
  padding-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-light {
  background: var(--teal-400);
  color: var(--navy-950);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.23);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.site-footer {
  padding: 42px 0;
  background: var(--navy-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 45px;
}

.brand-footer .brand-mark {
  width: 38px;
  height: 38px;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.77rem;
}

.footer-meta span:first-child {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  font-weight: 700;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--teal-400);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 14px 35px rgba(5, 45, 28, 0.25);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 42px rgba(5, 45, 28, 0.35);
}

.whatsapp-float svg {
  width: 29px;
  fill: currentColor;
}

.back-to-top {
  position: fixed;
  right: 29px;
  bottom: 91px;
  z-index: 89;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(10, 42, 61, 0.13);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 10px 30px rgba(4, 28, 40, 0.14);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero-copy {
  animation: entrance-up 0.78s var(--ease) both;
}

.hero-visual {
  animation: entrance-up 0.9s 0.1s var(--ease) both;
}

@keyframes entrance-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.76fr);
    gap: 50px;
  }

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

  .treatment-card-featured {
    grid-column: span 1;
  }

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

  .footer-nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .header-inner {
    min-height: 76px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    inset: 0;
    z-index: 101;
    padding: 110px 28px 45px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    background: rgba(4, 23, 34, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s var(--ease);
  }

  .primary-navigation.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-navigation a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1.25rem;
  }

  .primary-navigation a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 22px;
    border: 0 !important;
    background: var(--teal-400);
    color: var(--navy-950) !important;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 128px 0 44px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    max-width: 640px;
  }

  .hero-visual {
    width: min(100%, 500px);
    margin-inline: auto;
  }

  .visual-frame {
    aspect-ratio: 5 / 4;
    border-radius: 32px 150px 32px 32px;
  }

  .visual-count {
    top: 35px;
    left: -10px;
  }

  .visual-label {
    right: 0;
  }

  .hero-footer {
    margin-top: 42px;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

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

  .professional-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .professional-art {
    min-height: 390px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-copy strong {
    font-size: 0.84rem;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 18vw, 5.2rem);
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .visual-frame {
    min-height: 410px;
    aspect-ratio: auto;
    border-radius: 28px 120px 28px 28px;
  }

  .visual-count {
    width: 96px;
    height: 96px;
    left: -4px;
  }

  .visual-label {
    bottom: 24px;
  }

  .hero-footer {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

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

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

  .professional-art {
    min-height: 330px;
  }

  .art-ring-one {
    width: 250px;
    height: 250px;
  }

  .art-ring-two {
    width: 350px;
    height: 350px;
  }

  .contact-shell {
    width: 100%;
    padding: 54px 24px;
    border-radius: 0;
  }

  .contact {
    padding-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 25px;
  }

  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
  }

  .back-to-top {
    right: 22px;
    bottom: 83px;
  }
}

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

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

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