
:root {
  --ink: #0a0c10;
  --deep: #0e1118;
  --surface: #141820;
  --panel: #1a2030;
  --border: rgba(255,255,255,0.07);
  --gold: #c9a96e;
  --gold-light: #e8c98a;
  --gold-dim: rgba(201,169,110,0.15);
  --white: #f4f1ec;
  --muted: #8a8f9e;
  --accent: #3a7bd5;
  --text: #d8d4cc;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--ink);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.1rem; font-family: 'DM Sans', sans-serif; font-weight: 500; letter-spacing: 0.04em; }

.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

p { color: var(--text); max-width: 68ch; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,12,16,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo-sub {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.78rem !important;
  letter-spacing: 0.08em !important;
  transition: background 0.2s, color 0.2s !important;
  cursor: pointer;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--ink) !important; }
.nav-cta::after { display: none !important; }

/* Admin portal link — subtle gear icon in nav */
.nav-admin-btn {
  color: var(--muted) !important;
  font-size: 1rem !important;
  padding: 0.25rem 0.3rem !important;
  opacity: 0.45;
  letter-spacing: 0 !important;
  transition: opacity 0.2s, color 0.2s !important;
}
.nav-admin-btn:hover { opacity: 1 !important; color: var(--gold) !important; }
.nav-admin-btn::after { display: none !important; }
.nav-admin-mobile {
  color: var(--muted) !important;
  font-size: 0.85rem !important;
  opacity: 0.6;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 0.5rem;
  padding-top: 0.75rem !important;
}

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── PAGES ── */
.page { display: block; }


/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(58,123,213,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(201,169,110,0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--ink) 0%, var(--deep) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold-dim);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-badge span {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.hero-headline {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--white) 0%, rgba(244,241,236,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--muted);
  max-width: 55ch;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.15); }

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.stat-item {}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── SECTIONS ── */
section {
  padding: 100px 5%;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── INTRO SECTION ── */
.intro-section {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.intro-left h2 {
  margin-bottom: 1.5rem;
}

.intro-left p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: var(--text);
}

.gold-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.intro-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.2s, background 0.2s;
}
.feature-card:hover {
  border-color: rgba(201,169,110,0.2);
  background: var(--panel);
}
.feature-card h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: none;
}

/* ── NMS EXPLAINER ── */
.nms-section { background: var(--ink); }

.nms-header {
  margin-bottom: 60px;
  max-width: 700px;
}
.nms-header h2 { margin-bottom: 1.2rem; }
.nms-header p { font-size: 1.05rem; color: var(--muted); }

.nms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 60px;
}

.nms-card {
  background: var(--deep);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}
.nms-card:hover { background: var(--surface); }

.nms-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201,169,110,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}
.nms-card h3 {
  font-size: 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.nms-card p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: none;
}

.nms-applies {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
}
.nms-applies h3 {
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.applies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.75rem;
}
.applies-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}
.applies-item::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* ── WHY CHOOSE ── */
.why-section { background: var(--deep); border-top: 1px solid var(--border); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 50px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.2s;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.why-card:hover { border-color: rgba(201,169,110,0.2); transform: translateY(-2px); }
.why-card:hover::before { opacity: 1; }

.why-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}
.why-card h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: none;
}

/* ── CONDITIONS PREVIEW ── */
.conditions-preview { background: var(--ink); }

.conditions-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 40px 0;
}
.tag {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
}
.tag:hover { border-color: rgba(201,169,110,0.3); color: var(--white); }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--panel) 0%, var(--surface) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 80px 5%;
}
.cta-strip h2 { margin-bottom: 1rem; }
.cta-strip p { color: var(--muted); margin: 0 auto 2.5rem; }

/* ── SERVICES PAGE ── */
.page-hero {
  background: var(--deep);
  padding: 140px 5% 80px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 60ch; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.5rem;
  margin-top: 50px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: rgba(201,169,110,0.2); }
.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--white);
}
.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: none;
  margin-bottom: 1.2rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1rem;
}
.service-list li {
  font-size: 0.85rem;
  color: var(--text);
  padding-left: 1.2rem;
  position: relative;
}
.service-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── CONDITIONS PAGE ── */
.conditions-search {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 40px 0 20px;
  max-width: 480px;
}
.conditions-search input {
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  width: 100%;
}
.conditions-search input::placeholder { color: var(--muted); }

.conditions-region {
  margin-bottom: 50px;
}
.region-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.conditions-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.condition-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.condition-item:hover {
  border-color: rgba(201,169,110,0.25);
  background: var(--panel);
}
.condition-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.condition-item p {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: none;
  line-height: 1.5;
}

/* ── ATTORNEYS PAGE ── */
.attorneys-hero {
  background: linear-gradient(135deg, var(--deep) 0%, #0a1628 100%);
  padding: 140px 5% 80px;
  border-bottom: 1px solid var(--border);
}

.attorneys-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.attorneys-left h2 { margin-bottom: 1.5rem; }
.attorneys-left p { margin-bottom: 1.2rem; font-size: 0.95rem; }

.attorneys-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.attorney-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 6px 6px 0;
}
.attorney-feature h4 {
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.attorney-feature p {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: none;
}

/* ── ATTORNEYS — WORKFLOW ── */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.workflow-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  position: relative;
}
.workflow-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.workflow-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.workflow-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── ATTORNEYS — DOC CHECKLIST ── */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.doc-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.1rem 1.25rem;
}
.doc-check {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.doc-item-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 0.2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}
.doc-item-text span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── ATTORNEYS — REFERRAL FORM ── */
.referral-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.referral-form-grid .full-width {
  grid-column: 1 / -1;
}
.referral-form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-family: 'DM Mono', monospace;
}
.referral-form input,
.referral-form select,
.referral-form textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.referral-form input:focus,
.referral-form select:focus,
.referral-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.referral-form select option { background: var(--surface); }
.referral-form textarea { resize: vertical; min-height: 100px; }
.referral-confirm {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1rem;
  font-style: italic;
}
@media (max-width: 900px) {
  .workflow-steps { grid-template-columns: 1fr; }
  .doc-grid { grid-template-columns: 1fr; }
  .referral-form-grid { grid-template-columns: 1fr; }
  .referral-form-grid .full-width { grid-column: 1; }
}

/* ── ABOUT PAGE ── */
.about-hero {
  background: var(--deep);
  padding: 140px 5% 80px;
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-left {}
.about-left h2 { margin-bottom: 1.5rem; }
.about-left p { margin-bottom: 1.2rem; font-size: 0.95rem; color: var(--text); }

.about-right {}

.philosophy-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 60px;
}
.philosophy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}
.philosophy-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  font-style: italic;
}
.philosophy-card h4 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.philosophy-card p { font-size: 0.88rem; color: var(--muted); max-width: none; }

.training-section {
  background: var(--deep);
  border-top: 1px solid var(--border);
}

.collaborators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 40px;
}

.collaborator-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.collaborator-card:hover { border-color: rgba(201,169,110,0.2); }
.collaborator-card h4 {
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.collaborator-specialty {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.collaborator-card p {
  font-size: 0.84rem;
  color: var(--muted);
  max-width: none;
}

/* ── FAQ ── */
.faq-section { background: var(--ink); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 50px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--surface); }
.faq-question h4 {
  font-size: 0.92rem;
  color: var(--white);
  font-weight: 400;
  max-width: 85%;
}
.faq-toggle {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 2rem 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 80ch;
}
.faq-item.open .faq-answer { display: block; }

/* ── CONTACT PAGE ── */
.contact-section {
  background: var(--deep);
  padding: 140px 5% 80px;
  min-height: 100vh;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1000px;
  margin: 60px auto 0;
}

.contact-info h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.contact-detail-icon {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,169,110,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.contact-detail-text span {
  font-size: 0.95rem;
  color: var(--text);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-field label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(201,169,110,0.4);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); }
.form-field select option { background: var(--surface); }
.form-field textarea { resize: vertical; min-height: 100px; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 60px 5% 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.footer-brand {}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-brand-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 30ch;
}

.footer-col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
  cursor: pointer;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 65ch;
}
.footer-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.footer-badge-item {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
a.footer-badge-item:hover {
  color: var(--gold);
  border-color: var(--gold);
  text-decoration: none;
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  
  .intro-grid,
  .attorneys-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  
  .nms-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 70px 5%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-badges { align-items: flex-start; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .collaborators-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: clamp(1.5rem, 6.5vw, 2.8rem); overflow-wrap: break-word; }
}

/* ── BLOG PAGE ── */
.blog-hero {
  background: var(--deep);
  padding: 140px 5% 80px;
  border-bottom: 1px solid var(--border);
}

.blog-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 40px 0 50px;
}
.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold-dim);
  border-color: rgba(201,169,110,0.35);
  color: var(--gold);
}

.blog-featured {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 3rem;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.blog-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.blog-featured:hover { border-color: rgba(201,169,110,0.25); }

.blog-featured-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.blog-featured h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.blog-featured p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: none;
}
.blog-featured-meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.blog-meta-author {
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 500;
}
.blog-meta-info {
  font-size: 0.78rem;
  color: var(--muted);
}
.blog-featured-visual {
  background: linear-gradient(135deg, var(--panel) 0%, #0e1520 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.blog-featured-icon {
  font-size: 3rem;
  opacity: 0.5;
}
.blog-featured-cat {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: rgba(201,169,110,0.2);
  transform: translateY(-2px);
}
.blog-card-thumb {
  height: 140px;
  background: linear-gradient(135deg, var(--panel) 0%, var(--deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  opacity: 0.6;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-cat {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.blog-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.blog-card p {
  font-size: 0.84rem;
  color: var(--muted);
  max-width: none;
  line-height: 1.6;
  flex: 1;
}
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.blog-card-date { font-size: 0.75rem; color: var(--muted); }
.blog-card-read { font-size: 0.75rem; color: var(--gold); font-weight: 500; }

.blog-placeholder {
  opacity: 0.4;
  border-style: dashed;
}
.blog-placeholder .blog-card-thumb { opacity: 0.3; }
.blog-placeholder h3 { color: var(--muted); }

/* ── BLOG POST VIEW ── */
.blog-post-view {
  display: none;
  background: var(--ink);
  min-height: 100vh;
  padding-top: 72px;
}
.blog-post-view.active { display: block; }

.blog-post-header {
  background: var(--deep);
  padding: 80px 5% 60px;
  border-bottom: 1px solid var(--border);
}
.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  margin-bottom: 2rem;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
}
.blog-back:hover { color: var(--white); }
.blog-post-header h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 800px;
  margin-bottom: 1.5rem;
}
.blog-post-meta {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.blog-post-meta span {
  font-size: 0.82rem;
  color: var(--muted);
}
.blog-post-meta strong { color: var(--text); }

.blog-post-body {
  max-width: 740px;
  margin: 60px auto;
  padding: 0 5%;
}
.blog-post-body h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin: 2.5rem 0 1rem;
  color: var(--white);
}
.blog-post-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin: 2rem 0 0.75rem;
  letter-spacing: 0.01em;
}
.blog-post-body p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1.4rem;
  max-width: none;
}
.blog-post-body ul {
  margin: 0.5rem 0 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.blog-post-body ul li {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}
.blog-post-callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.blog-post-callout p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  font-style: italic;
}
.blog-post-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}
.blog-post-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.blog-post-cta p { color: var(--muted); margin: 0 auto 1.5rem; max-width: 45ch; }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 5%;
  font-size: 1.5rem;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  color: var(--muted);
}

/* ── HERO SPLIT LAYOUT ── */
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-content { max-width: none; }
.hero-img-panel { position: relative; }
.hero-img-panel img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  filter: brightness(0.75) saturate(0.85);
  display: block;
}
.hero-img-caption {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  background: rgba(10,12,16,0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: 6px;
  padding: 0.7rem 1rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── SERVICES PHOTO BANNER ── */
.services-photo-banner {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  filter: brightness(0.6) saturate(0.72) contrast(1.05);
  display: block;
  margin-bottom: 50px;
}

/* ── ATTORNEYS PAGE IMAGE ── */
.attorneys-hero-photo {
  margin-top: 2.5rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 800px;
}
.attorneys-hero-photo img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  filter: brightness(0.58) saturate(0.72);
  display: block;
}

/* ── HOME IMAGE STRIP ── */
.home-img-strip {
  position: relative;
  overflow: hidden;
  height: 300px;
}
.home-img-strip img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: brightness(0.42) saturate(0.65);
  display: block;
}
.home-img-strip-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, transparent 22%, transparent 78%, var(--ink) 100%);
  pointer-events: none;
}

/* ── BLOG IMAGES ── */
.blog-card-thumb {
  height: 160px !important;
  overflow: hidden;
}
.blog-card-thumb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  filter: brightness(0.78) saturate(0.82);
  transition: transform 0.35s ease, filter 0.35s ease;
}
.blog-card:hover .blog-card-thumb img {
  transform: scale(1.04);
  filter: brightness(0.88) saturate(0.9);
}
.blog-featured-visual {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.blog-featured-visual img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.78);
  display: block;
  transition: transform 0.4s ease;
}
.blog-featured:hover .blog-featured-visual img {
  transform: scale(1.03);
}

/* ── SERVICE CARD IMAGES ── */
.service-card-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1.2rem;
  display: block;
  filter: brightness(0.72) saturate(0.75);
  transition: filter 0.3s ease;
}
.service-card:hover .service-card-img {
  filter: brightness(0.82) saturate(0.85);
}

/* ── RESPONSIVE HERO ── */
@media (max-width: 900px) {
  .hero-img-panel { display: none; }
  .hero-layout { grid-template-columns: 1fr; }
}

/* ── HERO PARALLAX ── */
.hero-img-panel { overflow: hidden; }
.hero-img-panel img {
  will-change: transform;
  transform: scale(1.18) translateY(0px);
  transition: none !important;
}

/* ── CAR CRASH SCENE ── */
.crash-scene {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 520px;
  background: linear-gradient(180deg, #07090f 0%, #0a0e1a 45%, #07090f 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.crash-road {
  position: absolute;
  bottom: 30%;
  left: 0; right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    rgba(201,168,76,0.15) 0px, rgba(201,168,76,0.15) 36px,
    transparent 36px, transparent 72px
  );
}
.crash-cars-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 4%;
  gap: 24px;
  position: relative;
}
.car-wrap { flex-shrink: 0; filter: drop-shadow(0 14px 28px rgba(0,0,0,0.65)); }
.car-wrap-right { transform: scaleX(-1); }
.crash-impact {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 140px; height: 140px;
  pointer-events: none;
  opacity: 0;
  display: flex; align-items: center; justify-content: center;
}
.impact-ring {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.75);
  background: radial-gradient(circle, rgba(201,168,76,0.45) 0%, rgba(201,168,76,0) 65%);
}
.impact-ring-2 {
  width: 40px; height: 40px;
  background: radial-gradient(circle, rgba(255,200,80,0.6) 0%, transparent 70%);
  border-color: rgba(255,200,80,0.5);
}
.crash-label {
  position: absolute;
  bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(201,168,76,0.45); white-space: nowrap;
  animation: crashBounce 2.2s ease-in-out infinite;
}
.crash-scene-tag {
  position: absolute;
  top: 2.5rem; left: 50%; transform: translateX(-50%);
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.15); white-space: nowrap;
}
@keyframes crashBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-7px); }
}
