/* =============================================================
   AL-MUNEEB ZAHID & CO. ADVOCATES
   Design system — single source of truth for all pages.
   Palette: deep navy · muted gold · ivory · charcoal · slate
   Type:    Cormorant Garamond (display) + Montserrat (UI/body)
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --navy:        #0D1B2A;
  --navy-2:      #132A42;
  --navy-3:      #091522;
  --navy-4:      #10263D;
  --gold:        #C5A15A;   /* decorative / on-navy accents & borders */
  --gold-soft:   #D9BC7B;   /* on-navy highlights */
  --gold-ink:    #8A6620;   /* accessible gold text on light (AA) */
  --ivory:       #F7F4EE;
  --ivory-2:     #EFE8DA;
  --charcoal:    #1E1E1E;
  --ink:         #26313C;   /* primary body text on light */
  --slate:       #5A6472;   /* secondary text on light */
  --white:       #FFFFFF;

  /* Lines & surfaces */
  --line-gold:   rgba(197,161,90,.24);
  --line-dark:   rgba(13,27,42,.08);
  --surface:     rgba(255,255,255,.82);
  --glass-navy:  rgba(13,27,42,.90);

  /* Elevation */
  --shadow-sm:   0 10px 30px rgba(13,27,42,.08);
  --shadow-md:   0 22px 60px rgba(13,27,42,.10);
  --shadow-lg:   0 34px 90px rgba(13,27,42,.20);
  --shadow-gold: 0 16px 34px rgba(197,161,90,.30);

  /* Radii */
  --r-xs: 12px;
  --r-sm: 16px;
  --r-md: 22px;
  --r-lg: 28px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 44px);

  /* Fluid type scale */
  --fs-display: clamp(52px, 8vw, 104px);
  --fs-h1:      clamp(44px, 6.2vw, 84px);
  --fs-h2:      clamp(36px, 4.6vw, 62px);
  --fs-h3:      clamp(26px, 3vw, 34px);
  --fs-lead:    clamp(16px, 1.6vw, 18px);
  --fs-body:    15.5px;
  --fs-sm:      13px;
  --fs-xs:      11px;

  /* Rhythm */
  --section-y:  clamp(64px, 9vw, 108px);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur:  .45s;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  font-size: var(--fs-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; }
h1, h2, h3, h4 { margin: 0; }
::selection { background: rgba(197,161,90,.28); color: var(--navy); }

.serif { font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif; }

/* Accessible focus ring */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.on-navy :focus-visible, .site-header :focus-visible, .site-footer :focus-visible { outline-color: var(--gold-soft); }

/* Skip link */
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 200;
  background: var(--gold); color: var(--navy); font-weight: 700; font-size: 13px;
  padding: 10px 18px; border-radius: var(--r-pill); transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Layout helpers ---------- */
.container { width: min(var(--container), calc(100% - var(--gutter) * 2)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .eyebrow::after { content: ""; width: 34px; height: 1px; background: var(--gold); }
.center .section-text { margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold-ink); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
.on-navy .eyebrow, .eyebrow.light { color: var(--gold-soft); }

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--fs-h2); line-height: 1.0; letter-spacing: -.025em;
  color: var(--navy); font-weight: 700; text-wrap: balance;
}
.on-navy .section-title { color: var(--ivory); }
.section-text { max-width: 660px; margin: 18px 0 0; color: var(--slate); font-size: var(--fs-lead); }
.on-navy .section-text { color: rgba(247,244,238,.78); }

/* ---------- Buttons ---------- */
.btn-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn {
  --btn-bg: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 24px; border-radius: var(--r-pill);
  font-size: var(--fs-sm); font-weight: 700; letter-spacing: .02em; line-height: 1.1;
  border: 1px solid transparent; cursor: pointer; text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn svg, .btn .icon { width: 18px; height: 18px; flex: 0 0 auto; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--navy); background: linear-gradient(135deg, var(--gold-soft), var(--gold)); box-shadow: var(--shadow-gold); }
.btn-primary:hover { box-shadow: 0 20px 40px rgba(197,161,90,.40); }
.btn-secondary { color: var(--ivory); border-color: rgba(247,244,238,.30); background: rgba(247,244,238,.07); backdrop-filter: blur(8px); }
.btn-secondary:hover { border-color: rgba(197,161,90,.75); background: rgba(197,161,90,.14); color: var(--white); }
.btn-dark { background: var(--navy); color: var(--ivory); border-color: rgba(197,161,90,.35); }
.btn-dark:hover { background: var(--navy-4); border-color: rgba(197,161,90,.6); }
.btn-light { background: var(--ivory); color: var(--navy); border-color: rgba(197,161,90,.4); }
.btn-light:hover { background: var(--white); border-color: var(--gold); }
.btn-ghost { color: var(--navy); border-color: rgba(13,27,42,.18); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-ink); }
.btn.block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: var(--glass-navy); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197,161,90,.18);
}
.nav { min-height: 78px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.brand-logo-link { flex: 0 1 auto; display: inline-flex; align-items: center; }
.header-brand-logo { width: min(320px, 62vw); height: auto; max-height: 54px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 28px; color: rgba(247,244,238,.84); font-size: 13px; font-weight: 600; }
.nav-links a { position: relative; padding: 28px 2px; letter-spacing: .01em; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 22px; height: 1.5px; background: var(--gold); transition: right var(--dur) var(--ease); }
.nav-links a:hover, .nav-links a[aria-current] { color: var(--white); }
.nav-links a:hover::after, .nav-links a[aria-current]::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn { min-height: 46px; padding: 11px 18px; }

.mobile-toggle {
  display: none; position: relative; width: 48px; height: 48px; border-radius: 14px;
  border: 1px solid rgba(247,244,238,.25); background: rgba(247,244,238,.06); color: var(--ivory); cursor: pointer;
}
.mobile-toggle .toggle-line {
  position: absolute; left: 50%; width: 20px; height: 2px; border-radius: 999px; background: currentColor;
  transform: translateX(-50%); transition: transform .24s var(--ease), opacity .18s var(--ease), top .24s var(--ease);
}
.mobile-toggle .toggle-line:nth-child(1) { top: 16px; }
.mobile-toggle .toggle-line:nth-child(2) { top: 23px; }
.mobile-toggle .toggle-line:nth-child(3) { top: 30px; }
.mobile-toggle[aria-expanded="true"] .toggle-line:nth-child(1) { top: 23px; transform: translateX(-50%) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] .toggle-line:nth-child(2) { opacity: 0; }
.mobile-toggle[aria-expanded="true"] .toggle-line:nth-child(3) { top: 23px; transform: translateX(-50%) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset-inline: 0; top: 78px; z-index: 79;
  background: linear-gradient(180deg, rgba(13,27,42,.99), rgba(17,35,54,.99));
  border-bottom: 1px solid rgba(197,161,90,.2); box-shadow: 0 28px 80px rgba(0,0,0,.42);
  transform: translateY(-16px); opacity: 0; pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu-inner { width: min(var(--container), calc(100% - 32px)); margin-inline: auto; padding: 16px 0 24px; display: grid; gap: 2px; }
.mobile-menu-inner > a { display: flex; justify-content: space-between; align-items: center; color: var(--ivory); padding: 15px 4px; border-bottom: 1px solid rgba(247,244,238,.09); font-weight: 700; font-size: 17px; }
.mobile-menu-inner > a span { color: var(--gold-soft); font-size: 13px; }
.mobile-menu-inner > a[aria-current] { color: var(--gold-soft); }
.mobile-cta { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mobile-cta .btn { width: 100%; min-height: 52px; }
.mobile-backdrop { display: none; position: fixed; inset: 0; z-index: 78; background: rgba(3,8,14,.55); opacity: 0; pointer-events: none; transition: opacity .28s var(--ease); }
.mobile-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Breadcrumbs ---------- */
.breadcrumb { padding: 16px 0 0; }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 12px; color: rgba(247,244,238,.62); }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb li:not(:last-child)::after { content: "›"; color: var(--gold-soft); }
.breadcrumb a { color: rgba(247,244,238,.72); transition: color .2s var(--ease); }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb [aria-current="page"] { color: var(--gold-soft); font-weight: 600; }

/* ---------- Home hero ---------- */
.hero {
  position: relative; display: grid; align-items: center; color: var(--ivory); overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13,27,42,.985) 0%, rgba(13,27,42,.9) 40%, rgba(13,27,42,.55) 68%, rgba(13,27,42,.8) 100%),
    var(--hero-bg, none),
    linear-gradient(135deg, var(--navy), #08111C);
  background-size: cover; background-position: center;
}
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background: radial-gradient(circle at 20% 28%, rgba(197,161,90,.14), transparent 32%),
              linear-gradient(120deg, rgba(197,161,90,.10) 0 1px, transparent 1px 100%); background-size: auto, 84px 84px; }
.hero::after { content: ""; position: absolute; right: -240px; top: -180px; width: 760px; height: 760px; border: 1px solid rgba(197,161,90,.14); border-radius: 50%; box-shadow: inset 0 0 0 64px rgba(247,244,238,.025), inset 0 0 0 126px rgba(197,161,90,.025); pointer-events: none; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(32px, 5vw, 56px); align-items: center; padding: clamp(56px, 8vw, 92px) 0; }
.hero-copy { max-width: 700px; }
.hero h1 { font-family: "Cormorant Garamond", Georgia, serif; font-size: var(--fs-display); line-height: .93; letter-spacing: -.03em; font-weight: 700; }
.hero h1 span { color: var(--gold-soft); display: block; font-size: .56em; letter-spacing: .005em; margin-top: 8px; }
.hero-lede { margin: 24px 0 30px; max-width: 620px; color: rgba(247,244,238,.85); font-size: var(--fs-lead); }
.hero-meta { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 36px; max-width: 640px; }
.meta-card { padding: 18px 16px; border: 1px solid rgba(197,161,90,.24); background: rgba(247,244,238,.06); border-radius: var(--r-sm); backdrop-filter: blur(10px); }
.meta-card b { display: block; color: var(--gold-soft); font-family: "Cormorant Garamond", Georgia, serif; font-size: 24px; line-height: 1.05; margin-bottom: 4px; }
.meta-card span { display: block; color: rgba(247,244,238,.74); font-size: 10.5px; line-height: 1.45; text-transform: uppercase; letter-spacing: .07em; font-weight: 600; }

.hero-visual { position: relative; display: grid; align-items: center; }
.advocate-card { position: relative; margin-left: auto; width: min(460px, 100%); border-radius: var(--r-xl); padding: 16px;
  background: linear-gradient(180deg, rgba(247,244,238,.12), rgba(247,244,238,.04)); border: 1px solid rgba(197,161,90,.26); box-shadow: var(--shadow-lg); }
.advocate-card::before { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(197,161,90,.24); border-radius: 24px; pointer-events: none; z-index: 3; }
.advocate-photo { position: relative; z-index: 1; aspect-ratio: 5/6; border-radius: 24px; overflow: hidden; }
.advocate-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.advocate-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 46%, rgba(13,27,42,.82) 100%); }
.advocate-caption { position: absolute; left: 34px; right: 34px; bottom: 32px; z-index: 4; color: var(--ivory); }
.advocate-caption .role { color: var(--gold-soft); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px; }
.advocate-caption h2 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 32px; line-height: 1; }
.advocate-caption .credential-line { margin: 7px 0 0; color: rgba(247,244,238,.82); font-size: 13px; line-height: 1.45; }
.advocate-caption .profile-card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--gold-soft); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.advocate-caption .profile-card-link:hover { gap: 12px; }
.hero-seal { position: absolute; left: -26px; top: 54px; z-index: 5; width: 210px; padding: 18px; background: rgba(247,244,238,.95); color: var(--charcoal); border: 1px solid rgba(197,161,90,.35); border-radius: 20px; box-shadow: var(--shadow-lg); }
.hero-seal .small-title { color: var(--gold-ink); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-seal p { margin: 8px 0 0; font-size: 12.5px; color: #5b6470; line-height: 1.55; }

/* ---------- Practice cards (home + services) ---------- */
.services { position: relative; background: radial-gradient(circle at top left, rgba(197,161,90,.08), transparent 30%), var(--ivory); overflow: hidden; }
.services-grid { position: relative; z-index: 2; margin-top: 52px; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.service-card { position: relative; display: flex; flex-direction: column; overflow: hidden; isolation: isolate;
  min-height: 384px; border-radius: var(--r-lg); background: rgba(255,255,255,.85); border: 1px solid var(--line-dark); box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.service-card::after { content: ""; position: absolute; right: -56px; bottom: -58px; width: 148px; height: 148px; border: 1px solid rgba(197,161,90,.18); border-radius: 50%; transition: transform var(--dur) var(--ease); pointer-events: none; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(197,161,90,.4); box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scale(1.25); }
.service-image { height: 130px; flex: 0 0 130px; position: relative; overflow: hidden;
  background-image: linear-gradient(180deg, rgba(13,27,42,.12), rgba(13,27,42,.55)), var(--card-image); background-size: cover; background-position: center;
  border-bottom: 1px solid rgba(197,161,90,.28); transition: transform .5s var(--ease); }
.service-image::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(197,161,90,.22); opacity: .7; }
.service-card:hover .service-image { transform: scale(1.05); }
.service-body { position: relative; z-index: 2; padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.service-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.service-icon { width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; color: var(--gold-ink); background: rgba(197,161,90,.12); border: 1px solid rgba(197,161,90,.22); }
.service-number { color: rgba(13,27,42,.16); font-family: "Cormorant Garamond", Georgia, serif; font-size: 36px; font-weight: 700; line-height: 1; }
.service-card h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 27px; line-height: 1.04; color: var(--navy); margin-bottom: 10px; }
.service-card p { margin: 0; color: var(--slate); font-size: 13px; line-height: 1.62; }
.service-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 22px; color: var(--gold-ink); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: gap var(--dur) var(--ease); }
.service-card:hover .service-link { gap: 14px; }
.service-mobile-hint { display: none; }

/* ---------- Decorative strip ---------- */
.section-strip { position: relative; min-height: 230px; display: grid; place-items: center; overflow: hidden;
  background: linear-gradient(90deg, rgba(13,27,42,.96), rgba(13,27,42,.48) 48%, rgba(13,27,42,.92)), var(--columns-strip, none);
  background-size: cover; background-position: center; border-block: 1px solid rgba(197,161,90,.45); }
.section-strip::before { content: ""; position: absolute; inset: 18px; border-block: 1px solid rgba(197,161,90,.45); pointer-events: none; }
.strip-label { position: relative; z-index: 2; color: rgba(247,244,238,.86); font-size: 13px; font-weight: 700; letter-spacing: .36em; text-transform: uppercase; text-align: center; padding-inline: 24px; }
.strip-label span { color: var(--gold-soft); }

/* ---------- Split section (about / location) ---------- */
.split-section { position: relative; background: var(--navy); color: var(--ivory); overflow: hidden; }
.split-section::before { content: ""; position: absolute; inset: 0; opacity: .95;
  background: linear-gradient(90deg, rgba(13,27,42,.99), rgba(13,27,42,.82)), var(--library-bg, none), radial-gradient(circle at 75% 40%, rgba(197,161,90,.22), transparent 38%);
  background-size: cover; background-position: center; }
.split-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(32px, 5vw, 66px); align-items: center; }
.justice-wrap { position: relative; min-height: 560px; display: flex; align-items: flex-end; justify-content: center; }
.justice-wrap::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(197,161,90,.16), transparent 65%); bottom: 60px; left: 50%; transform: translateX(-50%); pointer-events: none; }
.justice-figure { position: relative; z-index: 2; width: min(440px, 100%); filter: drop-shadow(0 28px 50px rgba(0,0,0,.45)); }
.location-list { margin: 32px 0 0; display: grid; gap: 14px; }
.location-item { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 18px; border: 1px solid rgba(197,161,90,.22); border-radius: var(--r-sm); background: rgba(247,244,238,.06); backdrop-filter: blur(8px); }
.location-item svg { color: var(--gold-soft); }
.location-item b { display: block; color: var(--ivory); margin-bottom: 3px; }
.location-item span { display: block; color: rgba(247,244,238,.74); font-size: 13px; line-height: 1.55; }
.local-profile-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.local-profile-actions .btn { min-height: 46px; padding: 11px 18px; }

/* ---------- Consultation ---------- */
.consultation { background: linear-gradient(180deg, var(--ivory), var(--ivory-2)); }
.consult-card { position: relative; display: grid; grid-template-columns: 1fr .82fr; gap: 40px; align-items: stretch; overflow: hidden;
  padding: clamp(28px, 4vw, 48px); background: rgba(255,255,255,.95); border-radius: var(--r-xl); box-shadow: var(--shadow-md); border: 1px solid var(--line-dark); }
.consult-card::before { content: ""; position: absolute; top: 0; left: 36px; right: 36px; height: 5px; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 0 0 20px 20px; opacity: .8; }
.consult-copy h2 { font-family: "Cormorant Garamond", Georgia, serif; font-size: var(--fs-h2); line-height: .98; letter-spacing: -.025em; color: var(--navy); }
.consult-copy p { margin: 22px 0 30px; color: var(--slate); max-width: 640px; font-size: var(--fs-lead); }
.consult-box { position: relative; background: linear-gradient(160deg, var(--navy), var(--navy-4)); color: var(--ivory); border-radius: var(--r-lg); padding: 32px; overflow: hidden; min-width: 0; }
.consult-box::after { content: ""; position: absolute; width: 260px; height: 260px; border: 1px solid rgba(197,161,90,.18); border-radius: 50%; right: -90px; top: -110px; }
.contact-line { position: relative; z-index: 2; display: grid; grid-template-columns: 34px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(247,244,238,.13); }
.contact-line:last-child { border-bottom: 0; }
.contact-line svg { color: var(--gold-soft); margin-top: 2px; }
.contact-line b { display: block; color: var(--gold-soft); margin-bottom: 4px; font-size: 13px; }
.contact-line span, .contact-line a { display: block; color: rgba(247,244,238,.86); line-height: 1.5; overflow-wrap: anywhere; }
.contact-line a:hover { color: var(--gold-soft); }

/* ---------- Inner page hero ---------- */
.page-hero { position: relative; display: grid; align-items: center; color: var(--ivory); overflow: hidden;
  background: linear-gradient(90deg, rgba(13,27,42,.98), rgba(13,27,42,.78) 58%, rgba(13,27,42,.55)), var(--library-bg, none), linear-gradient(135deg, var(--navy), #08111C);
  background-size: cover; background-position: center; border-bottom: 1px solid rgba(197,161,90,.24); }
.page-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background: radial-gradient(circle at 20% 30%, rgba(197,161,90,.15), transparent 30%), linear-gradient(120deg, rgba(197,161,90,.08) 0 1px, transparent 1px 100%); background-size: auto, 84px 84px; }
.page-hero::after { content: ""; position: absolute; right: -220px; top: -190px; width: 680px; height: 680px; border: 1px solid rgba(197,161,90,.13); border-radius: 50%; pointer-events: none; }
.page-hero-inner { position: relative; z-index: 2; padding: clamp(60px, 8vw, 92px) 0 clamp(52px, 7vw, 82px); max-width: 940px; }
.page-hero h1 { font-family: "Cormorant Garamond", Georgia, serif; font-size: var(--fs-h1); line-height: .95; letter-spacing: -.03em; font-weight: 700; text-wrap: balance; }
.page-hero p { margin: 22px 0 0; max-width: 720px; color: rgba(247,244,238,.83); font-size: var(--fs-lead); }
.page-pills { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.page-pill { padding: 11px 16px; border-radius: var(--r-pill); color: var(--ivory); border: 1px solid rgba(197,161,90,.28); background: rgba(247,244,238,.06); font-size: 11.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }

/* practice hero (with image) */
.practice-hero { position: relative; display: grid; align-items: end; color: var(--ivory); overflow: hidden;
  background: linear-gradient(90deg, rgba(13,27,42,.98), rgba(13,27,42,.76) 50%, rgba(13,27,42,.44)), var(--practice-image, none), var(--library-bg, none);
  background-size: cover; background-position: center; }
.practice-hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 20% 25%, rgba(197,161,90,.16), transparent 30%); }
.practice-hero-inner { position: relative; z-index: 2; padding: clamp(96px, 12vw, 130px) 0 clamp(56px, 7vw, 86px); max-width: 900px; }
.practice-hero h1 { font-family: "Cormorant Garamond", Georgia, serif; font-size: var(--fs-h1); line-height: .95; letter-spacing: -.03em; text-wrap: balance; }
.practice-hero p { margin: 22px 0 0; color: rgba(247,244,238,.83); font-size: var(--fs-lead); max-width: 720px; }

/* ---------- Page sections ---------- */
.page-section { padding-block: var(--section-y); background: var(--ivory); }
.page-section.alt { background: linear-gradient(180deg, var(--ivory), var(--ivory-2)); }
.editorial-grid { display: grid; grid-template-columns: 1fr .86fr; gap: clamp(28px, 4vw, 54px); align-items: start; }
.prose-card { padding: clamp(26px, 3.4vw, 40px); border-radius: var(--r-xl); background: rgba(255,255,255,.85); border: 1px solid var(--line-dark); box-shadow: var(--shadow-sm); }
.prose-card.dark-panel { background: linear-gradient(160deg, var(--navy), var(--navy-4)); border: 1px solid rgba(197,161,90,.24); color: var(--ivory); box-shadow: var(--shadow-lg); }
.prose-card h2, .content-card h2 { font-family: "Cormorant Garamond", Georgia, serif; color: var(--navy); font-size: var(--fs-h2); line-height: 1.0; letter-spacing: -.02em; margin-bottom: 18px; }
.prose-card.dark-panel h2 { color: var(--ivory); }
.prose-card p, .content-card p { margin: 0 0 16px; color: var(--slate); font-size: var(--fs-body); }
.prose-card.dark-panel p { color: rgba(247,244,238,.76); }
.prose-card p:last-child, .content-card p:last-child { margin-bottom: 0; }

.values-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.value-card { padding: 24px; border-radius: var(--r-lg); background: rgba(255,255,255,.8); border: 1px solid var(--line-dark); box-shadow: var(--shadow-sm); }
.value-card b { display: block; font-family: "Cormorant Garamond", Georgia, serif; font-size: 25px; line-height: 1.05; color: var(--navy); margin-bottom: 10px; }
.value-card span { color: var(--slate); font-size: 13px; line-height: 1.6; display: block; }

.portrait-panel { position: relative; min-height: 560px; border-radius: var(--r-xl); overflow: hidden; border: 1px solid rgba(197,161,90,.26); box-shadow: var(--shadow-lg); }
.portrait-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.portrait-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 44%, rgba(13,27,42,.85) 100%); }
.portrait-panel .caption { position: absolute; z-index: 2; left: 32px; right: 32px; bottom: 30px; color: var(--ivory); }
.caption small { color: var(--gold-soft); font-weight: 800; letter-spacing: .16em; text-transform: uppercase; font-size: 11px; }
.caption h2 { margin: 8px 0 6px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 34px; line-height: 1; color: var(--ivory); }
.caption p { margin: 0; color: rgba(247,244,238,.76); font-size: 13px; }

.content-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; margin-top: 46px; }
.content-card { position: relative; padding: 30px; border-radius: var(--r-lg); background: rgba(255,255,255,.82); border: 1px solid var(--line-dark); box-shadow: var(--shadow-sm); overflow: hidden; }
.content-card::after { content: ""; position: absolute; right: -70px; bottom: -70px; width: 160px; height: 160px; border: 1px solid rgba(197,161,90,.16); border-radius: 50%; }
.content-card h3 { font-family: "Cormorant Garamond", Georgia, serif; color: var(--navy); font-size: 30px; line-height: 1.02; margin-bottom: 10px; }
.content-card p { position: relative; z-index: 1; }

.list-check { display: grid; gap: 12px; margin: 22px 0 0; padding: 0; list-style: none; }
.list-check li { display: flex; gap: 12px; color: var(--slate); font-size: 14px; line-height: 1.55; }
.list-check li::before { content: ""; flex: 0 0 7px; width: 7px; height: 7px; border-radius: 99px; background: var(--gold); margin-top: 9px; box-shadow: 0 0 0 4px rgba(197,161,90,.14); }

/* Services index cards */
.service-index-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; margin-top: 50px; }
.service-index-card { position: relative; min-height: 400px; border-radius: var(--r-xl); overflow: hidden; color: var(--ivory); border: 1px solid rgba(197,161,90,.24); box-shadow: var(--shadow-md); display: flex; align-items: flex-end; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.service-index-card .bg { position: absolute; inset: 0; background-image: var(--card-image); background-size: cover; background-position: center; transition: transform .6s var(--ease); }
.service-index-card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(13,27,42,.08) 0%, rgba(13,27,42,.4) 42%, rgba(13,27,42,.94) 100%); }
.service-index-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-index-card:hover .bg { transform: scale(1.06); }
.service-index-body { position: relative; z-index: 2; padding: 26px; }
.service-index-body small { color: var(--gold-soft); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: 11px; }
.service-index-body h2 { margin: 10px 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 32px; line-height: .98; color: var(--ivory); }
.service-index-body p { color: rgba(247,244,238,.74); margin: 0 0 14px; font-size: 13px; }
.service-index-body .service-link { color: var(--gold-soft); }

/* ---------- Practice detail layout ---------- */
.practice-layout { display: grid; grid-template-columns: 1fr 348px; gap: 34px; align-items: start; }
.practice-side-stack { position: sticky; top: 100px; display: grid; gap: 18px; }
.sidebar-card { border-radius: var(--r-lg); padding: 28px; background: linear-gradient(160deg, var(--navy), var(--navy-4)); color: var(--ivory); border: 1px solid rgba(197,161,90,.26); box-shadow: var(--shadow-md); }
.sidebar-card h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 30px; line-height: 1; margin-bottom: 16px; }
.practice-contact-card p { color: rgba(247,244,238,.74); font-size: 13px; margin: 0 0 18px; overflow-wrap: anywhere; }
.practice-contact-card .btn { width: 100%; margin-bottom: 10px; }
.practice-contact-card .btn:last-child { margin-bottom: 0; }
.related-list a { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(247,244,238,.1); color: rgba(247,244,238,.74); font-size: 13px; transition: color .2s var(--ease); }
.related-list a:last-child { border-bottom: 0; }
.related-list a:hover { color: var(--gold-soft); }
.related-list a span { color: var(--gold-soft); font-size: 18px; }

.matter-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.matter-list li { position: relative; padding: 15px 16px 15px 44px; border-radius: var(--r-sm); background: rgba(247,244,238,.72); border: 1px solid var(--line-dark); color: var(--navy); font-size: 13px; line-height: 1.45; }
.matter-list li::before { content: "✓"; position: absolute; left: 16px; top: 14px; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: rgba(197,161,90,.16); color: var(--gold-ink); font-weight: 800; font-size: 12px; }

.process-section { background: linear-gradient(180deg, rgba(255,255,255,.5), rgba(239,232,218,.72)); }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; margin-top: 42px; }
.process-card { padding: 26px; border-radius: var(--r-lg); background: rgba(255,255,255,.82); border: 1px solid var(--line-dark); box-shadow: var(--shadow-sm); }
.process-card .step { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(197,161,90,.14); color: var(--gold-ink); font-weight: 800; font-size: 13px; margin-bottom: 16px; }
.process-card h3 { font-family: "Cormorant Garamond", Georgia, serif; color: var(--navy); font-size: 25px; line-height: 1.02; margin-bottom: 9px; }
.process-card p { margin: 0; color: var(--slate); font-size: 13px; line-height: 1.55; }

/* ---------- Founder / profile components ---------- */
.profile-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .9fr; gap: clamp(32px, 5vw, 60px); align-items: center; padding: clamp(60px, 8vw, 96px) 0; }
.profile-portrait { position: relative; border-radius: var(--r-xl); overflow: hidden; border: 1px solid rgba(197,161,90,.28); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.profile-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.profile-portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(13,27,42,.6)); }
.stat-row { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; margin-top: 36px; }
.stat-card { padding: 20px 16px; border: 1px solid rgba(197,161,90,.24); background: rgba(247,244,238,.06); border-radius: var(--r-sm); text-align: left; }
.stat-card b { display: block; font-family: "Cormorant Garamond", Georgia, serif; color: var(--gold-soft); font-size: 34px; line-height: 1; margin-bottom: 6px; }
.stat-card span { display: block; color: rgba(247,244,238,.72); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; line-height: 1.4; }

.forum-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.forum-cloud span { padding: 10px 16px; border-radius: var(--r-pill); background: rgba(255,255,255,.8); border: 1px solid var(--line-dark); color: var(--navy); font-size: 12.5px; font-weight: 600; box-shadow: var(--shadow-sm); }
.on-navy .forum-cloud span { background: rgba(247,244,238,.06); border-color: rgba(197,161,90,.24); color: var(--ivory); box-shadow: none; }

.institution-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 44px; }
.institution-chip { display: grid; place-items: center; padding: 22px 18px; min-height: 118px; border-radius: var(--r-md); background: var(--white); border: 1px solid var(--line-dark); box-shadow: var(--shadow-sm); }
.institution-chip img { max-height: 66px; width: auto; object-fit: contain; filter: saturate(.9); }
.institution-note { margin: 20px 0 0; color: var(--slate); font-size: 13.5px; line-height: 1.6; }

.citation-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 40px; }
.citation-card { position: relative; padding: 22px 22px 22px 22px; border-radius: var(--r-md); background: linear-gradient(160deg, rgba(255,255,255,.9), rgba(247,244,238,.7)); border: 1px solid var(--line-dark); box-shadow: var(--shadow-sm); }
.citation-card .cite { font-family: "Cormorant Garamond", Georgia, serif; color: var(--navy); font-size: 22px; line-height: 1.1; font-weight: 700; }
.citation-card .cite-tag { display: block; margin-top: 8px; color: var(--gold-ink); font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 42px; }
.team-card { padding: 24px 18px; border-radius: var(--r-md); background: rgba(255,255,255,.82); border: 1px solid var(--line-dark); box-shadow: var(--shadow-sm); text-align: center; }
.team-avatar { width: 62px; height: 62px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center; font-family: "Cormorant Garamond", Georgia, serif; font-size: 26px; font-weight: 700; color: var(--gold-ink); background: rgba(197,161,90,.14); border: 1px solid rgba(197,161,90,.3); }
.team-card b { display: block; color: var(--navy); font-size: 15px; margin-bottom: 4px; }
.team-card span { display: block; color: var(--slate); font-size: 12px; letter-spacing: .02em; }

/* ---------- Contact page ---------- */
.contact-page-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: stretch; }
.contact-detail-card { border-radius: var(--r-xl); padding: clamp(26px, 3vw, 36px); background: linear-gradient(160deg, var(--navy), var(--navy-4)); color: var(--ivory); border: 1px solid rgba(197,161,90,.26); box-shadow: var(--shadow-md); }
.contact-external-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.contact-external-links .btn { min-height: 46px; padding: 11px 16px; }
.form-card { border-radius: var(--r-xl); padding: clamp(26px, 3vw, 36px); background: rgba(255,255,255,.9); border: 1px solid var(--line-dark); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 700; color: var(--navy); font-size: 13px; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(13,27,42,.16); border-radius: var(--r-sm); padding: 14px 15px; background: #fff; font-family: inherit; font-size: 14px; color: var(--navy); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(197,161,90,.2); }
.field textarea { min-height: 138px; resize: vertical; }
.form-note { margin: 4px 0 0; color: var(--slate); font-size: 12px; }

.map-section { background: linear-gradient(180deg, var(--ivory), var(--ivory-2)); }
.map-panel { overflow: hidden; border-radius: var(--r-xl); border: 1px solid var(--line-dark); box-shadow: var(--shadow-md); background: var(--white); }
.map-panel-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding: 26px 30px 22px; }
.map-panel-head h2 { color: var(--navy); font-family: "Cormorant Garamond", Georgia, serif; font-size: var(--fs-h3); line-height: 1; }
.map-panel-head p { margin: 8px 0 0; color: var(--slate); font-size: 14px; }
.map-panel iframe { display: block; width: 100%; height: 440px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-3); color: rgba(247,244,238,.72); padding: clamp(48px, 7vw, 68px) 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .8fr 1.15fr 1.1fr; gap: 34px; margin-bottom: 34px; align-items: start; }
.footer-brand-logo { width: min(300px, 100%); height: auto; margin-bottom: 18px; }
.footer-text { margin: 0; font-size: 13px; color: rgba(247,244,238,.64); line-height: 1.65; }
.footer-title { margin-bottom: 14px; color: var(--ivory); font-family: "Cormorant Garamond", Georgia, serif; font-size: 24px; line-height: 1.05; }
.footer-links { display: grid; gap: 9px; font-size: 13px; }
.footer-links.two-col { grid-template-columns: repeat(2, minmax(0,1fr)); column-gap: 26px; }
.footer-links a { color: rgba(247,244,238,.66); transition: color .2s var(--ease); width: fit-content; }
.footer-links a:hover { color: var(--gold-soft); }
.footer-profile-links { display: grid; gap: 9px; margin-top: 16px; font-size: 13px; }
.footer-profile-links a { display: inline-flex; align-items: center; gap: 9px; color: rgba(247,244,238,.7); transition: color .2s var(--ease), transform .2s var(--ease); width: fit-content; }
.footer-profile-links a:hover { color: var(--gold-soft); transform: translateX(2px); }
.footer-profile-links svg { flex: 0 0 auto; color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(197,161,90,.18); padding-top: 18px; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; align-items: center; color: rgba(247,244,238,.6); font-size: 12px; }
.footer-bottom a { color: rgba(247,244,238,.7); }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ---------- WhatsApp float ---------- */
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 56px; height: 56px; border-radius: 999px; display: grid; place-items: center; color: var(--navy); background: linear-gradient(135deg, var(--gold-soft), var(--gold)); box-shadow: 0 18px 36px rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.35); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 22px 44px rgba(0,0,0,.34); }
.whatsapp-icon { width: 19px; height: 19px; object-fit: contain; flex: 0 0 auto; }
.whatsapp-float .whatsapp-icon { width: 26px; height: 26px; }
.linkedin-svg-icon { width: 18px; height: 18px; display: inline-block; flex: 0 0 auto; background: currentColor; -webkit-mask: url('/assets/img/linkedin.svg') center/contain no-repeat; mask: url('/assets/img/linkedin.svg') center/contain no-repeat; }

/* ---------- Scroll reveal (progressive enhancement) ----------
   Visible by default so content shows even without JS; hidden only
   once the .js flag is set, then revealed on scroll. */
.reveal { opacity: 1; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1080px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-actions .mobile-toggle { display: block; }
  .mobile-menu, .mobile-backdrop { display: block; }
  .hero-grid, .split-grid, .consult-card, .editorial-grid, .practice-layout, .contact-page-grid, .profile-hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 8px; }
  .services-grid, .service-index-grid, .content-grid, .process-grid, .citation-grid, .institution-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .practice-side-stack { position: static; }
  .portrait-panel { min-height: 460px; }
  .advocate-card { margin: 0 auto; }
  .hero-seal { left: 6px; top: 14px; }
}

@media (max-width: 760px) {
  :root { --section-y: clamp(56px, 12vw, 72px); }
  .nav { min-height: 68px; }
  .mobile-menu { top: 68px; }
  .header-brand-logo { max-height: 46px; }
  .mobile-cta { grid-template-columns: 1fr; }

  .hero-grid { padding: 52px 0 44px; }
  .hero-meta { grid-template-columns: 1fr; gap: 10px; margin-top: 26px; }
  .hero-seal { position: relative; left: auto; top: auto; width: 100%; margin-bottom: 14px; }
  .btn-row { width: 100%; }
  .hero .btn-row .btn, .consult-copy .btn-row .btn { flex: 1 1 auto; }

  /* Services -> controlled horizontal carousel */
  .service-mobile-hint { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--gold-ink); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
  .service-mobile-hint::after { content: "→"; font-size: 15px; }
  .services-grid { display: flex; overflow-x: auto; gap: 16px; margin: 30px -14px 0; padding: 0 14px 20px; width: calc(100% + 28px); scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .services-grid::-webkit-scrollbar { height: 5px; }
  .services-grid::-webkit-scrollbar-thumb { background: rgba(197,161,90,.45); border-radius: 999px; }
  .service-card { min-width: 80vw; max-width: 80vw; scroll-snap-align: center; }

  .service-index-grid, .content-grid, .process-grid, .values-grid, .matter-list, .citation-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .institution-strip { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-links.two-col { grid-template-columns: 1fr; }
  .consult-copy .btn-row { flex-direction: column; align-items: stretch; }
  .consult-copy .btn { width: 100%; }
  .contact-external-links, .local-profile-actions { display: grid; grid-template-columns: 1fr; }
  .contact-external-links .btn, .local-profile-actions .btn { width: 100%; }
  .map-panel-head { display: block; padding: 22px 22px 18px; }
  .map-panel iframe { height: 340px; }
  .whatsapp-float { right: 16px; bottom: 16px; }
}

@media (max-width: 460px) {
  .stat-row, .team-grid, .institution-strip { grid-template-columns: 1fr 1fr; }
  .service-card { min-width: 86vw; max-width: 86vw; }
  .advocate-caption { left: 24px; right: 24px; bottom: 24px; }
}

/* =============================================================
   MOTION PREFERENCES
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* =============================================================
   PRINT
   ============================================================= */
@media print {
  .site-header, .mobile-menu, .mobile-backdrop, .whatsapp-float, .section-strip, .btn, .map-panel iframe { display: none !important; }
  body { background: #fff; color: #000; }
  .hero, .page-hero, .practice-hero, .split-section, .consult-box, .contact-detail-card, .sidebar-card { background: #fff !important; color: #000 !important; }
  .hero h1, .page-hero h1, .section-title, .practice-hero h1 { color: #000 !important; }
  a { color: #000 !important; }
}
