/* ============================================================
   VIDHI SARTHI — Premium Interactive Law Firm
   Lenis + GSAP ScrollTrigger, Full-viewport sections
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: 'DM Sans', sans-serif;
  color: #e8e4dd;
  background: #080e1a;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

:root {
  --bg: #080e1a;
  --bg-elevated: #0d1526;
  --bg-card: #111b2e;
  --gold: #c8a355;
  --gold-light: #dfc070;
  --gold-muted: rgba(200, 163, 85, 0.15);
  --gold-border: rgba(200, 163, 85, 0.2);
  --gold-glow: rgba(200, 163, 85, 0.08);
  --text: #d4cfc6;
  --text-muted: #8a8578;
  --text-dim: #5a564e;
  --white: #f2efe9;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

/* ===== GRAIN ===== */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed; inset: 0; z-index: 10001;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.preloader-inner { text-align: center; width: 100%; max-width: 320px; }
.preloader-logo {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 32px;
  object-fit: cover; object-position: center 30%;
  border: 1px solid var(--gold-border);
}
.preloader-bar {
  width: 100%; height: 1px; background: var(--gold-border); margin: 0 auto 20px;
  overflow: hidden; position: relative;
}
.preloader-fill {
  width: 0; height: 100%; background: var(--gold);
}
.preloader-counter {
  font-family: var(--sans); font-size: 4rem; font-weight: 200;
  color: var(--white); letter-spacing: -2px; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.preloader-text {
  font-size: 0.65rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--text-dim); margin-top: 16px;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); z-index: 10000;
  transform-origin: left; transform: scaleX(0);
  pointer-events: none;
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
  position: fixed; top: 0; left: 0; z-index: 9998;
  pointer-events: none; display: none; mix-blend-mode: difference;
}
.cursor-dot {
  width: 8px; height: 8px; background: #fff; border-radius: 50%;
  position: absolute; top: -4px; left: -4px;
}
.cursor-ring {
  width: 48px; height: 48px; border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%; position: absolute; top: -24px; left: -24px;
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out),
              top 0.4s var(--ease-out), left 0.4s var(--ease-out),
              border-color 0.3s, background 0.3s, opacity 0.3s;
}
.cursor-ring.cursor-expand {
  width: 80px; height: 80px; top: -40px; left: -40px;
  border-color: var(--gold); background: rgba(200, 163, 85, 0.08);
}
.cursor-coords {
  position: absolute; top: 30px; left: 12px;
  font-family: var(--sans); font-size: 0.55rem; font-weight: 400;
  color: rgba(255,255,255,0.3); letter-spacing: 2px; white-space: nowrap;
  transition: all 0.3s;
}
.cursor-coords.cursor-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); opacity: 1;
  top: -52px; left: 50%; transform: translateX(-50%);
}
.cursor-spotlight {
  position: fixed; top: 0; left: 0; z-index: 1;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200, 163, 85, 0.05) 0%, transparent 55%);
  border-radius: 50%; pointer-events: none;
  transform: translate(-50%, -50%);
  display: none; will-change: transform;
}
@media (pointer: coarse) {
  .custom-cursor, .cursor-spotlight { display: none !important; }
}

/* ===== DISCLAIMER ===== */
.disclaimer-overlay {
  position: fixed; inset: 0; z-index: 10000; background: var(--bg);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.disclaimer-inner { text-align: center; max-width: 520px; width: 100%; }
.disclaimer-logo-wrap { margin-bottom: 28px; }
.disclaimer-logo {
  width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 20px;
  object-fit: cover; object-position: center 30%;
  border: 1px solid var(--gold-border);
}
.disclaimer-gold-line { width: 48px; height: 1px; background: var(--gold); margin: 0 auto; }
.disclaimer-title {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 300;
  color: var(--white); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 6px;
}
.disclaimer-sub {
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 40px;
}
.disclaimer-content {
  text-align: left; border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border); padding: 28px 0; margin-bottom: 32px;
}
.disclaimer-heading {
  font-family: var(--serif); font-size: 1.1rem; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}
.disclaimer-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.disclaimer-content ul li {
  position: relative; padding-left: 20px; margin-bottom: 8px;
  font-size: 0.85rem; color: var(--text-muted);
}
.disclaimer-content ul li::before {
  content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 1px; background: var(--gold);
}
.disclaimer-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 40px;
  background: transparent; border: 1px solid var(--gold); color: var(--gold);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  transition: all 0.4s var(--ease);
}
.disclaimer-btn:hover { background: var(--gold); color: var(--bg); }
.disclaimer-overlay, .disclaimer-overlay * { cursor: auto !important; }
.disclaimer-btn { cursor: pointer !important; }
.preloader, .preloader * { cursor: auto !important; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 clamp(20px, 5vw, 64px);
  transition: all 0.5s var(--ease);
}
.navbar.scrolled {
  background: rgba(8, 14, 26, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
}
.navbar.nav-hidden { transform: translateY(-100%); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; max-width: 1280px; margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; }
.nav-brand-name {
  font-family: var(--serif); font-size: 1.65rem; font-weight: 400;
  color: var(--white); letter-spacing: 2px; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 0.75rem; font-weight: 400; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted); position: relative;
  transition: color 0.3s;
}
.nav-link:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.5s var(--ease-out);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px; border: 1px solid var(--gold-border);
  color: var(--gold) !important; transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: var(--bg) !important; border-color: var(--gold); }
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: flex-end;
  width: 32px; height: 32px; background: none; border: none; padding: 0;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px; background: var(--gold); transition: all 0.3s var(--ease);
}
.hamburger span:first-child { margin-bottom: 7px; }
.hamburger.active span:first-child { transform: rotate(45deg) translate(3px, 3px); }
.hamburger.active span:last-child { transform: rotate(-45deg) translate(3px, -3px); width: 24px; }

/* ===== HERO — Full Viewport ===== */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 90%, rgba(200, 163, 85, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(200, 163, 85, 0.04) 0%, transparent 50%);
}
.hero-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  will-change: transform;
}
.hero-orb-1 { width: 600px; height: 600px; top: -15%; right: -10%; }
.hero-orb-2 { width: 400px; height: 400px; bottom: 5%; left: 0; }
.hero-lines {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 64px); max-width: 1280px; margin: 0 auto;
}
.hero-lines span {
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--gold-border) 30%, var(--gold-border) 70%, transparent 100%);
  opacity: 0.2;
}

.hero-container {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 60px; width: 100%;
  padding-top: 120px; padding-bottom: clamp(60px, 10vh, 120px);
}
.hero-content { flex: 1; max-width: 860px; }
.hero-logo-wrap { margin-bottom: 36px; }
.hero-logo {
  width: 90px; height: 90px; border-radius: 50%;
  object-fit: cover; object-position: center 30%;
  border: 1px solid var(--gold-border);
}

/* Big hero type */
.hero-title { font-family: var(--serif); font-weight: 300; line-height: 1.05; }
.hero-title-line { display: block; overflow: hidden; }
.text-reveal {
  display: block;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  color: var(--white);
  letter-spacing: -0.03em;
}
.hero-title-accent .text-reveal {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  font-style: italic;
}
.hero-divider { margin: 40px 0; }
.hero-divider span { display: block; width: 72px; height: 1px; background: var(--gold); }
.hero-desc {
  font-size: 1.05rem; color: var(--text-muted); max-width: 500px;
  line-height: 1.85; margin-bottom: 48px;
}
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* Buttons */
.btn-gold {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 36px; background: var(--gold); color: var(--bg);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; border: none;
  transition: all 0.5s var(--ease-out);
  will-change: transform; position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: none; pointer-events: none;
}
.btn-gold:hover::before { animation: btnShine 0.7s ease forwards; }
@keyframes btnShine { 0% { left: -100%; } 100% { left: 100%; } }
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 16px 48px rgba(200, 163, 85, 0.3);
  transform: translateY(-2px);
}
.btn-gold svg { transition: transform 0.4s var(--ease-out); }
.btn-gold:hover svg { transform: translate(3px, -3px); }

.btn-ghost {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted); padding: 18px 0;
  position: relative; transition: color 0.4s;
}
.btn-ghost::after {
  content: ''; position: absolute; bottom: 14px; left: 0;
  width: 100%; height: 1px; background: var(--text-dim);
  transition: background 0.4s, transform 0.4s var(--ease-out);
  transform-origin: left;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover::after { background: var(--gold); transform: scaleX(1.1); }

/* Hero aside */
.hero-aside {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 48px; flex-shrink: 0;
}
.hero-stats-col { display: flex; flex-direction: column; gap: 28px; text-align: right; }
.stat-num {
  font-family: var(--serif); font-size: 3rem; font-weight: 300;
  color: var(--gold); display: block; line-height: 1;
}
.stat-label {
  font-size: 0.65rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-dim); display: block; margin-top: 4px;
}
.hero-scroll-hint { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.2; transform: scaleY(0.4); transform-origin: top; }
}
.hero-scroll-hint > span {
  font-size: 0.55rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-dim); writing-mode: vertical-rl;
}

/* ===== MARQUEE ===== */
.marquee-strip {
  border-top: 1px solid var(--gold-border); border-bottom: 1px solid var(--gold-border);
  padding: 18px 0; overflow: hidden; background: var(--bg-elevated);
}
.marquee-track {
  display: flex; gap: 32px; white-space: nowrap;
  animation: marquee 35s linear infinite; width: max-content;
}
.marquee-track span {
  font-family: var(--serif); font-size: 0.85rem; color: var(--text-dim);
  letter-spacing: 3px; text-transform: uppercase; font-weight: 300;
}
.marquee-dot { color: var(--gold) !important; font-size: 0.6rem !important; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION COMMONS ===== */
section {
  padding: clamp(100px, 15vh, 180px) 0;
  position: relative;
}
.section-tag { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.tag-num { font-family: var(--serif); font-size: 0.85rem; color: var(--gold); font-weight: 300; }
.tag-line { width: 48px; height: 1px; background: var(--gold-border); display: block; }
.tag-text {
  font-size: 0.68rem; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--text-dim); font-weight: 500;
}
.section-heading {
  font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300; color: var(--white); line-height: 1.12; letter-spacing: -0.02em;
}

/* Split text */
.word-wrap {
  display: inline-block; overflow: hidden; vertical-align: top;
  padding-bottom: 0.08em;
}
.word-wrap .word { display: inline-block; }

/* ===== ABOUT — Full viewport pinned ===== */
.about {
  background: var(--bg);
  border-top: 1px solid var(--gold-border);
  min-height: 100vh;
  display: flex; align-items: center;
}
.about .container { width: 100%; }
.about-header { margin-bottom: 72px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; margin-bottom: 100px; }
.about-lead {
  font-family: var(--serif); font-size: 1.35rem; color: var(--text);
  line-height: 1.75; margin-bottom: 24px; font-weight: 300;
}
.about-col-left p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.85; }
.about-col-left strong { color: var(--gold); font-weight: 500; }

.approach-card {
  background: var(--bg-elevated); border: 1px solid var(--gold-border); padding: 44px;
  transition: border-color 0.5s var(--ease-out);
}
.approach-card:hover { border-color: var(--gold); }
.approach-title {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 400;
  color: var(--gold); margin-bottom: 36px; letter-spacing: 1px;
}
.approach-step {
  display: flex; align-items: flex-start; gap: 24px; padding: 22px 0;
  border-top: 1px solid var(--gold-border);
}
.step-num { font-family: var(--serif); font-size: 0.85rem; color: var(--gold); font-weight: 300; flex-shrink: 0; padding-top: 2px; }
.step-content h4 {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 6px;
}
.step-content p { font-size: 0.88rem; color: var(--text-muted); }

.values-row {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start; padding-top: 72px; border-top: 1px solid var(--gold-border);
}
.value-item { padding: 0 clamp(16px, 3vw, 40px); text-align: center; }
.value-number {
  font-family: var(--serif); font-size: 2rem; color: var(--gold);
  font-weight: 300; display: block; margin-bottom: 20px;
}
.value-item h4 {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 12px;
}
.value-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.value-divider { width: 1px; height: 100px; background: var(--gold-border); align-self: center; }

/* ===== PRACTICE — Horizontal scroll on desktop ===== */
.practice {
  background: var(--bg-elevated);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  overflow: hidden;
}
.practice-scroll-wrap { overflow: visible; }
.practice-grid {
  display: flex; gap: 0; width: max-content;
  margin-top: 56px;
}
.practice-card {
  width: clamp(340px, 33vw, 460px);
  padding: clamp(36px, 4vw, 56px);
  border-right: 1px solid var(--gold-border);
  position: relative;
  transition: background 0.5s var(--ease);
  flex-shrink: 0;
}
.practice-card:last-child { border-right: none; }
.practice-card:hover { background: rgba(200, 163, 85, 0.04); }
.practice-card-num {
  font-family: var(--serif); font-size: 4rem; font-weight: 300;
  color: rgba(200, 163, 85, 0.1); line-height: 1; margin-bottom: 28px;
}
.practice-card-icon { color: var(--gold); margin-bottom: 24px; }
.practice-card h3 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
  color: var(--white); margin-bottom: 18px; line-height: 1.3;
  transition: text-shadow 0.4s;
}
.practice-card:hover h3 {
  text-shadow: 0 0 20px rgba(200, 163, 85, 0.15);
}
.practice-card > p {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px;
}
.practice-card ul li {
  position: relative; padding-left: 20px; margin-bottom: 10px;
  font-size: 0.86rem; color: var(--text-dim); transition: color 0.3s;
}
.practice-card:hover ul li { color: var(--text-muted); }
.practice-card ul li::before {
  content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 1px; background: var(--gold);
}
.practice-card-line {
  position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.7s var(--ease-out);
}
.practice-card:hover .practice-card-line { width: 100%; }

/* ===== BIG CTA ===== */
.big-cta {
  padding: 0;
  min-height: 60vh;
  display: flex; align-items: center;
  background: var(--bg);
  border-bottom: 1px solid var(--gold-border);
}
.big-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; width: 100%;
}
.big-cta h2 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300; color: var(--white); line-height: 1.15;
}

/* ===== TEAM — Full viewport ===== */
.team {
  background: var(--bg);
  min-height: 100vh;
  display: flex; align-items: center;
}
.team .container { width: 100%; }
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 40px; margin-top: 64px; max-width: 960px;
}
.team-card {
  display: flex; gap: 32px; padding: 44px;
  border: 1px solid var(--gold-border); background: var(--bg-elevated);
  transition: all 0.5s var(--ease-out);
}
.team-card:hover {
  border-color: var(--gold); background: rgba(200, 163, 85, 0.03);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.team-monogram {
  width: 80px; height: 80px; border: 1px solid var(--gold-border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; gap: 1px; transition: all 0.5s var(--ease);
}
.team-card:hover .team-monogram { border-color: var(--gold); background: var(--gold); }
.team-monogram span {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 300;
  color: var(--gold); transition: color 0.4s;
}
.team-card:hover .team-monogram span { color: var(--bg); }
.team-info h3 {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 400;
  color: var(--white); margin-bottom: 4px;
}
.team-cred { font-size: 0.78rem; color: var(--gold); letter-spacing: 1px; font-weight: 500; }
.team-gold-line { width: 32px; height: 1px; background: var(--gold-border); margin: 16px 0; }
.team-info ul li {
  position: relative; padding-left: 18px; font-size: 0.88rem;
  color: var(--text-muted); margin-bottom: 7px;
}
.team-info ul li::before {
  content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 1px; background: var(--gold);
}

/* ===== CAREERS ===== */
.careers {
  background: var(--bg);
  border-top: 1px solid var(--gold-border);
}
.careers-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 56px;
}
.careers-lead {
  font-family: var(--serif); font-size: 1.3rem; color: var(--text);
  line-height: 1.75; margin-bottom: 20px; font-weight: 300;
}
.careers-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.85; }
.careers-card {
  background: var(--bg-elevated); border: 1px solid var(--gold-border);
  padding: 44px; transition: border-color 0.5s var(--ease-out);
}
.careers-card:hover { border-color: var(--gold); }
.careers-card h3 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 400;
  color: var(--gold); margin-bottom: 28px; letter-spacing: 1px;
}
.careers-card ul li {
  position: relative; padding-left: 20px; margin-bottom: 10px;
  font-size: 0.88rem; color: var(--text-muted);
}
.careers-card ul li::before {
  content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 1px; background: var(--gold);
}
.careers-cta { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--gold-border); }
.careers-cta-text { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 16px; }

/* ===== CONTACT — Full viewport ===== */
.contact {
  position: relative;
  background: var(--bg-elevated);
  border-top: 1px solid var(--gold-border);
  min-height: 100vh;
  display: flex; align-items: center;
}
.contact-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 80% 80%, rgba(200, 163, 85, 0.04) 0%, transparent 60%);
}
.contact .container { position: relative; z-index: 2; width: 100%; }
.contact-header { margin-bottom: 64px; }
.contact-sub { font-size: 1.05rem; color: var(--text-muted); margin-top: 18px; max-width: 420px; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; }
.contact-form-wrap {
  background: var(--bg-card); border: 1px solid var(--gold-border);
  padding: clamp(32px, 4vw, 52px);
  transition: border-color 0.5s var(--ease-out);
}
.contact-form-wrap:focus-within { border-color: var(--gold); }
.form-note {
  font-size: 0.78rem; color: var(--text-dim); font-style: italic;
  margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--gold-border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.form-field { margin-bottom: 0; }
.form-field label {
  display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 10px;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 14px 0; background: transparent;
  border: none; border-bottom: 1px solid var(--gold-border);
  font-family: var(--sans); font-size: 0.95rem; color: var(--text);
  outline: none; transition: border-color 0.4s; border-radius: 0; -webkit-appearance: none;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-dim); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-field select option { background: var(--bg-card); color: var(--text); }
.form-field:last-child:not(.form-row .form-field) { margin-bottom: 28px; }
.btn-submit {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 40px; background: var(--gold); color: var(--bg); border: none;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  transition: all 0.5s var(--ease-out); margin-top: 8px;
  will-change: transform; position: relative; overflow: hidden;
}
.btn-submit::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  pointer-events: none;
}
.btn-submit:hover::before { animation: btnShine 0.7s ease forwards; }
.btn-submit:hover {
  background: var(--gold-light);
  box-shadow: 0 12px 40px rgba(200, 163, 85, 0.3);
  transform: translateY(-2px);
}
.btn-submit svg { transition: transform 0.4s var(--ease-out); }
.btn-submit:hover svg { transform: translateX(4px); }

.contact-details { padding-top: 8px; }
.contact-detail { margin-bottom: 40px; }
.detail-label {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--text-dim); display: block; margin-bottom: 10px;
}
.contact-detail p, .contact-detail a {
  font-family: var(--serif); font-size: 1.15rem; color: var(--text);
  font-weight: 300; line-height: 1.6;
}
.contact-detail a { transition: color 0.3s; }
.contact-detail a:hover { color: var(--gold); }
.detail-offices { display: flex; flex-wrap: wrap; gap: 10px; }
.detail-offices span {
  padding: 8px 18px; border: 1px solid var(--gold-border);
  font-size: 0.78rem; color: var(--text-muted); letter-spacing: 1.5px;
  transition: all 0.4s var(--ease-out);
}
.detail-offices span:hover {
  border-color: var(--gold); color: var(--gold);
  box-shadow: 0 0 20px rgba(200, 163, 85, 0.1);
}

/* ===== FOOTER ===== */
.footer { background: var(--bg); padding: 56px 0 36px; border-top: 1px solid var(--gold-border); }
.footer-top {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logo { width: 36px; height: 36px; border-radius: 50%; opacity: 0.7; }
.footer-brand h3 {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 400;
  color: var(--white); letter-spacing: 1px;
}
.footer-brand p { font-size: 0.68rem; color: var(--text-dim); letter-spacing: 2px; text-transform: uppercase; }
.footer-nav { display: flex; gap: 28px; }
.footer-nav a {
  font-size: 0.75rem; color: var(--text-dim); letter-spacing: 1px;
  text-transform: uppercase; transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-line { width: 100%; height: 1px; background: var(--gold-border); margin: 32px 0; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.72rem; color: var(--text-dim); letter-spacing: 0.5px; }

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  background: rgba(8, 14, 26, 0.95); backdrop-filter: blur(16px);
  border-top: 1px solid var(--gold-border);
  transform: translateY(100%); transition: transform 0.5s var(--ease-out);
  display: none;
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; background: var(--gold); color: var(--bg);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .practice-grid {
    display: grid; grid-template-columns: 1fr; width: auto;
  }
  .practice-card {
    width: auto; border-right: none;
    border-bottom: 1px solid var(--gold-border);
  }
  .practice-card:last-child { border-bottom: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .careers-grid { grid-template-columns: 1fr; gap: 48px; }
  .about, .team, .contact { min-height: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .values-row { grid-template-columns: 1fr; gap: 32px; }
  .value-item { padding: 0; text-align: left; }
  .value-divider { width: 40px; height: 1px; }
}

@media (max-width: 768px) {
  .mobile-cta { display: block; }

  .nav-links {
    display: none; position: fixed; inset: 0;
    background: rgba(8, 14, 26, 0.98); backdrop-filter: blur(24px);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 32px; padding: 24px; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-link {
    font-family: var(--serif); font-size: 1.8rem; font-weight: 300;
    letter-spacing: 2px; color: var(--text);
  }
  .nav-links .nav-link::after { display: none; }
  .nav-links .nav-cta { font-family: var(--sans); font-size: 0.78rem; margin-top: 20px; }
  .hamburger { display: flex; z-index: 1001; }
  .nav-inner { height: 64px; }
  .nav-brand-name { font-size: 1.2rem; letter-spacing: 1.5px; }

  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero-container { flex-direction: column; padding-top: 100px; gap: 40px; }
  .text-reveal { font-size: clamp(2.4rem, 10vw, 3.6rem); }
  .hero-aside {
    flex-direction: row; justify-content: space-between; align-items: flex-end; width: 100%;
  }
  .hero-stats-col { flex-direction: row; gap: 28px; text-align: center; }
  .stat-num { font-size: 2.2rem; }
  .stat-label { font-size: 0.58rem; }
  .hero-scroll-hint { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-gold { justify-content: center; }

  .hero-logo { width: 68px; height: 68px; }
  .hero-logo-wrap { margin-bottom: 24px; }
  .hero-divider { margin: 28px 0; }
  .hero-desc { margin-bottom: 32px; }

  .team-grid { grid-template-columns: 1fr; max-width: 480px; }
  .team-card { flex-direction: column; gap: 20px; padding: 32px; }
  .team-monogram { width: 64px; height: 64px; }
  .team-monogram span { font-size: 1.1rem; }

  .form-row { grid-template-columns: 1fr; }

  .big-cta { min-height: 50vh; }
  .big-cta-inner { flex-direction: column; text-align: center; }
  .big-cta-inner .btn-gold { width: 100%; justify-content: center; }

  .footer-nav { gap: 16px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; }
  .footer { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .text-reveal { font-size: 2.2rem; }
  .hero-desc { font-size: 0.9rem; }
  .btn-gold { padding: 16px 28px; font-size: 0.75rem; }
  .btn-ghost { font-size: 0.75rem; }
  section { padding: 80px 0; }
  .section-heading { font-size: 1.85rem; }
  .approach-card { padding: 28px; }
  .careers-card { padding: 28px; }
  .contact-form-wrap { padding: 28px; }
  .practice-card { padding: 32px 24px; }
  .disclaimer-title { font-size: 1.7rem; letter-spacing: 2px; }
  .disclaimer-logo { width: 72px; height: 72px; }
  .disclaimer-btn { padding: 14px 28px; font-size: 0.72rem; }
  .hero-stats-col { gap: 20px; }
  .stat-num { font-size: 1.8rem; }
}
