/* ============================================
   TRUE NORTH LIMOS — SHARED DESIGN SYSTEM
   ============================================ */

:root {
  --navy: #0A0E1A;
  --navy-mid: #111827;
  --navy-light: #1a2235;
  --gold: #C9A84C;
  --gold-light: #e2c46e;
  --gold-dark: #B8860B;
  --cream: #F5F0E8;
  --white: #ffffff;
  --gray: #9ca3af;
  --gray-light: #d1d5db;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;

  --max-width: 1280px;
  --radius: 6px;
  --radius-lg: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html { overflow-x: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

a { color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 2000;
  background: var(--gold); color: var(--navy); padding: 10px 18px;
  border-radius: var(--radius); font-weight: 700; font-size: 13px; text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ── TOP BAR ── */
.topbar { background: #060810; padding: 10px 0; border-bottom: 1px solid rgba(201,168,76,0.2); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--gray-light); text-decoration: none; font-size: 13px; font-weight: 400; letter-spacing: 0.03em; display: flex; align-items: center; gap: 7px; transition: color 0.2s; }
.topbar a:hover, .topbar a:focus-visible { color: var(--gold); text-decoration: underline; }
.topbar a i { color: var(--gold); font-size: 14px; }
.topbar-right { display: flex; gap: 24px; }

/* ── NAVBAR ── */
nav.main-nav { background: rgba(10,14,26,0.97); backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(201,168,76,0.15); transition: box-shadow 0.3s; }
nav.main-nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.6); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-icon { width: 44px; height: 44px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text span:first-child { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.logo-text span:last-child { font-size: 9px; letter-spacing: 0.22em; color: var(--gray); text-transform: uppercase; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 1px; flex-wrap: nowrap; }
.nav-links > li { position: relative; }
.nav-links a { color: var(--gray-light); text-decoration: none; font-size: 11px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; padding: 8px 9px; border-radius: 4px; transition: color 0.2s, background 0.2s; white-space: nowrap; display: block; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--gold); background: rgba(201,168,76,0.06); text-decoration: underline; }
.nav-links a[aria-current="page"] { color: var(--gold); position: relative; }
.nav-links a[aria-current="page"]::after { content: ''; position: absolute; bottom: 2px; left: 9px; right: 9px; height: 2px; background: var(--gold); border-radius: 2px; }

.dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 5px; }
.dropdown-toggle .chev { font-size: 9px; transition: transform 0.2s; }
.dropdown:hover .dropdown-toggle .chev, .dropdown:focus-within .dropdown-toggle .chev { transform: rotate(180deg); }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; margin-top: 8px; background: var(--navy-mid); border: 1px solid rgba(201,168,76,0.2); border-radius: 8px; min-width: 240px; padding: 8px 0; box-shadow: 0 20px 40px rgba(0,0,0,0.5); list-style: none; }
.dropdown-menu::before { content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a { padding: 10px 18px; border-radius: 0; font-size: 12px; }
.dropdown-menu a[aria-current="page"]::after { display: none; }
.dropdown-menu a[aria-current="page"] { background: rgba(201,168,76,0.08); }

.btn-call-nav { background: var(--gold) !important; color: var(--navy) !important; font-weight: 700 !important; padding: 10px 20px !important; border-radius: 4px; transition: background 0.2s !important; display: flex !important; align-items: center; gap: 6px; text-decoration: none !important; }
.btn-call-nav:hover, .btn-call-nav:focus-visible { background: var(--gold-light) !important; color: var(--navy) !important; }
.btn-call-nav i { color: var(--navy) !important; font-size: 13px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: all 0.3s; display: block; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { visibility: hidden; position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 86vw); background: var(--navy-mid); z-index: 1100; padding: 24px; overflow-y: auto; transform: translateX(100%); transition: transform 0.3s ease, visibility 0.3s; box-shadow: -20px 0 60px rgba(0,0,0,0.5); }
.mobile-menu.open { visibility: visible; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1050; opacity: 0; transition: opacity 0.3s; }
.mobile-menu-overlay.open { opacity: 1; }
.mobile-menu-header { display: flex; justify-content: flex-end; margin-bottom: 24px; }
.mobile-menu-close { background: none; border: none; color: var(--gray-light); font-size: 22px; cursor: pointer; padding: 6px; }
.mobile-menu a { display: block; color: var(--gray-light); text-decoration: none; padding: 13px 4px; font-size: 14px; letter-spacing: 0.03em; border-bottom: 1px solid rgba(201,168,76,0.1); }
.mobile-menu a[aria-current="page"] { color: var(--gold); font-weight: 600; }
.mobile-submenu { padding-left: 14px; }
.mobile-submenu a { font-size: 13px; color: var(--gray); padding: 11px 4px; }
.mobile-menu .btn-primary { margin-top: 20px; width: 100%; justify-content: center; }

/* ── HERO GRID (home page) ── */
.hero-grid { display: grid; grid-template-columns: 1fr 440px; gap: 60px; align-items: center; width: 100%; }
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* ── SECTIONS / GENERIC ── */
section { padding: 96px 24px; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-label { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.section-desc { color: var(--gray); font-size: 15px; max-width: 620px; line-height: 1.7; margin-bottom: 48px; }
.bg-mid { background: var(--navy-mid); }

h1, h2, h3 { font-family: var(--font-display); }
h1 em, h2 em { color: var(--gold); font-style: italic; }

/* ── BREADCRUMBS ── */
.breadcrumbs { padding: 18px 24px; border-bottom: 1px solid rgba(201,168,76,0.1); }
.breadcrumbs ol { display: flex; gap: 8px; flex-wrap: wrap; max-width: var(--max-width); margin: 0 auto; font-size: 12px; }
.breadcrumbs a { color: var(--gray); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold); text-decoration: underline; }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 8px; color: rgba(201,168,76,0.4); }
.breadcrumbs li[aria-current] { color: var(--gold-light); }

/* ── PAGE HERO (service/interior pages) ── */
.page-hero { padding: 64px 24px 72px; background: linear-gradient(135deg, rgba(10,14,26,0.92) 0%, rgba(10,14,26,0.7) 100%); position: relative; border-bottom: 1px solid rgba(201,168,76,0.12); }
.page-hero-inner { max-width: var(--max-width); margin: 0 auto; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600; line-height: 1.2; margin-bottom: 16px; }
.page-hero p { color: var(--gray-light); font-size: 16px; max-width: 680px; line-height: 1.7; }

/* ── BUTTONS ── */
.btn-primary, .btn-outline, .btn-quote, .btn-ghost {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 4px; cursor: pointer; text-decoration: none; display: inline-flex;
  align-items: center; gap: 8px; transition: background 0.2s, transform 0.2s, border-color 0.2s, color 0.2s;
  border: none; padding: 14px 30px;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover, .btn-outline:focus-visible { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-ghost { background: rgba(201,168,76,0.08); color: var(--gold); border: 1px solid rgba(201,168,76,0.25); padding: 11px 22px; font-size: 12px; }
.btn-ghost:hover, .btn-ghost:focus-visible { background: rgba(201,168,76,0.16); }
.btn-quote { width: 100%; background: var(--gold); color: var(--navy); padding: 14px; font-size: 13px; letter-spacing: 0.1em; border-radius: 6px; justify-content: center; }
.btn-quote:hover, .btn-quote:focus-visible { background: var(--gold-light); }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ── CARDS (services / vehicles grids) ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.card { background: var(--navy); border: 1px solid rgba(201,168,76,0.12); border-radius: 10px; padding: 32px 26px; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; }
.card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.card-icon { width: 52px; height: 52px; border-radius: 10px; background: rgba(201,168,76,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--gold); font-size: 22px; }
.card h3 { font-size: 21px; font-weight: 600; margin-bottom: 10px; color: var(--white); }
.card p { color: var(--gray); font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.card a.card-link { color: var(--gold); font-size: 12.5px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; letter-spacing: 0.03em; }
.card a.card-link:hover { text-decoration: underline; }

/* ── VEHICLE CARD (fleet) ── */
.vehicle-card { background: var(--navy-mid); border: 1px solid rgba(201,168,76,0.12); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.vehicle-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(0,0,0,0.45); }
.vehicle-img { aspect-ratio: 16/10; background: var(--navy); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.vehicle-img img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-body { padding: 26px; }
.vehicle-body h3 { font-size: 22px; margin-bottom: 6px; }
.vehicle-tagline { color: var(--gold); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 14px; }
.vehicle-specs { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 16px; padding: 14px 0; border-top: 1px solid rgba(201,168,76,0.1); border-bottom: 1px solid rgba(201,168,76,0.1); }
.vehicle-specs div { font-size: 12.5px; color: var(--gray-light); display: flex; align-items: center; gap: 6px; }
.vehicle-specs i { color: var(--gold); }
.vehicle-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.vehicle-features span { font-size: 11px; color: var(--gray-light); background: rgba(255,255,255,0.04); padding: 5px 10px; border-radius: 20px; border: 1px solid rgba(201,168,76,0.1); }

/* ── FORMS ── */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
.form-group select, .form-group input, .form-group textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2); border-radius: 6px; padding: 11px 14px; color: var(--white); font-size: 13px; font-family: var(--font-body); outline: none; transition: border-color 0.2s; appearance: none; }
.form-group select:focus, .form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quote-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius-lg); padding: 32px 28px; }
.quote-card h3 { font-size: 22px; margin-bottom: 8px; }
.quote-card > p { font-size: 12.5px; color: var(--gray); margin-bottom: 22px; line-height: 1.5; }

/* ── FAQ ACCORDION ── */
.faq-item { border-bottom: 1px solid rgba(201,168,76,0.12); }
.faq-question { width: 100%; text-align: left; background: none; border: none; color: var(--white); font-size: 16px; font-weight: 600; padding: 20px 4px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-body); }
.faq-question:hover, .faq-question:focus-visible { color: var(--gold); }
.faq-question .icon { color: var(--gold); flex-shrink: 0; transition: transform 0.25s; font-size: 14px; }
.faq-question[aria-expanded="true"] .icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 4px 20px; color: var(--gray-light); font-size: 14.5px; line-height: 1.75; }

/* ── CTA BANDS ── */
.cta-band { background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%); border-top: 1px solid rgba(201,168,76,0.15); border-bottom: 1px solid rgba(201,168,76,0.15); text-align: center; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--gray-light); max-width: 560px; margin: 0 auto 28px; line-height: 1.7; }
.cta-band .cta-row { justify-content: center; }

/* ── RELATED SERVICES ── */
.related-services { background: var(--navy-mid); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.related-card { background: var(--navy); border: 1px solid rgba(201,168,76,0.1); border-radius: 8px; padding: 22px; text-decoration: none; transition: border-color 0.2s, transform 0.2s; display: block; }
.related-card:hover, .related-card:focus-visible { border-color: var(--gold); transform: translateY(-2px); }
.related-card i { color: var(--gold); font-size: 18px; margin-bottom: 10px; display: block; }
.related-card h3 { font-size: 15px; color: var(--white); margin-bottom: 6px; }
.related-card p { font-size: 12.5px; color: var(--gray); line-height: 1.5; }

/* ── PROSE (long-form service content) ── */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin: 44px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 18px; color: var(--gold-light); margin: 28px 0 12px; }
.prose p { color: var(--gray-light); font-size: 15.5px; line-height: 1.8; margin-bottom: 18px; }
.prose ul { margin: 0 0 18px 0; }
.prose ul li { color: var(--gray-light); font-size: 15px; line-height: 1.7; padding-left: 22px; position: relative; margin-bottom: 8px; }
.prose ul li::before { content: '✓'; color: var(--gold); font-weight: 700; position: absolute; left: 0; }
.prose strong { color: var(--white); }

/* ── TWO COLUMN LAYOUT ── */
.two-col { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }
.sticky-aside { position: sticky; top: 96px; }

/* ── STATS STRIP ── */
.stats-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 28px; padding: 36px 0; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--gold); font-weight: 700; display: block; }
.stat .label { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); margin-top: 6px; }

/* ── FOOTER ── */
footer { background: #060810; border-top: 1px solid rgba(201,168,76,0.15); padding: 64px 24px 28px; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { color: var(--gray); font-size: 13.5px; line-height: 1.7; margin: 16px 0 20px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; color: var(--gold); text-decoration: none; transition: background 0.2s; }
.footer-social a:hover, .footer-social a:focus-visible { background: var(--gold); color: var(--navy); }
.footer-col h3 { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; font-family: var(--font-body); font-weight: 600; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 13.5px; color: var(--gray); text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 7px; }
.footer-col ul li a:hover, .footer-col ul li a:focus-visible { color: var(--gold); text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(201,168,76,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--gray); }
.footer-bottom a { color: var(--gray); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ── BLOG READ MORE ACCORDION ── */
.blog-readmore-btn { color: var(--gold); font-size: 12.5px; font-weight: 600; letter-spacing: 0.03em; }
.blog-readmore-btn:hover, .blog-readmore-btn:focus-visible { text-decoration: underline; }
.blog-readmore-icon { transition: transform 0.25s; }
.blog-readmore-btn[aria-expanded="true"] .blog-readmore-icon { transform: rotate(90deg); }
.blog-detail { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.blog-detail-inner { padding-top: 14px; }
.blog-detail-inner p { color: var(--gray-light); font-size: 13.5px; line-height: 1.7; }

/* ── SUCCESS MODAL ── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 2000; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--navy-mid); border: 1px solid rgba(201,168,76,0.3); border-radius: var(--radius-lg); padding: 40px 32px; max-width: 420px; text-align: center; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.modal-box .modal-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(201,168,76,0.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--gold); font-size: 24px; }
.modal-box h2 { font-size: 24px; margin-bottom: 12px; }
.modal-box p { color: var(--gray-light); font-size: 14px; line-height: 1.6; margin-bottom: 24px; }

/* ── HONEYPOT (spam-trap field, hidden from real users) ── */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

/* ── FLOATING WHATSAPP BUTTON ── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 1500;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 28px; text-decoration: none; box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover, .whatsapp-float:focus-visible {
  transform: scale(1.08); box-shadow: 0 10px 28px rgba(0,0,0,0.5);
}
@media (max-width: 640px) {
  .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; font-size: 24px; }
}

/* ── FLOATING WHATSAPP BUTTON ── */
.whatsapp-float { position: fixed; bottom: 22px; right: 22px; z-index: 1500; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,0,0,0.4); text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.whatsapp-float:hover, .whatsapp-float:focus-visible { transform: scale(1.08); box-shadow: 0 8px 26px rgba(0,0,0,0.5); }
.whatsapp-float i { color: #ffffff; font-size: 28px; }
@media (max-width: 640px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .whatsapp-float i { font-size: 25px; }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu-overlay { display: none; }
  .mobile-menu-overlay.open { display: block; }
  .two-col { grid-template-columns: 1fr; }
  .sticky-aside { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .topbar-inner { justify-content: center; }
  .topbar a:first-child { display: none; }
  section { padding: 64px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .btn-call-nav span { display: none; }
}
