/* =========================================================
   CCSI Banners — Industrial deep-teal design system
   ========================================================= */

:root {
  /* Brand */
  --teal: #0F4C4F;
  --teal-deep: #0A3739;
  --teal-soft: #1B6A6E;
  --teal-tint: #E4F1F1;

  /* Industrial neutrals */
  --bg: #F7F4EE;          /* warm cream */
  --surface: #FFFFFF;
  --concrete: #ECE7DD;
  --concrete-2: #DAD3C5;
  --ink: #15201F;          /* near-black with green undertone */
  --ink-2: #2E3A39;
  --muted: #5A6766;
  --line: #D7CFC0;

  /* Accents */
  --safety: #D4843A;       /* secondary warm (used sparingly) */

  /* Typography */
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Fraunces", "Inter", serif;

  /* Layout */
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(15, 32, 31, 0.06);
  --shadow: 0 6px 24px rgba(15, 32, 31, 0.08);
  --shadow-lg: 0 18px 60px rgba(15, 32, 31, 0.12);
}

[data-theme="dark"] {
  --bg: #0E1716;
  --surface: #14201E;
  --concrete: #1B2826;
  --concrete-2: #233331;
  --ink: #F2EEE5;
  --ink-2: #D2CDC1;
  --muted: #94A09E;
  --line: #2B3937;
  --teal-tint: #173B3D;
}

/* =========================================================
   Reset & base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-deep); }
[data-theme="dark"] a { color: #6FB8BB; }
[data-theme="dark"] a:hover { color: #93D2D5; }

p { margin: 0 0 1em; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
  margin: 0 0 16px;
}
[data-theme="dark"] .eyebrow { color: #6FB8BB; }

.accent { color: var(--teal); font-style: italic; font-family: var(--font-display); }
[data-theme="dark"] .accent { color: #6FB8BB; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 12px 20px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1.5px 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;
  white-space: nowrap;
}
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-primary:hover { background: var(--teal-deep); color: #fff; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

[data-theme="dark"] .btn-ghost { color: var(--ink); border-color: var(--ink); }
[data-theme="dark"] .btn-ghost:hover { background: var(--ink); color: var(--bg); }

.link-cta {
  display: inline-block;
  font-weight: 600;
  color: var(--teal);
  border-bottom: 1.5px solid var(--teal);
  padding-bottom: 2px;
  transition: gap 0.2s ease;
}
.link-cta:hover { color: var(--teal-deep); border-color: var(--teal-deep); }
[data-theme="dark"] .link-cta { color: #6FB8BB; border-color: #6FB8BB; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
[data-theme="dark"] .site-header { background: rgba(14, 23, 22, 0.92); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
  gap: 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}
[data-theme="dark"] .logo { color: #6FB8BB; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo-text em {
  font-style: italic;
  color: var(--teal);
  font-weight: 500;
}
[data-theme="dark"] .logo-text em { color: #6FB8BB; }

.primary-nav {
  display: flex; gap: 28px;
}
.primary-nav a {
  color: var(--ink-2);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}
.primary-nav a:hover { color: var(--teal); }
.primary-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--teal);
  transition: width 0.2s ease;
}
.primary-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-2);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.theme-toggle:hover { border-color: var(--teal); color: var(--teal); }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.header-cta { padding: 10px 20px; font-size: 0.9rem; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  padding: 80px 0 100px;
  background:
    radial-gradient(80% 60% at 90% 0%, rgba(15, 76, 79, 0.06) 0%, rgba(15, 76, 79, 0) 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--line);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-copy { max-width: 580px; }
.hero h1 { margin-bottom: 24px; }
.lede {
  font-size: 1.18rem;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-meta {
  display: flex; gap: 32px;
  list-style: none; padding: 0; margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.hero-meta strong { color: var(--ink); font-weight: 700; }

/* Hero visual — stylized banner mockup */
.hero-visual {
  position: relative;
  height: 460px;
  display: flex; align-items: center; justify-content: center;
}
.hero-banner {
  position: absolute;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}
.hero-banner-a {
  width: 360px; height: 220px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  top: 40px; right: 20px;
  transform: rotate(-2deg);
  padding: 24px;
  color: #fff;
}
.hb-strip {
  height: 6px; width: 60%;
  background: var(--safety);
  margin-bottom: 16px;
  border-radius: 1px;
}
.hb-content { display: flex; flex-direction: column; gap: 12px; }
.hb-logo {
  width: 70px; height: 70px;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
}
.hb-line { height: 14px; background: rgba(255, 255, 255, 0.85); width: 80%; border-radius: 2px; }
.hb-line.short { width: 50%; height: 10px; background: rgba(255, 255, 255, 0.5); }
.hb-grommet {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--concrete-2);
  border: 2px solid #2A2A2A;
  border-radius: 50%;
}
.g1 { top: 8px; left: 8px; }
.g2 { top: 8px; right: 8px; }
.g3 { bottom: 8px; left: 8px; }
.g4 { bottom: 8px; right: 8px; }

.hero-banner-b {
  width: 240px; height: 140px;
  bottom: 50px; left: 0;
  transform: rotate(3deg);
  background: #2A2A2A;
  overflow: hidden;
}
.hb-mesh {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 8px 8px;
}
.hb-mesh::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212, 132, 58, 0.85), rgba(15, 76, 79, 0.6));
  mix-blend-mode: multiply;
}

.hero-fence {
  position: absolute;
  bottom: -10px; left: 0; right: 0;
  display: flex; justify-content: space-between;
  padding: 0 40px;
  z-index: -1;
}
.fence-post {
  width: 4px; height: 200px;
  background: var(--concrete-2);
  border-radius: 2px 2px 0 0;
}

/* =========================================================
   Trust bar
   ========================================================= */
.trust-bar {
  background: var(--ink);
  color: #ECE7DD;
  padding: 18px 0;
}
.trust-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.trust-item { display: inline-flex; align-items: center; gap: 10px; }
.dot {
  width: 6px; height: 6px; background: var(--safety); border-radius: 50%;
  display: inline-block;
}

/* =========================================================
   Section heads
   ========================================================= */
.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head h2 { margin-bottom: 16px; }
.section-lede { font-size: 1.1rem; color: var(--muted); }

/* =========================================================
   Products
   ========================================================= */
.products { padding: 100px 0; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 18px;
}
.products-grid .product-featured {
  grid-column: span 2;
  grid-row: span 2;
}
.products-grid .product-custom {
  background: var(--teal);
  color: #fff;
}

.product {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
[data-theme="dark"] .product { background: var(--surface); border-color: var(--line); }

.product-visual {
  height: 180px;
  background: var(--concrete);
  position: relative;
  overflow: hidden;
}
.product-featured .product-visual { height: 320px; }

.product-body {
  padding: 24px;
  display: flex; flex-direction: column;
  flex: 1;
}
.product-body h3 { margin-bottom: 10px; }
.product-body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; flex: 1; }

.product-body-custom { padding: 32px; }
.product-body-custom .eyebrow { color: rgba(255,255,255,0.75); }
.product-body-custom h3 { color: #fff; }
.product-body-custom p { color: rgba(255,255,255,0.85); }
.product-body-custom .link-cta { color: #fff; border-color: rgba(255,255,255,0.6); }
.product-body-custom .link-cta:hover { color: var(--safety); border-color: var(--safety); }

.product-specs {
  list-style: none; padding: 0; margin: 0 0 20px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.product-specs li {
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--concrete);
  color: var(--ink-2);
  padding: 5px 10px;
  border-radius: 3px;
  letter-spacing: 0.02em;
}

.product-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--safety);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  z-index: 2;
}

/* Product visual variants */
.visual-mesh {
  background:
    linear-gradient(135deg, rgba(15, 76, 79, 0.85), rgba(10, 55, 57, 0.95)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.12), rgba(255,255,255,0.12) 1px, transparent 1px, transparent 6px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.12), rgba(255,255,255,0.12) 1px, transparent 1px, transparent 6px);
}
.mesh-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(212, 132, 58, 0.5) 0%, transparent 50%);
}
.visual-vinyl {
  background:
    linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  position: relative;
}
.visual-vinyl::before {
  content: "JOBSITE";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.visual-scaffold {
  background:
    repeating-linear-gradient(90deg, var(--concrete-2) 0, var(--concrete-2) 18px, var(--concrete) 18px, var(--concrete) 24px);
  position: relative;
}
.visual-scaffold::after {
  content: "";
  position: absolute; inset: 30% 15%;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  border-radius: 2px;
}
.visual-grand {
  background: var(--safety);
  position: relative;
}
.visual-grand::before {
  content: "NOW OPEN";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.visual-sign {
  background: var(--ink);
  position: relative;
}
.visual-sign::before {
  content: "";
  position: absolute; inset: 25% 20%;
  background:
    linear-gradient(180deg, var(--concrete) 0%, var(--concrete) 30%, var(--teal) 30%, var(--teal) 60%, var(--safety) 60%, var(--safety) 100%);
  border-radius: 2px;
}

/* =========================================================
   Why us
   ========================================================= */
.why {
  padding: 100px 0;
  background: var(--concrete);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
[data-theme="dark"] .why { background: var(--concrete); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.why-copy { position: sticky; top: 110px; }
.why-copy h2 { margin-bottom: 20px; }
.why-copy p { font-size: 1.08rem; color: var(--ink-2); margin-bottom: 28px; }

.why-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
}
.why-list li {
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}
.why-list h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-list p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* =========================================================
   Process
   ========================================================= */
.process { padding: 100px 0; }
.process-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 28px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.step {
  position: relative;
  background: var(--bg);
  padding-top: 0;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--surface);
  border: 1.5px solid var(--teal);
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
[data-theme="dark"] .step-num { background: var(--surface); }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.95rem; margin: 0; }

.process-cta { margin-top: 64px; text-align: center; }

/* =========================================================
   Gallery
   ========================================================= */
.gallery {
  padding: 100px 0;
  background: var(--concrete);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
}
.g {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--ink);
}
.g-1 { grid-column: span 4; grid-row: span 2; }
.g-2 { grid-column: span 2; grid-row: span 1; }
.g-3 { grid-column: span 2; grid-row: span 1; }
.g-4 { grid-column: span 3; grid-row: span 1; }
.g-5 { grid-column: span 3; grid-row: span 1; }

.g-mock { width: 100%; height: 100%; position: relative; }

.mock-fence-wrap {
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 12px, rgba(255,255,255,0.06) 12px, rgba(255,255,255,0.06) 13px),
    linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.mock-fence-overlay {
  text-align: center;
  color: #fff;
}
.mock-fence-overlay span {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.4vw, 2.6rem);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.mock-fence-overlay small {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--safety);
  font-weight: 600;
}

.mock-roof {
  background:
    linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 20px;
}
.mock-roof::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 50%;
  background:
    repeating-linear-gradient(90deg, #3A3A3A 0, #3A3A3A 20px, #2D2D2D 20px, #2D2D2D 40px);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.mock-roof-banner {
  position: relative;
  background: var(--safety);
  color: #fff;
  padding: 10px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-radius: 2px;
  z-index: 1;
}

.mock-commercial {
  background: linear-gradient(135deg, #4A5050 0%, #2A3030 100%);
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  padding: 24px;
}
.mock-commercial-stripe {
  height: 8px;
  background: var(--safety);
  width: 70%;
  margin-bottom: 12px;
}
.mock-commercial-text span {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.mock-commercial-text small {
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.mock-grand {
  background:
    repeating-linear-gradient(135deg, var(--safety) 0, var(--safety) 30px, #B8722E 30px, #B8722E 60px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff;
  text-align: center;
}
.mock-grand span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  letter-spacing: 0.04em;
}
.mock-grand small {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  margin-top: 4px;
  opacity: 0.85;
}

.mock-developer {
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 24px;
  color: var(--ink);
}
.mock-dev-logos {
  display: flex; gap: 12px; margin-bottom: 16px;
}
.mock-dev-logos > div {
  width: 50px; height: 50px;
  background: var(--ink);
  border-radius: 50%;
  opacity: 0.85;
}
.mock-dev-logos > div:nth-child(2) { background: var(--teal); }
.mock-dev-logos > div:nth-child(3) { background: var(--safety); }
.mock-dev-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.18em;
}

figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: 100px 0; }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-head { position: sticky; top: 110px; }
.faq-head h2 { margin-bottom: 16px; }
.faq-head p { color: var(--muted); margin-bottom: 24px; }

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--teal);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
  margin: 14px 0 0;
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* =========================================================
   Quote form
   ========================================================= */
.quote {
  padding: 100px 0;
  background: var(--ink);
  color: #ECE7DD;
}
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.quote-copy { padding-top: 16px; }
.quote-copy .eyebrow { color: var(--safety); }
.quote-copy h2 { color: #fff; margin-bottom: 20px; }
.quote-copy > p { color: rgba(236, 231, 221, 0.78); font-size: 1.05rem; margin-bottom: 28px; }
.quote-trust {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.quote-trust li {
  font-size: 0.95rem;
  color: rgba(236, 231, 221, 0.85);
  padding-left: 24px;
  position: relative;
}
.quote-trust li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 12px; height: 2px; background: var(--safety);
}

.quote-form {
  background: #FCFAF5;
  color: var(--ink);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.quote-form label {
  display: flex; flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-2);
}
.quote-form label.full { margin-bottom: 20px; }
.quote-form label span em { color: var(--safety); font-style: normal; }

.quote-form input,
.quote-form select,
.quote-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 76, 79, 0.12);
}
.quote-form textarea { resize: vertical; min-height: 100px; }

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-micro {
  text-align: center;
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(236, 231, 221, 0.78);
  padding: 64px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(236, 231, 221, 0.15);
}
.footer-brand p { font-size: 0.95rem; line-height: 1.6; max-width: 360px; margin-top: 16px; }
.footer-brand .logo-text { color: #ECE7DD; }
.footer-brand .logo { color: #6FB8BB; }
.footer-col h4 { color: #fff; margin-bottom: 16px; font-size: 0.78rem; }
.footer-col a {
  display: block;
  color: rgba(236, 231, 221, 0.7);
  font-size: 0.92rem;
  padding: 4px 0;
  text-decoration: none;
}
.footer-col a:hover { color: #fff; }
.footer-meta { font-size: 0.88rem; color: rgba(236, 231, 221, 0.55); margin-top: 12px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(236, 231, 221, 0.5);
}
.footer-bottom a { color: rgba(236, 231, 221, 0.7); }
.footer-bottom a:hover { color: #fff; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 360px; max-width: 500px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid .product-featured { grid-column: span 2; grid-row: span 1; }
  .products-grid .product-featured .product-visual { height: 220px; }

  .why-inner, .faq-inner, .quote-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-copy, .faq-head { position: static; }
  .why-list { grid-template-columns: 1fr 1fr; }

  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .g-1 { grid-column: span 2; grid-row: span 2; }
  .g-2, .g-3, .g-4, .g-5 { grid-column: span 1; grid-row: span 1; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }

  .primary-nav { display: none; }
  .header-cta { padding: 9px 16px; font-size: 0.85rem; }

  .hero { padding: 56px 0 72px; }
  .hero-meta { flex-direction: column; gap: 8px; }

  .trust-inner { justify-content: flex-start; gap: 16px 24px; font-size: 0.82rem; }

  .products-grid { grid-template-columns: 1fr; }
  .products-grid .product-featured { grid-column: span 1; }

  .why-list { grid-template-columns: 1fr; gap: 24px; }

  .process-steps { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .g-1, .g-2, .g-3, .g-4, .g-5 { grid-column: span 1; grid-row: span 1; }

  .quote-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  .products, .why, .process, .gallery, .faq, .quote { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
}
