/* ═════════════════════════════════════════════════════════
   ROOT & GLOBAL STYLES
   ═════════════════════════════════════════════════════════ */
:root {
  --sand: #f5f0e8;
  --sand-dark: #ece5d6;
  --stone: #2b2620;
  --stone-mid: #5a4f45;
  --stone-light: #9b8f84;
  --gold: #1b3aa6;
  --gold-light: #2d5cc4;
  --white: #fefdfb;
  --dark: #1c1814;
  --nav-h: 72px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--white);
  color: var(--stone);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

/* ═════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═════════════════════════════════════════════════════════ */
.text-gold { color: var(--gold); }
.text-stone { color: var(--stone); }
.bg-sand { background: var(--sand); }
.section-pad { padding: 100px 0; }
.label-sm {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Reveal on scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═════════════════════════════════════════════════════════
   NAVBAR
   ═════════════════════════════════════════════════════════ */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: #2d5cc4;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 169, 110, 0.18);
  transition: background var(--transition), box-shadow var(--transition);
}

#mainNav.scrolled {
  background: #1b3aa6;
  box-shadow: 0 2px 32px rgba(43, 38, 32, 0.08);
}

.nav-inner {
  max-width: 1380px;
  margin: auto;
  height: var(--nav-h);
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo {
  height: 48px;
  width: auto;
  margin-bottom: 4px;
}

.navbar-brand span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--stone);
  letter-spacing: 2px;
}

.navbar-brand span:last-child {
  font-size: 9px;
  letter-spacing: 5px;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Desktop Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
  flex: 1;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  border-radius: 2px;
  transition: color var(--transition), background var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active { 
  color: #ffffff;
  background: rgba(200, 169, 110, 0.2);
}

.nav-menu > li > a .bi-chevron-down { 
  font-size: 9px; 
  transition: transform var(--transition); 
}

.nav-menu > li:hover > a .bi-chevron-down,
.nav-menu > li.force-open > a .bi-chevron-down { transform: rotate(180deg); }

/* Mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--white);
  border: 1px solid rgba(200, 169, 110, 0.22);
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(43, 38, 32, 0.14);
  min-width: 680px;
  padding: 32px 36px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 999;
}

.nav-menu > li:hover .mega-menu,
.nav-menu > li.force-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: var(--white);
  filter: drop-shadow(0 -2px 1px rgba(200, 169, 110, 0.18));
}

/* Invisible bridge covering the gap between the trigger and the panel,
   so moving the pointer down into the menu never drops the hover chain. */
.mega-menu::after {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.mega-col-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-light);
}

.mega-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: var(--stone-mid);
  text-decoration: none;
  transition: color var(--transition), gap var(--transition);
}

.mega-link:hover { color: var(--gold); gap: 14px; }
.mega-link .bi { font-size: 15px; color: var(--stone-light); transition: color var(--transition); }
.mega-link:hover .bi { color: var(--gold); }

.mega-divider { border-top: 1px dashed var(--sand-dark); margin: 18px 0; }

.mega-footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--stone-light);
  text-decoration: none;
  transition: color var(--transition);
}

.mega-footer-link:hover { color: var(--gold); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.nav-icon-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 17px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.nav-icon-btn:hover { background: rgba(255, 255, 255, 0.1); color: var(--gold); }

.btn-quote {
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}

.btn-quote:hover { background: var(--gold); color: var(--stone); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
#mobileMenu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  overflow-y: auto;
  z-index: 999;
  padding: 24px 24px 60px;
  transform: translateX(100%);
  transition: transform var(--transition);
}

#mobileMenu.open { transform: translateX(0); }

.mob-collapse-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone);
  background: none;
  border: none;
  border-bottom: 1px solid var(--sand-dark);
  cursor: pointer;
}

.mob-collapse-btn .bi-chevron-right { 
  transition: transform var(--transition); 
  font-size: 11px; 
  color: var(--gold); 
}

.mob-collapse-btn.active .bi-chevron-right { transform: rotate(90deg); }

.mob-sub { 
  display: none; 
  padding-left: 16px; 
  background: var(--sand); 
  border-radius: 4px; 
  margin: 6px 0; 
}

.mob-sub.open { display: block; }

.mob-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--stone);
  text-decoration: none;
  border-bottom: 1px solid var(--sand-dark);
  transition: color var(--transition), padding-left var(--transition);
}

.mob-link:hover { color: var(--gold); padding-left: 6px; }
.mob-link .bi { color: var(--stone-light); font-size: 16px; }

/* ═════════════════════════════════════════════════════════
   BUTTONS
   ═════════════════════════════════════════════════════════ */
.btn-primary-gold {
  padding: 14px 36px;
  background: #bbcaff;
  color: var(--stone);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary-gold:hover { 
  background: #5d76cd; 
  color: #ffffff;
  transform: translateY(-2px); 
}

.btn-outline-stone {
  padding: 13px 36px;
  background: transparent;
  color: var(--stone);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--stone);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-outline-stone:hover { 
  background: var(--stone); 
  color: var(--white); 
  transform: translateY(-2px); 
}

.btn-outline-light {
  padding: 13px 36px;
  background: transparent;
  color: #fefdfb;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(254, 253, 251, 0.4);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-outline-light:hover {
  border-color: rgba(254, 253, 251, 0.9);
  background: rgba(254, 253, 251, 0.07);
  transform: translateY(-2px);
}

/* ═════════════════════════════════════════════════════════
   PAGE HERO (for About page, etc)
   ═════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e1814 0%, #2f2318 35%, #4a3828 70%, #3a2e22 100%);
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(200, 169, 110, 0.05) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(200, 169, 110, 0.05) 80px);
}

.hero-year-bg {
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(180px, 22vw, 320px);
  font-weight: 600;
  color: rgba(200, 169, 110, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -10px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 15, 10, 0.80) 0%, rgba(20, 15, 10, 0.30) 70%, transparent 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 28px 80px;
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.breadcrumb-custom a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(254, 253, 251, 0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb-custom a:hover { color: var(--gold); }

.breadcrumb-custom span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.breadcrumb-sep { 
  color: rgba(254, 253, 251, 0.25); 
  font-size: 12px; 
}

.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.2s forwards;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: #fefdfb;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s 0.4s forwards;
}

.page-hero-title em { 
  font-style: italic; 
  color: var(--gold-light); 
}

.page-hero-desc {
  max-width: 520px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(254, 253, 251, 0.65);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.6s forwards;
}

/* Scrolling stat bar below hero */
.hero-stats-bar {
  background: var(--gold);
  padding: 0;
}

.hero-stats-inner {
  max-width: 1380px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 28px;
}

.hero-stat {
  padding: 28px 24px;
  border-right: 1px solid rgba(43, 38, 32, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1;
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(43, 38, 32, 0.6);
  margin-top: 6px;
}

/* ═════════════════════════════════════════════════════════
   STORY SECTION
   ═════════════════════════════════════════════════════════ */
.story-section { 
  padding: 110px 0; 
  background: var(--white); 
}

.story-pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--stone);
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  margin-bottom: 40px;
}

.story-body { 
  font-size: 15px; 
  color: var(--stone-mid); 
  line-height: 1.9; 
}

.story-body p + p { margin-top: 20px; }

/* Image mosaic */
.story-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.mosaic-item {
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mosaic-item-tall { grid-row: span 2; }

.mosaic-pattern {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255, 255, 255, 0.2);
  min-height: 200px;
}

.mosaic-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(20, 15, 10, 0.7), transparent);
  padding: 20px 16px 14px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(254, 253, 251, 0.8);
}

/* Founding ribbon */
.founding-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: var(--sand);
  border-radius: 2px;
  margin-bottom: 32px;
}

.founding-ribbon span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone-mid);
}

.founding-ribbon strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
}

/* ═════════════════════════════════════════════════════════
   TIMELINE
   ═════════════════════════════════════════════════════════ */
.timeline-section { 
  padding: 100px 0; 
  background: var(--sand); 
  overflow: hidden; 
}

.timeline {
  position: relative;
  padding-left: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-light) 10%, var(--gold-light) 90%, transparent);
  transform: translateX(-50%);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 56px;
  position: relative;
}

.tl-item:last-child { margin-bottom: 0; }

.tl-left, .tl-right { padding: 0 32px; }
.tl-left { text-align: right; }
.tl-right { text-align: left; }

/* Alternate: even items reverse */
.tl-item.reverse .tl-left { order: 3; text-align: left; }
.tl-item.reverse .tl-center { order: 2; }
.tl-item.reverse .tl-right { order: 1; text-align: right; }

.tl-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.tl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
  position: relative;
  z-index: 1;
  transition: background var(--transition);
}

.tl-item:hover .tl-dot { background: var(--gold); }

.tl-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.tl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--stone);
  margin-bottom: 10px;
}

.tl-text { 
  font-size: 13.5px; 
  color: var(--stone-light); 
  line-height: 1.75; 
}

/* ═════════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════════ */
footer {
  background: #1b3aa6;
  color: rgba(254, 253, 251, 0.6);
  padding: 72px 0 36px;
}

.footer-brand span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: #fefdfb;
  letter-spacing: 2px;
  display: block;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand span:last-child {
  font-size: 9px;
  letter-spacing: 5px;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
  margin-bottom: 20px;
}

.footer-about {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(254, 253, 251, 0.45);
  max-width: 260px;
}

.footer-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c8a96e;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.footer-links a {
  font-size: 16px;
  color: rgba(254, 253, 251, 0.5);
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact li {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(254, 253, 251, 0.5);
}

.social-links { 
  display: flex; 
  gap: 10px; 
  margin-top: 8px; 
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(254, 253, 251, 0.5);
  font-size: 15px;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 169, 110, 0.08);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 48px 0 28px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(254, 253, 251, 0.3);
}

.footer-bottom-links { 
  display: flex; 
  gap: 24px; 
}

.footer-bottom-links a {
  color: rgba(254, 253, 251, 0.3);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom-links a:hover { 
  color: var(--gold); 
}

/* Back to top */
#backTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: #2d5cc4;
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  text-decoration: none;
}

#backTop.show { 
  opacity: 1; 
  transform: translateY(0); 
}

#backTop:hover { 
  background: var(--gold); 
  color: var(--stone); 
}

/* ═════════════════════════════════════════════════════════
   ANIMATIONS
   ═════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .nav-menu, .btn-quote { 
    display: none !important; 
  }
  
  .hamburger { display: flex; }
  
  #mobileMenu { display: block; }
  
  .mega-menu { display: none !important; }
  
  .hero-stats-inner, .partner-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .timeline::before { left: 22px; }
  
  .tl-item, .tl-item.reverse {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto;
  }
  
  .tl-item .tl-left,
  .tl-item .tl-right,
  .tl-item.reverse .tl-left,
  .tl-item.reverse .tl-right { display: none; }
  
  .tl-center { order: 1 !important; }
  
  .tl-item.reverse .tl-right { 
    display: block; 
    order: 2 !important; 
    text-align: left; 
    padding-left: 16px; 
  }
  
  .tl-item .tl-right { 
    display: block; 
    order: 2; 
    padding-left: 16px; 
  }
}

@media (max-width: 767.98px) {
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form { flex-direction: column; }
  .newsletter-input, .newsletter-submit { width: 100%; }
}

@media (max-width: 575.98px) {
  .hero-stats-inner, .partner-grid { grid-template-columns: repeat(2, 1fr); }
  #mainNav { height: auto; padding: 12px 16px; }
  .nav-inner { padding: 12px 0; }
  .navbar-brand span:first-child { font-size: 18px; }
  .page-hero-title { font-size: clamp(32px, 6vw, 56px); }
  .hero-dots { display: none; }
}

/* Animated counter */
.count-up { display: inline-block; }
