@font-face{ font-family:'Spectral'; src:url('../fonts/Spectral-Regular.ttf'); font-weight:400; font-style:normal; }
@font-face{ font-family:'Spectral'; src:url('../fonts/Spectral-SemiBold.ttf'); font-weight:600; font-style:normal; }
@font-face{ font-family:'Spectral'; src:url('../fonts/Spectral-Italic.ttf'); font-weight:400; font-style:italic; }
@font-face{ font-family:'Barlow'; src:url('../fonts/Barlow-Regular.ttf'); font-weight:400; }
@font-face{ font-family:'Barlow'; src:url('../fonts/Barlow-Medium.ttf'); font-weight:500; }
@font-face{ font-family:'Barlow'; src:url('../fonts/Barlow-SemiBold.ttf'); font-weight:600; }
@font-face{ font-family:'Barlow Semi Condensed'; src:url('../fonts/BarlowSemiCondensed-Medium.ttf'); font-weight:500; }
@font-face{ font-family:'Barlow Semi Condensed'; src:url('../fonts/BarlowSemiCondensed-SemiBold.ttf'); font-weight:600; }
@font-face{ font-family:'Barlow Semi Condensed'; src:url('../fonts/BarlowSemiCondensed-Bold.ttf'); font-weight:700; }
@font-face{ font-family:'Archivo Black'; src:url('../fonts/ArchivoBlack-Regular.ttf'); font-weight:400; }
@font-face{ font-family:'Bebas Neue'; src:url('../fonts/BebasNeue-Regular.ttf'); font-weight:400; }

:root{
  --navy:#0B1D33;
  --navy-deep:#071426;
  --gold:#C69A45;
  --gold-light:#E4C179;
  --gold-tint:#F3E7CE;
  --cream:#F7F4EE;
  --ink:#1B1C1E;
  --slate:#5B6472;
  --white:#FFFFFF;
  --serif:'Spectral', serif;
  --sans:'Barlow', sans-serif;
  --cond:'Barlow Semi Condensed', sans-serif;
  --display:'Bebas Neue', sans-serif;
  --black:'Archivo Black', sans-serif;
}

*,*:before,*:after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; font-family:var(--sans); color:var(--ink); background:var(--cream);
  -webkit-font-smoothing:antialiased; line-height:1.5;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
.wrap{ max-width:1120px; margin:0 auto; padding:0 32px; }
section{ padding:76px 0; }
.eyebrow{
  font-family:var(--cond); font-weight:700; font-size:13px; letter-spacing:3px;
  text-transform:uppercase; color:var(--gold); margin-bottom:10px;
}
.eyebrow-light{ color:var(--gold-light); }
.section-title{
  font-family:var(--serif); font-weight:600; font-size:32px; color:var(--navy);
  margin:0 0 34px 0; max-width:620px;
}
.track .section-title, .engagement .section-title{ color:var(--white); }

.btn{
  display:inline-block; padding:14px 28px; font-family:var(--cond); font-weight:700;
  font-size:14px; letter-spacing:1px; text-transform:uppercase; border-radius:3px;
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn-gold{ background:var(--gold); color:var(--navy); }
.btn-gold:hover{ box-shadow:0 8px 20px rgba(198,154,69,0.35); }
.btn-ghost{ background:transparent; color:var(--white); border:1.5px solid rgba(255,255,255,0.55); }
.btn-ghost:hover{ border-color:var(--white); }
.btn-navy{ background:var(--navy); color:var(--white); }
.btn-navy:hover{ box-shadow:0 8px 20px rgba(11,29,51,0.3); }

/* ---------- HEADER ---------- */
.site-header{
  position:sticky; top:0; z-index:100; background:rgba(11,29,51,0.97);
  backdrop-filter:blur(6px); border-bottom:1px solid rgba(198,154,69,0.25);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; height:74px; }
.brand{ display:flex; align-items:center; gap:10px; }
.brand-mark{ flex-shrink:0; }
.brand-word{
  font-family:var(--display); font-size:19px; letter-spacing:0.5px; color:var(--white); line-height:1;
}
.brand-word small{
  display:block; font-family:var(--cond); font-weight:600; font-size:9.5px; letter-spacing:2.5px;
  color:var(--gold); text-transform:uppercase; margin-top:3px;
}
.main-nav{ display:flex; align-items:center; gap:30px; }
.main-nav a{
  font-family:var(--cond); font-weight:600; font-size:13.5px; letter-spacing:0.5px;
  color:rgba(255,255,255,0.85); text-transform:uppercase; transition:color .15s ease;
}
.main-nav a:hover{ color:var(--gold-light); }
.main-nav a.nav-cta{
  background:var(--gold); color:var(--navy); padding:9px 18px; border-radius:3px;
}
.main-nav a.nav-cta:hover{ color:var(--navy); }
.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; }
.nav-toggle span{ width:24px; height:2px; background:var(--white); display:block; }

/* ---------- HERO ---------- */
.hero{ background:var(--navy); padding:70px 0 0 0; overflow:hidden; }
.hero-inner{ display:flex; align-items:flex-end; gap:40px; }
.hero-text{ flex:1 1 560px; padding-bottom:56px; }
.hero-tag{
  font-family:var(--cond); font-weight:600; font-size:13px; letter-spacing:1.2px;
  color:var(--gold-light); text-transform:uppercase; margin-bottom:16px; max-width:440px; line-height:1.4;
}
.hook{ font-family:var(--cond); font-weight:600; font-size:16px; line-height:1.4; margin-bottom:14px; }
.hook .l1{ color:var(--white); display:block; }
.hook .l2{ color:var(--gold-light); display:block; }
.bigline{ font-family:var(--display); line-height:0.95; margin:0 0 16px 0; font-weight:normal; }
.bigline .r1{ display:block; font-size:58px; color:var(--white); }
.bigline .r2{ display:block; font-size:58px; color:var(--gold); }
.subtrip{
  font-family:var(--cond); font-weight:600; font-size:13.5px; letter-spacing:1.6px;
  color:var(--white); text-transform:uppercase; margin-bottom:16px;
}
.hero-para{ font-size:16px; line-height:1.6; color:rgba(255,255,255,0.82); max-width:480px; margin:0 0 30px 0; }
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; }
.hero-photo{ flex:0 0 320px; align-self:flex-end; }
.hero-photo img{ width:100%; height:auto; border-top-left-radius:6px; border-top-right-radius:6px; }

/* ---------- FIT ---------- */
.fit{ background:var(--gold-tint); border-bottom:3px solid var(--gold); }
.fit-title{
  font-family:var(--display); font-size:38px; letter-spacing:0.3px; color:var(--navy); margin:0 0 28px 0;
}
.fit-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px 40px; }
.fit-item{ display:flex; align-items:flex-start; gap:12px; font-size:15.5px; line-height:1.45; }
.fit-badge{
  flex-shrink:0; width:24px; height:24px; border-radius:50%; background:var(--navy); color:var(--gold-light);
  display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; margin-top:1px;
}
.fit-note{
  margin-top:26px; font-family:var(--cond); font-weight:600; font-size:12.5px; letter-spacing:0.5px;
  color:var(--slate); text-transform:uppercase;
}

/* ---------- SERVICES ---------- */
.svc-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:34px 30px; }
.svc-card{ }
.svc-icon{ width:30px; height:30px; stroke:var(--gold); stroke-width:1.6; fill:none; stroke-linecap:round; stroke-linejoin:round; margin-bottom:14px; }
.svc-icon polygon{ fill:none; stroke:var(--gold); }
.svc-title{ font-family:var(--sans); font-weight:600; font-size:17px; color:var(--navy); margin-bottom:8px; }
.svc-desc{ font-size:14.5px; line-height:1.5; color:var(--slate); }

/* ---------- TRACK RECORD ---------- */
.track{ background:var(--navy); }
.stat-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }
.stat-num{ font-family:var(--black); font-size:42px; color:var(--gold); line-height:1; margin-bottom:10px; }
.stat-label{
  font-family:var(--cond); font-weight:500; font-size:12.5px; letter-spacing:0.4px;
  color:rgba(255,255,255,0.82); text-transform:uppercase; line-height:1.35;
}

/* ---------- PROCESS ---------- */
.process-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
.process-card{ border-top:3px solid var(--gold); padding-top:18px; }
.process-num{ font-family:var(--black); font-size:22px; color:var(--gold); margin-bottom:10px; }
.process-title{ font-family:var(--sans); font-weight:600; font-size:16.5px; color:var(--navy); margin-bottom:8px; }
.process-desc{ font-size:14px; line-height:1.5; color:var(--slate); }

/* ---------- ENGAGEMENT ---------- */
.engagement{ background:var(--navy-deep); }
.engagement-inner{ display:flex; align-items:center; gap:50px; flex-wrap:wrap; }
.eng-left{ flex:0 0 auto; }
.eng-price{ font-family:var(--display); font-size:46px; color:var(--gold); line-height:1; }
.eng-price span{ font-family:var(--sans); font-size:18px; font-weight:600; color:var(--white); }
.eng-sub{ font-family:var(--cond); font-weight:600; font-size:12.5px; letter-spacing:1.4px; color:rgba(255,255,255,0.75); text-transform:uppercase; margin-top:6px; }
.eng-right{ flex:1 1 380px; }
.eng-right p{ font-size:15.5px; line-height:1.55; color:rgba(255,255,255,0.85); margin:0 0 22px 0; }

/* ---------- ABOUT ---------- */
.about-inner{ display:flex; gap:56px; align-items:flex-start; }
.about-photo{ flex:0 0 260px; }
.about-photo img{ border-radius:6px; }
.about-text{ flex:1 1 auto; }
.about-role{ font-family:var(--cond); font-weight:600; font-size:12.5px; letter-spacing:1.8px; color:var(--gold); text-transform:uppercase; margin:-22px 0 18px 0; }
.about-text p{ font-size:15.5px; line-height:1.65; color:var(--ink); margin:0 0 16px 0; }

/* ---------- FAQ ---------- */
.faq-list{ max-width:800px; }
.faq-item{ border-bottom:1px solid rgba(11,29,51,0.12); padding:22px 0; }
.faq-q{ font-family:var(--sans); font-weight:600; font-size:16.5px; color:var(--navy); margin-bottom:8px; }
.faq-a{ font-size:14.5px; line-height:1.6; color:var(--slate); }

/* ---------- CONTACT / CTA ---------- */
.cta-band{ background:var(--navy); }
.contact-inner{ display:flex; gap:60px; flex-wrap:wrap; }
.contact-left{ flex:1 1 400px; }
.contact-title{ font-family:var(--serif); font-weight:600; font-size:34px; color:var(--white); margin:0 0 14px 0; }
.contact-sub{ font-size:15.5px; line-height:1.55; color:rgba(255,255,255,0.78); max-width:440px; margin:0 0 26px 0; }
.contact-right{ flex:0 0 auto; display:flex; flex-direction:column; justify-content:center; gap:16px; padding-top:8px; }
.contact-line{ font-size:15px; color:rgba(255,255,255,0.9); }
.contact-line span{
  display:block; font-family:var(--cond); font-weight:600; font-size:11px; letter-spacing:2px;
  color:var(--gold-light); text-transform:uppercase; margin-bottom:3px;
}
.contact-line a:hover{ color:var(--gold-light); }

/* ---------- FOOTER ---------- */
.site-footer{ background:var(--navy-deep); padding:36px 0; }
.footer-inner{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.brand-footer .brand-word{ font-size:16px; }
.footer-tag{
  font-family:var(--cond); font-weight:600; font-size:11px; letter-spacing:1.8px;
  color:var(--gold-light); text-transform:uppercase;
}
.footer-copy{ font-size:12px; color:rgba(255,255,255,0.5); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px){
  .svc-grid{ grid-template-columns:repeat(2,1fr); }
  .process-grid{ grid-template-columns:repeat(2,1fr); }
  .stat-row{ grid-template-columns:repeat(2,1fr); row-gap:28px; }
  .about-inner{ flex-direction:column; }
  .about-photo{ flex:0 0 auto; width:200px; }
  .about-role{ margin-top:0; }
  .bigline .r1, .bigline .r2{ font-size:44px; }
}

@media (max-width: 700px){
  section{ padding:56px 0; }
  .wrap{ padding:0 22px; }
  .main-nav{
    position:absolute; top:74px; left:0; right:0; background:var(--navy-deep);
    flex-direction:column; align-items:flex-start; gap:0; padding:10px 22px 20px 22px;
    display:none; border-bottom:1px solid rgba(198,154,69,0.25);
  }
  .main-nav.open{ display:flex; }
  .main-nav a{ padding:12px 0; width:100%; }
  .main-nav a.nav-cta{ margin-top:10px; text-align:center; }
  .nav-toggle{ display:flex; }
  .hero-inner{ flex-direction:column; align-items:stretch; }
  .hero-photo{ flex:0 0 auto; max-width:260px; margin:0 auto; }
  .hero-text{ padding-bottom:36px; }
  .bigline .r1, .bigline .r2{ font-size:38px; }
  .fit-grid{ grid-template-columns:1fr; }
  .svc-grid{ grid-template-columns:1fr; }
  .process-grid{ grid-template-columns:1fr; }
  .stat-row{ grid-template-columns:1fr 1fr; }
  .engagement-inner{ flex-direction:column; align-items:flex-start; }
  .contact-inner{ flex-direction:column; gap:32px; }
  .section-title{ font-size:26px; }
  .fit-title{ font-size:30px; }
}
