/* ================================================================
   Ascendant Road Holdings LLC — Premium Design System v2
   Fortune 500 Grade
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  --navy-950:  #080D18;
  --navy-900:  #0D1321;
  --navy-800:  #111827;
  --navy-700:  #1A1A2E;
  --navy-600:  #1E2547;
  --navy-500:  #2E3B55;
  --navy-400:  #3D5278;
  --gold-600:  #8B6914;
  --gold-500:  #B8922A;
  --gold-400:  #C6A455;
  --gold-300:  #D4B87E;
  --bronze:    #C6A88A;
  --cream-50:  #FDFBF8;
  --cream-100: #F5F0E8;
  --cream-200: #EDE7D9;
  --silver:    #A8B4C4;
  --white:     #FFFFFF;

  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1200px;
  --max-w-wide: 1400px;

  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  12px;
  --r-xl:  20px;
  --r-2xl: 32px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.2);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.3);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.4);
  --shadow-xl:   0 24px 80px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 40px rgba(184,146,42,0.18), 0 8px 32px rgba(0,0,0,0.4);

  --t-fast: 0.15s ease;
  --t-base: 0.28s ease;
  --t-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--navy-700);
  color: var(--cream-100);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Layout ── */
.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }
.container-wide { width: 92%; max-width: var(--max-w-wide); margin: 0 auto; }

/* ── Typography Scale ── */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.15; }
.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.02em; }
p  { color: rgba(245,240,232,0.72); line-height: 1.75; }

.overline {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.70rem; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--gold-500); margin-bottom: 1rem;
}
.overline::before {
  content: ''; display: block;
  width: 28px; height: 1.5px;
  background: var(--gold-500);
  flex-shrink: 0;
}
.section-title { margin-bottom: 1rem; }
.section-body  { max-width: 560px; color: rgba(245,240,232,0.65); }
.rule {
  width: 48px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  margin: 1.2rem 0 2rem;
}
.rule-center { margin-left: auto; margin-right: auto; }
.gold-text { color: var(--gold-400); }
.bronze-text { color: var(--bronze); }
.muted { color: rgba(245,240,232,0.45); }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 76px;
  display: flex; align-items: center;
  background: rgba(17, 24, 39, 0.80);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(184,146,42,0.12);
  transition: background var(--t-base);
}
.nav.scrolled { background: rgba(8, 13, 24, 0.96); }
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand-badge {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(184,146,42,0.25);
  transition: box-shadow var(--t-base);
}
.nav-brand:hover .nav-brand-badge { box-shadow: 0 4px 20px rgba(184,146,42,0.4); }
.nav-brand-badge img { width: 100%; height: 100%; object-fit: contain; }
.nav-brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.nav-brand-name {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  color: var(--cream-100); letter-spacing: 0.01em;
}
.nav-brand-type {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-500);
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 0.45rem 0.9rem;
  font-size: 0.84rem; font-weight: 500;
  color: rgba(245,240,232,0.72);
  border-radius: var(--r-sm);
  transition: color var(--t-fast);
  letter-spacing: 0.01em;
}
.nav-links > li > a:hover { color: var(--cream-100); }
.nav-links > li > a.active { color: var(--gold-400); }
.nav-cta-link {
  margin-left: 12px;
  padding: 0.48rem 1.4rem !important;
  background: var(--gold-500) !important;
  color: var(--navy-900) !important;
  border-radius: var(--r-sm) !important;
  font-weight: 600 !important;
  font-size: 0.84rem !important;
  letter-spacing: 0.04em !important;
  transition: background var(--t-base) !important;
}
.nav-cta-link:hover { background: #c9a030 !important; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #131d2e;
  border: 1px solid rgba(184,146,42,0.18);
  border-radius: var(--r-lg); padding: 6px;
  min-width: 230px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-base);
  box-shadow: var(--shadow-lg);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block; padding: 0.65rem 1rem;
  font-size: 0.84rem; color: rgba(245,240,232,0.7);
  border-radius: var(--r-md);
  transition: background var(--t-fast), color var(--t-fast);
}
.dropdown li a:hover { background: rgba(184,146,42,0.08); color: var(--gold-400); }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--cream-100); border-radius: 2px;
  transition: all var(--t-base);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  background: var(--navy-900);
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 75% 50%, rgba(30,37,71,0.9) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 5% 90%, rgba(184,146,42,0.05) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.4;
  background-image:
    linear-gradient(rgba(184,146,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,146,42,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr auto;
  gap: 4rem; align-items: center;
}
.hero-content { max-width: 660px; }
.hero-eyebrow { margin-bottom: 1.8rem; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.6rem;
}
.hero h1 em { font-style: italic; color: var(--gold-400); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.4rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero Emblem */
.hero-emblem {
  position: relative; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 340px; height: 340px;
}
.hero-emblem-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(184,146,42,0.15);
  animation: ring-pulse 4s ease-in-out infinite;
}
.hero-emblem-ring.r1 { inset: 0; animation-delay: 0s; }
.hero-emblem-ring.r2 { inset: -20px; border-color: rgba(184,146,42,0.08); animation-delay: 0.5s; }
.hero-emblem-ring.r3 { inset: -42px; border-color: rgba(184,146,42,0.04); animation-delay: 1s; }
@keyframes ring-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.01); }
}
.hero-emblem-inner {
  width: 260px; height: 260px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 36px;
  box-shadow: var(--shadow-gold);
  position: relative; z-index: 2;
}
.hero-emblem-inner img { width: 100%; height: 100%; object-fit: contain; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.82rem 2rem;
  border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 0.875rem;
  font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; border: none;
  transition: all var(--t-base); cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: var(--gold-500); color: var(--navy-900);
}
.btn-primary:hover {
  background: #c9a030; transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184,146,42,0.3);
}
.btn-ghost {
  background: transparent; color: var(--cream-100);
  border: 1.5px solid rgba(245,240,232,0.25);
}
.btn-ghost:hover { border-color: var(--gold-400); color: var(--gold-400); }
.btn-sm { padding: 0.62rem 1.4rem; font-size: 0.8rem; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform var(--t-fast); }
.btn:hover svg { transform: translateX(3px); }

/* ── Sections ── */
.section { padding: 100px 0; }
.section-lg { padding: 130px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--navy-600); }
.section-dark { background: var(--navy-900); }
.section-deep { background: var(--navy-800); }
.section-center { text-align: center; }
.section-center .section-body { margin-left: auto; margin-right: auto; }
.section-center .rule { margin-left: auto; margin-right: auto; }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--navy-800);
  border-top: 1px solid rgba(184,146,42,0.12);
  border-bottom: 1px solid rgba(184,146,42,0.12);
  padding: 52px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600; color: var(--gold-400);
  line-height: 1; margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,240,232,0.45);
}

/* ── Two-Column Split ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-3-2 { grid-template-columns: 3fr 2fr; }
.split-2-3 { grid-template-columns: 2fr 3fr; }

/* ── Cards ── */
.card {
  background: rgba(255,255,255,0.024);
  border: 1px solid rgba(184,146,42,0.10);
  border-radius: var(--r-lg);
  padding: 2.2rem;
  transition: all var(--t-base);
  position: relative; overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 2px; height: 0;
  background: linear-gradient(180deg, var(--gold-500), transparent);
  transition: height 0.4s ease;
}
.card:hover { border-color: rgba(184,146,42,0.28); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card:hover::before { height: 100%; }
.card-icon {
  width: 48px; height: 48px;
  background: rgba(184,146,42,0.1);
  border: 1px solid rgba(184,146,42,0.2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.4rem;
}
.card h3 { margin-bottom: 0.7rem; font-size: 1.25rem; }
.card p { font-size: 0.9rem; }

/* Portfolio / Venture Cards */
.venture-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(184,146,42,0.12);
  border-radius: var(--r-xl);
  overflow: hidden; display: flex; flex-direction: column;
  transition: all var(--t-slow);
}
.venture-card:hover {
  border-color: rgba(184,146,42,0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.venture-card-top {
  padding: 2.4rem 2.4rem 1.6rem;
  border-bottom: 1px solid rgba(184,146,42,0.08);
}
.venture-card-badge {
  display: inline-block;
  padding: 0.28rem 0.75rem;
  border-radius: 20px; font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.badge-sub   { background: rgba(198,168,138,0.12); color: var(--bronze); border: 1px solid rgba(198,168,138,0.25); }
.badge-sa    { background: rgba(184,146,42,0.10); color: var(--gold-400); border: 1px solid rgba(184,146,42,0.25); }
.badge-sb    { background: rgba(61,82,120,0.25); color: #8FA8D0; border: 1px solid rgba(143,168,208,0.25); }
.venture-card-top h3 { font-size: 1.35rem; margin-bottom: 0.3rem; }
.venture-card-body { padding: 1.6rem 2.4rem 2.4rem; flex: 1; display: flex; flex-direction: column; }
.venture-card-body p { font-size: 0.9rem; margin-bottom: 1.6rem; flex: 1; }
.venture-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-400);
  transition: gap var(--t-fast);
}
.venture-link:hover { gap: 10px; }

/* ── Entity Structure Tree ── */
.tree {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(184,146,42,0.14);
  border-radius: var(--r-xl); padding: 2.4rem;
}
.tree-root {
  background: rgba(184,146,42,0.08);
  border: 1.5px solid rgba(184,146,42,0.3);
  border-radius: var(--r-md);
  padding: 1.2rem 1.8rem; text-align: center; margin-bottom: 0;
}
.tree-root strong { font-family: var(--font-heading); font-size: 1.05rem; color: var(--gold-400); display: block; }
.tree-root span   { font-size: 0.72rem; color: rgba(245,240,232,0.45); letter-spacing: 0.1em; text-transform: uppercase; }
.tree-stem {
  display: flex; justify-content: center;
  height: 32px; position: relative;
}
.tree-stem::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; background: rgba(184,146,42,0.3);
}
.tree-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; position: relative;
}
.tree-row::before {
  content: ''; position: absolute;
  top: 0; left: calc(100%/6); right: calc(100%/6);
  height: 1px; background: rgba(184,146,42,0.3);
}
.tree-node {
  border: 1px solid rgba(184,146,42,0.18);
  border-radius: var(--r-md); padding: 1rem 1.1rem;
  text-align: center; position: relative;
}
.tree-node::before {
  content: ''; position: absolute;
  top: -32px; left: 50%; width: 1px; height: 32px;
  background: rgba(184,146,42,0.3);
}
.tree-node strong { display: block; font-size: 0.85rem; margin-bottom: 0.2rem; }
.tree-node span   { font-size: 0.70rem; color: rgba(245,240,232,0.45); }
.node-a { background: rgba(198,168,138,0.06); }
.node-b { background: rgba(184,146,42,0.05); }
.node-c { background: rgba(46,59,85,0.35); }

/* ── Pillar / Principle ── */
.pillar {
  padding: 1.6rem 1.8rem;
  border-left: 2px solid var(--gold-500);
  background: rgba(184,146,42,0.04);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin-bottom: 1.2rem;
  transition: background var(--t-base);
}
.pillar:hover { background: rgba(184,146,42,0.08); }
.pillar h4 { color: var(--gold-400); margin-bottom: 0.4rem; font-size: 0.95rem; }
.pillar p  { font-size: 0.875rem; }

/* ── Service List ── */
.svc-list { display: grid; gap: 1rem; }
.svc-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.3rem 1.5rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(184,146,42,0.09);
  border-radius: var(--r-md);
  transition: border-color var(--t-base), background var(--t-base);
}
.svc-item:hover { border-color: rgba(184,146,42,0.25); background: rgba(255,255,255,0.04); }
.svc-num {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: rgba(184,146,42,0.35); line-height: 1; flex-shrink: 0;
  width: 32px; text-align: center;
}
.svc-content h4 { margin-bottom: 0.25rem; }
.svc-content p  { font-size: 0.875rem; }

/* ── Equipment Tags ── */
.equip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.equip-tag {
  padding: 0.75rem 1.1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(198,168,138,0.18);
  border-radius: var(--r-md);
  font-size: 0.84rem; color: var(--bronze);
  display: flex; align-items: center; gap: 8px;
  transition: all var(--t-fast);
}
.equip-tag:hover { border-color: rgba(198,168,138,0.4); background: rgba(255,255,255,0.05); }
.equip-tag::before { content: '◆'; font-size: 0.4rem; color: var(--gold-500); flex-shrink: 0; }

/* ── Contact ── */
.contact-entry {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 1.8rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(184,146,42,0.10);
  border-radius: var(--r-lg);
  gap: 1.5rem; flex-wrap: wrap;
  transition: all var(--t-base);
}
.contact-entry:hover { border-color: rgba(184,146,42,0.25); background: rgba(255,255,255,0.04); }
.contact-entry-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.15rem; }
.contact-entry-role { font-size: 0.78rem; color: rgba(245,240,232,0.45); letter-spacing: 0.04em; }
.contact-entry-email {
  font-size: 0.875rem; color: var(--bronze);
  transition: color var(--t-fast);
}
.contact-entry-email:hover { color: var(--gold-400); }

/* ── Form ── */
.form { display: grid; gap: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bronze); }
.form-control {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,146,42,0.18);
  border-radius: var(--r-md);
  padding: 0.85rem 1.1rem;
  color: var(--cream-100); font-family: var(--font-body); font-size: 0.9rem;
  width: 100%; transition: border-color var(--t-fast);
}
.form-control:focus { outline: none; border-color: var(--gold-500); }
.form-control option { background: #111827; }
textarea.form-control { min-height: 140px; resize: vertical; }

/* ── CTA Banner ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-800) 100%);
  border-top: 1px solid rgba(184,146,42,0.18);
  border-bottom: 1px solid rgba(184,146,42,0.18);
  padding: 80px 0; text-align: center;
}
.cta-band h2 { margin-bottom: 0.8rem; }
.cta-band p  { margin-bottom: 2.2rem; }
.cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero (sub-pages) ── */
.page-hero {
  padding: 156px 0 88px; position: relative; overflow: hidden;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(184,146,42,0.12);
}
.page-hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 120% at 85% 50%, rgba(30,37,71,0.8) 0%, transparent 65%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p  { font-size: 1.05rem; max-width: 520px; }

/* ── Logo Showcase ── */
.logo-showcase {
  background: var(--cream-50);
  border-radius: var(--r-xl); padding: 3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
}
.logo-showcase img { max-width: 280px; width: 100%; }

/* ── Bio Block ── */
.bio {
  display: grid; grid-template-columns: auto 1fr;
  gap: 3.5rem; align-items: start;
}
.bio-avatar {
  width: 180px; height: 180px;
  background: linear-gradient(135deg, var(--navy-500), var(--navy-600));
  border: 2px solid rgba(184,146,42,0.25);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 3.5rem;
  font-weight: 600; color: var(--gold-400);
  flex-shrink: 0;
}
.bio-meta { display: grid; gap: 0.4rem; margin-bottom: 1.2rem; }
.bio-meta-row {
  display: flex; gap: 0.8rem; align-items: baseline;
  font-size: 0.875rem; color: rgba(245,240,232,0.55);
}
.bio-meta-row strong { color: var(--bronze); font-weight: 600; }

/* ── Horizontal Divider ── */
.h-rule {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,42,0.2), transparent);
  border: none; margin: 0;
}

/* ── Footer ── */
.footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(184,146,42,0.12);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem; margin-bottom: 3.5rem;
}
.footer-logo {
  background: var(--white); border-radius: var(--r-md);
  padding: 10px 16px; display: inline-block;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.footer-logo img { height: 44px; width: auto; }
.footer-tagline { font-size: 0.875rem; color: rgba(245,240,232,0.45); line-height: 1.65; }
.footer-col h5 {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-500); margin-bottom: 1.2rem;
}
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col ul li a {
  font-size: 0.875rem; color: rgba(245,240,232,0.5);
  transition: color var(--t-fast);
}
.footer-col ul li a:hover { color: var(--bronze); }
.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.06);
  padding-top: 1.8rem;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.80rem; color: rgba(245,240,232,0.30); }
.footer-copy a { color: rgba(198,168,138,0.5); }
.footer-copy a:hover { color: var(--bronze); }
.footer-legal {
  font-size: 0.72rem; color: rgba(245,240,232,0.20);
  text-align: center; margin-top: 1.2rem; line-height: 1.6;
}

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.8rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ── Reveal Animation ── */
[data-r] { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-r].in { opacity: 1; transform: translateY(0); }
[data-r][data-d="1"] { transition-delay: 0.10s; }
[data-r][data-d="2"] { transition-delay: 0.20s; }
[data-r][data-d="3"] { transition-delay: 0.30s; }
[data-r][data-d="4"] { transition-delay: 0.40s; }

/* ── Utilities ── */
.mt-1{margin-top:.5rem} .mt-2{margin-top:1rem} .mt-3{margin-top:1.5rem} .mt-4{margin-top:2rem}
.mb-1{margin-bottom:.5rem} .mb-2{margin-bottom:1rem} .mb-3{margin-bottom:1.5rem} .mb-4{margin-bottom:2rem}
.text-center{text-align:center}

/* ── Responsive ── */
@media(max-width:1100px){
  .hero-inner { grid-template-columns: 1fr; }
  .hero-emblem { display: none; }
  .split-3-2, .split-2-3, .split { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-grid  { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:768px){
  .nav-links {
    display: none; position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(8,13,24,0.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 1.5rem;
    border-bottom: 1px solid rgba(184,146,42,0.18);
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 0.75rem 1rem; font-size: 0.95rem; }
  .nav-cta-link { margin-left: 0; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }
  .dropdown { position: static; transform: none; opacity: 1; pointer-events: all;
    box-shadow: none; background: rgba(255,255,255,0.04);
    margin: 0.4rem 0 0.4rem 1rem; display: none; }
  .has-dropdown.open .dropdown { display: block; }

  .section { padding: 70px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .equip-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .tree-row { grid-template-columns: 1fr; }
  .tree-row::before, .tree-node::before { display: none; }
  .bio { grid-template-columns: 1fr; }
  .bio-avatar { width: 100px; height: 100px; font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .contact-entry { flex-direction: column; align-items: flex-start; }
}
@media(max-width:480px){
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .hero-actions { flex-direction: column; }
}
