/* ==========================================================================
   CanadaWide Supply Store Ltd. — Design System
   --------------------------------------------------------------------------
   Mobile-first responsive design.
   Brand palette: deep navy + red accent + light backgrounds.
   Typography: Inter for UI, Roboto Slab for headings (loaded from Google Fonts).
   Breakpoints:
     - Default: mobile (<768px)
     - Tablet:  >=768px
     - Desktop: >=1024px
     - Wide:    >=1280px
   ========================================================================== */

/* ===== RESET & ROOT ====================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ===== DESIGN TOKENS ===================================================== */
:root {
  /* Brand palette — deep navy + red */
  --navy:        #0f1e3a;    /* deepest navy, headers, dark sections */
  --navy-2:      #1a2c4e;    /* secondary navy, hover states */
  --navy-3:      #2a3f63;    /* tertiary, dividers in dark contexts */
  --red:         #c8102e;    /* primary CTA, accents (matches logo) */
  --red-2:       #a40d24;    /* red hover */
  --red-tint:    #fce8eb;    /* red wash for tags/badges */
  --gold:        #f4b740;    /* warmth accent for highlights */
  --gold-tint:   #fff4d6;

  /* Neutrals */
  --ink:         #1a1f2c;    /* primary text on light */
  --ink-2:       #4a5468;    /* secondary text */
  --ink-3:       #6b7384;    /* tertiary, captions */
  --mute:        #98a0b0;    /* placeholders */
  --line:        #e3e7ed;    /* borders */
  --line-2:      #d4dae3;    /* stronger borders */
  --bg:          #ffffff;
  --bg-soft:     #f7f9fc;    /* alt section background */
  --bg-mid:      #eef2f7;    /* deeper alt */

  /* Status */
  --success:     #197a3c;
  --warning:     #8a5a00;

  /* Layout */
  --container:   1280px;     /* max content width */
  --gutter:      20px;       /* horizontal page padding */
  --gutter-lg:   40px;       /* on wider viewports */

  /* Radii */
  --r-sm: 3px;
  --r-md: 6px;
  --r-lg: 10px;

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(15, 30, 58, 0.06);
  --shadow-md:  0 4px 12px rgba(15, 30, 58, 0.08);
  --shadow-lg:  0 12px 28px rgba(15, 30, 58, 0.12);

  /* Header height (used for sticky-offset calculations) */
  --header-h:   58px;
  --nav-h:      48px;

  /* Z-stack */
  --z-banner:   60;
  --z-header:   100;
  --z-nav:      90;
  --z-drawer:   200;
  --z-modal:    300;
}

/* Tablet up: increase gutter, body size */
@media (min-width: 768px) {
  body { font-size: 16px; }
  :root { --gutter: 28px; --header-h: 70px; --nav-h: 52px; }
}
@media (min-width: 1024px) {
  :root { --gutter: 40px; }
}

/* ===== TYPOGRAPHY ======================================================== */
h1, h2, h3, h4, h5 {
  font-family: 'Roboto Slab', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: 30px; }
h2 { font-size: 24px; }
h3 { font-size: 19px; }
h4 { font-size: 16px; }
h5 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--ink-2); }
p  { color: var(--ink-2); }

@media (min-width: 768px) {
  h1 { font-size: 38px; }
  h2 { font-size: 28px; }
  h3 { font-size: 21px; }
}
@media (min-width: 1024px) {
  h1 { font-size: 46px; }
  h2 { font-size: 32px; }
  h3 { font-size: 22px; }
}

/* Utility text */
.eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--red);
}
.lead {
  font-size: 16px; color: var(--ink-2); line-height: 1.6;
}
@media (min-width: 768px) { .lead { font-size: 17px; } }

/* ===== LAYOUT PRIMITIVES ================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: 48px 0; }
.section-tight { padding: 32px 0; }
.section-alt { background: var(--bg-soft); }
.section-dark { background: var(--navy); color: #ffffff; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #ffffff; }
.section-dark p { color: rgba(255, 255, 255, 0.78); }

@media (min-width: 768px) { .section { padding: 64px 0; } }
@media (min-width: 1024px) { .section { padding: 80px 0; } }

/* ===== BUTTONS =========================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px;
  font-size: 14px; font-weight: 600;
  border-radius: var(--r-sm);
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  white-space: nowrap;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--red); color: #fff;
}
.btn-primary:hover { background: var(--red-2); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: var(--navy); color: #fff;
}
.btn-secondary:hover { background: var(--navy-2); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent; color: var(--navy); border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-block { width: 100%; }

/* ===== TOP PROMO BANNER ================================================== */
.promo-banner {
  background: var(--navy);
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  text-align: center;
  padding: 8px var(--gutter);
  line-height: 1.4;
}
.promo-banner b { color: var(--gold); font-weight: 700; }
.promo-banner .sep { margin: 0 10px; opacity: 0.4; }
@media (max-width: 767px) {
  .promo-banner .sep,
  .promo-banner .hide-mobile { display: none; }
  .promo-banner .show-mobile { display: inline; }
}
@media (min-width: 768px) {
  .promo-banner .show-mobile { display: none; }
}

/* ===== HEADER ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.header-top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: flex; align-items: center; gap: 16px;
}
/* Hamburger button for mobile */
.menu-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  color: var(--navy);
}
.menu-toggle:hover { background: var(--bg-soft); }
.menu-toggle svg { width: 22px; height: 22px; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Logo
   The logo must NEVER be clipped. The source PNG is 958×260 (3.68:1 aspect ratio).
   At each breakpoint we set min-width to match the natural width at that height,
   so flex siblings (search bar) cannot squeeze the logo. */
.site-logo {
  display: block;
  height: 36px;
  flex-shrink: 0;
  min-width: 135px;  /* 36px × 3.68 ≈ 133, plus 2px slack */
}
.site-logo img {
  height: 100%;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
}
@media (min-width: 768px) {
  .site-logo { height: 44px; min-width: 165px; }  /* 44 × 3.68 ≈ 162 */
}
@media (min-width: 1024px) {
  .site-logo { height: 50px; min-width: 188px; margin-right: 8px; }  /* 50 × 3.68 ≈ 184 */
}

/* Search */
.header-search {
  flex: 1 1 auto;
  min-width: 0;       /* allow shrinking when space gets tight */
  display: flex;
  max-width: 640px;
  margin: 0 auto;
}
.header-search input {
  flex: 1;
  min-width: 0;
  border: 1.5px solid var(--line-2);
  border-right: 0;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  outline: none;
  background: #fff;
  color: var(--ink);
}
.header-search input:focus { border-color: var(--navy); }
.header-search input::placeholder { color: var(--mute); }
.header-search button {
  background: var(--red);
  color: #fff;
  border: 0;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  display: flex; align-items: center; gap: 6px;
}
.header-search button:hover { background: var(--red-2); }
.header-search button .label { display: none; }
@media (min-width: 768px) {
  .header-search button { padding: 0 22px; }
  .header-search button .label { display: inline; }
}

/* Header right-side actions */
.header-actions {
  display: none;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-actions .phone {
  font-size: 14px; font-weight: 700; color: var(--navy);
  line-height: 1.2;
}
.header-actions .phone span {
  display: block; font-size: 11px; color: var(--ink-3); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.header-actions .phone:hover { color: var(--red); }
@media (min-width: 1024px) { .header-actions { display: flex; } }

/* Mobile-only mini phone button */
.mobile-phone-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--red); color: #fff;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.mobile-phone-btn svg { width: 18px; height: 18px; }
@media (min-width: 1024px) { .mobile-phone-btn { display: none; } }

/* ===== MEGA-MENU NAV (DESKTOP) =========================================== */
.main-nav {
  background: var(--navy);
  border-top: 3px solid var(--red);
  display: none;
  position: relative;
  z-index: var(--z-nav);
}
@media (min-width: 1024px) { .main-nav { display: block; } }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: stretch;
}
.nav-item {
  position: relative;
}
.nav-item > a {
  display: flex; align-items: center; gap: 5px;
  padding: 14px 18px;
  color: #fff;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.2px;
  transition: background 0.15s;
}
.nav-item > a:hover,
.nav-item.has-flyout:hover > a,
.nav-item > a.active {
  background: var(--navy-2);
  color: var(--gold);
}
.nav-item .caret { font-size: 9px; opacity: 0.7; }
.nav-cta { margin-left: auto; }
.nav-cta > a {
  background: var(--red);
  margin: 8px 0;
  border-radius: var(--r-sm);
  padding: 8px 18px !important;
}
.nav-cta > a:hover { background: var(--red-2); color: #fff !important; }

/* Flyout panels — mega-menu */
.flyout {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 600px;
  background: #fff;
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  display: none;
  border-top: 3px solid var(--red);
}
.nav-item.has-flyout:hover .flyout { display: block; }
.flyout.wide { min-width: 880px; }
.flyout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 24px;
}
.flyout-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.flyout-col ul li a {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}
.flyout-col ul li a:hover { color: var(--red); padding-left: 4px; transition: padding 0.15s; }

.flyout-feature {
  background: var(--bg-soft);
  border-radius: var(--r-md);
  padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.flyout-feature h4 {
  font-family: 'Roboto Slab', serif;
  font-size: 15px; color: var(--navy); border: 0; padding: 0;
  text-transform: none; letter-spacing: 0;
}
.flyout-feature p { font-size: 12px; color: var(--ink-3); }
.flyout-feature .btn { align-self: flex-start; margin-top: 6px; }

/* ===== MOBILE DRAWER ===================================================== */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(15, 30, 58, 0.6);
  z-index: calc(var(--z-drawer) - 1);
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed;
  top: 0; left: 0;
  height: 100dvh;
  width: 88%; max-width: 360px;
  background: #fff;
  z-index: var(--z-drawer);
  transform: translateX(-100%);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-header {
  padding: 16px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: var(--navy); color: #fff;
}
.drawer-header .site-logo { height: 36px; }
.drawer-header .site-logo img { filter: brightness(0) invert(1); }
.drawer-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  color: #fff;
}
.drawer-close svg { width: 22px; height: 22px; }
.drawer-search {
  padding: 14px var(--gutter); border-bottom: 1px solid var(--line);
}
.drawer-search > div { display: flex; }
.drawer-search input {
  flex: 1; min-width: 0;
  border: 1.5px solid var(--line-2); border-right: 0;
  padding: 10px 12px; font-size: 14px;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  outline: none;
}
.drawer-search button {
  background: var(--red); color: #fff; padding: 0 16px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 13px; font-weight: 600;
}
.drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}
.drawer-item {
  border-bottom: 1px solid var(--line);
}
.drawer-item > a, .drawer-item > button {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 14px var(--gutter);
  font-size: 15px; font-weight: 600; color: var(--ink);
  text-align: left;
}
.drawer-item > a:hover, .drawer-item > button:hover { background: var(--bg-soft); }
.drawer-item .chev { font-size: 12px; color: var(--ink-3); transition: transform 0.15s; }
.drawer-item.open .chev { transform: rotate(90deg); color: var(--red); }
.drawer-sub {
  display: none;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.drawer-item.open .drawer-sub { display: block; }
.drawer-sub a {
  display: block;
  padding: 11px var(--gutter) 11px 36px;
  font-size: 14px; color: var(--ink-2); font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.drawer-sub a:last-child { border-bottom: 0; }
.drawer-sub a:hover { color: var(--red); background: #fff; }

.drawer-cta {
  padding: 16px var(--gutter);
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  display: grid; gap: 8px;
}

/* ===== HERO ============================================================== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #142745 50%, var(--navy-2) 100%);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 88px 0; } }
@media (min-width: 1024px) { .hero { padding: 112px 0 96px; } }

/* Decorative red accent stripe */
.hero::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 50%, var(--red) 100%);
}
/* Subtle grid texture */
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.hero .eyebrow { color: var(--gold); margin-bottom: 14px; display: inline-block; }
.hero h1 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 16px;
}
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 620px;
}
.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
}
@media (min-width: 768px) {
  .hero h1 { font-size: 44px; }
  .hero p { font-size: 18px; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 54px; line-height: 1.1; }
  .hero p { font-size: 19px; }
}

/* Trust strip — sits below hero */
.trust-strip {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px var(--gutter);
}
.trust-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
@media (min-width: 768px) {
  .trust-strip-inner { grid-template-columns: repeat(4, 1fr); }
}

/* ===== SECTION HEADINGS ================================================== */
.section-head {
  text-align: center;
  margin-bottom: 36px;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.section-head .eyebrow { margin-bottom: 12px; display: inline-block; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { font-size: 15px; }
@media (min-width: 768px) {
  .section-head { margin-bottom: 48px; }
  .section-head p { font-size: 17px; }
}

/* ===== CATEGORY GRID ===================================================== */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 540px) { .cat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.cat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 22px;
  transition: all 0.2s;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.cat-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.cat-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--red); opacity: 0; transition: opacity 0.2s;
}
.cat-card:hover::before { opacity: 1; }
.cat-icon {
  width: 56px; height: 56px;
  background: var(--red-tint);
  color: var(--red);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background 0.2s, color 0.2s;
}
.cat-card:hover .cat-icon { background: var(--red); color: #fff; }
.cat-icon svg { width: 30px; height: 30px; }
.cat-card h3 { font-size: 19px; margin-bottom: 8px; }
.cat-card p { font-size: 14px; color: var(--ink-3); margin-bottom: 18px; flex: 1; }
.cat-card .cat-link {
  font-size: 13px; font-weight: 700;
  color: var(--red);
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
}
.cat-card .cat-link::after { content: '→'; transition: transform 0.15s; }
.cat-card:hover .cat-link::after { transform: translateX(4px); }

/* ===== WHY US ============================================================ */
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 540px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-item {
  display: flex; flex-direction: column; gap: 10px;
}
.why-icon {
  width: 44px; height: 44px;
  background: var(--navy); color: var(--gold);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 22px; height: 22px; }
.why-item h4 { font-size: 15px; font-family: 'Inter', sans-serif; font-weight: 700; }
.why-item p { font-size: 13px; color: var(--ink-3); line-height: 1.55; }

/* ===== INDUSTRIES ======================================================== */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 540px) { .ind-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .ind-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; } }

.ind-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 12px;
  text-align: center;
  transition: all 0.2s;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.ind-tile:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}
.ind-tile:hover .ind-icon { color: var(--gold); }
.ind-icon { color: var(--navy); transition: color 0.2s; }
.ind-icon svg { width: 24px; height: 24px; }
.ind-tile span { font-size: 12px; font-weight: 600; line-height: 1.25; }
@media (min-width: 768px) {
  .ind-tile { padding: 22px 14px; gap: 10px; }
  .ind-icon svg { width: 28px; height: 28px; }
  .ind-tile span { font-size: 13px; }
}

/* ===== CUSTOM PACKAGING SPOTLIGHT ======================================== */
.spotlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) { .spotlight { grid-template-columns: 1.1fr 1fr; gap: 56px; } }

.spotlight-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  box-shadow: var(--shadow-lg);
}
/* When .spotlight-visual contains a real photo, hide the navy/grid background
   and let the photo fill the entire container. */
.spotlight-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--r-lg);
}
.spotlight-content .eyebrow { color: var(--red); margin-bottom: 12px; display: inline-block; }
.spotlight-content h2 { margin-bottom: 14px; }
.spotlight-content p { font-size: 15px; margin-bottom: 22px; }
.spotlight-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px;
  margin-bottom: 26px;
}
.spotlight-feature {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.spotlight-feature svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }

/* ===== BOTTOM RFQ CTA ==================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 56px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}
.cta-banner-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.cta-banner .eyebrow { color: var(--gold); margin-bottom: 12px; display: inline-block; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 26px; }
.cta-banner .cta-row {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
@media (min-width: 768px) { .cta-banner { padding: 80px var(--gutter); } }

/* ===== FOOTER ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 48px var(--gutter) 24px;
  border-top: 3px solid var(--red);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 540px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; } }

.footer-brand .footer-logo {
  height: 40px; margin-bottom: 16px;
}
.footer-brand .footer-logo img { height: 100%; width: auto; }
.footer-brand p { font-size: 13px; line-height: 1.6; max-width: 280px; }
.footer-brand .footer-contact { margin-top: 18px; font-size: 13px; line-height: 1.8; }
.footer-brand .footer-contact a { color: rgba(255,255,255,0.9); }
.footer-brand .footer-contact a:hover { color: var(--gold); }
.footer-brand .footer-contact strong { color: var(--gold); display: block; font-weight: 700; }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  color: #fff; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 14px; font-weight: 700;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 13px; color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-rfq {
  background: var(--navy-2);
  border-radius: var(--r-md);
  padding: 18px;
}
.footer-rfq h4 { color: var(--gold); margin-bottom: 8px; }
.footer-rfq p { font-size: 12px; color: rgba(255,255,255,0.75); margin-bottom: 12px; }

.footer-bottom {
  max-width: var(--container);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ===== HELPERS =========================================================== */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.hide-mobile { display: none; }
.hide-desktop { display: initial; }
@media (min-width: 1024px) {
  .hide-mobile { display: initial; }
  .hide-desktop { display: none; }
}

/* Locked scroll when drawer open */
body.drawer-open { overflow: hidden; }
