/* ============================================================
   LARKIN PRODUCTS L.L.C. — styles.css
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #cc0000;
  --red-dark:  #a80000;
  --charcoal:  #333333;
  --gray-mid:  #555555;
  --gray-light:#f5f5f5;
  --white:     #ffffff;
  --border:    #dddddd;
  --font:      'Open Sans', Arial, sans-serif;
}

/* Inline SVG icons (partials/icons.php) — size and colour follow the surrounding text */
.icon { width: 1em; height: 1em; fill: currentColor; display: inline-block; vertical-align: -0.125em; }

body {
  font-family: var(--font);
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

/* ---------- TOP BAR ---------- */
.top-bar {
  background: #5d5d5d;
  color: var(--white);
  font-size: 13px;
  padding: 6px 0;
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-icons {
  display: flex;
  gap: 14px;
}
.top-bar-icons a {
  color: var(--white);
  font-size: 15px;
  transition: color 0.2s;
}
.top-bar-icons a:hover { color: var(--red); }

/* ---------- HEADER / NAV ---------- */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.logo { flex-shrink: 0; }
.logo-img {
  height: 54px;
  width: auto;
  display: block;
}
.logo-img-footer {
  height: 44px;
}

/* Main nav */
.main-nav { flex: 1; }
.main-nav > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
  transition: color 0.2s;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { color: var(--red); }

/* Dropdowns */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  z-index: 200;
}
.dropdown li a {
  display: block;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gray-light);
  transition: background 0.15s, color 0.15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--gray-light); color: var(--red); }
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown { display: block; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.search-btn {
  background: none; border: none; cursor: pointer;
  font-size: 16px; color: var(--charcoal); padding: 6px;
  transition: color 0.2s;
}
.search-btn:hover { color: var(--red); }

.request-call-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.request-call-btn:hover { background: var(--red-dark); }

/* Hamburger */
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  font-size: 22px; color: var(--charcoal);
  margin-left: auto;
  padding: 6px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 340px;
  overflow: hidden;
  background: #888;
}
.hero-image {
  width: 100%;
  min-height: 340px;
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Building hero: standard 340px band, crop biased down to favor the building over the sky */
.hero.hero--building .hero-image img { object-position: center 55%; }

.hero-image.placeholder {
  background: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-placeholder-label {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 14px;
  background: rgba(0,0,0,0.4);
  padding: 8px 16px;
  border-radius: 4px;
}
.hero-image.placeholder .hero-placeholder-label { display: block; }
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  text-align: center;
  padding: 20px;
}
.hero-overlay h1, .hero-overlay .hero-brand {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 10px;
}
.hero-overlay p {
  color: var(--white);
  font-size: 1rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ---------- INTRO / ABOUT ---------- */
.intro { padding: 40px 20px; background: var(--white); }
.intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.intro-text { flex: 1; font-size: 15px; color: var(--gray-mid); line-height: 1.7; }
.intro-text strong { color: var(--charcoal); }
.intro-image { flex-shrink: 0; width: 180px; }
.intro-image img { width: 180px; height: auto; border-radius: 4px; }
.img-placeholder {
  width: 180px; height: 180px;
  background: var(--gray-light);
  border: 1px dashed var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #999;
  font-size: 12px;
  padding: 10px;
}

/* ---------- AUTHORIZED DEALERS ---------- */
.dealers { padding: 40px 20px; background: var(--gray-light); }
.dealers-inner { max-width: 1200px; margin: 0 auto; }
.dealers h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ec1c24;
  margin-bottom: 24px;
}
.carousel-wrapper { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}
.carousel-slide {
  min-width: 25%;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide img {
  max-height: 80px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.2s;
}
.carousel-slide img:hover { filter: none; }
.carousel-slide .img-placeholder {
  width: 140px; height: 80px;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 16px;
}
.carousel-dots .dot {
  width: 24px; height: 24px;          /* 24px tap target (WCAG 2.5.8); the visible dot stays 10px via content-box */
  padding: 7px;
  background-clip: content-box;
  border-radius: 50%;
  background-color: var(--border);
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.carousel-dots .dot.active { background-color: var(--red); }

/* ---------- FOOTER ---------- */
.site-footer { background: #5d5d5d; color: var(--white); padding: 40px 20px 0; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 30px;
  padding-bottom: 30px;
}
.footer-tagline {
  font-size: 13px;
  color: #e0e0e0; /* 5.0:1 on #5d5d5d (WCAG AA; audit L2-12) */
  margin-top: 12px;
  line-height: 1.5;
}
.footer-usa { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.footer-flag {
  flex: 0 0 auto;
  width: 38px;
  line-height: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18);
}
.footer-flag svg { display: block; width: 100%; height: auto; }
.footer-usa-text { color: #fff; font-size: 14px; font-weight: 600; }
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: #e0e0e0; transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }
.footer-contact h2 { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.footer-contact p { font-size: 13px; color: #e0e0e0; margin-bottom: 6px; }
.footer-contact a { color: #e0e0e0; }
.footer-contact a:hover { color: var(--red); }
.footer-icons { display: flex; gap: 12px; margin-top: 12px; }
.footer-icons a { color: #e0e0e0; font-size: 16px; transition: color 0.2s; }
.footer-icons a:hover { color: var(--red); }
.footer-map iframe { border-radius: 4px; }

.footer-bottom {
  border-top: 1px solid #444;
  padding: 14px 20px;
  text-align: center;
  font-size: 12px;
  color: #d9d9d9; /* 4.6:1 on #5d5d5d */
  max-width: 100%;
}

/* ---------- MODAL ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 500;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: 6px;
  padding: 32px;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.modal h3 { font-size: 1.2rem; margin-bottom: 6px; color: var(--charcoal); }
.modal p { font-size: 13px; color: var(--gray-mid); margin-bottom: 18px; }
.modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 22px;
  cursor: pointer; color: var(--gray-mid); line-height: 1;
}
.modal-close:hover { color: var(--red); }
.modal form { display: flex; flex-direction: column; gap: 12px; }
.modal label { font-size: 13px; font-weight: 600; color: var(--charcoal); }
.modal input, .modal textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.modal input:focus, .modal textarea:focus { border-color: var(--red); }
.modal textarea { resize: vertical; }
.modal .request-call-btn { margin-top: 4px; width: 100%; padding: 10px; font-size: 14px; }

/* ---------- TEAM PAGE ---------- */
.team-section { padding: 60px 25px; background: #f8f8f8; }
.team-inner { max-width: 960px; margin: 0 auto; }
.team-heading {
  font-size: 1.8rem;
  color: #ec1c24;
  margin-bottom: 8px;
  text-align: left;
  padding: 0 25px;
}
.team-subhead {
  text-align: left;
  color: var(--gray-mid);
  font-size: 15px;
  margin-bottom: 48px;
  padding: 0 25px;
}
.team-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  margin-bottom: 32px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.team-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.12); }
.team-card-content {
  display: flex;
  align-items: flex-start;
}
.team-card-info {
  flex: 1;
  padding: 25px;
  text-align: left;
}
.team-name {
  font-size: 1.25rem;
  color: #5d5d5d;
  margin-bottom: 4px;
  text-align: left;
}
.team-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-align: left;
}
.team-bio {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.75;
  margin-bottom: 22px;
  text-align: left;
}
.team-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.team-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.team-btn-call { background: #5d5d5d; color: var(--white); }
.team-btn-call:hover { background: #000; }
.team-btn-email { background: transparent; color: var(--charcoal); border: 1px solid var(--border); }
.team-btn-email:hover { border-color: var(--red); color: var(--red); }
.team-social { display: flex; gap: 12px; }
.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f0f0f0;
  color: var(--charcoal);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.team-social a:hover { background: var(--red); color: var(--white); }
.team-card-photo {
  flex-shrink: 0;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  border-left: 1px solid var(--border);
}
.team-card-photo img {
  width: auto;
  max-height: 300px;
  object-fit: contain;
  display: block;
}
@media (max-width: 640px) {
  .team-card-content { flex-direction: column-reverse; }
  .team-card-photo { width: 100%; border-left: none; border-bottom: 1px solid var(--border); }
  .team-card-photo img { max-height: 200px; margin: 0 auto; }
}

/* ---------- ABOUT PAGE ---------- */
.about-section { padding: 50px 25px; background: var(--white); }
.about-inner {
  max-width: 900px;
  margin: 0 auto;
}
.about-inner h2, .about-inner h1 {
  font-size: 1.6rem;
  color: #ec1c24;
  margin-bottom: 24px;
}
.about-body {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.8;
}
.about-body p { margin-bottom: 18px; }
.about-float-img {
  float: right;
  width: 380px;
  max-width: 45%;
  height: auto;
  margin: 0 0 24px 36px;
  border-radius: 4px;
}
@media (max-width: 600px) {
  .about-float-img { float: none; width: 100%; max-width: 100%; margin: 0 0 20px 0; }
}
.about-float-img--sm { width: 320px; }
.about-float-img--left {
  float: left;
  width: 300px;
  max-width: 42%;
  height: auto;
  margin: 6px 36px 18px 0;
  border-radius: 4px;
}
@media (max-width: 600px) {
  .about-float-img--left { float: none; width: 100%; max-width: 100%; margin: 0 0 20px 0; }
}

/* ---------- INLINE PHOTOS / LIGHTBOX ---------- */
.contact-photo {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 4px;
  margin: 4px 0 20px;
}
.lightbox-link { cursor: zoom-in; }
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 30px;
  cursor: zoom-out;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

/* ---------- CONTACT PAGE ---------- */
.contact-section { padding: 50px 25px; background: var(--white); }
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.contact-left {
  flex: 1;
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.7;
  padding: 0 25px;
}
.contact-left h2, .contact-left h1 {
  font-size: 1.3rem;
  color: #ec1c24;
  margin-bottom: 16px;
}
.contact-left p { margin-bottom: 14px; }
.contact-right {
  flex: 1;
  padding: 0 25px;
}
.contact-right h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #ec1c24;
  line-height: 1.5;
  margin-bottom: 22px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 75%;
  border: 1px solid #5d5d5d;
  border-radius: 4px;
  padding: 24px;
  box-sizing: border-box;
}
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--charcoal); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; }
.req { color: var(--red); }
.contact-submit { margin-top: 4px; width: 100%; padding: 11px; font-size: 14px; }
.contact-success {
  background: #eaf7ea;
  border: 1px solid #a3d9a3;
  border-radius: 4px;
  padding: 16px 20px;
  color: #2d6e2d;
  font-size: 14px;
}
.contact-error {
  background: #fdecea;
  border: 1px solid #f5c2be;
  border-radius: 4px;
  padding: 12px 16px;
  color: #a31c12;
  font-size: 13px;
  margin-bottom: 14px;
}

/* ---------- LOCATIONS ---------- */
.locations { padding: 40px 20px; background: var(--white); }
.locations-inner { max-width: 1200px; margin: 0 auto; }
.locations-inner h2, .locations-inner h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ec1c24;
  text-align: center;
  margin-bottom: 4px;
}
.locations-subtitle {
  text-align: center;
  color: var(--gray-mid);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 32px;
}
.locations-columns { display: flex; gap: 44px; align-items: flex-start; max-width: 780px; margin: 0 auto; }
.locations-col { flex: 1; display: flex; flex-direction: column; gap: 20px; }
/* Short 2-entry layout (offices): size to content and center the pair */
.locations-columns.narrow { justify-content: center; gap: 90px; max-width: none; }
.locations-columns.narrow .locations-col { flex: 0 0 auto; }
.location-entry h2, .location-entry h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.location-entry p {
  font-size: 16px;
  color: var(--gray-mid);
  line-height: 1.7;
  margin: 0 0 6px;
}
.location-entry p strong { font-weight: 600; color: var(--charcoal); }
.location-entry a { color: var(--red); font-weight: 600; }
.location-entry a:hover { color: var(--red-dark); text-decoration: underline; }

/* ---------- PROUDLY MADE IN USA ---------- */
.usa-section {
  background: #f6f6f6;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  padding: 44px 25px;
}
.usa-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.usa-flag {
  flex: 0 0 40%;
  max-width: 460px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.usa-flag svg { display: block; width: 100%; height: auto; }
.usa-content {
  flex: 1;
  padding-left: 48px;
  border-left: 1px solid #ddd;
}
.usa-content h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.usa-content > p {
  color: var(--gray-mid);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 26px;
}
.usa-features { display: flex; align-items: center; }
.usa-feature { display: flex; align-items: center; gap: 14px; padding: 0 26px; }
.usa-feature:first-child { padding-left: 0; }
.usa-feature + .usa-feature { border-left: 1px solid #ddd; }
.usa-ico {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
}
.usa-ico .usa-svg { width: 26px; height: 26px; display: block; fill: currentColor; }
.usa-label { font-weight: 700; font-size: 14px; line-height: 1.25; color: var(--charcoal); }

/* ---------- GENERIC PAGE / COMING SOON / DOC LISTS ---------- */
.page-section { padding: 64px 30px; background: var(--white); }
.page-inner { max-width: 1000px; margin: 0 auto; padding: 0 10px; }
.page-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 6px;
}
.page-subhead {
  text-align: center;
  color: var(--gray-mid);
  font-size: 15px;
  margin-bottom: 32px;
}

.coming-soon { text-align: center; padding: 90px 25px; background: var(--white); }
.coming-soon h2, .coming-soon h1 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.coming-soon p {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.03em;
}

/* Product category grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}
.product-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 90px;
  padding: 22px 18px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color .15s, color .15s, box-shadow .15s;
}
.product-card:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Downloadable document / link lists */
.doc-group-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  max-width: 760px;
  margin: 36px auto 16px;
  padding: 0 4px;
}
.doc-list {
  max-width: 760px;
  margin: 8px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.doc-list a, .doc-pending {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
}
/* Downloadable spec/doc links: red text + red icon signals a download */
.doc-list a { color: var(--red); transition: border-color .15s, background .15s, box-shadow .15s; }
.doc-list a:hover { border-color: var(--red); background: var(--gray-light); color: var(--red-dark); box-shadow: 0 4px 14px rgba(0,0,0,0.07); }
.doc-list a .icon { color: var(--red); font-size: 22px; }
.doc-list a:hover .icon { color: var(--red-dark); }
.doc-pending { color: var(--gray-mid); background: var(--gray-light); }
.doc-pending .icon { font-size: 22px; color: #aaa; }
.doc-pending em { font-style: normal; font-weight: 600; color: #999; }

.contact-address { margin-top: 18px; line-height: 1.7; }
.contact-address a { color: var(--red); font-weight: 600; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-map { grid-column: 1 / -1; }
  .carousel-slide { min-width: 33.333%; }
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .header-inner { flex-wrap: wrap; }
  .main-nav {
    display: none;
    width: 100%;
    order: 3;
    border-top: 1px solid var(--border);
    padding-top: 10px;
  }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; gap: 0; }
  .main-nav > ul > li > a { padding: 12px 10px; border-bottom: 1px solid var(--gray-light); }
  .dropdown { position: static; border: none; border-top: none; box-shadow: none; padding-left: 16px; }
  .has-dropdown.open .dropdown { display: block; }
  .carousel-slide { min-width: 50%; }
  .intro-inner { flex-direction: column; }
  .intro-image { width: 100%; }
  .intro-image img, .intro-image .img-placeholder { width: 100%; max-width: 300px; }
  .hero-overlay h1, .hero-overlay .hero-brand { font-size: 1.4rem; }
  .contact-inner { flex-direction: column; gap: 30px; }
  .contact-left, .contact-right { padding: 0; }
  .contact-form { width: 100%; }
  .locations-columns { flex-direction: column; gap: 20px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .usa-inner { flex-direction: column; gap: 28px; }
  .usa-flag { flex: 0 0 auto; width: 100%; max-width: 420px; }
  .usa-content { padding-left: 0; border-left: none; text-align: center; }
  .usa-content > p { margin-left: auto; margin-right: auto; }
  .usa-features { flex-wrap: wrap; justify-content: center; gap: 18px; }
  .usa-feature { padding: 0; text-align: left; }
  .usa-feature + .usa-feature { border-left: none; }
}

@media (max-width: 480px) {
  .top-bar-address { font-size: 11px; }
  .footer-inner { grid-template-columns: 1fr; }
  .carousel-slide { min-width: 100%; }
  .product-grid { grid-template-columns: 1fr; }
}
