:root {
  --color-bg: #fbf8f3;
  --color-surface: rgba(255, 255, 255, 0.9);
  --color-surface-solid: #fffdfa;
  --color-cream: #f5eee4;
  --color-text: #30271f;
  --color-muted: #776e65;
  --color-gold: #c9953e;
  --color-gold-dark: #aa7628;
  --color-gold-soft: #e8cfaa;
  --color-border: rgba(164, 124, 67, 0.2);
  --color-success: #16965c;
  --color-error: #b5453c;
  --shadow-soft: 0 18px 50px rgba(83, 58, 31, 0.09);
  --shadow-card: 0 24px 70px rgba(83, 58, 31, 0.14);
  --font-body: Inter, "Helvetica Neue", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  --shell: 1460px;
  --header-height: 82px;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-pill: 999px;
  --transition-fast: 180ms ease;
  --transition: 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{min-height:100%}
body,h1,h2,h3,p,blockquote,figure{margin:0}
ul,ol{margin:0;padding:0;list-style:none}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
button{border:0;background:none;padding:0}
img,video,svg{display:block;max-width:100%}
/* =====================================================
   ISHRAQ CLINIC — GLOBAL STYLES
===================================================== */

html {
  width: 100%;
  max-width: 100%;

  overflow-x: hidden;

  scroll-behavior: smooth;
  scroll-padding-top: 100px;

  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  position: relative;

  width: 100%;
  min-width: 320px;
  max-width: 100%;

  margin: 0;

  overflow-x: hidden;

  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(229, 198, 151, 0.16),
      transparent 28%
    ),
    var(--color-bg);

  color: var(--color-text);

  font-family: var(--font-body);
  line-height: 1.5;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Use clip when supported to prevent horizontal dragging. */

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

/* =====================================================
   Mobile menu state
===================================================== */

body.menu-open {
  overflow: hidden;
}

/* =====================================================
   Initial scroll correction
===================================================== */

html.is-resetting-scroll {
  scroll-behavior: auto !important;
}

html.is-resetting-scroll body {
  scroll-behavior: auto !important;
}

html.is-resetting-scroll *,
html.is-resetting-scroll *::before,
html.is-resetting-scroll *::after {
  scroll-behavior: auto !important;
}

/* =====================================================
   Main responsive container
===================================================== */

.shell {
  width: min(
    var(--shell),
    calc(100% - 42px)
  );

  max-width: var(--shell);
  min-width: 0;

  margin-inline: auto;
}

/* =====================================================
   Accessibility
===================================================== */

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;

  padding: 12px 18px;

  border-radius: 10px;

  background: #1f1a16;
  color: #ffffff;

  transform: translateY(-160%);

  transition: transform 180ms ease;
}

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

.sr-only {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;
}

/* =====================================================
   Shared text styles
===================================================== */

.eyebrow {
  color: var(--color-gold-dark);

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  line-height: 1.4;

  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;

  margin: 0 auto 28px;

  text-align: center;
}

.section-heading h2,
.panel h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
}

.section-heading h2 {
  margin-top: 8px;

  font-size: clamp(
    2rem,
    3.4vw,
    3.2rem
  );
}

.section-heading > p:last-child {
  max-width: 590px;

  margin: 12px auto 0;

  color: var(--color-muted);

  font-size: 0.96rem;
  line-height: 1.75;
}

/* =====================================================
   Text links
===================================================== */

.text-link {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  margin-top: 18px;

  color: var(--color-gold-dark);

  font-size: 0.82rem;
  font-weight: 750;
}

.text-link span {
  transition: transform var(--transition-fast);
}

.text-link:hover span {
  transform: translateX(4px);
}

/* =====================================================
   General media protection
===================================================== */

img,
video,
iframe,
svg,
canvas {
  max-width: 100%;
}

img,
video {
  height: auto;
}

/* =====================================================
   Mobile container
===================================================== */

@media (max-width: 680px) {
  .shell {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
  }

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

  .section-heading h2 {
    font-size: clamp(
      1.9rem,
      9vw,
      2.65rem
    );
  }
}

/* =====================================================
   iPhone 12 Pro and compact devices
===================================================== */

@media (max-width: 390px) {
  .shell {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
}

/* =====================================================
   Reduced motion
===================================================== */

@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;
  }
}
.button{min-height:48px;display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:12px 24px;border:1px solid transparent;border-radius:var(--radius-pill);font-size:.84rem;font-weight:750;cursor:pointer;transition:transform var(--transition),box-shadow var(--transition),background var(--transition),color var(--transition),border-color var(--transition)}
.button svg{width:18px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}.button:hover{transform:translateY(-2px)}
.button--gold{background:linear-gradient(135deg,#d7ab61,var(--color-gold-dark));color:#fff;box-shadow:0 10px 24px rgba(179,121,36,.2)}.button--gold:hover{box-shadow:0 16px 34px rgba(179,121,36,.28)}
.button--outline{border-color:rgba(172,124,53,.35);background:rgba(255,255,255,.6);color:var(--color-text)}.button--outline:hover{border-color:var(--color-gold);background:#fff}
.button--full{width:100%}.header-book{min-width:195px}
.booking-card{align-self:center;padding:24px;border:1px solid rgba(193,151,90,.22);border-radius:28px;background:#fff;box-shadow:var(--shadow-card);backdrop-filter:blur(14px)}
.booking-card__heading{display:flex;justify-content:space-between;align-items:flex-start;gap:16px}.booking-card__eyebrow{font-size:.68rem;font-weight:800;letter-spacing:.18em;text-transform:uppercase;color:var(--color-gold-dark)}.booking-card h2{margin-top:3px;font-family:var(--font-display);font-size:1.9rem;font-weight:500}.booking-card__sparkle{color:var(--color-gold);font-size:1.4rem}.booking-card__intro{margin:7px 0 18px;color:var(--color-muted);font-size:.82rem}
.booking-form{display:grid;gap:10px}.field{min-height:46px;display:flex;align-items:center;gap:10px;padding:0 13px;border:1px solid rgba(147,116,75,.2);border-radius:11px;background:#fff;transition:border-color var(--transition-fast),box-shadow var(--transition-fast)}.field:focus-within{border-color:var(--color-gold);box-shadow:0 0 0 3px rgba(201,149,62,.1)}.field__icon{width:20px;color:var(--color-gold-dark);text-align:center}.field input,.field select{width:100%;min-width:0;border:0;outline:0;background:transparent;color:var(--color-text);font-size:.82rem}.field select{appearance:none;background-image:linear-gradient(45deg,transparent 50%,#827469 50%),linear-gradient(135deg,#827469 50%,transparent 50%);background-position:calc(100% - 13px) 50%,calc(100% - 8px) 50%;background-size:5px 5px,5px 5px;background-repeat:no-repeat;padding-right:25px}.field input::placeholder{color:#958b82}.phone-field{display:grid;grid-template-columns:auto 1fr;gap:8px}.phone-field__prefix{min-height:46px;display:flex;align-items:center;padding:0 12px;border:1px solid rgba(147,116,75,.2);border-radius:11px;background:#fff;color:#665d54;font-size:.8rem}.field--phone{padding-left:12px}.form-message{min-height:18px;font-size:.75rem;color:var(--color-error)}.form-message.is-success{color:var(--color-success)}.booking-card__privacy{margin-top:12px;color:#8d847b;font-size:.68rem;text-align:center}
.section-block {
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.section-heading--compact { margin-bottom: 24px; }
.section-heading--left { max-width: 760px; margin: 0 0 34px; text-align: left; }
.section-heading--left h2 { max-width: 720px; }

/* Services */
.services-showcase {
  padding: 34px 0 72px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.9), #fff 55%, #fbf7f1 100%);
}

.service-carousel {
  width: min(100%, 1720px);
  height: 500px;
  display: flex;
  gap: 8px;
  margin-inline: auto;
  padding-inline: max(10px, calc((100vw - 1720px) / 2));
  overflow: hidden;
}

.service-slide {
  position: relative;
  flex: 0 0 84px;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 3px;
  background: #ddd;
  color: #fff;
  cursor: pointer;
  text-align: left;
  transition:
    flex-basis 850ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 450ms ease,
    transform 450ms ease;
}

.service-slide.is-active {
  flex-basis: calc(100% - 276px);
}

.service-slide:not(.is-active) {
  filter: saturate(0.72) brightness(0.82);
}

.service-slide:hover:not(.is-active) {
  filter: saturate(0.95) brightness(0.94);
}

.service-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-slide.is-active img { transform: scale(1.025); }
.service-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 15, 12, 0.02) 18%, rgba(20, 15, 10, 0.18) 46%, rgba(17, 12, 8, 0.92) 100%),
    linear-gradient(90deg, rgba(17, 12, 8, 0.15), transparent 55%);
}

.service-slide__content {
  position: absolute;
  right: 32px;
  bottom: 30px;
  left: 32px;
  display: grid;
  gap: 8px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 380ms ease 160ms, transform 500ms ease 160ms;
}

.service-slide.is-active .service-slide__content {
  opacity: 1;
  transform: translateY(0);
}

.service-slide__content small {
  color: var(--color-gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.service-slide__content strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
}

.service-slide__content em {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-style: normal;
  line-height: 1.65;
}

.service-slide__link {
  width: max-content;
  margin-top: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-slide:not(.is-active)::after {
  content: attr(data-label);
  position: absolute;
  bottom: 22px;
  left: 50%;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  white-space: nowrap;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center;
}

.service-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}

.service-carousel__controls button,
.testimonial-controls button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: #fff;
  color: var(--color-text);
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.service-carousel__controls button:hover,
.testimonial-controls button:hover {
  transform: translateY(-2px);
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
}

.service-carousel__progress {
  width: min(420px, 42vw);
  height: 2px;
  overflow: hidden;
  background: rgba(170, 118, 40, 0.16);
}

.service-carousel__progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--color-gold-dark);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Editorial sections */
.about-clinic,
.treatment-story {
  padding: 86px 0;
}

.about-clinic { background: #f0efed; }
.treatment-story { background: #fff; }

.about-clinic__grid,
.treatment-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: stretch;
}

.treatment-story__grid {
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
}

.editorial-image {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: #ddd;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-image--about { border-radius: 0 38px 38px 0; }
.editorial-image--treatment { min-height: 620px; border-radius: 36px; box-shadow: var(--shadow-soft); }

.editorial-image figcaption {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  background: rgba(34, 26, 20, 0.54);
  color: #fff;
  backdrop-filter: blur(12px);
}

.editorial-image figcaption span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.69rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-image figcaption strong {
  max-width: 280px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  text-align: right;
}

.editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 88px);
}

.editorial-copy--compact { padding: 0; }

.editorial-copy h2 {
  max-width: 710px;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 4.3rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.editorial-copy__lead {
  margin-top: 24px;
  color: #4f473f;
  font-size: 1.06rem;
  line-height: 1.72;
}

.editorial-copy > p:not(.eyebrow):not(.editorial-copy__lead) {
  margin-top: 15px;
  color: var(--color-muted);
  line-height: 1.75;
}

.editorial-copy .button { align-self: flex-start; margin-top: 26px; }

.editorial-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.editorial-facts article {
  padding: 16px 12px;
  border-left: 1px solid var(--color-gold-soft);
}

.editorial-facts strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
}

.editorial-facts span {
  display: block;
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 0.7rem;
}

.editorial-image__badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  padding: 13px 17px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-muted);
  font-size: 0.7rem;
  box-shadow: var(--shadow-soft);
}

.editorial-image__badge b {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
}

/* Why */
.why-section {
  padding: 78px 0;
  background: #e9e9e8;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(86, 76, 67, 0.14);
  border-bottom: 1px solid rgba(86, 76, 67, 0.14);
}

.why-card {
  position: relative;
  min-height: 270px;
  padding: 28px 28px 32px;
  border-right: 1px solid rgba(86, 76, 67, 0.14);
  transition:
    background-color 280ms ease,
    transform 280ms ease,
    box-shadow 280ms ease;
}

.why-card:last-child {
  border-right: 0;
}

.why-card:hover {
  z-index: 1;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 44px rgba(74, 50, 28, 0.07);
  transform: translateY(-5px);
}

.why-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.why-card__number {
  padding-top: 7px;
  color: #8c837b;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.why-card__icon {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(181, 125, 38, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.96), rgba(248, 240, 226, 0.88));
  color: var(--color-gold-dark);
  box-shadow:
    0 12px 26px rgba(126, 87, 38, 0.08),
    inset 0 0 0 5px rgba(255, 255, 255, 0.34);
  transition:
    transform 280ms ease,
    background-color 280ms ease,
    border-color 280ms ease;
}

.why-card:hover .why-card__icon {
  border-color: rgba(181, 125, 38, 0.48);
  transform: translateY(-3px) rotate(-2deg);
}

.why-card__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 1.6vw, 1.52rem);
  font-weight: 500;
  line-height: 1.2;
}

.why-card p {
  margin-top: 11px;
  color: #625b55;
  font-size: 0.88rem;
  line-height: 1.68;
}

/* Partners — premium continuous logo marquee */
.partners-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 7vw, 104px) 0 clamp(76px, 7vw, 108px);
  border-top: 1px solid rgba(177, 127, 51, 0.10);
  border-bottom: 1px solid rgba(177, 127, 51, 0.10);
  background:
    radial-gradient(circle at 50% -26%, rgba(201, 151, 73, 0.16), transparent 46%),
    linear-gradient(180deg, #fffefc 0%, #fbf8f2 100%);
}

.partners-section::before,
.partners-section::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(190, 139, 61, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.partners-section::before {
  top: -250px;
  left: -150px;
}

.partners-section::after {
  right: -170px;
  bottom: -270px;
}

.partners-shell {
  position: relative;
  z-index: 1;
}

.partners-heading {
  max-width: 1080px;
  margin-inline: auto;
}

.partners-heading > .eyebrow {
  text-align: center;
}

.partners-heading__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: clamp(28px, 5vw, 76px);
  margin-top: 10px;
}

.partners-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.2vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.partners-heading__row > p {
  max-width: 510px;
  padding-bottom: 7px;
  color: #716960;
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  line-height: 1.78;
}

.partner-marquee {
  --partner-gap: 18px;
  position: relative;
  overflow: hidden;
  margin-top: clamp(36px, 5vw, 58px);
  padding: 18px 0;
  border: 1px solid rgba(178, 127, 48, 0.18);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 24px 70px rgba(80, 56, 31, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.partner-marquee::before,
.partner-marquee::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  width: clamp(42px, 8vw, 130px);
  pointer-events: none;
}

.partner-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fcfaf6 8%, rgba(252, 250, 246, 0));
}

.partner-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fcfaf6 8%, rgba(252, 250, 246, 0));
}

.partner-marquee:focus-visible {
  outline: 2px solid var(--color-gold-dark);
  outline-offset: 5px;
}

.partner-marquee__track {
  display: flex;
  width: max-content;
  transform: translate3d(0, 0, 0);
  animation: partnerMarquee 48s linear infinite;
  will-change: transform;
}

.partner-marquee__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--partner-gap);
  padding-right: var(--partner-gap);
}

.partner-logo {
  width: clamp(168px, 14vw, 222px);
  height: 112px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 22px 26px;
  border: 1px solid rgba(111, 93, 72, 0.10);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 10px 28px rgba(72, 51, 31, 0.045),
    inset 0 1px 0 #fff;
  transition:
    transform 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease,
    background 280ms ease;
}

.partner-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
  opacity: 0.82;
  filter: saturate(0.82) contrast(0.98);
  transition: opacity 280ms ease, filter 280ms ease, transform 280ms ease;
}

.partner-logo:hover {
  z-index: 2;
  border-color: rgba(187, 132, 46, 0.38);
  background: #fff;
  box-shadow: 0 18px 40px rgba(108, 75, 36, 0.12);
  transform: translateY(-5px);
}

.partner-logo:hover img {
  opacity: 1;
  filter: none;
  transform: scale(1.035);
}

.partner-marquee:hover .partner-marquee__track,
.partner-marquee:focus-within .partner-marquee__track {
  animation-play-state: paused;
}

.partners-footer {
  display: grid;
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  align-items: center;
  gap: 18px;
  width: min(760px, 100%);
  margin: 28px auto 0;
}

.partners-footer span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(177, 125, 45, 0.34));
}

.partners-footer span:last-child {
  background: linear-gradient(90deg, rgba(177, 125, 45, 0.34), transparent);
}

.partners-footer p {
  color: #9b8468;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

@keyframes partnerMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 900px) {
  .partners-heading__row {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .partners-heading__row > p {
    margin-inline: auto;
    padding-bottom: 0;
  }

  .partner-marquee {
    --partner-gap: 14px;
    border-radius: 26px;
  }

  .partner-marquee__track {
    animation-duration: 42s;
  }

  .partner-logo {
    width: 176px;
    height: 102px;
    padding: 20px 22px;
  }
}

@media (max-width: 680px) {
  .partners-section {
    padding-block: 64px 70px;
  }

  .partners-heading h2 {
    font-size: clamp(2.45rem, 13vw, 3.6rem);
  }

  .partner-marquee {
    --partner-gap: 10px;
    width: calc(100% + 24px);
    margin-left: -12px;
    padding-block: 12px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .partner-marquee::before,
  .partner-marquee::after {
    width: 42px;
  }

  .partner-marquee__track {
    animation-duration: 36s;
  }

  .partner-logo {
    width: 150px;
    height: 88px;
    padding: 17px 18px;
    border-radius: 18px;
  }

  .partner-logo img {
    max-height: 50px;
  }

  .partners-footer {
    gap: 12px;
    margin-top: 22px;
  }

  .partners-footer p {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-marquee {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(177, 125, 45, 0.42) transparent;
  }

  .partner-marquee::before,
  .partner-marquee::after {
    display: none;
  }

  .partner-marquee__track {
    animation: none;
  }

  .partner-marquee__group[aria-hidden="true"] {
    display: none;
  }
}

/* Testimonials */
.testimonials-section {
  padding: 82px 0 96px;
  background: #fbfaf8;
}

.testimonials-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.testimonials-header h2 {
  max-width: 760px;
  margin-top: 9px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  font-weight: 500;
  line-height: 1.04;
}

.testimonial-controls { display: flex; gap: 9px; }
.testimonial-viewport { overflow: hidden; }
.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.review-card {
  flex: 0 0 calc(50% - 10px);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--color-border);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(74, 50, 28, 0.055);
}

.review-card__stars { color: var(--color-gold); letter-spacing: 0.13em; }
.review-card blockquote {
  margin: 22px 0 30px;
  color: #4f4842;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.5;
}

.review-card footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; border-top: 1px solid var(--color-border); padding-top: 18px; }
.review-card footer strong { font-family: var(--font-display); font-weight: 500; }
.review-card footer span { color: var(--color-muted); font-size: 0.72rem; }

/* Appointment */
.appointment-section {
  padding: 92px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(232, 207, 170, 0.22), transparent 30%),
    linear-gradient(145deg, #f8f5ef, #fff 52%, #f2eee8);
}

.appointment-section::before,
.appointment-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(201, 149, 62, 0.12);
  border-radius: 42% 58% 48% 52%;
  pointer-events: none;
}
.appointment-section::before { top: -260px; left: -210px; transform: rotate(20deg); }
.appointment-section::after { right: -240px; bottom: -320px; transform: rotate(-14deg); }

.appointment-section__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 0.75fr) minmax(540px, 1.25fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: center;
}

.appointment-intro h2 {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 500;
  line-height: 0.98;
}

.appointment-intro > p:not(.eyebrow) { margin-top: 22px; color: var(--color-muted); font-size: 1rem; line-height: 1.75; }
.appointment-contact-list { display: grid; gap: 12px; margin-top: 30px; }
.appointment-contact-list > * {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.appointment-contact-list span { color: var(--color-muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; }
.appointment-contact-list strong { font-family: var(--font-display); font-size: 0.98rem; font-weight: 500; text-align: right; }

.appointment-form {
  display: grid;
  gap: 15px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(183, 139, 76, 0.18);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.appointment-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.appointment-form label { display: grid; gap: 7px; }
.appointment-form label > span { color: #4f4740; font-size: 0.75rem; font-weight: 700; }
.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  border: 1px solid rgba(145, 112, 67, 0.2);
  border-radius: 11px;
  background: #fff;
  color: var(--color-text);
  outline: none;
  font: inherit;
  font-size: 0.83rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.appointment-form input,
.appointment-form select { min-height: 48px; padding: 0 13px; }
.appointment-form textarea { resize: vertical; min-height: 110px; padding: 13px; }
.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus { border-color: var(--color-gold); box-shadow: 0 0 0 3px rgba(201, 149, 62, 0.1); }
.appointment-phone { display: grid; grid-template-columns: auto 1fr; border: 1px solid rgba(145, 112, 67, 0.2); border-radius: 11px; overflow: hidden; }
.appointment-phone b { display: grid; place-items: center; padding: 0 12px; border-right: 1px solid rgba(145, 112, 67, 0.16); font-size: 0.76rem; font-weight: 500; }
.appointment-phone input { border: 0; border-radius: 0; }
.appointment-form__message { min-height: 18px; color: var(--color-error); font-size: 0.75rem; }
.appointment-form__message.is-success { color: var(--color-success); }

/* Location and footer */
.location-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 430px;
  background: #777572;
  color: #fff;
}

.location-details {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(230px, 1fr);
  gap: 34px 64px;
  align-content: center;
  padding: clamp(44px, 6vw, 86px) max(42px, calc((100vw - var(--shell)) / 2 + 21px));
}

.location-details > img { width: min(310px, 100%); align-self: center; }
.location-details h2 { margin-top: 8px; font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 500; }
.location-details > div > p:not(.eyebrow) { margin-top: 14px; color: rgba(255, 255, 255, 0.78); }
.location-meta { display: grid; gap: 18px; grid-column: 2; }
.location-meta p { display: grid; gap: 4px; }
.location-meta span { color: var(--color-gold-soft); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.location-meta a,
.location-meta strong { color: #fff; font-size: 0.9rem; font-weight: 500; }
.social-links { display: flex; gap: 10px; align-items: center; }
.social-links a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50%; color: #fff; font-size: 0.68rem; }
.social-links a:hover { border-color: var(--color-gold-soft); color: var(--color-gold-soft); }
.location-map { min-height: 430px; }
.location-map iframe { width: 100%; height: 100%; min-height: 430px; border: 0; filter: saturate(0.72) contrast(0.95); }

.site-footer { padding: 12px 0; background: #d6b886; color: #5e4b35; font-size: 0.68rem; }
.site-footer .shell { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.site-footer nav { display: flex; gap: 18px; }

/* Reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 750ms ease, transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
/* =========================================================
   Polished editorial sections + accessible Read More
   ========================================================= */

.editorial-section {
  position: relative;
  padding: clamp(64px, 7vw, 104px) 0;
  overflow: clip;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.editorial-section--about {
  background:
    radial-gradient(circle at 4% 8%, rgba(201, 149, 62, 0.08), transparent 28%),
    #f1efec;
}

.editorial-section--treatments {
  background: #fff;
}

.editorial-section--appointments {
  background:
    radial-gradient(circle at 96% 12%, rgba(201, 149, 62, 0.09), transparent 26%),
    #f8f5ef;
}

.editorial-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: center;
}

.editorial-section--reverse .editorial-panel {
  order: 1;
}

.editorial-section--reverse .editorial-visual {
  order: 2;
}

.editorial-visual {
  position: relative;
  height: clamp(540px, 62vw, 700px);
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(145, 112, 67, 0.16);
  border-radius: clamp(24px, 3vw, 38px);
  background: #e9e4dd;
  box-shadow: 0 28px 80px rgba(68, 47, 28, 0.11);
  isolation: isolate;
}

.editorial-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(25, 18, 12, 0.26));
}

.editorial-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.editorial-visual:hover img {
  transform: scale(1.025);
}

.editorial-visual--about img {
  object-position: center center;
}

.editorial-visual--treatments img {
  object-position: center 42%;
}

.editorial-visual--appointments img {
  object-position: center center;
}

.editorial-visual__caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  background: rgba(37, 28, 21, 0.58);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.editorial-visual__caption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.editorial-visual__caption strong {
  max-width: 260px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: right;
}

.editorial-visual__badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 13px 17px;
  border: 1px solid rgba(145, 112, 67, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-muted);
  font-size: 0.7rem;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.editorial-visual__badge b {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 500;
}

.editorial-panel {
  min-width: 0;
  max-width: 650px;
  padding: clamp(8px, 1.5vw, 18px) 0;
}

.editorial-panel h2 {
  max-width: 680px;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4.5vw, 5.15rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.editorial-panel__lead {
  max-width: 590px;
  margin-top: 22px;
  color: #4d453e;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.55;
}

.expandable-copy {
  --collapsed-height: 220px;
  position: relative;
  margin-top: 20px;
}

.expandable-copy__content {
  max-height: var(--collapsed-height);
  overflow: hidden;
  color: var(--color-muted);
  transition: max-height 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.expandable-copy__content p {
  margin: 0;
  line-height: 1.78;
}

.expandable-copy__content p + p,
.expandable-copy__content p + ul,
.expandable-copy__content ul + p {
  margin-top: 14px;
}

.expandable-copy__fade {
  position: absolute;
  right: 0;
  bottom: 45px;
  left: 0;
  height: 78px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--expandable-fade, #f1efec) 82%);
  transition: opacity 260ms ease;
}

.editorial-section--treatments .expandable-copy__fade {
  --expandable-fade: #fff;
}

.editorial-section--appointments .expandable-copy__fade {
  --expandable-fade: #f8f5ef;
}

.expandable-copy.is-expanded .expandable-copy__fade,
.expandable-copy.has-no-overflow .expandable-copy__fade {
  opacity: 0;
}

.editorial-treatment-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.editorial-treatment-list li {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(145, 112, 67, 0.13);
}

.editorial-treatment-list strong {
  color: var(--color-gold-dark);
  font-family: var(--font-display);
  font-weight: 500;
}

.editorial-treatment-list span {
  line-height: 1.65;
}

.read-more-button {
  position: relative;
  z-index: 2;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 0 4px 6px;
  border: 0;
  border-bottom: 1px solid rgba(154, 105, 30, 0.45);
  background: transparent;
  color: var(--color-gold-dark);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
}

.read-more-button:hover {
  border-color: var(--color-gold-dark);
}

.read-more-button__icon {
  display: inline-block;
  font-size: 0.9rem;
  transition: transform 320ms ease;
}

.expandable-copy.is-expanded .read-more-button__icon {
  transform: rotate(180deg);
}

.read-more-button[hidden] {
  display: none;
}

.editorial-facts--polished {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  padding: 19px 0;
  border-top: 1px solid rgba(145, 112, 67, 0.14);
  border-bottom: 1px solid rgba(145, 112, 67, 0.14);
}

.editorial-facts--polished article {
  min-width: 0;
  padding: 0 16px;
  border-left: 1px solid rgba(145, 112, 67, 0.16);
}

.editorial-facts--polished article:first-child {
  padding-left: 0;
  border-left: 0;
}

.editorial-facts--polished strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 500;
}

.editorial-facts--polished span {
  display: block;
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 0.66rem;
  line-height: 1.35;
}

.editorial-panel__action {
  margin-top: 26px;
}

@media (max-width: 1120px) {
  .editorial-section__grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.9fr);
    gap: 42px;
  }

  .editorial-visual {
    height: clamp(510px, 65vw, 640px);
  }

  .editorial-panel h2 {
    font-size: clamp(2.5rem, 4.8vw, 4.5rem);
  }
}

@media (max-width: 900px) {
  .editorial-section {
    padding-block: 64px;
  }

  .editorial-section__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .editorial-section--reverse .editorial-panel,
  .editorial-section--reverse .editorial-visual {
    order: initial;
  }

  .editorial-section--reverse .editorial-visual {
    order: -1;
  }

  .editorial-visual {
    width: min(100%, 760px);
    height: clamp(470px, 84vw, 650px);
    margin-inline: auto;
  }

  .editorial-panel {
    width: min(100%, 700px);
    max-width: none;
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .editorial-section {
    padding-block: 52px;
  }

  .editorial-section__grid {
    width: min(100% - 24px, var(--shell));
    gap: 28px;
  }

  .editorial-visual {
    height: min(124vw, 540px);
    border-radius: 24px;
  }

  .editorial-visual__caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .editorial-visual__caption strong {
    text-align: left;
  }

  .editorial-panel h2 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .editorial-panel__lead {
    margin-top: 16px;
  }

  .expandable-copy {
    margin-top: 16px;
  }

  .editorial-treatment-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .editorial-facts--polished {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 16px;
  }

  .editorial-facts--polished article,
  .editorial-facts--polished article:first-child {
    padding: 0;
    border-left: 0;
  }

  .editorial-facts--polished article + article {
    padding-top: 14px;
    border-top: 1px solid rgba(145, 112, 67, 0.13);
  }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-visual img,
  .expandable-copy__content,
  .read-more-button__icon {
    transition: none;
  }
}
/* ========================================
   Shared treatment category pages
======================================== */

@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 260ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-transition-ready {
  transition: opacity 220ms ease, transform 220ms ease;
}

body.page-transition-ready.is-page-leaving {
  opacity: 0;
  transform: translateY(8px);
}

.nav-dropdown__trigger.is-active {
  color: var(--color-gold-dark);
}

.nav-dropdown__trigger.is-active::after {
  transform: scaleX(1);
}

.treatment-page main {
  overflow: clip;
}

.treatment-page-hero {
  position: relative;
  padding: clamp(38px, 5vw, 78px) 0 clamp(54px, 7vw, 104px);
  background:
    radial-gradient(circle at 82% 12%, rgba(220, 180, 115, 0.2), transparent 32%),
    radial-gradient(circle at 8% 82%, rgba(232, 207, 170, 0.22), transparent 28%),
    linear-gradient(135deg, #fbf8f2 0%, #f7f1e8 52%, #fcfaf7 100%);
}

.treatment-page-hero::before,
.treatment-page-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(188, 139, 69, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.treatment-page-hero::before {
  width: 520px;
  height: 520px;
  top: -290px;
  left: -190px;
}

.treatment-page-hero::after {
  width: 380px;
  height: 380px;
  right: -150px;
  bottom: -210px;
}

.treatment-page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
}

.treatment-page-hero__copy {
  max-width: 680px;
}

.treatment-page-hero__copy h1 {
  margin-top: 16px;
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6.3vw, 7.2rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.treatment-page-hero__lead {
  max-width: 650px;
  margin-top: 26px;
  color: #554b42;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.75;
}

.treatment-page-hero__intro {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  color: var(--color-muted);
  line-height: 1.78;
}

.treatment-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.treatment-page-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  color: #665b50;
  font-size: 0.76rem;
  font-weight: 700;
}

.treatment-page-hero__trust span {
  position: relative;
  padding-left: 18px;
}

.treatment-page-hero__trust span::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--color-gold-dark);
}

.treatment-page-hero__visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(188, 139, 69, 0.33);
  border-radius: 48% 48% 30px 30px;
  background: #e9e1d7;
  box-shadow: 0 30px 90px rgba(91, 61, 31, 0.18);
}

.treatment-page-hero__visual::before {
  content: "";
  position: absolute;
  inset: 13px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: inherit;
  pointer-events: none;
}

.treatment-page-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(31, 22, 15, 0.42) 100%);
  pointer-events: none;
}

.treatment-page-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.treatment-page-hero__visual:hover img {
  transform: scale(1.025);
}

.treatment-page-hero__visual figcaption {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  background: rgba(32, 24, 18, 0.5);
  color: #fff;
  backdrop-filter: blur(12px);
}

.treatment-page-hero__visual figcaption small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.69rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.treatment-page-hero__visual figcaption strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
}

/* Category navigation */
.treatment-category-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 90;
  border-top: 1px solid rgba(177, 129, 57, 0.12);
  border-bottom: 1px solid rgba(177, 129, 57, 0.18);
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.treatment-category-nav__link {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 18px 24px;
  border-right: 1px solid rgba(177, 129, 57, 0.15);
  color: var(--color-muted);
  transition: background var(--transition), color var(--transition);
}

.treatment-category-nav__link:last-child {
  border-right: 0;
}

.treatment-category-nav__link::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 2px;
  background: var(--color-gold-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.treatment-category-nav__link:hover,
.treatment-category-nav__link.is-active {
  background: rgba(232, 207, 170, 0.13);
  color: var(--color-text);
}

.treatment-category-nav__link:hover::after,
.treatment-category-nav__link.is-active::after {
  transform: scaleX(1);
}

.treatment-category-nav__link span {
  color: var(--color-gold-dark);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.treatment-category-nav__link small {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

/* Intro highlight */
.category-highlight {
  padding: clamp(62px, 7vw, 110px) 0;
  background: #fff;
}

.category-highlight__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: start;
  padding: clamp(34px, 5vw, 70px);
  border: 1px solid var(--color-border);
  border-radius: 34px;
  background:
    linear-gradient(120deg, rgba(248, 241, 232, 0.94), rgba(255, 255, 255, 0.96)),
    #fff;
  box-shadow: var(--shadow-soft);
}

.category-highlight h2 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 4.9rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.category-highlight__inner > div:last-child > p {
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.82;
}

.category-highlight__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-top: 24px;
}

.category-highlight__list li {
  display: flex;
  gap: 11px;
  color: #5c5147;
  line-height: 1.55;
}

.category-highlight__list span {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(201, 149, 62, 0.12);
  color: var(--color-gold-dark);
  font-size: 0.75rem;
}

/* Treatment listing */
.treatment-listing {
  padding: clamp(70px, 8vw, 124px) 0;
  background: linear-gradient(180deg, #f7f2eb 0%, #fff 34%, #fbf8f3 100%);
}

.treatment-listing__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 44px;
}

.treatment-listing__heading h2,
.other-treatments h2 {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.treatment-listing__heading > p {
  max-width: 600px;
  color: var(--color-muted);
  line-height: 1.75;
}

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

.treatment-detail-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(169, 124, 58, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 50px rgba(86, 57, 27, 0.07);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.treatment-detail-card:hover {
  transform: translateY(-7px);
  border-color: rgba(169, 124, 58, 0.38);
  box-shadow: 0 26px 70px rgba(86, 57, 27, 0.13);
}

.treatment-detail-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e7dfd5;
}

.treatment-detail-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(31, 22, 15, 0.3));
  pointer-events: none;
}

.treatment-detail-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.treatment-detail-card:hover .treatment-detail-card__media img {
  transform: scale(1.045);
}

.treatment-detail-card__media > span {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(40, 29, 20, 0.46);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.treatment-detail-card__body {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 25px 26px 26px;
}

.treatment-detail-card__category {
  color: var(--color-gold-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.treatment-detail-card h3 {
  margin-top: 9px;
  font-family: var(--font-display);
  font-size: clamp(1.42rem, 2vw, 1.95rem);
  font-weight: 500;
  line-height: 1.08;
}

.treatment-detail-card__body > p:not(.treatment-detail-card__category) {
  margin-top: 13px;
  color: var(--color-muted);
  font-size: 0.91rem;
  line-height: 1.68;
}

.treatment-detail-card__book {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--color-gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.treatment-detail-card__book span {
  transition: transform var(--transition-fast);
}

.treatment-detail-card__book:hover span {
  transform: translateX(4px);
}

/* Other categories */
.other-treatments {
  padding: clamp(70px, 8vw, 118px) 0;
  background: #fff;
}

.other-treatments h2 {
  max-width: 760px;
  margin-bottom: 34px;
}

.other-treatments__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.other-treatments__grid a {
  position: relative;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border-right: 1px solid var(--color-border);
  transition: background var(--transition), color var(--transition);
}

.other-treatments__grid a:last-child {
  border-right: 0;
}

.other-treatments__grid a:hover {
  background: #f7f0e7;
}

.other-treatments__grid span {
  color: var(--color-gold-dark);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.other-treatments__grid strong {
  margin-top: 9px;
  padding-right: 44px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.3vw, 2.3rem);
  font-weight: 500;
}

.other-treatments__grid i {
  position: absolute;
  right: 28px;
  bottom: 28px;
  font-style: normal;
  transition: transform var(--transition-fast);
}

.other-treatments__grid a:hover i {
  transform: translateX(5px);
}

/* Make the shared lower sections feel intentionally consistent. */
.treatment-page .why-section,
.treatment-page .appointment-section,
.treatment-page .location-section,
.treatment-page .site-footer {
  position: relative;
}

.treatment-page .why-section {
  border-top: 1px solid rgba(86, 76, 67, 0.08);
}

.treatment-page .appointment-section {
  background:
    radial-gradient(circle at 12% 15%, rgba(232, 207, 170, 0.17), transparent 28%),
    #fbf8f3;
}

/* ========================================
   Responsive treatment pages
======================================== */

@media (max-width: 1180px) {
  .treatment-page-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 44px;
  }

  .treatment-page-hero__visual {
    min-height: 560px;
  }

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

@media (max-width: 980px) {
  .treatment-page-hero {
    padding-top: 28px;
  }

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

  .treatment-page-hero__copy {
    max-width: 760px;
  }

  .treatment-page-hero__visual {
    width: min(100%, 820px);
    min-height: 540px;
  }

  .treatment-category-nav {
    top: 74px;
  }

  .treatment-category-nav__inner {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .treatment-category-nav__inner::-webkit-scrollbar {
    display: none;
  }

  .treatment-category-nav__link {
    min-width: 190px;
  }

  .category-highlight__inner,
  .treatment-listing__heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 680px) {
  .treatment-page-hero {
    padding: 24px 0 48px;
  }

  .treatment-page-hero__copy {
    text-align: center;
  }

  .treatment-page-hero__copy h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .treatment-page-hero__actions,
  .treatment-page-hero__trust {
    justify-content: center;
  }

  .treatment-page-hero__visual {
    min-height: 460px;
    border-radius: 42% 42% 24px 24px;
  }

  .treatment-page-hero__visual figcaption {
    align-items: start;
    flex-direction: column;
  }

  .treatment-category-nav__link {
    min-width: 156px;
    padding: 14px 16px;
  }

  .treatment-category-nav__link small {
    font-size: 0.92rem;
  }

  .category-highlight,
  .treatment-listing,
  .other-treatments {
    padding-block: 56px;
  }

  .category-highlight__inner {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .category-highlight__list {
    grid-template-columns: 1fr;
  }

  .treatment-listing__heading h2,
  .other-treatments h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .treatment-detail-grid,
  .other-treatments__grid {
    grid-template-columns: 1fr;
  }

  .treatment-detail-card__body {
    min-height: 235px;
  }

  .other-treatments__grid a {
    min-height: 140px;
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .other-treatments__grid a:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-transition-ready,
  .treatment-page-hero__visual img,
  .treatment-detail-card,
  .treatment-detail-card__media img {
    transition: none !important;
  }
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, calc(100svh - 110px), 690px);
  display: grid;
  align-items: center;
  padding: 24px 0 34px;
  overflow: hidden;
}

.hero__decor {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
}

.hero__decor--left {
  left: -180px;
  top: 40px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(201, 149, 62, 0.18);
  border-radius: 44% 56% 58% 42%;
  transform: rotate(18deg);
}

.hero__decor--right {
  right: -120px;
  top: 10px;
  width: 360px;
  height: 560px;
  border-radius: 45%;
  background:
    linear-gradient(
      115deg,
      transparent 0 44%,
      rgba(201, 149, 62, 0.13) 45% 46%,
      transparent 47% 54%,
      rgba(201, 149, 62, 0.08) 55% 56%,
      transparent 57%
    );
}

.hero__layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.02fr)
    minmax(410px, 1.1fr)
    minmax(290px, 0.66fr);
  align-items: center;
  gap: 26px;
}

.hero-copy {
  padding: 10px 4px;
}

.hero-title {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.65vw, 5.15rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.hero-title em {
  display: block;
  margin-top: 5px;
  color: var(--color-gold-dark);
  font-weight: 400;
}

.hero-intro {
  max-width: 560px;
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 21px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 25px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border-right: 1px solid var(--color-border);
}

.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { border-right: 0; }
.proof-item__icon { color: var(--color-gold-dark); font-size: 1.35rem; }
.proof-item strong { display: block; font-family: var(--font-display); font-size: 0.82rem; }
.proof-item small { display: block; color: var(--color-muted); font-size: 0.61rem; line-height: 1.3; }

.hero-video-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.12 / 1;
  border: 1px solid rgba(201, 149, 62, 0.45);
  border-radius: 47% 47% 32px 32px;
  background: #d7c5ac;
  box-shadow: var(--shadow-card);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 12, 0.02), rgba(20, 16, 12, 0.2));
}

.video-toggle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-gold-dark);
  box-shadow: 0 18px 40px rgba(42, 30, 20, 0.2);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform var(--transition), background var(--transition);
}

.video-toggle:hover { transform: translate(-50%, -50%) scale(1.05); background: #fff; }
.video-toggle svg { width: 32px; fill: currentColor; stroke: currentColor; stroke-width: 2; }
.video-toggle__pause { display: none; }
.video-toggle.is-paused .video-toggle__play { display: block; }
.video-toggle.is-paused .video-toggle__pause { display: none; }
.video-toggle:not(.is-paused) .video-toggle__play { display: none; }
.video-toggle:not(.is-paused) .video-toggle__pause { display: block; }

.video-caption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(36, 26, 18, 0.56);
  color: #fff;
  backdrop-filter: blur(8px);
}

.video-caption span { font-family: var(--font-display); font-size: 1rem; }
.video-caption small { margin-top: 2px; color: rgba(255, 255, 255, 0.72); font-size: 0.7rem; }

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 4px;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--color-muted);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll-cue i {
  width: 1px;
  height: 24px;
  overflow: hidden;
  background: rgba(170, 118, 40, 0.25);
}

.hero-scroll-cue i::after {
  content: "";
  display: block;
  width: 100%;
  height: 9px;
  background: var(--color-gold-dark);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  from { transform: translateY(-12px); }
  to { transform: translateY(28px); }
}
@media (max-width: 1240px) {
  .main-nav { gap: 18px; }
  .main-nav__link,
  .nav-dropdown__trigger { font-size: 0.82rem; }
  .header-book { min-width: auto; padding-inline: 18px; }
  .hero__layout { grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr) minmax(270px, 0.72fr); gap: 18px; }
  .hero-title { font-size: clamp(2.75rem, 4.5vw, 4.5rem); }
  .hero-proof { grid-template-columns: repeat(2, 1fr); row-gap: 14px; }
  .proof-item:nth-child(2) { border-right: 0; }
  .location-details { gap: 28px 38px; }
}

@media (max-width: 1120px) {
  .hero { min-height: auto; padding-block: 24px 48px; }
  .hero__layout { grid-template-columns: 1fr 1fr; }
  .booking-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.75fr 1.8fr;
    gap: 18px 26px;
    align-items: start;
  }
  .booking-card__intro { grid-column: 1; }
  .booking-form { grid-column: 2; grid-row: 1 / 4; grid-template-columns: repeat(2, 1fr); }
  .phone-field,
  .form-message,
  .button--full { grid-column: 1 / -1; }
  .booking-card__privacy { grid-column: 2; }
  .hero-scroll-cue { display: none; }
  .service-carousel { height: 440px; }
  .service-slide { flex-basis: 64px; }
  .service-slide.is-active { flex-basis: calc(100% - 216px); }
  .about-clinic__grid { grid-template-columns: 1fr 1fr; }
  .editorial-copy { padding: 46px; }
  .editorial-image { min-height: 520px; }
  .treatment-story__grid { gap: 48px; }
  .appointment-section__grid { grid-template-columns: 0.8fr 1.2fr; gap: 50px; }
  .location-section { grid-template-columns: 1fr 0.85fr; }
  .location-details { grid-template-columns: 1fr; }
  .location-meta { grid-column: 1; }
}

@media (max-width: 980px) {
  :root { --header-height: 74px; }
  .site-header__inner { grid-template-columns: auto 1fr; }
  .main-nav {
    position: fixed;
    top: 84px;
    right: 14px;
    bottom: 14px;
    width: min(390px, calc(100% - 28px));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 24px;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateX(110%);
    transition: all var(--transition);
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateX(0); }
  .main-nav__link,
  .nav-dropdown__trigger { width: 100%; padding: 15px 0; border-bottom: 1px solid var(--color-border); text-align: left; }
  .main-nav__link::after,
  .nav-dropdown__trigger::after { display: none; }
  .nav-dropdown__trigger { justify-content: space-between; }
  .nav-dropdown__menu { position: static; width: 100%; max-height: 0; padding: 0; overflow: hidden; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-dropdown.is-open .nav-dropdown__menu { max-height: 300px; padding: 8px 0; }
  .nav-dropdown__menu a { padding-left: 14px; }
  .menu-toggle { display: grid; }
  .header-book { display: none; }

  .hero__layout { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-top: 10px; }
  .hero-title { font-size: clamp(2.8rem, 7vw, 4.6rem); }
  .hero-video-card { aspect-ratio: 1 / 1.08; }
  .booking-card { grid-template-columns: 1fr; }
  .booking-card__intro,
  .booking-card__privacy,
  .booking-form { grid-column: 1; grid-row: auto; }

  .services-showcase { padding-bottom: 58px; }
  .service-carousel { height: 410px; padding-inline: 16px; gap: 6px; }
  .service-slide { flex-basis: 54px; }
  .service-slide.is-active { flex-basis: calc(100% - 180px); }
  .service-slide__content { right: 22px; bottom: 22px; left: 22px; }

  .about-clinic,
  .treatment-story,
  .why-section,
  .partners-section,
  .testimonials-section,
  .appointment-section { padding-block: 68px; }

  .about-clinic__grid,
  .treatment-story__grid { grid-template-columns: 1fr; }
  .editorial-image--about { border-radius: 0; }
  .editorial-image--treatment { order: -1; width: min(100% - 42px, 760px); margin-inline: auto; min-height: 520px; }
  .editorial-copy { padding: 50px 28px; }
  .editorial-copy--compact { width: min(100% - 42px, 760px); margin-inline: auto; padding: 0; }

  .why-cards { grid-template-columns: 1fr 1fr; }
  .why-card { min-height: 255px; padding: 26px 24px 30px; }
  .why-card:nth-child(2) { border-right: 0; }
  .why-card:nth-child(-n + 2) { border-bottom: 1px solid rgba(86, 76, 67, 0.14); }
  .why-card__icon { width: 68px; height: 68px; flex-basis: 68px; }
  .why-card__icon svg { width: 39px; height: 39px; }
.appointment-section__grid { grid-template-columns: 1fr; }
  .appointment-intro { max-width: 680px; }
  .appointment-form { max-width: 780px; }

  .location-section { grid-template-columns: 1fr; }
  .location-details { grid-template-columns: 1fr 1fr; padding: 58px 32px; }
  .location-meta { grid-column: 2; }
  .location-map,
  .location-map iframe { min-height: 370px; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 24px, var(--shell)); }
  .site-header { padding: 7px 0; }
  .site-header__inner { min-height: 60px; padding: 4px 7px 4px 14px; border-radius: 18px; }
  .brand__logo { width: 155px; }
  .icon-button { width: 38px; height: 38px; }
  .icon-button:first-child { display: none; }
  .header-actions { gap: 4px; }
  .menu-toggle { width: 40px; }

  .hero { min-height: auto; padding-top: 18px; }
  .hero__layout { grid-template-columns: 1fr; gap: 18px; }
  .hero-copy { text-align: center; }
  .hero-intro { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-proof { max-width: 520px; margin-inline: auto; }
  .proof-item { justify-content: center; }
  .hero-video-card { order: -1; max-height: 520px; border-radius: 42% 42% 26px 26px; }
  .video-toggle { width: 76px; height: 76px; }
  .video-caption { left: 16px; bottom: 14px; }
  .booking-card { padding: 20px; border-radius: 22px; }
  .booking-form { grid-template-columns: 1fr; }
  .phone-field,
  .form-message,
  .button--full { grid-column: auto; }

  .section-heading { width: min(100% - 28px, 620px); }
  .services-showcase { padding-top: 42px; }
  .service-carousel {
    height: auto;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    gap: 12px;
    padding: 0 16px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .service-carousel::-webkit-scrollbar { display: none; }
  .service-slide,
  .service-slide.is-active { min-height: 430px; flex-basis: auto; scroll-snap-align: center; filter: none; }
  .service-slide__content { opacity: 1; transform: none; }
  .service-slide:not(.is-active)::after { display: none; }
  .service-carousel__controls { display: none; }

  .about-clinic,
  .treatment-story,
  .why-section,
  .partners-section,
  .testimonials-section,
  .appointment-section { padding-block: 56px; }

  .editorial-image { min-height: 430px; }
  .editorial-image--treatment { width: calc(100% - 24px); min-height: 430px; border-radius: 24px; }
  .editorial-copy,
  .editorial-copy--compact { width: auto; padding: 38px 20px 0; }
  .about-clinic .editorial-copy { padding-bottom: 10px; }
  .editorial-copy h2 { font-size: clamp(2rem, 10vw, 3.1rem); }
  .editorial-facts { grid-template-columns: 1fr; }
  .editorial-image figcaption { align-items: start; flex-direction: column; }
  .editorial-image figcaption strong { text-align: left; }

  .section-heading--left { width: auto; padding-inline: 0; }
  .why-cards { grid-template-columns: 1fr; }
  .why-cards article { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(86, 76, 67, 0.14); }
  .why-cards article:last-child { border-bottom: 0; }
.partner { min-height: 70px; transform: scale(0.9); }

  .testimonials-header { align-items: start; flex-direction: column; }
  .review-card { flex-basis: 100%; min-height: 330px; }
  .review-card footer { align-items: start; flex-direction: column; }

  .appointment-section__grid { gap: 38px; }
  .appointment-intro h2 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .appointment-contact-list > * { align-items: start; flex-direction: column; }
  .appointment-contact-list strong { text-align: left; }
  .appointment-form { padding: 20px; border-radius: 22px; }
  .appointment-form__row { grid-template-columns: 1fr; }

  .location-details { grid-template-columns: 1fr; padding: 52px 24px; }
  .location-meta { grid-column: 1; }
  .location-map,
  .location-map iframe { min-height: 320px; }
  .site-footer .shell { align-items: start; flex-direction: column; }
  .header-actions .icon-button { display: none; }
}

@media (max-width: 420px) {
  .hero-title { font-size: 2.65rem; }
  .hero-cta .button { width: 100%; }
  .proof-item { padding-inline: 5px; }
  .service-carousel { grid-auto-columns: 92%; }
  .service-slide,
  .service-slide.is-active { min-height: 390px; }
  .why-cards { grid-template-columns: 1fr; }
  .why-card {
    min-height: 0;
    padding: 24px 20px 27px;
    border-right: 0;
    border-bottom: 1px solid rgba(86, 76, 67, 0.14);
  }
  .why-card:last-child { border-bottom: 0; }
  .why-card:nth-child(-n + 2) { border-bottom: 1px solid rgba(86, 76, 67, 0.14); }
  .why-card__icon { width: 64px; height: 64px; flex-basis: 64px; }
  .why-card__icon svg { width: 36px; height: 36px; }
  .why-card h3 { margin-top: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero-video { display: none; }
  .hero-video-card { background: url("../../assets/images/home/hero-desktop.webp") center / cover no-repeat; }
  .reveal-on-scroll { opacity: 1; transform: none; }
}
/* =====================================================
   ISHRAQ CLINIC — DEVICE & RESPONSIVE STABILITY
   Loaded last to prevent horizontal page overflow and
   provide reliable layouts for iPhone 12+, Android and iPad.
===================================================== */

/* ---------- Global viewport protection ---------- */

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}





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



img,
video,
iframe,
svg,
canvas,
input,
select,
textarea,
button {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p,
li,
a,
span,
strong,
small,
blockquote,
figcaption {
  overflow-wrap: anywhere;
}

/* Horizontal components scroll inside themselves, never the page. */
.service-carousel,
.partner-marquee,
.testimonial-viewport,
.treatment-category-nav__inner {
  max-width: 100%;
  overscroll-behavior-x: contain;
}

/* Decorative shapes must never increase the document width. */
.hero,
.services-showcase,
.editorial-section,
.about-clinic,
.treatment-story,
.why-section,
.partners-section,
.testimonials-section,
.appointment-section,
.location-section,
.treatment-page-hero,
.category-highlight,
.treatment-listing,
.other-treatments {
  overflow-x: clip;
}

/* =====================================================
   Compact desktop / iPad landscape header
===================================================== */

@media (max-width: 1080px) {
  :root {
    --header-height: 76px;
  }

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

  

  

  

  

  

  

  

  /* Keep the closed menu inside the viewport. The old translateX(110%)
     was the main source of horizontal page dragging on iPhone. */
  

  

  

  

  

  

  

  

  

  

  /* Forms must not trigger Safari auto zoom. */
  .field input,
  .field select,
  .appointment-form input,
  .appointment-form select,
  .appointment-form textarea {
    font-size: 16px;
  }

  /* Tablet content grids */
  .hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
  }

  .hero-copy,
  .hero-video-card,
  .booking-card {
    min-width: 0;
    max-width: 100%;
  }

  .booking-card {
    grid-column: 1 / -1;
    width: 100%;
  }

  .appointment-section__grid,
  .location-section {
    grid-template-columns: 1fr;
  }

  .location-details {
    width: 100%;
  }
}

/* =====================================================
   Portrait tablets and large phones
===================================================== */

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 22px 0 46px;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

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

  .hero-video-card {
    width: min(100%, 700px);
    margin-inline: auto;
    aspect-ratio: 1.08 / 1;
  }

  .booking-card {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .booking-card__intro,
  .booking-form,
  .booking-card__privacy {
    grid-column: 1;
    grid-row: auto;
  }

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

  .phone-field,
  .form-message,
  .booking-form .button--full {
    grid-column: 1 / -1;
  }

  .editorial-section__grid,
  .about-clinic__grid,
  .treatment-story__grid,
  .treatment-page-hero__grid,
  .category-highlight__inner,
  .treatment-listing__heading {
    grid-template-columns: minmax(0, 1fr);
  }

  .editorial-visual,
  .editorial-panel,
  .treatment-page-hero__copy,
  .treatment-page-hero__visual {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .treatment-page-hero__visual {
    min-height: 520px;
  }

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

  .location-details {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    padding-inline: 28px;
  }

  .location-meta {
    grid-column: 2;
  }
}

/* =====================================================
   iPhone 12+ / modern mobile phones
===================================================== */

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

  

  

  

  

  

  /* Keep WhatsApp visible, hide only the phone and desktop CTA. */
  

  

  

  

  

  

  /* Hero */
  .hero {
    padding: 12px 0 40px;
  }

  .hero__layout {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .hero-video-card {
    order: -1;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 0.88 / 1;
    max-height: none;
    margin: 0;
    border-radius: 42% 42% 24px 24px;
  }

  .hero-copy,
  .booking-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .hero-copy {
    padding-inline: 0;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
    line-height: 0.98;
  }

  .hero-intro {
    max-width: 34rem;
    margin-inline: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-proof {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 0;
  }

  .proof-item {
    min-width: 0;
    justify-content: center;
    padding-inline: 8px;
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .video-toggle {
    width: 72px;
    height: 72px;
  }

  .video-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    max-width: calc(100% - 28px);
  }

  .booking-card {
    padding: 20px;
    border-radius: 22px;
  }

  .booking-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .phone-field,
  .form-message,
  .booking-form .button--full {
    grid-column: 1;
  }

  .phone-field,
  .appointment-phone {
    grid-template-columns: auto minmax(0, 1fr);
    min-width: 0;
  }

  .phone-field__prefix,
  .appointment-phone b {
    white-space: nowrap;
  }

  /* Services: horizontal scroll remains inside the component. */
  .service-carousel {
    width: 100%;
    max-width: 100%;
    grid-auto-columns: min(86%, 340px);
    padding-inline: 12px;
    scroll-padding-inline: 12px;
  }

  .service-slide,
  .service-slide.is-active {
    width: 100%;
    max-width: 100%;
  }

  .service-slide__content {
    right: 20px;
    left: 20px;
  }

  .service-slide__content strong {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  /* Editorial sections */
  .editorial-section__grid,
  .about-clinic__grid,
  .treatment-story__grid {
    gap: 28px;
  }

  .editorial-visual,
  .editorial-image,
  .editorial-image--treatment {
    width: 100%;
    max-width: 100%;
    height: min(122vw, 530px);
    min-height: 0;
    margin: 0;
    border-radius: 24px;
  }

  .editorial-panel,
  .editorial-copy,
  .editorial-copy--compact {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-inline: 0;
  }

  .editorial-panel h2,
  .editorial-copy h2 {
    font-size: clamp(2.2rem, 11vw, 3.35rem);
  }

  .editorial-facts,
  .editorial-facts--polished {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Why / partners / testimonials */
  .why-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .why-card,
  .why-cards article {
    width: 100%;
    min-width: 0;
    border-right: 0;
  }

  .partner-marquee {
    width: calc(100% + 24px);
    max-width: none;
    margin-left: -12px;
  }

  .testimonial-viewport,
  .testimonial-track,
  .review-card {
    max-width: 100%;
  }

  .review-card {
    flex-basis: 100%;
  }

  /* Appointment / location / footer */
  .appointment-section__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

  .appointment-form,
  .appointment-intro {
    width: 100%;
    max-width: 100%;
  }

  .appointment-form {
    padding: 20px;
    border-radius: 22px;
  }

  .appointment-form__row {
    grid-template-columns: minmax(0, 1fr);
  }

  .appointment-contact-list > * {
    align-items: flex-start;
    flex-direction: column;
  }

  .appointment-contact-list strong {
    max-width: 100%;
    text-align: left;
  }

  .location-section,
  .location-details {
    grid-template-columns: minmax(0, 1fr);
  }

  .location-details {
    padding: 48px 24px;
  }

  .location-meta {
    grid-column: 1;
  }

  .location-map,
  .location-map iframe {
    width: 100%;
    min-height: 320px;
  }

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

  /* Treatment pages */
  .treatment-page-hero {
    padding: 22px 0 46px;
  }

  .treatment-page-hero__grid,
  .category-highlight__inner,
  .treatment-listing__heading,
  .treatment-detail-grid,
  .other-treatments__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .treatment-page-hero__copy,
  .treatment-page-hero__visual {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .treatment-page-hero__copy {
    text-align: center;
  }

  .treatment-page-hero__copy h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .treatment-page-hero__visual {
    min-height: 0;
    aspect-ratio: 0.88 / 1;
    border-radius: 42% 42% 24px 24px;
  }

  .treatment-page-hero__visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .treatment-category-nav {
    top: var(--header-height);
    max-width: 100%;
  }

  .treatment-category-nav__inner {
    width: 100%;
    padding-inline: 8px;
    scroll-padding-inline: 8px;
  }

  .treatment-category-nav__link {
    min-width: min(156px, 46vw);
    padding: 14px 14px;
  }

  .category-highlight__inner {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .category-highlight__list {
    grid-template-columns: minmax(0, 1fr);
  }

  .treatment-detail-card,
  .other-treatments__grid a {
    min-width: 0;
    max-width: 100%;
  }
}

/* iPhone 12/13 mini and compact Android devices. */
@media (max-width: 390px) {
  

  

  

  

  .hero-title {
    font-size: clamp(2.35rem, 12.5vw, 3rem);
  }

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

  .service-carousel {
    grid-auto-columns: 91%;
    padding-inline: 10px;
  }

  .booking-card,
  .appointment-form {
    padding: 17px;
  }
}

/* Landscape phones: keep content usable without huge vertical elements. */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 520px) {
  

  .hero-video-card,
  .treatment-page-hero__visual {
    max-height: 78dvh;
    aspect-ratio: 16 / 10;
    border-radius: 28px;
  }
}
/* =====================================================
   ISHRAQ CLINIC — COMPLETE RESPONSIVE HEADER
===================================================== */

:root {
  --site-header-bottom: 86px;
  --mobile-header-space: 86px;
}

html {
  scroll-padding-top: 100px;
}

/* =====================================================
   Header shell
===================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 2100;

  width: 100%;
  max-width: 100%;

  padding: 10px 0;

  background: rgba(251, 248, 243, 0.88);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transition:
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 243, 0.96);
  box-shadow: 0 12px 35px rgba(67, 47, 27, 0.08);
}

.site-header__inner {
  position: relative;

  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;

  min-height: 66px;
  gap: 30px;

  padding: 6px 18px 6px 24px;

  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.94);

  box-shadow:
    0 10px 35px rgba(80, 55, 29, 0.07),
    0 1px 0 rgba(171, 126, 54, 0.05);
}

/* =====================================================
   Brand
===================================================== */

.brand {
  display: flex;
  align-items: center;

  min-width: 0;
  flex-shrink: 0;

  text-decoration: none;
}

.brand__logo {
  display: block;

  width: 214px;
  max-width: 100%;
  height: auto;

  object-fit: contain;
  object-position: left center;
}

/* =====================================================
   Desktop navigation
===================================================== */

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 0;
  gap: clamp(18px, 1.7vw, 28px);
}

.main-nav__link,
.nav-dropdown__trigger {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 10px 0;

  border: 0;

  background: transparent;
  color: #4f473f;

  font: inherit;
  font-size: 0.9rem;
  font-weight: 560;
  line-height: 1;

  text-decoration: none;
  white-space: nowrap;

  cursor: pointer;

  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.main-nav__link::after,
.nav-dropdown__trigger::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;

  height: 1px;

  background: var(--color-gold, #b57d26);

  transform: scaleX(0);
  transform-origin: center;

  transition: transform 220ms ease;
}

.main-nav__link:hover,
.main-nav__link.is-active,
.nav-dropdown__trigger:hover,
.nav-dropdown__trigger.is-active,
.nav-dropdown.is-open .nav-dropdown__trigger {
  color: var(--color-gold-dark, #9b681d);
}

.main-nav__link:hover::after,
.main-nav__link.is-active::after,
.nav-dropdown__trigger:hover::after,
.nav-dropdown__trigger.is-active::after,
.nav-dropdown.is-open .nav-dropdown__trigger::after {
  transform: scaleX(1);
}

/* =====================================================
   Treatments dropdown
===================================================== */

.nav-dropdown {
  position: relative;
  min-width: 0;
}

.nav-dropdown__trigger {
  gap: 6px;
}

.nav-dropdown__trigger svg {
  display: block;

  width: 16px;
  height: 16px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform 220ms ease;
}

.nav-dropdown:hover .nav-dropdown__trigger svg,
.nav-dropdown:focus-within .nav-dropdown__trigger svg,
.nav-dropdown.is-open .nav-dropdown__trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  z-index: 2300;

  width: 310px;
  max-width: calc(100vw - 24px);

  padding: 10px;

  border: 1px solid rgba(180, 145, 96, 0.17);
  border-radius: 19px;

  background: rgba(255, 255, 255, 0.99);

  box-shadow:
    0 25px 65px rgba(67, 48, 28, 0.14),
    0 5px 18px rgba(67, 48, 28, 0.06);

  opacity: 0;
  visibility: hidden;

  transform: translate(-50%, 12px) scale(0.98);
  transform-origin: top center;

  pointer-events: none;

  transition:
    opacity 220ms ease,
    visibility 220ms ease,
    transform 220ms ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;

  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}

.nav-dropdown__menu::before {
  content: "";

  position: absolute;
  top: -6px;
  left: 50%;

  width: 12px;
  height: 12px;

  border-top: 1px solid rgba(180, 145, 96, 0.17);
  border-left: 1px solid rgba(180, 145, 96, 0.17);

  background: #ffffff;

  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown__menu a {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;

  width: 100%;
  min-width: 0;

  gap: 10px;
  padding: 12px 13px;

  border-radius: 13px;

  color: #625950;
  text-decoration: none;

  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-dropdown__menu a + a {
  margin-top: 2px;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  background: linear-gradient(
    135deg,
    rgba(249, 241, 226, 0.98),
    rgba(255, 253, 248, 1)
  );

  color: var(--color-gold-dark, #9b681d);
  transform: translateX(2px);
}

.nav-dropdown__number {
  display: grid;
  place-items: center;

  width: 28px;
  height: 28px;

  border: 1px solid rgba(181, 125, 38, 0.18);
  border-radius: 50%;

  background: #fffaf1;
  color: var(--color-gold-dark, #9b681d);

  font-size: 0.66rem;
  font-weight: 700;
}

.nav-dropdown__text {
  display: block;
  min-width: 0;
}

.nav-dropdown__menu strong {
  display: block;

  color: inherit;

  font-size: 0.87rem;
  font-weight: 650;
  line-height: 1.25;
}

.nav-dropdown__menu small {
  display: block;

  margin-top: 3px;

  color: #958b82;

  font-size: 0.7rem;
  line-height: 1.25;
}

/* =====================================================
   Header actions
===================================================== */

.header-actions {
  display: flex;
  align-items: center;

  min-width: 0;
  flex-shrink: 0;

  gap: 10px;
}

.icon-button {
  position: relative;

  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  flex: 0 0 44px;

  width: 44px;
  height: 44px;

  padding: 0;

  border: 1px solid rgba(168, 132, 81, 0.2);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.98);
  color: #6c6258;

  box-shadow: 0 5px 16px rgba(77, 59, 38, 0.045);

  overflow: hidden;
  text-decoration: none;

  transition:
    transform 200ms ease,
    border-color 200ms ease,
    color 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease;
}

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

  border-color: rgba(181, 125, 38, 0.44);
  color: var(--color-gold-dark, #9b681d);

  box-shadow: 0 10px 24px rgba(101, 73, 36, 0.12);
}

.icon-button:active {
  transform: translateY(0) scale(0.96);
}

.icon-button:focus-visible,
.menu-toggle:focus-visible,
.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(194, 143, 55, 0.25);
  outline-offset: 3px;
}

.icon-button svg {
  display: block;

  width: 20px;
  height: 20px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;

  pointer-events: none;
}

.icon-button__image {
  display: block;

  width: 25px;
  height: 25px;

  object-fit: contain;
  object-position: center;

  pointer-events: none;
  user-select: none;

  transition: transform 200ms ease;
}

.icon-button__image--whatsapp {
  width: 26px;
  height: 26px;
}

.icon-button--whatsapp {
  display: inline-flex !important;

  border-color: rgba(37, 211, 102, 0.22);

  background: linear-gradient(145deg, #ffffff, #f2fff6);
  color: #20b963;
}

.icon-button--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.48);

  background: linear-gradient(145deg, #ffffff, #eafff1);

  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.15);
}

.icon-button--whatsapp:hover .icon-button__image {
  transform: scale(1.09) rotate(-3deg);
}

.icon-button--phone {
  display: inline-flex !important;
}

.icon-button--phone:hover {
  background: #fffaf1;
}

.header-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;
  gap: 9px;
  padding-inline: 22px;

  border-radius: 999px;
  white-space: nowrap;

  box-shadow: 0 9px 22px rgba(181, 125, 38, 0.17);
}

.header-book svg {
  width: 18px;
  height: 18px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =====================================================
   Mobile menu trigger
===================================================== */

.menu-toggle {
  display: none;
  place-content: center;

  flex: 0 0 44px;

  width: 44px;
  height: 44px;

  gap: 6px;
  padding: 0;

  border: 1px solid rgba(168, 132, 81, 0.2);
  border-radius: 50%;

  background: #ffffff;
  cursor: pointer;

  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.menu-toggle:hover {
  border-color: rgba(181, 125, 38, 0.45);
  box-shadow: 0 8px 20px rgba(80, 55, 29, 0.1);
}

.menu-toggle span {
  display: block;

  width: 23px;
  height: 1.5px;

  background: var(--color-text, #332a22);

  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* =====================================================
   Backdrop and floating WhatsApp
===================================================== */

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2050;

  display: none;

  background: rgba(40, 31, 23, 0.26);

  opacity: 0;
  pointer-events: none;

  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);

  transition: opacity 220ms ease;
}

body.menu-open .mobile-nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.floating-whatsapp {
  display: none;
}

/* =====================================================
   Smaller desktop
===================================================== */

@media (max-width: 1200px) {
  .site-header__inner {
    gap: 20px;
  }

  .brand__logo {
    width: 185px;
  }

  .main-nav {
    gap: 18px;
  }

  .header-book {
    padding-inline: 18px;
  }
}

/* =====================================================
   Tablet and mobile
===================================================== */

@media (max-width: 1080px) {
  html {
    scroll-padding-top: calc(var(--mobile-header-space) + 16px);
  }

  body {
    padding-top: var(--mobile-header-space);
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;

    z-index: 2100;

    padding:
      max(7px, env(safe-area-inset-top, 0px))
      max(12px, env(safe-area-inset-right, 0px))
      7px
      max(12px, env(safe-area-inset-left, 0px));

    background: rgba(251, 248, 243, 0.93);
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;

    width: 100% !important;
    max-width: 100% !important;

    min-height: 62px;
    gap: 10px;

    margin: 0;
    padding: 6px 9px 6px 16px;

    border-radius: 20px;
  }

  .brand {
    min-width: 0;
    overflow: hidden;
  }

  .brand__logo {
    width: min(190px, 43vw);
  }

  .header-actions {
    gap: 7px;
  }

  .header-book {
    display: none !important;
  }

  .menu-toggle {
    display: grid !important;
  }

  .main-nav {
    position: fixed;

    top: calc(var(--site-header-bottom) + 8px);
    right: max(12px, env(safe-area-inset-right, 0px));
    left: max(12px, env(safe-area-inset-left, 0px));

    z-index: 2200;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;

    width: auto;
    max-width: none;
    max-height: calc(
      100dvh -
      var(--site-header-bottom) -
      20px -
      env(safe-area-inset-bottom, 0px)
    );

    gap: 4px;
    margin: 0;
    padding: 11px;

    border: 1px solid rgba(180, 145, 96, 0.18);
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.995);

    box-shadow: 0 25px 65px rgba(67, 48, 28, 0.18);

    overflow-x: hidden;
    overflow-y: auto;

    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;

    opacity: 0;
    visibility: hidden;

    transform: translate3d(0, -10px, 0) scale(0.985);
    transform-origin: top center;

    pointer-events: none;

    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 220ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;

    transform: translate3d(0, 0, 0) scale(1);
    pointer-events: auto;
  }

  .main-nav__link,
  .nav-dropdown__trigger {
    justify-content: space-between;

    width: 100%;
    min-width: 0;
    min-height: 48px;

    padding: 13px 14px;

    border-radius: 11px;

    font-size: 0.93rem;
    line-height: 1.3;
    text-align: left;
  }

  .main-nav__link::after,
  .nav-dropdown__trigger::after {
    display: none;
  }

  .main-nav__link:hover,
  .main-nav__link.is-active,
  .nav-dropdown__trigger:hover,
  .nav-dropdown__trigger.is-active,
  .nav-dropdown.is-open .nav-dropdown__trigger {
    background: #fbf5e9;
    color: var(--color-gold-dark, #9b681d);
  }

  .nav-dropdown {
    width: 100%;
    max-width: 100%;
  }

  .nav-dropdown__menu {
    position: static;

    width: 100%;
    max-width: 100%;
    max-height: 0;

    margin: 0;
    padding: 0 6px;

    border: 0;
    border-radius: 13px;

    background: #fcfaf6;
    box-shadow: none;

    opacity: 1;
    visibility: visible;

    overflow: hidden;

    transform: none;
    pointer-events: none;

    transition:
      max-height 300ms ease,
      margin 300ms ease,
      padding 300ms ease;
  }

  .nav-dropdown__menu::before {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    max-height: 330px;

    margin: 4px 0 7px;
    padding: 7px;

    pointer-events: auto;
  }

  .nav-dropdown__menu a {
    grid-template-columns: 30px minmax(0, 1fr);

    min-height: 50px;
    padding: 10px 11px;

    transform: none;
  }

  .nav-dropdown__menu a:hover,
  .nav-dropdown__menu a:focus-visible {
    transform: none;
  }

  .mobile-nav-backdrop {
    display: block;
  }
}

/* =====================================================
   Phones
===================================================== */

@media (max-width: 680px) {
  .site-header {
    padding:
      max(6px, env(safe-area-inset-top, 0px))
      max(7px, env(safe-area-inset-right, 0px))
      6px
      max(7px, env(safe-area-inset-left, 0px));
  }

  .site-header__inner {
    min-height: 58px;
    gap: 6px;

    padding: 5px 6px 5px 11px;

    border-radius: 17px;
  }

  .brand__logo {
    width: clamp(120px, 35vw, 145px);
  }

  .header-actions {
    gap: 5px;
  }

  .header-actions .icon-button,
  .header-actions .icon-button--whatsapp,
  .header-actions .icon-button--phone {
    display: inline-flex !important;
  }

  .header-book {
    display: none !important;
  }

  .icon-button,
  .menu-toggle {
    flex: 0 0 39px;

    width: 39px;
    height: 39px;
  }

  .icon-button__image--whatsapp {
    width: 22px;
    height: 22px;
  }

  .icon-button svg {
    width: 18px;
    height: 18px;
  }

  .main-nav {
    top: calc(var(--site-header-bottom) + 7px);

    right: max(8px, env(safe-area-inset-right, 0px));
    left: max(8px, env(safe-area-inset-left, 0px));

    max-height: calc(
      100dvh -
      var(--site-header-bottom) -
      16px -
      env(safe-area-inset-bottom, 0px)
    );

    padding: 9px;
    border-radius: 17px;
  }

  .main-nav__link,
  .nav-dropdown__trigger {
    min-height: 46px;
    padding: 12px 13px;
    font-size: 0.9rem;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    max-height: 300px;
    padding: 6px;
  }

  .nav-dropdown__menu a {
    min-height: 48px;
    padding: 9px 10px;
  }

  .nav-dropdown__number {
    width: 27px;
    height: 27px;
  }

  .nav-dropdown__menu strong {
    font-size: 0.84rem;
  }

  .nav-dropdown__menu small {
    font-size: 0.68rem;
  }

  .floating-whatsapp {
    position: fixed;

    right: max(17px, env(safe-area-inset-right, 0px));
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));

    z-index: 1600;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    border: 3px solid #ffffff;
    border-radius: 50%;

    background: linear-gradient(145deg, #32dc72, #18b957);

    box-shadow:
      0 13px 32px rgba(14, 149, 70, 0.32),
      0 3px 10px rgba(42, 34, 27, 0.12);

    transition:
      transform 200ms ease,
      opacity 200ms ease,
      visibility 200ms ease;
  }

  .floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.04);
  }

  .floating-whatsapp:active {
    transform: scale(0.95);
  }

  .floating-whatsapp img {
    position: relative;
    z-index: 2;

    display: block;

    width: 31px;
    height: 31px;

    object-fit: contain;
  }

  .floating-whatsapp__pulse {
    position: absolute;
    inset: -7px;
    z-index: 1;

    border: 2px solid rgba(37, 211, 102, 0.42);
    border-radius: 50%;

    animation: floatingWhatsappPulse 2.4s ease-out infinite;
  }

  body.menu-open .floating-whatsapp {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* =====================================================
   iPhone 12 Pro and smaller
===================================================== */

@media (max-width: 390px) {
  .site-header__inner {
    padding-right: 5px;
    padding-left: 9px;
  }

  .brand__logo {
    width: clamp(116px, 33vw, 132px);
  }

  .header-actions {
    gap: 4px;
  }

  .icon-button,
  .menu-toggle {
    flex-basis: 37px;

    width: 37px;
    height: 37px;
  }

  .icon-button__image--whatsapp {
    width: 21px;
    height: 21px;
  }

  .icon-button svg {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 350px) {
  .brand__logo {
    width: 108px;
  }

  .header-actions {
    gap: 3px;
  }

  .icon-button,
  .menu-toggle {
    flex-basis: 35px;

    width: 35px;
    height: 35px;
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .main-nav {
    max-height: calc(100dvh - var(--site-header-bottom) - 12px);
  }

  .main-nav__link,
  .nav-dropdown__trigger {
    min-height: 42px;
    padding-block: 9px;
  }

  .nav-dropdown__menu a {
    min-height: 42px;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
  }
}

@keyframes floatingWhatsappPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.82);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

body.menu-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .main-nav,
  .nav-dropdown__menu,
  .nav-dropdown__trigger svg,
  .icon-button,
  .icon-button__image,
  .menu-toggle span,
  .mobile-nav-backdrop,
  .floating-whatsapp,
  .floating-whatsapp__pulse {
    animation: none;
    transition: none;
  }
}

/* =====================================================
   FINAL MOBILE MENU FIX
   يجب أن يكون في نهاية header.css
===================================================== */

@media (max-width: 1080px) {
  .site-header {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;

    z-index: 5000 !important;

    width: 100% !important;
    max-width: 100% !important;
  }

  .site-header__inner {
    position: relative !important;

    z-index: 5010 !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
  }

  /*
   * القائمة يجب أن تكون أعلى من الخلفية.
   */
  .main-nav {
    position: fixed !important;

    top: calc(
      var(--site-header-bottom, 78px) + 7px
    ) !important;

    right: max(
      10px,
      env(safe-area-inset-right, 0px)
    ) !important;

    left: max(
      10px,
      env(safe-area-inset-left, 0px)
    ) !important;

    bottom: auto !important;

    z-index: 5300 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;

    width: auto !important;
    max-width: none !important;

    max-height: calc(
      100dvh -
      var(--site-header-bottom, 78px) -
      20px -
      env(safe-area-inset-bottom, 0px)
    ) !important;

    padding: 10px !important;

    border: 1px solid rgba(181, 125, 38, 0.18) !important;
    border-radius: 18px !important;

    background: #ffffff !important;

    box-shadow:
      0 24px 60px rgba(55, 38, 22, 0.2) !important;

    overflow-x: hidden !important;
    overflow-y: auto !important;

    -webkit-overflow-scrolling: touch;

    opacity: 0 !important;
    visibility: hidden !important;

    transform:
      translate3d(0, -10px, 0)
      scale(0.985) !important;

    pointer-events: none !important;

    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 220ms ease !important;
  }

  .main-nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;

    transform:
      translate3d(0, 0, 0)
      scale(1) !important;

    pointer-events: auto !important;
  }

  .main-nav__link,
  .nav-dropdown__trigger {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    width: 100% !important;
    min-width: 0 !important;
    min-height: 47px !important;

    padding: 12px 13px !important;

    border-radius: 11px !important;

    color: #4f473f !important;

    font-size: 0.9rem !important;
    line-height: 1.3 !important;

    text-align: left !important;
  }

  .main-nav__link::after,
  .nav-dropdown__trigger::after {
    display: none !important;
  }

  .main-nav__link:hover,
  .main-nav__link.is-active,
  .nav-dropdown__trigger:hover,
  .nav-dropdown.is-open .nav-dropdown__trigger {
    background: #fbf5e9 !important;
    color: var(--color-gold-dark, #9b681d) !important;
  }

  /* Treatments */
  .nav-dropdown {
    width: 100% !important;
    max-width: 100% !important;
  }

  .nav-dropdown__menu {
    position: static !important;

    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    z-index: auto !important;

    width: 100% !important;
    max-width: 100% !important;
    max-height: 0 !important;

    margin: 0 !important;
    padding: 0 6px !important;

    border: 0 !important;
    border-radius: 13px !important;

    background: #fcfaf6 !important;
    box-shadow: none !important;

    opacity: 1 !important;
    visibility: visible !important;

    overflow: hidden !important;

    transform: none !important;

    pointer-events: none !important;

    transition:
      max-height 300ms ease,
      margin 300ms ease,
      padding 300ms ease !important;
  }

  .nav-dropdown__menu::before {
    display: none !important;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    max-height: 330px !important;

    margin: 4px 0 7px !important;
    padding: 6px !important;

    pointer-events: auto !important;
  }

  .nav-dropdown__menu a {
    display: grid !important;
    grid-template-columns:
      30px
      minmax(0, 1fr) !important;

    align-items: center !important;

    width: 100% !important;
    min-width: 0 !important;
    min-height: 48px !important;

    gap: 9px !important;

    padding: 9px 10px !important;

    border-radius: 10px !important;

    transform: none !important;
  }

  .nav-dropdown__text,
  .nav-dropdown__menu a > span:last-child {
    min-width: 0 !important;
  }

  .nav-dropdown__menu strong,
  .nav-dropdown__menu small {
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  /*
   * الخلفية خلف القائمة.
   * لا نستخدم blur حتى لا تصبح الصفحة ضبابية بالكامل.
   */
  .mobile-nav-backdrop {
    position: fixed !important;
    inset: 0 !important;

    z-index: 4900 !important;

    display: block !important;

    background: rgba(41, 31, 22, 0.34) !important;

    opacity: 0 !important;
    visibility: hidden !important;

    pointer-events: none !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    transition:
      opacity 220ms ease,
      visibility 220ms ease !important;
  }

  body.menu-open .mobile-nav-backdrop {
    opacity: 1 !important;
    visibility: visible !important;

    pointer-events: auto !important;
  }

  /*
   * الأزرار العلوية.
   */
  .header-actions {
    position: relative !important;

    z-index: 5020 !important;

    display: flex !important;
    align-items: center !important;

    gap: 6px !important;
  }

  .header-actions .icon-button,
  .header-actions .icon-button--whatsapp,
  .header-actions .icon-button--phone {
    display: inline-flex !important;
  }

  .header-book {
    display: none !important;
  }

  .menu-toggle {
    display: grid !important;
  }
}
/* =====================================================
   LANGUAGE SWITCHER
   Rectangular, readable and responsive.
===================================================== */

.language-switcher {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;
  min-width: 96px;
  height: 44px;

  gap: 7px;
  padding: 0 14px;

  border: 1px solid rgba(168, 132, 81, 0.24);
  border-radius: 12px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(255, 249, 239, 0.99)
    );

  color: var(--color-gold-dark);

  box-shadow:
    0 5px 16px rgba(77, 59, 38, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;

  cursor: pointer;
  -webkit-tap-highlight-color: transparent;

  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.language-switcher__icon {
  display: block;

  flex: 0 0 17px;
  width: 17px;
  height: 17px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;

  opacity: 0.82;

  pointer-events: none;
}

.language-switcher__label {
  display: inline-block;

  min-width: 0;

  color: inherit;

  font: inherit;
  line-height: 1;
  white-space: nowrap;

  pointer-events: none;
}

.language-switcher:hover {
  transform: translateY(-2px);

  border-color: rgba(181, 125, 38, 0.48);

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #fff6e7
    );

  box-shadow:
    0 10px 24px rgba(101, 73, 36, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.language-switcher:active {
  transform: translateY(0) scale(0.97);
}

.language-switcher:focus-visible {
  outline: 3px solid rgba(194, 143, 55, 0.24);
  outline-offset: 3px;
}

.language-switcher:disabled {
  opacity: 0.58;
  cursor: wait;
  transform: none;
}

/*
 * Keep the button's icon and text in a stable order,
 * even when the whole page changes to RTL.
 */
html[dir="rtl"] .language-switcher {
  direction: ltr;
}

/* Tablet and mobile header */
@media (max-width: 1080px) {
  .language-switcher {
    min-width: 88px;
    height: 41px;

    padding-inline: 12px;

    border-radius: 11px;

    font-size: 0.76rem;
  }

  .language-switcher__icon {
    flex-basis: 16px;
    width: 16px;
    height: 16px;
  }
}

/* Large and regular phones */
@media (max-width: 680px) {
  .language-switcher {
    min-width: 76px;
    height: 39px;

    gap: 5px;
    padding-inline: 10px;

    border-radius: 10px;

    font-size: 0.72rem;

    box-shadow: 0 4px 12px rgba(77, 59, 38, 0.05);
  }

  .language-switcher__icon {
    flex-basis: 15px;
    width: 15px;
    height: 15px;
  }
}

/* iPhone 12 Pro and similar */
@media (max-width: 390px) {
  .language-switcher {
    min-width: 66px;
    height: 37px;

    gap: 0;
    padding-inline: 8px;

    font-size: 0.7rem;
  }

  /*
   * On narrower phones we keep the full language name,
   * and remove only the decorative globe to save space.
   */
  .language-switcher__icon {
    display: none;
  }
}

/* Very small phones */
@media (max-width: 350px) {
  .language-switcher {
    min-width: 60px;
    height: 35px;

    padding-inline: 6px;

    border-radius: 9px;

    font-size: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .language-switcher {
    transition: none;
  }
}

/* Arabic typography and direction */
html[dir="rtl"] body {
  font-family: "Geeza Pro", Tahoma, Arial, sans-serif;
  letter-spacing: 0;
}
html[dir="rtl"] .hero-title,
html[dir="rtl"] .section-heading h2,
html[dir="rtl"] .panel h2,
html[dir="rtl"] .booking-card h2,
html[dir="rtl"] .editorial-panel h2,
html[dir="rtl"] .treatment-hero h1,
html[dir="rtl"] .treatment-page h1,
html[dir="rtl"] .treatment-page h2,
html[dir="rtl"] .testimonials-header h2,
html[dir="rtl"] .location-details h2 {
  font-family: "Geeza Pro", "Traditional Arabic", Tahoma, Arial, sans-serif;
  line-height: 1.22;
}
html[dir="rtl"] .eyebrow { letter-spacing: .12em; }
html[dir="rtl"] .brand__logo { object-position: right center; }
html[dir="rtl"] .main-nav__link,
html[dir="rtl"] .nav-dropdown__trigger,
html[dir="rtl"] .nav-dropdown__menu a,
html[dir="rtl"] .section-heading--left,
html[dir="rtl"] .editorial-panel,
html[dir="rtl"] .appointment-intro,
html[dir="rtl"] .location-details,
html[dir="rtl"] .treatment-hero__copy,
html[dir="rtl"] .treatment-card,
html[dir="rtl"] .review-card { text-align: right; }
html[dir="rtl"] .nav-dropdown__menu a:hover { transform: translateX(-2px); }
html[dir="rtl"] .field select {
  background-position: 13px 50%, 8px 50%;
  padding-right: 0;
  padding-left: 25px;
}
html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea { text-align: right; }
html[dir="rtl"] .phone-field,
html[dir="rtl"] .appointment-phone,
html[dir="rtl"] input[type="tel"] { direction: ltr; }
html[dir="rtl"] .field__icon { order: -1; }
html[dir="rtl"] .text-link:hover span { transform: translateX(-4px); }
html[dir="rtl"] .floating-whatsapp { right: auto; left: max(17px, env(safe-area-inset-left, 0px)); }
html[dir="rtl"] .service-slide__content,
html[dir="rtl"] .video-caption { text-align: right; }
html[dir="rtl"] .testimonial-track { direction: rtl; }
html[dir="rtl"] .editorial-treatment-list li { direction: rtl; }
html[dir="rtl"] .read-more-button__icon { margin-right: 6px; margin-left: 0; }

@media (max-width: 1080px) {
  html[dir="rtl"] .main-nav__link,
  html[dir="rtl"] .nav-dropdown__trigger { text-align: right !important; }
}

@media (max-width: 680px) {
  .language-switcher { flex-basis: 37px; width: 37px; height: 37px; font-size: .72rem; }
  html[dir="rtl"] .floating-whatsapp { left: max(14px, env(safe-area-inset-left, 0px)); }
}

@media (max-width: 390px) {
  .language-switcher { flex-basis: 35px; width: 35px; height: 35px; }
}

@media (prefers-reduced-motion: reduce) {
  .language-switcher { transition: none; }
}

/* =====================================================
   ARABIC RTL — WESTERN NUMBER ORDER
   Keep 0–9, phone numbers, dates, and times readable.
===================================================== */

html[dir="rtl"] .numeric-ltr,
html[dir="rtl"] [data-number-ltr],
html[dir="rtl"] [data-ltr],
html[dir="rtl"] .phone-field__prefix,
html[dir="rtl"] .appointment-phone > b,
html[dir="rtl"] input[type="tel"],
html[dir="rtl"] input[type="number"],
html[dir="rtl"] input[type="date"],
html[dir="rtl"] input[type="time"] {
  direction: ltr !important;
  unicode-bidi: isolate !important;
  text-align: left !important;
  font-family: var(--font-body), Arial, sans-serif;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  letter-spacing: normal;
}

html[dir="rtl"] .phone-field,
html[dir="rtl"] .appointment-phone {
  direction: ltr !important;
  unicode-bidi: isolate !important;
}

html[dir="rtl"] .phone-field input,
html[dir="rtl"] .appointment-phone input {
  direction: ltr !important;
  text-align: left !important;
}

html[dir="rtl"] input[type="tel"]::placeholder,
html[dir="rtl"] input[type="number"]::placeholder {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] a[href^="tel:"] .numeric-ltr,
html[dir="rtl"] a[href^="tel:"].numeric-ltr {
  display: inline-block;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  white-space: nowrap;
}

/* The native date/time controls should keep their familiar numeric order. */
html[dir="rtl"] input[type="date"]::-webkit-datetime-edit,
html[dir="rtl"] input[type="time"]::-webkit-datetime-edit {
  direction: ltr;
  unicode-bidi: isolate;
}
/* =====================================================
   PERFORMANCE — OFFSCREEN RENDERING AND MEDIA FALLBACKS
===================================================== */

.hero-video-card {
  background-color: #eee6db;
  background-image: url("../../assets/images/home/hero-desktop.webp");
  background-position: center;
  background-size: cover;
}

.hero-video-card.is-video-ready {
  background-image: none;
}

.hero-video-card.is-video-loading .video-toggle {
  cursor: progress;
}

.location-map {
  background: #eee9e2;
}

.location-map iframe:not([src]) {
  visibility: hidden;
}

@supports (content-visibility: auto) {
  .editorial-section,
  .why-section,
  .partners-section,
  .testimonials-section,
  .appointment-section,
  .location-section,
  .treatment-list-section,
  .treatment-page__content,
  .treatment-page__footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 820px;
  }
}

img[loading="lazy"] {
  content-visibility: auto;
}

@media (max-width: 820px) {
  .hero-video-card {
    background-image: url("../../assets/images/home/hero-desktop.webp");
  }
}
