:root {
  --navy:       #0b1f3a;
  --navy-mid:   #122848;
  --navy-light: #1a3560;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --silver:     #a8b8cc;
  --white:      #f5f7fa;
  --text:       #cbd8e8;
  --text-dim:   #7a90aa;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Barlow", sans-serif; background: var(--navy); color: var(--text); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(11,31,58,0.98), transparent);
  transition: background 0.4s;
}
nav.scrolled {
  background: rgba(11,31,58,0.97);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  backdrop-filter: blur(12px);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 38px; }
.nav-logo-text {
  font-family: "Barlow Condensed", sans-serif; font-size: 1.05rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white);
}
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: "Barlow Condensed", sans-serif; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--silver); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 40px 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26,53,96,0.7) 0%, transparent 70%),
    linear-gradient(170deg, #0b1f3a 0%, #071426 60%, #04111f 100%);
  z-index: -1;
}
.hero-mountain { position: absolute; bottom: 0; left: 0; right: 0; z-index: -1; opacity: 0.1; }
.hero-eyebrow {
  font-family: "Barlow Condensed", sans-serif; font-size: 0.78rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px; opacity: 0; animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-logo-img {
  width: 340px; margin-bottom: 36px; opacity: 0;
  animation: fadeUp 0.9s 0.3s ease forwards;
  filter: drop-shadow(0 6px 40px rgba(30,80,160,0.45)) drop-shadow(0 2px 12px rgba(201,168,76,0.15));
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 700;
  line-height: 1.0; color: var(--white);
  opacity: 0; animation: fadeUp 0.9s 0.4s ease forwards;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-tagline {
  font-family: "Barlow", sans-serif; font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300; color: var(--silver); letter-spacing: 0.04em;
  margin-top: 20px; max-width: 580px; line-height: 1.7;
  opacity: 0; animation: fadeUp 0.9s 0.55s ease forwards;
}
.hero-cta {
  display: flex; gap: 16px; margin-top: 48px;
  opacity: 0; animation: fadeUp 0.9s 0.7s ease forwards;
}
.btn-primary {
  font-family: "Barlow Condensed", sans-serif; font-size: 0.85rem;
  letter-spacing: 0.18em; text-transform: uppercase; padding: 16px 40px;
  background: var(--gold); color: var(--navy); font-weight: 700;
  border: none; cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.35); }
.btn-outline {
  font-family: "Barlow Condensed", sans-serif; font-size: 0.85rem;
  letter-spacing: 0.18em; text-transform: uppercase; padding: 15px 36px;
  background: transparent; color: var(--silver); font-weight: 600;
  border: 1px solid rgba(168,184,204,0.35); cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, color 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1s 1.4s ease forwards;
}
.scroll-hint span {
  font-family: "Barlow Condensed", sans-serif; font-size: 0.68rem;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-dim);
}
.scroll-line { width: 1px; height: 42px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s infinite; }

/* STATS STRIP */
.stats-strip {
  background: linear-gradient(90deg, var(--navy-mid), var(--navy-light), var(--navy-mid));
  border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 36px 60px; display: grid; grid-template-columns: repeat(3, 1fr); text-align: center;
}
.stat-item { padding: 0 30px; position: relative; }
.stat-item:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 10%; bottom: 10%;
  width: 1px; background: rgba(201,168,76,0.25);
}
.stat-number { font-family: "Cormorant Garamond", serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-family: "Barlow Condensed", sans-serif; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); margin-top: 6px; }

/* SECTION BASE */
section { position: relative; z-index: 1; }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 100px 60px; }
.section-label { font-family: "Barlow Condensed", sans-serif; font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-title { font-family: "Cormorant Garamond", serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 28px; }
.section-title em { font-style: italic; color: var(--gold); }
.section-body { font-size: 1.05rem; font-weight: 300; line-height: 1.85; color: var(--text); max-width: 680px; }
.gold-rule { width: 60px; height: 2px; background: var(--gold); margin-bottom: 32px; }

/* SERVICES */
#services { background: linear-gradient(180deg, var(--navy) 0%, #071830 100%); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 60px; }
.service-card {
  background: rgba(18,40,72,0.5); border: 1px solid rgba(201,168,76,0.1);
  padding: 44px 40px; position: relative; overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: var(--gold); transition: height 0.4s ease;
}
.service-card:hover { background: rgba(26,53,96,0.55); border-color: rgba(201,168,76,0.3); }
.service-card:hover::before { height: 100%; }
.service-num { font-family: "Cormorant Garamond", serif; font-size: 3.5rem; font-weight: 700; color: rgba(201,168,76,0.12); line-height: 1; margin-bottom: 16px; transition: color 0.3s; }
.service-card:hover .service-num { color: rgba(201,168,76,0.22); }
.service-icon { font-size: 1.6rem; margin-bottom: 16px; }
.service-title { font-family: "Barlow Condensed", sans-serif; font-size: 1.15rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.service-desc { font-size: 0.95rem; font-weight: 300; line-height: 1.75; color: var(--text-dim); }

/* WHY US */
#why { background: var(--navy-mid); border-top: 1px solid rgba(201,168,76,0.12); border-bottom: 1px solid rgba(201,168,76,0.12); }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 20px; }
.why-points { margin-top: 40px; }
.why-point { display: flex; gap: 20px; margin-bottom: 36px; }
.why-point-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.why-point-text h4 { font-family: "Barlow Condensed", sans-serif; font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.why-point-text p { font-size: 0.93rem; font-weight: 300; line-height: 1.7; color: var(--text-dim); }
.why-right { position: relative; padding: 50px 40px; background: rgba(11,31,58,0.6); border: 1px solid rgba(201,168,76,0.18); }
.why-right::before { content: ""; position: absolute; top: -1px; left: 30px; right: 30px; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.callout-text { font-family: "Cormorant Garamond", serif; font-size: 1.8rem; font-weight: 600; font-style: italic; line-height: 1.45; color: var(--white); margin-bottom: 28px; }
.callout-text strong { color: var(--gold); font-style: normal; }
.callout-body { font-size: 0.95rem; font-weight: 300; line-height: 1.8; color: var(--text-dim); margin-bottom: 20px; }

/* WHO WE SERVE */
#clients { background: var(--navy); }
.certifications { display: flex; gap: 24px; margin-top: 48px; flex-wrap: wrap; }
.cert-badge {
  display: flex; align-items: center; gap: 14px; padding: 20px 28px;
  border: 1px solid rgba(201,168,76,0.25); background: rgba(18,40,72,0.4);
  flex: 1; min-width: 220px; transition: border-color 0.3s, background 0.3s;
}
.cert-badge:hover { border-color: var(--gold); background: rgba(26,53,96,0.5); }
.cert-icon { font-size: 2rem; line-height: 1; }
.cert-name { font-family: "Barlow Condensed", sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.cert-desc { font-size: 0.8rem; color: var(--text-dim); margin-top: 3px; }

/* PROCESS */
#process { background: linear-gradient(180deg, #071830 0%, var(--navy-mid) 100%); border-top: 1px solid rgba(201,168,76,0.1); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 60px; position: relative; }
.process-steps::before {
  content: ""; position: absolute; top: 32px;
  left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 1px; background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.2), var(--gold)); opacity: 0.5;
}
.process-step { padding: 0 20px; text-align: center; position: relative; }
.step-circle {
  width: 64px; height: 64px; border: 2px solid var(--gold); background: var(--navy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-family: "Cormorant Garamond", serif; font-size: 1.5rem;
  font-weight: 700; color: var(--gold); position: relative; z-index: 1;
}
.step-title { font-family: "Barlow Condensed", sans-serif; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.step-body { font-size: 0.88rem; font-weight: 300; line-height: 1.65; color: var(--text-dim); }

/* CONTACT */
#contact { background: var(--navy); border-top: 1px solid rgba(201,168,76,0.15); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-info { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-icon {
  width: 46px; height: 46px; min-width: 46px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2); color: var(--gold);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.contact-link { font-size: 1.0rem; font-weight: 400; color: var(--text); text-decoration: none; transition: color 0.2s; }
.contact-link:hover { color: var(--gold); }
.contact-link-label { font-family: "Barlow Condensed", sans-serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 3px; }
.contact-right { background: rgba(18,40,72,0.4); border: 1px solid rgba(201,168,76,0.15); padding: 48px 44px; position: relative; }
.contact-right::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); }
.contact-right h3 { font-family: "Cormorant Garamond", serif; font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.contact-right p { font-size: 0.95rem; font-weight: 300; line-height: 1.75; color: var(--text-dim); margin-bottom: 28px; }
.contact-cta-btn {
  display: block; font-family: "Barlow Condensed", sans-serif; font-size: 0.85rem;
  letter-spacing: 0.18em; text-transform: uppercase; padding: 18px 44px;
  background: var(--gold); color: var(--navy); font-weight: 700; text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  text-align: center; margin-bottom: 14px;
}
.contact-cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.3); }
.contact-linkedin {
  display: block; text-align: center; font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-dim); text-decoration: none; padding: 14px;
  border: 1px solid rgba(168,184,204,0.2); transition: color 0.2s, border-color 0.2s;
}
.contact-linkedin:hover { color: var(--gold); border-color: rgba(201,168,76,0.4); }

/* FOOTER */
footer {
  background: #04111f; border-top: 1px solid rgba(201,168,76,0.1);
  padding: 36px 60px; display: flex; align-items: center; justify-content: space-between;
}
.footer-brand { font-family: "Barlow Condensed", sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); }
.footer-brand span { color: var(--gold); }
.footer-copy { font-size: 0.8rem; color: var(--text-dim); }
.footer-tagline { font-family: "Cormorant Garamond", serif; font-size: 0.95rem; font-style: italic; color: var(--text-dim); }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* KEYFRAMES */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .section-inner { padding: 70px 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .stats-strip { grid-template-columns: 1fr; gap: 24px; padding: 36px 28px; }
  .stat-item::after { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 28px; }
  .certifications { flex-direction: column; }
  .hero-logo-img { width: 240px; }
}

.hero-lockup {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 36px; opacity: 0; animation: fadeUp 0.9s 0.3s ease forwards;
}
.hero-mountain-img {
  width: 170px; height: 170px; object-fit: contain;
  filter: drop-shadow(0 8px 40px rgba(30,100,220,0.55)) drop-shadow(0 2px 16px rgba(201,168,76,0.2));
}
.hero-brand-text { margin-top: 16px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero-brand-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--white); line-height: 1;
}
.hero-brand-name span { color: var(--gold); }
.hero-brand-rule { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(168,184,204,0.5), transparent); }
.hero-brand-sub {
  font-family: "Barlow Condensed", sans-serif; font-size: clamp(0.6rem, 1.2vw, 0.78rem);
  letter-spacing: 0.45em; text-transform: uppercase; color: var(--text-dim);
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand img { height: 44px; filter: drop-shadow(0 2px 8px rgba(30,100,200,0.45)); }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-brand-name { font-family: "Barlow Condensed", sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); }
.nav-brand-name span { color: var(--gold); }
.nav-brand-tagline { font-family: "Cormorant Garamond", serif; font-size: 0.7rem; font-style: italic; color: var(--text-dim); }
.footer-left { display: flex; align-items: center; gap: 12px; }
.footer-left img { height: 42px; filter: drop-shadow(0 2px 8px rgba(30,100,200,0.4)); }
