/* ─── TOKENS ──────────────────────────────────────────────────────────────── */
:root {
  --navy:      #142138;
  --navy-deep: #0d1826;
  --gold:      #ffa621;
  --gold-dark: #e8941a;
  --white:     #ffffff;
  --off-white: #f7f7f5;
  --gray:      #ededed;
  --gray-mid:  #aaaaaa;
  --black:     #000000;
  --navy-80:   rgba(20,33,56,.80);
  --navy-95:   rgba(20,33,56,.97);
  --t:         .3s cubic-bezier(.25,.46,.45,.94);
  --t-slow:    .6s cubic-bezier(.25,.46,.45,.94);
}

/* ─── RESET ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  padding-top: 0;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ─── TYPOGRAPHY ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -.01em;
}
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--gold);
  display: flex; align-items: center; gap: .65rem;
  margin-bottom: .75rem;
}
.eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--gold); flex-shrink: 0;
}
.lead {
  font-size: 1.1rem; line-height: 1.75;
  color: #555; max-width: 580px;
}
.lead-light { color: rgba(255,255,255,.65); }

/* ─── LAYOUT ──────────────────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
section    { padding: 6rem 0; }

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn-cta {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .14em;
  background: var(--gold); color: var(--navy);
  padding: .9rem 2rem;
  border: none; cursor: pointer;
  transition: background var(--t), transform var(--t);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.btn-cta:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .14em;
  border: 2px solid currentColor;
  padding: .85rem 2rem; cursor: pointer;
  transition: var(--t);
}
.btn-outline-white { color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-outline-navy  { color: var(--navy); }
.btn-outline-navy:hover  { background: var(--navy); color: var(--white); }

/* ─── NAV ─────────────────────────────────────────────────────────────────── */
#sitenav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 500;
  background: var(--navy-95);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--gold);
  transition: padding var(--t);
}
#sitenav.scrolled .nav-inner { padding-top: .6rem; padding-bottom: .6rem; }
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  padding: .8rem 2rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .4rem;
  margin-right: 1.5rem;
}
.mp-italic {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: 1.6rem; color: var(--gold); line-height: 1;
}
.nav-wordmark {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: .7rem;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--white); line-height: 1.2;
  white-space: nowrap;
}
.nav-links {
  display: flex; gap: 1.75rem; align-items: center;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .7rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.7);
  transition: color var(--t);
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width var(--t);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta { padding: .7rem 1.5rem; font-size: .7rem; white-space: nowrap; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; margin-left: auto;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); transition: var(--t);
}

/* Mobile drawer */
/* Mobile dropdown nav */
.mobile-drawer {
  position: fixed; top: 62px; left: 0; right: 0;
  z-index: 999999;
  background: #ffffff !important;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  display: flex; flex-direction: column;
  align-items: stretch;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
  isolation: isolate;
}
.mobile-drawer.open { max-height: 600px; }
.mobile-drawer a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--navy);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--gray);
  transition: background var(--t), color var(--t);
  display: block; text-align: left;
}
.mobile-drawer a:last-child { border-bottom: none; }
.mobile-drawer a:hover,
.mobile-drawer a.active { background: var(--off-white); color: var(--gold); }
.drawer-close { display: none; }

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  border-top: 2px solid rgba(255,166,33,.2);
}
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 4rem 2rem;
  display: flex; gap: 4rem; flex-wrap: wrap;
}
.footer-left { flex: 1; min-width: 220px; }
.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--white); margin-bottom: .75rem;
}
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: .9rem; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .65rem;
  text-transform: uppercase; letter-spacing: .12em;
  border: 1px solid rgba(255,255,255,.2);
  padding: .4rem .9rem; color: rgba(255,255,255,.5);
  transition: var(--t);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: .5rem; }
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: .68rem;
  text-transform: uppercase; letter-spacing: .15em;
  color: var(--gold); margin-bottom: .25rem;
}
.footer-col a, .footer-col p {
  font-size: .88rem; color: rgba(255,255,255,.45);
  transition: color var(--t); line-height: 1.6;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.25rem 2rem; text-align: center;
  font-size: .78rem; color: rgba(255,255,255,.25);
  font-family: 'Montserrat', sans-serif; letter-spacing: .08em;
}

/* ─── ANIMATIONS ──────────────────────────────────────────────────────────── */
.fade-up    { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.fade-left  { opacity: 0; transform: translateX(-36px); transition: opacity .7s ease, transform .7s ease; }
.fade-right { opacity: 0; transform: translateX(36px);  transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible, .fade-left.visible, .fade-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ─── PAGE HERO (reusable) ────────────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  min-height: 50vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .25;
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 5rem 0;
}
.page-hero h1 { color: var(--white); font-size: clamp(2.5rem, 6vw, 5rem); }
.page-hero h1 em { color: var(--gold); font-style: normal; display: block; }
.page-hero .lead { color: rgba(255,255,255,.65); margin-top: 1rem; }

/* ─── GOLD DIVIDER ────────────────────────────────────────────────────────── */
.gold-bar {
  width: 48px; height: 4px; background: var(--gold); margin: 1.5rem 0;
}

/* ─── STAT BLOCK ──────────────────────────────────────────────────────────── */
.stat-row {
  display: flex; gap: 3rem; flex-wrap: wrap;
  padding: 2.5rem 0; border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 2.5rem;
}
.stat-item {}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 2.8rem;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .68rem;
  text-transform: uppercase; letter-spacing: .14em;
  color: rgba(255,255,255,.45); margin-top: .3rem;
}

/* ─── REVIEW CARD ─────────────────────────────────────────────────────────── */
.review-card {
  background: var(--white);
  border: 1px solid var(--gray);
  padding: 2rem;
  position: relative;
  transition: var(--t);
}
.review-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(255,166,33,.12);
}
.review-stars { color: var(--gold); font-size: .9rem; letter-spacing: .15em; margin-bottom: .75rem; }
.review-text  { font-size: 1rem; line-height: 1.7; color: #333; margin-bottom: 1.25rem; font-style: italic; }
.review-author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .68rem;
  text-transform: uppercase; letter-spacing: .14em; color: var(--navy);
}
.review-quote-mark {
  position: absolute; top: 1rem; right: 1.5rem;
  font-size: 4rem; font-weight: 900; font-family: 'Montserrat', sans-serif;
  color: rgba(255,166,33,.1); line-height: 1; user-select: none;
}

/* ─── MARQUEE STRIP ───────────────────────────────────────────────────────── */
.marquee-strip {
  background: var(--gold); padding: 1rem 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--navy); padding: 0 2.5rem;
  display: flex; align-items: center; gap: 1.5rem; white-space: nowrap;
}
.marquee-item::after { content: '◆'; font-size: .4rem; color: var(--navy-80); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex; }
  body { padding-top: 0 !important; }
  #sitenav { position: sticky; top: 0 !important; z-index: 999998; }
  .nav-inner { min-height: 62px; }
}
@media (max-width: 600px) {
  section { padding: 4rem 0; }
  .stat-row { gap: 1.75rem; }
}

@media (max-width: 600px) {
  .page-hero-content,
  .about-hero-content,
  .gt-hero-content,
  .pt-hero-content,
  .fac-hero-content,
  .contact-hero .container {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .hero-content {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}
