/* =====================================================
   VENTURE SOURCE â Global Stylesheet v2
   theventuresource.com
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Montserrat:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600&display=swap');

/* âââ TOKENS âââââââââââââââââââââââââââââââââââââââ */
:root {
  --ink:       #0d0d0d;
  --ink-2:     #141414;
  --ink-3:     #1c1c1c;
  --gold:      #c9a84c;
  --gold-light:#e0c06e;
  --cream:     #f5f0e8;
  --cream-2:   #ede8de;
  --white:     #ffffff;
  --muted:     rgba(255,255,255,0.50);
  --cobalt:    #1a5c8a;
  --teal:      #3a9688;
  --crimson:   #b83232;
  --marigold:  #e8a020;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', sans-serif;
  --font-body:  'Space Grotesk', sans-serif;

  --radius: 4px;
  --transition: 0.25s ease;
}

/* âââ RESET âââââââââââââââââââââââââââââââââââââââ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* âââ TYPOGRAPHY âââââââââââââââââââââââââââââââââââ */
h1, h2, h3, h4 { font-family: var(--font-sans); font-weight: 800; line-height: 1.05; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* âââ LAYOUT âââââââââââââââââââââââââââââââââââââââ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
section { padding: 96px 0; }

/* âââ NAVIGATION âââââââââââââââââââââââââââââââââââ */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.btn-nav {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink) !important;
  padding: 10px 20px;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition);
}
.btn-nav:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

/* âââ BUTTONS ââââââââââââââââââââââââââââââââââââââ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-dark {
  background: var(--ink);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-dark:hover {
  background: #1c1c1c;
  transform: translateY(-1px);
}

/* âââ DIVIDER ââââââââââââââââââââââââââââââââââââââ */
hr.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 0;
}

/* âââ CTA BAND (shared) âââââââââââââââââââââââââââ */
.cta-band {
  background: var(--gold);
  padding: 96px 0;
}
.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-band h2 {
  font-family: var(--font-sans);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.cta-band h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05em;
}
.cta-band .btn-dark {
  font-size: 11px;
  padding: 16px 32px;
  background: var(--ink);
  color: var(--white);
  border: none;
  flex-shrink: 0;
}
.cta-band .btn-dark:hover { background: #1c1c1c; }

/* âââ ANIMATED VS COMPASS LOGO âââââââââââââââââââââ */
@keyframes spin-cw  { from { transform: rotate(0deg);   } to { transform: rotate(360deg);  } }
@keyframes spin-ccw { from { transform: rotate(0deg);   } to { transform: rotate(-360deg); } }
@keyframes pulse-gold {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1;   }
}

.compass-ring-outer {
  transform-origin: center;
  animation: spin-cw 24s linear infinite;
}
.compass-ring-mid {
  transform-origin: center;
  animation: spin-ccw 18s linear infinite;
}
.compass-petals-main {
  transform-origin: center;
  animation: spin-cw 48s linear infinite;
}

/* Larger display compass (hero / brand page) */
.compass-hero-outer  { transform-origin: center; animation: spin-cw  30s linear infinite; }
.compass-hero-mid    { transform-origin: center; animation: spin-ccw 20s linear infinite; }
.compass-hero-petals { transform-origin: center; animation: spin-cw  60s linear infinite; }

/* âââ FOOTER âââââââââââââââââââââââââââââââââââââââ */
footer.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  max-width: 260px;
  margin-top: 14px;
}
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* âââ CARD HOVER ANIMATIONS âââââââââââââââââââââââ */
.service-card,
.stat-card,
.process-step,
.why-card,
.mission-card,
.voice-card,
.swatch-card,
.do-card,
.dont-card,
.contact-form-wrap {
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover,
.stat-card:hover,
.process-step:hover,
.why-card:hover,
.mission-card:hover,
.voice-card:hover,
.swatch-card:hover,
.do-card:hover,
.dont-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.22);
}
.contact-form-wrap:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.service-row {
  transition: background var(--transition);
}
.service-row:hover {
  background: rgba(255,255,255,0.02);
}
.logo-fact-row {
  transition: background var(--transition);
}
.logo-fact-row:hover {
  background: rgba(201,168,76,0.06);
}

/* âââ ANIMATIONS âââââââââââââââââââââââââââââââââââ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) both; }
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.48s; }

/* âââ HAMBURGER BUTTON âââââââââââââââââââââââââââââ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
}
.nav-hamburger:hover { background: rgba(201,168,76,0.15); }
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* âââ TESTIMONIALS SLIDER âââââââââââââââââââââââââ */
.testi-slider-section {
  background: var(--ink-2);
  padding: 96px 0;
  overflow: hidden;
}
.testi-slider-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.testi-slide {
  display: none;
  animation: tsFadeIn 0.6s ease both;
}
.testi-slide.active { display: block; }
@keyframes tsFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.testi-quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 36px;
}
.testi-quote::before { content: '\201C'; color: var(--gold); margin-right: 4px; }
.testi-quote::after  { content: '\201D'; color: var(--gold); margin-left: 4px; }
.testi-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.testi-author strong {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.testi-author span {
  font-size: 12px;
  color: var(--muted);
}
.testi-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 28px;
}
.testi-country {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.testi-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
}
.testi-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

/* âââ INDUSTRIES SECTION âââââââââââââââââââââââââââ */
.industries-section {
  background: var(--ink-3);
  padding: 96px 0;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.industry-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  cursor: default;
  transition: all 0.3s ease;
}
.industry-card:hover {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.industry-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.industry-name {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.industry-card:hover .industry-name { color: var(--gold); }

/* âââ MOBILE âââââââââââââââââââââââââââââââââââââââ */
@media (max-width: 1024px) {
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner  { padding: 0 20px; }
  section { padding: 64px 0; }

  /* Show hamburger, hide full nav */
  .nav-hamburger { display: flex; }

  /* Nav links become full-screen overlay */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 32px 24px 48px;
    gap: 0;
    align-items: flex-start;
    z-index: 999;
    overflow-y: auto;
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .nav-links.open { display: flex; }

  .nav-links a:not(.btn-nav) {
    width: 100%;
    font-size: 13px;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.6);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links a:not(.btn-nav):hover { color: var(--gold); }
  .nav-links .btn-nav {
    margin-top: 28px;
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    font-size: 12px;
    display: block;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .cta-inner { padding: 0 20px; }
  .cta-band { padding: 64px 0; }

  /* Industries */
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .industry-card { padding: 20px 14px; }
  .industry-icon { font-size: 26px; }

  /* Testimonials */
  .testi-slider-section { padding: 64px 0; }
  .testi-quote { font-size: 20px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ââ CTA SECTION âââââââââââââââââââââââââââââââââââââââââââââââ */
.cta-section {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1400 50%, #0d0d0d 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section .btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.cta-section .btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }