/* ============================================================
   DR. NADAV NEVO — v13.0  "WEDDING"
   Warm Parchment · Rich Gold · Sage · Burgundy
   Cormorant Garamond (display) · Syne (UI) · Space Mono (data)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Syne:wght@400;500;600;700;800&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  /* Warm Parchment Palette */
  --ivory:         #F8F4E3;   /* Warm Parchment — main bg */
  --cream:         #F0ECDA;   /* slightly deeper parchment */
  --cream-deep:    #E8E3CC;   /* deep warm parchment */
  --warm-white:    #FDFAF2;   /* near-white cards */
  --charcoal:      #3D3D3D;   /* Dark Graphite */
  --charcoal-mid:  #5A5248;   /* Warm Mid-Tone */

  /* Rich Gold — accent */
  --gold:          #C4A95B;   /* Rich Gold */
  --gold-bright:   #D4BB70;
  --gold-dim:      #7B5E3A;   /* dark for small text */
  --gold-pale:     rgba(196,169,91,0.12);
  --gold-border:   rgba(196,169,91,0.30);

  /* Sage & Burgundy — feature accents */
  --sage:          #98AE87;   /* Sage Green */
  --sage-dark:     #7A9068;
  --burgundy:      #7B1E28;   /* Deep Burgundy */
  --burgundy-mid:  #9B2D38;

  /* Text */
  --text:          #2A2520;   /* near-black on parchment */
  --text-muted:    #5A5248;   /* warm dark grey */
  --text-light:    #7A7060;   /* warm mid-grey */

  /* Borders */
  --border:        rgba(61,61,61,0.14);
  --border-light:  rgba(61,61,61,0.08);
  --border-dark:   rgba(61,61,61,0.22);

  /* Semantic aliases — kept for backward compat */
  --white:         #F8F4E3;
  --bg:            #F8F4E3;
  --bg-alt:        #F0ECDA;
  --bg-dark:       #3D3D3D;
  --bg-card:       #FDFAF2;
  --bg-darker:     #2A2520;
  --near-black:    #3D3D3D;
  --black:         #1A1612;
  --gray-100:      #F0ECDA;
  --gray-200:      #E8E3CC;
  --gray-300:      #D4CEB8;
  --gray-400:      #BAB4A0;
  --gray-500:      #9A9485;
  --gray-600:      #7A7468;
  --blue:          #C4A95B;   /* Rich Gold — legacy alias */
  --blue-dark:     #7B5E3A;
  --blue-light:    #F0ECDA;
  --blue-mid:      #E8E3CC;

  /* Shadows — warm, subtle */
  --shadow-sm:     0 1px 10px rgba(61,61,61,0.10), 0 0 0 1px rgba(61,61,61,0.04);
  --shadow-md:     0 4px 28px rgba(61,61,61,0.12), 0 0 0 1px rgba(61,61,61,0.05);
  --shadow-lg:     0 12px 52px rgba(61,61,61,0.16);
  --shadow-dark:   0 24px 72px rgba(61,61,61,0.22);
  --shadow-gold:   0 4px 20px rgba(196,169,91,0.24);

  /* Radius */
  --r-hero:        20px;
  --r-section:     20px;
  --r-card:        16px;
  --r-sm:          10px;
  --r-xs:          6px;
  --r-pill:        100px;

  /* Fonts */
  --font-display:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font:          'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent:   'Cormorant Garamond', Georgia, serif;
  --font-mono:     'Space Mono', 'Courier New', monospace;
  --font-he:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  /* Motion */
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:      cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition:    all 0.35s var(--ease);
  --transition-fast: all 0.20s var(--ease-out);

  /* Layout */
  --nav-height:    58px;
  --container-max: 1180px;

  /* Legacy gradients */
  --gradient:      linear-gradient(135deg, #3D3D3D 0%, #5A5248 100%);
  --gradient-warm: linear-gradient(135deg, #3D3D3D 0%, #5A5248 100%);
  --gradient-hero: linear-gradient(to top, rgba(61,61,61,0.70) 0%, rgba(61,61,61,0.20) 55%, transparent 100%);
  --gradient-blue: linear-gradient(135deg, #3D3D3D 0%, #5A5248 100%);
  --gradient-subtle: rgba(196,169,91,0.06);
  --shadow-blue:   0 4px 16px rgba(196,169,91,0.20);
  --border-blue:   rgba(196,169,91,0.28);
  --border-gold:   rgba(196,169,91,0.28);
  --border-mid:    rgba(61,61,61,0.12);
  --cream-alt:     #F0ECDA;
  --dark:          #3D3D3D;
  --dark-mid:      #5A5248;
  --gold-light:    rgba(196,169,91,0.10);
  --indigo:        #C4A95B;
  --primary:       #C4A95B;
}

/* ─── Keyframes ─────────────────────────────────────────────── */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes meridianPulse {
  0%, 100% { opacity: 0.25; }
  50%       { opacity: 0.55; }
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 2px; }
::selection               { background: rgba(61,61,61,0.18); color: var(--charcoal); }

body {
  font-family: var(--font);
  background: var(--ivory);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.70;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}
body[dir="rtl"] { font-family: var(--font-he); }

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { opacity: 0.75; }

/* ─── Custom Cursor ─────────────────────────────────────────── */
.meridian-cursor-dot {
  position: fixed; top: -40px; left: -40px; z-index: 9999;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: width 0.18s ease, height 0.18s ease, opacity 0.25s ease;
  will-change: left, top;
}
.meridian-cursor-ring {
  position: fixed; top: -40px; left: -40px; z-index: 9998;
  width: 36px; height: 36px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: width 0.22s ease, height 0.22s ease, border-color 0.22s ease, opacity 0.25s ease;
  will-change: left, top;
}

/* ─── Meridian Axis ─────────────────────────────────────────── */
.meridian-axis {
  position: fixed; top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(61,61,61,0.12) 8%,
    rgba(61,61,61,0.12) 92%,
    transparent 100%
  );
  pointer-events: none; z-index: 0;
  transform: translateX(-50%);
  animation: meridianPulse 4s ease-in-out infinite;
}

/* ─── Utility ────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 44px;
  position: relative; z-index: 1;
}

.section     { padding: 108px 0; background: var(--ivory); }
.section-alt { background: var(--cream); padding: 108px 0; }
.section-dark{ background: var(--charcoal); padding: 108px 0; }
.section-blob { position: relative; overflow: hidden; }
.section-blob > * { position: relative; z-index: 1; }

/* Gold rule — used as a decorative spacer */
.gold-rule {
  display: block; width: 40px; height: 1px;
  background: var(--gold); margin-bottom: 28px;
}

/* Badge / eyebrow */
.section-eyebrow,
.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--charcoal);        /* dark charcoal — full contrast on ivory bg */
  background: var(--gold-pale);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
  border: 1px solid var(--gold-border);
}

/* Badge on dark backgrounds — override for page-hero / footer / cta-band */
.page-hero .badge,
.section-dark .badge,
.cta-band .badge,
footer .badge {
  color: var(--gold);
  background: rgba(248,244,227,0.10);
  border-color: rgba(196,169,91,0.40);
}

/* Sheba #7 rank inline badge */
.sheba-rank {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  background: var(--gold);
  padding: 2px 8px;
  border-radius: var(--r-pill);
  vertical-align: middle;
  margin-inline-start: 4px;
  white-space: nowrap;
}
/* On dark / photo backgrounds */
.page-hero .sheba-rank,
.section-dark .sheba-rank,
footer .sheba-rank,
.doctor-image-tag .sheba-rank {
  color: var(--ivory);
  background: var(--charcoal-mid);
  border: 1px solid var(--gold);
}

/* Section title — Cormorant italic, generous size */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.he-content .section-title,
body[dir="rtl"] .section-title {
  font-family: var(--font-he);
  font-style: normal;
  letter-spacing: -0.01em;
}

/* Section subtitle — readable Cormorant */
.section-subtitle {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 60px;
  line-height: 1.82;
  font-weight: 400;
}
body[dir="rtl"] .section-subtitle    { margin-left: auto; margin-right: 0; }
body:not([dir="rtl"]) .section-subtitle { margin-right: auto; }

.rule { width: 100%; height: 1px; background: var(--border); margin: 0; }
.accent { color: var(--gold); }
.gold   { color: var(--gold); }
.morph-card { border-radius: var(--r-card); overflow: hidden; }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-size: 0.75rem; font-weight: 700;
  cursor: pointer; border: none;
  transition: var(--transition);
  text-decoration: none; white-space: nowrap;
  letter-spacing: 0.10em; text-transform: uppercase;
}
.btn-primary {
  background: var(--gold);
  color: var(--ivory);
  box-shadow: 0 2px 14px rgba(61,61,61,0.32);
}
.btn-primary:hover {
  background: var(--gold-bright); opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(61,61,61,0.42);
}
.btn-outline {
  background: transparent; color: var(--charcoal);
  border: 1.5px solid var(--border-dark);
}
.btn-outline:hover {
  background: var(--cream); border-color: var(--charcoal); opacity: 1;
}
.btn-dark {
  background: var(--charcoal); color: var(--ivory);
}
.btn-dark:hover {
  background: #000; opacity: 1; transform: translateY(-1px);
}
.btn-sm { padding: 9px 20px; font-size: 0.68rem; }
.btn-lg { padding: 16px 36px; font-size: 0.82rem; }

/* ─── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250,250,248,0.90);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border-light);
  height: var(--nav-height);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.35s var(--ease);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: var(--nav-height); gap: 24px;
}
.nav-logo { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.nav-logo:hover { opacity: 1; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.10rem; font-weight: 400; font-style: italic;
  color: var(--text); line-height: 1.1; letter-spacing: 0.04em;
}
.he-content .nav-logo-name,
body[dir="rtl"] .nav-logo-name { font-family: var(--font-he); font-style: normal; }
.nav-logo-title {
  font-family: var(--font-mono);
  font-size: 0.62rem; font-weight: 400;
  color: var(--text-muted); letter-spacing: 0.16em; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center;
  gap: 2px; list-style: none;
  flex: 1; justify-content: center;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.68rem; font-weight: 400;
  color: var(--text-muted); padding: 6px 11px;
  border-radius: var(--r-xs);
  display: flex; align-items: center; gap: 4px;
  transition: background 0.18s ease, color 0.18s ease;
  white-space: nowrap; letter-spacing: 0.10em; text-transform: uppercase;
}
.nav-links a .he, .nav-links a .en { pointer-events: none; }
.nav-links a:hover { background: var(--cream); opacity: 1; color: var(--charcoal); }
.nav-links a.active { color: var(--gold); font-weight: 400; }
.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: var(--r-xs);
  color: var(--text-muted); background: transparent;
  transition: background 0.18s ease, color 0.18s ease;
}
.nav-social-link:hover { background: var(--cream); color: var(--gold); opacity: 1; }

/* Language toggle */
.lang-toggle {
  display: flex; gap: 2px; background: var(--cream);
  border-radius: var(--r-xs); padding: 2px; border: 1px solid var(--border-light);
}
.lang-btn {
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.10em; text-transform: uppercase;
  padding: 5px 10px; border: none; cursor: pointer; border-radius: 4px;
  background: transparent; color: var(--text-muted);
  transition: var(--transition-fast);
}
.lang-btn.active {
  background: var(--warm-white); color: var(--charcoal);
  box-shadow: 0 1px 4px rgba(26,24,20,0.10);
}
.lang-btn:hover:not(.active) { color: var(--charcoal); }
.nav-cta { display: none; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: var(--r-xs);
}
.nav-hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text); border-radius: 1px; transition: var(--transition);
}
.nav-hamburger:hover { background: var(--cream); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; padding: 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 400; font-style: italic;
  color: var(--text); letter-spacing: 0.02em;
  padding: 10px 32px; border-radius: var(--r-sm);
  width: 100%; text-align: center; transition: color 0.18s ease;
}
.mobile-nav a:hover { color: var(--gold); opacity: 1; background: transparent; }
.mobile-nav-close {
  position: absolute; top: 20px; right: 24px;
  background: var(--cream); border: 1px solid var(--border); cursor: pointer;
  font-size: 1rem; width: 36px; height: 36px; border-radius: 50%;
  color: var(--text); display: flex; align-items: center; justify-content: center;
}
.navbar--scrolled { background: rgba(250,250,248,0.97); box-shadow: 0 1px 20px rgba(26,24,20,0.08); }
.navbar--hidden   { transform: translateY(-100%); }

/* ─── Content visibility ──────────────────────────────────────── */
.he-content { display: block; }
.en-content { display: none; }
body.lang-en .he-content { display: none; }
body.lang-en .en-content { display: block; }
.he { display: inline; }
.en { display: none; }
body.lang-en .he { display: none; }
body.lang-en .en { display: inline; }

/* ─── Hero — Home ────────────────────────────────────────────── */
.hero {
  background: var(--charcoal);
  min-height: 88vh; position: relative; overflow: hidden;
  display: flex; align-items: stretch;
}
.hero-photo-bg {
  position: absolute; inset: 0; object-fit: cover;
  width: 100%; height: 100%; opacity: 0.28;
}
.hero-photo-placeholder-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 75% at 15% 100%, rgba(61,61,61,0.10) 0%, transparent 60%),
              linear-gradient(135deg, #3D3D3D 0%, #5A5248 100%);
}
.hero-inner {
  position: relative; z-index: 2; display: grid;
  grid-template-columns: 1fr 1fr; align-items: center;
  gap: 80px; padding: 120px 44px 100px;
  max-width: var(--container-max); margin: 0 auto; width: 100%;
}
.hero-text { color: var(--ivory); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: rgba(61,61,61,0.90); background: rgba(61,61,61,0.10);
  border: 1px solid rgba(61,61,61,0.30);
  padding: 6px 14px; border-radius: var(--r-pill); margin-bottom: 28px;
}
.hero-badge svg { opacity: 0.7; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 5.4rem);
  font-weight: 400; font-style: italic;
  line-height: 1.04; letter-spacing: -0.01em;
  margin-bottom: 24px; color: var(--ivory);
}
.he-content .hero-title,
body[dir="rtl"] .hero-title { font-family: var(--font-he); font-style: normal; }
.hero-title .highlight {
  color: var(--gold); font-style: italic;
  font-family: var(--font-display); font-weight: 400;
}
.hero-subtitle {
  font-family: var(--font-display); font-size: 1.15rem;
  color: rgba(250,250,248,0.65); line-height: 1.80;
  margin-bottom: 20px; max-width: 430px; font-weight: 400;
}
.hero-locations {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 400;
  color: rgba(61,61,61,0.55); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero photo card */
.hero-photo-wrap {
  position: relative; border-radius: var(--r-card); overflow: hidden;
  aspect-ratio: 3/4; max-height: 520px;
  background: rgba(61,61,61,0.06);
  border: 1px solid rgba(61,61,61,0.18);
  box-shadow: 0 12px 48px rgba(61,61,61,0.45);
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-card); }
.hero-photo-placeholder {
  width: 100%; height: 100%; min-height: 380px;
  background: rgba(61,61,61,0.04); border-radius: var(--r-card);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: rgba(61,61,61,0.30); font-family: var(--font-mono);
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
}

/* Hero stat strip */
.hero-stats {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(61,61,61,0.10);
  border-radius: var(--r-sm); overflow: hidden;
  border: 1px solid rgba(61,61,61,0.18); backdrop-filter: blur(12px);
}
.hero-stat { padding: 14px 16px; background: rgba(61,61,61,0.45); text-align: center; }
.hero-stat-num {
  font-family: var(--font-display); font-size: 1.8rem;
  font-style: italic; color: var(--gold); line-height: 1; margin-bottom: 3px;
}
.hero-stat-label {
  font-family: var(--font-mono); font-size: 0.58rem;
  color: rgba(250,250,248,0.45); letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 400;
}

/* Blobs — warm gold glow */
.hero-blob-1, .hero-blob-2 {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(61,61,61,0.09) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero-blob-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(61,61,61,0.05) 0%, transparent 70%);
  bottom: -100px; left: -80px;
}

/* ─── Trust Bar ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--sage); overflow: hidden; padding: 14px 0;
  border-top: 1px solid rgba(120,160,100,0.20);
}
.trust-bar-inner { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.trust-item {
  display: inline-flex; align-items: center; gap: 10px; padding: 0 36px;
  font-family: var(--font-mono); font-size: 0.65rem; font-weight: 400;
  color: rgba(255,255,255,0.82); letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap;
}
.trust-divider { width: 3px; height: 3px; background: rgba(255,255,255,0.35); border-radius: 50%; flex-shrink: 0; }
.trust-item svg { opacity: 0.7; }

/* ─── Specialty Cards ────────────────────────────────────────── */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.specialty-card {
  background: var(--warm-white); border: 1px solid var(--border-light);
  border-radius: var(--r-card); padding: 36px 32px;
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
  cursor: default; position: relative; overflow: hidden;
}
.specialty-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left center;
  transition: transform 0.55s var(--ease);
}
.specialty-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--gold-border); }
.specialty-card:hover::after { transform: scaleX(1); }
.specialty-icon {
  width: 48px; height: 48px; background: var(--gold-pale); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
  color: var(--gold); border: 1px solid var(--gold-border);
  transition: background 0.3s ease, border-radius 0.4s var(--ease);
}
.specialty-card:hover .specialty-icon { background: var(--gold); color: #fff; border-radius: 50%; border-color: transparent; }
.specialty-card h3 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; font-style: italic;
  color: var(--text); margin-bottom: 12px;
}
.he-content .specialty-card h3 { font-family: var(--font-he); font-style: normal; }
.specialty-card p {
  font-family: var(--font-display); font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.78; font-weight: 400;
}
.specialty-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 400;
  color: var(--gold); margin-top: 18px; letter-spacing: 0.10em; text-transform: uppercase;
  transition: gap 0.2s ease;
}
.specialty-card:hover .specialty-card-link { gap: 9px; }

/* ─── Photo Gallery ──────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
/* Symmetric: all items same ratio, same size */
.gallery-item {
  border-radius: var(--r-card); overflow: hidden;
  aspect-ratio: 4/3; background: var(--cream);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.55s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--wide { grid-column: span 2; aspect-ratio: auto; }
.gallery-item--tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-grid--3    { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }

.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,24,20,0.68));
  padding: 24px 14px 12px; color: rgba(250,250,248,0.85);
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 400; letter-spacing: 0.08em;
}
.photo-placeholder {
  width: 100%; height: 100%; min-height: 180px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background: var(--cream); color: var(--gray-400);
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.12em; text-transform: uppercase; border-radius: var(--r-card);
}

/* ─── Why Choose ─────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.why-card {
  padding: 30px 26px; background: var(--warm-white); border-radius: var(--r-card);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--gold-border); }
.why-icon {
  width: 46px; height: 46px; background: var(--gold-pale); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  color: var(--gold); border: 1px solid var(--gold-border);
  transition: border-radius 0.4s var(--ease), background 0.3s ease;
}
.why-card:hover .why-icon { border-radius: 50%; background: var(--gold); color: #fff; border-color: transparent; }
.why-card h4 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; font-style: italic;
  color: var(--text); margin-bottom: 10px;
}
.he-content .why-card h4 { font-family: var(--font-he); font-style: normal; }
.why-card p { font-family: var(--font-display); font-size: 1.02rem; color: var(--text-muted); line-height: 1.75; font-weight: 400; }

/* ─── Stats Strip ────────────────────────────────────────────── */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0; border: 1px solid var(--border-light);
  border-radius: var(--r-card); overflow: hidden; background: var(--warm-white);
}
.stat-card { padding: 36px 24px; text-align: center; border-right: 1px solid var(--border-light); }
.stat-card:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 2.6rem; font-style: italic; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-label { font-family: var(--font-mono); font-size: 0.65rem; font-weight: 400; color: var(--text-muted); letter-spacing: 0.14em; text-transform: uppercase; }

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.testimonial-card {
  background: var(--warm-white); border: 1px solid var(--border-light);
  border-radius: var(--r-card); padding: 32px 28px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}
.testimonial-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-card:hover::before { opacity: 1; }
.testimonial-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 14px; }
.testimonial-body {
  font-family: var(--font-display); font-size: 1.05rem; line-height: 1.82;
  color: var(--text-muted); margin-bottom: 18px; font-style: italic; font-weight: 400;
}
.testimonial-author { font-family: var(--font); font-size: 0.88rem; font-weight: 600; color: var(--text); }
.testimonial-role   { font-family: var(--font-mono); font-size: 0.62rem; color: var(--gold-dim); margin-top: 2px; letter-spacing: 0.10em; text-transform: uppercase; }

/* ─── Doctor Profile ─────────────────────────────────────────── */
.doctor-profile {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.doctor-image-wrap {
  position: relative; border-radius: var(--r-card); overflow: hidden;
  aspect-ratio: 3/4; background: var(--cream);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-md);
}
.doctor-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.doctor-image-tag {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(250,250,248,0.92); backdrop-filter: blur(16px);
  border-radius: var(--r-sm); padding: 14px 18px;
  border: 1px solid var(--gold-border); box-shadow: var(--shadow-sm);
}
.doctor-image-tag-title {
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 400; font-style: italic;
  color: var(--text); margin-bottom: 2px;
}
.doctor-image-tag-sub { font-family: var(--font-mono); font-size: 0.62rem; color: var(--gold-dim); letter-spacing: 0.10em; text-transform: uppercase; }
.doctor-content .badge { margin-bottom: 20px; }
.doctor-content h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400; font-style: italic; color: var(--text);
  margin-bottom: 20px; letter-spacing: -0.01em; line-height: 1.08;
}
.he-content .doctor-content h2 { font-family: var(--font-he); font-style: normal; }
.doctor-content p { font-family: var(--font-display); font-size: 1.05rem; color: var(--text-muted); line-height: 1.82; margin-bottom: 16px; font-weight: 400; }
.doctor-credentials { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.credential-row {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  background: var(--cream); border-radius: var(--r-sm); border: 1px solid var(--border-light);
}
.credential-icon {
  width: 36px; height: 36px; background: var(--warm-white); border-radius: var(--r-xs);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  flex-shrink: 0; box-shadow: var(--shadow-sm); border: 1px solid var(--gold-border);
}
.credential-text { font-family: var(--font); font-size: 0.90rem; font-weight: 600; color: var(--text); }
.credential-sub  { font-family: var(--font-mono); font-size: 0.62rem; color: var(--text-muted); letter-spacing: 0.06em; }

/* ─── Before/After Photos ────────────────────────────────────── */
.before-after-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.before-after-card {
  border-radius: var(--r-card); overflow: hidden;
  background: var(--cream); border: 1px solid var(--border-light);
}
.before-after-images { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.before-after-img { aspect-ratio: 3/4; overflow: hidden; background: var(--cream-deep); position: relative; }
.before-after-img img { width: 100%; height: 100%; object-fit: cover; }
.before-after-label {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 0.60rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(26,24,20,0.65); color: rgba(250,250,248,0.90);
  padding: 3px 10px; border-radius: var(--r-pill); backdrop-filter: blur(4px); white-space: nowrap;
}
.before-after-caption { padding: 14px 16px; font-family: var(--font-mono); font-size: 0.65rem; color: var(--text-muted); font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }

/* ─── CTA Band ───────────────────────────────────────────────── */
.cta-band {
  background: var(--burgundy); padding: 108px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(196,169,91,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 2; }
.cta-band h2 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400; font-style: italic; color: var(--ivory);
  margin-bottom: 18px; letter-spacing: -0.01em; line-height: 1.08;
}
.he-content .cta-band h2 { font-family: var(--font-he); font-style: normal; }
.cta-band p {
  font-family: var(--font-display); font-size: 1.15rem; color: rgba(248,244,227,0.68);
  margin-bottom: 36px; max-width: 460px; margin-left: auto; margin-right: auto;
  line-height: 1.80; font-weight: 400;
}
.cta-band .btn-primary { background: var(--gold); color: #fff; }
.cta-band .btn-primary:hover { background: var(--gold-bright); box-shadow: var(--shadow-gold); }

/* ─── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  background: var(--charcoal); padding: 108px 0 88px; position: relative; overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .btn-outline { color: rgba(250,250,248,0.88); border-color: rgba(250,250,248,0.28); background: transparent; }
.page-hero .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(250,250,248,0.60); color: var(--ivory); }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(61,61,61,0.90); background: rgba(61,61,61,0.10);
  border: 1px solid rgba(61,61,61,0.28); padding: 5px 14px; border-radius: var(--r-pill); margin-bottom: 22px;
}
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 400; font-style: italic; color: var(--ivory);
  line-height: 1.04; letter-spacing: -0.01em; margin-bottom: 22px;
}
.he-content .page-hero h1 { font-family: var(--font-he); font-style: normal; }
.page-hero p { font-family: var(--font-display); font-size: 1.15rem; color: rgba(250,250,248,0.58); max-width: 540px; line-height: 1.80; font-weight: 400; }
.page-hero .hero-blob-1 {
  position: absolute; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(61,61,61,0.08) 0%, transparent 70%);
  border-radius: 50%; top: -180px; right: -120px; pointer-events: none;
}
.page-hero .hero-blob-2 {
  position: absolute; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(61,61,61,0.05) 0%, transparent 70%);
  border-radius: 50%; bottom: -100px; left: -80px; pointer-events: none;
}

/* ─── Hernia Illustration Cards ──────────────────────────────── */
.hernia-illus-grid,
.hernia-types-grid {
  display: grid;
  /* Two perfectly equal columns — symmetric */
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;     /* equal heights */
}
.hernia-illus-card {
  background: var(--warm-white); border: 1px solid var(--border-light);
  border-radius: var(--r-card); overflow: hidden;
  display: flex; flex-direction: column;   /* stretch body to fill */
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.hernia-illus-card:hover { box-shadow: var(--shadow-gold); transform: translateY(-4px); border-color: var(--gold-border); }
.hernia-illus-header {
  background: var(--cream); padding: 28px 24px 20px;
  border-bottom: 1px solid var(--border-light);
  display: flex; flex-direction: column; align-items: center;
}
.hernia-illus-photo {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  background: var(--cream-deep); border-radius: var(--r-sm); margin-bottom: 12px;
}
.hernia-illus-photo img { width: 100%; height: 100%; object-fit: cover; }
.hernia-illus-area { width: 100%; display: flex; align-items: center; justify-content: center; padding: 8px 0; }
.hernia-illus-area svg { max-width: 180px; height: auto; }
.hernia-illus-tag {
  display: inline-flex; font-family: var(--font-mono);
  font-size: 0.62rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--charcoal); color: var(--ivory); padding: 4px 10px; border-radius: var(--r-pill); margin-top: 8px;
}
.hernia-illus-body { padding: 22px 24px; flex: 1; } /* flex:1 equalises card height */
.hernia-illus-body h3 {
  font-family: var(--font-display); font-size: 1.18rem; font-weight: 400; font-style: italic;
  color: var(--text); margin-bottom: 10px;
}
.he-content .hernia-illus-body h3 { font-family: var(--font-he); font-style: normal; }
.hernia-illus-body p { font-family: var(--font-display); font-size: 1.02rem; color: var(--text-muted); line-height: 1.78; margin-bottom: 10px; font-weight: 400; }
.surgical-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 0.65rem; font-weight: 400;
  padding: 4px 10px; border-radius: var(--r-pill); margin-top: 8px; letter-spacing: 0.10em; text-transform: uppercase;
}
.surgical-tag.lap   { background: var(--gold-pale); color: var(--gold-dim); border: 1px solid var(--gold-border); }
.surgical-tag.open  { background: var(--cream); color: var(--text-muted); border: 1px solid var(--border); }
.surgical-tag.both  { background: var(--cream-deep); color: var(--charcoal); border: 1px solid var(--border); }

/* ─── Comparison Table ───────────────────────────────────────── */
.comparison-table {
  width: 100%; border-collapse: collapse; border-radius: var(--r-card);
  overflow: hidden; border: 1px solid var(--border); font-size: 0.95rem;
}
.comparison-table th {
  background: var(--charcoal); color: var(--ivory); padding: 14px 22px; text-align: left;
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
}
.he-content .comparison-table th,
.he-content .comparison-table td { text-align: right; }
.comparison-table td {
  padding: 13px 22px; border-bottom: 1px solid var(--border-light);
  color: var(--text-muted); line-height: 1.65;
  font-family: var(--font-display); font-size: 1rem; font-weight: 400;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--cream); }
.comparison-table .check { color: #1A7A35; font-weight: 700; }

/* ─── Contact ────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--font-mono); font-size: 0.68rem; font-weight: 400; color: var(--gold-dim); letter-spacing: 0.14em; text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px; background: var(--warm-white);
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-family: var(--font-display); font-size: 1rem; font-weight: 400;
  color: var(--text); transition: border-color 0.2s ease, box-shadow 0.2s ease; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(61,61,61,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 12px; }
.clinic-card { background: var(--cream); border-radius: var(--r-card); padding: 22px 24px; border: 1px solid var(--border-light); }
.clinic-name { font-family: var(--font-display); font-weight: 400; font-style: italic; color: var(--text); margin-bottom: 8px; font-size: 1.05rem; }
.clinic-detail { font-family: var(--font-display); font-size: 1rem; color: var(--text-muted); line-height: 1.72; font-weight: 400; }
.clinic-detail a { color: var(--gold); }

/* ─── About Page ─────────────────────────────────────────────── */
.about-hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.about-photo-stack {
  position: relative; display: grid;
  grid-template-columns: 1fr 1fr; gap: 10px;
}
/* Symmetric photo stack: top full-width, two squares below */
.about-photo-main {
  grid-column: span 2; border-radius: var(--r-card); overflow: hidden;
  aspect-ratio: 16/10; background: var(--cream);
  border: 1px solid var(--gold-border); box-shadow: var(--shadow-sm);
}
.about-photo-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo-sm {
  border-radius: var(--r-sm); overflow: hidden;
  aspect-ratio: 1;          /* both squares — symmetric */
  background: var(--cream-deep); border: 1px solid var(--border-light); box-shadow: var(--shadow-sm);
}
.about-photo-sm img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-content h2 {
  font-family: var(--font-display); font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400; font-style: italic; color: var(--text);
  margin-bottom: 16px; letter-spacing: -0.01em; line-height: 1.10;
}
.he-content .about-content h2 { font-family: var(--font-he); font-style: normal; }
.about-content p { font-family: var(--font-display); font-size: 1.05rem; color: var(--text-muted); line-height: 1.82; margin-bottom: 14px; font-weight: 400; }

/* ─── Timeline ───────────────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; padding-right: 28px; }
body:not([dir="rtl"]) .timeline { padding-right: 0; padding-left: 28px; }
.timeline::before {
  content: ''; position: absolute; top: 12px; bottom: 12px; right: 7px; width: 1px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--cream-deep) 100%); border-radius: 2px;
}
body:not([dir="rtl"]) .timeline::before { right: auto; left: 7px; }
.timeline-item { position: relative; padding: 0 0 28px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; right: -35px; top: 4px;
  width: 14px; height: 14px; background: var(--gold);
  border: 2.5px solid var(--ivory); border-radius: 50%;
  box-shadow: 0 0 0 2px var(--gold-border); z-index: 1;
}
body:not([dir="rtl"]) .timeline-dot { right: auto; left: -35px; }
.timeline-year { font-family: var(--font-mono); font-size: 0.65rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 4px; }
.timeline-title { font-family: var(--font-display); font-size: 1.08rem; font-weight: 400; font-style: italic; color: var(--text); margin-bottom: 5px; line-height: 1.3; }
.he-content .timeline-title { font-family: var(--font-he); font-style: normal; }
.timeline-desc { font-family: var(--font-display); font-size: 1rem; color: var(--text-muted); line-height: 1.72; font-weight: 400; }
.he-content .timeline-desc { font-family: var(--font-he); }
.education-timeline { display: flex; flex-direction: column; gap: 0; margin-top: 28px; }
.edu-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border-light); }
.edu-item:last-child { border-bottom: none; }
.edu-icon {
  width: 40px; height: 40px; flex-shrink: 0; background: var(--gold-pale);
  border-radius: var(--r-xs); display: flex; align-items: center; justify-content: center;
  color: var(--gold); border: 1px solid var(--gold-border);
}
.edu-label { font-family: var(--font-mono); font-size: 0.65rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-dim); margin-bottom: 3px; }
.edu-title { font-family: var(--font); font-size: 0.92rem; font-weight: 600; color: var(--text); line-height: 1.4; }
.edu-sub   { font-family: var(--font-mono); font-size: 0.62rem; color: var(--text-muted); margin-top: 2px; letter-spacing: 0.06em; }

/* ─── Publications ───────────────────────────────────────────── */
.pub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 10px; }
.pub-card { background: var(--warm-white); border: 1px solid var(--border-light); border-radius: var(--r-sm); padding: 18px 22px; transition: box-shadow 0.25s ease, border-color 0.25s ease; }
.pub-card:hover { box-shadow: var(--shadow-sm); border-color: var(--gold-border); }
.pub-title { font-family: var(--font-display); font-size: 0.95rem; font-weight: 400; font-style: italic; color: var(--text); margin-bottom: 6px; line-height: 1.50; }
.pub-meta  { font-family: var(--font-mono); font-size: 0.62rem; color: var(--gold-dim); letter-spacing: 0.08em; text-transform: uppercase; }

/* ─── Lecture / Conference Photos ────────────────────────────── */
.lecture-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.lecture-item {
  border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 4/3;
  background: var(--cream); position: relative;
  border: 1px solid var(--border-light); box-shadow: var(--shadow-sm);
}
.lecture-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lecture-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,24,20,0.72));
  padding: 20px 14px 12px; font-family: var(--font-mono);
  font-size: 0.62rem; color: rgba(250,250,248,0.82); font-weight: 400; letter-spacing: 0.08em;
}

/* ─── FAQ Accordion ──────────────────────────────────────────── */
.faq-section { background: var(--cream); }
.faq-header  { margin-bottom: 40px; }
.faq-list    { display: flex; flex-direction: column; gap: 10px; max-width: 760px; }
.faq-item {
  background: var(--warm-white); border: 1px solid var(--border-light);
  border-radius: var(--r-sm); overflow: hidden;
  box-shadow: 0 1px 6px rgba(26,24,20,0.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq-item:hover  { box-shadow: 0 4px 18px rgba(26,24,20,0.08); border-color: var(--gold-border); }
.faq-item.open   { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 400; font-style: italic; color: var(--text);
  cursor: pointer; gap: 16px; width: 100%; text-align: right; background: transparent; border: none;
}
.he-content .faq-question { font-family: var(--font-he); text-align: right; font-style: normal; }
.en-content .faq-question { text-align: left; }
.faq-question::after {
  content: ''; display: block; width: 20px; height: 20px; flex-shrink: 0;
  background: var(--gold-pale); border: 1px solid var(--gold-border); border-radius: 50%;
  transition: background 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M5 2v6M2 5h6' stroke='%23A27B5B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
}
.faq-item.open .faq-question::after {
  background-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 5h6' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  font-family: var(--font-display); font-size: 1.02rem; color: var(--text-muted);
  line-height: 1.82; font-weight: 400;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 24px 22px; border-top: 1px solid var(--border-light); }

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--burgundy); padding: 72px 0 36px; color: rgba(250,240,230,0.60);
  border-top: 2px solid var(--gold-border);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 44px; margin-bottom: 52px; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; font-style: italic; color: var(--ivory); margin-bottom: 8px; }
.footer-brand-sub  { font-family: var(--font-display); font-size: 0.98rem; opacity: 0.55; line-height: 1.70; font-weight: 400; }
.footer-col h5     { font-family: var(--font-mono); font-size: 0.65rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 14px; }
.footer-col ul     { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a   { font-family: var(--font-display); font-size: 0.98rem; color: rgba(250,250,248,0.55); transition: color 0.2s ease; font-weight: 400; }
.footer-col ul a:hover { color: var(--gold); opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.10em; color: rgba(250,250,248,0.30);
}


/* ─── Footer element (HTML uses <footer> tag) ───────────────── */
footer {
  background: var(--burgundy);
  padding: 72px 0 36px;
  color: rgba(249,240,228,0.62);
  border-top: 2px solid var(--gold-border);
}
.footer-brand-desc {
  font-family: var(--font-display); font-size: 0.96rem;
  color: rgba(249,246,240,0.55); line-height: 1.72; font-weight: 400;
}
.footer-col-title {
  font-family: var(--font-mono); font-size: 0.64rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gold);            /* Rich Gold on Burgundy bg */
  margin-bottom: 14px;
}
.footer-links {
  list-style: none; display: flex; flex-direction: column; gap: 9px;
}
.footer-links a {
  font-family: var(--font-display); font-size: 0.96rem;
  color: rgba(249,246,240,0.62); text-decoration: none;
  transition: color 0.2s ease; font-weight: 400;
}
.footer-links a:hover { color: var(--gold-bright); }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 0.96rem;
  color: rgba(249,246,240,0.62); margin-bottom: 10px;
}
.footer-contact-item svg { opacity: 0.60; flex-shrink: 0; }
.footer-contact-item a { color: rgba(249,246,240,0.80); text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold-bright); }
.footer-social {
  display: flex; align-items: center; gap: 22px;
  padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 28px;
}
.social-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 0.62rem;
  color: rgba(249,246,240,0.45); letter-spacing: 0.10em;
  text-transform: uppercase; text-decoration: none;
  transition: color 0.2s ease;
}
.social-link:hover { color: var(--gold-bright); }
footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.10em; color: rgba(249,246,240,0.30);
}

/* ─── Scroll Animations ──────────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.78s var(--ease), transform 0.78s var(--ease);
  transition-delay: var(--stagger, 0ms);
}
.fade-in.visible { opacity: 1; transform: none; }
.slide-in { opacity: 0; transform: translateX(-20px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.slide-in.visible { opacity: 1; transform: none; }

/* ─── Content section helper ──────────────────────────────────── */
.content-section { padding: 64px 0; }
.content-section h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 400; font-style: italic; color: var(--text); margin-bottom: 16px; }
.he-content .content-section h2, body[dir="rtl"] .content-section h2 { font-family: var(--font-he); font-style: normal; }
.content-section h3 { font-family: var(--font-display); font-size: 1.20rem; font-weight: 400; font-style: italic; color: var(--gold-dim); margin-bottom: 10px; margin-top: 28px; }
.content-section p  { font-family: var(--font-display); font-size: 1.05rem; color: var(--text-muted); line-height: 1.82; margin-bottom: 14px; font-weight: 400; }
.content-section ul { padding-right: 22px; padding-left: 22px; margin-bottom: 14px; }
.content-section li { font-family: var(--font-display); font-size: 1.05rem; color: var(--text-muted); line-height: 1.78; margin-bottom: 8px; font-weight: 400; }

/* ─── Utility classes ────────────────────────────────────────── */
.gradient-text { color: var(--gold); }

/* ─── Diastasis Anatomy Banner ───────────────────────────────── */
.diastasis-anatomy-banner { width: 100%; background: var(--charcoal); position: relative; overflow: hidden; }
.diastasis-anatomy-img { width: 100%; max-height: 520px; object-fit: contain; object-position: center; display: block; background: var(--charcoal); }
.diastasis-anatomy-caption {
  display: flex; align-items: center; gap: 10px; padding: 14px 40px;
  background: rgba(61,61,61,0.60); color: rgba(250,250,248,0.60);
  font-family: var(--font-mono); font-size: 0.65rem; line-height: 1.5; letter-spacing: 0.08em;
  border-top: 1px solid rgba(61,61,61,0.10);
}
.diastasis-anatomy-caption-icon { flex-shrink: 0; color: rgba(61,61,61,0.45); }

/* ─── OR Photo Banner ────────────────────────────────────────── */
.or-photo-banner {
  width: 100%; border-radius: var(--r-card); overflow: hidden;
  position: relative; aspect-ratio: 16/9; background: var(--cream);
  border: 1px solid var(--gold-border); box-shadow: var(--shadow-md);
}
.or-photo-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.or-photo-banner-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,24,20,0.68));
  padding: 32px 20px 16px; color: rgba(250,250,248,0.85);
  font-family: var(--font-mono); font-size: 0.65rem; font-weight: 400; letter-spacing: 0.10em;
}

/* ─── OR Photo Strip — symmetric cards ──────────────────────── */
.or-strip-section {
  padding: 24px;
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.or-strip-grid { display: grid; gap: 12px; align-items: stretch; }
.or-strip-3col { grid-template-columns: 1fr 1fr 1fr; }  /* all equal */
.or-strip-2col { grid-template-columns: 1fr 1fr; }
.or-strip-2col .or-strip-cell { height: 340px; }
.or-strip-cell {
  overflow: hidden; position: relative; border-radius: var(--r-card);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-light);
}
.or-strip-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
.or-strip-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 18px;
  background: linear-gradient(transparent, rgba(26,24,20,0.68)); color: rgba(250,250,248,0.90);
  font-family: var(--font-mono); font-size: 0.65rem; font-weight: 400; letter-spacing: 0.10em; text-transform: uppercase;
}
.or-strip-caption-lg {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 22px;
  background: linear-gradient(transparent, rgba(26,24,20,0.75)); color: var(--ivory);
}
.or-strip-caption-lg-title { font-family: var(--font-display); font-weight: 400; font-style: italic; font-size: 1rem; margin-bottom: 3px; }
.or-strip-caption-lg-sub   { font-family: var(--font-mono); font-size: 0.62rem; opacity: 0.72; letter-spacing: 0.08em; }
@media (max-width: 640px) {
  .or-strip-section { padding: 14px; }
  .or-strip-3col, .or-strip-2col { grid-template-columns: 1fr; }
}

/* ─── About Inner ────────────────────────────────────────────── */
.about-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center; }
@media (max-width: 768px) { .about-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ─── Stat Row ───────────────────────────────────────────────── */
.stat-row {
  display: flex; border: 1px solid var(--border-light);
  border-radius: var(--r-sm); overflow: hidden; margin-top: 28px; background: var(--warm-white);
}
.stat-item { flex: 1; padding: 20px 16px; text-align: center; border-right: 1px solid var(--border-light); }
.stat-item:last-child { border-right: none; }
.stat-item .stat-num   { font-family: var(--font-display); font-size: 2rem; font-style: italic; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.stat-item .stat-label { font-family: var(--font-mono); font-size: 0.65rem; font-weight: 400; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; }

/* ─── Photo Gallery Section (dark bg) ───────────────────────── */
.photo-gallery { padding: 108px 0; background: var(--charcoal); }
.photo-gallery .gallery-eyebrow { font-family: var(--font-mono); font-size: 0.68rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(61,61,61,0.55); margin-bottom: 8px; }
.photo-gallery .section-title  { color: var(--ivory); }
.photo-gallery .gallery-item   { border-color: rgba(61,61,61,0.14); box-shadow: 0 4px 24px rgba(61,61,61,0.40); }

/* Gallery grid — repeated for specificity */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto; gap: 10px; margin-top: 36px;
}
/* Symmetric: all items same aspect ratio */
.gallery-item {
  border-radius: var(--r-sm); overflow: hidden; position: relative;
  background: var(--cream); aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-light);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); display: block; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item--wide { grid-column: span 2; aspect-ratio: auto; }
.gallery-item--tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-grid--3    { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }

/* ─── FAQ icon (legacy) ──────────────────────────────────────── */
.faq-icon { font-size: 1.2rem; font-weight: 300; color: var(--gold-dim); flex-shrink: 0; transition: transform 0.25s ease, color 0.2s ease; line-height: 1; }
.faq-item.open .faq-icon { color: var(--gold); }

/* ─── About photo placeholder ────────────────────────────────── */
.about-photo-placeholder {
  aspect-ratio: 3/4; background: var(--cream); border-radius: var(--r-card);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: var(--gray-400); font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid var(--border-light);
}

/* ─── Hernia illus SVG / PNG ─────────────────────────────────── */
.hernia-illus-svg {
  padding: 16px 20px; background: var(--cream); border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 16/9; overflow: hidden;
}
.hernia-illus-svg svg { max-width: 100%; height: auto; }
.hernia-illus-png { padding: 0; aspect-ratio: 16/9; background: var(--cream); overflow: hidden; }
.hernia-illus-png img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hernia-illus-badge {
  display: inline-block; font-family: var(--font-mono); font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--gold-pale); color: var(--gold-dim);
  padding: 3px 10px; border-radius: var(--r-pill); margin-top: 6px; border: 1px solid var(--gold-border);
}

/* ─── Benefits list ──────────────────────────────────────────── */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 18px 16px;
  background: var(--warm-white); border-radius: var(--r-sm); border: 1px solid var(--border-light);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.benefit-item:hover { border-color: var(--gold-border); box-shadow: var(--shadow-sm); }
.benefit-icon {
  width: 32px; height: 32px; flex-shrink: 0; background: var(--gold-pale);
  border-radius: var(--r-xs); display: flex; align-items: center; justify-content: center;
  color: var(--gold); border: 1px solid var(--gold-border);
}
.benefit-text { font-family: var(--font); font-size: 0.92rem; font-weight: 600; color: var(--text); line-height: 1.45; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .doctor-profile { grid-template-columns: 1fr; gap: 48px; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .container { padding: 0 22px; }
  .section, .section-alt, .section-dark { padding: 76px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 84px 22px 76px; }
  .hero-photo-wrap { display: none; }
  .hero-title { font-size: clamp(2.6rem, 8vw, 3.6rem); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hernia-illus-grid, .hernia-types-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { border-bottom: 1px solid var(--border-light); }
  .stat-card:nth-child(even) { border-right: none; }
  .meridian-cursor-dot, .meridian-cursor-ring { display: none; }
  body { cursor: auto; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.3rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.88rem; }
}
