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

:root {
  --navy: #0E1A2B;
  --navy-mid: #162236;
  --navy-light: #1E3050;
  --gold: #B59A5C;
  --gold-light: #D4B97A;
  --gold-dim: #8C7644;
  --white: #FFFFFF;
  --off-white: #F6F4EF;
  --cream: #EDE9DF;
  --charcoal: #2A2F36;
  --gray: #6B6B6B;
  --gray-light: #A8A8A8;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--navy); color: var(--off-white); overflow-x: hidden; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 40px; height: 100px; background: rgba(14,26,43,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(181,154,92,0.15); transition: all 0.3s ease; }
nav.scrolled { height: 80px; background: rgba(14,26,43,0.98); border-bottom-color: rgba(181,154,92,0.3); }
.nav-logo { display: flex; flex-direction: column; gap: 2px; text-decoration: none; }
.nav-logo-name { font-family: var(--serif); font-size: 20px; font-weight: 500; letter-spacing: 3px; color: var(--white); text-transform: uppercase; }
.nav-logo-sub { font-family: var(--sans); font-size: 8px; font-weight: 400; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a { font-family: var(--sans); font-size: 11px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-light); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--navy); background: var(--gold); padding: 10px 24px; text-decoration: none; transition: all 0.25s ease; white-space: nowrap; }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* SECTION COMMON */
.section-label { font-family: var(--sans); font-size: 9px; font-weight: 400; letter-spacing: 5px; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 20px; display: flex; align-items: center; gap: 16px; }
.section-label::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold-dim); }
.section-label.center-label { justify-content: center; }
.section-label.center-label::before { display: none; }
.section-headline { font-family: var(--serif); font-size: clamp(32px,4vw,52px); font-weight: 400; line-height: 1.15; margin-bottom: 20px; }
.section-headline em { font-style: italic; color: var(--gold-dim); }
.section-body { font-family: var(--sans); font-size: 15px; font-weight: 300; line-height: 1.8; max-width: 600px; margin-bottom: 64px; }

/* BUTTONS */
.btn-primary { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--navy); background: var(--gold); padding: 16px 40px; text-decoration: none; transition: all 0.3s ease; display: inline-block; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(181,154,92,0.3); }
.btn-ghost { font-family: var(--sans); font-size: 11px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; color: var(--off-white); text-decoration: none; border-bottom: 1px solid rgba(246,244,239,0.3); padding-bottom: 2px; transition: all 0.2s; }
.btn-ghost:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* HERO */
#hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; padding: 160px 60px 100px; }
.hero-grid { position: absolute; inset: 0; pointer-events: none; opacity: 0.04; }
.hero-grid::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(to right, var(--gold) 1px, transparent 1px), linear-gradient(to bottom, var(--gold) 1px, transparent 1px); background-size: 80px 80px; }
.hero-bridge { position: absolute; right: -40px; bottom: 60px; width: 55%; height: 60%; opacity: 0.22; pointer-events: none; }
.hero-gold-line { position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%); }
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-label { font-family: var(--sans); font-size: 10px; font-weight: 400; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; display: flex; align-items: center; gap: 16px; }
.hero-label::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-headline { font-family: var(--serif); font-size: clamp(48px,7vw,84px); font-weight: 300; line-height: 1.05; color: var(--white); margin-bottom: 12px; }
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-sub { font-family: var(--serif); font-size: clamp(16px,2.2vw,24px); font-weight: 300; font-style: italic; color: var(--gold-light); margin-bottom: 28px; }
.hero-body { font-family: var(--sans); font-size: 15px; font-weight: 300; line-height: 1.8; color: rgba(246,244,239,0.65); max-width: 560px; margin-bottom: 52px; }
.hero-actions { display: flex; align-items: center; gap: 32px; }
.hero-trust { position: absolute; bottom: 40px; left: 60px; right: 60px; display: flex; justify-content: space-between; align-items: center; }
.hero-trust-line { font-family: var(--sans); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(181,154,92,0.6); }
.hero-trust-divider { flex: 1; height: 1px; margin: 0 24px; background: linear-gradient(to right, transparent, rgba(181,154,92,0.3), transparent); }

/* PAGE HERO (inner pages) */
.page-hero { padding: 180px 60px 100px; background: var(--navy); border-bottom: 1px solid rgba(181,154,92,0.12); }
.page-hero .section-label { color: rgba(181,154,92,0.7); }
.page-hero .section-label::before { background: rgba(181,154,92,0.5); }
.page-hero .section-headline { color: var(--white); }
.page-hero .section-body { color: rgba(246,244,239,0.65); margin-bottom: 0; }

/* VALUE PILLARS */
#value, .value-section { background: var(--off-white); padding: 120px 60px; }
.value-section .section-headline, #value .section-headline { color: var(--navy); }
.value-section .section-body, #value .section-body { color: var(--charcoal); }
.pillars-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: var(--cream); }
.pillar { background: var(--white); padding: 48px 32px; position: relative; overflow: hidden; transition: all 0.3s ease; }
.pillar::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.pillar:hover::after { transform: scaleX(1); }
.pillar:hover { background: var(--off-white); }
.pillar-number { font-family: var(--serif); font-size: 56px; font-weight: 300; color: rgba(14,26,43,0.06); line-height: 1; margin-bottom: 20px; display: block; }
.pillar-title { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.pillar-body { font-family: var(--sans); font-size: 13px; font-weight: 300; line-height: 1.75; color: var(--gray); }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--cream); }
.service-card { background: var(--white); padding: 52px 36px; position: relative; transition: all 0.35s ease; }
.service-card:hover { background: var(--navy); }
.service-card:hover .sc-number, .service-card:hover .sc-body, .service-card:hover .sc-items li { color: rgba(246,244,239,0.8); }
.service-card:hover .sc-title { color: var(--white) !important; }
.sc-number { font-family: var(--serif); font-size: 13px; font-weight: 400; letter-spacing: 3px; color: var(--gold-dim); margin-bottom: 18px; transition: color 0.3s; }
.sc-title { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--navy); line-height: 1.2; margin-bottom: 18px; transition: color 0.3s; }
.sc-divider { width: 36px; height: 1px; background: var(--gold); margin-bottom: 18px; }
.sc-body { font-family: var(--sans); font-size: 13px; font-weight: 300; line-height: 1.75; color: var(--gray); margin-bottom: 22px; transition: color 0.3s; }
.sc-items { list-style: none; }
.sc-items li { font-family: var(--sans); font-size: 12px; font-weight: 300; color: var(--gray); padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,0.05); transition: color 0.3s; display: flex; gap: 10px; align-items: baseline; }
.sc-items li::before { content: '--'; font-size: 10px; color: var(--gold); flex-shrink: 0; }

/* PROCESS */
.process-section { background: var(--navy); padding: 140px 60px; }
.process-header { text-align: center; max-width: 680px; margin: 0 auto 100px; }
.process-header .section-headline { color: var(--white); }
.process-header .section-body { color: rgba(246,244,239,0.55); margin: 0 auto; }
.process-track { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.process-track::before { content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(to right, var(--gold-dim), var(--gold), var(--gold-dim)); opacity: 0.35; }
.process-step { padding: 0 28px; text-align: center; position: relative; }
.process-step-num { width: 72px; height: 72px; border-radius: 50%; border: 1px solid rgba(181,154,92,0.35); display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--gold); background: var(--navy); position: relative; z-index: 1; transition: all 0.3s ease; }
.process-step:hover .process-step-num { border-color: var(--gold); background: rgba(181,154,92,0.08); }
.process-step-phase { font-family: var(--sans); font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 10px; }
.process-step-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--white); margin-bottom: 14px; line-height: 1.2; }
.process-step-body { font-family: var(--sans); font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(246,244,239,0.45); }
.process-step-time { display: inline-block; margin-top: 14px; font-family: var(--sans); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(181,154,92,0.45); padding: 4px 12px; border: 1px solid rgba(181,154,92,0.2); }

/* ABOUT */
.about-section { background: var(--off-white); padding: 140px 60px; }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.about-section .section-headline { color: var(--navy); }
.about-section .section-body { color: var(--charcoal); }
.exp-bar { margin: 40px 0; display: flex; align-items: flex-end; gap: 0; }
.exp-number { font-family: var(--serif); font-size: 96px; font-weight: 300; line-height: 1; color: var(--navy); }
.exp-label { font-family: var(--sans); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 14px; margin-left: 14px; max-width: 120px; line-height: 1.5; }
.principles { display: flex; flex-direction: column; }
.principle { padding: 28px 0; border-bottom: 1px solid var(--cream); display: grid; grid-template-columns: 100px 1fr; gap: 20px; align-items: start; }
.principle:first-child { border-top: 1px solid var(--cream); }
.p-label { font-family: var(--sans); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dim); padding-top: 4px; }
.p-body { font-family: var(--sans); font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--charcoal); }
.p-body strong { font-weight: 500; color: var(--navy); display: block; margin-bottom: 4px; font-family: var(--serif); font-size: 17px; }

/* PROBLEM */
.problem-section { background: var(--navy-mid); padding: 140px 60px; position: relative; overflow: hidden; }
.problem-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; position: relative; z-index: 1; }
.problem-left .section-headline { color: var(--white); }
.problem-left .section-body { color: rgba(246,244,239,0.65); }
.problem-left .section-label { color: rgba(181,154,92,0.7); }
.problem-left .section-label::before { background: rgba(181,154,92,0.5); }
.problem-stat-block { border-left: 1px solid rgba(181,154,92,0.3); padding-left: 32px; margin-top: 40px; }
.problem-stat { font-family: var(--serif); font-size: 52px; font-weight: 300; color: var(--gold); display: block; }
.problem-stat-label { font-family: var(--sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(246,244,239,0.45); margin-top: 4px; display: block; }
.failure-list { list-style: none; }
.failure-item { padding: 28px 0; border-bottom: 1px solid rgba(181,154,92,0.1); display: grid; grid-template-columns: 8px 1fr; gap: 20px; align-items: start; }
.failure-item:last-child { border-bottom: none; }
.failure-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 9px; }
.failure-title { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.failure-desc { font-family: var(--sans); font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(246,244,239,0.5); }

/* CTA */
.cta-section { background: var(--navy-mid); padding: 140px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(181,154,92,0.05) 0%, transparent 70%); }
.cta-headline { font-family: var(--serif); font-size: clamp(36px,5vw,62px); font-weight: 300; font-style: italic; color: var(--white); margin-bottom: 22px; line-height: 1.2; position: relative; z-index: 1; }
.cta-headline strong { font-style: normal; font-weight: 500; color: var(--gold); }
.cta-body { font-family: var(--sans); font-size: 15px; font-weight: 300; line-height: 1.8; color: rgba(246,244,239,0.6); max-width: 540px; margin: 0 auto 52px; position: relative; z-index: 1; }
.cta-actions { display: flex; justify-content: center; align-items: center; gap: 40px; position: relative; z-index: 1; }
.cta-note { margin-top: 28px; font-family: var(--sans); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(181,154,92,0.35); position: relative; z-index: 1; }

/* CONTACT */
.contact-section { background: var(--navy); padding: 140px 60px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.contact-section .section-headline { color: var(--white); }
.contact-section .section-body { color: rgba(246,244,239,0.55); }
.contact-details { margin-top: 44px; }
.contact-detail { padding: 18px 0; border-bottom: 1px solid rgba(181,154,92,0.1); display: grid; grid-template-columns: 90px 1fr; gap: 14px; }
.cd-label { font-family: var(--sans); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dim); padding-top: 2px; }
.cd-value { font-family: var(--sans); font-size: 14px; font-weight: 300; color: var(--off-white); line-height: 1.6; }
.cd-value a { color: var(--gold); text-decoration: none; }
.contact-form { background: var(--navy-mid); padding: 52px; border: 1px solid rgba(181,154,92,0.1); }
.form-title { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--white); margin-bottom: 6px; }
.form-subtitle { font-family: var(--sans); font-size: 11px; font-weight: 300; letter-spacing: 1px; color: rgba(246,244,239,0.35); margin-bottom: 36px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-family: var(--sans); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 10px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(181,154,92,0.2); color: var(--off-white); font-family: var(--sans); font-size: 14px; font-weight: 300; padding: 13px 16px; outline: none; transition: border-color 0.2s; appearance: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(246,244,239,0.18); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(181,154,92,0.55); background: rgba(255,255,255,0.05); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.btn-submit { width: 100%; margin-top: 6px; background: var(--gold); color: var(--navy); font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; padding: 17px; border: none; cursor: pointer; transition: all 0.3s ease; }
.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.form-disclaimer { margin-top: 14px; font-family: var(--sans); font-size: 10px; font-weight: 300; line-height: 1.6; color: rgba(246,244,239,0.25); text-align: center; }

/* FOOTER */
footer { background: var(--navy-mid); border-top: 1px solid rgba(181,154,92,0.12); padding: 60px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-desc { font-family: var(--sans); font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(246,244,239,0.35); margin-top: 16px; max-width: 260px; }
.footer-col h4 { font-family: var(--sans); font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-family: var(--sans); font-size: 13px; font-weight: 300; color: rgba(246,244,239,0.4); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { padding-top: 36px; border-top: 1px solid rgba(181,154,92,0.08); display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-family: var(--sans); font-size: 11px; font-weight: 300; color: rgba(246,244,239,0.25); }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a { font-family: var(--sans); font-size: 10px; letter-spacing: 1px; color: rgba(246,244,239,0.2); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold-dim); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-up { animation: fadeUp 0.8s ease both; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 20px; height: 80px; }
  .nav-links { display: none; }
  #hero, .page-hero { padding: 140px 24px 80px; }
  .hero-trust { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .process-track::before { display: none; }
  .about-layout, .problem-layout, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .value-section, #value, .about-section, .services-section, .process-section, .contact-section, .cta-section, .problem-section { padding: 80px 24px; }
  footer { padding: 40px 24px; }
}

/* HERO BACKGROUND IMAGES */
.page-hero-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14,26,43,0.92) 0%,
    rgba(14,26,43,0.75) 50%,
    rgba(14,26,43,0.60) 100%
  );
  z-index: 1;
}

.page-hero-bg > * {
  position: relative;
  z-index: 2;
}

/* HOME HERO BG */
#hero.has-bg {
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

#hero.has-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14,26,43,0.95) 0%,
    rgba(14,26,43,0.80) 55%,
    rgba(14,26,43,0.30) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Keep existing hero children above overlay */
#hero.has-bg .hero-content,
#hero.has-bg .hero-trust,
#hero.has-bg .hero-grid,
#hero.has-bg .hero-gold-line {
  z-index: 2;
  position: relative;
}
