/* ═══════════════════════════════════════════
   WES WHITNER — Global Stylesheet
   Brand: Navy · Electric Blue · Sky · Gold
═══════════════════════════════════════════ */

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

:root {
  --navy:     #0D1B2A;
  --navy-mid: #152438;
  --electric: #1A8CD8;
  --sky:      #5CB8E8;
  --sky-light:#D8EFF9;
  --gold:     #D4A827;
  --gold-lt:  #F0CC60;
  --white:    #FFFFFF;
  --off-white:#F5F8FC;
  --dark:     #111111;
  --mid:      #3A3A3A;
  --gray:     #6A6A6A;
  --lgray:    #ADADAD;
  --border:   #E0EAF2;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --nav-h: 72px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(13,27,42,0.10);
  --shadow-lg: 0 12px 48px rgba(13,27,42,0.18);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--electric); border-radius: 3px; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--navy-mid { background: var(--navy-mid); color: var(--white); }
.section--light { background: var(--off-white); }

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--electric);
  background: rgba(26,140,216,0.10);
  border: 1px solid rgba(26,140,216,0.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.tag--gold {
  color: var(--gold);
  background: rgba(212,168,39,0.10);
  border-color: rgba(212,168,39,0.30);
}
.tag--white {
  color: var(--white);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.25);
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 16px;
  display: block;
}
.section-label--white { color: var(--sky); }
.section-label--gold  { color: var(--gold); }

h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.15; }

.h-display {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.h-xl {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
}
.h-lg {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.15;
}
.h-md {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
}
.h-sm {
  font-size: 18px;
  font-weight: 600;
}

.lead {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--gray);
  line-height: 1.75;
}
.lead--white { color: rgba(255,255,255,0.72); }
.lead--mid   { color: var(--mid); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--electric);
  color: var(--white);
}
.btn-primary:hover { background: #1579C0; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,140,216,0.35); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--electric);
  border: 2px solid var(--electric);
}
.btn-outline:hover { background: var(--electric); color: var(--white); transform: translateY(-2px); }
.btn-outline--white {
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline--white:hover { background: var(--white); color: var(--navy); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }

.divider {
  width: 48px;
  height: 3px;
  background: var(--electric);
  margin: 20px 0 28px;
  border-radius: 2px;
}
.divider--gold { background: var(--gold); }
.divider--center { margin-left: auto; margin-right: auto; }
.divider--white { background: rgba(255,255,255,0.35); }

/* ── FADE-IN ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 0 40px;
}
.nav.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--electric); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--electric); }
.nav-cta { margin-left: 12px; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--navy);
  padding: 20px 24px 32px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.80);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.07); color: var(--white); }
.mobile-menu .btn { margin-top: 12px; width: 100%; justify-content: center; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.60);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 600;
}
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--white); }
.footer-electric { color: var(--electric); font-weight: 600; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── DROPDOWN NAV ── */
.nav-dropdown{position:relative;}
.nav-dropdown-menu{
  display:none;position:absolute;top:calc(100% + 8px);left:0;
  background:rgba(13,27,42,0.97);backdrop-filter:blur(12px);
  border:1px solid rgba(26,140,216,0.20);border-radius:12px;
  padding:8px;min-width:200px;z-index:1001;
  box-shadow:0 12px 40px rgba(0,0,0,0.35);
}
.nav-dropdown:hover .nav-dropdown-menu{display:flex;flex-direction:column;}
.nav-dropdown-menu a{
  color:rgba(255,255,255,0.75);font-size:13px;font-weight:500;
  padding:10px 14px;border-radius:8px;transition:0.2s;white-space:nowrap;
}
.nav-dropdown-menu a:hover{background:rgba(26,140,216,0.15);color:var(--white);}

/* ═══ PAGE-LEVEL PHOTO CAROUSEL ═══ */
.page-carousel {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 420px;
  max-height: 640px;
  overflow: hidden;
  margin-top: 72px;
}
.pgc-slides { position: absolute; inset: 0; }
.pgc-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
  background-size: cover;
  background-position: center center;
}
.pgc-slide.active { opacity: 1; }
.pgc-slide:nth-child(1) { animation: pgkb1 10s ease-in-out infinite alternate; }
.pgc-slide:nth-child(2) { animation: pgkb2 10s ease-in-out infinite alternate; }
.pgc-slide:nth-child(3) { animation: pgkb3 10s ease-in-out infinite alternate; }
.pgc-slide:nth-child(4) { animation: pgkb1 10s ease-in-out infinite alternate; }
.pgc-slide:nth-child(5) { animation: pgkb2 10s ease-in-out infinite alternate; }
.pgc-slide:nth-child(6) { animation: pgkb3 10s ease-in-out infinite alternate; }
@keyframes pgkb1 { 0%{transform:scale(1.00)translate(0,0);}   100%{transform:scale(1.08)translate(-1%,-1%);}}
@keyframes pgkb2 { 0%{transform:scale(1.05)translate(-1%,0);} 100%{transform:scale(1.00)translate(1%,-1%);} }
@keyframes pgkb3 { 0%{transform:scale(1.00)translate(1%,-1%);}100%{transform:scale(1.07)translate(0,0);}   }

.pgc-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(13,27,42,0.88) 0%,
    rgba(13,27,42,0.60) 45%,
    rgba(13,27,42,0.35) 100%
  );
}
.pgc-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center;
  padding: 0 5vw;
}
.pgc-text { max-width: 680px; }
.pgc-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--electric);
  margin-bottom: 14px; display: block;
}
.pgc-title {
  font-family: var(--font-display);
  font-size: clamp(36px,5.5vw,72px);
  font-weight: 700; color: var(--white);
  line-height: 1.05; margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.pgc-sub {
  font-size: clamp(13px,1.3vw,16px);
  color: rgba(255,255,255,0.68);
  line-height: 1.6; margin-bottom: 28px;
}
.pgc-dots {
  position: absolute; bottom: 24px; left: 5vw; z-index: 3;
  display: flex; gap: 8px;
}
.pgc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.30);
  cursor: pointer; transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.20);
}
.pgc-dot.active { background: var(--electric); width: 24px; border-radius: 4px; }

/* ═══ CAROUSEL FULL-PHOTO FIX ═══ */
/* Show entire photo — no cropping */
.hero-slide {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-color: #0D1B2A !important;
  background-position: center center !important;
}
.pgc-slide {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-color: #0D1B2A !important;
  background-position: center center !important;
}
.vc-slide {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-color: #0D1B2A !important;
  background-position: center center !important;
}
/* Reduce Ken Burns scale so photo never gets cropped during animation */
@keyframes kb1 { 0%{transform:scale(1.00) translate(0,0);} 100%{transform:scale(1.03) translate(-0.5%,-0.5%);} }
@keyframes kb2 { 0%{transform:scale(1.02) translate(-0.5%,0);} 100%{transform:scale(1.00) translate(0.5%,-0.5%);} }
@keyframes kb3 { 0%{transform:scale(1.00) translate(0.5%,-0.5%);} 100%{transform:scale(1.03) translate(0,0);} }
@keyframes kb4 { 0%{transform:scale(1.02) translate(0,0.5%);} 100%{transform:scale(1.00) translate(-0.5%,0);} }
@keyframes pgkb1 { 0%{transform:scale(1.00) translate(0,0);} 100%{transform:scale(1.02) translate(-0.5%,-0.5%);} }
@keyframes pgkb2 { 0%{transform:scale(1.01) translate(-0.5%,0);} 100%{transform:scale(1.00) translate(0.5%,-0.5%);} }
@keyframes pgkb3 { 0%{transform:scale(1.00) translate(0.5%,-0.5%);} 100%{transform:scale(1.02) translate(0,0);} }

/* Taller carousel frames so more photo is visible */
.hero { height: 100vh !important; min-height: 600px !important; }
.page-carousel { height: 82vh !important; min-height: 520px !important; max-height: 900px !important; }
#ventureCarousel { height: 85vh !important; min-height: 560px !important; }

/* ═══ VIDEO BACKGROUND STRIP ═══ */
.video-strip {
  position: relative;
  height: 42vh;
  min-height: 260px;
  max-height: 480px;
  overflow: hidden;
  background: #0D1B2A;
}
.video-strip video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}
.video-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,27,42,0.75) 0%,
    rgba(13,27,42,0.35) 50%,
    rgba(13,27,42,0.75) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.video-strip-text {
  text-align: center;
  z-index: 3;
  position: relative;
}
.video-strip-text span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.video-strip-text h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.15;
}
.video-strip-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: 0.2s;
}
.video-strip-cta:hover {
  background: var(--electric);
  border-color: var(--electric);
}
