/* Coverage By Adam — styles.css */
:root {
  --navy: #0a1628;
  --navy-mid: #0f2040;
  --navy-light: #1a3a5c;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gray: #6b7280;
  --light-gray: #e5e7eb;
  --text: #1a2535;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,0.97); backdrop-filter: blur(12px);
  padding: 16px 48px; display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(201,168,76,0.2); transition: padding 0.3s ease;
}
nav.scrolled { padding: 12px 48px; }
.nav-brand { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--white); }
.nav-brand span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; align-items: center; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 10px 24px; border-radius: 4px; font-weight: 600 !important; font-size: 13px !important; letter-spacing: 0.5px; }
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all 0.3s; border-radius: 2px; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%); padding-top: 10px;
  min-width: 200px; z-index: 500; list-style: none;
}
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: 10px; left: 0; right: 0; bottom: 0;
  background: rgba(10,22,40,0.98); border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.5); z-index: -1;
}
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu li a {
  position: relative; z-index: 1; display: block; padding: 10px 18px;
  font-size: 14px; font-weight: 500; color: #c9a84c;
  text-decoration: none; white-space: nowrap; transition: color .15s, background .15s;
}
.nav-dropdown-menu li:first-child a { border-radius: 8px 8px 0 0; }
.nav-dropdown-menu li:last-child a  { border-radius: 0 0 8px 8px; }
.nav-dropdown-menu li a:hover { color: #e8c96a; background: rgba(201,168,76,0.08); }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
@media (max-width: 768px) {
  .nav-dropdown-menu { position: static; transform: none; padding-top: 0; min-width: 0; }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu li a { color: #c9a84c; padding: 10px 0 10px 20px; }
}

/* HERO */
.hero { min-height: 100vh; background: var(--navy); display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; }
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 80px 48px; display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: center; position: relative; z-index: 1; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 16px; border-radius: 100px; margin-bottom: 24px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px,4vw,52px); font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 24px; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--navy); padding: 16px 32px; border-radius: 4px; font-weight: 700; font-size: 15px; letter-spacing: 0.3px; transition: all 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-call { color: var(--white); font-size: 15px; font-weight: 500; display: flex; align-items: center; gap: 8px; opacity: 0.85; transition: opacity 0.2s; }
.btn-call:hover { opacity: 1; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.5px; }
.hero-photo-wrap { position: relative; }
.hero-photo-corner { position: absolute; top: -12px; right: -12px; width: 80px; height: 80px; border: 3px solid var(--gold); border-radius: 8px; opacity: 0.4; z-index: 0; }
.hero-photo-frame { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.5); }
.hero-photo-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, rgba(10,22,40,0.5) 100%); z-index: 1; pointer-events: none; }
.hero-photo-frame img { width: 100%; height: 520px; object-fit: cover; object-position: center top; }
.hero-photo-badge { position: absolute; bottom: -20px; left: -20px; background: var(--gold); color: var(--navy); padding: 16px 20px; border-radius: 8px; font-weight: 700; font-size: 13px; line-height: 1.4; z-index: 2; box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.hero-photo-badge span { display: block; font-size: 11px; font-weight: 400; opacity: 0.8; margin-top: 2px; }

/* GOLD STRIPE */
.gold-stripe { height: 4px; background: linear-gradient(90deg, var(--navy), var(--gold), var(--gold-light), var(--gold), var(--navy)); }

/* SECTIONS */
.section { padding: 96px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(26px,3vw,40px); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-title.white { color: var(--white); }
.section-sub { font-size: 17px; color: var(--gray); line-height: 1.7; max-width: 600px; }
.section-sub.white { color: rgba(255,255,255,0.65); }

/* WHO I SERVE */
.serve-section { background: var(--off-white); }
.serve-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.serve-card { background: var(--white); border-radius: 12px; padding: 40px 32px; border-top: 4px solid var(--gold); transition: transform 0.2s, box-shadow 0.2s; }
.serve-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(10,22,40,0.1); }
.serve-icon { font-size: 40px; margin-bottom: 20px; display: block; }
.serve-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.serve-card p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }
.card-cta { color: var(--gold); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.card-cta:hover { gap: 10px; }
.card-cta::after { content: '→'; }

/* ABOUT */
.about-section { background: var(--navy); }
.about-inner { display: grid; grid-template-columns: 1fr 440px; gap: 72px; align-items: center; }
.about-quote {
  background: rgba(201,168,76,0.08);
  border: 1.5px solid var(--gold);
  border-left: 4px solid var(--gold);
  padding: 20px 24px; border-radius: 6px;
  margin-top: 24px; font-style: italic;
  font-size: 15px; color: rgba(255,255,255,0.85);
  line-height: 1.6; text-align: center;
}
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.about-pillar { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2); border-radius: 8px; padding: 16px; }
.pillar-icon { font-size: 20px; margin-bottom: 6px; display: block; }
.about-pillar h4 { font-size: 12px; font-weight: 700; color: var(--gold); margin-bottom: 3px; }
.about-pillar p { font-size: 11px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.family-photo-wrap { position: relative; border-radius: 14px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.6); }
.family-photo-wrap::after { content: ''; position: absolute; inset: 0; border: 2px solid rgba(201,168,76,0.25); border-radius: 14px; pointer-events: none; }
.family-photo-wrap img { width: 100%; height: 640px; object-fit: cover; object-position: center top; display: block; }
.family-caption { position: absolute; bottom: 20px; left: 20px; right: 20px; background: rgba(10,22,40,0.88); backdrop-filter: blur(10px); border: 1.5px solid var(--gold); border-radius: 8px; padding: 14px 18px; display: flex; align-items: center; gap: 14px; z-index: 2; }
.caption-heart { width: 22px; height: 22px; flex-shrink: 0; }
.family-caption-text h4 { font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 3px; letter-spacing: 0.3px; }
.family-caption-text p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.4; }

/* WHY CHOOSE ME */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; margin-top: 56px; }
.why-item { text-align: center; padding: 32px 20px; }
.why-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 12px; opacity: 0.8; }
.why-item h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-item p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* CARRIERS — NAVY */
.carriers-section { background: var(--navy); padding: 80px 48px; }
.carriers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 0; }
.carrier-badge { border: 1px solid rgba(201,168,76,0.25); border-radius: 10px; padding: 24px 16px; display: flex; align-items: center; justify-content: center; background: rgba(201,168,76,0.04); min-height: 72px; transition: border-color 0.2s, background 0.2s; }
.carrier-badge:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.carrier-name { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; color: var(--gold); text-align: center; letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.5; }

/* HOW IT WORKS */
.how-section { background: var(--off-white); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.step-card { background: var(--white); border-radius: 12px; padding: 36px 28px 32px; text-align: center; border-bottom: 4px solid var(--gold); box-shadow: 0 4px 24px rgba(10,22,40,0.06); }
.step-num { width: 60px; height: 60px; background: var(--navy); border-radius: 50%; border: 2px solid rgba(201,168,76,0.4); display: grid; place-items: center; margin: 0 auto 22px; font-family: 'DM Sans', sans-serif; font-size: 24px; font-weight: 700; color: var(--gold); line-height: 1; }
.step-card h3 { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.step-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* CONTACT */
.contact-section { background: var(--navy); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-detail { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; color: rgba(255,255,255,0.7); font-size: 15px; }
.contact-detail-icon { width: 44px; height: 44px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-detail a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.contact-detail a:hover { color: var(--gold); }

/* FORMS */
.contact-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 40px; }
.form-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.form-sub { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 28px; line-height: 1.6; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; color: rgba(255,255,255,0.6); margin-bottom: 6px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 12px 16px; color: var(--white); font-size: 15px; font-family: 'DM Sans', sans-serif; transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; background: var(--gold); color: var(--navy); border: none; padding: 16px; border-radius: 6px; font-size: 15px; font-weight: 700; font-family: 'DM Sans', sans-serif; cursor: pointer; margin-top: 8px; transition: all 0.2s; }
.form-submit:hover:not(:disabled) { background: var(--gold-light); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-message { padding: 14px 16px; border-radius: 6px; font-size: 14px; font-weight: 500; margin-top: 12px; display: none; line-height: 1.5; }
.form-message.success { background: rgba(22,163,74,0.15); border: 1px solid rgba(22,163,74,0.4); color: #4ade80; display: block; }
.form-message.error { background: rgba(220,38,38,0.15); border: 1px solid rgba(220,38,38,0.4); color: #f87171; display: block; }
.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(10,22,40,0.3); border-top-color: var(--navy); border-radius: 50%; animation: spin 0.6s linear infinite; margin-right: 8px; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }

/* RECRUITING */
.recruiting-section { background: var(--off-white); border-top: 4px solid var(--gold); }
.recruiting-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.recruiting-bullets { list-style: none; margin: 28px 0 36px; }
.recruiting-bullets li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--text); padding: 10px 0; border-bottom: 1px solid var(--light-gray); font-weight: 500; }
.recruiting-bullets li::before { content: '✓'; width: 24px; height: 24px; background: var(--gold); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.recruiting-form { background: var(--white); border-radius: 12px; padding: 40px; border: 1px solid var(--light-gray); box-shadow: 0 8px 32px rgba(10,22,40,0.06); }
.recruiting-form .form-group label { color: var(--gray); }
.recruiting-form .form-group input, .recruiting-form .form-group select, .recruiting-form .form-group textarea { background: var(--off-white); border: 1px solid var(--light-gray); color: var(--text); }
.recruiting-form .form-group input:focus, .recruiting-form .form-group select:focus, .recruiting-form .form-group textarea:focus { border-color: var(--gold); }
.recruiting-form .form-message.success { background: rgba(22,163,74,0.1); border: 1px solid rgba(22,163,74,0.3); color: #15803d; }
.recruiting-form .form-message.error { background: rgba(220,38,38,0.1); border: 1px solid rgba(220,38,38,0.3); color: #b91c1c; }
.recruiting-form .form-submit { background: var(--navy); color: var(--white); }

/* FLOATING ELEMENTS */
.float-call { position: fixed; bottom: 24px; right: 24px; z-index: 999; background: var(--gold); color: var(--navy); padding: 14px 20px; border-radius: 50px; font-weight: 700; font-size: 14px; display: none; align-items: center; gap: 8px; box-shadow: 0 8px 24px rgba(201,168,76,0.4); transition: all 0.2s; }
.float-call:hover { background: var(--gold-light); transform: translateY(-2px); }
.sticky-quote { position: fixed; top: 50%; right: 0; z-index: 997; transform: translateY(-50%); background: var(--gold); color: var(--navy); writing-mode: vertical-rl; padding: 20px 10px; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 4px 0 0 4px; box-shadow: -4px 0 16px rgba(0,0,0,0.2); transition: all 0.2s; text-decoration: none; }
.sticky-quote:hover { background: var(--gold-light); padding-right: 14px; }
.scroll-top { position: fixed; bottom: 24px; left: 24px; z-index: 996; width: 44px; height: 44px; background: var(--navy); border: 1px solid rgba(201,168,76,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 20px; cursor: pointer; opacity: 0; transform: translateY(10px); transition: all 0.3s; box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); color: var(--navy); }
.reading-progress { position: fixed; top: 0; left: 0; z-index: 1001; height: 3px; background: var(--gold); width: 0%; transition: width 0.1s linear; }
.announcement-bar { background: var(--gold); color: var(--navy); text-align: center; padding: 10px 20px; font-size: 13px; font-weight: 600; position: relative; z-index: 999; }
.announcement-bar a { color: var(--navy); text-decoration: underline; }
.announcement-close { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 18px; cursor: pointer; color: var(--navy); }



/* FOOTER */
footer { background: var(--navy); border-top: 1px solid rgba(201,168,76,0.2); padding: 48px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer-brand-name span { color: var(--gold); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 20px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: all 0.2s; }
.footer-social a:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.footer-legal { font-size: 11px; color: rgba(255,255,255,0.25); line-height: 1.7; max-width: 700px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

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

/* PERFORMANCE */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .fade-up { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* TABLET */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,22,40,0.98); padding: 24px 20px 32px; border-top: 1px solid rgba(201,168,76,0.2); gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a { display: block; padding: 14px 4px; font-size: 16px; }
  .nav-links .nav-cta { display: block; margin-top: 16px; text-align: center; padding: 14px 24px !important; }
  .nav-toggle { display: block; }
  .hero { padding-top: 70px; }
  .hero-inner { grid-template-columns: 1fr; padding: 24px 20px 72px; gap: 0; }
  .hero-photo-wrap { order: -1; margin-bottom: 32px; }
  .hero-photo-corner { display: none; }
  .hero-photo-frame img { height: 280px; }
  .hero-photo-badge { left: 12px; bottom: -14px; font-size: 12px; padding: 10px 14px; }
  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 15px; }
  .btn-primary { padding: 14px 28px; font-size: 15px; width: 100%; text-align: center; }
  .btn-call { justify-content: center; width: 100%; padding: 12px; background: rgba(255,255,255,0.06); border-radius: 4px; border: 1px solid rgba(255,255,255,0.12); }
  .hero-stats { gap: 16px; margin-top: 32px; padding-top: 32px; }
  .section { padding: 56px 20px; }
  .serve-grid, .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-inner, .contact-inner, .recruiting-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-pillars { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-quote { margin-top: 20px; }
  .family-photo-wrap { margin-top: 16px; }
  .family-photo-wrap img { height: 400px; }
  .family-caption { bottom: 12px; left: 12px; right: 12px; padding: 12px 14px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .carriers-section { padding: 56px 20px; }
  .carriers-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  footer { padding: 40px 20px; }
  .float-call { display: flex; }
  .sticky-quote { display: none; }
  .scroll-top { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .carriers-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 24px; }
}

@media (hover: none) and (pointer: coarse) {
  .btn-primary, .form-submit, .nav-links a, .card-cta { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .serve-card:hover, .btn-primary:hover { transform: none; box-shadow: none; }
}