﻿/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  --navy:       #0A1628;
  --navy-mid:   #12233D;
  --gold:       #BF9B30;
  --gold-warm:  #C9962A;
  --teal:       #005B6E;
  --white:      #FFFFFF;
  --offwhite:   #F7F5F1;
  --border:     #E5E1D8;
  --text:       #2C3141;
  --text-muted: #6B7280;

  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --shadow:     0 4px 24px rgba(0,0,0,0.09);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--text); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── UTILITY ─────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.section-label { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.gold-rule { display: block; width: 40px; height: 2px; background: var(--gold); margin: 14px 0; }
.gold-rule.center { margin: 14px auto; }

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 15px 34px; border: none; cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--gold-warm); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(191,155,48,0.28); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 34px; border: 1.5px solid var(--navy);
  cursor: pointer; transition: var(--transition);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline.light { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.35); }
.btn-outline.light:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.6); }

/* ─── ANIMATIONS ──────────────────────────────────────────────── */
/* Elements only animate when JS has confirmed it loaded (.js-ready on body) */
/* Without JS they are always visible — no hidden content ever */
.js-ready .reveal       { opacity: 0; transform: translateY(24px); }
.js-ready .reveal-left  { opacity: 0; transform: translateX(-32px); }
.js-ready .reveal-right { opacity: 0; transform: translateX(32px); }
.reveal,
.reveal-left,
.reveal-right { transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: none; }
.js-ready [data-delay="1"] { transition-delay: 0.10s !important; }
.js-ready [data-delay="2"] { transition-delay: 0.20s !important; }
.js-ready [data-delay="3"] { transition-delay: 0.30s !important; }
.js-ready [data-delay="4"] { transition-delay: 0.40s !important; }

/* ─── NAVIGATION ──────────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: background 0.3s, box-shadow 0.3s; }
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 40px; height: 68px; }

/* ─── LOGO ────────────────────────────────────────────────────── */
.dv-logo { display: flex; align-items: center; gap: 12px; }
.dv-mark  { display: block; flex-shrink: 0; }
.dv-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.25); flex-shrink: 0; transition: background 0.3s; }
.nav.scrolled .dv-divider { background: var(--border); }
.dv-wordmark { display: flex; flex-direction: column; gap: 1px; }
.dv-name {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--white); letter-spacing: 1.5px; line-height: 1.1; display: block;
  transition: color 0.3s;
}
.nav.scrolled .dv-name { color: var(--navy); }
.dv-sub {
  font-family: var(--font-display); font-size: 7px; font-weight: 700;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase; display: block;
}

/* ─── NAV LINKS ───────────────────────────────────────────────── */
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.72); transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav.scrolled .nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: rgba(255,255,255,0.1) !important; color: var(--white) !important;
  padding: 9px 22px; border: 1px solid rgba(255,255,255,0.22);
  transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; border-color: var(--gold) !important; }
.nav.scrolled .nav-cta { background: var(--navy) !important; color: var(--white) !important; border-color: var(--navy) !important; }
.nav.scrolled .nav-cta:hover { background: var(--gold) !important; border-color: var(--gold) !important; color: var(--navy) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--white); display: block; transition: 0.3s; }
.nav.scrolled .nav-hamburger span { background: var(--navy); }

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; background: var(--navy);
  position: relative; display: flex; align-items: center; overflow: hidden;
}

/* Photo slider */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.72) 50%, rgba(0,91,110,0.45) 100%);
}
.hero-slide.active { opacity: 1; }

/* Slide nav dots */
.hero-nav {
  position: absolute; bottom: 36px; right: 44px;
  display: flex; gap: 8px; z-index: 2;
}
.hero-dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.28);
  border: none; padding: 0; cursor: pointer;
  transition: background 0.3s, width 0.35s cubic-bezier(0.22,1,0.36,1);
}
.hero-dot.active { background: var(--gold); width: 52px; }
.hero-content { position: relative; z-index: 1; max-width: 680px; padding: 120px 0 80px; }
.hero-label {
  font-family: var(--font-display); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 32px; display: flex; align-items: center; gap: 14px;
}
.hero-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 900; color: var(--white); line-height: 1.04;
  letter-spacing: -1.5px; margin-bottom: 28px;
}
.hero h1 .gold { color: var(--gold); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.8; max-width: 500px; margin-bottom: 48px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span { font-family: var(--font-display); font-size: 9px; letter-spacing: 2px; color: rgba(255,255,255,0.28); text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(191,155,48,0.5), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ─── STATS BAR ───────────────────────────────────────────────── */
.stats { background: var(--offwhite); border-bottom: 1px solid var(--border); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 44px 36px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 42px; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 10px; }
.stat-label { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); display: block; margin-bottom: 3px; }
.stat-sub { font-size: 12px; color: var(--text-muted); }

/* ─── SERVICES ────────────────────────────────────────────────── */
.services { padding: 100px 0; background: var(--white); }
.services-header { margin-bottom: 56px; }
.services-header h2 {
  font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800; color: var(--navy); margin-top: 16px; line-height: 1.1;
}
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.pillar {
  background: var(--offwhite); padding: 52px 48px;
  position: relative; overflow: hidden;
}
.pillar::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--gold); }
.pillar-tag { font-family: var(--font-display); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: block; }
.pillar h3 { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.pillar-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.service-list { display: flex; flex-direction: column; gap: 13px; }
.service-item { font-size: 14px; color: var(--text); display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; }
.service-item::before { content: '\2014'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ─── WHO WE SERVE ────────────────────────────────────────────── */
.audiences { padding: 100px 0; background: var(--white); border-top: 1px solid var(--border); }
.audiences-header { text-align: center; margin-bottom: 56px; }
.audiences-header h2 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--navy); margin-top: 14px; line-height: 1.15; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.audience-card {
  padding: 40px 36px; border: 1px solid var(--border);
  transition: var(--transition);
}
.audience-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-4px); }
.audience-number { font-family: var(--font-display); font-size: 11px; font-weight: 700; color: rgba(191,155,48,0.35); letter-spacing: 2px; margin-bottom: 20px; display: block; }
.audience-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.audience-card p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* ─── ABOUT + PROCESS ─────────────────────────────────────────── */
.about { padding: 100px 0; background: var(--offwhite); border-top: 1px solid var(--border); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-story h2 { font-family: var(--font-display); font-size: clamp(26px, 3.2vw, 42px); font-weight: 800; color: var(--navy); margin-top: 16px; line-height: 1.15; margin-bottom: 24px; }
.about-story p { font-size: 15px; color: var(--text); line-height: 1.85; margin-bottom: 18px; }
.about-process h3 { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--navy); margin-bottom: 28px; }
.process-steps { display: flex; flex-direction: column; }
.process-step { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--border); }
.process-step:last-child { border-bottom: none; }
.step-num { font-family: var(--font-display); font-size: 30px; font-weight: 900; color: rgba(191,155,48,0.22); line-height: 1.1; padding-top: 2px; }
.step-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ─── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials { padding: 100px 0; background: var(--white); border-top: 1px solid var(--border); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header h2 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--navy); margin-top: 14px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { border: 1px solid var(--border); padding: 36px 32px; display: flex; flex-direction: column; transition: var(--transition); }
.testi-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-4px); }
.testi-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.testi-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; }
.testi-source { font-family: var(--font-display); font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); border: 1px solid var(--border); padding: 4px 10px; }
.testi-quote { font-size: 14px; line-height: 1.85; color: var(--text); flex: 1; margin-bottom: 26px; }
.testi-person { display: flex; align-items: center; gap: 13px; padding-top: 20px; border-top: 1px solid var(--border); }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testi-name { display: block; font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.testi-role { font-size: 12px; color: var(--text-muted); }
.testi-result { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); font-family: var(--font-display); font-size: 11px; font-weight: 700; color: #15803D; letter-spacing: 0.5px; }

/* ─── CTA BAND ────────────────────────────────────────────────── */
.cta { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(0,91,110,0.28) 0%, transparent 65%); }
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; }
.cta h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.cta p { font-size: 16px; color: rgba(255,255,255,0.5); max-width: 460px; line-height: 1.75; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

/* ─── CONTACT ─────────────────────────────────────────────────── */
.contact { padding: 100px 0; background: var(--offwhite); border-top: 1px solid var(--border); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--navy); margin-top: 16px; line-height: 1.15; margin-bottom: 20px; }
.contact-info p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-row { display: flex; flex-direction: column; gap: 3px; }
.contact-label { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.contact-val { font-size: 14px; color: var(--text); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body); font-size: 14px; color: var(--navy);
  background: var(--white); border: 1px solid var(--border);
  padding: 13px 16px; outline: none; transition: border-color 0.2s; width: 100%;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 130px; }

/* ─── FOOTER ──────────────────────────────────────────────────── */
.footer { background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,0.05); padding: 68px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 60px; margin-bottom: 52px; }
.footer-logo .dv-name { color: var(--white); }
.footer-logo .dv-divider { background: rgba(255,255,255,0.18); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.38); margin-top: 18px; line-height: 1.75; max-width: 240px; }
.footer-col h4 { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.42); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); }

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars        { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr; }
  .about-inner    { grid-template-columns: 1fr; gap: 56px; }
  .cta-inner      { grid-template-columns: 1fr; }
  .contact-inner  { grid-template-columns: 1fr; gap: 56px; }
  .footer-top     { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .stats-inner    { grid-template-columns: repeat(2, 1fr); }
  .audience-grid  { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr; }
  .nav-links      { display: none; }
  .nav-hamburger  { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--white); padding: 24px 32px;
    gap: 16px; border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }
  .nav-links.open a { color: var(--navy) !important; }
  .nav-links.open .nav-cta { background: var(--gold) !important; color: var(--navy) !important; border-color: var(--gold) !important; text-align: center; justify-content: center; }
  .hero-content   { padding: 100px 0 60px; }
  .pillar         { padding: 40px 32px; }
}