/* ============================================================
   Dr. Maitha bint Salem Al Shamsi — Global Stylesheet
   Designed by Creaa Designs | Digant Sharma
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@200;300;400;500;600&display=swap');

/* ─── CSS Custom Properties ─── */
:root {
  --gold: #C8A870;
  --deep-gold: #8B6520;
  --champagne: #F5E6C5;
  --rose: #9B4568;
  --deep-rose: #6B2845;
  --blush: #F8EEF4;
  --cream: #F9F5EE;
  --pearl: #EDE7DC;
  --sand: #D4C4A8;
  --charcoal: #28252F;
  --navy: #1A2240;
  --slate: #3D4560;
  --text: #3A3340;
  --muted: #7A7285;
  --white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --nav-h: 80px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-soft: 0 8px 40px rgba(26,34,64,0.08);
  --shadow-medium: 0 16px 60px rgba(26,34,64,0.14);
  --radius: 2px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.page-locked { overflow: hidden; }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography System ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }

p { font-size: 1rem; line-height: 1.85; color: var(--text); }

.serif { font-family: var(--font-serif); }
.sans { font-family: var(--font-sans); }

/* ─── Navigation ─── */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: var(--transition);
}

.main-nav.scrolled {
  background: rgba(26,34,64,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

.main-nav.nav-light {
  background: rgba(249,245,238,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.main-nav.nav-light .nav-logo-text,
.main-nav.nav-light .nav-links a {
  color: var(--charcoal);
}

.main-nav.nav-light .nav-logo-monogram {
  background: var(--rose);
  color: var(--white);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-monogram {
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  transition: var(--transition);
}

.nav-logo:hover .nav-logo-monogram { background: var(--rose); color: var(--white); }

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.3;
  transition: var(--transition);
}

.nav-logo-title {
  display: block;
  font-size: 0.62rem;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px; height: 1px;
  background: var(--gold);
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { transform: translateX(-50%) scaleX(1); }

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links .nav-cta {
  background: var(--rose);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--deep-rose); color: var(--white) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-mobile-overlay.open {
  opacity: 1;
}

.nav-mobile-overlay a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  padding: 0.5rem 2rem;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.nav-mobile-overlay.open a {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile-overlay a:hover { color: var(--gold); }

/* ─── Footer ─── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 5rem 2.5rem 2.5rem;
}

.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo-monogram {
  width: 52px; height: 52px;
  font-size: 1.6rem;
  background: var(--gold);
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}

.social-icon:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

.social-icon svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
  max-width: 1300px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--champagne); }

/* ─── Page Transition Overlay ─── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.page-transition.active { opacity: 1; pointer-events: all; }

/* ─── Scroll Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ─── Shared Section Styles ─── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--rose);
}

.section-label.gold { color: var(--gold); }
.section-label.gold::before { background: var(--gold); }

.section-label.white { color: var(--champagne); }
.section-label.white::before { background: var(--gold); }

.section-title {
  font-family: var(--font-serif);
  color: var(--charcoal);
}

.section-title.white { color: var(--white); }

.section-title em {
  font-style: italic;
  color: var(--rose);
}

.section-title.white em { color: var(--champagne); }

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin-top: 1rem;
  line-height: 1.85;
}

.section-sub.white { color: rgba(255,255,255,0.7); }

.divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  margin: 1.5rem 0;
  border-radius: 2px;
}

.divider.center { margin: 1.5rem auto; }
.divider.gold { background: linear-gradient(90deg, var(--gold), var(--champagne)); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--deep-rose);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(155,69,104,0.35);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-gold:hover {
  background: var(--deep-gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,168,112,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── Image System ─── */
.img-cover {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.img-contain {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: top center;
}

.img-portrait {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ─── Cards ─── */
.card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

/* ─── Stat Items ─── */
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
  display: block;
}

/* ─── Hero Shared ─── */
.page-hero {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(26,34,64,0.85) 0%, rgba(26,34,64,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 8rem 2.5rem 5rem;
  width: 100%;
}

/* ─── Quote Block ─── */
.blockquote {
  position: relative;
  padding: 2rem 2.5rem 2rem 3rem;
  border-left: 3px solid var(--rose);
  background: var(--blush);
  border-radius: 0 4px 4px 0;
}

.blockquote::before {
  content: '"';
  position: absolute;
  top: -0.5rem; left: 1rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--rose);
  opacity: 0.25;
  line-height: 1;
}

.blockquote p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
}

.blockquote cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-top: 1rem;
}

.blockquote.dark {
  background: rgba(255,255,255,0.05);
  border-left-color: var(--gold);
}

.blockquote.dark::before { color: var(--gold); }
.blockquote.dark p { color: var(--white); }
.blockquote.dark cite { color: var(--gold); }

/* ─── Section Padding ─── */
.section { padding: 6rem 2.5rem; }
.section-sm { padding: 4rem 2.5rem; }
.section-lg { padding: 8rem 2.5rem; }

.container {
  max-width: 1300px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
}

/* ─── Grid Layouts ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.grid-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center; }
.grid-split.reverse { grid-template-columns: 0.9fr 1.1fr; }

/* ─── Color Backgrounds ─── */
.bg-cream { background: var(--cream); }
.bg-pearl { background: var(--pearl); }
.bg-navy { background: var(--navy); }
.bg-charcoal { background: var(--charcoal); }
.bg-rose { background: var(--rose); }
.bg-blush { background: var(--blush); }
.bg-white { background: var(--white); }

/* ─── Text Utilities ─── */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold) !important; }
.text-rose { color: var(--rose) !important; }
.text-muted { color: var(--muted) !important; }

/* ─── Timeline ─── */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--rose), var(--gold), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--rose);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 3px var(--rose);
}

.timeline-year {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.4rem;
}

.timeline-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.timeline-body {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── Icon Cards ─── */
.icon-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 4px;
  border-top: 3px solid var(--rose);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.icon-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-top-color: var(--gold);
}

.icon-card .icon {
  width: 56px; height: 56px;
  background: var(--blush);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-card .icon svg {
  width: 28px; height: 28px;
  stroke: var(--rose);
}

.icon-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.icon-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── Publication Card ─── */
.pub-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.pub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }

.pub-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.pub-icon svg { width: 22px; height: 22px; stroke: var(--white); }

.pub-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

.pub-card p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ─── Impact Number Strip ─── */
.impact-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  padding: 4rem 2.5rem;
}

.impact-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.impact-item .stat-number { font-size: clamp(2rem, 4vw, 3.5rem); }

.impact-item .stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

/* ─── Gallery Strip ─── */
.gallery-strip {
  display: flex;
  gap: 0;
  overflow: hidden;
}

.gallery-strip-item {
  flex: 1;
  height: 360px;
  overflow: hidden;
  transition: flex 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.gallery-strip-item:hover { flex: 2; }

.gallery-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.gallery-strip-item:hover img { transform: scale(1.05); }

/* ─── Infographic ─── */
.infographic-bar {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.bar-item { display: flex; flex-direction: column; gap: 0.35rem; }

.bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 500;
}

.bar-track {
  height: 6px;
  background: var(--pearl);
  border-radius: 10px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 10px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .grid-split { grid-template-columns: 1fr; gap: 3rem; }
  .grid-split.reverse { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .section { padding: 4rem 1.5rem; }
  .section-lg { padding: 5rem 1.5rem; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-content { padding: 6rem 1.5rem 4rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .gallery-strip { flex-direction: column; }
  .gallery-strip-item { flex: unset; height: 220px; }
  .gallery-strip-item:hover { flex: unset; }
}

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

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--deep-rose); }

/* ─── Selection ─── */
::selection { background: var(--rose); color: var(--white); }
