@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,700;0,800;0,900;1,800;1,900&family=Barlow:wght@400;500;600&display=swap');

/* ── TOKENS ───────────────────────────────────────────────────────────────── */
:root {
  --color-primary:   #e63000;
  --color-secondary: #ff7700;
  --color-accent:    #ffcc00;
  --color-bg:        #0d0d0d;
  --color-surface:   #181818;
  --color-surface2:  #222222;
  --color-text:      #f0f0f0;
  --color-muted:     #888888;
  --color-border:    #2a2a2a;

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-pill: 9999px;

  --shadow-md: 0 4px 24px rgba(0,0,0,.5);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.6);

  --nav-h:     68px;
  --container: 1160px;
}

/* ── RESET ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); font-size: 1rem; line-height: 1.65;
        color: var(--color-text); background: var(--color-bg); overflow-x: hidden; }
img   { display: block; max-width: 100%; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { font-family: inherit; border: none; cursor: pointer; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
section { padding-block: 5.5rem; }
.section-label   { font-size: .75rem; font-weight: 600; letter-spacing: .12em;
                   text-transform: uppercase; color: var(--color-primary); margin-bottom: .5rem; }
.section-heading { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem);
                   font-weight: 900; line-height: 1.05; color: var(--color-text);
                   text-transform: uppercase; margin-bottom: 1rem; }
.section-sub     { color: var(--color-muted); max-width: 560px; }

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn-hero {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 2.2rem; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  letter-spacing: .04em; text-transform: uppercase;
  background: var(--color-primary); color: #fff;
  transition: filter .15s, transform .12s, box-shadow .15s;
}
.btn-hero:hover { filter: brightness(1.12); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(230,48,0,.4); }
.btn-hero.ghost {
  background: transparent; border: 2px solid rgba(255,255,255,.35); color: var(--color-text);
}
.btn-hero.ghost:hover { border-color: var(--color-primary); color: var(--color-primary); box-shadow: none; }
.btn-outline {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .75rem 1.75rem; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  letter-spacing: .04em; text-transform: uppercase;
  border: 2px solid var(--color-primary); color: var(--color-primary);
  transition: background .15s, color .15s;
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }

/* ── NAV ──────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); background: rgba(13,13,13,.92);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--color-border);
}
.nav-inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: 100%;
}
.nav-wordmark {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 900;
  letter-spacing: .06em; text-transform: uppercase; color: var(--color-text);
  flex-shrink: 0;
}
.nav-accent { color: var(--color-primary); }
.nav-links {
  display: flex; align-items: center; gap: 2rem; margin-left: auto;
}
.nav-link {
  font-size: .875rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--color-muted);
  transition: color .15s;
}
.nav-link:hover, .nav-link.active { color: var(--color-text); }
.nav-cta {
  margin-left: 1rem; padding: .55rem 1.4rem;
  background: var(--color-primary); color: #fff;
  font-family: var(--font-display); font-weight: 800;
  font-size: .875rem; letter-spacing: .06em; text-transform: uppercase;
  border-radius: var(--radius-sm); transition: filter .15s;
}
.nav-cta:hover { filter: brightness(1.12); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; background: transparent; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--color-text); border-radius: 2px; transition: .2s; }

/* ── MOBILE MENU ──────────────────────────────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--color-bg); flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  padding: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem; background: transparent; color: var(--color-text);
  padding: .4rem .7rem;
}
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.mobile-nav-links a {
  font-family: var(--font-display); font-size: 2rem; font-weight: 900;
  text-transform: uppercase; color: var(--color-text); letter-spacing: .06em;
}
.mobile-phone {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  color: var(--color-primary); letter-spacing: .04em;
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: var(--nav-h); overflow: hidden;
  background: radial-gradient(ellipse at 70% 40%, #2a0a00 0%, #0d0d0d 60%);
}
.hero-bg-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 80% 20%, rgba(230,48,0,.18) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255,119,0,.1) 0%, transparent 45%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 760px; padding: 4rem 1.5rem 8rem;
  margin-left: max(1.5rem, calc((100vw - var(--container)) / 2 + 1.5rem));
}
.hero-eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--color-secondary); margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(4.5rem, 12vw, 9rem);
  font-weight: 900; line-height: .92; text-transform: uppercase;
  letter-spacing: -.01em; color: var(--color-text); margin-bottom: 1.4rem;
}
.hero-title em {
  font-style: italic; color: var(--color-primary);
  display: block;
}
.hero-sub {
  font-size: 1.1rem; color: var(--color-muted); max-width: 480px;
  margin-bottom: 2rem; line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* swatch motif at hero bottom */
.hero-swatches {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; height: 10px;
}
.h-swatch {
  flex: 1; background: var(--c); opacity: .8;
  transition: opacity .3s;
}
.h-swatch:hover { opacity: 1; flex: 2; }

/* ── BEFORE / AFTER ───────────────────────────────────────────────────────── */
.ba-section { background: var(--color-surface); }
.ba-section .section-heading,
.ba-section .section-sub { text-align: center; }
.ba-section .section-label { text-align: center; }
.ba-wrap { margin-top: 2.5rem; }
.ba-container {
  --ba-pos: 50%;
  position: relative; width: 100%; max-width: 860px; margin-inline: auto;
  height: 400px; border-radius: var(--radius-lg); overflow: hidden;
  cursor: ew-resize; user-select: none;
  box-shadow: var(--shadow-lg); border: 1px solid var(--color-border);
}

/* BEFORE — dull, faded room */
.ba-before {
  position: absolute; inset: 0; overflow: hidden;
}
.ba-room-before .room-wall {
  position: absolute; inset: 0;
  background: linear-gradient(165deg, #c8bfb0 0%, #b8ae9e 40%, #a89e8e 100%);
}
.ba-room-before .room-accent-wall {
  position: absolute; left: 0; top: 0; bottom: 0; width: 28%;
  background: linear-gradient(180deg, #bdb2a2 0%, #a8a094 100%);
  border-right: 2px solid #c9c0b3;
}
.ba-room-before .room-trim {
  position: absolute; top: 0; left: 0; right: 0; height: 14px;
  background: #ddd9d3; border-bottom: 1px solid #ccc7c0;
}
.ba-room-before .room-baseboard {
  position: absolute; bottom: 0; left: 0; right: 0; height: 22px;
  background: #ccc7c1; border-top: 2px solid #bbb6b0;
}
.ba-room-before .room-window {
  position: absolute; top: 12%; right: 12%; width: 22%; height: 48%;
  background: #d8dfe0; border: 3px solid #c0bbb5; border-radius: 2px;
}
.ba-room-before .win-pane { position: absolute; inset: 4px; background: linear-gradient(135deg, #cdd5d6 0%, #b8c2c4 100%); border-radius: 1px; }
.ba-room-before .win-cross-h { position: absolute; top: 50%; left: 0; right: 0; height: 3px; background: #c0bbb5; transform: translateY(-50%); }
.ba-room-before .win-cross-v { position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: #c0bbb5; transform: translateX(-50%); }
.ba-room-before .room-door {
  position: absolute; bottom: 22px; left: 14%; width: 10%; height: 55%;
  background: #bfb9b1; border: 2px solid #b0aaa2; border-radius: 2px 2px 0 0;
}

/* AFTER — vivid, transformed room */
.ba-after {
  position: absolute; inset: 0; overflow: hidden;
  clip-path: inset(0 0 0 var(--ba-pos));
}
.ba-room-after .room-wall {
  position: absolute; inset: 0;
  background: linear-gradient(165deg, #e8f0ee 0%, #d4e6e1 40%, #c2d9d2 100%);
}
.ba-room-after .room-accent-wall {
  position: absolute; left: 0; top: 0; bottom: 0; width: 28%;
  background: linear-gradient(180deg, #e63000 0%, #c02800 100%);
  border-right: 2px solid #ff5500;
}
.ba-room-after .room-trim {
  position: absolute; top: 0; left: 0; right: 0; height: 14px;
  background: #ffffff; border-bottom: 2px solid #e8e8e8;
}
.ba-room-after .room-baseboard {
  position: absolute; bottom: 0; left: 0; right: 0; height: 22px;
  background: #ffffff; border-top: 2px solid #e0e0e0;
}
.ba-room-after .room-window {
  position: absolute; top: 12%; right: 12%; width: 22%; height: 48%;
  background: #a8d8ea; border: 3px solid #fff; border-radius: 2px;
  box-shadow: 0 0 0 2px rgba(255,255,255,.3);
}
.ba-room-after .win-pane { position: absolute; inset: 4px; background: linear-gradient(135deg, #b8e4f8 0%, #90c8e0 100%); }
.ba-room-after .win-cross-h { position: absolute; top: 50%; left: 0; right: 0; height: 3px; background: rgba(255,255,255,.7); transform: translateY(-50%); }
.ba-room-after .win-cross-v { position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: rgba(255,255,255,.7); transform: translateX(-50%); }
.ba-room-after .room-door {
  position: absolute; bottom: 22px; left: 14%; width: 10%; height: 55%;
  background: #f5f0eb; border: 2px solid #e8e0d8; border-radius: 2px 2px 0 0;
}
.paint-splash {
  position: absolute; border-radius: 50%;
  opacity: .22;
}
.paint-splash.s1 {
  width: 180px; height: 180px; right: 30%; bottom: -40px;
  background: var(--color-secondary);
}
.paint-splash.s2 {
  width: 120px; height: 120px; right: 18%; top: 20%;
  background: var(--color-accent);
}

/* labels */
.ba-label {
  position: absolute; top: 1rem; z-index: 5;
  padding: .35rem .9rem; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-size: .8rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
}
.ba-before .ba-label { left: 1rem; background: rgba(0,0,0,.55); color: #fff; }
.ba-after  .ba-label { right: 1rem; background: var(--color-primary); color: #fff; }

/* divider */
.ba-divider {
  position: absolute; top: 0; bottom: 0; z-index: 10;
  left: var(--ba-pos); transform: translateX(-50%);
  width: 3px; background: #fff;
  box-shadow: 0 0 12px rgba(255,255,255,.4);
  pointer-events: all;
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; color: #333;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
  transition: transform .1s;
}
.ba-container:active .ba-handle { transform: translate(-50%,-50%) scale(.92); }
.ba-hint {
  text-align: center; margin-top: 1rem;
  font-size: .8rem; color: var(--color-muted); letter-spacing: .06em;
}

/* ── SERVICES MASONRY ─────────────────────────────────────────────────────── */
.services-section { background: var(--color-bg); }
.masonry-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 280px 240px;
  gap: 10px;
  margin-top: 2.5rem;
}
.masonry-tile { position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: default; }
.masonry-tile .tile-bg {
  position: absolute; inset: 0; transition: transform .4s ease;
}
.masonry-tile:hover .tile-bg { transform: scale(1.03); }
.masonry-tile .tile-content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 60%);
}
.tile-icon { font-size: 1.8rem; margin-bottom: .5rem; }
.tile-name {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 900;
  text-transform: uppercase; line-height: 1.1; color: #fff; margin-bottom: .4rem;
}
.tile-desc { font-size: .85rem; color: rgba(255,255,255,.8); line-height: 1.5; }

/* tile positions */
.tile-interior  { grid-column: 1; grid-row: 1 / 3; }
.tile-exterior  { grid-column: 2; grid-row: 1; }
.tile-cabinets  { grid-column: 2; grid-row: 2; }
.tile-commercial{ grid-column: 3; grid-row: 1 / 3; }

/* tile bg colors */
.tile-interior  .tile-bg { background: linear-gradient(135deg, #1a3a2a 0%, #0f2019 100%); }
.tile-exterior  .tile-bg { background: linear-gradient(135deg, #1e3a5f 0%, #0f1e33 100%); }
.tile-cabinets  .tile-bg { background: linear-gradient(135deg, #3d1f00 0%, #2a1500 100%); }
.tile-commercial.tile-bg { background: linear-gradient(135deg, #2a0a0a 0%, #1a0505 100%); }
.tile-commercial .tile-bg { background: linear-gradient(135deg, #1a0808 0%, #2d0f0f 100%); }

/* accent strips on tiles */
.tile-interior::before, .tile-exterior::before,
.tile-cabinets::before, .tile-commercial::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.tile-interior::before  { background: linear-gradient(90deg, #2a9d5c, #34d399); }
.tile-exterior::before  { background: linear-gradient(90deg, #1e40af, #3b82f6); }
.tile-cabinets::before  { background: linear-gradient(90deg, #c15a2b, #ff7700); }
.tile-commercial::before{ background: linear-gradient(90deg, #e63000, #ff4444); }

.services-more { text-align: center; margin-top: 2rem; }

/* ── PAINT SWATCHES ───────────────────────────────────────────────────────── */
.swatches-section {
  background: var(--color-surface); padding: 3rem 0;
  overflow: hidden;
}
.swatches-headline {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--color-muted); text-align: center; margin-bottom: 1.5rem;
}
.swatches-track {
  display: flex; gap: 10px; padding: 0 1.5rem;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
  justify-content: center; flex-wrap: wrap;
}
.swatches-track::-webkit-scrollbar { display: none; }
.swatch-chip {
  flex-shrink: 0; width: 90px; border-radius: var(--radius-md);
  overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-md);
  animation: chipFloat 3s ease-in-out infinite;
  transition: transform .2s, box-shadow .2s;
}
.swatch-chip:nth-child(odd) { animation-delay: .4s; }
.swatch-chip:nth-child(3n) { animation-delay: .8s; }
.swatch-chip:nth-child(4n) { animation-delay: 1.2s; }
.swatch-chip:hover { transform: translateY(-6px) scale(1.05); box-shadow: 0 12px 32px rgba(0,0,0,.5); }
.chip-color {
  width: 100%; height: 64px;
  background: var(--sc);
}
.chip-name {
  display: block; padding: .4rem .5rem;
  font-size: .68rem; font-weight: 600; line-height: 1.3;
  text-align: center; letter-spacing: .04em;
  background: var(--sc); color: var(--sct);
  border-top: 1px solid rgba(0,0,0,.1);
}
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* ── STATS ────────────────────────────────────────────────────────────────── */
.stats-section {
  background: var(--color-primary); padding-block: 3.5rem;
}
.stats-row {
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 1.5rem;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: .3rem; flex: 1; min-width: 120px;
}
.stat-num {
  font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900; color: #fff; line-height: 1;
}
.stat-free {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900; color: #fff; font-style: italic;
}
.stat-label { font-size: .8rem; font-weight: 600; letter-spacing: .08em;
              text-transform: uppercase; color: rgba(255,255,255,.75); }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,.25); }

/* ── ABOUT ────────────────────────────────────────────────────────────────── */
.about-section { background: var(--color-surface); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-body { color: var(--color-muted); margin-block: 1rem 1.5rem; line-height: 1.75; }
.about-bullets { display: flex; flex-direction: column; gap: .6rem; }
.about-bullets li { display: flex; align-items: center; gap: .7rem; color: var(--color-text); }
.bullet-mark { color: var(--color-primary); font-weight: 700; flex-shrink: 0; }

.about-color-stack {
  position: relative; display: flex; flex-direction: column; gap: 6px;
  border-radius: var(--radius-lg); overflow: hidden; height: 360px;
}
.color-stack-item {
  flex: 1; border-radius: 4px;
  transition: flex .3s ease;
}
.color-stack-item:hover { flex: 2.5; }
.cs1 { background: linear-gradient(90deg, #e63000, #ff5500); }
.cs2 { background: linear-gradient(90deg, #1e40af, #3b82f6); }
.cs3 { background: linear-gradient(90deg, #2a9d5c, #34d399); }
.cs4 { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.color-stack-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.2rem; background: rgba(0,0,0,.7);
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: #fff; text-align: center;
  line-height: 1.4;
}

/* ── TESTIMONIALS ─────────────────────────────────────────────────────────── */
.testimonials-section { background: var(--color-bg); }
.testimonials-section .section-label,
.testimonials-section .section-heading { text-align: center; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin-top: 2.5rem;
}
.tcard {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 1.75rem;
  display: flex; flex-direction: column; gap: .75rem;
  transition: border-color .2s, transform .2s;
}
.tcard:hover { border-color: var(--color-primary); transform: translateY(-3px); }
.tcard-stars { color: var(--color-accent); font-size: 1.1rem; letter-spacing: 2px; }
.tcard-text { font-size: .95rem; color: var(--color-muted); line-height: 1.7; flex: 1; }
.tcard-author { display: flex; flex-direction: column; gap: .1rem; }
.tcard-name { font-weight: 700; color: var(--color-text); }
.tcard-city { font-size: .8rem; color: var(--color-muted); }

/* ── CTA STRIP ────────────────────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, #1a0800 0%, #2d0f00 100%);
  border-top: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  padding-block: 4rem;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-headline {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; text-transform: uppercase; color: var(--color-text);
}
.cta-sub { color: var(--color-muted); margin-top: .5rem; max-width: 480px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; flex-shrink: 0; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.site-footer { background: #080808; padding-block: 3rem; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; align-items: start;
}
.footer-wordmark {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 900;
  letter-spacing: .06em; text-transform: uppercase; color: var(--color-text);
}
.footer-tagline { color: var(--color-muted); font-size: .85rem; margin-top: .3rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { color: var(--color-muted); font-size: .9rem; transition: color .15s; }
.footer-links a:hover { color: var(--color-text); }
.footer-contact-col { display: flex; flex-direction: column; gap: .5rem; }
.footer-contact-col a { color: var(--color-primary); font-weight: 700; }
.footer-contact-col span { color: var(--color-muted); font-size: .875rem; line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid var(--color-border); margin-top: 2rem; padding-top: 1.5rem;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  color: var(--color-muted); font-size: .8rem;
}
.footer-credit a { color: var(--color-primary); }

/* ── STICKY CALL ──────────────────────────────────────────────────────────── */
.sticky-call {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: 1rem; text-align: center;
  background: var(--color-primary); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  letter-spacing: .04em; text-transform: uppercase;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
/* ── PAGE HERO (inner pages) ──────────────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem); padding-bottom: 3rem;
  background: radial-gradient(ellipse at 30% 50%, #1a0a00 0%, #0d0d0d 70%);
  border-bottom: 1px solid var(--color-border);
}
.page-hero-sub { color: var(--color-muted); max-width: 520px; margin-top: .5rem; }

/* ── FULL SERVICES ────────────────────────────────────────────────────────── */
.full-services { background: var(--color-bg); }
.full-services-grid { display: flex; flex-direction: column; gap: 0; margin-top: 1rem; }
.service-row {
  display: flex; align-items: flex-start; gap: 1.5rem; padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-border);
}
.service-row:last-child { border-bottom: none; }
.service-row-icon { font-size: 2rem; flex-shrink: 0; width: 48px; text-align: center; padding-top: .15rem; }
.service-row-title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 900;
  text-transform: uppercase; color: var(--color-text); margin-bottom: .4rem;
}
.service-row-desc { color: var(--color-muted); line-height: 1.7; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq-section { background: var(--color-surface); }
.faq-wrap { max-width: 760px; }
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  background: var(--color-surface2); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); overflow: hidden;
}
.faq-q {
  padding: 1.2rem 1.5rem; cursor: pointer; font-weight: 600;
  color: var(--color-text); list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--color-primary); flex-shrink: 0; }
details[open] .faq-q::after { content: '−'; }
.faq-a { padding: 0 1.5rem 1.25rem; color: var(--color-muted); line-height: 1.7; }

/* ── CONTACT ──────────────────────────────────────────────────────────────── */
.contact-section { background: var(--color-bg); }
.contact-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: start;
}
.contact-form {
  display: flex; flex-direction: column; gap: 1.1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .8rem; font-weight: 600; letter-spacing: .06em;
                    text-transform: uppercase; color: var(--color-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); padding: .75rem 1rem;
  color: var(--color-text); font-size: .95rem; font-family: var(--font-body);
  transition: border-color .15s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(230,48,0,.15);
}
.form-group select { appearance: none; cursor: pointer; }
.form-submit { width: 100%; justify-content: center; margin-top: .5rem; }

.contact-info { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-info-block { display: flex; flex-direction: column; gap: .25rem; }
.info-label {
  font-size: .75rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--color-primary); margin-bottom: .2rem;
}
.info-value { color: var(--color-text); line-height: 1.6; }
.info-value a { color: var(--color-text); font-weight: 700; }
.contact-trust { display: flex; flex-direction: column; gap: .5rem; margin-top: .5rem; }
.trust-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem 1rem; border-radius: var(--radius-pill);
  border: 1px solid var(--color-border); background: var(--color-surface);
  font-size: .8rem; font-weight: 600; color: var(--color-muted);
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { margin-left: 1.5rem; }
  .masonry-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 200px 200px;
  }
  .tile-interior  { grid-column: 1 / 3; grid-row: 1; }
  .tile-exterior  { grid-column: 1;     grid-row: 2; }
  .tile-cabinets  { grid-column: 2;     grid-row: 2; }
  .tile-commercial{ grid-column: 1 / 3; grid-row: 3; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; }
  .stats-row { gap: 2rem; }
  .stat-divider { display: none; }
}
@media (max-width: 600px) {
  .ba-container { height: 300px; }
  .masonry-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .tile-interior, .tile-exterior, .tile-cabinets, .tile-commercial {
    grid-column: 1; grid-row: auto; height: 180px;
  }
  .footer-inner { grid-template-columns: 1fr; }
  .sticky-call { display: block; }
  body { padding-bottom: 56px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}
