/* ============================================================
   LASER SAADAT ABAD — design tokens + components + RTL.
   Single-language (fa / RTL). Extracted from the design handoff.
   ============================================================ */
:root {
  --bg: #f6f3ea;
  --bg-2: #fdfbf6;
  --surface: #ffffff;
  --forest: #1c4a33;
  --forest-deep: #123524;
  --emerald: #1f8a64;
  --teal: #169a80;
  --gold: #c69a3c;
  --gold-deep: #a87f2c;
  --champagne: #e2c587;
  --ink: #1a2c22;
  --muted: #5f7065;
  --muted-2: #7c8a80;
  --line: rgba(28, 74, 51, 0.12);
  --line-soft: rgba(28, 74, 51, 0.07);
  --gold-line: rgba(198, 154, 60, 0.35);
  --shadow-soft: 0 24px 60px -28px rgba(20, 53, 36, 0.28);
  --shadow-gold: 0 18px 50px -20px rgba(198, 154, 60, 0.4);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --serif: "Cormorant Garamond", serif;
  --sans: "Vazirmatn", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--emerald); color: #fff; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.latin { font-family: var(--serif); direction: ltr; unicode-bidi: isolate; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
}

/* ===================== NAVBAR ===================== */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  transition: background .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
  padding: 22px 0;
}
@keyframes navDrop { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.nav.scrolled {
  background: rgba(253, 251, 246, 0.78);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px -22px rgba(20,53,36,0.4);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand img { height: 44px; width: auto; transition: height .4s var(--ease); }
.nav.scrolled .brand img { height: 38px; }
.brand .wm { line-height: 1.1; }
.brand .wm b {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 19px;
  color: var(--forest);
  display: block;
  letter-spacing: -0.01em;
}
.brand .wm small {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.34em;
  color: var(--gold-deep);
  direction: ltr;
}

.nav-links { display: flex; align-items: center; gap: 38px; list-style: none; }
.nav-links a {
  font-size: 14.5px; font-weight: 400; color: var(--ink); white-space: nowrap;
  position: relative; padding: 4px 0; transition: color .4s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; bottom: 0; right: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width .4s var(--ease);
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 13.5px; font-weight: 500; color: #fff; white-space: nowrap;
  background: var(--forest);
  padding: 11px 24px; border-radius: 100px;
  transition: all .4s var(--ease);
  box-shadow: 0 10px 24px -12px rgba(28,74,51,0.6);
}
.nav-cta:hover { background: var(--emerald); transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(31,138,100,0.6); }

.burger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 110; }
.burger span { width: 26px; height: 2px; background: var(--forest); border-radius: 2px; transition: all .4s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; background: rgba(246,243,234,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 105; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  opacity: 0; pointer-events: none; transition: opacity .5s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--sans); font-weight: 400; font-size: 30px; color: var(--forest);
  opacity: 0; transform: translateY(20px); transition: all .5s var(--ease);
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1){transition-delay:.1s}
.mobile-menu.open a:nth-child(2){transition-delay:.18s}
.mobile-menu.open a:nth-child(3){transition-delay:.26s}
.mobile-menu.open a:nth-child(4){transition-delay:.34s}
.mobile-menu.open a:nth-child(5){transition-delay:.42s}

/* ===================== HERO ===================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: 120px 0 70px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background:
    radial-gradient(ellipse 70% 55% at 78% 18%, rgba(31,138,100,0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 12% 88%, rgba(198,154,60,0.12), transparent 60%),
    linear-gradient(170deg, #fbf9f3 0%, var(--bg) 60%, #f1ede2 100%);
}
.blob-field { position: absolute; inset: -15%; z-index: 0; filter: blur(70px); }
.blob { position: absolute; border-radius: 50%; will-change: transform; opacity: .55; }
.blob.b1 { width: 560px; height: 560px; background: radial-gradient(circle at 40% 40%, rgba(31,138,100,0.5), transparent 70%); top: -6%; left: 4%; animation: drift1 28s ease-in-out infinite; }
.blob.b2 { width: 520px; height: 520px; background: radial-gradient(circle at 50% 50%, rgba(198,154,60,0.5), transparent 70%); bottom: -12%; right: 2%; animation: drift2 34s ease-in-out infinite; }
.blob.b3 { width: 420px; height: 420px; background: radial-gradient(circle at 50% 50%, rgba(22,154,128,0.4), transparent 70%); top: 34%; right: 34%; animation: drift3 40s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(70px,55px) scale(1.12)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-70px,-45px) scale(1.08)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-40px,60px) scale(1.14)} }

#particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }

.hero-grid {
  position: relative; z-index: 5;
  display: grid; grid-template-columns: 1.05fr 0.85fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.hero-content { max-width: 760px; }

.hero-media { position: relative; width: 100%; max-width: 440px; justify-self: start; }
.hero-media video {
  display: block; width: 100%; aspect-ratio: 4 / 5; max-height: 62vh;
  object-fit: cover; border-radius: 999px 999px 30px 30px;
  box-shadow: var(--shadow-soft);
}
.hero-media .media-frame-line {
  position: absolute; inset: -14px; border: 1.5px solid var(--gold);
  border-radius: 999px 999px 42px 42px; opacity: 0.45; pointer-events: none;
}
.hero-media .media-chip {
  position: absolute; bottom: 22px; right: 50%; transform: translateX(50%);
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(253, 251, 246, 0.88);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 8px 18px; border-radius: 100px;
  font-size: 12.5px; font-weight: 500; color: var(--forest); white-space: nowrap;
  box-shadow: 0 10px 26px -14px rgba(20, 53, 36, 0.45);
}
.hero-media .media-chip img { height: 20px; width: auto; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: no-preference) {
  .nav { animation: navDrop 1s var(--ease) .2s backwards; }
  .hero .eyebrow { animation: fadeUp .9s var(--ease) .45s backwards; }
  .hero h1 { animation: fadeUp .9s var(--ease) .6s backwards; }
  .hero .hero-sub { animation: fadeUp .9s var(--ease) .75s backwards; }
  .hero .hero-cta-row { animation: fadeUp .9s var(--ease) .9s backwards; }
  .hero .hero-meta { animation: fadeUp .9s var(--ease) 1.05s backwards; }
  .hero .hero-media { animation: fadeUp 1.1s var(--ease) .85s backwards; }
  .scroll-cue { animation: fadeUp 1s var(--ease) 1.3s backwards; }
}

.hero h1 {
  font-family: var(--sans); font-weight: 200;
  font-size: clamp(52px, 8.5vw, 110px); line-height: 1.04;
  color: var(--forest); margin: 26px 0 0; letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: normal; display: block; font-weight: 300;
}
.hero h1 em .ghost, .hero h1 em .typed {
  background: linear-gradient(100deg, var(--gold-deep), var(--gold) 45%, var(--champagne));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero h1 .type-line { position: relative; display: block; }
.hero h1 .ghost { visibility: hidden; }
.hero h1 .typed { position: absolute; inset: 0; }
.type-caret {
  display: inline-block; width: 3px; height: 0.68em;
  background: var(--gold); border-radius: 2px; margin-right: 8px;
  animation: caretBlink 0.8s steps(1) infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }
/* Fallback when entrance animations fail to start */
html.anim-fallback .nav, html.anim-fallback .hero .eyebrow, html.anim-fallback .hero h1,
html.anim-fallback .hero .hero-sub, html.anim-fallback .hero .hero-cta-row,
html.anim-fallback .hero .hero-meta, html.anim-fallback .hero .hero-media,
html.anim-fallback .scroll-cue { animation: none !important; }
.hero-sub { font-size: clamp(16px, 1.4vw, 20px); color: var(--muted); max-width: 470px; margin-top: 28px; line-height: 2.05; }
.hero-cta-row { display: flex; align-items: center; gap: 28px; margin-top: 42px; flex-wrap: wrap; }

.btn-primary {
  font-family: var(--sans); font-size: 15px; font-weight: 500; color: #fff; white-space: nowrap;
  background: var(--forest); border: none; padding: 17px 40px; border-radius: 100px; cursor: pointer;
  position: relative; overflow: hidden; z-index: 1; transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  box-shadow: 0 16px 34px -16px rgba(28,74,51,0.7);
}
.btn-primary::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, var(--emerald), var(--teal)); opacity: 0; transition: opacity .45s var(--ease); z-index: -1; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -16px rgba(31,138,100,0.7); }
.btn-primary:hover::before { opacity: 1; }

.link-ghost { font-size: 15px; color: var(--forest); display: inline-flex; align-items: center; gap: 10px; transition: gap .4s var(--ease), color .4s var(--ease); }
.link-ghost .dot { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--gold-line); display: flex; align-items: center; justify-content: center; color: var(--gold-deep); transition: all .4s var(--ease); }
.link-ghost:hover { color: var(--gold-deep); gap: 14px; }
.link-ghost:hover .dot { background: var(--gold); color: #fff; border-color: var(--gold); }

.hero-meta { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.hero-meta .m .n { font-family: var(--serif); font-size: 38px; color: var(--forest); line-height: 1; direction: ltr; }
.hero-meta .m .n span { color: var(--gold); }
.hero-meta .m .l { font-size: 13px; color: var(--muted-2); margin-top: 6px; }
.hero-meta .divider { width: 1px; background: var(--line); align-self: stretch; }

.scroll-cue { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-cue span { font-size: 10px; letter-spacing: 0.3em; color: var(--muted-2); }
.scroll-cue .rail { width: 1.5px; height: 46px; background: linear-gradient(to bottom, var(--gold), transparent); position: relative; overflow: hidden; border-radius: 2px; }
.scroll-cue .rail::after { content: ""; position: absolute; top: -50%; left: 0; width: 1.5px; height: 50%; background: var(--forest); animation: railRun 2.4s var(--ease) infinite; }
@keyframes railRun { to { top: 100%; } }

/* ===================== SECTION SHELL ===================== */
section { position: relative; }
.section-pad { padding: 130px 0; }
.section-head { margin-bottom: 64px; max-width: 680px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-family: var(--sans); font-weight: 200; font-size: clamp(36px, 4.8vw, 62px); line-height: 1.14; color: var(--forest); margin-top: 20px; letter-spacing: -0.02em; }
.section-head h2 em { font-family: var(--serif); font-style: italic; color: var(--gold-deep); font-weight: 500; }
.section-head p { color: var(--muted); margin-top: 18px; font-size: 16px; }

.reveal { opacity: 0; transform: translateY(46px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1{transition-delay:.1s} .reveal.d2{transition-delay:.2s} .reveal.d3{transition-delay:.3s}
.reveal.d4{transition-delay:.4s} .reveal.d5{transition-delay:.5s} .reveal.d6{transition-delay:.6s}

/* ===================== SERVICES ===================== */
.services { background: linear-gradient(180deg, var(--bg) 0%, #f1ede2 100%); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: 20px;
  padding: 42px 34px 38px; position: relative; overflow: hidden;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease);
}
.svc-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--emerald), var(--gold)); transform: scaleX(0); transform-origin: right; transition: transform .6s var(--ease); }
.svc-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-soft); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: linear-gradient(150deg, rgba(31,138,100,0.1), rgba(198,154,60,0.12)); color: var(--forest); margin-bottom: 26px; transition: background .5s var(--ease), color .5s var(--ease); }
.svc-card:hover .svc-icon { background: linear-gradient(150deg, var(--forest), var(--emerald)); color: #fff; }
.svc-icon svg { width: 30px; height: 30px; }
.svc-num { position: absolute; top: 36px; left: 34px; font-family: var(--serif); font-size: 17px; color: var(--gold); direction: ltr; }
.svc-card h3 { font-family: var(--sans); font-weight: 500; font-size: 23px; color: var(--ink); margin-bottom: 12px; }
.svc-card p { font-size: 14.5px; color: var(--muted); line-height: 1.95; }
.svc-more { margin-top: 22px; font-size: 13px; color: var(--gold-deep); display: inline-flex; align-items: center; gap: 8px; transition: gap .4s var(--ease); }
.svc-card:hover .svc-more { gap: 14px; }

/* ===================== BEFORE / AFTER ===================== */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ba-card { border-radius: 20px; overflow: hidden; background: var(--surface); border: 1px solid var(--line-soft); box-shadow: 0 18px 50px -32px rgba(20,53,36,0.3); }
.ba-viewer { position: relative; aspect-ratio: 3 / 4; overflow: hidden; cursor: grab; user-select: none; touch-action: none; direction: ltr; }
.ba-viewer:active { cursor: grabbing; }
.ba-layer { position: absolute; inset: 0; display: flex; align-items: flex-start; padding: 18px; background-size: cover; background-position: center; }
.ba-after { background:
    radial-gradient(circle at 60% 38%, rgba(31,138,100,0.20), transparent 58%),
    repeating-linear-gradient(125deg, #e8efe6 0 16px, #dfe9dc 16px 32px); }
.ba-before { background:
    radial-gradient(circle at 42% 42%, rgba(120,120,120,0.14), transparent 58%),
    repeating-linear-gradient(125deg, #ece9e2 0 16px, #e4e0d6 16px 32px);
    clip-path: inset(0 0 0 50%); }
.ba-tag { font-size: 11px; letter-spacing: 0.12em; padding: 5px 13px; border-radius: 100px; background: rgba(255,255,255,0.85); backdrop-filter: blur(4px); font-weight: 500; white-space: nowrap; }
.ba-after .ba-tag { color: var(--emerald); border: 1px solid rgba(31,138,100,0.3); }
.ba-before .ba-tag { color: var(--muted); border: 1px solid var(--line); margin-left: auto; }
.ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--gold); transform: translateX(-50%); z-index: 4; }
.ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--gold); background: #fff; display: flex; align-items: center; justify-content: center; color: var(--gold-deep); box-shadow: 0 6px 18px -4px rgba(198,154,60,0.6); }
.ba-handle svg { width: 20px; height: 20px; }
.ba-caption { padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; }
.ba-caption h4 { font-family: var(--sans); font-weight: 500; font-size: 16.5px; color: var(--ink); }
.ba-caption span { font-size: 12.5px; color: var(--gold-deep); }

/* ===================== DOCTOR ===================== */
.doctor { background: linear-gradient(180deg, #f1ede2, var(--bg)); }
.doctor-grid { display: grid; grid-template-columns: 0.82fr 1fr; gap: 76px; align-items: center; }
.portrait-frame { position: relative; aspect-ratio: 4 / 5; }
.portrait-frame .img { position: absolute; inset: 0; border-radius: 16px; background-size: cover; background-position: center top; background-image:
    radial-gradient(circle at 50% 32%, rgba(31,138,100,0.16), transparent 62%),
    repeating-linear-gradient(120deg, #e7ece4 0 18px, #dde6d9 18px 36px); }
.portrait-frame .frame-line { position: absolute; inset: 20px; border: 1.5px solid var(--gold); border-radius: 8px; opacity: .55; pointer-events: none; }
.portrait-badge { position: absolute; bottom: -22px; right: -18px; background: var(--surface); border-radius: 16px; padding: 18px 22px; box-shadow: var(--shadow-soft); display: flex; align-items: center; gap: 14px; }
.portrait-badge .ic { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(150deg, var(--forest), var(--emerald)); display: flex; align-items: center; justify-content: center; color: #fff; }
.portrait-badge .ic svg { width: 22px; height: 22px; }
.portrait-badge b { font-size: 15px; color: var(--ink); font-weight: 600; display: block; }
.portrait-badge small { font-size: 12px; color: var(--muted); }
.portrait-tag { position: absolute; top: 16px; left: 16px; font-family: var(--serif); font-size: 11px; letter-spacing: 0.14em; color: var(--muted-2); direction: ltr; background: rgba(255,255,255,0.7); padding: 4px 10px; border-radius: 100px; }

.doctor-info h2 { font-family: var(--sans); font-weight: 200; font-size: clamp(34px, 4.2vw, 54px); color: var(--forest); line-height: 1.12; margin: 20px 0 6px; }
.doctor-info .creds { font-size: 14px; color: var(--gold-deep); letter-spacing: 0.04em; margin-bottom: 30px; }
.doctor-quote { font-family: var(--serif); font-style: italic; font-size: clamp(21px, 2.3vw, 29px); line-height: 1.65; color: var(--forest); padding-right: 24px; border-right: 2px solid var(--gold); margin-bottom: 30px; }
.doctor-info .body-copy { font-size: 15.5px; color: var(--muted); line-height: 2.05; max-width: 480px; margin-bottom: 36px; }
.doctor-stats { display: flex; gap: 50px; }
.doctor-stats .stat .n { font-family: var(--serif); font-size: 42px; color: var(--gold); line-height: 1; direction: ltr; }
.doctor-stats .stat .l { font-size: 12.5px; color: var(--muted); margin-top: 8px; }

/* ===================== BLOG ===================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { border-radius: 20px; overflow: hidden; background: var(--surface); border: 1px solid var(--line-soft); transition: transform .5s var(--ease), box-shadow .5s var(--ease); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.blog-thumb { aspect-ratio: 16/10; position: relative; overflow: hidden; background-size: cover; background-position: center; background-image:
    radial-gradient(circle at 64% 32%, rgba(31,138,100,0.16), transparent 62%),
    repeating-linear-gradient(125deg, #e7ece4 0 16px, #dee7da 16px 32px); }
.blog-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(31,138,100,0.18), rgba(198,154,60,0.16)); opacity: 0; transition: opacity .5s var(--ease); }
.blog-card:hover .blog-thumb::after { opacity: 1; }
.blog-cat { position: absolute; top: 16px; right: 16px; z-index: 2; font-size: 11px; letter-spacing: 0.08em; color: var(--forest); background: rgba(255,255,255,0.9); backdrop-filter: blur(4px); padding: 5px 13px; border-radius: 100px; font-weight: 500; white-space: nowrap; }
.blog-body { padding: 26px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.blog-body h3 { font-family: var(--sans); font-weight: 500; font-size: 19px; color: var(--ink); line-height: 1.55; margin-bottom: 18px; transition: color .4s var(--ease); }
.blog-card:hover .blog-body h3 { color: var(--emerald); }
.blog-meta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; color: var(--muted); padding-top: 16px; border-top: 1px solid var(--line-soft); }
.blog-meta .read { color: var(--gold-deep); }

/* ===================== CTA BAND ===================== */
.cta-band { padding: 0 0 130px; }
.cta-inner { position: relative; overflow: hidden; border-radius: 28px; background: linear-gradient(135deg, var(--forest-deep), var(--forest) 55%, var(--emerald)); padding: 80px 70px; text-align: center; }
.cta-inner .lotus-wm { position: absolute; right: -4%; bottom: -30%; width: 40%; opacity: 0.12; pointer-events: none; }
.cta-inner .eyebrow { color: var(--champagne); justify-content: center; }
.cta-inner .eyebrow::before { background: var(--champagne); }
.cta-inner h2 { position: relative; font-family: var(--sans); font-weight: 200; font-size: clamp(32px, 4vw, 54px); color: #fff; line-height: 1.18; margin: 18px 0 14px; }
.cta-inner h2 em { font-family: var(--serif); font-style: italic; color: var(--champagne); font-weight: 500; }
.cta-inner p { position: relative; color: rgba(255,255,255,0.78); max-width: 480px; margin: 0 auto 36px; }
.btn-gold { position: relative; font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--forest-deep); background: linear-gradient(100deg, var(--champagne), var(--gold)); border: none; padding: 17px 44px; border-radius: 100px; cursor: pointer; white-space: nowrap; transition: transform .45s var(--ease), box-shadow .45s var(--ease); box-shadow: 0 16px 36px -14px rgba(0,0,0,0.4); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -14px rgba(0,0,0,0.5); }

/* ===================== FOOTER ===================== */
footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 76px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 54px; border-bottom: 1px solid var(--line); }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: var(--muted); max-width: 290px; line-height: 1.95; }
.footer-col h5 { font-size: 12px; letter-spacing: 0.14em; color: var(--gold-deep); margin-bottom: 20px; font-weight: 600; }
.footer-col a { display: block; font-size: 14px; color: var(--muted); margin-bottom: 12px; transition: color .35s var(--ease), padding .35s var(--ease); }
.footer-col a:hover { color: var(--forest); padding-right: 5px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 30px; flex-wrap: wrap; gap: 18px; }
.footer-bottom p { font-size: 12.5px; color: var(--muted-2); }
.socials { display: flex; gap: 12px; }
.socials a { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all .4s var(--ease); }
.socials a:hover { color: #fff; background: var(--forest); border-color: var(--forest); transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .services-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .doctor-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-media { justify-self: center; max-width: 400px; }
  .hero-media video { max-height: 54vh; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section-pad { padding: 96px 0; }
  .cta-inner { padding: 64px 36px; }
}
@media (max-width: 720px) {
  .container { padding: 0 22px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .brand .wm small { display: none; }
  .services-grid, .blog-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .hero-meta { gap: 26px; }
  .hero-meta .divider { display: none; }
  .doctor-stats { gap: 32px; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===================== ARTICLE (journal post) ===================== */
.article { padding: 150px 0 110px; min-height: 70vh; }
.article-wrap { max-width: 760px; }
.article-loading { color: var(--muted); }
.article-head { margin-bottom: 40px; }
.article-head h1 { font-family: var(--sans); font-weight: 200; font-size: clamp(32px, 4.6vw, 56px); line-height: 1.2; color: var(--forest); margin: 18px 0 14px; letter-spacing: -0.02em; }
.article-meta { display: flex; gap: 18px; font-size: 13px; color: var(--muted-2); }
.article-meta .read { color: var(--gold-deep); }
.article-cover { aspect-ratio: 16/9; border-radius: 20px; background-size: cover; background-position: center; margin-bottom: 44px; box-shadow: var(--shadow-soft); }
.article-body { font-size: 16.5px; color: var(--ink); line-height: 2.1; }
.article-body p { margin-bottom: 24px; color: var(--muted); }
.article-body h2 { font-family: var(--sans); font-weight: 400; font-size: clamp(22px, 2.6vw, 30px); color: var(--forest); margin: 40px 0 16px; letter-spacing: -0.01em; }
.article-quote { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.2vw, 27px); line-height: 1.7; color: var(--forest); padding-right: 24px; border-right: 2px solid var(--gold); margin: 32px 0; }
.article-foot { margin-top: 54px; padding-top: 36px; border-top: 1px solid var(--line); }
