/* Aesthetics International — premium-medical, surgeon-led prototype */

:root {
  --ink: #16181D;
  --ink-soft: #2A2C32;
  --ink-muted: #5A5C64;
  --porcelain: #FBFAF8;
  --mist: #EFEDEA;
  --mist-deep: #E3DFD8;
  --line: #E6E2DC;
  --line-strong: #D5D0C7;
  --bronze: #B79360;
  --bronze-deep: #8D6E40;
  --bronze-tint: #F5EFE3;
  --clinical: #1E3A5F;
  --green: #3D6B57;
  --error: #B23A48;

  --font-display: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --shadow-sm: 0 1px 2px rgba(22, 24, 29, 0.04), 0 1px 3px rgba(22, 24, 29, 0.06);
  --shadow-md: 0 8px 24px -8px rgba(22, 24, 29, 0.08), 0 4px 12px -2px rgba(22, 24, 29, 0.06);
  --shadow-lg: 0 24px 48px -16px rgba(22, 24, 29, 0.16), 0 12px 24px -8px rgba(22, 24, 29, 0.08);
}

/* Dark mode variant (Tweak) */
.theme-dark {
  --ink: #F5F2EC;
  --ink-soft: #DDD8CE;
  --ink-muted: #9B958A;
  --porcelain: #14151A;
  --mist: #1B1D23;
  --mist-deep: #232530;
  --line: #2B2D36;
  --line-strong: #3A3D48;
  --bronze: #C7A472;
  --bronze-deep: #B79360;
  --bronze-tint: #2A2417;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--porcelain);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

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

button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font-family: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ================================================================
   Typography
   ================================================================ */
.font-display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; }
.font-body { font-family: var(--font-body); }
.font-mono { font-family: var(--font-mono); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bronze-deep);
}
.theme-dark .eyebrow { color: var(--bronze); }

.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.02;
}
.h-script { font-style: italic; color: var(--bronze-deep); font-weight: 400; }
.theme-dark .h-script { color: var(--bronze); }

/* ================================================================
   Layout primitives
   ================================================================ */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
}

.grid { display: grid; gap: 24px; }
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }

.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}

/* ================================================================
   Top nav
   ================================================================ */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 248, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.theme-dark .nav-bar { background: rgba(20, 21, 26, 0.85); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-mark {
  height: 36px;
  width: auto;
}
.nav-logo-wordmark {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.nav-logo-wordmark-sub {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  margin-top: 4px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  position: relative;
  padding: 8px 0;
  transition: color 0.15s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--bronze);
}
.nav-link-caret { width: 9px; height: 9px; opacity: 0.5; }

.nav-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 4px 4px;
  gap: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.lang-pill button {
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--ink-muted);
  transition: 0.15s;
}
.lang-pill button.on {
  background: var(--ink);
  color: var(--porcelain);
}
.theme-dark .lang-pill button.on { background: var(--bronze); color: var(--porcelain); }

@media (max-width: 1100px) {
  .nav-links { display: none; }
}

/* ================================================================
   Mega menu (procedures)
   ================================================================ */
.mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--porcelain);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 40px 0 48px;
  z-index: 49;
}
.mega-inner { display: grid; grid-template-columns: 1fr 1fr 1fr 1.2fr; gap: 56px; }
.mega-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  font-weight: 500;
  margin-bottom: 16px;
}
.mega-col ul { list-style: none; }
.mega-col li { padding: 5px 0; }
.mega-col li button {
  font-size: 14px;
  color: var(--ink-soft);
  text-align: left;
  transition: 0.12s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mega-col li button:hover { color: var(--bronze-deep); transform: translateX(2px); }
.mega-feature {
  background: var(--mist);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--porcelain);
}
.mega-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,24,29,0.1) 0%, rgba(22,24,29,0.8) 100%),
              url('media/treatment-morpheus8.webp') center/cover;
  z-index: 0;
}
.mega-feature > * { position: relative; z-index: 1; }
.mega-feature .eyebrow { color: var(--bronze); }
.mega-feature h5 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.05;
  margin-top: 8px;
  letter-spacing: -0.01em;
}
.mega-feature p {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 6px;
  margin-bottom: 14px;
}

/* ================================================================
   Buttons
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
  position: relative;
}
.btn-primary {
  background: var(--ink);
  color: var(--porcelain);
}
.btn-primary:hover { background: var(--bronze-deep); transform: translateY(-1px); }

.btn-bronze {
  background: var(--bronze);
  color: #fff;
}
.btn-bronze:hover { background: var(--bronze-deep); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-text {
  background: transparent;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn-text:hover { color: var(--bronze-deep); border-color: var(--bronze-deep); }

.btn-icon-arrow {
  width: 14px; height: 14px;
  transition: transform 0.2s;
}
.btn:hover .btn-icon-arrow { transform: translateX(3px); }

.btn-sm { padding: 10px 18px; font-size: 12.5px; }
.btn-lg { padding: 18px 32px; font-size: 14px; }

/* ================================================================
   Hero
   ================================================================ */
.hero {
  position: relative;
  background: var(--porcelain);
  overflow: hidden;
}
.hero-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 720px;
  gap: 64px;
  padding: 80px 0;
}
.hero-text { max-width: 560px; }
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bronze-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--bronze);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  color: var(--bronze-deep);
  font-weight: 400;
}
.theme-dark .hero h1 em { color: var(--bronze); }
.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-top: 28px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-image-wrap {
  position: relative;
  height: 600px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--mist);
}
.hero-image {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 60%, rgba(22,24,29,0.25) 100%);
  pointer-events: none;
}

/* Hero meta strip (under image) */
.hero-meta {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--porcelain);
  z-index: 2;
}
.hero-meta-item { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.9; }

/* Hero variant: cinematic full-bleed */
.hero-cinematic {
  height: 90vh;
  min-height: 700px;
  max-height: 920px;
  position: relative;
  background: var(--ink);
  color: var(--porcelain);
  overflow: hidden;
}
.hero-cinematic-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,24,29,0.35) 0%, rgba(22,24,29,0.15) 35%, rgba(22,24,29,0.75) 100%),
              url('media/home-feature.webp') center/cover;
  z-index: 0;
}
.hero-cinematic .container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
}
.hero-cinematic h1 { color: var(--porcelain); max-width: 900px; }
.hero-cinematic h1 em { color: var(--bronze); }
.hero-cinematic .hero-sub { color: rgba(251,250,248,0.78); }
.hero-cinematic .hero-eyebrow { color: var(--bronze); }
.hero-cinematic .hero-eyebrow::before { background: var(--bronze); }

/* Vertical credentials strip */
.hero-cred-rail {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(251,250,248,0.7);
  writing-mode: vertical-rl;
  z-index: 2;
}

@media (max-width: 900px) {
  .hero-editorial {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 0;
  }
  .hero-image-wrap { height: 440px; order: -1; }
  .hero-cred-rail { display: none; }
}

/* ================================================================
   Trust strip
   ================================================================ */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  background: var(--porcelain);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.trust-item-num {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1;
}
.trust-item-label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  max-width: 140px;
  line-height: 1.4;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
}

/* ================================================================
   Section headers
   ================================================================ */
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.sec-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.015em;
  max-width: 600px;
}
.sec-head h2 em {
  font-style: italic;
  color: var(--bronze-deep);
}
.theme-dark .sec-head h2 em { color: var(--bronze); }
.sec-head p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 460px;
  align-self: end;
  padding-bottom: 8px;
}
@media (max-width: 720px) {
  .sec-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ================================================================
   Procedure area cards
   ================================================================ */
.area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.area-card {
  position: relative;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--porcelain);
  padding: 32px 28px 36px;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  overflow: hidden;
}
.area-card:last-child { border-right: 0; }
.area-card:hover { background: var(--mist); }
.area-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--bronze-deep);
  letter-spacing: 0.16em;
  margin-bottom: 24px;
}
.area-card-img {
  height: 220px;
  background: var(--mist-deep);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}
.area-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.area-card:hover .area-card-img img { transform: scale(1.05); }
.area-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 10px;
}
.area-card p {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.55;
}
.area-card-foot {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.area-card-arrow {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--porcelain);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.area-card:hover .area-card-arrow { background: var(--bronze-deep); transform: translateX(3px); }

@media (max-width: 1100px) {
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .area-card { border-right: 1px solid var(--line); }
  .area-card:nth-child(2n) { border-right: 0; }
}
@media (max-width: 600px) {
  .area-grid { grid-template-columns: 1fr; }
  .area-card { border-right: 0; min-height: auto; }
}

/* ================================================================
   By-concern chips
   ================================================================ */
.concern-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.concern-chip {
  border: 1px solid var(--line-strong);
  background: var(--porcelain);
  padding: 11px 18px;
  font-size: 13px;
  border-radius: 999px;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
}
.concern-chip:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--porcelain);
}
.concern-chip-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--bronze);
}

/* ================================================================
   Surgeon strip
   ================================================================ */
.surgeon-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.surgeon-feature-img {
  height: 640px;
  background: var(--mist);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.surgeon-feature-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.surgeon-feature-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--porcelain);
  padding: 18px 22px;
  border-radius: 2px;
  max-width: 280px;
}
.surgeon-feature-badge .label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  margin-bottom: 4px;
  font-weight: 500;
}
.surgeon-feature-badge .val {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
}

.surgeon-feature h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.surgeon-feature .credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.cred-item .label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  font-weight: 500;
  margin-bottom: 6px;
}
.cred-item .val { font-size: 14px; color: var(--ink); line-height: 1.4; }

@media (max-width: 900px) {
  .surgeon-feature { grid-template-columns: 1fr; }
  .surgeon-feature-img { height: 500px; }
}

/* ================================================================
   Doctor cards
   ================================================================ */
.doctor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .doctor-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .doctor-grid { grid-template-columns: repeat(2, 1fr); } }

.doctor-card {
  cursor: pointer;
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.25s;
}
.doctor-card:hover {
  border-color: var(--bronze);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.doctor-card-img {
  aspect-ratio: 1 / 1.05;
  background: var(--mist);
  overflow: hidden;
}
.doctor-card-img img { width: 100%; height: 100%; object-fit: cover; }
.doctor-card-body { padding: 18px 18px 22px; }
.doctor-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.doctor-card .role {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  margin-top: 6px;
  font-weight: 500;
}
.doctor-card .dha {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-muted);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* ================================================================
   Device strip
   ================================================================ */
.device-strip {
  background: var(--mist);
  padding: 56px 0;
}
.device-strip-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}
.device-list {
  display: flex;
  gap: 36px 48px;
  flex-wrap: wrap;
}
.device-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
  position: relative;
}
.device-name::after {
  content: "®";
  font-size: 9px;
  vertical-align: super;
  color: var(--ink-muted);
  font-style: normal;
}
.device-strip-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  max-width: 120px;
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 720px) {
  .device-strip-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ================================================================
   Before / After (consent-gated)
   ================================================================ */
.ba-shell {
  background: var(--mist);
  border-radius: 4px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.ba-shell.locked {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.ba-locked-msg .eyebrow { color: var(--bronze-deep); margin-bottom: 16px; }
.ba-locked-msg h3 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 18px;
}
.ba-locked-msg p { color: var(--ink-muted); margin-bottom: 24px; font-size: 14.5px; line-height: 1.6; }
.ba-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.ba-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-soft);
}
.ba-check-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--bronze);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.ba-placeholder {
  background: var(--porcelain);
  border: 1px dashed var(--line-strong);
  border-radius: 3px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  text-align: center;
}
.ba-placeholder-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze-deep);
}
.ba-placeholder p {
  font-size: 12px;
  color: var(--ink-muted);
  max-width: 240px;
  letter-spacing: 0.04em;
}

/* Consent gate */
.consent-gate {
  background: var(--ink);
  color: var(--porcelain);
  padding: 64px;
  border-radius: 4px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.consent-gate .icon {
  width: 56px; height: 56px;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze);
  margin-bottom: 24px;
}
.consent-gate h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
}
.consent-gate p { color: rgba(251,250,248,0.7); font-size: 14px; line-height: 1.65; margin-bottom: 24px; }
.consent-gate .terms {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  margin: 28px auto;
  max-width: 480px;
}
.consent-gate label {
  font-size: 12.5px;
  color: rgba(251,250,248,0.85);
  line-height: 1.55;
}
.consent-gate input[type=checkbox] {
  width: 16px; height: 16px;
  accent-color: var(--bronze);
  margin-top: 2px;
}

/* ================================================================
   Booking flow
   ================================================================ */
.booking-shell {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  min-height: 640px;
}
.booking-aside {
  background: var(--ink);
  color: var(--porcelain);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}
.booking-aside .eyebrow { color: var(--bronze); margin-bottom: 16px; }
.booking-aside h3 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 14px;
}
.booking-aside p {
  font-size: 13.5px;
  color: rgba(251,250,248,0.7);
  line-height: 1.6;
  margin-bottom: 32px;
}
.booking-stepper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 36px;
}
.booking-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  font-size: 13px;
  color: rgba(251,250,248,0.5);
  position: relative;
}
.booking-step.active { color: var(--porcelain); }
.booking-step.done { color: rgba(251,250,248,0.85); }
.booking-step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(251,250,248,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-family: var(--font-mono);
  flex-shrink: 0;
}
.booking-step.active .booking-step-num {
  border-color: var(--bronze);
  background: var(--bronze);
  color: var(--ink);
}
.booking-step.done .booking-step-num {
  border-color: var(--bronze);
  color: var(--bronze);
}
.booking-aside-contact {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(251,250,248,0.15);
  font-size: 12px;
  color: rgba(251,250,248,0.6);
  line-height: 1.7;
}
.booking-aside-contact strong { color: var(--porcelain); font-weight: 500; display: block; }

.booking-main {
  padding: 56px 56px 48px;
  display: flex;
  flex-direction: column;
}
.booking-step-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 8px;
}
.booking-step-sub {
  color: var(--ink-muted);
  font-size: 14px;
  margin-bottom: 36px;
}

/* Treatment select grid */
.treat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.treat-tile {
  border: 1px solid var(--line);
  background: var(--porcelain);
  border-radius: 2px;
  padding: 18px 18px;
  text-align: left;
  cursor: pointer;
  transition: 0.15s;
  display: flex;
  align-items: center;
  gap: 14px;
}
.treat-tile:hover { border-color: var(--bronze); }
.treat-tile.selected { border-color: var(--ink); background: var(--mist); box-shadow: inset 0 0 0 1px var(--ink); }
.treat-tile-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bronze-tint);
  color: var(--bronze-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.treat-tile-text {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
}
.treat-tile-text small {
  display: block;
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0.04em;
}

/* Surgeon selectors */
.surg-pick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.surg-pick-tile {
  display: flex;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: 0.15s;
  border-radius: 2px;
  background: var(--porcelain);
  text-align: left;
}
.surg-pick-tile.selected { border-color: var(--ink); background: var(--mist); box-shadow: inset 0 0 0 1px var(--ink); }
.surg-pick-tile:hover { border-color: var(--bronze); }
.surg-pick-tile img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--mist);
}
.surg-pick-tile-name {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 400;
}
.surg-pick-tile-role {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  margin-top: 4px;
}

/* Slot picker */
.slot-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 16px;
}
.slot-day {
  text-align: center;
  padding: 12px 4px;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.12s;
}
.slot-day:hover { background: var(--mist); }
.slot-day.selected {
  background: var(--ink);
  color: var(--porcelain);
}
.slot-day.disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; }
.slot-day-name { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; }
.slot-day-num { font-family: var(--font-display); font-size: 22px; font-weight: 400; line-height: 1; margin-top: 4px; }

.slot-times {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.slot-time {
  border: 1px solid var(--line);
  padding: 12px 0;
  text-align: center;
  font-size: 13px;
  cursor: pointer;
  border-radius: 2px;
  background: var(--porcelain);
  transition: 0.12s;
  font-variant-numeric: tabular-nums;
}
.slot-time:hover { border-color: var(--bronze); }
.slot-time.selected { background: var(--ink); color: var(--porcelain); border-color: var(--ink); }

/* Form fields */
.field-grid { display: grid; gap: 16px; }
.field-grid-2 { grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-grid-2 { grid-template-columns: 1fr; } }
.field-label {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
.field {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  padding: 8px 0 12px;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: 0.15s;
}
.field:focus { border-bottom-color: var(--ink); }
.field::placeholder { color: var(--ink-muted); opacity: 0.6; }
.field-textarea { resize: vertical; min-height: 84px; }

.booking-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.booking-summary {
  background: var(--bronze-tint);
  border: 1px solid var(--bronze);
  border-radius: 3px;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.theme-dark .booking-summary { background: rgba(199, 164, 114, 0.1); }
.booking-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  font-size: 13px;
}
.booking-summary-row .lbl {
  color: var(--bronze-deep);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  flex-shrink: 0;
}
.booking-summary-row .val { color: var(--ink); text-align: right; font-weight: 500; }

.booking-success {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0;
}
.booking-success-tick {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--bronze-tint);
  color: var(--bronze-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.booking-success h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 12px;
}
.booking-success p {
  color: var(--ink-muted);
  font-size: 14.5px;
  max-width: 440px;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .booking-shell { grid-template-columns: 1fr; }
  .booking-main { padding: 36px 28px; }
}

/* ================================================================
   Procedure detail page
   ================================================================ */
.proc-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 64px 0 80px;
  align-items: end;
}
.proc-hero-img {
  height: 520px;
  background: var(--mist);
  border-radius: 4px;
  overflow: hidden;
}
.proc-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.proc-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 18px 0 24px;
}
.proc-hero p { font-size: 16px; color: var(--ink-muted); line-height: 1.65; max-width: 520px; }

.proc-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.proc-meta .label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  font-weight: 500;
  margin-bottom: 6px;
}
.proc-meta .val {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink);
}

.proc-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  padding: 80px 0;
}
.proc-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}
.proc-sidebar ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.proc-sidebar li button {
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border-radius: 2px;
  font-size: 13px;
  color: var(--ink-muted);
  transition: 0.12s;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.proc-sidebar li button.active {
  background: var(--mist);
  color: var(--ink);
}
.proc-sidebar li button:hover { color: var(--ink); }
.proc-sidebar li button .num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--bronze-deep);
  width: 18px;
}

.proc-content section { margin-bottom: 64px; scroll-margin-top: 100px; }
.proc-content h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.proc-content p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 660px;
}
.proc-content .lede {
  font-size: 19px;
  color: var(--ink);
  line-height: 1.5;
  max-width: 640px;
  font-family: var(--font-display);
  font-weight: 400;
}

.proc-list { list-style: none; display: grid; gap: 12px; max-width: 580px; }
.proc-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.proc-list-num {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--bronze-deep);
  flex-shrink: 0;
  width: 30px;
  font-style: italic;
}

.risk-card {
  background: #FDF6F1;
  border-left: 3px solid var(--bronze);
  padding: 28px 32px;
  border-radius: 0 3px 3px 0;
  max-width: 700px;
}
.theme-dark .risk-card { background: rgba(199, 164, 114, 0.08); }
.risk-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.risk-card-head svg { color: var(--bronze-deep); }
.risk-card-head .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  font-weight: 600;
}
.risk-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.risk-card li {
  font-size: 13.5px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}
.risk-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--bronze-deep);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
  max-width: 720px;
}
.faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  gap: 24px;
}
.faq-q-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.2s;
}
.faq-item.open .faq-toggle {
  background: var(--ink);
  color: var(--porcelain);
  border-color: var(--ink);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding-bottom: 22px;
}
.faq-a p {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 620px;
}

@media (max-width: 900px) {
  .proc-hero { grid-template-columns: 1fr; gap: 32px; }
  .proc-hero-img { height: 360px; }
  .proc-body { grid-template-columns: 1fr; gap: 32px; }
  .proc-sidebar { position: static; }
  .proc-sidebar ul { display: flex; flex-direction: row; gap: 4px; overflow-x: auto; }
  .proc-sidebar li button { white-space: nowrap; }
  .proc-meta { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   Footer
   ================================================================ */
.foot {
  background: var(--ink);
  color: var(--porcelain);
  padding: 80px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}
.foot h4 {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot ul { list-style: none; }
.foot li {
  padding: 5px 0;
  font-size: 13.5px;
  color: rgba(251,250,248,0.65);
  cursor: pointer;
}
.foot li:hover { color: var(--bronze); }
.foot-brand h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
}
.foot-brand p {
  font-size: 13px;
  color: rgba(251,250,248,0.6);
  line-height: 1.6;
  max-width: 280px;
}
.foot-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(251,250,248,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: rgba(251,250,248,0.4);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-licence {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
}

@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   Mobile bottom bar
   ================================================================ */
.mob-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--porcelain);
  border-top: 1px solid var(--line);
  display: none;
  z-index: 40;
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  gap: 8px;
}
.mob-bar .btn { flex: 1; padding: 12px 14px; font-size: 12.5px; }
@media (max-width: 720px) {
  .mob-bar { display: flex; }
  body { padding-bottom: 72px; }
}

/* ================================================================
   Floating WhatsApp
   ================================================================ */
.wa-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 39;
  transition: transform 0.2s;
}
.wa-fab:hover { transform: scale(1.06); }
@media (max-width: 720px) { .wa-fab { bottom: 84px; right: 16px; width: 48px; height: 48px; } }

/* ================================================================
   Press band
   ================================================================ */
.press-band {
  background: var(--mist);
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.press-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.press-label {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  font-weight: 500;
}
.press-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--ink-soft);
}

/* ================================================================
   Testimonial / Patient story
   ================================================================ */
.story {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
  background: var(--mist);
  padding: 64px;
  border-radius: 4px;
}
.story-img {
  height: 420px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--mist-deep);
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.25;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}
.story-attr {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  font-weight: 500;
}

@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; padding: 40px; }
  .story-img { height: 320px; }
}

/* ================================================================
   Page transitions
   ================================================================ */
.page-anim {
  animation: pageIn 0.32s ease-out;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   Map
   ================================================================ */
.map-shell {
  position: relative;
  background: var(--mist);
  border-radius: 3px;
  overflow: hidden;
  height: 520px;
}
.map-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 45%, rgba(183, 147, 96, 0.12) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(22,24,29,0.025) 20px 21px),
    repeating-linear-gradient(-45deg, transparent 0 20px, rgba(22,24,29,0.025) 20px 21px),
    var(--mist);
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  background: var(--ink);
  color: var(--porcelain);
  padding: 12px 18px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-lg);
}
.map-pin::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--ink);
}
.map-pin-icon {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bronze);
  margin-right: 8px;
  box-shadow: 0 0 0 4px rgba(183, 147, 96, 0.25);
  vertical-align: middle;
}

/* ================================================================
   Contact split
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 3px;
  background: var(--porcelain);
}
.contact-card .label {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-card .val {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--ink);
}
.contact-card .sub {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 6px;
}
.contact-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* ================================================================
   Utility
   ================================================================ */
.muted { color: var(--ink-muted); }
.text-bronze { color: var(--bronze-deep); }
.theme-dark .text-bronze { color: var(--bronze); }
.italic { font-style: italic; }
.center { text-align: center; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mb-6 { margin-bottom: 64px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 64px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }
.hidden { display: none; }

/* RTL */
[dir="rtl"] { font-family: "Noto Kufi Arabic", var(--font-body); }
[dir="rtl"] .nav-link.active::after,
[dir="rtl"] .hero-eyebrow::before { transform: scaleX(-1); }
