/* =============================================================
   ALON ZIV · LAW OFFICE — STYLES
   ============================================================= */

@font-face {
  font-family: "Polin";
  src: url("assets/fonts/Polin-Light.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Polin";
  src: url("assets/fonts/Polin-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Polin";
  src: url("assets/fonts/Polin-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* Primary Hebrew typeface */
@font-face {
  font-family: "Futurism";
  src: url("assets/fonts/Futurism-Regular.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Futurism";
  src: url("assets/fonts/Futurism-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Futurism";
  src: url("assets/fonts/Futurism-Black.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Futurism";
  src: url("assets/fonts/Futurism-Black.woff2") format("woff2");
  font-weight: 900; font-style: normal; font-display: swap;
}

:root {
  --navy-900: #050f1f;
  --navy-800: #0a1d3a;
  --navy-700: #112a55;
  --navy-500: #2c4373;
  --navy-300: #6a7a96;
  --cream-50: #faf7f0;
  --cream-100: #f5f1e8;
  --cream-200: #ece5d3;
  --line: #d9d2bf;
  --gold-600: #a07e44;
  --gold-500: #b8945c;
  --gold-300: #d4b585;

  --serif-he: "Futurism", "Polin", "Frank Ruhl Libre", serif;
  --sans-he: "Futurism", "Polin", "Heebo", sans-serif;
  --serif-en: "Cormorant Garamond", "Futurism", serif;
  --sans-en: "Inter", "Futurism", sans-serif;

  --gutter: clamp(20px, 5vw, 96px);
  --max: 1320px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans-he);
  background: var(--cream-100);
  color: var(--navy-800);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold-500); color: var(--navy-900); }

/* English layout adjustments */
html[lang="en"] body {
  font-family: "Inter", var(--serif-he);
}
html[lang="en"] .nav__name,
html[lang="en"] .hero__title,
html[lang="en"] .section__title,
html[lang="en"] .vision__text,
html[lang="en"] .contact__title,
html[lang="en"] .practice__name,
html[lang="en"] .testimonial__text,
html[lang="en"] .about__copy h3,
html[lang="en"] .about__copy p,
html[lang="en"] .about__pillar div,
html[lang="en"] .section__lead,
html[lang="en"] .hero__sub,
html[lang="en"] .contact__lead,
html[lang="en"] .contact__row div span,
html[lang="en"] .practice__desc {
  font-family: "Cormorant Garamond", "Inter", serif;
}
html[lang="en"] .practice__desc,
html[lang="en"] .about__copy p,
html[lang="en"] .contact__lead,
html[lang="en"] .nav__link,
html[lang="en"] .about__copy p strong,
html[lang="en"] .about__pillar div small,
html[lang="en"] .contact__row div span {
  font-family: "Inter", sans-serif;
}

/* =============================================================
   NAVIGATION  — centered links, big icon-only logo
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  transition: background-color .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(245, 241, 232, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px var(--gutter);
  border-bottom: 1px solid rgba(10, 29, 58, 0.08);
}
.nav__brand {
  display: flex;
  align-items: center;
  justify-self: start;
}
.nav__mark { display: inline-flex; }
.nav__mark img {
  height: 64px; width: auto;
  transition: opacity .3s ease, height .35s ease;
}
.nav.scrolled .nav__mark img { height: 48px; }
.nav__mark .mark-white { display: block; }
.nav__mark .mark-navy { display: none; }
.nav.scrolled .nav__mark .mark-white { display: none; }
.nav.scrolled .nav__mark .mark-navy { display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-self: center;
}
.nav__link {
  font-family: var(--sans-he);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--cream-50);
  position: relative;
  padding: 4px 0;
  transition: color .25s ease;
  white-space: nowrap;
}
.nav.scrolled .nav__link { color: var(--navy-800); }
.nav__link::after {
  content: "";
  position: absolute;
  inset-inline: 0; bottom: -2px;
  height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}
.nav__link:hover { color: var(--gold-300); }
.nav.scrolled .nav__link:hover { color: var(--gold-600); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__lang {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans-en);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--cream-50);
  transition: color .35s ease;
  justify-self: end;
  cursor: pointer;
  user-select: none;
}
.nav.scrolled .nav__lang { color: var(--navy-800); }
.nav__lang span { opacity: .4; transition: opacity .25s; }
.nav__lang span.active { opacity: 1; }
.nav__lang span:hover { opacity: .8; }
.nav__lang i {
  width: 1px; height: 12px; background: currentColor;
  opacity: .35; display: inline-block;
}

/* =============================================================
   HERO  — ambient video + cinematic overlay
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream-50);
  overflow: hidden;
  isolation: isolate;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: brightness(0.55) saturate(0.85) contrast(1.05);
}
/* CSS-driven cinematic background (visible if video not present) */
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(28, 56, 108, 0.45), transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(184, 148, 92, 0.08), transparent 50%),
    linear-gradient(180deg, #050f1f 0%, #0a1d3a 50%, #030914 100%);
  z-index: -2;
}
.hero__bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.025) 38%, transparent 46%),
    linear-gradient(70deg, transparent 55%, rgba(212, 181, 133, 0.04) 62%, transparent 70%);
  animation: drift 22s ease-in-out infinite alternate;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1   0 0 0 0 1   0 0 0 0 1   0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: .85;
}
@keyframes drift {
  0%   { transform: translateX(-2%) translateY(-1%) scale(1.02); }
  100% { transform: translateX(2%) translateY(1%) scale(1.05); }
}
/* premium vignette overlay */
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(5, 15, 31, 0.32) 18%, rgba(5, 15, 31, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 15, 31, 0.55) 0%, rgba(5,15,31,0.22) 32%, rgba(5,15,31,0.42) 72%, rgba(5, 15, 31, 0.88) 100%);
  z-index: -1;
  pointer-events: none;
}
.hero__bg { position: absolute; inset: 0; background: #050f1f; z-index: -2; }

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 0 var(--gutter);
  max-width: 1100px;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans-en);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-300);
  margin-bottom: 36px;
  opacity: 0;
  animation: rise .9s ease .15s forwards;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: ""; width: 28px; height: 1px; background: currentColor; opacity: .6;
}
.hero__title {
  font-family: var(--serif-he);
  font-weight: 700;
  font-size: clamp(40px, 6.2vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  text-wrap: balance;
  opacity: 0;
  animation: rise 1.1s ease .35s forwards;
}
.hero__title em {
  font-style: normal;
  font-weight: 300;
  color: var(--gold-300);
  letter-spacing: 0;
}
.hero__crest {
  width: 62px;
  margin: 0 auto 24px;
  opacity: 0;
  animation: rise .9s ease .15s forwards;
}
.hero__crest img { width: 100%; height: auto; filter: drop-shadow(0 6px 18px rgba(0,0,0,.45)); }
.hero__wordmark {
  font-family: var(--serif-en);
  font-weight: 500;
  font-size: clamp(54px, 12vw, 152px);
  line-height: 0.92;
  letter-spacing: 0.07em;
  margin: 0 0 18px;
  padding-inline-start: 0.07em;
  color: var(--cream-50);
  opacity: 0;
  animation: rise 1.1s ease .3s forwards;
}
.hero__firm {
  font-family: var(--serif-en);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 34px);
  letter-spacing: 0.18em;
  color: var(--gold-300);
  margin: -6px 0 18px;
  padding-inline-start: 0.18em;
  opacity: 0;
  animation: rise 1.1s ease .45s forwards;
}
.hero__tagline {
  font-family: var(--sans-en);
  font-size: clamp(13px, 1.35vw, 17px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.82);
  margin-bottom: 32px;
  padding-inline-start: 0.42em;
  opacity: 0;
  animation: rise .9s ease .7s forwards;
}
.hero__actions {
  margin-top: 46px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 1.1s ease .9s forwards;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: var(--sans-he);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  cursor: pointer;
  white-space: nowrap;
  transition: all .35s ease;
}
.hero__btn svg { width: 14px; height: 14px; }
html[dir="rtl"] .hero__btn svg { transform: scaleX(-1); }
.hero__btn--gold { background: var(--gold-500); color: var(--navy-900); border: 1px solid var(--gold-500); }
.hero__btn--gold:hover { background: var(--gold-300); border-color: var(--gold-300); }
.hero__btn--ghost { background: rgba(255,255,255,0.04); color: var(--cream-50); border: 1px solid rgba(245, 241, 232, 0.5); }
.hero__btn--ghost:hover { background: rgba(245,241,232,0.12); border-color: var(--cream-50); }
.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 28px;
  width: 240px;
  opacity: 0;
  animation: rise .9s ease .55s forwards;
}
.hero__divider span { flex: 1; height: 1px; background: rgba(245, 241, 232, 0.4); }
.hero__divider i {
  width: 8px; height: 8px;
  background: var(--gold-500);
  transform: rotate(45deg);
}
.hero__sub {
  font-family: var(--serif-he);
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.75;
  color: rgba(245, 241, 232, 0.85);
  max-width: 780px;
  margin: 0 auto;
  text-wrap: pretty;
  opacity: 0;
  animation: rise 1.1s ease .65s forwards;
}
.hero__cta {
  margin-top: 52px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 38px;
  border: 1px solid rgba(245, 241, 232, 0.55);
  font-family: var(--sans-he);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--cream-50);
  transition: all .35s ease;
  opacity: 0;
  animation: rise 1.1s ease .85s forwards;
  cursor: pointer;
  background: transparent;
}
.hero__cta:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}
.hero__cta svg { width: 14px; height: 14px; }

/* Scroll indicator — just animated line, centered */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: rise 1.1s ease 1.1s forwards;
  pointer-events: none;
}
.hero__scroll i {
  display: block;
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent 0%, var(--gold-500) 100%);
  position: relative;
  overflow: hidden;
}
.hero__scroll i::after {
  content: "";
  position: absolute;
  top: -60px;
  left: 0; right: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--cream-50));
  animation: scrollDrop 2.4s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { top: -60px; }
  50% { top: 60px; }
  100% { top: 60px; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================================
   SECTION HELPERS
   ============================================================= */
.section {
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  position: relative;
}
.section--dark { background: var(--navy-800); color: var(--cream-50); }
.section--cream { background: var(--cream-100); }
.section--paper { background: var(--cream-50); }
.section__inner { max-width: var(--max); margin: 0 auto; }

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans-en);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-600);
  margin-bottom: 24px;
}
.section--dark .section__eyebrow { color: var(--gold-300); }
.section__eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor; opacity: .6;
}
.section__title {
  font-family: var(--serif-he);
  font-weight: 700;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.section__title em {
  font-style: normal;
  font-weight: 300;
  color: var(--gold-600);
}
.section--dark .section__title em { color: var(--gold-300); }
.section__lead {
  font-family: var(--serif-he);
  font-weight: 300;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.75;
  max-width: 720px;
  color: var(--navy-700);
}
.section--dark .section__lead { color: rgba(245, 241, 232, 0.78); }

/* =============================================================
   PRACTICE AREAS  — navy card grid
   ============================================================= */
.practice {
  background:
    radial-gradient(ellipse at 72% -10%, rgba(28, 56, 108, 0.5), transparent 60%),
    linear-gradient(180deg, #0a1d3a 0%, #071630 100%);
  color: var(--cream-50);
  padding: clamp(80px, 12vw, 158px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.practice__inner { max-width: var(--max); margin: 0 auto; position: relative; }
.practice__head {
  max-width: 720px;
  margin: 0 0 clamp(40px, 5vw, 68px);
}
.practice .section__eyebrow { color: var(--gold-300); }
.practice__title {
  font-family: var(--serif-he);
  font-weight: 700;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.practice__lead {
  font-family: var(--serif-he);
  font-weight: 300;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.75;
  color: rgba(245, 241, 232, 0.78);
  max-width: 660px;
  margin: 0;
}
.practice__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 1.7vw, 26px);
}
.pcard {
  grid-column: span 2;
  position: relative;
  background: rgba(255, 255, 255, 0.022);
  border: 1px solid rgba(212, 181, 133, 0.16);
  padding: clamp(28px, 2.6vw, 42px) clamp(24px, 2.3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: border-color .45s ease, background .45s ease, transform .55s cubic-bezier(.2,.7,.2,1), box-shadow .55s ease;
}
.pcard::before {
  content: "";
  position: absolute;
  top: 0; inset-inline-start: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transition: width .55s cubic-bezier(.5,0,.2,1);
}
.pcard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% -10%, rgba(184,148,92,0.14), transparent 60%);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.pcard--d { grid-column: 2 / span 2; }
.pcard--e { grid-column: 4 / span 2; }
.pcard:hover {
  border-color: rgba(212, 181, 133, 0.5);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-7px);
  box-shadow: 0 30px 60px -34px rgba(0,0,0,0.7);
}
.pcard:hover::before { width: 100%; }
.pcard:hover::after { opacity: 1; }
.pcard__icon {
  width: 46px; height: 46px;
  color: var(--gold-300);
  position: relative; z-index: 1;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), color .45s ease;
}
.pcard__icon svg { width: 100%; height: 100%; }
.pcard:hover .pcard__icon { transform: translateY(-3px) scale(1.08) rotate(-3deg); color: #e8cda3; }
.pcard__name,
.pcard__rule,
.pcard__desc { position: relative; z-index: 1; }
.pcard__rule { transition: width .55s cubic-bezier(.5,0,.2,1); }
.pcard:hover .pcard__rule { width: 64px; }
.pcard__name {
  font-family: var(--serif-he);
  font-weight: 700;
  font-size: clamp(20px, 1.65vw, 25px);
  line-height: 1.2;
  margin: 6px 0 0;
  color: var(--cream-50);
}
.pcard__ma {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-300);
  font-size: 0.72em;
  margin-inline-start: 5px;
}
.pcard__rule {
  width: 40px; height: 2px;
  background: var(--gold-500);
  opacity: .85;
}
.pcard__desc {
  font-family: var(--sans-he);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(245, 241, 232, 0.74);
  margin: 0;
}
.pcard__desc--sub { color: rgba(245, 241, 232, 0.48); }

@media (max-width: 900px) {
  .practice__grid { grid-template-columns: repeat(2, 1fr); }
  .pcard, .pcard--d, .pcard--e { grid-column: span 1; }
}
@media (max-width: 560px) {
  .practice__grid { grid-template-columns: 1fr; }
  .pcard, .pcard--d, .pcard--e { grid-column: 1 / -1; }
}

/* =============================================================
   VISION  — light cream band (rhythm break between dark sections)
   ============================================================= */
.vision {
  position: relative;
  background: var(--cream-100);
  color: var(--navy-800);
  padding: clamp(110px, 16vw, 200px) var(--gutter);
  text-align: center;
  overflow: hidden;
}
.vision::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(184, 148, 92, 0.1), transparent 60%);
}
.vision::after {
  content: "";
  position: absolute; inset-inline: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160,126,68,0.4), transparent);
}
.vision__inner { position: relative; max-width: 1000px; margin: 0 auto; }
.vision__mark {
  font-family: var(--serif-en);
  font-size: 140px;
  line-height: 0.8;
  color: var(--gold-500);
  opacity: 0.45;
  margin-bottom: -10px;
  font-style: italic;
}
.vision__text {
  font-family: var(--serif-he);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin: 0 0 36px;
  text-wrap: balance;
  color: var(--navy-800);
}
.vision__text em {
  font-style: normal;
  color: var(--gold-600);
  font-weight: 300;
}
.vision__attr {
  font-family: var(--sans-en);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.vision__attr::before, .vision__attr::after {
  content: ""; width: 28px; height: 1px; background: currentColor; opacity: .6;
}

/* =============================================================
   PRESENCE GALLERY
   ============================================================= */
.presence {
  background: var(--navy-900);
  color: var(--cream-50);
  padding: clamp(80px, 12vw, 150px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.presence::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184, 148, 92, 0.08), transparent 55%);
  pointer-events: none;
}
.presence__inner { position: relative; max-width: var(--max); margin: 0 auto; }
.presence__head { text-align: center; margin-bottom: 56px; }
.presence__title {
  font-family: var(--serif-he);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.presence__title em { font-style: normal; font-weight: 300; color: var(--gold-300); }
.presence__lead {
  font-family: var(--serif-he);
  font-weight: 300;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  color: rgba(245, 241, 232, 0.78);
  max-width: 640px;
  margin: 0 auto;
}
.presence__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.presence__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy-700);
  min-height: 540px;
}
.presence__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.9) contrast(1.05) brightness(0.92);
  transition: transform 1.3s cubic-bezier(.2,0,.2,1), filter .5s ease;
}
.presence__item--wide img { object-position: center 30%; }
.presence__item:hover img { transform: scale(1.05); filter: saturate(1) contrast(1.05) brightness(1); }
.presence__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 15, 31, 0.85) 100%);
  pointer-events: none;
}
.presence__item figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: 26px 26px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.presence__item figcaption::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--gold-500);
  transform: rotate(45deg);
  flex: 0 0 auto;
}
.presence__item figcaption span {
  font-family: var(--sans-he);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--cream-50);
}
@media (max-width: 880px) {
  .presence__grid { grid-template-columns: 1fr 1fr; }
  .presence__item--wide { grid-column: 1 / -1; min-height: 320px; }
  .presence__item { min-height: 360px; }
}
@media (max-width: 560px) {
  .presence__grid { grid-template-columns: 1fr; }
  .presence__item, .presence__item--wide { min-height: 340px; }
}
.about-section {
  padding: 0;
  background: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.about-split {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 760px;
  align-items: stretch;
}
.about-split::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  inset-inline-end: 0;
  width: 49%;
  background: var(--navy-800);
  z-index: 0;
}
.about-split__media {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 7vw, 90px) clamp(40px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-split__photo {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
  box-shadow: 0 50px 100px -40px rgba(10, 29, 58, 0.55);
  background: var(--cream-50);
  /* gentle overlap into the navy column */
  margin-inline-end: -18%;
}
.about-split__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: saturate(0.95) contrast(1.04);
}
/* secondary photo overlapping bottom-start corner */
.about-split__photo-accent {
  position: absolute;
  bottom: -42px;
  inset-inline-start: -42px;
  width: 52%;
  aspect-ratio: 4 / 3;
  z-index: 3;
  overflow: hidden;
  border: 6px solid var(--cream-100);
  box-shadow: 0 30px 60px -24px rgba(10, 29, 58, 0.5);
}
.about-split__photo-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.04);
}
/* subtle gold frame offset behind the photo */
.about-split__photo::before {
  content: "";
  position: absolute;
  inset-inline-start: -16px;
  top: 16px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold-500);
  z-index: -1;
  pointer-events: none;
}

/* Z monogram floating between sections */
.about-split__mono {
  position: absolute;
  bottom: -34px;
  inset-inline-end: -34px;
  z-index: 4;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cream-50);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px -16px rgba(10, 29, 58, 0.45);
  border: 1px solid rgba(184, 148, 92, 0.35);
}
.about-split__mono img {
  width: 54%;
  height: auto;
  filter: brightness(0) saturate(100%) invert(11%) sepia(35%) saturate(2600%) hue-rotate(200deg) brightness(95%) contrast(95%);
}

.about-split__content {
  position: relative;
  z-index: 2;
  padding: clamp(60px, 8vw, 110px) clamp(40px, 6vw, 90px);
  color: var(--cream-50);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-split__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif-he);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--gold-300);
  margin-bottom: 22px;
}
.about-split__eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--gold-300);
}
.about-split__title {
  font-family: var(--serif-he);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
  color: var(--cream-50);
}
.about-split__body p {
  font-family: var(--sans-he);
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.85;
  color: rgba(245, 241, 232, 0.82);
  margin: 0 0 18px;
  max-width: 540px;
}
.about-split__body p strong {
  font-weight: 700;
  color: var(--gold-300);
}
.about-split__body p em {
  font-style: normal;
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  color: var(--cream-50);
}

.about-split__divider {
  margin: 36px 0 32px;
  height: 1px;
  background: rgba(245, 241, 232, 0.18);
  max-width: 540px;
}

.about-split__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  max-width: 540px;
}
.about-stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.about-stat-item__icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--gold-500);
}
.about-stat-item__icon svg { width: 100%; height: 100%; }
.about-stat-item__big {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  color: var(--gold-500);
}
.about-stat-item__big--plain {
  font-style: normal;
  font-family: var(--serif-en);
  font-size: 30px;
  letter-spacing: 0.02em;
}
.about-stat-item__label {
  font-family: var(--sans-he);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(245, 241, 232, 0.75);
  line-height: 1.4;
  max-width: 160px;
}
html[lang="en"] .about-stat-item__label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* Pillars section below split */
.about-pillars-section {
  background: var(--cream-100);
  padding: clamp(60px, 9vw, 110px) var(--gutter);
}
.about-pillars-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.about-pillars-head {
  text-align: center;
  margin-bottom: 56px;
}
.about-pillars-head h3 {
  font-family: var(--serif-he);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  margin: 18px 0 0;
  color: var(--navy-800);
}
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.about-pillar-card {
  background: var(--cream-50);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .3s ease;
  cursor: default;
}
.about-pillar-card:hover { background: var(--cream-100); }
.about-pillar-card i {
  width: 10px; height: 10px;
  background: var(--gold-500);
  transform: rotate(45deg);
}
.about-pillar-card__title {
  font-family: var(--serif-he);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.3;
}
.about-pillar-card__sub {
  font-family: var(--sans-he);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--navy-500);
}

/* Mobile */
@media (max-width: 880px) {
  .about-section { background: var(--navy-800); }
  .about-split { grid-template-columns: 1fr; min-height: auto; }
  .about-split::before { display: none; }
  .about-split__media {
    background: var(--navy-800);
    padding: 60px 28px 50px;
    justify-content: center;
  }
  .about-split__photo {
    margin-inline-end: 0;
    max-width: 300px;
  }
  .about-split__photo::before { display: none; }
  .about-split__mono {
    bottom: -28px;
    inset-inline-end: -22px;
    width: 60px; height: 60px;
  }
  .about-split__content {
    background: var(--navy-800);
    padding: 70px 28px 60px;
  }
  .about-split__stats { grid-template-columns: 1fr; gap: 28px; }
  .about-stat-item { flex-direction: row; text-align: start; gap: 16px; max-width: none; }
  .about-stat-item__label { text-align: start; max-width: none; }
  .about-pillars-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .about-pillars-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   RECOGNITION  — horizontal slider
   ============================================================= */
.recog__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 820px) {
  .recog__head { grid-template-columns: 1fr; }
}
.recog__nav {
  display: flex;
  gap: 12px;
  align-items: center;
}
.recog__btn {
  width: 56px; height: 56px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: grid; place-items: center;
  color: var(--navy-800);
  transition: all .25s ease;
}
.recog__btn:hover {
  background: var(--navy-800);
  color: var(--cream-50);
  border-color: var(--navy-800);
}
.recog__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.recog__btn svg { width: 18px; height: 18px; }
html[dir="rtl"] .recog__btn svg { transform: scaleX(-1); }

.recog__carousel {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 28px);
}
.recog__carousel .recog__viewport { flex: 1 1 auto; min-width: 0; }
.recog__btn--side { flex: 0 0 auto; }
@media (max-width: 640px) {
  .recog__btn--side { width: 44px; height: 44px; }
  .recog__carousel { gap: 8px; }
}

.recog__viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.recog__viewport::-webkit-scrollbar { display: none; }
.recog__track {
  display: flex;
  gap: 0;
}
.recog__card {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 12px 4px;
  display: flex;
  justify-content: center;
}
.recog__card-inner {
  background: var(--cream-100);
  border: 1px solid rgba(10, 29, 58, 0.08);
  padding: 56px clamp(28px, 5vw, 64px) 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 760px;
  transition: background .3s ease;
}
.recog__card-inner:hover { background: var(--cream-200); }

.recog__quote {
  font-family: var(--serif-en);
  position: absolute;
  top: 18px;
  inset-inline-start: 30px;
  font-size: 96px;
  line-height: 0.75;
  color: var(--gold-500);
  opacity: 0.4;
  font-style: italic;
}
.recog__text {
  font-family: var(--serif-he);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.7;
  color: var(--navy-800);
  margin: 0 0 28px;
  letter-spacing: -0.005em;
  flex: 1;
}
.recog__src {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-block-start: 1px solid var(--line);
  font-family: var(--sans-en);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 700;
}
.recog__src i {
  width: 6px; height: 6px;
  background: currentColor;
  transform: rotate(45deg);
}

.recog__dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 48px;
}
.recog__dot {
  width: 28px; height: 2px;
  background: var(--line);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .25s, width .25s;
}
.recog__dot.active {
  background: var(--gold-500);
  width: 52px;
}

.rankings {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 8vw, 100px);
  padding: 36px 0;
  border-block: 1px solid var(--line);
}
.rankings__label {
  font-family: var(--sans-en);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--navy-500);
  font-weight: 700;
}
.rankings__logo {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--navy-800);
  letter-spacing: 0.02em;
  text-align: center;
}
.rankings__logo small {
  display: block;
  font-family: var(--sans-en);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.32em;
  font-weight: 700;
  color: var(--gold-600);
  text-transform: uppercase;
  margin-top: 6px;
}

/* =============================================================
   CONTACT
   ============================================================= */
.contact {
  background: var(--navy-800);
  color: var(--cream-50);
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.contact__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.32;
}
.contact::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(184, 148, 92, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(10, 22, 44, 0.82), rgba(10, 22, 44, 0.92));
}
.contact__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
}
@media (max-width: 900px) { .contact__inner { grid-template-columns: 1fr; } }
.contact__title {
  font-family: var(--serif-he);
  font-weight: 700;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.1;
  margin: 18px 0 22px;
  text-wrap: balance;
}
.contact__title em {
  font-style: normal;
  font-weight: 300;
  color: var(--gold-300);
}
.contact__lead {
  font-family: var(--serif-he);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(245, 241, 232, 0.8);
  max-width: 480px;
  margin: 0 0 44px;
}
.contact__details { display: grid; gap: 22px; }
.contact__row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.12);
}
.contact__row svg {
  width: 16px; height: 16px;
  color: var(--gold-300);
  margin-top: 4px;
  flex: 0 0 auto;
}
.contact__row div small {
  display: block;
  font-family: var(--sans-en);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.55);
  margin-bottom: 6px;
}
.contact__row div span,
.contact__row div a {
  font-family: var(--serif-he);
  font-size: 18px;
  font-weight: 400;
  color: var(--cream-50);
}
.contact__row div a {
  text-decoration: none;
  transition: color .3s ease;
}
.contact__row div a:hover { color: var(--gold-300); }

.form { display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.field { position: relative; }
.field label {
  position: absolute;
  inset-inline-start: 0;
  top: 14px;
  font-family: var(--sans-he);
  font-size: 14px;
  color: rgba(245, 241, 232, 0.5);
  pointer-events: none;
  transition: all .25s ease;
}
.field input, .field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.25);
  padding: 14px 0 10px;
  font-family: var(--sans-he);
  font-size: 16px;
  color: var(--cream-50);
  outline: none;
  resize: none;
}
.field input:focus, .field textarea:focus,
.field input:not(:placeholder-shown), .field textarea:not(:placeholder-shown) {
  border-bottom-color: var(--gold-300);
}
.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-300);
}
.form__submit {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 28px;
  background: var(--gold-500);
  border: 0;
  font-family: var(--sans-he);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy-900);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color .3s ease;
}
.form__submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  transform: translateX(-101%);
  transition: transform .55s cubic-bezier(.7,0,.2,1);
  z-index: -1;
}
html[dir="rtl"] .form__submit::before { transform: translateX(101%); }
.form__submit:hover { color: var(--gold-300); }
.form__submit:hover::before { transform: translateX(0); }
.form__submit span,
.form__submit svg { position: relative; z-index: 1; }
.form__submit svg { width: 14px; height: 14px; transition: transform .35s ease; }
html[dir="rtl"] .form__submit svg { transform: scaleX(-1); }
html[dir="rtl"] .form__submit:hover svg { transform: scaleX(-1) translateX(4px); }
html[dir="ltr"] .form__submit:hover svg { transform: translateX(4px); }

.form__success {
  background: rgba(184, 148, 92, 0.12);
  border-inline-start: 2px solid var(--gold-500);
  padding: 18px 22px;
  color: var(--cream-50);
  font-family: var(--serif-he);
  font-size: 16px;
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--navy-900);
  color: rgba(245, 241, 232, 0.55);
  padding: 36px var(--gutter);
  font-family: var(--sans-he);
  font-size: 12px;
  letter-spacing: 0.02em;
  border-top: 1px solid rgba(245, 241, 232, 0.08);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif-en);
  letter-spacing: 0.3em;
  font-size: 12px;
  font-weight: 700;
  color: var(--cream-50);
}
.footer__brand img { height: 26px; width: auto; }
.footer__credit {
  display: block;
  max-width: var(--max);
  margin: 22px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(245, 241, 232, 0.06);
  font-family: var(--sans-en);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.32);
  text-decoration: none;
  text-align: center;
  transition: color .3s ease;
}
.footer__credit:hover { color: var(--gold-300); }

/* =============================================================
   REVEAL
   ============================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =============================================================
   MOBILE
   ============================================================= */
@media (max-width: 820px) {
  body { font-size: 16px; }
  .nav { padding: 12px 20px; grid-template-columns: 1fr auto; }
  .nav.scrolled { padding: 8px 20px; }
  .nav__mark img { height: 48px; }
  .nav.scrolled .nav__mark img { height: 40px; }
  .nav__links { display: none; }

  .hero { min-height: 92vh; }
  .hero__eyebrow { font-size: 10px; letter-spacing: 0.32em; margin-bottom: 24px; }
  .hero__eyebrow::before, .hero__eyebrow::after { width: 16px; }
  .hero__cta { padding: 14px 24px; font-size: 13px; margin-top: 36px; }
  .hero__scroll { bottom: 24px; }
  .hero__scroll i { height: 40px; }

  .section { padding: 72px 20px; }
  .practice__head { margin-bottom: 48px; }

  .vision { padding: 90px 20px; }
  .vision__mark { font-size: 90px; }

  .recog__head { margin-bottom: 40px; }
  .rankings { gap: 28px; margin-top: 48px; padding: 28px 0; flex-direction: column; }

  .about { gap: 48px; }
  .about__copy h3 { margin: 28px 0 14px; }

  .contact { padding: 72px 20px; }

  .footer__inner { flex-direction: column; text-align: center; gap: 14px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 38px; line-height: 1.08; }
  .hero__sub { font-size: 16px; }
  .section__title { font-size: 32px; }
  .vision__text { font-size: 22px; line-height: 1.4; }
  .contact__title { font-size: 32px; }
  .practice__name { font-size: 20px; }
  .practice__desc { font-size: 14.5px; padding-inline-start: 60px; }
}

/* =============================================================
   LOADER
   ============================================================= */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(ellipse at 50% 38%, #0c2147 0%, #050f1f 72%);
  display: grid; place-items: center;
  transition: opacity .85s ease, visibility .85s ease;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.loader__mark { position: relative; width: 112px; height: 112px; display: grid; place-items: center; margin-bottom: 30px; }
.loader__ring { position: absolute; inset: 0; width: 112px; height: 112px; transform: rotate(-90deg); }
.loader__ring circle {
  fill: none; stroke: var(--gold-500); stroke-width: 1.2;
  stroke-dasharray: 352; stroke-dashoffset: 352;
  animation: loaderRing 2.1s cubic-bezier(.55,0,.2,1) forwards;
}
.loader__z {
  font-family: var(--serif-en); font-weight: 500; font-size: 50px; color: var(--cream-50);
  line-height: 1; opacity: 0; animation: loaderFade .8s ease .4s forwards;
}
.loader__word {
  font-family: var(--serif-en); font-weight: 500; font-size: clamp(28px, 5vw, 42px);
  letter-spacing: 0.36em; color: var(--cream-50); padding-inline-start: .36em;
  opacity: 0; animation: loaderFade .9s ease .6s forwards;
}
.loader__tag {
  font-family: var(--sans-en); font-size: 10px; letter-spacing: 0.44em; text-transform: uppercase;
  color: var(--gold-300); margin-top: 14px; padding-inline-start: .44em;
  opacity: 0; animation: loaderFade .9s ease .85s forwards;
}
.loader__bar { width: 130px; height: 1px; background: rgba(245,241,232,0.14); margin-top: 32px; overflow: hidden; position: relative; }
.loader__bar i {
  position: absolute; inset: 0;
  width: 40%; height: 100%; background: var(--gold-500);
  animation: loaderBar 1.5s ease-in-out .5s infinite;
}
@keyframes loaderRing { to { stroke-dashoffset: 0; } }
@keyframes loaderFade { to { opacity: 1; } }
@keyframes loaderBar {
  0% { transform: translateX(-130%); }
  100% { transform: translateX(330%); }
}

/* =============================================================
   PANELS GALLERY — light (alternates with dark Presence)
   ============================================================= */
.presence--alt {
  background: var(--cream-100);
  color: var(--navy-800);
}
.presence--alt::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(184, 148, 92, 0.1), transparent 55%);
}
.presence--alt .section__eyebrow { color: var(--gold-600) !important; }
.presence--alt .presence__title { color: var(--navy-800); }
.presence--alt .presence__title em { color: var(--gold-600); }
.presence--alt .presence__lead { color: var(--navy-500); }

/* =============================================================
   RECOGNITION HONORS  — prominent directory logos
   ============================================================= */
.recog__honors {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  text-align: center;
  margin: 4px auto clamp(44px, 5vw, 68px);
  padding: clamp(30px, 4vw, 50px) clamp(24px, 5vw, 64px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(245,241,232,0.25));
  max-width: 900px;
}
.recog__honors-label {
  font-family: var(--sans-en);
  font-size: 11px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--navy-500); font-weight: 700; padding-inline-start: .5em;
  display: inline-flex; align-items: center; gap: 16px;
}
.recog__honors-label::before, .recog__honors-label::after {
  content: ""; width: 26px; height: 1px; background: var(--gold-500); opacity: .7;
}
.recog__honors-logos {
  display: flex; align-items: stretch; justify-content: center;
  gap: clamp(36px, 7vw, 96px);
}
.honor { display: flex; flex-direction: column; justify-content: center; }
.honor__name {
  font-family: var(--serif-en);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 56px);
  letter-spacing: 0.12em;
  color: var(--navy-800);
  line-height: 1;
  padding-inline-start: 0.12em;
}
.honor__sub {
  font-family: var(--sans-en);
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold-600); font-weight: 700; margin-top: 14px;
  padding-inline-start: 0.34em;
}
.honor__div { width: 1px; align-self: stretch; min-height: 70px; background: var(--line); }
@media (max-width: 600px) {
  .recog__honors-logos { flex-direction: column; gap: 30px; align-items: center; }
  .honor__div { width: 70px; min-height: 0; height: 1px; }
}

/* =============================================================
   ENGLISH FONT OVERRIDES — new components
   ============================================================= */
html[lang="en"] .practice__title,
html[lang="en"] .pcard__name,
html[lang="en"] .presence__title,
html[lang="en"] .vision__text {
  font-family: "Cormorant Garamond", "Inter", serif;
}
html[lang="en"] .practice__lead,
html[lang="en"] .pcard__desc,
html[lang="en"] .presence__lead {
  font-family: "Inter", sans-serif;
}
