/* ============================================================
   TRM GARAGE FLOORS — MASTER STYLESHEET
   trmgf.com | Black #0A0A0A | Red #E8181A | Concrete #2A2A2A
   Mobile-first | Cloudflare Pages ready
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── CSS VARIABLES ── */
:root {
  /* Brand colors */
  --black:        #0A0A0A;
  --concrete:     #2A2A2A;
  --concrete-mid: #3D3D3D;
  --red:          #E8181A;
  --red-dark:     #C41214;
  --red-light:    rgba(232,24,26,0.08);
  --white:        #FFFFFF;
  --off-white:    #F7F7F7;
  --gray-light:   #F0F0F0;
  --gray-border:  #E0E0E0;
  --gray-mid:     #888888;
  --gray-dark:    #555555;
  --text-dark:    #111111;
  --text-body:    #333333;
  --gold:         #F5A623;

  /* Spacing scale */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   40px;
  --space-2xl:  64px;
  --space-3xl:  96px;

  /* Layout */
  --max-width: 1200px;
  --gutter:    24px;

  /* Typography */
  --font-display: 'Arial Black', 'Arial', Helvetica, sans-serif;
  --font-body:    'Arial', 'Helvetica Neue', Helvetica, sans-serif;

  /* Borders */
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.16);

  /* Transitions */
  --transition: 0.18s ease;
}

/* ── UTILITY ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-red   { color: var(--red); }
.text-white { color: var(--white); }
.text-dark  { color: var(--text-dark); }
.fw-900     { font-weight: 900; }
.uppercase  { text-transform: uppercase; }
.text-center { text-align: center; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.eyebrow--dark {
  background: var(--black);
  color: var(--white);
}
.eyebrow--outline {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-title--white { color: var(--white); }
.section-title--red   { color: var(--red); }

.section-sub {
  font-size: 16px;
  color: var(--gray-dark);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 0;
}
.section-sub--white {
  color: rgba(255,255,255,0.78);
}

.heading-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.heading-bar .section-title { margin-bottom: 0; white-space: nowrap; }
.heading-bar .rule {
  flex: 1;
  height: 3px;
  background: var(--red);
  min-width: 20px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }

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

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: var(--concrete);
  border-color: var(--concrete);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}
.btn-outline-dark:hover {
  background: var(--text-dark);
  color: var(--white);
}

.btn-lg { padding: 16px 36px; font-size: 14px; }
.btn-sm { padding: 10px 20px; font-size: 12px; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ── NAV ── */
.site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--red);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 8px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--concrete);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.nav-logo-text span { color: var(--red); display: block; }

.nav-menu {
  display: none;
  list-style: none;
  gap: 0px;
}
.nav-menu a {
  display: block;
  padding: 6px 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-menu a:hover,
.nav-menu a[aria-current="page"] { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.nav-phone {
  display: none;
  align-items: center;
  gap: 4px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 6px 10px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
  white-space: nowrap;
}
.nav-phone:hover { border-color: var(--white); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--concrete);
  padding: 20px var(--gutter);
  flex-direction: column;
  gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.mobile-menu .mobile-cta {
  margin-top: 12px;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 13px;
  text-transform: uppercase;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  padding: 14px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dark);
  white-space: nowrap;
}
.trust-item-icon {
  color: var(--red);
  font-size: 14px;
  flex-shrink: 0;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--gray-light);
  border-bottom: 1px solid var(--gray-border);
  padding: 10px 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-mid);
}
.breadcrumb-list a { color: var(--red); font-weight: 600; }
.breadcrumb-list .sep { color: var(--gray-border); }

/* ── HERO ── */
.hero {
  background:
    linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.15) 100%),
    url('/assets/images/hero-bg.jpg') center center / cover no-repeat;
  padding: var(--space-3xl) 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero-pretag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 62px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.97;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.hero-h1 em {
  font-style: normal;
  color: var(--red);
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.72;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}
.hero-form-panel {
  background: rgba(0,0,0,0.86);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 28px 32px;
}
.hero-form-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--concrete);
  margin: 0 auto 10px;
  overflow: hidden;
}
.hero-form-logo img { width: 100%; height: 100%; object-fit: cover; }
.panel-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  text-align: center;
  margin-bottom: 20px;
}

/* ── SECTIONS ── */
.section { padding: var(--space-2xl) 0; }
.section-lg { padding: var(--space-3xl) 0; }
.section-sm { padding: var(--space-xl) 0; }
.bg-white    { background: var(--white); }
.bg-off      { background: var(--off-white); }
.bg-light    { background: var(--gray-light); }
.bg-black    { background: var(--black); }
.bg-concrete { background: var(--concrete); }

/* ── FORMS ── */
.form-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
}
.form-label--dark { color: var(--text-dark); }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-dark);
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-submit { width: 100%; margin-top: 4px; }
.honeypot { display: none !important; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  border-top: 4px solid var(--red);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 4px solid var(--red);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.card-icon {
  font-size: 30px;
  margin-bottom: 14px;
  display: block;
}
.card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.card-title--white { color: var(--white); }
.card-body {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.7;
}
.card-body--white { color: rgba(255,255,255,0.72); }

/* Service link card */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--concrete);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: box-shadow var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); }
.service-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: opacity var(--transition), transform 0.35s ease;
}
.service-card:hover .service-card-img { opacity: 0.55; transform: scale(1.03); }
.service-card-body {
  position: relative;
  z-index: 2;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-card-arrow {
  width: 28px;
  height: 28px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 14px;
  font-weight: 900;
}
.service-card-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── PROCESS STEPS ── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.process-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
}
.process-step--dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.process-num {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  flex-shrink: 0;
}
.process-content {}
.process-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.process-title--white { color: var(--white); }
.process-desc {
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.65;
}
.process-desc--white { color: rgba(255,255,255,0.7); }

/* ── COMPARISON TABLE ── */
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 480px;
}
.compare-table th {
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.compare-table th:first-child { background: var(--black); color: var(--white); }
.compare-table th.col-poly   { background: var(--red);   color: var(--white); }
.compare-table th.col-epoxy  { background: var(--gray-dark); color: var(--white); }
.compare-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--gray-border);
  vertical-align: top;
}
.compare-table tr:nth-child(even) td { background: var(--off-white); }
.compare-table td:first-child { font-weight: 700; color: var(--text-dark); }
.compare-table .yes { color: #2e7d32; font-weight: 700; }
.compare-table .no  { color: var(--gray-mid); }
.compare-table .better { color: var(--red); font-weight: 700; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { border: 1px solid var(--gray-border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item--dark { border-color: rgba(255,255,255,0.1); }
details.faq-item > summary {
  list-style: none;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--white);
  user-select: none;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item--dark > summary {
  background: rgba(255,255,255,0.04);
  color: var(--white);
}
details.faq-item[open] > summary { color: var(--red); border-bottom: 1px solid var(--gray-border); }
details.faq-item--dark[open] > summary { color: var(--red); border-bottom-color: rgba(255,255,255,0.1); }
.faq-toggle {
  width: 26px;
  height: 26px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
  transition: background var(--transition);
}
details.faq-item[open] .faq-toggle { background: var(--concrete); }
.faq-answer {
  padding: 6px 22px 20px;
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.75;
  background: var(--white);
}
.faq-answer--dark {
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.72);
}

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 20px 14px 12px;
  font-size: 12px;
  color: var(--white);
  font-weight: 600;
  line-height: 1.4;
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gray-light);
  color: var(--gray-mid);
  font-size: 12px;
  text-align: center;
  padding: 16px;
  min-height: 180px;
}

/* ── REVIEW CARDS ── */
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--gray-dark); line-height: 1.75; margin-bottom: 14px; font-style: italic; }
.review-author { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.review-location { font-size: 12px; color: var(--gray-mid); }

/* ── AREAS GRID ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.area-pill {
  display: block;
  padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  text-align: center;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.area-pill:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }
.area-pill--active { border-color: var(--red); color: var(--red); background: var(--red-light); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--red);
  padding: var(--space-xl) 0;
}
.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.cta-band-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}
.cta-band-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

/* ── PROSE CONTENT ── */
.prose p { font-size: 15px; color: var(--gray-dark); line-height: 1.8; margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  margin: 32px 0 12px;
}
.prose ul {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}
.prose ul li {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--gray-border);
}
.stat-block {
  background: var(--black);
  padding: 24px 20px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ── SCHEMA BADGE ── */
.schema-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.schema-dot {
  width: 8px; height: 8px;
  background: #2e7d32;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* ── PAGE HERO (interior) ── */
.page-hero {
  background:
    linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.3) 100%),
    url('/assets/images/hero-bg.jpg') center 30% / cover no-repeat;
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-pretag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.page-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.page-hero-h1 em { font-style: normal; color: var(--red); }
.page-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.72;
  max-width: 560px;
  margin-bottom: 28px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--white);
  border-top: 3px solid var(--gray-border);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-card {
  border: 2px solid var(--red);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
}
.footer-logo-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gray-light);
  margin: 0 auto 10px;
  overflow: hidden;
  border: 2px solid var(--gray-border);
}
.footer-logo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.footer-biz-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.footer-contact-info {
  font-size: 12px;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 14px;
}
.footer-card-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.footer-btn-red {
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 6px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  display: block;
}
.footer-btn-outline {
  background: transparent;
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 6px;
  border: 2px solid var(--text-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  display: block;
}
.footer-social { display: flex; gap: 8px; justify-content: center; }
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--white);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  text-decoration: none;
  color: var(--gray-dark);
  flex-shrink: 0;
}
.social-icon svg { display: block; }
.social-icon:hover { border-color: var(--red); color: var(--red); background: rgba(232,24,26,0.06); }
.social-icon--facebook:hover { border-color: #1877F2; color: #1877F2; background: rgba(24,119,242,0.06); }
.social-icon--instagram:hover { border-color: #E1306C; color: #E1306C; background: rgba(225,48,108,0.06); }
.social-icon--youtube:hover { border-color: #FF0000; color: #FF0000; background: rgba(255,0,0,0.06); }
.social-icon--google:hover { border-color: #4285F4; color: #4285F4; background: rgba(66,133,244,0.06); }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links li a { font-size: 13px; color: var(--gray-dark); transition: color var(--transition); }
.footer-links li a:hover { color: var(--red); }
.footer-hours { font-size: 12px; color: var(--gray-dark); line-height: 2.1; }
.footer-bottom {
  border-top: 1px solid var(--gray-border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.footer-bottom-text { font-size: 12px; color: var(--gray-mid); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 12px; color: var(--gray-mid); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--red); }

/* Image placeholder utility */
.img-placeholder {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-mid);
  font-size: 12px;
  text-align: center;
  padding: 20px;
  border: 2px dashed var(--gray-border);
  min-height: 240px;
}

/* ── RESPONSIVE — TABLET 640px ── */
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-row { grid-template-columns: repeat(4, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .nav-phone { display: flex; }
  .cta-band-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ── RESPONSIVE — DESKTOP 900px ── */
@media (min-width: 900px) {
  :root { --gutter: 48px; }
  .nav-menu { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 60px; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 240px 1fr 1fr 1fr 160px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ── RESPONSIVE — WIDE 1200px ── */
@media (min-width: 1200px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── ACCESSIBILITY ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ── PRINT ── */
@media print {
  .site-header, .cta-band, .hero-form-panel { display: none; }
}

/* ── HERO IMAGE — mobile uses lighter version ── */
@media (max-width: 639px) {
  .hero, .page-hero {
    background-image:
      linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.6) 100%),
      url('/assets/images/hero-bg-mobile.jpg');
    background-position: left center;
    background-size: cover;
  }
}