/* ==========================================================================
   WealthEQ — Static Site Styles
   Pixel-perfect port from React inline styles
   ========================================================================== */

/* --- CSS Custom Properties --- */
:root {
  --charcoal: #1a1a1a;
  --deep: #0d0d0d;
  --slate: #2d3436;
  --slate-light: #8a9299;
  --gold: #c9a84c;
  --gold-light: #dbc278;
  --white: #fafafa;
  --off-white: #ede9e1;
  --body: #d4cfc6;
  --arete-dark: #0a0f0d;
  --arete-accent: #8b9d77;
  --twosix-bg: #1b2330;
  --twosix-card: #2a3a4e;
  --twosix-accent: #c9a84c;
  --twosix-border: rgba(201,168,76,0.35);
  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body: 'Montserrat', 'Helvetica Neue', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; background: var(--deep); color: var(--white); min-height: 100vh; font-family: var(--ff-body); }
body.menu-open { overflow: hidden; }

/* --- Keyframes --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Grain Overlay --- */
.grain-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 9999; opacity: 0.03;
  background: 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");
}

/* --- Skip to Content (a11y) --- */
.skip-link {
  position: absolute; top: -100px; left: 0; z-index: 10002;
  background: var(--gold); color: var(--deep); padding: 8px 16px;
  font-family: var(--ff-body); font-size: 12px; font-weight: 600;
  text-decoration: none; letter-spacing: 1px;
}
.skip-link:focus { top: 0; }

/* --- Navigation --- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 24px; background: transparent;
  backdrop-filter: none; border-bottom: 1px solid transparent;
  transition: all 0.4s; display: flex;
  justify-content: space-between; align-items: center;
}
.site-nav.scrolled {
  padding: 10px 24px;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo-mark {
  width: 32px; height: 32px; border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-heading); font-size: 13px; font-weight: 700; color: var(--gold);
}
.nav-logo-text {
  font-family: var(--ff-heading); font-size: 16px; font-weight: 600;
  color: var(--white); letter-spacing: 2.5px; text-transform: uppercase;
}
.nav-logo-text .gold { color: var(--gold); }

.nav-desktop { display: flex; gap: 20px; align-items: center; }
.nav-link {
  font-family: var(--ff-body); font-size: 9px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--slate-light);
  padding: 6px 0; border-bottom: 1px solid transparent;
  transition: all 0.3s; text-decoration: none;
}
.nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-cta {
  border: 1px solid var(--gold); font-family: var(--ff-body); font-size: 9px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); padding: 8px 18px; text-decoration: none; transition: all 0.3s; white-space: nowrap;
}
.nav-login {
  font-family: var(--ff-body); font-size: 9px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--slate-light); text-decoration: none; white-space: nowrap;
}

/* Mobile hamburger */
.nav-mobile-btn {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 10001; position: relative;
}
.hamburger-lines { display: flex; flex-direction: column; gap: 5px; }
.hamburger-line {
  width: 22px; height: 1.5px; background: var(--gold); transition: all 0.3s;
}
.nav-mobile-btn.open .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-mobile-btn.open .hamburger-line:nth-child(2) { opacity: 0; }
.nav-mobile-btn.open .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile overlay */
.mobile-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%; background: rgba(13,13,13,0.99);
  backdrop-filter: blur(20px); display: none; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px; z-index: 10000;
}
.mobile-overlay.open { display: flex; }
.mobile-overlay .mobile-link {
  font-family: var(--ff-body); font-size: 14px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; color: var(--off-white); text-decoration: none;
}
.mobile-overlay .mobile-link.active { color: var(--gold); }
.mobile-overlay .mobile-cta {
  margin-top: 12px; border: 1px solid var(--gold); padding: 12px 32px;
  font-family: var(--ff-body); font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); text-decoration: none;
}
.mobile-overlay .mobile-login {
  font-family: var(--ff-body); font-size: 11px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase; color: var(--slate-light); text-decoration: none;
}

/* --- Hero Section --- */
#home {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--deep) 0%, var(--slate) 50%, var(--charcoal) 100%);
}
.hero-grid-bg {
  position: absolute; inset: 0; opacity: 0.04;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 80px, var(--gold) 80px, var(--gold) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, var(--gold) 80px, var(--gold) 81px);
}
.hero-corner-tl {
  position: absolute; top: 80px; left: 40px; width: 100px; height: 100px;
  border-left: 1px solid var(--gold); border-top: 1px solid var(--gold);
  opacity: 0; transition: all 1.2s ease 0.5s;
}
.hero-corner-br {
  position: absolute; bottom: 140px; right: 40px; width: 100px; height: 100px;
  border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold);
  opacity: 0; transition: all 1.2s ease 0.5s;
}
#home.loaded .hero-corner-tl,
#home.loaded .hero-corner-br { opacity: 0.4; }

.hero-center { flex: 1; display: flex; align-items: center; justify-content: center; }
.hero-content {
  max-width: 900px; text-align: center; padding: 80px 24px 40px; position: relative; z-index: 1;
}
.hero-content h1 {
  font-family: var(--ff-heading); font-size: clamp(34px, 5.5vw, 72px);
  font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 24px;
  opacity: 0; transform: translateY(30px); transition: all 0.8s ease 0.3s;
}
.hero-content h1 .gold { color: var(--gold); font-style: italic; }
.hero-divider {
  width: 60px; height: 1px; background: var(--gold); margin: 28px auto;
  opacity: 0; transform: scaleX(0); transition: all 0.8s ease 0.5s;
}
.hero-content p {
  font-family: var(--ff-body); font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 300; color: var(--off-white); line-height: 1.8;
  max-width: 640px; margin: 0 auto 40px;
  opacity: 0; transform: translateY(20px); transition: all 0.8s ease 0.7s;
}
.hero-buttons {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px); transition: all 0.8s ease 0.9s;
}

#home.loaded .hero-content h1,
#home.loaded .hero-divider,
#home.loaded .hero-content p,
#home.loaded .hero-buttons { opacity: 1; transform: translateY(0) scaleX(1); }

/* Principles ribbon */
.hero-ribbon {
  background: rgba(13,13,13,0.7); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201,168,76,0.12); padding: 16px 24px;
  opacity: 0; transition: all 0.8s ease 1.1s;
}
#home.loaded .hero-ribbon { opacity: 1; }
.hero-ribbon-inner {
  max-width: 1100px; margin: 0 auto; display: flex;
  justify-content: center; align-items: center; flex-wrap: wrap; gap: 6px 0;
}
.principle-item { display: inline-flex; align-items: center; white-space: nowrap; }
.principle-col { display: flex; flex-direction: column; align-items: center; }
.principle-label {
  font-family: var(--ff-heading); font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700; color: var(--white);
}
.principle-sub {
  font-family: var(--ff-body); font-size: clamp(10px, 1.1vw, 13px);
  font-weight: 400; color: var(--off-white); letter-spacing: 1px; margin-top: 2px;
}
.principle-dot {
  margin: 0 24px; color: var(--gold); font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 300; opacity: 0.5;
}

/* --- Animated Sections (fade-in on scroll) --- */
.animate-section { position: relative; overflow: hidden; }
.animate-section .section-inner {
  opacity: 0; transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-section.visible .section-inner { opacity: 1; transform: translateY(0); }

/* --- Section Label (reusable) --- */
.section-label { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.section-label-line { width: 40px; height: 1px; background: var(--gold); }
.section-label-text {
  font-family: var(--ff-body); font-size: 11px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
}
.section-label-text.arete { color: var(--arete-accent); }
.section-label-line.arete { background: var(--arete-accent); }

/* --- Section Title --- */
.section-title {
  font-family: var(--ff-heading); font-size: clamp(28px, 4vw, 48px);
  font-weight: 700; color: var(--white); line-height: 1.2;
}
.section-title .gold { color: var(--gold); font-style: italic; }
.section-title .arete-accent { color: var(--arete-accent); }

/* --- Section Padding --- */
.section-padding { padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 80px); }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-container.narrow { max-width: 900px; }
.section-container.contact-width { max-width: 800px; text-align: center; }

/* --- Buttons --- */
.btn-gold {
  background: var(--gold); border: none; font-family: var(--ff-body);
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--deep); cursor: pointer;
  padding: 14px 36px; transition: all 0.3s; display: inline-block; text-decoration: none;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline-gold {
  background: transparent; border: 1px solid rgba(201,168,76,0.4);
  font-family: var(--ff-body); font-size: 11px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
  cursor: pointer; padding: 14px 36px; transition: all 0.3s; display: inline-block; text-decoration: none;
}
.btn-outline-gold:hover { border-color: var(--gold); }

/* --- Story Section --- */
#story { background: var(--charcoal); }
.story-intro {
  font-family: var(--ff-body); font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 300; color: var(--body); line-height: 1.8; max-width: 650px; margin-bottom: 48px;
}
.story-tabs {
  display: flex; border-bottom: 1px solid rgba(201,168,76,0.15);
  margin-bottom: 48px; overflow-x: auto;
}
.story-tab {
  background: none; border: none; border-bottom: 2px solid transparent;
  font-family: var(--ff-body); font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 400; letter-spacing: 2px; text-transform: uppercase;
  color: var(--slate-light); cursor: pointer; padding: 12px 20px 16px; white-space: nowrap;
}
.story-tab.active { border-bottom-color: var(--gold); color: var(--gold); font-weight: 600; }
.story-tab-num { margin-right: 8px; opacity: 0.5; }
.story-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; animation: fadeIn 0.5s ease; }
.story-content h3 {
  font-family: var(--ff-heading); font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700; color: var(--white); margin-bottom: 12px;
}
.story-content > div > p {
  font-family: var(--ff-body); font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 300; color: var(--body); line-height: 1.8;
}
.traits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.trait-card {
  padding: 20px; border: 1px solid rgba(201,168,76,0.15);
  background: rgba(201,168,76,0.03); display: flex; align-items: flex-start; gap: 10px;
}
.trait-num {
  font-family: var(--ff-heading); font-size: 18px; color: var(--gold);
  opacity: 0.4; line-height: 1;
}
.trait-text {
  font-family: var(--ff-body); font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--off-white); line-height: 1.5;
}

/* Hidden phase panels (JS toggles display) */
.story-panel { display: none !important; }
.story-panel.active { display: grid !important; }

/* Phase header (visible only on mobile) */
.story-phase-header { display: none; }

/* --- Services Section --- */
#services { background: var(--slate); }
.svc-tabs {
  display: flex; margin-bottom: 48px; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.svc-tab {
  background: transparent; border: 1px solid rgba(99,110,114,0.2);
  font-family: var(--ff-body); font-size: clamp(9px, 1.1vw, 12px);
  font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--slate-light); cursor: pointer; padding: 14px 12px;
  flex: 1 0 auto; min-width: 0; white-space: nowrap;
  margin-right: -1px; position: relative;
}
.svc-tab:last-child { margin-right: 0; }
.svc-tab.active {
  background: rgba(201,168,76,0.08); border-color: var(--gold);
  color: var(--gold); font-weight: 600; z-index: 1;
}
.svc-panel { display: none !important; animation: fadeIn 0.5s ease; }
.svc-panel.active { display: block !important; }

/* Service phase header (visible only on mobile) */
.svc-phase-header { display: none; }
.svc-header h3 {
  font-family: var(--ff-heading); font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600; color: var(--white); margin-bottom: 10px;
}
.svc-header p {
  font-family: var(--ff-body); font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 300; color: var(--body); line-height: 1.8; max-width: 700px;
}
.svc-minimum {
  display: inline-block; margin-top: 10px; font-family: var(--ff-body);
  font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); padding: 6px 14px; border: 1px solid rgba(201,168,76,0.3);
}
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(201,168,76,0.1);
}
.svc-card { background: var(--slate); padding: 28px; }
.svc-card-num {
  font-family: var(--ff-heading); font-size: 15px; color: var(--gold);
  opacity: 0.3; display: block; margin-bottom: 10px;
}
.svc-card h4 {
  font-family: var(--ff-body); font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white); margin-bottom: 8px;
}
.svc-card p {
  font-family: var(--ff-body); font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300; color: var(--body); line-height: 1.7;
}

/* Fee box */
.fee-box {
  margin-top: 24px; border: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.03);
}
.fee-box-header {
  padding: 24px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.fee-box-header h4 {
  font-family: var(--ff-heading); font-size: clamp(18px, 2vw, 22px);
  font-weight: 600; color: var(--gold); margin-bottom: 4px;
}
.fee-box-header p {
  font-family: var(--ff-body); font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300; color: var(--off-white); line-height: 1.6;
}
.fee-toggle {
  font-family: var(--ff-body); font-size: 10px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
  padding: 12px 24px; border: 1px solid var(--gold); background: transparent;
  white-space: nowrap; cursor: pointer;
}
.fee-all-details {
  display: none; border-top: 1px solid rgba(201,168,76,0.1);
  padding: 20px 24px 24px; animation: fadeIn 0.4s ease;
}
.fee-all-details.open { display: block; }
.fee-detail-item { margin-bottom: 24px; }
.fee-detail-item:last-child { margin-bottom: 0; }
.fee-detail-item h5 {
  font-family: var(--ff-body); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.fee-point {
  display: flex; gap: 12px; margin-bottom: 8px;
}
.fee-point-arrow { color: var(--gold); font-size: 6px; margin-top: 8px; flex-shrink: 0; }
.fee-point span:last-child {
  font-family: var(--ff-body); font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300; color: var(--off-white); line-height: 1.7;
}

/* --- Approach Section --- */
#approach { background: var(--deep); }
.approach-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.approach-text p {
  font-family: var(--ff-body); font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 300; color: var(--body); line-height: 1.8; margin-bottom: 28px;
}
.mission-block {
  padding: 20px; border-left: 2px solid var(--gold); margin-bottom: 14px;
}
.vision-block {
  padding: 20px; border-left: 2px solid rgba(201,168,76,0.3);
}
.mission-block h4, .vision-block h4 {
  font-family: var(--ff-body); font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.mission-block p, .vision-block p {
  font-family: var(--ff-heading); font-size: clamp(15px, 1.6vw, 18px);
  color: var(--off-white); font-style: italic; line-height: 1.6;
}
.approach-pillars { display: flex; flex-direction: column; gap: 20px; }
.pillar-card {
  padding: 28px; border: 1px solid rgba(201,168,76,0.12);
  background: rgba(201,168,76,0.02);
}
.pillar-header { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.pillar-icon { font-size: 18px; color: var(--gold); opacity: 0.6; }
.pillar-header h3 {
  font-family: var(--ff-body); font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--white);
}
.pillar-card p {
  font-family: var(--ff-body); font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300; color: var(--body); line-height: 1.7; padding-left: 32px;
}

/* --- 2SIX Partners Section --- */
#twosix { background: var(--twosix-bg); }
.twosix-label-line { width: 40px; height: 3px; background: var(--gold); }
.twosix-heading {
  font-family: var(--ff-heading); font-size: clamp(32px, 4vw, 56px);
  font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 4px;
}
.twosix-heading .gold { color: var(--gold); font-style: normal; }
.twosix-bar { width: 50px; height: 3px; background: var(--gold); margin-bottom: 12px; }
.twosix-subtitle {
  font-family: var(--ff-body); font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.twosix-tagline {
  font-family: var(--ff-heading); font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400; font-style: italic; color: var(--off-white); line-height: 1.6; margin-bottom: 24px;
}
.twosix-desc {
  font-family: var(--ff-body); font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 300; color: var(--body); line-height: 1.8; margin-bottom: 20px;
}
.twosix-desc-secondary {
  font-family: var(--ff-body); font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 300; color: var(--slate-light); line-height: 1.8; margin-bottom: 32px;
}
.btn-twosix {
  background: var(--gold); border: none; font-family: var(--ff-body);
  font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--twosix-bg); cursor: pointer; padding: 14px 28px;
  display: inline-block; text-decoration: none; transition: all 0.3s;
}
.twosix-cards { display: flex; flex-direction: column; gap: 16px; }
.twosix-card {
  padding: 24px; background: var(--twosix-card);
  border: 1px solid var(--twosix-border); border-left: 3px solid var(--gold); transition: all 0.3s;
}
.twosix-card h4 {
  font-family: var(--ff-body); font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white); margin-bottom: 6px;
}
.twosix-card p {
  font-family: var(--ff-body); font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300; color: var(--body); line-height: 1.7;
}
.twosix-disclaimer {
  padding: 20px; border-top: 1px solid rgba(201,168,76,0.15); margin-top: 4px;
}
.twosix-disclaimer p {
  font-family: var(--ff-body); font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 300; color: var(--slate-light); line-height: 1.6;
}

/* --- Arete 6 Section --- */
#arete { background: var(--arete-dark); }
.arete-heading {
  font-family: var(--ff-heading); font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 4px;
}
.arete-heading .accent { color: var(--arete-accent); }
.arete-bar { width: 40px; height: 2px; background: var(--arete-accent); margin-bottom: 14px; }
.arete-subtitle {
  font-family: var(--ff-body); font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--arete-accent); margin-bottom: 18px;
}
.arete-desc {
  font-family: var(--ff-body); font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 300; color: var(--off-white); line-height: 1.8; margin-bottom: 20px;
}
.arete-desc-secondary {
  font-family: var(--ff-body); font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 300; color: var(--body); line-height: 1.8; margin-bottom: 28px;
}
.arete-bullet-list { margin-bottom: 28px; }
.arete-bullet {
  display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.arete-bullet-arrow { color: var(--arete-accent); font-size: 6px; }
.arete-bullet span:last-child {
  font-family: var(--ff-body); font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 400; color: var(--off-white);
}
.btn-arete {
  background: var(--arete-accent); border: none; font-family: var(--ff-body);
  font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--arete-dark); cursor: pointer; padding: 14px 24px;
  display: inline-block; text-decoration: none; transition: all 0.3s;
}
.arete-cards { display: flex; flex-direction: column; gap: 18px; }
.arete-card {
  padding: 28px; border: 1px solid rgba(139,157,119,0.15);
  background: rgba(139,157,119,0.03);
}
.arete-card-num {
  font-family: var(--ff-heading); font-size: 15px; color: var(--arete-accent);
  opacity: 0.4; display: block; margin-bottom: 8px;
}
.arete-card h4 {
  font-family: var(--ff-body); font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); margin-bottom: 8px;
}
.arete-card p {
  font-family: var(--ff-body); font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300; color: var(--body); line-height: 1.7;
}
.ecosystem-badge {
  padding: 20px; border-top: 1px solid rgba(201,168,76,0.1); margin-top: 4px;
}
.ecosystem-badge-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.ecosystem-w {
  width: 18px; height: 18px; border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-heading); font-size: 7px; font-weight: 700; color: var(--gold);
}
.ecosystem-badge-header span:last-child {
  font-family: var(--ff-body); font-size: 9px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--slate-light);
}
.ecosystem-badge > p {
  font-family: var(--ff-body); font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 300; color: var(--body); line-height: 1.6;
}

/* --- About Section --- */
#about { background: var(--charcoal); }
.about-profile { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 32px; flex-wrap: wrap; }
.about-photo {
  width: 80px; height: 80px; object-fit: cover; object-position: top;
  border-radius: 50%; border: 2px solid rgba(201,168,76,0.3); flex-shrink: 0;
}
.about-info { flex: 1; min-width: 200px; }
.about-info h3 {
  font-family: var(--ff-heading); font-size: 22px; font-weight: 700;
  color: var(--white); margin-bottom: 2px;
}
.about-info .credentials {
  font-family: var(--ff-body); font-size: 13px; font-weight: 500;
  color: var(--gold); letter-spacing: 1px; margin-bottom: 4px;
}
.about-info .military {
  font-family: var(--ff-body); font-size: 12px; font-weight: 400;
  color: var(--gold); font-style: italic; margin-bottom: 4px;
}
.about-info .roles {
  font-family: var(--ff-body); font-size: 12px; font-weight: 300;
  color: var(--slate-light); line-height: 1.5;
}
.about-bio { display: flex; flex-direction: column; gap: 16px; }
.about-bio p {
  font-family: var(--ff-body); font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 300; color: var(--body); line-height: 1.9;
}

/* --- Contact Section --- */
#contact { background: var(--deep); }
.contact-label-center {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 16px;
}
.contact-desc {
  font-family: var(--ff-body); font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 300; color: var(--body); line-height: 1.8;
  max-width: 520px; margin: 0 auto 40px;
}
.contact-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(201,168,76,0.1); max-width: 500px; margin: 0 auto 40px;
}
.contact-card { background: var(--deep); padding: 24px; }
.contact-card-label {
  font-family: var(--ff-body); font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 6px;
}
.contact-card-value {
  font-family: var(--ff-body); font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 400; color: var(--white);
}
.contact-card a { color: var(--white); text-decoration: none; display: inline-block; }

/* --- Footer --- */
.site-footer {
  background: var(--deep); border-top: 1px solid rgba(201,168,76,0.1);
  padding: 44px 24px 28px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 36px; flex-wrap: wrap; gap: 28px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-logo-mark {
  width: 24px; height: 24px; border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-heading); font-size: 10px; font-weight: 700; color: var(--gold);
}
.footer-logo-text {
  font-family: var(--ff-heading); font-size: 14px; font-weight: 600;
  color: var(--white); letter-spacing: 2px; text-transform: uppercase;
}
.footer-logo-text .gold { color: var(--gold); }
.footer-desc {
  font-family: var(--ff-body); font-size: 12px; font-weight: 300;
  color: var(--slate-light); max-width: 260px; line-height: 1.6;
}
.footer-cols { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-col h5 {
  font-family: var(--ff-body); font-size: 9px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.footer-col a, .footer-col span {
  display: block; font-family: var(--ff-body); font-size: 12px;
  font-weight: 300; color: var(--slate-light); margin-bottom: 6px; text-decoration: none;
}
.footer-bottom {
  border-top: 1px solid rgba(99,110,114,0.15); padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p {
  font-family: var(--ff-body); font-size: 10px; font-weight: 300; color: var(--slate-light);
}

/* --- Two-Column Grid Utility --- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* --- Selection --- */
::selection { background: rgba(201,168,76,0.3); color: var(--white); }

/* --- Responsive (max-width: 1080px) --- */
@media (max-width: 1080px) {
  .nav-desktop { display: none !important; }
  .nav-mobile-btn { display: block !important; }
  .two-col, .story-content, .approach-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .traits-grid { grid-template-columns: 1fr !important; }

  /* Journey: hide tabs, show all phases stacked with headers */
  .story-tabs { display: none !important; }
  .story-panel { display: grid !important; grid-template-columns: 1fr !important; gap: 32px !important; margin-bottom: 48px; }
  .story-panel:last-child { margin-bottom: 0; }
  .story-phase-header {
    display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px;
    padding-bottom: 12px; border-bottom: 1px solid rgba(201,168,76,0.15);
    grid-column: 1 / -1;
  }
  .story-phase-header .phase-num {
    font-family: var(--ff-heading); font-size: 14px; color: var(--gold); opacity: 0.5;
  }
  .story-phase-header .phase-title {
    font-family: var(--ff-body); font-size: 11px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
  }

  /* Services: hide tabs, show all panels stacked with headers */
  .svc-tabs { display: none !important; }
  .svc-panel {
    display: block !important; margin-bottom: 56px;
    padding-bottom: 56px; border-bottom: 1px solid rgba(201,168,76,0.12);
  }
  .svc-panel:last-of-type { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
  .svc-phase-header {
    display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px;
    padding-bottom: 12px; border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .svc-phase-header .phase-title {
    font-family: var(--ff-body); font-size: 12px; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
  }
  .svc-grid { grid-template-columns: 1fr !important; }

  /* Fee box: hide toggle, show all details on mobile */
  .fee-toggle { display: none !important; }
  .fee-all-details { display: block !important; }

  .footer-grid { flex-direction: column !important; }
  .footer-cols { flex-direction: column !important; gap: 24px !important; }
  .contact-cards { grid-template-columns: 1fr !important; }
  .hero-corner-tl, .hero-corner-br { display: none !important; }
}
@media (max-width: 600px) {
  .nav-actions .nav-cta,
  .nav-actions .nav-login { display: none !important; }
}
@media (min-width: 1081px) {
  .nav-mobile-btn { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .animate-section .section-inner { opacity: 1; transform: none; }
  #home .hero-content h1,
  #home .hero-divider,
  #home .hero-content p,
  #home .hero-buttons,
  #home .hero-ribbon,
  #home .hero-corner-tl,
  #home .hero-corner-br { opacity: 1; transform: none; }
}
