:root {
  --navy: #0C1825;
  --navy-mid: #0E1B2B;
  --navy-light: #162235;
  --navy-card: #111E2D;
  --gold: #C8A84B;
  --gold-bright: #E0BE6A;
  --gold-dim: #8A712F;
  --white: #F5F5F0;
  --white-dim: #A8B0BB;
  --white-faint: #4A5568;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 4px;
  --max-w: 1200px;
  --transition: 0.25s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--navy); color: var(--white); font-family: var(--font-body); line-height: 1.65; overflow-x: hidden; }
img:not(svg img) { display: block; max-width: 100%; height: auto; }
img { display: block; max-width: 100%; height: auto; }
svg { overflow: hidden; }
svg:not(.service-icon svg):not(.social-icon svg):not(.social-icon-sm svg) { max-width: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.section-label.centered { text-align: center; }
.section-heading { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.05; color: var(--white); margin-bottom: 1.5rem; }
.section-heading.centered { text-align: center; }
.section-heading em { font-style: italic; font-family: var(--font-serif); color: var(--gold); font-weight: 700; }
.link-arrow { font-size: 0.9rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 0.4rem; transition: gap var(--transition); }
.link-arrow:hover { gap: 0.8rem; }
.btn { display: inline-block; padding: 0.85rem 2rem; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: 2px solid transparent; cursor: pointer; transition: all var(--transition); border-radius: var(--radius); white-space: nowrap; }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,75,0.3); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(245,245,240,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 0.9rem; }
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.25rem 0; transition: background var(--transition), padding var(--transition), box-shadow var(--transition); }
.site-header.scrolled { background: rgba(12,24,37,0.97); padding: 0.75rem 0; box-shadow: 0 2px 32px rgba(0,0,0,0.4); backdrop-filter: blur(12px); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo img { height: 56px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white-dim); transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width var(--transition); }
.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 { background: var(--gold) !important; color: var(--navy) !important; padding: 0.55rem 1.2rem; border-radius: var(--radius); font-weight: 700 !important; }
.nav-cta:hover { background: var(--gold-bright) !important; }
.nav-cta::after { display: none !important; }
.nav-toggle { display: none; flex-direction: column; justify-content: space-between; width: 26px; height: 18px; background: none; border: none; cursor: pointer; padding: 0; }
.nav-toggle span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(12,24,37,0.88) 0%, rgba(12,24,37,0.55) 60%, rgba(12,24,37,0.3) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 8rem 2rem 6rem; width: 100%; }
.hero-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-headline { font-family: var(--font-display); font-size: clamp(4rem, 10vw, 9rem); line-height: 0.95; color: var(--white); margin-bottom: 2rem; max-width: 10ch; }
.hero-headline em { font-style: italic; font-family: var(--font-serif); color: var(--gold); font-weight: 700; }
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--white-dim); max-width: 48ch; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badge { position: absolute; bottom: 3rem; right: 2rem; z-index: 2; display: flex; flex-direction: column; align-items: center; border: 1px solid var(--gold-dim); padding: 0.75rem 1rem; border-radius: var(--radius); text-align: center; }
.hero-badge span { display: block; font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.12em; color: var(--gold); line-height: 1.2; }
.hero-scroll-hint { position: absolute; bottom: 3rem; left: 2rem; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.hero-scroll-hint span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white-faint); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold-dim), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
.photo-strip { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.photo-strip .strip-photo { overflow: hidden; position: relative; min-height: 500px; }
.photo-strip .strip-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.photo-strip .strip-photo:hover img { transform: scale(1.03); }
.strip-left .strip-text { background: var(--navy-mid); }
.strip-right .strip-text { background: var(--navy); }
.strip-dark .strip-text { background: var(--navy-light); }
.photo-strip .strip-text { display: flex; flex-direction: column; justify-content: center; padding: 5rem 6rem; }
.strip-number { font-family: var(--font-display); font-size: 7rem; line-height: 1; color: rgba(200,168,75,0.06); margin-bottom: -2rem; display: block; letter-spacing: 0.05em; }
.strip-heading { font-family: var(--font-display); font-size: clamp(2.8rem, 4vw, 3.8rem); line-height: 1.0; color: var(--white); margin: 1rem 0 0; letter-spacing: 0.02em; }
.strip-heading em { font-style: italic; font-family: var(--font-serif); color: var(--gold); font-weight: 700; display: block; font-size: 0.9em; }
.strip-divider { width: 48px; height: 2px; background: var(--gold); margin: 1.75rem 0; flex-shrink: 0; }
.strip-body { color: var(--white-dim); font-size: 1.05rem; line-height: 1.85; margin-bottom: 2.5rem; max-width: 38ch; }
.mission { border-top: 1px solid rgba(200,168,75,0.15); border-bottom: 1px solid rgba(200,168,75,0.15); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.mission-body { color: var(--white-dim); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.25rem; }
.services { background: var(--navy-mid); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.service-card { background: var(--navy-card); border: 1px solid rgba(200,168,75,0.1); padding: 2.5rem; border-radius: var(--radius); display: flex; flex-direction: column; gap: 1rem; transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--gold-dim), transparent); opacity: 0; transition: opacity var(--transition); }
.service-card:hover { transform: translateY(-6px); border-color: rgba(200,168,75,0.3); box-shadow: 0 20px 48px rgba(0,0,0,0.4); }
.service-card:hover::before { opacity: 1; }
.service-number { font-family: var(--font-display); font-size: 4rem; line-height: 1; color: rgba(200,168,75,0.12); position: absolute; top: 1.5rem; right: 1.5rem; }
.service-icon { width: 48px; height: 48px; color: var(--gold); flex-shrink: 0; }
.service-icon svg { width: 48px !important; height: 48px !important; max-width: 48px !important; max-height: 48px !important; }
.service-title { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); }
.service-desc { color: var(--white-dim); font-size: 0.95rem; line-height: 1.75; flex: 1; }
.service-link { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; color: var(--gold); text-transform: uppercase; }
.stats-bar { background: var(--gold); padding: 3rem 0; }
.stats-grid { display: flex; align-items: center; justify-content: center; }
.stat { flex: 1; text-align: center; padding: 0.5rem 1rem; }
.stat-num { display: block; font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; color: var(--navy); margin-bottom: 0.3rem; }
.stat-label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(12,24,37,0.7); }
.stat-divider { width: 1px; height: 60px; background: rgba(12,24,37,0.25); flex-shrink: 0; }
.cta-section { background: var(--navy); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 50% 100%, rgba(200,168,75,0.08) 0%, transparent 60%); pointer-events: none; }
.cta-inner { text-align: center; max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.cta-heading { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 6rem); line-height: 0.95; color: var(--white); margin-bottom: 1.5rem; }
.cta-heading em { font-style: italic; font-family: var(--font-serif); color: var(--gold); font-weight: 700; }
.cta-sub { color: var(--white-dim); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2.5rem; max-width: 52ch; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.site-footer { background: #070F18; padding: 5rem 0 2rem; border-top: 1px solid rgba(200,168,75,0.15); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 4rem; margin-bottom: 4rem; }
.footer-logo { height: 64px; width: auto; margin-bottom: 1.25rem; object-fit: contain; }
.footer-tagline { color: var(--white-dim); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1rem; }
.footer-veteran { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.05em; }
.footer-nav h4, .footer-contact h4 { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.1em; color: var(--white); margin-bottom: 1.25rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a { font-size: 0.9rem; color: var(--white-dim); transition: color var(--transition); }
.footer-nav a:hover { color: var(--gold); }
.footer-email { display: block; font-size: 0.9rem; color: var(--gold); word-break: break-all; }
.footer-email:hover { color: var(--gold-bright); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.8rem; color: var(--white-faint); }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.social-icon { display: flex !important; align-items: center !important; justify-content: center !important; width: 40px !important; height: 40px !important; min-width: 40px !important; min-height: 40px !important; max-width: 40px !important; max-height: 40px !important; overflow: hidden !important; border: 1px solid rgba(200,168,75,0.3); border-radius: 50%; color: var(--gold); transition: all var(--transition); flex-shrink: 0; }
.social-icon svg { width: 18px !important; height: 18px !important; min-width: 18px !important; min-height: 18px !important; max-width: 18px !important; max-height: 18px !important; flex-shrink: 0 !important; display: block !important; }
.social-icon:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-2px); }
.footer-bottom-social { display: flex; gap: 1rem; align-items: center; }
.social-icon-sm { display: flex !important; align-items: center !important; justify-content: center !important; width: 32px !important; height: 32px !important; max-width: 32px !important; max-height: 32px !important; overflow: hidden !important; color: var(--white-faint); transition: color var(--transition); flex-shrink: 0; }
.social-icon-sm svg { width: 16px !important; height: 16px !important; max-width: 16px !important; max-height: 16px !important; flex-shrink: 0 !important; display: block !important; }
.social-icon-sm:hover { color: var(--gold); }
.page-hero { position: relative; height: 60vh; min-height: 400px; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,24,37,0.95) 0%, rgba(12,24,37,0.4) 100%); z-index: 1; }
.page-hero-content { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 3rem 2rem; width: 100%; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 7rem); line-height: 0.95; color: var(--white); margin: 0.5rem 0 1rem; }
.page-hero-sub { font-size: 1.1rem; color: var(--white-dim); }
.mission-hero { background: var(--navy-mid); min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 8rem 2rem 6rem; position: relative; overflow: hidden; }
.mission-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,168,75,0.08) 0%, transparent 70%); pointer-events: none; }
.mission-hero-content { position: relative; z-index: 1; max-width: 800px; }
.mission-hero-title { font-family: var(--font-display); font-size: clamp(4rem, 9vw, 8rem); line-height: 0.95; color: var(--white); margin: 1rem 0 2rem; }
.mission-hero-title em { font-style: italic; font-family: var(--font-serif); color: var(--gold); font-weight: 700; }
.mission-hero-line { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 2rem; }
.mission-hero-quote { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--white-dim); font-style: italic; line-height: 1.8; max-width: 55ch; margin: 0 auto; }
.mission-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.pillar { background: var(--navy-card); border: 1px solid rgba(200,168,75,0.1); border-top: 2px solid var(--gold); padding: 2.5rem 2rem; border-radius: var(--radius); }
.pillar-num { font-family: var(--font-display); font-size: 3rem; color: rgba(200,168,75,0.2); display: block; margin-bottom: 1rem; }
.pillar-title { font-family: var(--font-display); font-size: 1.8rem; color: var(--white); letter-spacing: 0.05em; margin-bottom: 1rem; }
.pillar-body { color: var(--white-dim); font-size: 0.95rem; line-height: 1.75; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(200,168,75,0.15); aspect-ratio: 4/3; }
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.services-list { display: flex; flex-direction: column; gap: 0; }
.service-item { display: grid; grid-template-columns: 80px 1fr 1fr; gap: 3rem; align-items: center; padding: 5rem 0; border-bottom: 1px solid rgba(200,168,75,0.1); position: relative; }
.service-item.reverse .service-item-image { order: 1; }
.service-item.reverse .service-item-body { order: 2; }
.service-item-num { font-family: var(--font-display); font-size: 5rem; color: rgba(200,168,75,0.08); line-height: 1; align-self: flex-start; padding-top: 0.5rem; }
.service-item-title { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); color: var(--white); letter-spacing: 0.03em; margin-bottom: 0; }
.service-item-image { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; border: 1px solid rgba(200,168,75,0.1); }
.service-item-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.portfolio-coming-soon { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.portfolio-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.portfolio-overlay { position: absolute; inset: 0; background: rgba(12,24,37,0.88); z-index: 1; }
.coming-soon-inner { position: relative; z-index: 2; text-align: center; padding: 4rem 2rem; max-width: 700px; }
.coming-soon-logo { height: 120px; width: auto; margin: 0 auto 2rem; object-fit: contain; }
.coming-soon-title { font-family: var(--font-display); font-size: clamp(4rem, 10vw, 8rem); line-height: 0.95; color: var(--white); margin: 1rem 0 2rem; }
.coming-soon-title em { font-style: italic; font-family: var(--font-serif); color: var(--gold); font-weight: 700; }
.coming-soon-line { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 2rem; }
.coming-soon-body { color: var(--white-dim); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2.5rem; max-width: 48ch; margin-left: auto; margin-right: auto; }
.coming-soon-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.contact-hero { padding: 10rem 0 6rem; background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-title { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5.5rem); line-height: 0.95; color: var(--white); margin: 1rem 0 1.5rem; }
.contact-title em { font-style: italic; font-family: var(--font-serif); color: var(--gold); font-weight: 700; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.contact-info-item { border-left: 2px solid var(--gold-dim); padding-left: 1.25rem; }
.contact-info-label { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.contact-info-value { font-size: 0.95rem; color: var(--white-dim); }
.contact-info-value a { color: var(--gold); }
.contact-form-wrap { background: var(--navy-card); border: 1px solid rgba(200,168,75,0.1); border-radius: var(--radius); padding: 3rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.form-group input, .form-group select, .form-group textarea { background: var(--navy); border: 1px solid rgba(200,168,75,0.2); border-radius: var(--radius); padding: 0.85rem 1rem; font-family: var(--font-body); font-size: 0.95rem; color: var(--white); outline: none; transition: border-color var(--transition); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--white-faint); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--navy-card); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
@media (max-width: 1024px) {
  .photo-strip .strip-text { padding: 4rem 3rem; }
  .mission-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-brand { grid-column: 1 / -1; }
  .stats-grid { flex-wrap: wrap; }
  .stat { flex: 0 1 calc(50% - 1px); }
  .mission-pillars { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-item { grid-template-columns: 60px 1fr; }
  .service-item .service-item-image { display: none; }
  .service-item.reverse .service-item-image { display: none; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links { position: fixed; top: 0; right: -100%; width: min(320px, 85vw); height: 100vh; background: rgba(7,15,24,0.98); backdrop-filter: blur(16px); flex-direction: column; align-items: flex-start; justify-content: center; padding: 3rem 2.5rem; gap: 1.5rem; transition: right 0.35s cubic-bezier(0.4,0,0.2,1); box-shadow: -8px 0 32px rgba(0,0,0,0.4); z-index: 99; }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
  .nav-cta { width: 100%; text-align: center; padding: 0.8rem 1.5rem !important; }
  .hero-content { padding: 7rem 1.5rem 5rem; }
  .hero-badge { display: none; }
  .hero-scroll-hint { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .section { padding: 4rem 0; }
  .container { padding: 0 1.5rem; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip .strip-photo { height: 320px; min-height: unset; }
  .strip-right .strip-photo { order: -1; }
  .photo-strip .strip-text { padding: 3rem 1.5rem; }
  .strip-body { max-width: 100%; }
  .strip-number { font-size: 5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { flex-direction: column; }
  .stat { flex: 1 1 100%; }
  .stat-divider { width: 60px; height: 1px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
  .mission-pillars { grid-template-columns: 1fr; }
  .page-hero { height: 50vh; }
  .contact-hero { padding: 8rem 0 4rem; }
  .contact-form-wrap { padding: 2rem 1.5rem; }
  .coming-soon-logo { height: 80px; }
  .coming-soon-actions { flex-direction: column; align-items: center; }
  .coming-soon-actions .btn { width: 100%; max-width: 300px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: clamp(3rem, 16vw, 5rem); }
  .section-heading { font-size: clamp(2rem, 9vw, 3rem); }
  .nav-logo img { height: 44px; }
}