/* ============================================
   OSHRIT ZARIBI — EDITORIAL LUXURY 2026
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300;400;500;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Heebo:wght@300;400;500;700&display=swap');

:root {
  --black:   #08070A;
  --dark:    #100F14;
  --dark2:   #1A1820;
  --coal:    #2A2830;
  --gold:    #C9A96E;
  --gold-lt: #DFC08A;
  --gold-dk: #A8843A;
  --gold-pale: rgba(201,169,110,0.12);
  --cream:   #F5F0E8;
  --warm:    #FBF8F3;
  --white:   #FFFFFF;
  --text:    #28262E;
  --muted:   #7A7682;
  --border:  #E8E2D8;
  --font-serif: 'Frank Ruhl Libre', 'Cormorant Garamond', Georgia, serif;
  --font-latin: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Heebo', sans-serif;
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in: cubic-bezier(0.55, 0, 1, 0.45);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ─── CUSTOM CURSOR ─── */
.cursor      { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: transform .1s var(--ease); }
.cursor-ring { width: 38px; height: 38px; border: 1px solid rgba(201,169,110,.45); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: all .18s var(--ease); }
.cursor.clicked { transform: translate(-50%,-50%) scale(2); }
.cursor-ring.hovered { width: 56px; height: 56px; border-color: var(--gold); }
@media (hover: none) { .cursor, .cursor-ring { display: none; } body { cursor: auto; } }

/* ─── UTILITIES ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 110px 0; }

.eyebrow {
  font-size: .72rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: .9rem;
  display: block;
}
.eyebrow.light { color: var(--gold-lt); }

.display-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.8rem;
}
.display-title em { font-style: italic; }
.display-title.light { color: #fff; }

.gold-line { width: 44px; height: 1px; background: var(--gold); }
.gold-line.center { margin: 0 auto; }
.gold-line.mb { margin-bottom: 2.2rem; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 2.2rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  border-radius: 2px;
  transition: all .35s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold  { background: var(--gold);  color: #fff; border: 1.5px solid var(--gold); }
.btn-gold:hover  { background: var(--gold-dk); border-color: var(--gold-dk); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(168,132,58,.32); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }
.btn-dark  { background: transparent; color: var(--dark); border: 1px solid var(--coal); }
.btn-dark:hover  { background: var(--dark); color: #fff; }
.btn-full  { width: 100%; justify-content: center; }

/* ─── TOPBAR ─── */
.topbar {
  background: var(--black);
  color: #888;
  font-size: .75rem;
  padding: 7px 0;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 1.6rem; justify-content: flex-end; flex-wrap: wrap;
}
.topbar-item { display: flex; align-items: center; gap: 7px; }
.topbar-item svg { opacity: .5; flex-shrink: 0; }
.topbar-item a { color: #888; transition: color .2s; }
.topbar-item a:hover { color: var(--gold); }
.topbar-sep { width: 1px; height: 12px; background: rgba(255,255,255,.1); }

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.navbar.dark {
  background: rgba(10,9,14,.97);
  border-bottom-color: rgba(201,169,110,.15);
  box-shadow: 0 2px 40px rgba(0,0,0,.4);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 2rem;
}
.nav-logo img { height: 52px; width: auto; transition: opacity .2s; }
.nav-logo:hover img { opacity: .85; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 500; letter-spacing: .14em; color: var(--dark); transition: color .3s; }
.navbar.dark .nav-logo-name { color: #fff; }
.nav-logo-sub  { font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: .15rem; }
.nav-links a {
  font-size: .83rem; font-weight: 400; letter-spacing: .05em;
  color: var(--coal); padding: .55rem .9rem; border-radius: 3px;
  transition: color .2s; position: relative; white-space: nowrap;
}
.navbar.dark .nav-links a { color: rgba(255,255,255,.7); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; right: .9rem; left: .9rem;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta.btn { padding: .52rem 1.2rem; font-size: .75rem; }

/* Dropdown */
.nav-drop { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: #fff; border: 1px solid var(--border); border-top: 2px solid var(--gold);
  min-width: 190px; box-shadow: 0 20px 50px rgba(0,0,0,.1);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .22s var(--ease); border-radius: 0 0 4px 4px;
}
.navbar.dark .nav-dropdown { background: var(--dark2); border-color: rgba(201,169,110,.2); }
.nav-drop:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { display: block; padding: .6rem 1.2rem; font-size: .82rem; color: var(--text) !important; border-bottom: 1px solid var(--border); }
.navbar.dark .nav-dropdown a { color: rgba(255,255,255,.7) !important; border-bottom-color: rgba(255,255,255,.06) !important; }
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--cream); color: var(--gold) !important; padding-right: 1.6rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--dark); transition: all .3s var(--ease); transform-origin: center; }
.navbar.dark .hamburger span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 100vh;
  /* RTL: first col = right (text), second col = left (image) */
}
.hero-text {
  background: var(--black);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 4rem 3rem;
  position: relative;
  overflow: hidden;
}
.hero-text::before {
  content: 'OZ';
  position: absolute; bottom: -2rem; left: -1rem;
  font-family: var(--font-serif); font-size: 18rem; font-weight: 300;
  color: rgba(255,255,255,.018); line-height: 1; pointer-events: none;
  user-select: none;
}
.hero-eyebrow { color: var(--gold); animation: fadeUp .9s var(--ease) .3s both; }
.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  font-weight: 300; color: #fff; line-height: 1.08;
  margin-bottom: 1.6rem;
  animation: fadeUp .9s var(--ease) .5s both;
}
.hero-heading em { font-style: italic; color: var(--gold-lt); display: block; }
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,.55); font-weight: 300;
  max-width: 340px; line-height: 1.75; margin-bottom: 2.8rem;
  animation: fadeUp .9s var(--ease) .7s both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp .9s var(--ease) .9s both;
}
.hero-bottom {
  position: absolute; bottom: 2.5rem; right: 4rem; left: 3rem;
  display: flex; align-items: flex-end; justify-content: space-between;
  animation: fadeIn 1.2s var(--ease) 1.4s both;
}
.hero-scroll {
  display: flex; align-items: center; gap: .75rem;
  color: rgba(255,255,255,.3); font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
}
.scroll-bar { width: 40px; height: 1px; background: rgba(201,169,110,.4); position: relative; overflow: hidden; }
.scroll-bar::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 100%;
  background: var(--gold);
  animation: scrollMove 2s ease-in-out infinite;
}
.hero-contact {
  display: flex; flex-direction: column; align-items: flex-end; gap: .3rem;
}
.hero-contact a { font-size: .8rem; color: rgba(255,255,255,.35); transition: color .2s; direction: ltr; }
.hero-contact a:hover { color: var(--gold); }

.hero-visual {
  position: relative; overflow: hidden;
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 15%;
  transition: transform 8s var(--ease);
}
.hero:hover .hero-visual img { transform: scale(1.04); }
.hero-visual-tint {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,7,10,.35) 0%, transparent 60%);
}
.hero-visual-line {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, transparent, rgba(201,169,110,.4), transparent);
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  background: var(--gold-dk);
  padding: 14px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.m-item {
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,.9); letter-spacing: .1em; padding: 0 2.2rem;
}
.m-dot { color: rgba(255,255,255,.4); font-size: .5rem; }

/* ─── STATS ─── */
.stats {
  background: var(--dark); padding: 0;
}
.stats-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-right: 1px solid rgba(255,255,255,.06);
}
.stat-item {
  padding: 3rem 2rem; text-align: center;
  border-left: 1px solid rgba(255,255,255,.06);
  transition: background .3s;
}
.stat-item:hover { background: rgba(255,255,255,.02); }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.5vw, 4rem); font-weight: 300;
  color: var(--gold); line-height: 1; display: inline;
}
.stat-sfx { font-family: var(--font-serif); font-size: 1.8rem; color: var(--gold); }
.stat-label { display: block; color: rgba(255,255,255,.55); font-size: .78rem; letter-spacing: .1em; margin-top: .6rem; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ─── INTRO (HOMEPAGE ABOUT) ─── */
.intro { background: var(--warm); }
.intro-grid {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 0; align-items: stretch;
  min-height: 600px;
}
.intro-img {
  position: relative; overflow: hidden;
}
.intro-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 6s var(--ease);
}
.intro-img:hover img { transform: scale(1.04); }
.intro-img-border {
  position: absolute; bottom: -16px; left: -16px;
  width: 55%; height: 55%; border: 1px solid var(--gold);
  pointer-events: none; z-index: 0;
  transition: all .5s var(--ease);
}
.intro-img:hover .intro-img-border { bottom: -20px; left: -20px; }
.intro-badge {
  position: absolute; bottom: 2.5rem; right: -18px;
  background: var(--gold); color: #fff;
  padding: 1.2rem 1.5rem; font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  display: flex; flex-direction: column; gap: 3px; text-align: center;
  box-shadow: 0 8px 30px rgba(168,132,58,.4);
}
.intro-content {
  padding: 5rem 5rem 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--warm);
}
.intro-text {
  color: var(--muted); font-size: .95rem; line-height: 1.85; margin-bottom: 1.3rem;
}
.intro-features { margin: 1.8rem 0 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.intro-feat {
  display: flex; align-items: center; gap: 1rem;
  font-size: .88rem; color: var(--text);
}
.feat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ─── PRACTICE AREAS (ACCORDION) ─── */
.practice-section {
  background: var(--dark); padding: 110px 0;
  position: relative; overflow: hidden;
}
.practice-section::before {
  content: 'LAW';
  position: absolute; top: -2rem; left: -1rem;
  font-family: var(--font-serif); font-size: 22rem; font-weight: 300;
  color: rgba(255,255,255,.018); line-height: 1; pointer-events: none; user-select: none;
}
.practice-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-bottom: 5rem; align-items: end;
}
.practice-header .display-title { margin-bottom: 0; }
.practice-header-right { display: flex; flex-direction: column; justify-content: flex-end; gap: 1.5rem; }
.practice-header p { color: rgba(255,255,255,.45); font-size: .9rem; line-height: 1.8; }

.pa-list { border-top: 1px solid rgba(255,255,255,.08); }
.pa-item { border-bottom: 1px solid rgba(255,255,255,.08); }
.pa-header {
  display: flex; align-items: center; padding: 1.8rem 0;
  cursor: pointer; gap: 2rem; transition: padding .3s var(--ease);
}
.pa-header:hover .pa-num { color: var(--gold); }
.pa-header:hover .pa-title { color: var(--gold-lt); }
.pa-num {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300; color: rgba(255,255,255,.1);
  min-width: 72px; line-height: 1;
  transition: color .3s var(--ease);
}
.pa-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400; color: rgba(255,255,255,.85);
  flex: 1; transition: color .3s var(--ease);
}
.pa-icon {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); font-size: 1.2rem; line-height: 1;
  transition: all .3s var(--ease); flex-shrink: 0;
}
.pa-item.open .pa-icon { background: var(--gold); border-color: var(--gold); color: #fff; transform: rotate(45deg); }
.pa-body {
  max-height: 0; overflow: hidden;
  transition: max-height .45s var(--ease), padding .3s var(--ease);
  padding-right: calc(72px + 2rem);
}
.pa-body-inner { padding-bottom: 2rem; }
.pa-body p { color: rgba(255,255,255,.5); font-size: .9rem; line-height: 1.85; margin-bottom: 1rem; }
.pa-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.pa-tag {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,169,110,.3);
  padding: .3rem .8rem; border-radius: 20px;
  transition: all .2s;
}
.pa-tag:hover { background: var(--gold-pale); }

/* ─── VIDEO FEATURE ─── */
.video-feature {
  background: var(--black); padding: 110px 0;
  position: relative; overflow: hidden;
}
.video-feature::after {
  content: ''; position: absolute; top: 0; bottom: 0; right: 0; width: 35%;
  background: linear-gradient(to right, transparent, rgba(201,169,110,.04));
  pointer-events: none;
}
.video-grid {
  display: grid; grid-template-columns: 55% 1fr;
  gap: 5rem; align-items: center;
}
.video-frame {
  position: relative; border-radius: 2px; overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.video-frame::before {
  content: ''; display: block; padding-top: 56.25%;
}
.video-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: none;
}
.video-border {
  position: absolute; bottom: -14px; left: -14px;
  width: 50%; height: 50%; border: 1px solid rgba(201,169,110,.25);
  pointer-events: none;
}
.video-content { display: flex; flex-direction: column; gap: 1.5rem; }
.video-content .display-title { color: #fff; margin-bottom: 0; }
.video-content p { color: rgba(255,255,255,.45); font-size: .92rem; line-height: 1.85; }
.video-list {
  display: flex; flex-direction: column; gap: .65rem; margin: .5rem 0;
}
.video-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  color: rgba(255,255,255,.55); font-size: .88rem;
}
.video-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: .55rem;
}

/* ─── PROFILE ─── */
.profile-section { background: var(--cream); }
.profile-grid {
  display: grid; grid-template-columns: 1fr 45%;
  gap: 6rem; align-items: center;
}
.profile-content .display-title { color: var(--dark); }
.profile-content p { color: var(--muted); font-size: .95rem; line-height: 1.85; margin-bottom: 1.2rem; }
.profile-quote {
  border-right: 2px solid var(--gold);
  padding: 1.5rem 2rem;
  background: rgba(201,169,110,.06);
  margin: 2rem 0;
}
.profile-quote p { color: var(--dark); font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; margin: 0; }
.profile-img {
  position: relative; overflow: hidden;
}
.profile-img img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top;
  border-radius: 2px;
  transition: transform 6s var(--ease);
}
.profile-img:hover img { transform: scale(1.04); }
.profile-img-accent {
  position: absolute; top: -12px; right: -12px;
  width: 60%; height: 60%; border: 1px solid var(--gold);
  pointer-events: none; z-index: -1;
}

/* ─── SECOND VIDEO (FULL WIDTH) ─── */
.video-full {
  background: var(--dark2); padding: 90px 0; text-align: center;
}
.video-full .display-title { color: #fff; }
.video-full-frame {
  margin: 3rem auto 0; max-width: 860px;
  position: relative; border-radius: 2px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.video-full-frame::before { content: ''; display: block; padding-top: 56.25%; }
.video-full-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--warm); padding: 110px 0; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.t-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 3rem 2.5rem; border-radius: 2px;
  position: relative; overflow: hidden;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.t-card::before {
  content: ''; position: absolute; top: 0; right: 0; left: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.t-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,.08); transform: translateY(-4px); }
.t-card:hover::before { transform: scaleX(1); }
.t-quote { font-family: var(--font-serif); font-size: 4.5rem; color: var(--gold); opacity: .25; line-height: .6; margin-bottom: 1.5rem; }
.t-text { color: var(--muted); font-size: .92rem; line-height: 1.85; font-style: italic; margin-bottom: 2rem; }
.t-author { display: flex; align-items: center; gap: 1rem; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold); color: #fff; font-size: .78rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.t-author-name { display: block; font-weight: 500; font-size: .88rem; color: var(--dark); }
.t-author-place { font-size: .78rem; color: var(--muted); }

/* ─── CTA BANNER ─── */
.cta-banner {
  position: relative; padding: 120px 0; overflow: hidden;
  text-align: center;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  background-color: var(--coal);
}
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,7,10,.9) 0%, rgba(8,7,10,.75) 100%);
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300; color: #fff; margin-bottom: 1rem;
}
.cta-banner h2 em { font-style: italic; color: var(--gold-lt); }
.cta-banner p { color: rgba(255,255,255,.55); font-size: 1rem; margin-bottom: 2.8rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── CONTACT SECTION ─── */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }

.contact-info .display-title { color: var(--dark); }
.c-details { display: flex; flex-direction: column; gap: 1.8rem; margin-top: 2rem; }
.c-detail { display: flex; gap: 1.2rem; align-items: flex-start; }
.c-detail svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }
.c-detail-label { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.c-detail-val { font-size: .92rem; color: var(--text); }
.c-detail-val a { color: var(--text); transition: color .2s; }
.c-detail-val a:hover { color: var(--gold); }

.contact-form-box { background: var(--white); padding: 3.5rem; box-shadow: 0 4px 40px rgba(0,0,0,.06); border-radius: 2px; }
.form-title { font-family: var(--font-serif); font-size: 2rem; font-weight: 400; color: var(--dark); margin-bottom: .4rem; }
.form-subtitle { color: var(--muted); font-size: .85rem; margin-bottom: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: .45rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .9rem 1.1rem;
  border: 1px solid var(--border); border-radius: 2px;
  font-family: var(--font-sans); font-size: .9rem; color: var(--dark);
  background: var(--white); transition: border-color .2s; outline: none;
  direction: rtl; appearance: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 115px; }
.form-note { text-align: center; font-size: .75rem; color: var(--muted); margin-top: .9rem; }

/* ─── FOOTER ─── */
.footer { background: var(--black); }
.footer-body { padding: 80px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 3rem; }

.footer-brand-logo img { height: 46px; margin-bottom: 1.5rem; }
.footer-brand-logo-text { font-family: var(--font-serif); font-size: 1.3rem; color: #fff; letter-spacing: .1em; display: flex; flex-direction: column; gap: 3px; margin-bottom: 1.5rem; }
.footer-brand-logo-text small { font-family: var(--font-sans); font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,.35); font-size: .83rem; line-height: 1.75; max-width: 270px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); transition: all .2s;
}
.footer-social a svg { width: 15px; height: 15px; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: #fff;
  margin-bottom: 1.5rem; padding-bottom: .8rem; position: relative;
}
.footer-col h4::after { content: ''; position: absolute; bottom: 0; right: 0; width: 28px; height: 1px; background: var(--gold); }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul a { color: rgba(255,255,255,.35); font-size: .82rem; transition: all .2s; display: inline-block; }
.footer-col ul a:hover { color: var(--gold); transform: translateX(-4px); }

.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item { display: flex; gap: .75rem; align-items: flex-start; }
.footer-contact-item svg { width: 15px; height: 15px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span, .footer-contact-item a { color: rgba(255,255,255,.35); font-size: .82rem; line-height: 1.5; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,.05); padding: 1.5rem 0;
}
.footer-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.footer-bar p { color: rgba(255,255,255,.2); font-size: .73rem; }

/* ─── FLOATING ─── */
.float-cta { position: fixed; bottom: 2rem; left: 2rem; display: flex; flex-direction: column; gap: .65rem; z-index: 800; }
.float-btn {
  display: flex; align-items: center; gap: .55rem;
  padding: .7rem 1.2rem; border-radius: 40px; color: #fff;
  font-size: .78rem; font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,.25); transition: all .3s var(--ease);
}
.float-btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.float-call { background: var(--gold); }
.float-call:hover { background: var(--gold-dk); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(168,132,58,.4); }
.float-wa { background: #25D366; }
.float-wa:hover { background: #1da851; transform: translateY(-2px); }

.back-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 42px; height: 42px; background: rgba(10,9,14,.85); backdrop-filter: blur(8px);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gold); border: 1px solid rgba(201,169,110,.25);
  opacity: 0; visibility: hidden; transition: all .3s var(--ease); z-index: 800;
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-3px); }
.back-top svg { width: 17px; height: 17px; }

/* ─── KEYFRAMES ─── */
@keyframes fadeUp  { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollMove {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text {
    padding: 4rem 2rem 3rem;
    min-height: 100vh;
    background: var(--black) url('') center/cover no-repeat;
    justify-content: flex-end;
  }
  .hero-visual {
    position: fixed; /* will be overridden by JS */ position: absolute;
    height: 100vh; width: 100%;
    /* On mobile hero is fullscreen with overlay */
  }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-img { height: 420px; }
  .intro-img img { height: 420px; }
  .intro-content { padding: 3.5rem 2rem; }
  .practice-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .video-grid { grid-template-columns: 1fr; gap: 3rem; }
  .profile-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .topbar { display: none; }
}

@media (max-width: 768px) {
  /* ── REMOVE NAVBAR BACKDROP-FILTER ON MOBILE ──
     backdrop-filter on a parent clips position:fixed children to the parent's box
     (Chrome bug). Removing it lets the overlay span the full viewport.         */
  .navbar {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* ── HAMBURGER ── */
  .hamburger {
    display: flex;
    position: relative;
    z-index: 1002; /* must be above the overlay */
  }

  /* ── MOBILE OVERLAY ── */
  .nav-links {
    position: fixed; inset: 0;
    background: rgba(8, 7, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 5rem 2rem 3rem;
    overflow-y: auto;
    /* Fade instead of slide — more reliable on mobile */
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: 1000;
  }
  .nav-links.open { opacity: 1; visibility: visible; }

  /* ── NAV ITEMS ── */
  .nav-links > li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  }
  .nav-links > li:last-child { border-bottom: none; }

  .nav-links a {
    color: rgba(255, 255, 255, 0.82) !important;
    font-family: var(--font-serif) !important;
    font-size: 1.45rem !important;
    font-weight: 400 !important;
    padding: .95rem 1.5rem !important;
    display: block; width: 100%;
    letter-spacing: .04em !important;
    transition: color .2s !important;
  }
  /* Kill the desktop underline animation on mobile */
  .nav-links a::after { display: none !important; }

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

  /* ── CTA BUTTON ── */
  .nav-links > li:last-child { border-bottom: none; padding-top: 1rem; }
  .nav-cta.btn {
    display: inline-block !important;
    width: auto !important;
    font-size: .82rem !important;
    padding: .85rem 2.2rem !important;
    margin: 0 auto;
  }

  /* ── DROPDOWN (inside mobile overlay) ── */
  .nav-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    min-width: auto !important;
    padding: 0;
  }
  .nav-dropdown a {
    color: rgba(201, 169, 110, 0.55) !important;
    font-size: .92rem !important;
    padding: .45rem 1.5rem !important;
    border-bottom: none !important;
  }
  .nav-dropdown a:hover {
    color: var(--gold) !important;
    background: transparent !important;
    padding-right: 2rem !important;
  }

  /* ── REST OF 768px RULES ── */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-heading { font-size: 3rem; }
  .float-btn span { display: none; }
  .float-btn { padding: .85rem; border-radius: 50%; width: 48px; height: 48px; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 2rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .pa-body { padding-right: 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero-text { padding: 3rem 1.5rem 2.5rem; }
  .hero-actions { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ─── HERO MOBILE FALLBACK ─── */
@media (max-width: 900px) {
  .hero {
    position: relative;
    display: flex; flex-direction: column;
    min-height: 100vh;
  }
  .hero-visual {
    position: absolute; inset: 0;
    z-index: 0;
  }
  .hero-visual img { width: 100%; height: 100%; object-fit: cover; }
  .hero-text {
    position: relative; z-index: 1; flex: 1;
    background: linear-gradient(to top, rgba(8,7,10,.95) 55%, rgba(8,7,10,.55) 100%);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 5rem 2rem 3rem;
  }
  .hero-text::before { display: none; }
  .hero-bottom { position: relative; bottom: auto; right: auto; left: auto; margin-top: 2rem; }
  .hero-visual-line { display: none; }
}

/* ══════════════════════════════════════════
   2026 LUXURY ENHANCEMENTS
══════════════════════════════════════════ */

/* ── GLASSMORPHISM ── */
.navbar.dark {
  background: rgba(8, 7, 10, 0.80) !important;
  backdrop-filter: blur(28px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
  border-bottom-color: rgba(201, 169, 110, 0.15) !important;
}

.stat-item {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201,169,110,.12);
  border-radius: 4px;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.stat-item:hover {
  background: rgba(201,169,110,.08);
  transform: translateY(-4px);
}

.t-card {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,169,110,.12) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,.07);
}

/* ── GRADIENT MESH BACKGROUNDS ── */
.practice-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 85% 15%, rgba(201,169,110,.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 55% at 8% 85%, rgba(201,169,110,.05) 0%, transparent 65%);
}
.practice-section > * { position: relative; z-index: 1; }

.video-feature {
  position: relative;
}
.video-feature::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 50% 70% at 95% 50%, rgba(201,169,110,.07) 0%, transparent 65%),
    radial-gradient(ellipse 30% 45% at 3% 25%, rgba(201,169,110,.04) 0%, transparent 65%);
}
.video-feature > * { position: relative; z-index: 1; }

/* ── ANIMATED GOLD SHIMMER ON ITALIC DISPLAY HEADINGS ── */
@keyframes goldShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.display-title em {
  background: linear-gradient(90deg, var(--gold-dk) 0%, var(--gold) 35%, var(--gold-lt) 55%, var(--gold) 80%, var(--gold-dk) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 5s ease infinite;
}

/* ── YOUTUBE THUMBNAIL PLAYER ── */
.yt-player {
  position: relative; cursor: pointer;
  border-radius: 2px; overflow: hidden;
  background: #000;
}
.yt-player::before {
  content: ''; display: block; padding-top: 56.25%;
}
.yt-player img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease), filter .4s;
  filter: brightness(.82);
}
.yt-player:hover img {
  transform: scale(1.04);
  filter: brightness(.65);
}
.yt-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,7,10,.2);
  transition: background .3s;
}
.yt-player:hover .yt-overlay { background: rgba(8,7,10,.38); }
.yt-play-btn {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease), box-shadow .3s;
  box-shadow: 0 8px 40px rgba(201,169,110,.5);
}
.yt-play-btn svg { width: 28px; height: 28px; fill: #fff; margin-right: -3px; }
.yt-player:hover .yt-play-btn {
  transform: scale(1.12);
  box-shadow: 0 14px 56px rgba(201,169,110,.7);
}
.yt-player iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}

/* ── LEGAL VISUAL STRIP ── */
.visual-strip {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  height: 320px;
  overflow: hidden;
}
.vs-item { overflow: hidden; position: relative; }
.vs-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.8) saturate(.8);
  transition: transform .7s var(--ease), filter .5s;
}
.vs-item:hover img { transform: scale(1.05); filter: brightness(.65) saturate(1.1); }
.vs-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,7,10,.5) 0%, transparent 60%);
}
@media (max-width: 768px) {
  .visual-strip { grid-template-columns: 1fr; height: 220px; }
  .vs-item:not(:first-child) { display: none; }
}

/* ── INTRO GRID (fixes inline style on mobile) ── */
.intro-grid {
  display: grid !important;
  grid-template-columns: 48% 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── IMPROVED MOBILE ── */
@media (max-width: 960px) {
  .intro-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }
  .intro-img { max-width: 480px; margin: 0 auto; }
  .video-grid { grid-template-columns: 1fr !important; gap: 3rem; }
  .profile-grid { grid-template-columns: 1fr !important; gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 3rem; }
  .practice-header { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .display-title { font-size: clamp(2rem, 7vw, 3rem); }
  .section { padding: 60px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .stat-item { padding: 1.5rem 1rem; }
  .yt-play-btn { width: 58px; height: 58px; }
  .yt-play-btn svg { width: 22px; height: 22px; }
}
@media (max-width: 480px) {
  .page-hero { height: 280px; }
  .page-hero-content h1 { font-size: 2.2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 1.2rem .8rem; }
  .pa-col-box { padding: 2rem 1.5rem; }
  .contact-form-box { padding: 1.8rem 1.5rem; }
  .t-card { padding: 1.8rem 1.5rem; }
}
