:root {
  --primary: #14213D;
  --primary-dark: #0d162a;
  --accent: #C8102E;
  --accent-dark: #9b0c23;
  --accent-blue: #1F3A8A;
  --bg: #ffffff;
  --bg-soft: #F5F2EC;
  --bg-warm: #EAE3D5;
  --cream: #FFFDF7;
  --border: #DCD5C4;
  --border-soft: #ECE6D7;
  --text: #14213D;
  --text-muted: #5A5F6E;
  --star-gold: #D4A537;
  --success: #3ea63a;
  --error: #b91c1c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* TOP BAR */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  font-size: 13px;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-item { display: inline-flex; align-items: center; gap: 6px; }
.top-bar-rating {
  color: var(--star-gold);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* NAV */
nav.site-nav {
  background: white;
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--primary);
}
.logo-img {
  height: 60px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .logo-img { height: 48px; }
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 6px 0;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); border-bottom: 2px solid var(--accent); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-radius: 4px;
  transition: background 0.15s;
}
.nav-phone:hover { background: var(--accent-dark); }
.nav-phone svg { width: 16px; height: 16px; }

/* HERO (home) */
.hero {
  background:
    linear-gradient(135deg, rgba(20, 33, 61, 0.92) 0%, rgba(13, 22, 42, 0.96) 100%),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=70') center/cover;
  color: white;
  padding: 70px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: white;
}
.hero h1 .accent { color: var(--accent); }
.hero .tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero p.lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-bottom: 32px;
}
.hero-trust-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--accent);
  color: white;
  padding: 16px 28px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary:hover { background: var(--accent-dark); color: white; }
.btn-secondary {
  background: transparent;
  color: white;
  padding: 16px 28px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: border-color 0.15s, background 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-secondary:hover { border-color: white; background: rgba(255, 255, 255, 0.1); }

/* TRU-STONE RED BANNER (their hero claim, replicated) */
.stocked-banner {
  background: var(--accent);
  color: white;
  padding: 16px 0;
  text-align: center;
}
.stocked-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.stocked-banner-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stocked-banner-badge {
  height: 44px;
  width: auto;
  display: block;
}

/* PAGE HERO (inner pages) */
.page-hero {
  background:
    linear-gradient(135deg, rgba(20, 33, 61, 0.92) 0%, rgba(13, 22, 42, 0.96) 100%),
    var(--page-hero-image, url('https://images.unsplash.com/photo-1592928038403-5c27bd11d535?w=1600&q=70')) center/cover;
  color: white;
  padding: 64px 0;
  text-align: center;
}
.page-hero .breadcrumbs {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 14px;
}
.page-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.page-hero .breadcrumbs a:hover { color: var(--accent); }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  color: white;
}
.page-hero h1 .accent { color: var(--accent); }
.page-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  margin: 0 auto;
}

/* SUB-LINE CHIP NAV (jump-to anchors at top of category pages) */
.subline-nav {
  background: white;
  border-bottom: 1px solid var(--border-soft);
  padding: 16px 0;
  position: sticky;
  top: 88px;
  z-index: 90;
}
.subline-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.subline-chip {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  color: var(--primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.15s;
}
.subline-chip:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* HERO FORM */
.hero-form {
  background: white;
  color: var(--text);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.hero-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.hero-form .form-sub {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 22px;
}
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: white;
  transition: border-color 0.15s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.18);
}
.form-row textarea { resize: vertical; min-height: 80px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-submit {
  width: 100%;
  background: var(--primary);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 6px;
  transition: background 0.15s;
}
.form-submit:hover { background: var(--primary-dark); }
.form-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
  line-height: 1.4;
}

/* SECTIONS */
section.content { padding: 80px 0; }
.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.section-title .accent { color: var(--accent); }
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 48px;
}

/* TRUST STRIP */
.trust-strip {
  background: var(--primary);
  color: white;
  padding: 32px 0;
  border-top: 4px solid var(--accent);
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.trust-strip-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.trust-strip-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

/* CATEGORY TILES */
.products { background: var(--bg-soft); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-tile {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 32px 22px;
  text-align: center;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-tile:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 33, 61, 0.08);
}
.product-tile-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.product-tile-icon svg { width: 28px; height: 28px; }
.product-tile h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.product-tile p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.products-cta {
  text-align: center;
  margin-top: 40px;
}

/* PRODUCT CARDS (real product galleries) */
.product-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card-grid.col-3 { grid-template-columns: repeat(3, 1fr); }
.product-card-grid.col-5 { grid-template-columns: repeat(5, 1fr); }
.product-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 33, 61, 0.10);
}
.product-card-image {
  aspect-ratio: 1;
  background-color: var(--bg-soft);
  background-size: contain; /* ponytail: show whole swatch incl. label, don't crop */
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border-soft);
}
.product-card-body {
  padding: 14px 16px 16px;
}
.product-card-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
}
.product-card-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 2px;
}
.product-card-sku {
  font-size: 12px;
  color: var(--text-muted);
}
.product-card-stocked {
  display: inline-block;
  font-size: 10px;
  color: var(--star-gold);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* PRODUCT-LINE SECTION (anchored sub-line on category pages) */
.product-line-section {
  margin-bottom: 64px;
  scroll-margin-top: 160px;
}
.product-line-section:last-child { margin-bottom: 0; }
.product-line-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent);
}
.product-line-header-text {
  flex: 1 1 320px;
}
.product-line-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 6px;
}
.product-line-name .accent { color: var(--accent); }
.product-line-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 600px;
}
.product-line-count {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 600;
  background: var(--bg-soft);
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--border-soft);
  white-space: nowrap;
}
.gap-callout {
  background: var(--bg-warm);
  border: 1px dashed var(--border);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 6px;
  margin-top: 18px;
  font-size: 15px;
  color: var(--text);
}
.gap-callout strong { color: var(--primary); }

/* BRANDS STRIP — REAL LOGOS */
.brands { background: white; }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 32px;
}
.brand-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: border-color 0.15s, transform 0.15s;
}
.brand-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.brand-card img {
  max-height: 60px;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
.brand-card.text-only .brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1px;
}

/* INDUSTRIES (3-card row) */
.industries { background: var(--bg-warm); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.industry-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 32px 28px;
  border-top: 4px solid var(--accent);
}
.industry-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.industry-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.industry-card ul {
  list-style: none;
}
.industry-card ul li {
  font-size: 14px;
  color: var(--text);
  padding: 4px 0 4px 22px;
  position: relative;
  line-height: 1.5;
}
.industry-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.industry-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.why-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 28px 24px;
  text-align: center;
}
.why-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* SHOWROOM SECTION */
.showroom { background: var(--bg-soft); }
.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.showroom-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 36px;
  border-left: 5px solid var(--accent);
}
.showroom-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.showroom-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}
.showroom-row:last-child { border-bottom: none; }
.showroom-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.showroom-icon svg { width: 18px; height: 18px; }
.showroom-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.showroom-value {
  font-size: 16px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  line-height: 1.4;
}
a.showroom-value:hover { color: var(--accent); }
.showroom-map {
  background: var(--primary);
  border-radius: 8px;
  overflow: hidden;
  border: 4px solid var(--accent);
  box-shadow: 0 20px 40px rgba(20, 33, 61, 0.18);
  min-height: 320px;
}
.showroom-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}
.showroom-photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.showroom-photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  border: 2px solid var(--accent);
}

/* REVIEWS */
.reviews {
  background: var(--primary);
  color: white;
}
.reviews .section-eyebrow { color: var(--accent); }
.reviews .section-title { color: white; }
.reviews .section-title .accent { color: var(--accent); }
.reviews .section-sub { color: rgba(255, 255, 255, 0.75); }
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}
.reviews-summary-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.reviews-summary-stars { color: var(--star-gold); font-size: 20px; letter-spacing: 3px; }
.reviews-summary-label {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 600;
}
.reviews-summary-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.reviews-summary-link:hover { color: white; border-color: white; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px;
  border-radius: 6px;
}
.review-stars {
  color: var(--star-gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 20px;
}
.review-name {
  font-weight: 700;
  color: white;
  font-size: 15px;
}
.review-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* PRODUCT INTRO (split) */
.product-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.product-intro-content h2 { color: var(--primary); }
.product-intro-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}
.product-intro-image {
  aspect-ratio: 4/3;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  border: 4px solid var(--accent);
  box-shadow: 0 20px 40px rgba(20, 33, 61, 0.12);
  background-color: var(--bg-warm);
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 32px;
}
.contact-info-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-info-value {
  font-size: 16px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  line-height: 1.4;
}
a.contact-info-value:hover { color: var(--accent); }
.contact-form {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 32px;
}
.contact-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.contact-form .form-sub {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 22px;
}

/* ABOUT */
.about { background: var(--bg-soft); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-image {
  aspect-ratio: 4/5;
  border-radius: 6px;
  border: 4px solid var(--accent);
  overflow: hidden;
  background-image: url('assets/showroom-1.jpeg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 40px rgba(20, 33, 61, 0.16);
}
.about-content p {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-content p strong { color: var(--primary); }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}
.about-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.about-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* FINAL CTA */
.final-cta {
  background:
    linear-gradient(135deg, rgba(20, 33, 61, 0.94) 0%, rgba(13, 22, 42, 0.97) 100%),
    url('https://images.unsplash.com/photo-1604147706283-d7119b5b822c?w=1600&q=70') center/cover;
  color: white;
  padding: 80px 0;
  text-align: center;
}
.final-cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 5.2vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
  line-height: 1.05;
  color: white;
}
.final-cta h2 .accent { color: var(--accent); }
.final-cta p {
  font-size: 19px;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.88);
}
.final-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo-img {
  height: 70px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  color: white;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col p { font-size: 14px; line-height: 1.6; margin-bottom: 8px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  padding: 4px 0;
  font-size: 14px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--accent); }
.footer-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
  transition: background 0.15s;
  color: rgba(255, 255, 255, 0.85);
}
.footer-social a:hover { background: var(--accent); color: white; }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .product-intro, .contact-grid, .showroom-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .products-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card-grid, .product-card-grid.col-3, .product-card-grid.col-5 { grid-template-columns: repeat(3, 1fr); }
  .industries-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .subline-nav { top: 76px; }
}
@media (max-width: 640px) {
  .products-grid, .footer-grid, .form-row-split, .about-stats, .why-grid, .brands-grid, .trust-strip-grid, .product-card-grid, .product-card-grid.col-3, .product-card-grid.col-5, .showroom-photo-strip {
    grid-template-columns: 1fr;
  }
  .product-card-grid, .product-card-grid.col-3, .product-card-grid.col-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  section.content { padding: 56px 0; }
  .hero { padding: 50px 0 60px; }
  .page-hero { padding: 48px 0; }
  .hero-form, .contact-form, .contact-info-card, .showroom-card { padding: 24px; }
  .stocked-banner-text { font-size: 18px; }
  .stocked-banner-badge { height: 36px; }
}

/* ===== Labeled look groups (vinyl gallery) ===== */
.look-group { margin-top: 40px; }
.look-group:first-of-type { margin-top: 8px; }
.look-group-head {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 12px;
  margin-bottom: 18px; padding-bottom: 8px; border-bottom: 2px solid var(--border-soft);
}
.look-group-head h3 {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  letter-spacing: 0.03em; font-size: 1.35rem; color: var(--primary); margin: 0;
}
.look-group-head .look-group-sub { font-size: 0.82rem; color: var(--text-muted); }

/* ===== Product detail lightbox ===== */
.product-card[data-detail] { cursor: pointer; }
.fr-modal {
  position: fixed; inset: 0; z-index: 1000; display: none;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(13, 22, 42, 0.74);
}
.fr-modal.is-open { display: flex; }
.fr-modal-dialog {
  position: relative; width: 100%; max-width: 880px; max-height: 92vh;
  overflow-y: auto; background: var(--bg); border-radius: 8px;
  display: grid; grid-template-columns: 1.15fr 1fr;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.fr-modal-close {
  position: absolute; top: 10px; right: 12px; z-index: 3;
  width: 36px; height: 36px; border: none; border-radius: 50%;
  background: rgba(255, 255, 255, 0.92); color: var(--primary);
  font-size: 26px; line-height: 34px; text-align: center; cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.fr-modal-close:hover { background: #fff; }
.fr-modal-media { background: var(--bg-soft); display: flex; flex-direction: column; }
.fr-modal-room { width: 100%; height: auto; display: block; }
.fr-modal-floor-wrap { position: relative; border-top: 3px solid var(--accent); }
.fr-modal-floor { width: 100%; height: auto; display: block; }
.fr-modal-floor-label {
  position: absolute; top: 8px; left: 8px; background: var(--primary); color: #fff;
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 0.7rem; padding: 3px 9px; border-radius: 3px;
}
.fr-modal-info { padding: 30px 26px 28px; }
.fr-modal-brand {
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.8rem; font-weight: 700; color: var(--accent);
}
.fr-modal-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; line-height: 1.05;
  color: var(--primary); margin: 4px 0 6px;
}
.fr-modal-sku { font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.04em; margin-bottom: 14px; }
.fr-modal-blurb { font-size: 0.95rem; line-height: 1.55; color: var(--text); margin-bottom: 18px; }
.fr-modal-specs {
  list-style: none; margin: 0 0 24px; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 9px 16px;
}
.fr-modal-specs li { font-size: 0.85rem; color: var(--text); padding-left: 20px; position: relative; }
.fr-modal-specs li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.fr-modal-cta { display: flex; width: 100%; justify-content: center; }
.fr-modal-call { display: block; text-align: center; margin-top: 10px; font-size: 0.85rem; color: var(--text-muted); text-decoration: none; }
.fr-modal-call:hover { color: var(--accent); }
@media (max-width: 760px) {
  .fr-modal-dialog { grid-template-columns: 1fr; max-height: 94vh; }
  .fr-modal-title { font-size: 1.7rem; }
}


/* ---- NAV SEARCH + AUTOCOMPLETE ---- */
.nav-search { position: relative; flex: 0 1 250px; }
.nav-search input {
  width: 100%; box-sizing: border-box;
  padding: 9px 14px 9px 38px;
  border: 1px solid var(--border); border-radius: 999px;
  font-family: inherit; font-size: 14px; color: var(--primary);
  background: var(--bg-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A5F6E' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3C/svg%3E") no-repeat 14px center;
  background-size: 15px; transition: border-color .15s, background-color .15s;
}
.nav-search input::placeholder { color: var(--text-muted); }
.nav-search input:focus { outline: none; border-color: var(--accent); background-color: #fff; }
.nav-suggest {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border: 1px solid var(--border-soft); border-radius: 12px;
  box-shadow: 0 16px 40px rgba(20,33,61,.16);
  max-height: 380px; overflow-y: auto; z-index: 200; display: none;
}
.nav-suggest.open { display: block; }
.nav-suggest a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 10px 14px; text-decoration: none; border-bottom: 1px solid var(--border-soft);
}
.nav-suggest a:last-child { border-bottom: none; }
.nav-suggest a:hover, .nav-suggest a.active { background: var(--bg-soft); }
.nav-suggest .s-name { color: var(--primary); font-weight: 600; font-size: 14px; }
.nav-suggest a:hover .s-name, .nav-suggest a.active .s-name { color: var(--accent); }
.nav-suggest .s-cat { color: var(--text-muted); font-size: 12px; white-space: nowrap; flex-shrink: 0; }
.nav-suggest .s-empty { padding: 12px 14px; color: var(--text-muted); font-size: 14px; }
@media (max-width: 1024px) { .nav-search { flex: 1 1 auto; margin: 0 12px; } }
@media (max-width: 640px) {
  .nav-inner { gap: 12px; padding: 12px 16px; }
  .nav-search { margin: 0; }
  .nav-search input { font-size: 16px; }
}


/* search suggestion thumbnails */
.nav-suggest a { align-items: center; }
.nav-suggest .s-name { flex: 1; }
.s-thumb {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 7px; object-fit: cover;
  background: var(--bg-soft); border: 1px solid var(--border-soft);
}
.s-thumb-ph {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 19px;
  color: var(--accent-blue); background: var(--bg-warm); border-color: var(--border);
}


/* deep-link highlight pulse for a searched product card */
@keyframes cardFound {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0); }
  12% { box-shadow: 0 0 0 5px rgba(200, 16, 46, .60); }
  36% { box-shadow: 0 0 0 2px rgba(200, 16, 46, .22); }
  60% { box-shadow: 0 0 0 5px rgba(200, 16, 46, .55); }
  84% { box-shadow: 0 0 0 2px rgba(200, 16, 46, .22); }
}
.product-card.card-found { animation: cardFound 2.4s ease-in-out; position: relative; z-index: 2; }
