/* ===== SUMMIT LABS - SHARED STYLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #1B2A4A;
  --navy-deep: #0C1525;
  --navy-light: #243556;
  --slate: #4A5568;
  --gold: #C8A951;
  --gold-hover: #B8993F;
  --gold-soft: rgba(200, 169, 81, 0.08);
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --warm-gray: #F0EDE8;
  --text: #1A1A1A;
  --heading: 'Cormorant Garamond', Georgia, serif;
  --body: 'Source Sans 3', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--body); color: var(--text);
  line-height: 1.7; font-weight: 400; font-size: 17px;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.8; } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(12, 21, 37, 0.88);
  backdrop-filter: blur(16px);
  padding: 0 40px 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid rgba(200, 169, 81, 0.1);
}
.nav-logo {
  font-family: var(--heading); font-size: 22px; font-weight: 600;
  color: var(--white); letter-spacing: 2px; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  margin-right: auto;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; margin-left: 48px; }
.nav-links a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 11.5px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  padding: 9px 24px !important; font-size: 11px !important;
  background: transparent; color: #C8A951 !important;
  border: 1.5px solid rgba(200,169,81,0.4);
  border-radius: 3px; font-weight: 600 !important;
  letter-spacing: 2px !important; transition: all 0.3s !important;
}
.nav-cta:hover { background: rgba(200,169,81,0.1) !important; border-color: #C8A951 !important; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 17px 44px;
  font-family: var(--body); font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  transition: all 0.4s ease; cursor: pointer; border: none;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200, 169, 81, 0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(27, 42, 74, 0.3); }
.btn-ghost { background: transparent; color: var(--gold); padding: 0; letter-spacing: 1.5px; font-size: 13px; text-decoration: none; font-weight: 600; }
.btn-ghost::after { content: ' \2192'; transition: margin-left 0.3s; }
.btn-ghost:hover::after { margin-left: 8px; }

/* ===== TYPOGRAPHY ===== */
section { padding: 80px 60px; position: relative; }
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }
h1, h2, h3, h4 { font-family: var(--heading); font-weight: 500; line-height: 1.15; }
h1 { font-size: 76px; }
h2 { font-size: 50px; margin-bottom: 24px; }
h3 { font-size: 28px; margin-bottom: 12px; }
h4 { font-size: 22px; margin-bottom: 8px; }
.container { max-width: 1200px; margin: 0 auto; }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  padding: 160px 60px 80px;
  background: var(--navy-deep);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.02;
  background-image:
    repeating-radial-gradient(circle at 30% 50%, transparent 0, transparent 60px, rgba(200,169,81,0.5) 60px, rgba(200,169,81,0.5) 61px, transparent 61px, transparent 120px);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: 56px; margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.5); font-size: 19px; max-width: 600px; line-height: 1.8; }
.page-hero .hero-divider {
  width: 60px; height: 2px; background: var(--gold); margin-bottom: 24px; opacity: 0.6;
}

/* ===== STATS BAND ===== */
.stats {
  background: var(--navy); padding: 40px 60px;
  position: relative; overflow: hidden;
}
.stats::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(200,169,81,0.04) 0%, transparent 50%, rgba(200,169,81,0.04) 100%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--heading); font-size: 56px; font-weight: 400;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); font-weight: 500;
}

/* ===== IMAGE BREAK ===== */
.image-break {
  height: 280px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.image-break-content { position: relative; z-index: 1; max-width: 700px; padding: 0 40px; }
.image-break-content blockquote {
  font-family: var(--heading); font-size: 36px; font-style: italic;
  color: var(--white); font-weight: 400; line-height: 1.4; margin-bottom: 16px;
}
.image-break-content cite {
  font-family: var(--body); font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); font-style: normal;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center; padding: 100px 60px; position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12,21,37,0.92) 0%, rgba(12,21,37,0.8) 50%, rgba(12,21,37,0.95) 100%),
    url('https://images.unsplash.com/photo-1454496522488-7a8e488e8606?w=1920&q=80') center/cover no-repeat;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 {
  color: var(--white); font-size: 52px; margin-bottom: 24px;
  font-style: italic; font-weight: 400;
}
.cta-section p {
  color: rgba(255,255,255,0.45); font-size: 18px;
  max-width: 520px; margin: 0 auto 48px; line-height: 1.8;
}

/* ===== CONTACT FORM ===== */
.contact { background: var(--white); padding: 80px 60px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info h2 { color: var(--navy); }
.contact-info > p { color: var(--slate); margin-bottom: 40px; line-height: 1.8; }
.contact-detail {
  padding: 18px 0; border-bottom: 1px solid #E5E7EB;
  display: flex; align-items: center; gap: 20px;
}
.contact-detail-label {
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); min-width: 80px;
}
.contact-detail-value { color: var(--slate); }
.contact-detail-value a { color: var(--slate); text-decoration: none; border-bottom: 1px solid #D1D5DB; transition: border-color 0.3s; }
.contact-detail-value a:hover { border-color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 18px 22px; border: 1px solid #D1D5DB;
  border-radius: 3px; font-family: var(--body); font-size: 15px;
  color: var(--text); background: var(--off-white); transition: all 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,81,0.1);
}
.contact-form textarea { min-height: 150px; resize: vertical; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-deep); padding: 48px 60px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(200, 169, 81, 0.06);
}
.footer-left p { color: rgba(255,255,255,0.25); font-size: 13px; }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { color: rgba(255,255,255,0.3); text-decoration: none; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-tagline {
  font-family: var(--heading); font-style: italic;
  color: rgba(255,255,255,0.15); font-size: 16px;
}

/* ===== MOBILE HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.hamburger span {
  width: 24px; height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: #0C1525;
  padding: 40px 24px;
  gap: 0;
  z-index: 99;
  animation: fadeIn 0.3s ease;
}
.nav-links.mobile-open li {
  border-bottom: 1px solid rgba(200,169,81,0.08);
}
.nav-links.mobile-open a {
  display: block;
  padding: 18px 0;
  font-size: 14px !important;
  letter-spacing: 3px !important;
}
.nav-links.mobile-open .nav-cta {
  margin-top: 20px;
  text-align: center;
  display: block !important;
  padding: 16px 28px !important;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-warm { background: var(--warm-gray); }
.bg-navy { background: var(--navy); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 60px 24px; }
  .page-hero { padding: 120px 24px 60px; }
  .page-hero h1 { font-size: 36px; }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number { font-size: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .image-break { height: 220px; }
  .image-break-content blockquote { font-size: 24px; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { justify-content: center; }
  .cta-section h2 { font-size: 36px; }
}

/* ===== SCROLL REVEAL INIT (add to each page) ===== */
