/* ============================================================
   SBS Concrete Solutions — site.css
   Aesthetic: industrial / utilitarian. Black + signal red + concrete gray.
   Type system: Oswald (display, condensed) + Inter (body).
   ============================================================ */

:root {
  /* Palette — pulled from the logo */
  --black: #0a0a0a;
  --black-2: #141414;
  --black-3: #1f1f1f;
  --red: #dc1f1f;          /* logo red */
  --red-dark: #a3170f;
  --red-rgb: 220, 31, 31;
  --concrete: #c9c5be;     /* warm concrete gray */
  --concrete-dark: #6b6660;
  --concrete-light: #e8e5df;
  --cream: #f5f2ec;        /* off-white / paper */
  --text: #1a1a1a;
  --text-muted: #5a554f;
  --line: rgba(0, 0, 0, 0.12);
  --line-dark: rgba(255, 255, 255, 0.10);

  /* Functional vars (for kit-spec components) */
  --primary: var(--black);
  --primary-dark: var(--black-2);
  --primary-mid: var(--black-3);
  --accent: var(--red);
  --accent-rgb: var(--red-rgb);
  --muted: var(--text-muted);

  /* Typography */
  --font-display: "Oswald", "Arial Narrow", "Helvetica Neue Condensed", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(64px, 8vw, 112px);
  --radius: 4px;        /* sharp, industrial */
  --radius-card: 6px;
}

/* ============================================================
   Reset / base
   ============================================================ */

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

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

body {
  margin: 0;
  padding-bottom: 70px; /* room for sticky phone bar */
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0 0 0.6em;
  color: var(--black);
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.55rem); letter-spacing: 0; }
h4 { font-size: 1.05rem; letter-spacing: 0.02em; }

p { margin: 0 0 1em; }

/* Skip to content */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--red);
  color: white;
  padding: 12px 16px;
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Focus states */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

/* ============================================================
   Containers / utilities
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 0.9em;
  padding-left: 28px;
  position: relative;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--red);
  transform: translateY(-50%);
}

.eyebrow.on-dark { color: var(--red); }

/* CTA buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  min-height: 48px;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

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

.btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { background: white; color: var(--black); border-color: white; }

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

/* Section wrappers */
section {
  padding: var(--section-y) 0;
  position: relative;
}
section.tight { padding: clamp(40px, 5vw, 64px) 0; }
section.dark { background: var(--black); color: white; }
section.dark h2, section.dark h3, section.dark h4 { color: white; }
section.dark .eyebrow { color: var(--red); }
section.cream { background: var(--cream); }
section.concrete-bg { background: var(--concrete-light); }

/* ============================================================
   Section 1 — Announcement Bar
   ============================================================ */

.announcement-bar {
  background: var(--black-2);
  color: var(--concrete);
  font-size: 0.84rem;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-dark);
}
.announcement-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.announcement-bar a { color: var(--cream); font-weight: 500; }
.announcement-bar a:hover { color: var(--red); text-decoration: none; }
.announcement-bar .left { display: flex; align-items: center; gap: 8px; }
.announcement-bar .right { display: flex; align-items: center; gap: 22px; }

@media (max-width: 768px) {
  .announcement-bar { display: none; }
}

/* ============================================================
   Section 2 — Sticky Navigation
   ============================================================ */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--black);
  border-bottom: 1px solid var(--line-dark);
  /* subtle red top accent */
  box-shadow: inset 0 3px 0 var(--red);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
  min-height: 76px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand img { height: 52px; width: auto; }
.nav-brand:hover { text-decoration: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 0;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.2s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: white;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: white; margin: 4px 0; transition: transform 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--black);
    border-bottom: 1px solid var(--line-dark);
    padding: 12px var(--gutter);
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--line-dark); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 14px 0; }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 12px 0; width: 100%; }
}

/* ============================================================
   Section 3 — Hero
   ============================================================ */

.hero {
  position: relative;
  min-height: clamp(620px, 88vh, 880px);
  background: var(--black);
  color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-bottom: clamp(60px, 6vw, 90px); /* room for sticky phone bar */
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-bg::after {
  /* dramatic gradient: dark left, lighter right where the form sits */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.65) 45%, rgba(10,10,10,0.78) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.0) 30%, rgba(10,10,10,0.6) 100%);
}
.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 6vw, 80px);
}
.hero-content { color: white; }
.hero h1 {
  color: white;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  margin-bottom: 0.4em;
}
.hero h1 .accent { color: var(--red); }
.hero .subhead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.86);
  max-width: 580px;
  margin-bottom: 1.4em;
  line-height: 1.55;
}
.hero .trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  list-style: none;
  margin: 0 0 2em;
  padding: 0;
}
.hero .trust-row li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}
.hero .trust-row li::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2L4.8 12l-1.4 1.4L9 19l12-12-1.4-1.4z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2L4.8 12l-1.4 1.4L9 19l12-12-1.4-1.4z'/></svg>") center / contain no-repeat;
  flex: 0 0 14px;
}
.hero .cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero { min-height: 0; padding: 60px 0 40px; }
  .hero-bg img { object-position: center 35%; }
}

/* ============================================================
   Lead Form — used in hero AND #contact
   ============================================================ */

.lead-card {
  background: white;
  border-radius: var(--radius-card);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.5),
              0 8px 24px rgba(0, 0, 0, 0.3);
  border-top: 4px solid var(--red);
  color: var(--text);
}
.lead-card .form-eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 4px;
}
.lead-card h3 {
  color: var(--black);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin-bottom: 0.4em;
}
.lead-card .form-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.2em;
}

.lead-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}
.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"],
.lead-form select,
.lead-form textarea {
  display: block;
  width: 100%;
  padding: 12px 14px;
  margin-top: 6px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 1rem;
  background: white;
  color: var(--text);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  min-height: 48px;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(var(--red-rgb), 0.15);
}
.lead-form textarea {
  resize: vertical;
  min-height: 96px;
}
.lead-form .form-step-actions {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 8px;
}
.lead-form .next-btn,
.lead-form .submit-btn,
.lead-form .back-btn {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: var(--radius);
  border: 2px solid var(--red);
  cursor: pointer;
  min-height: 48px;
  transition: background 0.15s ease, color 0.15s ease;
}
.lead-form .next-btn,
.lead-form .submit-btn {
  background: var(--red);
  color: white;
  width: 100%;
}
.lead-form .next-btn:hover,
.lead-form .submit-btn:hover { background: var(--red-dark); border-color: var(--red-dark); }
.lead-form .submit-btn { flex: 1; }
.lead-form .back-btn {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
  flex: 0 0 auto;
}
.lead-form .back-btn:hover { background: var(--black-3); color: white; border-color: var(--black-3); }

.lead-form .hc-error {
  background: #fff3f3;
  border: 1px solid var(--red);
  color: var(--red-dark);
  padding: 10px 14px;
  border-radius: var(--radius);
  margin-top: 12px;
  font-size: 0.92rem;
}

.lead-form .form-foot {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* Honeypot — offscreen, NOT display:none */
._gotcha {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-step[hidden] { display: none; }
.form-step { display: block; }

/* ============================================================
   Section 4 — Proof / Stats Bar
   ============================================================ */

.proof-bar {
  background: var(--black-2);
  color: white;
  padding: 28px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.proof-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.proof-bar .stats { display: flex; flex-wrap: wrap; }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 600;
  color: white;
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat .num .accent { color: var(--red); }
.stat .label {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-top: 8px;
  font-weight: 500;
}
.proof-quote {
  flex: 0 1 36%;
  font-style: italic;
  color: var(--cream);
  font-size: 0.95rem;
  border-left: 3px solid var(--red);
  padding: 4px 0 4px 18px;
  line-height: 1.45;
}
.proof-quote .stars { color: var(--red); letter-spacing: 1px; font-style: normal; display: block; margin-bottom: 4px; }
.proof-quote cite { display: block; margin-top: 6px; font-style: normal; font-size: 0.8rem; color: var(--concrete); }

@media (max-width: 900px) {
  .proof-bar .container { flex-direction: column; align-items: stretch; gap: 20px; }
  .proof-quote { display: none; }
  .proof-bar .stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat { padding: 0; border-right: none; border-bottom: 1px solid var(--line-dark); padding-bottom: 16px; }
  .stat:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
}

/* ============================================================
   Section 5 — Problem
   ============================================================ */

.problem h2 .strike { position: relative; display: inline-block; }
.problem h2 .strike::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  top: 53%;
  height: 6px;
  background: var(--red);
  transform: rotate(-1.5deg);
  z-index: -1;
  opacity: 0.85;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.problem-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
  position: relative;
}
.problem-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(var(--red-rgb), 0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: bold;
}
.problem-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.problem-card p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }
.problem-bridge {
  margin-top: 36px;
  padding: 24px;
  border-left: 3px solid var(--red);
  background: var(--concrete-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem;
}
.problem-bridge strong { color: var(--black); }

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

/* ============================================================
   Section 6 — Services
   ============================================================ */

.services-head {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}
.services-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -10px rgba(0,0,0,0.18);
}
.service-card .img-wrap {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--concrete-dark);
  position: relative;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover img { transform: scale(1.04); }
.service-card .body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.service-card p { font-size: 0.95rem; color: var(--text-muted); margin: 0 0 16px; flex: 1; }
.service-card .service-cta {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.service-card .service-cta::after {
  content: "→";
  transition: transform 0.2s ease;
}
.service-card:hover .service-cta::after { transform: translateX(3px); }
.service-card .num {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--black);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: var(--radius);
  z-index: 1;
}
.services-foot {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-head { grid-template-columns: 1fr; gap: 12px; align-items: start; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Section 7 — About
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.about-photo img { width: 100%; height: auto; display: block; }
.about-photo::after {
  content: "";
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80%;
  height: 80%;
  border: 2px solid var(--red);
  border-radius: var(--radius-card);
  z-index: -1;
}
.about-content h2 { margin-bottom: 0.5em; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-stats .stat-box .n {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--black);
  font-weight: 600;
  line-height: 1;
}
.about-stats .stat-box .n .accent { color: var(--red); }
.about-stats .stat-box .l {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}
.value-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}
.value-pillars li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  font-weight: 500;
}
.value-pillars li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 12px;
  background: var(--red);
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo::after { display: none; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Section 8 — Why + Process
   ============================================================ */

.why-section { background: var(--black); color: white; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: var(--black-2);
  padding: 28px;
  border-radius: var(--radius-card);
  border: 1px solid var(--line-dark);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.why-card:hover { border-color: var(--red); transform: translateY(-2px); }
.why-card .icon {
  width: 48px; height: 48px;
  background: var(--red);
  color: white;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}
.why-card h3 { color: white; font-size: 1.2rem; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,0.7); font-size: 0.94rem; margin: 0; }

.process {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--line-dark);
}
.process-eyebrow { color: var(--red); margin-bottom: 12px; }
.process h2 { color: white; margin-bottom: 48px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--line-dark);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step .circle {
  width: 56px; height: 56px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 auto 16px;
  border: 4px solid var(--black);
}
.step h4 { color: white; font-size: 1rem; margin-bottom: 6px; }
.step p { color: rgba(255,255,255,0.6); font-size: 0.86rem; margin: 0; }

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .process-steps::before { display: none; }
}

/* ============================================================
   Section 9 — Gallery
   ============================================================ */

.gallery-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.gallery-head h2 { margin-bottom: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--concrete-dark);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.tall { aspect-ratio: 4 / 5; }
.gallery-item.wide { aspect-ratio: 16 / 9; grid-column: span 2; }

.gallery-item .caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
  color: white;
  padding: 20px 18px 14px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gallery-item:hover .caption { opacity: 1; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
}

/* ============================================================
   Section 10 — Reviews
   ============================================================ */

.reviews-section { background: var(--cream); }
.reviews-head { text-align: center; margin-bottom: 48px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.review-card .stars {
  color: var(--red);
  letter-spacing: 3px;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.review-card blockquote {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.04rem;
  color: var(--text);
  line-height: 1.5;
  flex: 1;
}
.review-card cite {
  display: block;
  font-style: normal;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.review-card cite strong { color: var(--black); display: block; margin-bottom: 2px; font-style: normal; font-size: 0.94rem; }
.review-card .badge {
  display: inline-block;
  background: var(--concrete-light);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius);
  margin-top: 6px;
  font-weight: 600;
}

.reviews-summary {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
}
.reviews-summary strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--red);
  letter-spacing: 0.04em;
}

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

/* ============================================================
   Section 11 — Service Areas
   ============================================================ */

.areas-section { background: var(--black); color: white; }
.areas-section .lead-p { color: rgba(255,255,255,0.78); max-width: 760px; font-size: 1.05rem; margin-bottom: 28px; }
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 56px;
}
.chip {
  background: var(--black-2);
  color: var(--cream);
  border: 1px solid var(--line-dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}
.chip.featured { background: var(--red); border-color: var(--red); color: white; }

.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 48px;
  border-top: 1px solid var(--line-dark);
}
.niche {
  border-left: 3px solid var(--red);
  padding-left: 18px;
}
.niche h4 { color: white; margin-bottom: 6px; font-size: 1.05rem; }
.niche p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin: 0; }

.areas-cta {
  margin-top: 40px;
  text-align: center;
  font-size: 1rem;
  color: var(--cream);
}
.areas-cta a {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  text-decoration: none;
  margin-left: 8px;
}
.areas-cta a:hover { text-decoration: underline; }

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

/* ============================================================
   Section 12 — FAQ
   ============================================================ */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.faq-side h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.faq-side p { color: var(--text-muted); margin-bottom: 20px; }
.faq-side .phone-big {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-block;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.faq-side .phone-big:hover { border-color: var(--red); text-decoration: none; }

.faq-list { padding: 0; margin: 0; list-style: none; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 36px 22px 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  position: relative;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--red);
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer {
  padding: 0 0 22px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
}
.faq-item .answer p { margin: 0 0 0.8em; }
.faq-item .answer p:last-child { margin-bottom: 0; }

.faq-mid-cta {
  margin: 32px 0;
  padding: 24px;
  background: var(--concrete-light);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.faq-mid-cta p { margin: 0; font-weight: 500; }

.faq-end-cta {
  margin-top: 40px;
  padding: 32px;
  background: var(--black);
  color: white;
  text-align: center;
  border-radius: var(--radius-card);
}
.faq-end-cta .label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-bottom: 8px;
}
.faq-end-cta a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: white;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.faq-end-cta a:hover { color: var(--red); text-decoration: none; }

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

/* ============================================================
   Section 13 — Contact
   ============================================================ */

.contact-section {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%);
  color: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.contact-info h2 { color: white; margin-bottom: 0.4em; }
.contact-info .lead { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 32px; max-width: 520px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail .ic {
  width: 44px; height: 44px;
  background: rgba(var(--red-rgb), 0.15);
  color: var(--red);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 44px;
  font-size: 1.1rem;
  font-weight: bold;
}
.contact-detail .label {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-bottom: 4px;
}
.contact-detail .value {
  font-size: 1.05rem;
  color: white;
  font-weight: 500;
}
.contact-detail .value a { color: white; }
.contact-detail .value a:hover { color: var(--red); text-decoration: none; }
.contact-detail .sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.86rem;
  margin-top: 2px;
}

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

/* ============================================================
   Section 14 — Footer
   ============================================================ */

.site-footer {
  background: var(--black);
  color: var(--concrete);
  padding: 64px 0 0;
  border-top: 1px solid var(--line-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand img { height: 80px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; color: rgba(255,255,255,0.7); max-width: 320px; margin-bottom: 16px; }
.footer-brand .nap {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.86);
  line-height: 1.7;
  margin: 0;
}
.footer-brand .nap a { color: rgba(255,255,255,0.86); }
.footer-brand .nap a:hover { color: var(--red); text-decoration: none; }
.footer-brand .lic { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 16px; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-col a { color: var(--concrete); }
.footer-col a:hover { color: var(--red); text-decoration: none; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--concrete);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: var(--red); color: white; border-color: var(--red); }
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Sticky phone bar — all devices
   ============================================================ */

.sticky-phone-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  border-top: 2px solid var(--red);
  padding: 10px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.spb-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-bottom: 2px;
}
.spb-phone {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.spb-phone:hover { color: var(--red); text-decoration: none; }
.spb-btn {
  background: var(--red);
  color: white;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid var(--red);
  transition: background 0.15s ease;
}
.spb-btn:hover { background: var(--red-dark); border-color: var(--red-dark); color: white; text-decoration: none; }

@media (max-width: 600px) {
  .spb-phone { font-size: 1.1rem; }
  .spb-btn { padding: 10px 14px; font-size: 0.78rem; }
  .spb-label { font-size: 0.62rem; }
}

/* ============================================================
   /thanks/ page
   ============================================================ */

.thanks-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px var(--gutter);
  text-align: center;
}
.thanks-card {
  max-width: 600px;
}
.thanks-card .check {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.4rem;
}
.thanks-card h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 16px; }
.thanks-card p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 24px; }
.thanks-card .meta { font-family: var(--font-mono); font-size: 0.95rem; color: var(--text); }

/* ============================================================
   Reduced motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
