:root {
    --pink: #e54360;
    --pink-soft: #fce8ed;
    --pink-tint: #fdf4f6;
    --ink: #1f1814;
    --ink-soft: #5a4e46;
    --ink-mid: #8a7f76;
    --bg: #faf7f2;
    --bg-warm: #f1ebe2;
    --bg-deeper: #ebe3d6;
    --cream: #fdfaf5;
    --rule: rgba(31, 24, 20, 0.08);
    --rule-mid: rgba(31, 24, 20, 0.15);
    --rule-light: rgba(255, 255, 255, 0.18);
    --radius: 14px;
    --radius-lg: 20px;
    --radius-sm: 8px;
    --radius-photo: 18px;
    --shadow-photo: 0 24px 50px -22px rgba(31, 24, 20, 0.28);
    --shadow-photo-hover: 0 30px 60px -22px rgba(31, 24, 20, 0.35);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.5;
  }
  .ar {
    font-family: 'Noto Naskh Arabic', serif;
    direction: rtl;
    line-height: 1.85;
  }
  img { max-width: 100%; display: block; }

  /* ——————————————————— NAV ——————————————————— */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 24px 48px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 48px;
    color: var(--ink); /* default: dark text (for pages with light hero) */
    transition: background .4s, backdrop-filter .4s, color .4s, border-color .4s, padding .4s;
    border-bottom: 1px solid transparent;
  }
  /* On pages with a dark hero, nav text starts white. */
  body.dark-hero nav:not(.scrolled) {
    color: #fff;
  }
  nav.scrolled {
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: var(--ink);
    border-bottom-color: var(--rule);
    padding: 16px 48px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
  }
  .logo-img {
    height: 44px;
    width: auto;
    transition: filter .4s;
  }
  /* Logo turns white only on dark-hero pages when at top */
  body.dark-hero nav:not(.scrolled) .logo-img {
    filter: brightness(0) invert(1);
  }

  .nav-links {
    display: flex;
    gap: 36px;
    justify-content: center;
    list-style: none;
  }
  .nav-links a {
    color: inherit;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    padding: 4px 0;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s cubic-bezier(.22,1,.36,1);
  }
  .nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .cta-book {
    font-size: 12px;
    font-weight: 500;
    padding: 12px 22px;
    background: var(--pink);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }
  .cta-book:hover {
    background: var(--ink);
    transform: translateY(-1px);
  }
  .cta-book::after {
    content: '→';
    transition: transform .3s;
  }
  .cta-book:hover::after { transform: translateX(3px); }

  /* Hamburger button (hidden on desktop) */
  .nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    color: inherit;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    z-index: 60;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    transition: transform .35s, opacity .25s;
  }
  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* Mobile overlay menu */
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 55;
    display: flex;
    flex-direction: column;
    padding: 100px 28px 32px;
    transform: translateY(-100%);
    transition: transform .5s cubic-bezier(.22,1,.36,1);
    visibility: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  body.nav-open .mobile-menu {
    transform: translateY(0);
    visibility: visible;
  }
  body.nav-open { overflow: hidden; } /* freeze page scroll behind the menu */

  /* Primary top-level links */
  .mobile-menu > a,
  .mobile-menu .mobile-section > .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid var(--rule);
    padding: 18px 0;
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(28px, 7vw, 42px);
    color: var(--ink);
    text-decoration: none;
    line-height: 1.1;
    letter-spacing: -0.02em;
    transition: color .25s;
    cursor: pointer;
    text-align: left;
  }
  .mobile-menu > a:hover,
  .mobile-menu .mobile-section > .mobile-toggle:hover { color: var(--pink); }

  /* Accordion chevron */
  .mobile-menu .mobile-toggle .chev {
    width: 14px;
    height: 14px;
    margin-left: 16px;
    position: relative;
    flex-shrink: 0;
    transition: transform .35s ease;
  }
  .mobile-menu .mobile-toggle .chev::before,
  .mobile-menu .mobile-toggle .chev::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 11px;
    height: 1.5px;
    background: currentColor;
    transform-origin: center;
  }
  .mobile-menu .mobile-toggle .chev::before { transform: translate(-78%, -50%) rotate(45deg); }
  .mobile-menu .mobile-toggle .chev::after  { transform: translate(-22%, -50%) rotate(-45deg); }
  .mobile-menu .mobile-section.open .mobile-toggle .chev { transform: rotate(180deg); }
  .mobile-menu .mobile-section.open .mobile-toggle { color: var(--pink); }

  /* Submenu (treatments) */
  .mobile-menu .mobile-submenu {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .45s ease;
  }
  .mobile-menu .mobile-section.open .mobile-submenu { grid-template-rows: 1fr; }
  .mobile-menu .mobile-submenu-inner {
    overflow: hidden;
  }
  .mobile-menu .mobile-submenu .sub-group {
    padding: 10px 0 18px;
    border-bottom: 1px solid var(--rule);
  }
  .mobile-menu .mobile-submenu .sub-group:last-child { border-bottom: 0; }
  .mobile-menu .mobile-submenu .sub-head {
    display: block;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 12px;
    color: var(--pink);
    padding: 16px 0 6px;
    letter-spacing: 0;
    text-decoration: none;
    border-bottom: 0;
    font-weight: 400;
  }
  .mobile-menu .mobile-submenu .sub-head:hover { color: var(--pink); }
  .mobile-menu .mobile-submenu a:not(.sub-head) {
    display: block;
    padding: 10px 0;
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 0;
    transition: color .25s, padding-left .25s;
  }
  .mobile-menu .mobile-submenu a:not(.sub-head):hover { color: var(--pink); padding-left: 8px; }
  .mobile-menu .mobile-submenu a em {
    font-style: italic;
    color: var(--ink-mid);
    font-size: 0.85em;
    margin-left: 2px;
  }

  /* Footer block */
  .mobile-menu .menu-foot {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--ink-soft);
  }
  .mobile-menu .menu-foot strong {
    color: var(--ink);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 4px;
  }
  .mobile-menu .menu-cta {
    margin-top: 24px;
    margin-bottom: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 26px;
    background: var(--pink);
    color: #fff !important;
    text-decoration: none;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    align-self: flex-start;
    border-bottom: 0 !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .mobile-menu .menu-cta:hover { padding-left: 26px; color: #fff; }

  /* ——————————————————— HERO ——————————————————— */
  .hero {
    height: 100vh;
    min-height: 720px;
    position: relative;
    overflow: hidden;
    background: #0a0a0d;
    padding: 0;
  }
  .hero-inner {
    position: relative;
    height: 100%;
    overflow: hidden;
  }

  /* Slides — each is absolutely positioned & cross-faded */
  .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s ease-in-out;
  }
  .hero-slide.active { opacity: 1; }

  .hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 45%;
    transform: scale(1.02);
    transition: transform 8s ease-out;
  }
  .hero-slide.active .hero-slide-bg {
    transform: scale(1.08);
  }
  .hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
      rgba(15,10,8,0.55) 0%,
      rgba(15,10,8,0.30) 35%,
      rgba(15,10,8,0.45) 70%,
      rgba(15,10,8,0.80) 100%);
    pointer-events: none;
  }

  /* Film grain overlay across whole hero */
  .hero-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.13 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.35;
    mix-blend-mode: overlay;
    z-index: 2;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    padding: 110px 56px 48px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    color: #fff;
  }

  .hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    opacity: 0;
    animation: fadeIn 1s 0.3s ease-out forwards;
  }
  .hero-meta .live-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .live-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--pink);
    display: inline-block;
    animation: livePulse 2.4s ease-in-out infinite;
  }
  @keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(229, 67, 96, 0.55); }
    50% { box-shadow: 0 0 0 8px rgba(229, 67, 96, 0); }
  }

  .hero-headline {
    align-self: center;
    max-width: 1100px;
    position: relative;
    min-height: 380px;
  }

  /* Slide-specific text. Cross-fade. Always absolute so they don't stack. */
  .hero-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .9s ease-out, transform .9s ease-out;
    pointer-events: none;
  }
  .hero-slide-content.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--pink);
    margin-bottom: 28px;
    padding: 8px 18px;
    background: rgba(229, 67, 96, 0.14);
    border: 1px solid rgba(229, 67, 96, 0.4);
    border-radius: 999px;
    backdrop-filter: blur(8px);
  }
  .eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--pink);
    border-radius: 50%;
  }

  h1.hero-h1 {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(56px, 8vw, 130px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    color: #fff;
  }
  h1.hero-h1 em { font-style: italic; color: var(--pink); }
  h1.hero-h1 .small {
    display: block;
    font-size: 0.55em;
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.95);
    letter-spacing: -0.015em;
    line-height: 1.1;
    margin-top: 0.18em;
  }

  /* The inspirational quote slide reads more editorial. */
  h1.hero-h1.hero-quote {
    font-style: italic;
    font-weight: 300;
    font-size: clamp(48px, 6vw, 92px);
    line-height: 1.08;
    letter-spacing: -0.025em;
    max-width: 920px;
  }
  h1.hero-h1.hero-quote .quote-mark {
    color: var(--pink);
    font-style: italic;
    opacity: 0.85;
    margin: 0 0.05em;
  }

  .subhead {
    margin-top: 32px;
    max-width: 560px;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
    font-weight: 300;
  }

  .cta-row {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .cta-primary {
    background: #fff;
    color: var(--ink);
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    transition: all .35s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.02em;
  }
  .cta-primary:hover {
    background: var(--pink);
    color: #fff;
    transform: translateY(-2px);
  }
  .cta-primary .arrow { transition: transform .35s; }
  .cta-primary:hover .arrow { transform: translateX(4px); }

  .cta-ghost {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 18px 22px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 999px;
    transition: all .35s;
    backdrop-filter: blur(8px);
  }
  .cta-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.55);
  }

  .hero-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--rule-light);
    opacity: 0;
    animation: fadeIn 1s 1.4s ease-out forwards;
  }

  .slide-controls {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
  }
  .slide-dots { display: flex; gap: 8px; }
  .slide-dots button {
    width: 28px; height: 2px;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    transition: background .3s;
    padding: 0;
    position: relative;
    overflow: hidden;
  }
  .slide-dots button.active { background: rgba(255,255,255,0.5); }
  .slide-dots button.active::after {
    content: '';
    position: absolute; inset: 0;
    background: var(--pink);
    transform: translateX(-100%);
    animation: slideTimer 6s linear forwards;
  }
  @keyframes slideTimer { to { transform: translateX(0); } }
  .slide-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(255,255,255,0.85);
  }
  .slide-num strong { color: #fff; font-weight: 400; }

  .scroll-cue {
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
  }
  .scroll-cue .line-track {
    width: 1px; height: 36px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
  }
  .scroll-cue .line-track::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateY(-100%);
    animation: scrollLine 2.2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0% { transform: translateY(-100%); }
    50% { transform: translateY(0%); }
    100% { transform: translateY(100%); }
  }

  .hero-arrows {
    justify-self: end;
    display: flex;
    gap: 10px;
  }
  .hero-arrows button {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    font-size: 16px;
    transition: all .3s;
    display: grid; place-items: center;
  }
  .hero-arrows button:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
  }

  @keyframes fadeIn { to { opacity: 1; } }

  /* ——————————————————— HERO BRIDGE ——————————————————— */
  .hero-bridge {
    position: relative;
    background: var(--bg);
    padding: 0 48px;
    z-index: 5;
  }
  .hero-bridge-inner {
    max-width: 1400px;
    margin: 0 auto;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
  }
  .bridge-marquee {
    background: var(--bg);
    padding: 20px 32px;
    border-radius: 999px;
    border: 1px solid var(--rule);
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(15px, 1.2vw, 17px);
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 24px;
    pointer-events: auto;
    box-shadow: 0 20px 60px -30px rgba(31, 24, 20, 0.2);
  }
  .bridge-marquee .dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--pink);
  }
  .bridge-marquee .label {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-mid);
    font-weight: 500;
  }

  /* ——————————————————— SECTION FOUNDATIONS ——————————————————— */
  section { padding: 140px 48px; }

  .section-label {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--pink);
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--pink);
  }
  .section-label.ink { color: var(--ink); }
  .section-label.ink::before { background: var(--ink); }

  h2 {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(40px, 5.5vw, 80px);
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--ink);
  }
  h2 em { font-style: italic; color: var(--pink); }

  /* ——————————————————— WELCOME ——————————————————— */
  .welcome {
    background: var(--bg);
    padding: 200px 0 180px;
    position: relative;
    overflow: hidden;
  }
  .welcome-grid {
    display: grid;
    grid-template-columns: minmax(48px, 1fr) minmax(0, 1100px) minmax(48px, 1fr);
    gap: 0;
  }
  .welcome-grid > * { grid-column: 2; }

  .welcome-title-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 60px;
    margin-bottom: 100px;
  }
  .welcome-title {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(120px, 18vw, 280px);
    line-height: 0.82;
    letter-spacing: -0.045em;
    color: var(--ink);
    margin-left: -8px;
  }
  .welcome-title em { font-style: italic; color: var(--pink); }
  .welcome-side-meta {
    text-align: right;
    padding-bottom: 32px;
  }
  .welcome-side-meta .num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--pink);
    font-size: 14px;
    margin-bottom: 12px;
  }
  .welcome-side-meta .stat {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 22px;
    color: var(--ink);
    line-height: 1.3;
    letter-spacing: -0.01em;
    max-width: 220px;
  }

  .welcome-ar-graphic {
    position: absolute;
    top: 180px;
    right: -60px;
    font-family: 'Noto Naskh Arabic', serif;
    font-weight: 300;
    font-size: clamp(140px, 18vw, 260px);
    line-height: 0.85;
    color: var(--pink);
    opacity: 0.08;
    direction: rtl;
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }

  .welcome-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    position: relative;
    z-index: 2;
  }

  .welcome-en {
    padding-top: 60px;
  }
  .welcome-en .lead {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 32px;
    letter-spacing: -0.005em;
  }
  .welcome-en p.body {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-soft);
  }
  .welcome-en p.body::first-letter {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-style: italic;
    font-size: 68px;
    line-height: 0.85;
    float: left;
    color: var(--pink);
    margin: 6px 14px -4px 0;
  }

  .welcome-ar {
    text-align: right;
    border-right: 1px solid var(--rule);
    padding-right: 60px;
    margin-right: 0;
    margin-left: -60px;
    direction: rtl;
  }
  .welcome-ar .lead-ar {
    font-family: 'Noto Naskh Arabic', serif;
    font-size: clamp(20px, 1.7vw, 26px);
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 28px;
    direction: rtl;
    text-align: right;
    font-weight: 500;
  }
  .welcome-ar p.body-ar {
    font-family: 'Noto Naskh Arabic', serif;
    font-size: 16px;
    line-height: 2.1;
    color: var(--ink-soft);
    direction: rtl;
    text-align: right;
  }

  /* ——————————————————— STORY ——————————————————— */
  .story {
    background: var(--cream);
    padding: 160px 0;
    border-top: 1px solid var(--rule);
  }
  .story-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 48px;
  }
  .story-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 100px;
    align-items: center;
  }
  .story-video {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #1a1a1a;
    cursor: pointer;
    box-shadow: 0 40px 100px -40px rgba(31, 24, 20, 0.35);
  }
  .story-video video,
  .story-video img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s ease;
  }
  .story-video:hover video,
  .story-video:hover img { transform: scale(1.04); }
  .story-video.playing:hover video { transform: none; }
  .story-video.playing { cursor: default; }
  .story-video .play-btn {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
    transition: opacity .4s;
  }
  .story-video.playing .play-btn,
  .story-video.playing .caption { opacity: 0; pointer-events: none; }
  .story-video .play-btn .circle {
    width: 88px; height: 88px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    display: grid; place-items: center;
    transition: transform .4s, background .4s;
  }
  .story-video:hover .circle {
    background: #fff;
    transform: scale(1.08);
  }
  .story-video .circle::before {
    content: '';
    width: 0; height: 0;
    border-left: 18px solid var(--ink);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 5px;
  }
  .story-video .caption {
    position: absolute;
    bottom: 24px; left: 24px;
    color: #fff;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 15px;
    transition: opacity .4s;
    z-index: 2;
  }

  .story-text h2 { margin-bottom: 28px; }
  .story-text h2 em {
    font-style: italic;
    color: var(--ink);
  }
  .story-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 28px 0;
    max-width: 480px;
  }
  .read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--ink);
    transition: all .3s;
  }
  .read-more:hover {
    border-color: var(--ink-mid);
    gap: 14px;
  }

  /* ——————————————————— PULL QUOTE ——————————————————— */
  .pull-quote {
    background: var(--bg);
    padding: 140px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .pull-quote::before {
    content: '"';
    position: absolute;
    top: 30px;
    right: 6vw;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 220px;
    line-height: 0.6;
    color: var(--pink);
    opacity: 0.1;
    pointer-events: none;
  }
  .pull-quote-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .pull-quote p {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(32px, 4.5vw, 64px);
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--ink);
  }
  .pull-quote p em {
    font-style: italic;
    color: var(--pink);
  }
  .pull-quote .attr {
    margin-top: 40px;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-mid);
    font-weight: 500;
  }

  /* ——————————————————— TEAM ——————————————————— */
  .team {
    background: var(--bg-warm);
    padding: 160px 0 180px;
    position: relative;
    overflow: hidden;
  }
  .team-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 48px;
  }

  .team-intro {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
  }
  .team-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 540px;
  }

  /* Fixed: less aggressive crop so the whole team is visible */
  .team-hero-photo {
    width: calc(100% - 96px);
    max-width: 1500px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin: 0 auto 120px;
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 80px -40px rgba(31, 24, 20, 0.25);
  }
  .team-hero-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 35%;
  }

  .team-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 56px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rule-mid);
  }
  .team-section-head h3 {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(32px, 4vw, 56px);
    color: var(--ink);
    letter-spacing: -0.02em;
  }
  .team-section-head h3 em {
    font-style: italic;
    color: var(--ink);
  }
  .team-section-head .meta {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--ink-mid);
  }

  .doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 32px;
    margin-bottom: 120px;
  }
  .doctor-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: block;
    position: relative;
  }
  .doctor-photo-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--bg-deeper);
    margin-bottom: 24px;
    border-radius: var(--radius-photo);
    box-shadow: var(--shadow-photo);
    transition: box-shadow .5s, transform .5s;
  }
  .doctor-card:hover .doctor-photo-wrap {
    box-shadow: var(--shadow-photo-hover);
    transform: translateY(-4px);
  }
  .doctor-photo-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 18%;
    transition: transform 1.2s cubic-bezier(.22,1,.36,1), filter .4s;
    filter: saturate(0.92) brightness(1.02);
  }
  .doctor-card:hover .doctor-photo-wrap img {
    transform: scale(1.04);
    filter: saturate(1.05) brightness(1.04);
  }

  .doctor-info {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: start;
  }
  .doctor-info .text-block { flex: 1; }
  .doctor-info .name {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(22px, 1.7vw, 26px);
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.01em;
  }
  .doctor-info .name-ar {
    font-family: 'Noto Naskh Arabic', serif;
    direction: rtl;
    text-align: left;
    color: var(--ink-mid);
    font-size: 14px;
    margin-top: 6px;
    font-weight: 400;
  }
  .doctor-info .meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--rule);
  }
  .doctor-info .role {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mid);
    font-weight: 500;
  }
  .doctor-info .role.lead { color: var(--pink); }
  .doctor-info .divider {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--rule-mid);
  }
  .doctor-info .degree {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-mid);
    font-weight: 500;
  }

  .doctor-arrow {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--rule-mid);
    display: grid;
    place-items: center;
    color: var(--ink);
    transition: all .4s;
    font-size: 13px;
    flex-shrink: 0;
    background: transparent;
  }
  .doctor-card:hover .doctor-arrow {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: rotate(-45deg);
  }

  .staff-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }
  .staff-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
  }
  .staff-photo {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--bg-deeper);
    border-radius: var(--radius-photo);
    box-shadow: var(--shadow-photo);
    margin-bottom: 16px;
    transition: box-shadow .5s, transform .5s;
  }
  .staff-card:hover .staff-photo {
    box-shadow: var(--shadow-photo-hover);
    transform: translateY(-3px);
  }
  .staff-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 18%;
    transition: transform 1.2s ease, filter .4s;
    filter: saturate(0.9);
  }
  .staff-card:hover .staff-photo img {
    transform: scale(1.04);
    filter: saturate(1);
  }
  .staff-info .name {
    font-family: 'Fraunces', serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink);
  }
  .staff-info .name-ar {
    font-family: 'Noto Naskh Arabic', serif;
    direction: rtl;
    text-align: left;
    font-size: 13px;
    color: var(--ink-mid);
    margin-top: 4px;
  }
  .staff-info .role {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mid);
    margin-top: 10px;
    font-weight: 500;
  }

  /* ——————————————————— TREATMENTS ——————————————————— */
  .treatments {
    background: var(--bg);
    padding: 120px 0;
    position: relative;
  }
  .treatments-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
  }

  .treatments-intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
  }
  .treatments-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 520px;
  }

  .treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .treatments-grid .tx-featured {
    grid-column: 1 / -1;
    aspect-ratio: 48 / 9;
  }
  .treatments-grid .tx-card {
    aspect-ratio: 5 / 2;
  }

  .tx-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: block;
    background: var(--bg-deeper);
    transition: transform .5s cubic-bezier(.22,1,.36,1);
  }
  .tx-card:hover { transform: translateY(-6px); }

  .tx-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .8s ease, filter .5s;
    filter: saturate(0.9);
  }
  .tx-card:hover .tx-bg {
    transform: scale(1.06);
    filter: saturate(1.05);
  }
  .tx-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
      rgba(20,15,12,0.1) 0%,
      rgba(20,15,12,0.4) 55%,
      rgba(20,15,12,0.85) 100%);
    transition: background .5s;
    pointer-events: none;
  }
  .tx-card:hover::after {
    background: linear-gradient(180deg,
      rgba(20,15,12,0.05) 0%,
      rgba(20,15,12,0.35) 55%,
      rgba(20,15,12,0.92) 100%);
  }
  .tx-card.tx-featured:hover::after,
  .tx-card.accent::after {
    background: linear-gradient(160deg,
      rgba(229,67,96,0.35) 0%,
      rgba(20,15,12,0.6) 55%,
      rgba(20,15,12,0.92) 100%);
  }
  .tx-card.accent .tx-bg { opacity: 0.4; }

  .tx-content {
    position: absolute;
    inset: 0;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    color: #fff;
  }
  .tx-featured .tx-content { padding: 28px 40px; }
  .tx-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
  }
  .tx-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.02em;
  }
  .tx-featured .tx-num { font-size: 15px; }
  .tx-tag {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
  }
  .tx-card.accent .tx-tag {
    background: var(--pink);
    border-color: var(--pink);
  }
  .tx-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
  }
  .tx-title {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 80%;
    font-size: clamp(22px, 1.8vw, 28px);
  }
  .tx-featured .tx-title {
    font-size: clamp(24px, 2.4vw, 36px);
    max-width: 70%;
  }
  .tx-title em {
    font-style: italic;
    color: rgba(255,255,255,0.85);
  }
  .tx-arrow {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    color: #fff;
    transition: all .4s;
    flex-shrink: 0;
    font-size: 16px;
  }
  .tx-card:hover .tx-arrow {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
    transform: rotate(-45deg);
  }

  /* ——————————————————— TESTIMONIALS ——————————————————— */
  .testimonials {
    background: var(--cream);
    padding: 180px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .testimonials-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
  }
  .testimonials::before {
    content: '"';
    position: absolute;
    top: -100px;
    left: -40px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 700px;
    line-height: 1;
    color: var(--pink);
    opacity: 0.05;
    pointer-events: none;
    user-select: none;
  }
  .testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
  }
  .testimonials-header h2 { max-width: 700px; }
  .testimonials-counter {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--ink-soft);
  }
  .testimonials-counter strong { color: var(--pink); font-weight: 400; }

  .testimonial-stage {
    position: relative;
    z-index: 2;
    min-height: 360px;
  }
  .testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s, transform .6s;
    pointer-events: none;
  }
  .testimonial-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  .testimonial-slide p {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(36px, 5.5vw, 84px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
    max-width: 1200px;
  }
  .testimonial-slide p .open-q,
  .testimonial-slide p .close-q {
    font-style: italic;
    color: var(--pink);
  }
  .testimonial-slide .attribution {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .testimonial-slide .attribution .name {
    font-size: 13px;
    letter-spacing: 0.22em;
    color: var(--ink);
    font-weight: 500;
    text-transform: uppercase;
  }
  .testimonial-slide .attribution .dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--pink);
  }
  .testimonial-slide .attribution .role {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--ink-mid);
  }

  .testimonials-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid var(--rule-mid);
    position: relative;
    z-index: 2;
  }
  .testimonial-progress {
    display: flex;
    gap: 8px;
    flex: 1;
    max-width: 200px;
  }
  .testimonial-progress span {
    flex: 1;
    height: 2px;
    background: var(--rule-mid);
    cursor: pointer;
    transition: background .3s;
    position: relative;
    overflow: hidden;
  }
  .testimonial-progress span.active::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--pink);
    animation: fillBar 7s linear forwards;
  }
  @keyframes fillBar {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
  }
  .testimonial-nav { display: flex; gap: 10px; }
  .testimonial-nav button {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--rule-mid);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    transition: all .3s;
    display: grid; place-items: center;
  }
  .testimonial-nav button:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
  }

  /* ——————————————————— TOUR ——————————————————— */
  .tour {
    background: var(--bg);
    padding: 80px 48px 180px;
    position: relative;
  }
  .tour-header {
    text-align: left;
    max-width: 1400px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 60px;
  }
  .tour-header h2 { margin-top: 12px; }
  .tour-header .right-meta {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--ink-mid);
    font-size: 16px;
    max-width: 320px;
    text-align: right;
    line-height: 1.5;
  }
  .tour-video {
    position: relative;
    aspect-ratio: 21 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #1a1a1a;
    cursor: pointer;
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 40px 100px -50px rgba(31, 24, 20, 0.4);
  }
  .tour-video video,
  .tour-video img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s ease;
  }
  .tour-video:hover video,
  .tour-video:hover img { transform: scale(1.03); }
  .tour-video.playing:hover video { transform: none; }
  .tour-video.playing { cursor: default; }
  .tour-video .play-btn {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
    transition: opacity .4s;
  }
  .tour-video.playing .play-btn { opacity: 0; pointer-events: none; }
  .tour-video .play-btn .circle {
    width: 96px; height: 96px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    display: grid; place-items: center;
    transition: transform .4s, background .4s;
  }
  .tour-video:hover .circle {
    background: var(--pink);
    transform: scale(1.08);
  }
  .tour-video .circle::before {
    content: '';
    width: 0; height: 0;
    border-left: 22px solid var(--ink);
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    margin-left: 6px;
    transition: border-color .4s;
  }
  .tour-video:hover .circle::before { border-left-color: #fff; }

  /* ——————————————————— APPOINTMENT ——————————————————— */
  .appointment {
    background: var(--bg-warm);
    position: relative;
    padding: 140px 48px;
  }
  .appointment-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
  }

  .appt-left .section-label { margin-bottom: 24px; }
  .appt-left h2 { margin-bottom: 32px; }
  .appt-left p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 48px;
    max-width: 440px;
  }

  .appt-info-block {
    padding: 28px 0;
    border-top: 1px solid var(--rule-mid);
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }
  .appt-info-block:last-child { border-bottom: 1px solid var(--rule-mid); }
  .appt-info-block .icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--pink-tint);
    color: var(--pink);
    display: grid;
    place-items: center;
    font-size: 18px;
    flex-shrink: 0;
    font-family: 'Fraunces', serif;
    font-style: italic;
  }
  .appt-info-block .info-content { flex: 1; }
  .appt-info-block .label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mid);
    font-weight: 500;
    margin-bottom: 6px;
  }
  .appt-info-block .value {
    font-family: 'Fraunces', serif;
    font-size: 17px;
    color: var(--ink);
    line-height: 1.45;
  }
  .appt-info-block .value .addr-line-1 {
    display: block;
    font-weight: 500;
    color: var(--ink);
  }
  .appt-info-block .value .addr-line-2 {
    display: block;
    color: var(--ink-soft);
    font-size: 15px;
    margin-top: 2px;
  }
  .appt-info-block .value .addr-note {
    display: block;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 12px;
    color: var(--ink-mid);
    margin-top: 8px;
    letter-spacing: 0;
  }
  .appt-info-block .value a.directions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pink);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid currentColor;
    transition: gap .25s;
  }
  .appt-info-block .value a.directions:hover { gap: 10px; }
  .appt-info-block .value a {
    color: inherit;
    text-decoration: none;
    transition: color .3s;
  }
  .appt-info-block .value a:hover { color: var(--pink); }

  .hours-table {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 24px;
    row-gap: 4px;
    font-family: 'Fraunces', serif;
    font-size: 16px;
    color: var(--ink);
    line-height: 1.4;
  }
  .hours-table .day {
    color: var(--ink-soft);
    font-style: italic;
  }
  .hours-table .time { font-weight: 500; }

  .appt-form-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 56px;
    box-shadow: 0 30px 80px -40px rgba(31, 24, 20, 0.2);
    border: 1px solid var(--rule);
  }
  .appt-form-card h3 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 26px;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .appt-form-card .form-sub {
    font-size: 14px;
    color: var(--ink-mid);
    margin-bottom: 40px;
  }
  .field-group { margin-bottom: 28px; }
  .field-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mid);
    font-weight: 500;
    margin-bottom: 12px;
  }
  .field-label .req { color: var(--pink); }
  .modern-input {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--rule-mid);
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    color: var(--ink);
    transition: border-color .3s;
  }
  .modern-input::placeholder {
    color: var(--ink-mid);
    opacity: 0.5;
  }
  .modern-input:focus {
    outline: none;
    border-bottom-color: var(--pink);
  }
  textarea.modern-input {
    resize: vertical;
    min-height: 80px;
    line-height: 1.6;
  }
  .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .custom-select { position: relative; width: 100%; }
  .custom-select-trigger {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--rule-mid);
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color .3s;
  }
  .custom-select-trigger:hover { border-bottom-color: var(--pink); }
  .custom-select.open .custom-select-trigger { border-bottom-color: var(--pink); }
  .custom-select-trigger .placeholder {
    color: var(--ink-mid);
    opacity: 0.7;
  }
  .custom-select-trigger.has-value .placeholder {
    color: var(--ink);
    opacity: 1;
  }
  .custom-select-trigger .chevron {
    width: 12px; height: 12px;
    border-right: 1.5px solid var(--ink-mid);
    border-bottom: 1.5px solid var(--ink-mid);
    transform: rotate(45deg);
    margin-bottom: 6px;
    transition: transform .3s;
  }
  .custom-select.open .chevron {
    transform: rotate(-135deg);
    margin-bottom: -2px;
    border-color: var(--pink);
  }
  .custom-select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px -20px rgba(31, 24, 20, 0.2);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .3s, transform .3s;
    z-index: 10;
  }
  .custom-select.open .custom-select-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  .custom-select-option {
    padding: 14px 20px;
    cursor: pointer;
    transition: background .2s, color .2s;
    font-size: 15px;
    border-bottom: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .custom-select-option:last-child { border-bottom: none; }
  .custom-select-option:hover {
    background: var(--pink-tint);
    color: var(--pink);
  }
  .custom-select-option.selected {
    background: var(--pink-tint);
    color: var(--pink);
    font-weight: 500;
  }
  .custom-select-option .check {
    opacity: 0;
    color: var(--pink);
    font-size: 14px;
  }
  .custom-select-option.selected .check { opacity: 1; }
  .custom-select-option .role {
    font-size: 11px;
    color: var(--ink-mid);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .custom-select-option:hover .role,
  .custom-select-option.selected .role {
    color: var(--pink);
    opacity: 0.7;
  }

  .form-submit {
    width: 100%;
    margin-top: 16px;
    padding: 22px;
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .35s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }
  .form-submit:hover {
    background: var(--pink);
    transform: translateY(-2px);
  }
  .form-submit .arrow { transition: transform .35s; }
  .form-submit:hover .arrow { transform: translateX(4px); }

  .form-note {
    margin-top: 20px;
    font-size: 12px;
    color: var(--ink-mid);
    text-align: center;
    line-height: 1.5;
  }

  /* ——————————————————— FOOTER ——————————————————— */
  footer {
    background: var(--bg);
    color: var(--ink);
    padding: 120px 48px 32px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--rule);
  }
  footer::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(229,67,96,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .footer-cta-block {
    max-width: 1400px;
    margin: 0 auto 120px;
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--rule);
  }
  .footer-cta {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(48px, 7vw, 120px);
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.035em;
    margin-bottom: 48px;
  }
  .footer-cta em {
    font-style: italic;
    color: var(--pink);
  }
  .footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 36px;
    background: var(--ink);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all .35s;
  }
  .footer-cta-btn:hover {
    background: var(--pink);
    transform: translateY(-2px);
  }
  .footer-cta-btn .arrow { transition: transform .35s; }
  .footer-cta-btn:hover .arrow { transform: translateX(4px); }

  .footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--rule);
    position: relative;
    z-index: 2;
  }
  .footer-col h4 {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--ink);
    font-size: 15px;
    margin-bottom: 24px;
  }
  .footer-col p,
  .footer-col .item {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: var(--ink-soft);
  }
  .footer-col p { max-width: 280px; }
  .footer-col a {
    color: var(--ink-soft);
    text-decoration: none;
    transition: color .3s;
  }
  .footer-col a:hover { color: var(--pink); }
  .footer-col .menu-item {
    display: block;
    padding: 6px 0;
    font-size: 14px;
  }
  .footer-col .strong-line {
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 6px;
  }
  .footer-col.brand .logo {
    color: var(--ink);
    margin-bottom: 24px;
  }
  .footer-col.brand .logo-img { filter: none; }

  .footer-hours {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    row-gap: 4px;
    font-size: 14px;
    color: var(--ink-soft);
    margin-top: 8px;
  }
  .footer-hours .day { color: var(--ink-mid); }
  .footer-hours .time { color: var(--ink); font-weight: 500; }

  .footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--ink-mid);
    position: relative;
    z-index: 2;
  }
  .footer-socials {
    display: flex;
    gap: 12px;
  }
  .footer-socials a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--rule-mid);
    display: grid;
    place-items: center;
    color: var(--ink);
    text-decoration: none;
    transition: all .3s;
  }
  .footer-socials a svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    display: block;
  }
  .footer-socials a:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
    transform: translateY(-2px);
  }

  /* ——————————————————— SCROLL ANIMATIONS ——————————————————— */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(.22,1,.36,1), transform 1s cubic-bezier(.22,1,.36,1);
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
  .doctor-photo-wrap.reveal-mask {
    position: relative;
  }
  .doctor-photo-wrap.reveal-mask::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-warm);
    z-index: 3;
    transform-origin: bottom;
    transition: transform 1.2s cubic-bezier(.7,0,.3,1);
    border-radius: var(--radius-photo);
  }
  .doctor-card.in .doctor-photo-wrap.reveal-mask::before {
    transform: scaleY(0);
  }

  /* ——————————————————— RESPONSIVE ——————————————————— */
  @media (max-width: 1024px) {
    nav { padding: 18px 24px; gap: 24px; grid-template-columns: auto 1fr auto; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; grid-column: -2 / -1; justify-self: end; }
    .cta-book { display: none; }
    section { padding: 100px 24px; }
    .hero-content { padding: 90px 28px 32px; }
    .welcome { padding: 120px 0; }
    .welcome-grid { grid-template-columns: minmax(24px, 1fr) minmax(0, 1100px) minmax(24px, 1fr); }
    .welcome-title-row { grid-template-columns: 1fr; gap: 30px; }
    .welcome-title { font-size: clamp(80px, 18vw, 160px); }
    .welcome-side-meta { text-align: left; padding-bottom: 0; }
    .welcome-body { grid-template-columns: 1fr; gap: 60px; }
    .welcome-en { padding-top: 0; }
    .welcome-ar { border-right: none; padding-right: 0; margin-left: 0; border-top: 1px solid var(--rule); padding-top: 40px; }
    .story-grid,
    .team-intro,
    .treatments-intro,
    .appointment-grid,
    .testimonials-header,
    .tour-header { grid-template-columns: 1fr; gap: 40px; align-items: flex-start; text-align: left; }
    .tour-header .right-meta { text-align: left; }
    .doctors-grid { grid-template-columns: repeat(2, 1fr); }
    .staff-grid { grid-template-columns: repeat(3, 1fr); }
    .treatments-grid { grid-template-columns: repeat(2, 1fr); }
    .treatments-grid .tx-featured { aspect-ratio: 16 / 10; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .appt-form-card { padding: 40px 32px; }
    .field-row { grid-template-columns: 1fr; gap: 28px; }
    .hero-footer { grid-template-columns: 1fr auto; gap: 20px; }
    .scroll-cue { display: none; }
    h1.hero-h1 { font-size: clamp(44px, 11vw, 80px); }
    .hero-bridge-inner { justify-content: center; }
    .pull-quote { padding: 80px 24px; }
    .team-hero-photo {
      width: calc(100% - 48px);
      aspect-ratio: 16 / 10;
    }
  }
  @media (max-width: 600px) {
    .doctors-grid,
    .treatments-grid { grid-template-columns: 1fr; }
    .treatments-grid .tx-card,
    .treatments-grid .tx-featured { aspect-ratio: 4 / 5; }
    .staff-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; }
    .cta-row { flex-direction: column; align-items: stretch; }
    .welcome-title { font-size: clamp(56px, 22vw, 110px); }
    .hero-meta { font-size: 10px; }
    .hero-meta .live-tag span:not(.live-dot) { display: none; }
    .bridge-marquee { font-size: 13px; padding: 14px 20px; gap: 14px; flex-wrap: wrap; justify-content: center; }
    .bridge-marquee span:not(.dot):not(.label) { display: none; }
  }
/* ========================================================
 * PAGE HERO (non-homepage pages)
 * ======================================================== */
.page-hero {
  position: relative;
  min-height: 64vh;
  padding: 180px 48px 80px;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  opacity: 0.55;
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,10,8,0.35) 0%, rgba(15,10,8,0.55) 60%, rgba(15,10,8,0.85) 100%);
  pointer-events: none;
  z-index: 1;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 60px;
  min-height: 40vh;
}
.page-hero .crumbs {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  font-weight: 500;
}
.page-hero .crumbs a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.page-hero .crumbs a:hover { border-bottom-color: rgba(255,255,255,0.5); }
.page-hero .crumbs .sep { margin: 0 12px; opacity: 0.5; }
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(56px, 8vw, 130px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: #fff;
  max-width: 1000px;
}
.page-hero h1 em { font-style: italic; color: var(--pink); }
.page-hero .tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 1.7vw, 26px);
  color: rgba(255,255,255,0.85);
  max-width: 360px;
  text-align: right;
  align-self: end;
  padding-bottom: 18px;
  line-height: 1.4;
  letter-spacing: -0.005em;
}

@media (max-width: 1024px) {
  .page-hero { padding: 140px 24px 60px; min-height: 50vh; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 28px; align-items: start; min-height: 30vh; }
  .page-hero .tagline { text-align: left; padding-bottom: 0; max-width: 480px; }
}

/* ========================================================
 * VALUES GRID (About page)
 * ======================================================== */
.values {
  background: var(--bg-warm);
  padding: 160px 48px;
}
.values-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.values-head {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.values-head p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 540px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-mid);
}
.value-card {
  padding: 40px 32px;
  border-bottom: 1px solid var(--rule-mid);
  border-right: 1px solid var(--rule-mid);
  display: flex;
  flex-direction: column;
  position: relative;
}
.value-card:nth-child(3n+1) { padding-left: 0; }
.value-card:nth-child(3n)   { padding-right: 0; border-right: none; }
.value-card:nth-child(n+7) { border-bottom: none; }
.value-card .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--pink);
  font-size: 14px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.value-card .v-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 18px;
}
.value-card .v-title em { font-style: italic; color: var(--ink); }
.value-card .v-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.value-card.empty {
  background: transparent;
}

@media (max-width: 1024px) {
  .values { padding: 100px 24px; }
  .values-head { grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card { padding: 32px 24px 32px 0; }
  .value-card:nth-child(3n) { border-right: 1px solid var(--rule-mid); }
  .value-card:nth-child(2n) { border-right: none; }
  .value-card:nth-child(n+7) { border-bottom: 1px solid var(--rule-mid); }
  .value-card:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: none !important; padding: 28px 0; }
  .value-card:last-child { border-bottom: none; }
}

/* ========================================================
 * EXPERTISE LIST (About page)
 * ======================================================== */
.expertise {
  background: var(--bg);
  padding: 160px 48px;
  border-top: 1px solid var(--rule);
}
.expertise-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.expertise-text h2 { margin-bottom: 24px; }
.expertise-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 460px;
}
.field-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule-mid);
}
.field-list .field {
  padding: 22px 0 22px 24px;
  border-bottom: 1px solid var(--rule-mid);
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(20px, 1.7vw, 24px);
  color: var(--ink);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: background .3s, padding-left .3s;
  position: relative;
}
.field-list .field::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.7;
}
.field-list .field:hover {
  background: rgba(229,67,96,0.04);
  padding-left: 30px;
}
@media (max-width: 1024px) {
  .expertise { padding: 100px 24px; }
  .expertise-inner { grid-template-columns: 1fr; gap: 40px; }
  .field-list { grid-template-columns: 1fr; }
}

/* ========================================================
 * DOCTOR PAGE — hero, bio, video, other doctors
 * ======================================================== */

/* Doctor hero — light background, split portrait + identity */
.doctor-hero {
  background: var(--bg);
  padding: 160px 48px 100px;
  position: relative;
  overflow: hidden;
}
.doctor-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: end;
}
.doctor-portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-photo);
  overflow: hidden;
  box-shadow: var(--shadow-photo);
  background: var(--bg-deeper);
}
.doctor-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.95) brightness(1.02);
}
.doctor-identity { padding-bottom: 12px; }
.doctor-identity .crumbs {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 28px;
  font-weight: 500;
}
.doctor-identity .crumbs a {
  color: inherit; text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.doctor-identity .crumbs a:hover { border-bottom-color: var(--ink-mid); }
.doctor-identity .crumbs .sep { margin: 0 10px; opacity: 0.5; }

.doctor-identity .name {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.doctor-identity .name em { font-style: italic; color: var(--pink); }
.doctor-identity .name-ar {
  font-family: 'Noto Naskh Arabic', serif;
  direction: rtl;
  text-align: left;
  font-size: clamp(20px, 1.8vw, 28px);
  color: var(--ink-soft);
  margin-top: 14px;
  font-weight: 500;
}

.doctor-identity .role-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--rule-mid);
}
.doctor-identity .role-row .role {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--pink);
}
.doctor-identity .role-row .divider {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--rule-mid);
}
.doctor-identity .role-row .degree {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-mid);
}

.doctor-identity .specialty {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.35;
  color: var(--ink);
  margin-top: 28px;
  max-width: 560px;
  letter-spacing: -0.005em;
}

.doctor-identity .cta-row {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.doctor-identity .cta-pink {
  background: var(--pink);
  color: #fff;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all .35s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.doctor-identity .cta-pink:hover {
  background: var(--ink);
  transform: translateY(-2px);
}
.doctor-identity .cta-pink .arrow { transition: transform .35s; }
.doctor-identity .cta-pink:hover .arrow { transform: translateX(4px); }
.doctor-identity .cta-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 16px 22px;
  border: 1px solid var(--rule-mid);
  border-radius: 999px;
  transition: all .3s;
}
.doctor-identity .cta-link:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* Doctor bio — editorial */
.doctor-bio {
  background: var(--cream);
  padding: 140px 48px;
  border-top: 1px solid var(--rule);
}
.doctor-bio-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}
.doctor-bio-head .section-label { margin-bottom: 22px; }
.doctor-bio-head h2 {
  font-size: clamp(40px, 4.5vw, 64px);
  letter-spacing: -0.025em;
}
.doctor-bio-body {
  font-size: 17px;
  line-height: 1.78;
  color: var(--ink-soft);
}
.doctor-bio-body p { margin-bottom: 28px; }
.doctor-bio-body .dropcap {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 72px;
  line-height: 0.85;
  float: left;
  color: var(--pink);
  margin: 6px 18px -4px 0;
  letter-spacing: -0.02em;
}
.doctor-bio-body p:last-child { margin-bottom: 0; }

/* Doctor video section */
.doctor-video-section {
  background: var(--bg);
  padding: 120px 48px;
}
.doctor-video-section .head {
  max-width: 1400px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}
.doctor-video-section .head h2 { margin-top: 8px; }
.doctor-video-section .head .right-meta {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-mid);
  max-width: 320px;
  text-align: right;
  line-height: 1.5;
}
.doctor-video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
  max-width: 1400px;
  margin: 0 auto;
  box-shadow: 0 40px 100px -50px rgba(31, 24, 20, 0.4);
}
.doctor-video-wrap video,
.doctor-video-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}
.doctor-video-wrap:hover video,
.doctor-video-wrap:hover img { transform: scale(1.03); }
/* When playing, freeze the zoom so the video controls don't get clipped */
.doctor-video-wrap.playing:hover video { transform: none; }
.doctor-video-wrap.playing { cursor: default; }
.doctor-video-wrap .play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
  transition: opacity .4s;
}
.doctor-video-wrap.playing .play-btn { opacity: 0; pointer-events: none; }
.doctor-video-wrap .play-btn .circle {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  transition: transform .4s, background .4s;
}
.doctor-video-wrap:hover .circle {
  background: var(--pink);
  transform: scale(1.08);
}
.doctor-video-wrap .circle::before {
  content: '';
  width: 0; height: 0;
  border-left: 22px solid var(--ink);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  margin-left: 6px;
  transition: border-color .4s;
}
.doctor-video-wrap:hover .circle::before { border-left-color: #fff; }

/* Other doctors — smaller grid */
.other-doctors {
  background: var(--bg-warm);
  padding: 140px 48px;
}
.other-doctors-inner {
  max-width: 1500px;
  margin: 0 auto;
}
.other-doctors .head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule-mid);
}
.other-doctors .head h3 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.other-doctors .head h3 em { font-style: italic; color: var(--ink); }
.other-doctors .head .meta {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-mid);
}
.other-doctors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.other-doctors-grid .doctor-card .doctor-info {
  display: block;
}
.other-doctors-grid .doctor-arrow { display: none; }
.other-doctors-grid .doctor-info .name { font-size: 18px; }
.other-doctors-grid .doctor-info .name-ar { font-size: 13px; }
.other-doctors-grid .doctor-info .meta-row {
  margin-top: 10px;
  padding-top: 10px;
  gap: 10px;
}
.other-doctors-grid .doctor-info .role,
.other-doctors-grid .doctor-info .degree {
  font-size: 10px;
}

@media (max-width: 1024px) {
  .doctor-hero { padding: 120px 24px 80px; }
  .doctor-hero-inner { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .doctor-portrait { max-width: 420px; }
  .doctor-bio { padding: 100px 24px; }
  .doctor-bio-inner { grid-template-columns: 1fr; gap: 40px; }
  .doctor-video-section { padding: 80px 24px; }
  .doctor-video-section .head { grid-template-columns: 1fr; gap: 24px; }
  .doctor-video-section .head .right-meta { text-align: left; }
  .other-doctors { padding: 100px 24px; }
  .other-doctors-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .other-doctors-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================================
 * TREATMENT PAGE
 * ======================================================== */

.tx-page-hero {
  position: relative;
  min-height: 64vh;
  padding: 180px 48px 80px;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.tx-page-hero .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0.55;
  z-index: 0;
}
.tx-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,10,8,0.4) 0%, rgba(15,10,8,0.55) 60%, rgba(15,10,8,0.88) 100%);
  pointer-events: none;
  z-index: 1;
}
.tx-page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: end;
  gap: 80px;
  min-height: 42vh;
}
.tx-page-hero .crumbs {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  font-weight: 500;
}
.tx-page-hero .crumbs a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.tx-page-hero .crumbs a:hover { border-bottom-color: rgba(255,255,255,0.5); }
.tx-page-hero .crumbs .sep { margin: 0 12px; opacity: 0.5; }
.tx-page-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(52px, 7.5vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: #fff;
  max-width: 900px;
}
.tx-page-hero h1 em { font-style: italic; color: var(--pink); }
.tx-page-hero .tx-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 1.7vw, 26px);
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
  letter-spacing: -0.005em;
  max-width: 380px;
  align-self: end;
  padding-bottom: 16px;
}
.tx-page-hero .tx-cta-row {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Lead / Intro */
.tx-intro {
  background: var(--bg);
  padding: 140px 48px;
  position: relative;
}
.tx-intro-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}
.tx-intro-head .section-label { margin-bottom: 20px; }
.tx-intro-head h2 {
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.025em;
}
.tx-intro-body p.lead {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.005em;
}
.tx-intro-body p {
  font-size: 17px;
  line-height: 1.78;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.tx-intro-body p:last-child { margin-bottom: 0; }
.tx-intro-body p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 72px;
  line-height: 0.85;
  float: left;
  color: var(--pink);
  margin: 6px 18px -4px 0;
  letter-spacing: -0.02em;
}
.tx-intro-body ul {
  margin: 6px 0 28px 0;
  padding-left: 0;
  list-style: none;
}
.tx-intro-body ul li {
  position: relative;
  padding: 6px 0 6px 28px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.tx-intro-body ul li::before {
  content: '';
  position: absolute;
  left: 4px; top: 17px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

/* Content sections — repeated sub-sections */
.tx-section {
  background: var(--cream);
  padding: 110px 48px;
  border-top: 1px solid var(--rule);
}
.tx-section.alt { background: var(--bg); }
.tx-section-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}
.tx-section-head .step-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--pink);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.tx-section-head .step-num::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--pink);
}
.tx-section-head h3 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.tx-section-head h3 em { font-style: italic; color: var(--ink); }
.tx-section-body {
  font-size: 17px;
  line-height: 1.78;
  color: var(--ink-soft);
}
.tx-section-body p { margin-bottom: 22px; }
.tx-section-body p:last-child { margin-bottom: 0; }
.tx-section-body h4 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  margin: 36px 0 14px 0;
  letter-spacing: -0.01em;
}
.tx-section-body h4:first-child { margin-top: 0; }
.tx-section-body ul {
  margin: 6px 0 22px 0;
  padding-left: 0;
  list-style: none;
}
.tx-section-body ul li {
  position: relative;
  padding: 5px 0 5px 28px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.tx-section-body ul li::before {
  content: '';
  position: absolute;
  left: 4px; top: 16px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.7;
}

/* Other treatments grid (small cards, similar to other-doctors) */
.other-treatments {
  background: var(--bg-warm);
  padding: 140px 48px;
}
.other-treatments-inner {
  max-width: 1500px;
  margin: 0 auto;
}
.other-treatments .head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule-mid);
}
.other-treatments .head h3 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.other-treatments .head h3 em { font-style: italic; color: var(--ink); }
.other-treatments .head .meta {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-mid);
}
.other-treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.other-treatments-grid .tx-card { aspect-ratio: 5 / 2; }

/* Treatments overview page — full grid */
.tx-overview {
  background: var(--bg);
  padding: 140px 48px;
}
.tx-overview-inner { max-width: 1400px; margin: 0 auto; }
.tx-overview-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.tx-overview-intro p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 520px;
}

@media (max-width: 1024px) {
  .tx-page-hero { padding: 140px 24px 60px; min-height: 50vh; }
  .tx-page-hero-inner { grid-template-columns: 1fr; gap: 28px; align-items: start; min-height: 30vh; }
  .tx-page-hero .tx-tagline { max-width: 480px; padding-bottom: 0; }
  .tx-intro, .tx-section, .other-treatments, .tx-overview { padding: 80px 24px; }
  .tx-intro-inner, .tx-section-inner, .tx-overview-intro { grid-template-columns: 1fr; gap: 32px; }
  .other-treatments-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .other-treatments-grid { grid-template-columns: 1fr; }
}

/* ========================================================
 * TREATMENTS MEGAMENU (nav dropdown)
 * ======================================================== */
.nav-links .has-megamenu {
  position: static; /* anchor megamenu to nav itself, full-width */
}
.nav-links .has-megamenu > a {
  display: inline-block;
}

.megamenu {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 30px 60px -30px rgba(31, 24, 20, 0.18);
  padding: 48px 48px 56px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .35s, transform .35s, visibility .35s;
  pointer-events: none;
  z-index: 49;
  color: var(--ink); /* always dark in dropdown */
}
.nav-links .has-megamenu:hover > .megamenu,
.nav-links .has-megamenu.open > .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.megamenu-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.mega-col h5 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 13px;
  color: var(--pink);
  letter-spacing: 0;
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-mid);
}
.mega-col h5 a {
  color: inherit;
  text-decoration: none;
  transition: color .25s;
}
.mega-col h5 a:hover { color: var(--ink); }
.mega-col ul {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
}
.mega-col li a {
  display: block;
  padding: 10px 0;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  transition: color .25s, padding-left .25s;
  position: relative;
}
.mega-col li a em {
  font-style: italic;
  color: var(--ink-mid);
  font-size: 0.85em;
  margin-left: 2px;
}
.mega-col li a:hover em { color: var(--pink); }
.mega-col li a::before {
  content: '';
  position: absolute;
  left: -16px; top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity .25s, left .25s;
}
.mega-col li a:hover {
  color: var(--pink);
  padding-left: 18px;
}
.mega-col li a:hover::before {
  opacity: 1;
  left: 0;
}
.mega-col li a em {
  font-style: italic;
}
.mega-col li a .meta {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-top: 4px;
}

/* When nav not scrolled on dark-hero pages, megamenu still has light bg.
   Nav itself is white text over dark hero; megamenu opens its own bg. */

/* Hide megamenu on mobile (mobile-menu has its own list) */
@media (max-width: 1024px) {
  .megamenu { display: none; }
}

/* ========================================================
 * INLINE FIGURES + VIDEO in treatment pages
 * ======================================================== */

/* Full-width figure between sections */
.tx-figure-block {
  background: var(--bg);
  padding: 0 48px;
  margin: 0;
}
.tx-figure-block.in-cream { background: var(--cream); }
.tx-figure {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}
.tx-figure .figure-meta {
  padding-top: 6px;
}
.tx-figure .figure-meta .label {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--pink);
  font-size: 14px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.tx-figure .figure-meta .label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--pink);
}
.tx-figure .figure-meta p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 240px;
}
.tx-figure .figure-image {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(31, 24, 20, 0.25);
  background: var(--bg-deeper);
}
.tx-figure .figure-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease;
}
.tx-figure .figure-image:hover img {
  transform: scale(1.02);
}

/* Inline video inside .tx-section-body (reuses doctor-video-wrap behavior) */
.tx-section-body .inline-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
  margin: 40px 0 12px;
  box-shadow: 0 30px 60px -30px rgba(31, 24, 20, 0.35);
}
.tx-section-body .inline-video video,
.tx-section-body .inline-video img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease;
}
.tx-section-body .inline-video:hover video,
.tx-section-body .inline-video:hover img { transform: scale(1.03); }
.tx-section-body .inline-video.playing:hover video { transform: none; }
.tx-section-body .inline-video.playing { cursor: default; }
.tx-section-body .inline-video .play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
  transition: opacity .4s;
}
.tx-section-body .inline-video.playing .play-btn { opacity: 0; pointer-events: none; }
.tx-section-body .inline-video .play-btn .circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  transition: transform .4s, background .4s;
}
.tx-section-body .inline-video:hover .circle {
  background: var(--pink);
  transform: scale(1.08);
}
.tx-section-body .inline-video .circle::before {
  content: '';
  width: 0; height: 0;
  border-left: 18px solid var(--ink);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 5px;
  transition: border-color .4s;
}
.tx-section-body .inline-video:hover .circle::before { border-left-color: #fff; }
.tx-section-body .inline-video .caption {
  position: absolute;
  bottom: 20px; left: 20px;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  z-index: 2;
  transition: opacity .4s;
}
.tx-section-body .inline-video.playing .caption { opacity: 0; }

/* Inline figure inside section body (smaller than full-width breaks) */
.tx-section-body .inline-figure {
  margin: 36px 0 24px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-deeper);
  aspect-ratio: 16 / 10;
}
.tx-section-body .inline-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .tx-figure-block { padding: 0 24px; }
  .tx-figure { grid-template-columns: 1fr; gap: 24px; padding: 40px 0 60px; }
  .tx-figure .figure-meta p { max-width: 480px; }
}

/* ========================================================
 * FAQ PAGE
 * ======================================================== */
.faq-intro {
  background: var(--bg);
  padding: 130px 48px 60px;
}
.faq-intro-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.faq-intro .section-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 28px;
  font-weight: 600;
}
.faq-intro h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(42px, 5.5vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 28px;
}
.faq-intro h2 em { font-style: italic; color: var(--pink); }
.faq-intro p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-mute);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

.faq-list {
  background: var(--bg);
  padding: 40px 48px 140px;
}
.faq-list-inner {
  max-width: 980px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid rgba(15,10,8,0.10);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(15,10,8,0.10); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 36px 64px 36px 0;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 22px;
  transition: color .3s;
}
.faq-q:hover { color: var(--pink); }
.faq-q .faq-num {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--pink);
  font-weight: 500;
  flex-shrink: 0;
  min-width: 44px;
  padding-top: 5px;
}
.faq-q .faq-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-q .faq-toggle::before,
.faq-q .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: transform .35s ease, background .3s;
}
.faq-q .faq-toggle::before { width: 18px; height: 1.5px; }
.faq-q .faq-toggle::after { width: 1.5px; height: 18px; }
.faq-item.open .faq-q { color: var(--pink); }
.faq-item.open .faq-q .faq-toggle::before,
.faq-item.open .faq-q .faq-toggle::after { background: var(--pink); }
.faq-item.open .faq-q .faq-toggle::after { transform: scaleY(0); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s ease;
}
.faq-a-inner {
  overflow: hidden;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-content {
  padding: 0 64px 40px 66px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-mute);
  font-weight: 300;
}
.faq-a-content p { margin: 0 0 16px; }
.faq-a-content p:last-child { margin-bottom: 0; }
.faq-a-content strong { color: var(--ink); font-weight: 500; }
.faq-a-content .stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 26px 0 8px;
}
.faq-a-content .stat {
  padding: 22px 18px;
  background: var(--bg-warm);
  border-radius: 10px;
}
.faq-a-content .stat .v {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 6px;
}
.faq-a-content .stat .l {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink-mute);
  font-weight: 400;
}
.faq-a-content ol,
.faq-a-content ul {
  padding-left: 0;
  list-style: none;
  margin: 18px 0;
}
.faq-a-content ol li,
.faq-a-content ul li {
  padding-left: 28px;
  margin-bottom: 16px;
  position: relative;
}
.faq-a-content ol { counter-reset: faqol; }
.faq-a-content ol li::before {
  counter-increment: faqol;
  content: counter(faqol, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--pink);
  font-weight: 600;
}
.faq-a-content ul li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 12px;
  width: 6px;
  height: 1.5px;
  background: var(--pink);
}

@media (max-width: 768px) {
  .faq-intro { padding: 100px 24px 40px; }
  .faq-list { padding: 30px 24px 100px; }
  .faq-q { padding: 26px 40px 26px 0; gap: 14px; }
  .faq-q .faq-num { min-width: 36px; font-size: 11px; }
  .faq-a-content { padding: 0 40px 30px 50px; font-size: 16px; }
  .faq-a-content .stat-row { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================================
 * MAKE APPOINTMENT PAGE
 * ======================================================== */
.appt-page {
  background: var(--bg);
  padding: 120px 48px 100px;
}
.appt-page-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 100px;
  align-items: start;
}
.appt-page-form .section-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
  font-weight: 600;
}
.appt-page-form h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(44px, 5.5vw, 78px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 32px;
}
.appt-page-form h1 em { font-style: italic; color: var(--pink); }
.appt-page-form .lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-mute);
  font-weight: 300;
  max-width: 580px;
  margin: 0 0 56px;
}
.appt-page-form .appt-form-card {
  background: var(--bg-warm);
  border-radius: 18px;
  padding: 56px 56px 48px;
  border: 1px solid rgba(15,10,8,0.06);
}
.appt-page-form .appt-form-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 6px;
}
.appt-page-form .form-sub {
  font-size: 14px;
  color: var(--ink-mute);
  margin: 0 0 36px;
  font-style: italic;
  font-family: 'Fraunces', serif;
}

.appt-page-side {
  position: sticky;
  top: 120px;
  padding-top: 60px;
}
.appt-page-side .side-block {
  border-top: 1px solid rgba(15,10,8,0.12);
  padding: 30px 0;
}
.appt-page-side .side-block:last-child { border-bottom: 1px solid rgba(15,10,8,0.12); }
.appt-page-side .side-block .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 14px;
}
.appt-page-side .side-block .value {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--ink);
}
.appt-page-side .side-block .value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(229,67,96,0.3);
  transition: border-color .3s;
}
.appt-page-side .side-block .value a:hover { border-bottom-color: var(--pink); }
.appt-page-side .side-block .meta {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink-mute);
  margin-top: 8px;
  font-weight: 300;
}
.appt-page-side .side-block .hours-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--ink);
  margin-top: 8px;
}
.appt-page-side .side-block .hours-row .d { font-style: italic; color: var(--ink-mute); font-weight: 300; }

@media (max-width: 1024px) {
  .appt-page-inner { grid-template-columns: 1fr; gap: 50px; }
  .appt-page-side { position: static; padding-top: 0; }
  .appt-page-form .appt-form-card { padding: 40px 28px 36px; }
}
@media (max-width: 640px) {
  .appt-page { padding: 90px 20px 70px; }
}

/* What to expect cards */
.expect-section {
  background: var(--bg-warm);
  padding: 130px 48px;
}
.expect-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.expect-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.expect-head .section-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  align-self: end;
  padding-bottom: 14px;
}
.expect-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
  text-align: right;
}
.expect-head h2 em { font-style: italic; color: var(--pink); }
.expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(15,10,8,0.10);
  border-bottom: 1px solid rgba(15,10,8,0.10);
}
.expect-card {
  padding: 44px 30px 50px;
  border-right: 1px solid rgba(15,10,8,0.08);
  display: flex;
  flex-direction: column;
}
.expect-card:last-child { border-right: none; }
.expect-card .step {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--pink);
  font-weight: 500;
  margin-bottom: 28px;
}
.expect-card h4 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.2;
}
.expect-card h4 em { font-style: italic; color: var(--pink); }
.expect-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-mute);
  font-weight: 300;
  margin: 0;
}
@media (max-width: 1024px) {
  .expect-section { padding: 100px 24px; }
  .expect-head { grid-template-columns: 1fr; gap: 20px; align-items: start; margin-bottom: 50px; }
  .expect-head h2 { text-align: left; }
  .expect-grid { grid-template-columns: repeat(2, 1fr); }
  .expect-card:nth-child(2) { border-right: none; }
  .expect-card:nth-child(1), .expect-card:nth-child(2) { border-bottom: 1px solid rgba(15,10,8,0.08); }
}
@media (max-width: 640px) {
  .expect-grid { grid-template-columns: 1fr; }
  .expect-card { border-right: none !important; border-bottom: 1px solid rgba(15,10,8,0.08); }
  .expect-card:last-child { border-bottom: none; }
}

/* Map block */
.appt-map {
  background: var(--bg);
  padding: 0;
}
.appt-map-inner {
  position: relative;
}
.appt-map iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
  filter: grayscale(0.4) contrast(0.95);
}
.appt-map-overlay {
  position: absolute;
  left: 60px;
  bottom: 60px;
  background: #fff;
  padding: 36px 40px;
  max-width: 380px;
  border-radius: 14px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.25);
  z-index: 2;
}
.appt-map-overlay .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 14px;
}
.appt-map-overlay h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.2;
}
.appt-map-overlay p {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.55;
  font-weight: 300;
  margin: 0 0 18px;
  font-style: italic;
  font-family: 'Fraunces', serif;
}
.appt-map-overlay .directions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  text-decoration: none;
  font-weight: 600;
}
.appt-map-overlay .directions span {
  transition: transform .3s;
  display: inline-block;
}
.appt-map-overlay .directions:hover span { transform: translateX(4px); }
@media (max-width: 768px) {
  .appt-map iframe { height: 360px; }
  .appt-map-overlay { position: static; max-width: 100%; box-shadow: none; border-radius: 0; padding: 36px 24px; }
}

/* ========================================================
 * MESSAGE PAGES (thank-you, 404, 403, 500)
 * ======================================================== */
.msg-page {
  min-height: 100vh;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 48px 100px;
  position: relative;
  overflow: hidden;
}
.msg-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(229,67,96,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(229,67,96,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.msg-inner {
  max-width: 760px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.msg-code {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(80px, 14vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--pink);
  margin: 0 0 20px;
  opacity: 0.95;
}
.msg-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-bottom: 32px;
}
.msg-page h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 0 32px;
}
.msg-page h1 em { font-style: italic; color: var(--pink); }
.msg-page p {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 44px;
}
.msg-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.msg-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.msg-btn.primary {
  background: var(--pink);
  color: #fff;
  border: 1px solid var(--pink);
}
.msg-btn.primary:hover { background: #c93852; border-color: #c93852; transform: translateY(-2px); }
.msg-btn.ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.25);
}
.msg-btn.ghost:hover { border-color: rgba(255,255,255,0.7); color: #fff; transform: translateY(-2px); }
.msg-btn .arrow { transition: transform .3s; }
.msg-btn:hover .arrow { transform: translateX(4px); }

/* Mini links below the buttons */
.msg-helplinks {
  margin-top: 48px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  font-family: 'Fraunces', serif;
  font-style: italic;
}
.msg-helplinks a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  margin: 0 4px;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: color .3s, border-color .3s;
}
.msg-helplinks a:hover { color: var(--pink); border-bottom-color: var(--pink); }

@media (max-width: 768px) {
  .msg-page { padding: 140px 24px 80px; }
  .msg-page p { font-size: 17px; }
  .msg-btn { padding: 16px 26px; font-size: 12px; }
}
