:root {
  /* Colors */
  --color-primary:        #267453;
  --color-primary-dark:   #1a5239;
  --color-primary-light:  #2d9e6e;
  --color-primary-subtle: #e8f5ee;
  --color-accent:         #E07B39;
  --color-accent-dark:    #c4622a;
  --color-emergency:      #B91C1C;
  --color-surface:        #FFFFFF;
  --color-bg:             #F5F7F5;
  --color-bg-dark:        #1A2E22;
  --color-text:           #1C211C;
  --color-text-muted:     #4F5E4F;
  --color-border:         #D0DDD0;
  --color-star:           #F59E0B;

  /* Typography */
  --font-heading: 'Barlow', 'Arial Narrow', Arial, sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-7:  40px;
  --sp-8:  48px;
  --sp-9:  64px;
  --sp-10: 80px;
  --sp-11: 96px;
  --sp-12: 128px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card:    0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-raised:  0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-float:   0 8px 32px rgba(0, 0, 0, 0.18);

  /* Transitions */
  --transition: 0.2s ease;

  /* Container */
  --container-max: 1280px;
  --container-pad: 24px;
}

@media (max-width: 768px) {
  :root {
    --container-pad: 16px;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* No single-word last lines (orphans) in text blocks, any viewport */
p, li, blockquote, figcaption, dt, dd,
h1, h2, h3, h4, h5, h6 {
  text-wrap: pretty;
}

/* Phone numbers never break across lines */
a[href^="tel:"] {
  white-space: nowrap;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-dark);
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* =========================================================
   LAYOUT UTILITIES
   ========================================================= */

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

.section {
  padding: var(--sp-10) 0;
}

.section--light {
  background: var(--color-bg);
}

.section--white {
  background: var(--color-surface);
}

.section--dark {
  background: var(--color-bg-dark);
  color: white;
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: white;
}

.section--dark p {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 768px) {
  .section {
    padding: var(--sp-9) 0;
  }
}

@media (max-width: 480px) {
  .section {
    padding: var(--sp-8) 0;
  }
}

/* Section header */
.section-header {
  margin-bottom: var(--sp-9);
}

.section-header--center {
  text-align: center;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--sp-3);
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 640px;
}

.section-header--center p {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: var(--sp-8);
  }
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: var(--sp-7);
  }
}

.section-label {
  display: inline-block;
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-3);
}

/* =========================================================
   EMERGENCY TOP BAR
   ========================================================= */

.top-bar {
  background: var(--color-emergency);
  color: white;
  padding: 9px var(--container-pad);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}

.top-bar a {
  color: white;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.top-bar a:hover {
  opacity: 0.9;
  color: white;
}

/* =========================================================
   NAVIGATION
   ========================================================= */

.nav {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-raised);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.nav__logo img {
  height: 52px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-primary);
  background: var(--color-primary-subtle);
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-raised);
  padding: 16px 0 8px;
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 200;
}

.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--color-text);
  transition: background var(--transition), color var(--transition);
}

.nav__dropdown-link:hover {
  background: var(--color-primary-subtle);
  color: var(--color-primary);
}

/* CTA in nav */
.nav__cta {
  margin-left: var(--sp-4);
  padding: 9px 20px;
  background: var(--color-accent);
  color: white !important;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: background var(--transition) !important;
}

.nav__cta:hover {
  background: var(--color-accent-dark) !important;
  color: white !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}

.nav__hamburger:hover {
  background: var(--color-primary-subtle);
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-raised);
  z-index: 99;
  padding: 16px 0 24px;
  max-height: calc(100vh - 72px);
  max-height: calc(100dvh - 72px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.nav__mobile.open {
  display: block;
}

.nav__mobile-link {
  display: block;
  padding: 11px var(--container-pad);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition), color var(--transition);
}

.nav__mobile-link:hover {
  background: var(--color-primary-subtle);
  color: var(--color-primary);
}

.nav__mobile-sub {
  display: block;
  padding: 9px var(--container-pad) 9px calc(var(--container-pad) + 16px);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.nav__mobile-sub:hover {
  background: var(--color-primary-subtle);
  color: var(--color-primary);
}

.nav__mobile-label {
  padding: 14px var(--container-pad) 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--sp-10) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--sp-9);
  margin-bottom: var(--sp-10);
}

.footer__logo {
  height: 50px;
  width: auto;
  margin-bottom: var(--sp-5);
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--sp-5);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
  font-size: 0.9rem;
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.footer__contact-item a:hover {
  color: var(--color-primary-light);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  margin-bottom: var(--sp-5);
}

.footer__link {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-bottom: var(--sp-3);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--color-primary-light);
}

.footer__hours-table {
  width: 100%;
  font-size: 0.875rem;
}

.footer__hours-table td {
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.75);
}

.footer__hours-table td:last-child {
  text-align: right;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: var(--sp-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom-links {
  display: flex;
  gap: var(--sp-5);
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  transition: color var(--transition);
}

.footer__bottom-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer__review {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  margin-top: var(--sp-2);
  transition: background var(--transition), transform var(--transition);
}

.footer__review:hover {
  background: #d06a28;
  color: #fff;
  transform: scale(1.05);
}

.footer__review svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-7); }
}

@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--sp-3); text-align: center; }
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1.3;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: white;
  box-shadow: 0 4px 12px rgba(38, 116, 83, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary-subtle);
  color: var(--color-primary-dark);
}

.btn--accent {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

.btn--accent:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: white;
  box-shadow: 0 4px 12px rgba(224, 123, 57, 0.35);
}

.btn--ghost {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
  color: white;
}

.btn--pdf {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  padding: 8px 18px;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
}

.btn--pdf:hover {
  background: var(--color-primary-subtle);
  color: var(--color-primary-dark);
}

.btn--sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 15px 36px;
  font-size: 1.0625rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  background: var(--color-bg-dark);
  color: white;
  /* extra bottom space drops the trust strip lower so more of the hero shows */
  padding: var(--sp-12) 0 calc(var(--sp-12) + var(--sp-8)) 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1600&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero__content {
  position: relative;
  max-width: 720px;
}

.hero__eyebrow {
  display: inline-block;
  background: rgba(38, 116, 83, 0.8);
  color: white;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-5);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
}

.hero h1 span {
  color: var(--color-primary-light);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: var(--sp-7);
  line-height: 1.65;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--color-bg-dark);
  color: white;
  padding: var(--sp-9) 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(38,116,83,0.25) 0%, transparent 60%);
}

.page-hero__content {
  position: relative;
}

.page-hero h1 {
  color: white;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: var(--sp-4);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.0625rem;
  max-width: 580px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--sp-4);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb__sep {
  opacity: 0.4;
}

/* =========================================================
   STATS BAR
   ========================================================= */

.stats-bar {
  background: var(--color-bg-dark);
  padding: var(--sp-9) 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  text-align: center;
}

.stats-bar__item {
  padding: var(--sp-5);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-bar__item:last-child {
  border-right: none;
}

.stats-bar__number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-primary-light);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stats-bar__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stats-bar__item:nth-child(2n) { border-right: none; }
}

/* =========================================================
   CARDS
   ========================================================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.card-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .card-grid,
  .card-grid--2,
  .card-grid--3,
  .card-grid--4 { grid-template-columns: 1fr; }
}

/* Product card */
.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-raised);
  transform: translateY(-3px);
}

.product-card__img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: var(--color-bg);
  padding: var(--sp-5);
}

.product-card__img--cover {
  object-fit: cover;
  padding: 0;
}

.product-card__body {
  padding: var(--sp-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--sp-4);
}

.spec-chip {
  display: inline-block;
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-mono);
  white-space: nowrap;
}

.product-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--sp-3);
  color: var(--color-text);
}

.product-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: var(--sp-5);
}

.product-card__actions {
  display: flex;
  gap: var(--sp-3);
  margin-top: auto;
  flex-wrap: wrap;
}

/* Service card */
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-raised);
  transform: translateY(-2px);
  border-color: var(--color-primary);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--color-primary-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--sp-5);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--sp-3);
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--sp-5);
}

.service-card a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.service-card a:hover { gap: 10px; }

@media (max-width: 600px) {
  .service-card { padding: var(--sp-5); }
}

/* =========================================================
   REVIEW CARDS
   ========================================================= */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}

.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  box-shadow: var(--shadow-card);
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--color-primary-subtle);
  line-height: 1;
}

.review-card__stars {
  color: var(--color-star);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: var(--sp-4);
}

.review-card__quote {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: var(--sp-5);
}

.review-card__reviewer {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-text);
}

.review-card__source {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   SPEC TABLE (Product Detail Pages)
   ========================================================= */

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.spec-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table tr:nth-child(odd) td {
  background: var(--color-bg);
}

.spec-table td:first-child {
  font-weight: 600;
  color: var(--color-text-muted);
  width: 42%;
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.spec-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* =========================================================
   PRODUCT DETAIL LAYOUT
   ========================================================= */

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: start;
}

.product-detail__media {
  position: sticky;
  top: 96px;
}

.product-detail__main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: var(--sp-5);
  margin-bottom: var(--sp-4);
}

.product-detail__main-img img {
  width: 100%;
  height: 360px;
  object-fit: contain;
}

.product-detail__thumb-row,
.product-detail__thumbs {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-top: var(--sp-3);
}

.product-detail__thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition);
  background: var(--color-bg);
}

.product-detail__thumb:hover {
  border-color: var(--color-primary);
}

.product-detail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.product-detail__info h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--sp-3);
}

.product-detail__tagline {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--sp-5);
}

.product-detail__desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.product-detail__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--sp-6);
}

.product-detail__chips .spec-chip {
  font-size: 0.875rem;
  padding: 5px 16px;
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--color-border);
}

.product-detail__pdf-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
  .product-detail__media {
    position: static;
  }
}

/* =========================================================
   FEATURE LISTS (product page sections)
   ========================================================= */

.feature-block {
  margin-bottom: var(--sp-7);
}

.feature-block h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--color-primary-subtle);
  color: var(--color-text);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.feature-list li::before {
  content: 'âœ“';
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =========================================================
   CTA BANNER
   ========================================================= */

.cta-banner {
  background: var(--color-primary);
  color: white;
  padding: var(--sp-9) 0;
  text-align: center;
}

.cta-banner h2 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--sp-3);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  margin-bottom: var(--sp-7);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   BRAND LOGOS SECTION
   ========================================================= */

.brands-section {
  padding: var(--sp-9) 0;
  background: var(--color-surface);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}

.brand-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  display: flex;
  align-items: center;
  gap: var(--sp-7);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.brand-card:hover {
  box-shadow: var(--shadow-raised);
  border-color: var(--color-primary);
}

.brand-card__logo-wrap {
  flex-shrink: 0;
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card__logo-wrap img {
  max-height: 70px;
  object-fit: contain;
}

.brand-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--sp-3);
}

.brand-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-4);
}

@media (max-width: 768px) {
  .brands-grid { grid-template-columns: 1fr; }
  .brand-card { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   INDUSTRIES
   ========================================================= */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.industry-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
}

.industry-item__icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.industry-item span {
  font-weight: 600;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-9);
  align-items: start;
}

.form-group {
  margin-bottom: var(--sp-5);
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.9375rem;
  color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-text);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(38, 116, 83, 0.12);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-primary);
}

.form-checkbox label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.contact-info-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  box-shadow: var(--shadow-card);
}

.contact-info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 2px solid var(--color-primary-subtle);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}

.contact-info-item__icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.contact-info-item__text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.contact-info-item__text a,
.contact-info-item__text p {
  font-size: 0.9375rem;
  color: var(--color-text);
}

.hours-table {
  width: 100%;
  font-size: 0.9rem;
  margin-top: var(--sp-3);
}

.hours-table td {
  padding: 5px 0;
  color: var(--color-text-muted);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--color-text);
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* =========================================================
   HISTORY TIMELINE (About Page)
   ========================================================= */

.history-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.history-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 240px;
}

.history-item:nth-child(even) .history-item__content {
  order: 3;
}

.history-item:nth-child(even) .history-item__img {
  order: 1;
}

.history-item__img {
  overflow: hidden;
}

.history-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-item__middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  order: 2;
}

.history-item__line {
  width: 2px;
  flex: 1;
  background: var(--color-primary-subtle);
}

.history-item__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 4px solid white;
  box-shadow: 0 0 0 2px var(--color-primary);
  flex-shrink: 0;
  margin: 12px 0;
}

.history-item__content {
  padding: var(--sp-7) var(--sp-7);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.history-item__year {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary-subtle);
  line-height: 1;
  margin-bottom: var(--sp-3);
}

.history-item__content h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: var(--sp-4);
}

.history-item__content p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .history-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .history-item__middle { display: none; }
  .history-item:nth-child(even) .history-item__content { order: unset; }
  .history-item:nth-child(even) .history-item__img { order: unset; }
  .history-item__img { height: 220px; }
  .history-item__content { padding: var(--sp-6); }
}

/* =========================================================
   ACCORDION / FAQ
   ========================================================= */

.accordion {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.accordion__item {
  border-bottom: 1px solid var(--color-border);
}

.accordion__item:last-child {
  border-bottom: none;
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  background: white;
  transition: background var(--transition);
  user-select: none;
}

.accordion__header:hover {
  background: var(--color-primary-subtle);
}

@media (max-width: 480px) {
  .accordion__header { padding: var(--sp-4) var(--sp-4); }
}

.accordion__icon {
  font-size: 1.25rem;
  color: var(--color-primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.accordion__item.open .accordion__icon {
  transform: rotate(45deg);
}

.accordion__body {
  display: none;
  padding: var(--sp-5) var(--sp-6) var(--sp-6);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  background: var(--color-bg);
}

.accordion__item.open .accordion__body {
  display: block;
}

/* =========================================================
   MISC UTILITIES
   ========================================================= */

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.text-primary { color: var(--color-primary); }
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }

.divider {
  height: 1px;
  background: var(--color-border);
  border: none;
  margin: var(--sp-7) 0;
}

.coming-soon-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-12) var(--container-pad);
}

.coming-soon-page h1 {
  font-size: 2.5rem;
  margin-bottom: var(--sp-5);
}

.coming-soon-page p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  margin-bottom: var(--sp-7);
}

/* Two-column detail layout (used on some product detail pages) */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
}

/* Google Maps embed */
.map-embed {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  margin-top: var(--sp-5);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* History timeline rows (about.html) */
@media (max-width: 768px) {
  .history-timeline-row {
    display: flex !important;
    flex-direction: column !important;
    min-height: unset !important;
    margin-top: var(--sp-4) !important;
  }
  .history-timeline-row > *:nth-child(2) { display: none !important; }
  .history-timeline-row > * {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: var(--sp-5) !important;
    min-height: unset !important;
  }
}

/* Inline CTA: text left, buttons right â€” stacks on mobile */
.cta-inline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-7);
  align-items: center;
}

@media (max-width: 768px) {
  .cta-inline { grid-template-columns: 1fr; }
  .cta-inline > *:last-child { display: flex; flex-direction: row; gap: var(--sp-3); flex-wrap: wrap; }
}

/* PDF download banner */
.pdf-banner {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  margin-bottom: var(--sp-7);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  .pdf-banner {
    padding: var(--sp-4);
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Why-grid: 3-col inline grids on dark sections */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   MOTION / ANIMATION (scroll reveals + hero entrance)
   The .reveal class is added by js/main.js (never in HTML), so
   content stays visible if JS fails; gated by reduced-motion.
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(38px) scale(0.985);
  transition: opacity 0.75s cubic-bezier(.22,.61,.36,1),
              transform 0.75s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--left  { transform: translateX(-46px) scale(0.99); }
.reveal--right { transform: translateX(46px) scale(0.99); }
.reveal--left.is-visible, .reveal--right.is-visible { transform: none; }

@keyframes emFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
.hero__content > * { animation: emFadeUp 0.85s cubic-bezier(.22,.61,.36,1) backwards; }
.hero__content > *:nth-child(1) { animation-delay: 0.05s; }
.hero__content > *:nth-child(2) { animation-delay: 0.15s; }
.hero__content > *:nth-child(3) { animation-delay: 0.25s; }
.hero__content > *:nth-child(4) { animation-delay: 0.35s; }
.hero__content > *:nth-child(5) { animation-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__content > * { animation: none !important; }
}

