:root {
  --brand-950: #052f2e;
  --brand-900: #073f3d;
  --brand-800: #09534f;
  --brand-700: #0b655e;
  --brand-600: #0d756b;
  --brand-100: #dff2ee;
  --brand-50: #eff9f7;
  --mint: #83d6c7;
  --warm: #f5eee5;
  --ink-950: #102725;
  --ink-800: #24423f;
  --ink-700: #3b5653;
  --ink-500: #627774;
  --line: #d9e5e2;
  --surface: #ffffff;
  --surface-soft: #f7faf9;
  --shadow-sm: 0 12px 30px rgba(5, 47, 46, 0.08);
  --shadow-md: 0 24px 60px rgba(5, 47, 46, 0.15);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --header-offset: 120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink-950);
  background: var(--surface);
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

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

address {
  font-style: normal;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink-950);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  margin-bottom: 1.45rem;
  font-size: clamp(2.65rem, 5.2vw, 4.9rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 4vw, 3.55rem);
}

h3 {
  font-size: 1.3rem;
}

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

.section {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--brand-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  color: #fff;
  background: var(--brand-950);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid #e4a13a;
  outline-offset: 4px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary,
.button-small {
  color: #fff;
  background: var(--brand-900);
  box-shadow: 0 10px 24px rgba(7, 63, 61, 0.18);
}

.button-primary:hover,
.button-small:hover {
  background: var(--brand-950);
  box-shadow: 0 14px 30px rgba(7, 63, 61, 0.24);
}

.button-secondary {
  border-color: #91aaa6;
  color: var(--brand-900);
  background: #fff;
}

.button-secondary:hover {
  border-color: var(--brand-700);
  background: var(--brand-50);
}

.button-light {
  color: var(--brand-950);
  background: #fff;
}

.button-light:hover {
  background: var(--brand-100);
}

.button-small {
  min-height: 44px;
  padding-inline: 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(5, 47, 46, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 32px rgba(5, 47, 46, 0.1);
}

.header-meta {
  color: #fff;
  background: var(--brand-950);
  font-size: 0.78rem;
  letter-spacing: 0.015em;
}

.header-meta-inner {
  display: flex;
  min-height: 35px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-meta a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 3px;
}

.nav-row {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2rem);
  margin-left: auto;
  color: var(--ink-800);
  font-size: 0.92rem;
  font-weight: 650;
}

.desktop-nav a,
.site-footer nav a,
.footer-contact a {
  text-underline-offset: 5px;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--brand-700);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  min-width: 70px;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-900);
  font-weight: 750;
  cursor: pointer;
  list-style-position: inside;
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 0.85rem);
  right: 0;
  display: grid;
  width: min(320px, calc(100vw - 2rem));
  gap: 0.3rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.mobile-menu-panel > a:not(.button) {
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
  color: var(--ink-800);
  font-weight: 650;
}

.mobile-menu-panel > a:not(.button):hover {
  color: var(--brand-900);
  background: var(--brand-50);
}

.mobile-menu-panel .button {
  margin-top: 0.5rem;
  color: #fff;
  background: var(--brand-900);
}

.hero {
  position: relative;
  display: flex;
  min-height: min(790px, calc(100svh - 115px));
  align-items: center;
  padding-block: clamp(4.5rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 12% 12%, rgba(131, 214, 199, 0.24), transparent 34%),
    radial-gradient(circle at 95% 90%, rgba(236, 211, 178, 0.28), transparent 34%),
    linear-gradient(135deg, #f4fbf9 0%, #fff 56%, #fbf7f1 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6.5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 720px;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 2rem;
  color: var(--ink-700);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.25rem;
}

.hero-facts {
  display: grid;
  max-width: 610px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  display: grid;
  gap: 0.05rem;
  padding-inline: 1rem;
  border-left: 1px solid var(--line);
}

.hero-facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts strong {
  color: var(--brand-900);
  font-size: 1rem;
}

.hero-facts span {
  color: var(--ink-500);
  font-size: 0.82rem;
}

.hero-media {
  position: relative;
  min-width: 0;
  padding-bottom: 1.75rem;
}

.hero-media picture {
  display: block;
  height: clamp(480px, 49vw, 640px);
  max-height: 640px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.location-card {
  position: absolute;
  right: -1.4rem;
  bottom: 0;
  display: grid;
  width: min(330px, 78%);
  gap: 0.05rem;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink-950);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease;
}

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

.location-card span {
  color: var(--brand-700);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-card strong {
  font-size: 1rem;
}

.location-card small {
  color: var(--ink-500);
}

.treatments-strip {
  color: #fff;
  background: var(--brand-900);
}

.treatments-strip-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.treatments-strip span {
  flex: 1;
  padding-inline: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  text-align: center;
}

.treatments-strip span:first-child {
  border-left: 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(2.8rem, 5vw, 4.5rem);
  text-align: center;
}

.section-heading > p:last-child,
.faq-heading > p,
.clinic-intro {
  color: var(--ink-700);
  font-size: 1.08rem;
}

.section-heading-left {
  margin-left: 0;
  text-align: left;
}

.services-section {
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.service-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 10px 32px rgba(5, 47, 46, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  border-color: #b3cbc6;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.service-card > img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
}

.card-number {
  margin-bottom: 1rem;
  color: var(--brand-700);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.service-card h3 {
  margin-bottom: 0.7rem;
}

.service-card-body > p:not(.card-number) {
  margin-bottom: 1.25rem;
  color: var(--ink-700);
  font-size: 0.94rem;
}

.service-card-body a,
.text-link,
.map-card > a {
  margin-top: auto;
  color: var(--brand-700);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: #9bbeb7;
  text-underline-offset: 5px;
}

.service-card-body a:hover,
.text-link:hover,
.map-card > a:hover {
  color: var(--brand-950);
  text-decoration-color: currentColor;
}

.clinic-section {
  background: var(--warm);
}

.clinic-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.clinic-media {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.clinic-media > img {
  width: 100%;
  min-height: 530px;
  object-fit: cover;
}

.clinic-caption {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: grid;
  gap: 0.1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  color: #fff;
  background: rgba(5, 47, 46, 0.9);
  backdrop-filter: blur(12px);
}

.clinic-caption strong {
  font-size: 1.05rem;
}

.clinic-caption span {
  color: #d7ebe7;
  font-size: 0.83rem;
}

.clinic-copy h2 {
  max-width: 610px;
}

.clinic-intro {
  max-width: 590px;
  margin-bottom: 2.2rem;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(7, 63, 61, 0.16);
}

.process-list li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-900);
  font-size: 0.82rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.process-list p {
  margin-bottom: 0;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.pricing-section {
  background: var(--brand-50);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.25rem;
}

.price-card {
  display: flex;
  min-width: 0;
  min-height: 365px;
  grid-column: span 2;
  flex-direction: column;
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 10px 28px rgba(5, 47, 46, 0.05);
}

.price-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.price-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.price-card h3 {
  min-height: 2.9rem;
  margin-bottom: 1.2rem;
  font-size: 1.12rem;
}

.price {
  display: grid;
  gap: 0;
  margin-bottom: 1.35rem;
}

.price strong {
  color: var(--brand-900);
  font-size: clamp(2.1rem, 3vw, 2.75rem);
  letter-spacing: -0.06em;
  line-height: 1.1;
}

.price span {
  color: var(--ink-500);
  font-size: 0.82rem;
}

.price-card ul {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  padding-left: 1.2rem;
  color: var(--ink-700);
  font-size: 0.9rem;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.price-card-featured {
  position: relative;
  border-color: var(--brand-900);
  color: #e8f5f2;
  background: var(--brand-900);
  box-shadow: 0 20px 42px rgba(5, 47, 46, 0.2);
}

.price-card-featured h3,
.price-card-featured .price strong {
  color: #fff;
}

.price-card-featured .price span,
.price-card-featured ul {
  color: #d7e9e6;
}

.price-badge {
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: var(--brand-950);
  background: var(--mint);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-note {
  margin: 1.4rem 0 0;
  color: var(--ink-500);
  font-size: 0.84rem;
  text-align: center;
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-offset) + 2rem);
}

.faq-heading .text-link {
  display: inline-block;
  margin-top: 0.8rem;
}

.faq-list {
  border-bottom: 1px solid var(--line);
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  padding: 1.35rem 0;
  color: var(--ink-950);
  font-size: 1.04rem;
  font-weight: 750;
  cursor: pointer;
}

.faq-list details[open] summary {
  color: var(--brand-700);
}

.faq-list details p {
  max-width: 680px;
  margin: -0.25rem 0 1.4rem;
  padding-left: 1.4rem;
  color: var(--ink-700);
}

.contact-section {
  color: #e8f3f1;
  background: var(--brand-950);
}

.contact-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: #fff;
}

.contact-heading > p {
  margin-bottom: 0.45rem;
  color: #cce0dd;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.contact-panel {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.contact-actions {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.button-whatsapp {
  color: #fff;
  background: #08745c;
}

.button-whatsapp:hover {
  background: #05604c;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: transparent;
}

.button-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.7rem 1.25rem;
}

.contact-details > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.contact-details span {
  margin-bottom: 0.35rem;
  color: var(--mint);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  margin-bottom: 0;
  color: #e6f0ee;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.contact-details a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.map-card {
  position: relative;
  display: grid;
  min-height: 500px;
  grid-template-rows: 1fr auto;
  padding: 0.75rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: #fff;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border-radius: 22px;
}

.map-card > a {
  margin: 0;
  padding: 0.8rem 0.5rem 0.25rem;
  text-align: center;
}

.site-footer {
  padding-top: 4rem;
  color: #c9dcda;
  background: #031f1e;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(180px, 0.7fr));
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 1.2rem;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  background: #fff;
}

.footer-logo img {
  width: 145px;
  height: auto;
}

.footer-brand p {
  max-width: 410px;
  margin-bottom: 0;
  color: #c9dcda;
}

.site-footer h2 {
  margin-bottom: 1.1rem;
  color: #fff;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.site-footer nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer nav a,
.footer-contact a,
.footer-contact address {
  margin-bottom: 0.55rem;
  color: #c9dcda;
  font-size: 0.9rem;
}

.site-footer nav a:hover,
.footer-contact a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  min-height: 75px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #a9c0bd;
  font-size: 0.82rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom a {
  color: #d8e7e5;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mobile-booking {
  display: none;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 1rem;
    font-size: 0.87rem;
  }

  .hero-grid {
    gap: 3rem;
  }

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

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

  .price-card,
  .price-card:nth-child(4),
  .price-card:nth-child(5) {
    grid-column: auto;
  }

  .price-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 0.625rem);
    justify-self: center;
  }
}

@media (max-width: 900px) {
  :root {
    --header-offset: 78px;
  }

  .header-meta,
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .nav-row {
    min-height: 76px;
  }

  .mobile-menu {
    display: block;
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 4.25rem;
  }

  .hero-grid,
  .clinic-grid,
  .faq-grid,
  .contact-heading,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .hero-lead {
    max-width: 760px;
  }

  .hero-media picture {
    height: min(72vw, 590px);
  }

  .location-card {
    right: 1rem;
  }

  .treatments-strip-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding-block: 1rem;
  }

  .treatments-strip span {
    min-width: 30%;
  }

  .clinic-media > img {
    min-height: 0;
  }

  .faq-heading {
    position: static;
    max-width: 620px;
  }

  .contact-heading {
    align-items: start;
    gap: 0.8rem;
  }

  .contact-heading > p {
    max-width: 620px;
  }

  .map-card {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 68px;
  }

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

  .section {
    padding-block: 4.5rem;
  }

  .brand img {
    width: 138px;
  }

  .hero {
    padding-block: 3.6rem 4rem;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    gap: 0;
  }

  .hero-facts li {
    padding-inline: 0.65rem;
  }

  .hero-facts strong {
    font-size: 0.88rem;
  }

  .hero-facts span {
    font-size: 0.74rem;
  }

  .hero-media {
    padding-bottom: 0;
  }

  .hero-media picture {
    height: clamp(340px, 105vw, 470px);
    border-radius: 24px;
  }

  .location-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 1.5rem);
    margin: -2.5rem auto 0;
  }

  .treatments-strip-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .treatments-strip span {
    min-width: 0;
    padding: 0.45rem 0.4rem;
    border: 0;
  }

  .treatments-strip span:last-child {
    grid-column: 1 / -1;
  }

  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card,
  .price-card:last-child {
    width: 100%;
    min-height: 340px;
    grid-column: auto;
  }

  .clinic-caption {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .faq-list details p {
    padding-left: 0;
  }

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

  .map-card {
    min-height: 390px;
  }

  .map-card iframe {
    min-height: 340px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.45rem;
    padding-block: 1.15rem;
  }

  .mobile-booking {
    position: fixed;
    right: 0.65rem;
    bottom: 0.6rem;
    left: 0.65rem;
    z-index: 90;
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #fff;
    background: var(--brand-900);
    box-shadow: 0 12px 30px rgba(5, 47, 46, 0.28);
    font-weight: 800;
  }
}

@media (max-width: 390px) {
  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts li,
  .hero-facts li:first-child {
    grid-template-columns: auto 1fr;
    gap: 0.45rem;
    padding: 0.55rem 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

@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;
  }
}
