/* Custom Printed Tape — stylesheet */
:root {
  --primary: oklch(0.16 0.04 240);       /* deep navy #0E1E35 */
  --primary-mid: oklch(0.24 0.05 240);   /* mid navy #1A3354 */
  --accent: oklch(0.62 0.14 185);        /* vivid teal ~#0DA2A2 — display uses */
  --accent-dark: oklch(0.54 0.14 185);   /* button fill — bright teal */
  --accent-hover: oklch(0.60 0.15 185);  /* hover state */
  --accent-light: oklch(0.96 0.025 185); /* tinted bg */
  --text: oklch(0.18 0.025 260);
  --text-muted: oklch(0.45 0.018 250);
  --bg: oklch(0.985 0.004 240);
  --bg-alt: oklch(0.958 0.006 240);
  --border: oklch(0.88 0.010 240);
  --radius: 4px;
  --shadow: 0 2px 16px rgba(14,30,53,0.09);
  --shadow-hover: 0 8px 32px rgba(14,30,53,0.15);
  --max-w: 1200px;
  --font-head: 'Manrope', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

img { max-width: 100%; height: auto; display: block; }

/* ── Utility bar ── */
.utility-bar {
  background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 7px 0;
  font-family: var(--font-body);
  font-size: 13px;
}
.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.utility-left { color: rgba(255,255,255,0.55); letter-spacing: 0.02em; }
.utility-right { display: flex; gap: 20px; }
.utility-right a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s;
}
.utility-right a:hover { color: var(--accent); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent-dark);
  color: oklch(0.99 0.004 240);
  border-color: var(--accent-dark);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 4px 16px rgba(14,112,112,0.32);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.9); }
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary-mid);
}
.btn-outline-dark:hover { background: var(--primary); color: #fff; }
.btn-lg { padding: 14px 32px; font-size: 16px; }

/* ── Header ── */
.site-header {
  background: var(--primary-mid);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(14,30,53,0.28);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.logo {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.2px;
  color: #fff;
  white-space: nowrap;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2px;
  align-items: center;
}
.main-nav a {
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  padding: 8px 11px;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-family: var(--font-head);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,0.10); }
.btn-cta {
  background: var(--accent-dark) !important;
  color: oklch(0.99 0.004 240) !important;
  font-weight: 700 !important;
  margin-left: 6px;
}
.btn-cta:hover { background: var(--accent-hover) !important; }

/* ── Mega menu nav ── */
.nav-mega-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.80);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s, background 0.15s;
}
.nav-mega-btn:hover,
.nav-mega-btn[aria-expanded="true"] { color: #fff; background: rgba(255,255,255,0.10); }
.nav-mega-btn[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }
.nav-chevron { transition: transform 0.22s ease-out; flex-shrink: 0; }
/* Full-width panel attached to bottom of header */
.site-header { position: relative; }
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: oklch(0.14 0.04 240);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 48px rgba(0,0,0,0.40);
  z-index: 200;
  animation: megaSlide 0.18s ease-out;
}
@keyframes megaSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mega-menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 220px;
  gap: 0 32px;
}
.mega-group-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}
.mega-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  margin: 0 -12px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}
.mega-link:hover { background: rgba(255,255,255,0.06); }
.mega-link-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: oklch(0.94 0.006 240);
  line-height: 1.2;
}
.mega-link-desc {
  font-size: 12px;
  color: oklch(0.60 0.015 240);
  line-height: 1.4;
}
/* CTA column */
.mega-cta-col {
  border-left: 1px solid rgba(255,255,255,0.08);
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.mega-cta-label {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: oklch(0.96 0.006 240);
  margin: 0;
}
.mega-cta-sub {
  font-size: 13px;
  color: oklch(0.60 0.015 240);
  line-height: 1.5;
  margin: 0;
}
.mega-phone {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s;
}
.mega-phone:hover { color: oklch(0.75 0.16 185); }

/* Nav phone link */
.nav-phone-item { display: flex; align-items: center; }
.nav-phone-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--radius);
  letter-spacing: 0.01em;
  transition: color 0.15s, background 0.15s;
}
.nav-phone-link:hover { color: oklch(0.78 0.16 185); background: rgba(255,255,255,0.07); }
.nav-phone-link svg { flex-shrink: 0; }
/* Vertical divider between phone and Products */
.nav-sep {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.14);
  margin: 0 2px;
  align-self: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform 0.2s;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  background-size: cover;
  background-position: center 52%;
}
/* Homepage: tape on a workbench — lower position pulls foreground into frame */
.hero-home {
  min-height: 640px;
  background-position: center 68%;
  justify-content: space-between;
  padding: 0;
}
/* Light vignette — photo must read. Bottom scrim for pill legibility only. */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 75% at 50% 45%, rgba(14,30,53,0.22) 0%, rgba(14,30,53,0.52) 100%),
    linear-gradient(to top, rgba(14,30,53,0.62) 0%, transparent 22%);
}
/* ── Homepage hero layout ── */
.hero-home-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 96px 24px 40px;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
  color: oklch(0.99 0.004 240);
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  display: block;
}
.hero-home-content h1 {
  font-family: var(--font-head);
  font-size: clamp(48px, 6.5vw, 86px);
  font-weight: 800;
  line-height: 1.02;
  margin-bottom: 0;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 28px rgba(0,0,0,0.40);
  color: oklch(0.99 0.004 240);
}
/* Eyebrow-style subtitle under H1 */
.hero-h1-sub {
  font-family: var(--font-head);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(0.92 0.006 240);
  margin: 14px 0 28px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.30);
}
/* Gradient highlight on key word — user-specified */
.hero-gradient-word {
  display: inline-block;
  font-weight: 800;
  background: linear-gradient(135deg,
    oklch(0.94 0.08 185) 0%,
    oklch(0.72 0.22 185) 40%,
    oklch(0.52 0.16 190) 70%,
    oklch(0.78 0.18 185) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.86);
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.65;
  text-shadow: 0 1px 6px rgba(0,0,0,0.22);
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-ghost-hero {
  background: rgba(255,255,255,0.10);
  color: oklch(0.99 0.004 240);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-ghost-hero:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.60);
}
/* Pills pinned to the hero base */
.hero-pills-row {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 24px 32px;
}
.hero-pill {
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  padding: 5px 14px;
  white-space: nowrap;
}
/* Category page hero — left-aligned, no pills */
.hero-content {
  position: relative;
  z-index: 1;
  color: oklch(0.99 0.004 240);
  padding: 88px 24px;
  max-width: 680px;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.04;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 18px rgba(0,0,0,0.32);
}
.hero-content h1 span { color: var(--accent); }
.hero-content .btn { margin-right: 12px; margin-bottom: 12px; }

/* ── Trust bar ── */
.trust-bar {
  background: var(--primary);
  border-top: 3px solid var(--accent);
  padding: 0;
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: none;
}
.trust-stat {
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.trust-stat:last-child { border-right: none; }
.trust-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.trust-stat span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Section headings ── */
.section-heading {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 36px;
}
.section-heading-wrap { margin-bottom: 40px; }

/* ── Category grid ── */
.categories-section { padding: 80px 0; background: var(--bg); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
/* Custom Printed Tape: dominant — it's the main product */
.category-card:first-child { grid-column: span 2; }
.category-card:first-child img { height: 256px; }
/* Underground Warning Tape: full width at the bottom */
.category-card:last-child { grid-column: span 3; }
.category-card:last-child img { height: 220px; }

.category-card {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.22s ease-out, box-shadow 0.22s ease-out;
  border: 1px solid var(--border);
  background: oklch(0.99 0.003 240);
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}
.category-card img { width: 100%; height: 196px; object-fit: cover; }
.img-placeholder {
  width: 100%;
  height: 196px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, #E8EDF3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.card-body { padding: 20px 20px 22px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.card-body h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.card-body p { font-size: 14px; color: var(--text-muted); flex: 1; line-height: 1.55; }
.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  margin-top: 10px;
  transition: gap 0.15s;
}
.category-card:hover .card-arrow { gap: 8px; }

/* ── Content / prose ── */
.content-section { padding: 56px 0; }
.prose h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin: 40px 0 14px;
  padding-top: 14px;
  border-top: 2px solid var(--accent);
  line-height: 1.15;
}
.prose h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.prose h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--primary-mid);
  margin: 32px 0 12px;
}
.prose h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin: 20px 0 8px;
}
.prose p { margin: 0 0 16px; }
.prose ul, .prose ol { margin: 0 0 16px 24px; }
.prose li { margin-bottom: 6px; line-height: 1.6; }
.prose strong { color: var(--primary); font-weight: 700; }
.prose a { color: var(--accent); font-weight: 600; }
.prose a:hover { color: var(--accent-hover); }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 28px 0; }

/* ── Tables ── */
.table-wrap { overflow-x: auto; margin: 16px 0 28px; border-radius: 6px; border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th {
  background: var(--primary);
  color: #fff;
  padding: 11px 16px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
td { padding: 10px 16px; border-bottom: 1px solid var(--border); }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--bg-alt); }
td:first-child { font-weight: 600; color: var(--primary-mid); }

/* ── Product gallery ── */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  padding: 0 24px 56px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.product-gallery img { border-radius: 4px; height: 200px; width: 100%; object-fit: cover; }

/* ── Page hero (no bg image) ── */
.page-hero {
  background: linear-gradient(105deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #fff;
  padding: 64px 0;
  border-bottom: 3px solid var(--accent);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.82); max-width: 600px; margin-bottom: 24px; }

/* ── Contact strip ── */
.contact-strip {
  background: var(--primary);
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  padding: 36px 0;
}
/* Accent variant — teal strip after hero, creates contrast break */
.contact-strip-accent {
  background: oklch(0.52 0.15 185);
  border-top: none;
  border-bottom: 3px solid oklch(0.44 0.14 185);
}
.contact-strip-accent .contact-strip-label { color: rgba(255,255,255,0.75); }
.contact-strip-accent .contact-strip-phone { color: #fff; }
.contact-strip-accent .contact-strip-phone:hover { color: oklch(0.94 0.025 240); }
.contact-strip-accent .contact-strip-email { color: rgba(255,255,255,0.80); }
.contact-strip-accent .contact-strip-note { color: rgba(255,255,255,0.60); }
/* Navy CTA button — for use on teal accent strip */
.btn-navy {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  font-weight: 700;
}
.btn-navy:hover { background: var(--primary-mid); border-color: var(--primary-mid); box-shadow: 0 4px 16px rgba(0,0,0,0.28); }
.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}
.contact-strip-info { display: flex; flex-direction: column; gap: 6px; }
.contact-strip-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-strip-phone {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
  line-height: 1;
}
.contact-strip-phone:hover { color: var(--accent); }
.contact-strip-email {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}
.contact-strip-email:hover { color: var(--accent); }
.contact-strip-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.contact-strip-note {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-align: right;
}

/* ── FAQ ── */
.faq-section { background: var(--bg-alt); padding: 56px 0; }
.faq-section h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 32px;
}
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item:hover { border-color: var(--accent); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 17px 20px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary);
  gap: 16px;
}
.faq-question::after {
  content: '+';
  font-size: 22px;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"]::after { content: '−'; }
.faq-answer { padding: 0 20px 18px; color: var(--text-muted); font-size: 15px; line-height: 1.65; }
.faq-answer p { margin: 0; }

/* ── Breadcrumb ── */
.breadcrumb {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  font-size: 13px;
}
.breadcrumb ol { list-style: none; display: flex; gap: 4px; max-width: var(--max-w); margin: 0 auto; flex-wrap: wrap; }
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 4px; color: var(--text-muted); }
.breadcrumb a { color: var(--primary-mid); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb li:last-child { color: var(--text-muted); }

/* ── Quote form ── */
.quote-section { padding: 72px 0; }
.quote-grid { display: grid; grid-template-columns: 1fr 360px; gap: 56px; }
.form-row { margin-bottom: 18px; }
label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 13.5px;
  color: var(--primary);
  letter-spacing: 0.01em;
}
.req { color: #B91C1C; }
input, select, textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px oklch(0.62 0.14 185 / 0.14);
}
.form-message {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}
.form-message-success {
  background: oklch(0.95 0.04 160);
  color: oklch(0.32 0.10 160);
  border: 1.5px solid oklch(0.72 0.12 160);
}
.form-message-error {
  background: oklch(0.96 0.03 25);
  color: oklch(0.38 0.12 25);
  border: 1.5px solid oklch(0.72 0.14 25);
}
.quote-contact {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  padding: 32px;
  border-radius: 6px;
  position: sticky;
  top: 80px;
}
.quote-contact h2 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.quote-contact h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin: 24px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.quote-contact p { margin-bottom: 12px; font-size: 14px; line-height: 1.55; }
.quote-contact a { color: #fff; text-decoration: none; font-weight: 700; }
.quote-contact a:hover { color: var(--accent); }
.quote-contact ul, .quote-contact ol { margin-left: 18px; }
.quote-contact li { margin-bottom: 7px; font-size: 14px; color: rgba(255,255,255,0.8); }
.quote-contact hr { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 20px 0; }

/* ── File input ── */
.field-hint { font-weight: 400; color: var(--text-muted); font-size: 12px; margin-left: 4px; }
input[type="file"] {
  padding: 8px 10px;
  background: var(--bg-alt);
  cursor: pointer;
  font-size: 14px;
}
input[type="file"]:focus { border-color: var(--accent); box-shadow: 0 0 0 3px oklch(0.62 0.14 185 / 0.14); }

/* ── Footer ── */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.75); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
/* Blank heading spacer for second products column — aligns lists */
.footer-col h4:empty,
.footer-col h4:blank { visibility: hidden; }
.footer-col p { font-size: 14px; margin-bottom: 10px; line-height: 1.6; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 7px; }
.footer-col a { color: rgba(255,255,255,0.62); text-decoration: none; font-size: 13.5px; transition: color 0.15s; }
.footer-col a:hover { color: var(--accent); }
.footer-col address { font-style: normal; font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-top: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.48); text-decoration: none; }

/* ── Brand logo ── */
.footer-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: 14px;
  opacity: 0.92;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .quote-grid { grid-template-columns: 1fr; }
  .quote-contact { position: static; }
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-stat { border-bottom: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 768px) {
  .nav-sep { display: none; }
}
@media (max-width: 768px) {
  .utility-bar { display: none; }
  .nav-toggle { display: block; }
  .site-header { position: sticky; top: 0; }
  .main-nav {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 12px 16px 20px;
    z-index: 99;
    border-top: 2px solid var(--accent);
    max-height: calc(100vh - 62px);
    overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { padding: 11px 14px; display: block; font-size: 15px; border-radius: 0; }
  .main-nav a:hover { background: rgba(255,255,255,0.08); }
  .btn-cta { margin-left: 0 !important; margin-top: 8px; display: block; text-align: center; }
  /* Phone item — visible in mobile dropdown, teal + bottom border */
  .nav-phone-item { display: flex; border-bottom: 1px solid rgba(255,255,255,0.10); padding-bottom: 4px; margin-bottom: 4px; }
  .nav-phone-link { font-size: 16px; font-weight: 700; color: var(--accent); display: flex; align-items: center; }
  /* Mega menu in mobile — flat accordion */
  .nav-mega-btn { padding: 11px 14px; font-size: 15px; width: 100%; justify-content: space-between; }
  .mega-menu { position: static; box-shadow: none; border-top: none; animation: none; }
  .mega-menu-inner { grid-template-columns: 1fr; gap: 0; padding: 0 0 8px; }
  .mega-col { padding: 8px 14px; }
  .mega-group-label { margin-bottom: 6px; }
  .mega-link { padding: 8px 0; margin: 0; border-radius: 0; }
  .mega-link-desc { display: none; }
  .mega-cta-col { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); padding: 16px 14px; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 10px; }
  .mega-cta-sub { display: none; }
  .contact-strip-inner { flex-direction: column; }
  .contact-strip-cta { align-items: flex-start; }
  .contact-strip-note { text-align: left; }
  .hero { min-height: 380px; background-position: center 50%; }
  .hero-home { min-height: 520px; background-position: center 65%; }
  .hero-home-content { padding: 64px 20px 32px; }
  .hero-home-content h1 { font-size: clamp(34px, 10vw, 52px); }
  .hero-pills-row { gap: 7px; padding-bottom: 24px; }
  .hero-content { padding: 60px 24px; }
  .category-card:first-child { grid-column: span 1; }
  .category-card:first-child img { height: 196px; }
  .category-card:last-child { grid-column: span 1; }
  .category-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .category-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col-about { grid-column: span 2; }
  .trust-stats { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 380px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col-about { grid-column: span 1; }
}

/* ── Payment badges ── */
.payment-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 0;
}
.pay-label {
  font-size: 11px;
  color: rgba(255,255,255,0.32);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-head);
  font-weight: 600;
  margin-right: 4px;
  white-space: nowrap;
}
.pay-badge {
  background: rgba(255,255,255,0.93);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 6px;
  gap: 2px;
  flex-shrink: 0;
}
.pay-visa {
  font-style: italic;
  font-weight: 900;
  font-size: 11px;
  color: #1A1F71;
  letter-spacing: -0.3px;
  font-family: var(--font-head);
}
.mc-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  flex-shrink: 0;
  display: block;
}
.mc-red  { background: #EB001B; }
.mc-orange { background: #F79E1B; margin-left: -5px; }
.mae-blue { background: #0066CC; }
.mae-red  { background: #CC0000; margin-left: -5px; }
.pay-text {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-head);
  line-height: 1;
  white-space: nowrap;
}
.pay-paypal-p   { color: #003087; }
.pay-paypal-pal { color: #009CDE; }
.pay-apple   { color: #000; }
.pay-amazon  { color: #232F3E; }
.pay-gpay    { color: #3C4043; letter-spacing: -0.2px; }
.pay-stripe  { color: #635BFF; font-size: 11px; }
