/* ═══════════════════════════════════════════════════════════════════
   SEVEN EAGLES PAINTING LLC — Main Stylesheet
   Brand: Red (#CC1B1B), Black (#111111), White (#FFFFFF)
═══════════════════════════════════════════════════════════════════ */

/* ═══ CSS Variables ═══ */
:root {
  --red:         #CC1B1B;
  --red-dark:    #A31515;
  --red-light:   #e53535;
  --black:       #111111;
  --black-soft:  #1e1e1e;
  --white:       #ffffff;
  --gray-50:     #f9f9f9;
  --gray-100:    #f3f3f3;
  --gray-200:    #e5e5e5;
  --gray-400:    #9ca3af;
  --gray-600:    #4b5563;
  --gray-800:    #1f2937;

  --nav-h:       92px;
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow:      0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.16);
  --transition:  0.25s ease;

  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ═══ Reset & Base ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--red-dark); }
a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 3px;
}

button:focus-visible,
.btn:focus-visible,
.tab-btn:focus-visible,
.nav-toggle:focus-visible,
.project-img-btn:focus-visible,
.lightbox-close:focus-visible,
.faq-item summary:focus-visible,
#back-to-top:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

ul { list-style: none; }

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 800;
  color: var(--black);
}

h1 { font-size: clamp(1.7rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.45rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.15rem; font-weight: 700; }

blockquote { quotes: none; }

/* ═══ Utility ═══ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}
.section-dark {
  background: var(--black-soft);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }
.section-dark .section-tag { color: var(--red-light); }

.section-gray {
  background: var(--gray-50);
}

.section-dark-alt {
  background: var(--gray-800);
  color: var(--white);
}
.section-dark-alt h2, .section-dark-alt p { color: var(--white); }
.section-dark-alt .section-tag { color: var(--red-light); }

.text-red { color: var(--red); }

main[id],
section[id] {
  scroll-margin-top: calc(var(--nav-h) + 12px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.section-header h2 { margin: 0.5rem 0 1rem; }
.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
}
.section-dark .section-header p,
.section-dark-alt .section-header p { color: var(--gray-400); }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  background: rgba(204, 27, 27, 0.08);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(204, 27, 27, 0.2);
}

/* ═══ Buttons ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(204,27,27,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-lg {
  padding: 0.9rem 1.9rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}


/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--nav-h);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo img {
  height: 78px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
.logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  white-space: nowrap;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--red);
  background: rgba(204,27,27,0.06);
}

/* Right side CTA */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--red); }
.nav-phone svg { width: 16px; height: 16px; fill: var(--red); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
  gap: 0.25rem;
}
.mobile-menu[hidden] { display: none; }

.mobile-link {
  padding: 0.7rem 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-link:hover { color: var(--red); }

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 0.5rem;
  font-weight: 700;
  color: var(--black);
  font-size: 1rem;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-phone svg { width: 18px; height: 18px; fill: var(--red); }

.mobile-cta {
  margin-top: 0.75rem;
  justify-content: center;
  font-size: 1rem;
}


/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  min-height: min(calc(100svh - var(--nav-h)), 920px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0 1.5rem 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-red-roller.jpg');
  background-size: cover;
  background-position: 62% center;
  background-repeat: no-repeat;
  filter: blur(2px) saturate(0.9);
  transform: scale(1.05);
  transform-origin: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.66) 60%,
    rgba(0,0,0,0.88) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  min-width: 0;
  max-width: 860px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding: 4rem 0 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  background: rgba(204,27,27,0.9);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  max-width: 100%;
  text-align: center;
}
.hero-badge svg { width: 14px; height: 14px; fill: #FFD700; }
.hero-badge-sep { opacity: 0.8; }

#hero h1 {
  color: var(--white);
  font-size: clamp(1.65rem, 5.5vw, 3.8rem);
  letter-spacing: -0.02em;
  max-width: 780px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
#hero h1 .text-red { color: #ff4444; }

.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 620px;
  width: 100%;
  min-width: 0;
  line-height: 1.6;
  margin: 0 auto;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 38rem;
}

.hero-actions .btn {
  min-height: 52px;
}

/* Stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(204,27,27,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 1rem 1.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 2rem;
  text-align: center;
  min-width: 0;
}
.stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
  line-height: 1.35;
}
.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.25);
}


/* ═══════════════════════════════════════
   SERVICES TABS
═══════════════════════════════════════ */
.tab-controls {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-600);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.tab-btn svg {
  width: 18px; height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}
.tab-btn:hover {
  border-color: var(--red);
  color: var(--red);
}
.tab-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(204,27,27,0.3);
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (hover: hover) {
  .service-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(204,27,27,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: var(--red);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-top: 0.25rem;
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.6;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--red);
  margin-top: 0.25rem;
  align-self: flex-start;
  padding: 0.5rem 0;      /* tap target height ~28+16=44px with card gap */
  min-height: 44px;
}
.service-link:hover { color: var(--red-dark); }

/* Tab panel visibility */
.tab-panel[hidden] { display: none !important; }
.tab-panel.active { display: block; }


/* ═══════════════════════════════════════
   BEFORE & AFTER GALLERY
═══════════════════════════════════════ */
.sliders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.slider-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Before/After container */
.ba-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  box-shadow: var(--shadow-lg);
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
  -webkit-user-drag: none;
}

/* Before image: desaturated/faded to simulate "before" effect */
.ba-before img {
  filter: grayscale(55%) brightness(0.75) contrast(1.1);
}

/* After image clips from the left, default 50% visible */
.ba-after {
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}

/* Labels */
.ba-label {
  position: absolute;
  bottom: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.55);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }

/* Handle line + button */
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 44px;
  transform: translateX(-50%);
  z-index: 10;
  cursor: col-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: left;
}

.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
  pointer-events: none;
}

.ba-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.ba-btn:active { transform: scale(0.92); }
.ba-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--black);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.gallery-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  font-weight: 500;
}


/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-content { display: flex; flex-direction: column; gap: 1rem; }
.about-content .section-tag { align-self: flex-start; }
.about-content h2 { margin: 0.25rem 0 0.5rem; }
.about-lead {
  font-size: 1.05rem;
  color: var(--black);
  font-weight: 500;
  line-height: 1.7;
}
.about-content p {
  color: var(--gray-600);
  line-height: 1.7;
}

.trust-license-card {
  margin-top: 0.35rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(204, 27, 27, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(204, 27, 27, 0.06), rgba(204, 27, 27, 0.02));
  box-shadow: var(--shadow-sm);
}

.trust-license-main {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.trust-license-main svg {
  width: 20px;
  height: 20px;
  fill: var(--red);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.trust-license-content {
  min-width: 0;
  flex: 1;
}

.trust-license-eyebrow {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.trust-license-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.trust-license-number {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 42px;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(204, 27, 27, 0.22);
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
  user-select: all;
  cursor: text;
}

.trust-license-note {
  margin-top: 0.45rem;
  font-size: 0.84rem;
  color: var(--gray-600);
}

.license-copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(204, 27, 27, 0.24);
  border-radius: 999px;
  background: var(--white);
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.license-copy-btn:hover {
  background: rgba(204, 27, 27, 0.08);
  border-color: rgba(204, 27, 27, 0.35);
}

.license-copy-btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.license-copy-btn.copied {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
}
.trust-item svg {
  width: 18px; height: 18px;
  fill: var(--red);
  flex-shrink: 0;
}

/* Team */
.team-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.team-heading {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.team-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); }

.team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.team-info { flex: 1; }
.team-info h4 { font-size: 1rem; font-weight: 800; }
.team-role {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0.2rem 0 0.5rem;
}
.team-info p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.9rem;
}

.team-contact a {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
}

.team-contact a:hover {
  color: var(--red);
}

/* ═══════════════════════════════════════
   REVIEWS
═══════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
@media (hover: hover) {
  .review-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
  }
}

.review-stars {
  display: flex;
  gap: 3px;
}
.review-stars svg {
  width: 18px;
  height: 18px;
  fill: #F59E0B;
}

.review-card blockquote {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
/* quotes are embedded directly in HTML text */

.review-footer {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--gray-100);
}
.review-footer strong {
  font-size: 0.9rem;
  color: var(--black);
}
.review-footer span {
  font-size: 0.78rem;
  color: var(--gray-400);
}

/* CTA card */
.review-card-cta {
  background: var(--black);
  border-color: transparent;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.review-card-cta .review-stars svg { fill: #F59E0B; }

.review-rating-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.rating-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.rating-count {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 600;
}
.rating-recommend {
  font-size: 0.8rem;
  color: var(--red-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] {
  border-color: var(--red);
}

.faq-item summary {
  padding: 1.2rem 1.5rem;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  background: var(--white);
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover {
  background: var(--gray-50);
}
.faq-item[open] summary {
  background: rgba(204,27,27,0.04);
  border-bottom: 1px solid rgba(204,27,27,0.15);
}

.faq-body {
  padding: 1.2rem 1.5rem;
  background: var(--white);
}
.faq-body p {
  color: var(--gray-600);
  font-size: 0.93rem;
  line-height: 1.7;
}


/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.form-group:last-child { margin-bottom: 0; }

label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
}
label span { color: var(--red); }

input, select, textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--gray-400); }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,27,27,0.12);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #b91c1c;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.12);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z' fill='%23555'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 20px;
  padding-right: 2.5rem;
  cursor: pointer;
}

textarea { resize: vertical; min-height: 120px; }

/* Prevent iOS Safari from auto-zooming on input focus (requires font-size ≥ 16px) */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px;
  }
  textarea {
    resize: none; /* resize handle is unusable on touch */
  }
}

#submit-btn {
  font-size: 1rem;
  padding: 0.9rem 2rem;
  margin-top: 0.5rem;
}
#submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.field-error {
  margin-top: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #b91c1c;
}

.field-error[hidden] { display: none !important; }

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}
.form-success svg { width: 20px; height: 20px; fill: #16a34a; flex-shrink: 0; }
.form-success[hidden] { display: none !important; }

.form-error {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}
.form-error svg { width: 20px; height: 20px; fill: #dc2626; flex-shrink: 0; }
.form-error[hidden] { display: none !important; }
.form-error a { color: var(--red); font-weight: 700; }

/* Contact info panel */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  color: var(--white);
}

.contact-info-block h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--red);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.contact-details svg {
  width: 20px; height: 20px;
  fill: var(--red-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-details a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.contact-details a:hover { color: var(--white); }
.contact-details a,
.contact-line strong {
  word-break: break-word;
}

.contact-line {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-line strong {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-area-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.service-area-text strong { color: var(--white); }

.area-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.area-list li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  padding-left: 0.75rem;
  position: relative;
}
.area-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.7rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hours-table td:first-child { font-weight: 600; color: var(--white); padding-right: 1rem; }
.hours-table tr:last-child td { border-bottom: none; }

.contact-social {
  display: flex;
  gap: 1rem;
}
.contact-social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  transition: all var(--transition);
}
.contact-social a:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.contact-social svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#footer {
  background: var(--black);
  color: rgba(255,255,255,0.65);
}

.footer-top {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.footer-logo .logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.footer-social svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-links nav,
.footer-services nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a,
.footer-services a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-services a:hover { color: var(--white); }

.footer-contact address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-contact a,
.footer-contact span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  display: block;
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-license {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}


/* ═══════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════ */
#back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(204,27,27,0.4);
  transition: all var(--transition);
  z-index: 500;
}
#back-to-top[hidden] { display: none !important; }
#back-to-top:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}
#back-to-top svg {
  width: 20px; height: 20px;
  fill: var(--white);
}


/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.3s; }

.reviews-grid .review-card:nth-child(2) { transition-delay: 0.1s; }
.reviews-grid .review-card:nth-child(3) { transition-delay: 0.2s; }
.reviews-grid .review-card:nth-child(4) { transition-delay: 0.15s; }
.reviews-grid .review-card:nth-child(5) { transition-delay: 0.25s; }

.sliders-grid .slider-wrap:nth-child(2) { transition-delay: 0.12s; }
.sliders-grid .slider-wrap:nth-child(3) { transition-delay: 0.24s; }

/* Hero entry animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-fade { animation: fadeIn 0.8s ease 0.2s both; }
.animate-up   { animation: fadeUp 0.8s ease both; }
.hero-content h1.animate-up  { animation-delay: 0.35s; }
.hero-sub.animate-up         { animation-delay: 0.5s; }
.hero-actions.animate-up     { animation-delay: 0.65s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}


/* ═══════════════════════════════════════
   RESPONSIVE — Tablet
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-brand { grid-column: 1 / -1; }

  /* Gallery: 2 columns on tablet */
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-info { order: -1; }
  .contact-info-block h3 { color: var(--white); }
}


/* ═══════════════════════════════════════
   RESPONSIVE — Mobile
═══════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 78px; }

  /* Nav */
  .nav-links, .nav-right { display: none; }
  .nav-inner {
    position: relative;
    gap: 0.75rem;
    padding: 0 1rem;
  }
  .nav-toggle {
    display: flex;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px; /* ensure 44px tap target */
    margin-left: 0;
  }
  /* Logo: must fit inside 78px nav bar */
  .nav-logo { max-width: calc(100% - 4rem); }
  .nav-logo img {
    height: 60px;
    max-width: 190px;
  }

  /* Hero — reduce section top padding so h1 isn't buried */
  #hero {
    min-height: auto;
    padding: 1.25rem 1rem 0;
  }
  .hero-bg {
    background-position: 64% center;
    transform: scale(1.08);
  }
  .hero-content {
    padding: 2rem 0 1.5rem; /* was 4rem — halved */
    gap: 1rem;
  }
  .hero-content {
    width: 100%;
    max-width: 34rem;
    padding-top: 1.75rem;
    padding-bottom: 1.5rem;
  }
  .hero-badge {
    max-width: calc(100vw - 2rem);
    font-size: 0.64rem;
    letter-spacing: 0.06em;
    line-height: 1.25;
    padding: 0.45rem 0.7rem;
  }
  #hero h1 {
    font-size: clamp(1.75rem, 8.6vw, 2.8rem);
    max-width: 11ch;
  }
  .hero-sub {
    font-size: 0.94rem;
    max-width: 33rem;
  }
  .hero-actions { max-width: 28rem; }

  /* Stats bar */
  .stat-divider { display: none; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 0.35rem;
  }
  .stat-item { padding: 0.75rem 0.65rem; }
  .stat-num { font-size: 1.25rem; }
  .stat-label {
    font-size: 0.66rem;
    letter-spacing: 0.04em;
  }

  /* Sections */
  .section { padding: 3rem 0; }
  .section-header { margin-bottom: 2rem; }
  .section-header p { font-size: 0.95rem; }

  /* Services — full-width tabs with proper tap height */
  .services-grid { grid-template-columns: 1fr; }
  .tab-controls {
    gap: 0.4rem;
    /* let tabs scroll horizontally rather than wrapping awkwardly */
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
    justify-content: flex-start;
    /* hide scrollbar visually */
    scrollbar-width: none;
  }
  .tab-controls::-webkit-scrollbar { display: none; }
  .tab-btn {
    font-size: 0.85rem;
    padding: 0.7rem 1.1rem;
    min-height: 44px; /* touch target */
    flex-shrink: 0;
  }
  .tab-btn svg { display: none; }
  .service-card { padding: 1.5rem; }

  /* Gallery */
  .nav-inner { padding: 0 0.875rem; }
  .nav-toggle { right: 0.875rem; }
  .nav-logo img {
    height: 54px;
    max-width: 170px;
  }
  #hero {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .hero-content {
    max-width: 100%;
    padding-top: 1.5rem;
  }
  .hero-badge {
    max-width: calc(100vw - 1.5rem);
    font-size: 0.56rem;
    gap: 0.25rem;
  }
  .hero-badge svg {
    width: 12px;
    height: 12px;
  }
  #hero h1 {
    font-size: clamp(1.6rem, 10vw, 2.15rem);
    max-width: 9ch;
  }
  .hero-sub { font-size: 0.88rem; }
  .stat-item { padding: 0.65rem 0.5rem; }
  .stat-label { font-size: 0.6rem; }
  .project-grid { grid-template-columns: 1fr; }
  /* Show 2 columns on larger phones (≥ 480px) — see 480px breakpoint */

  /* Trust badges */
  .trust-badges { grid-template-columns: 1fr; }
  .trust-license-card {
    padding: 0.95rem 1rem;
  }
  .trust-license-main {
    gap: 0.75rem;
  }
  .trust-license-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .trust-license-number {
    width: 100%;
    justify-content: center;
    font-size: 0.94rem;
    letter-spacing: 0.06em;
  }
  .license-copy-btn {
    width: auto;
  }

  /* Reviews — platform pills: allow wrap, ensure tap height */
  .platform-pill {
    padding: 0.55rem 0.9rem;
    min-height: 36px;
  }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.25rem; }
  .contact-info { gap: 1.25rem; }
  .contact-social { flex-wrap: wrap; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: auto; }
  /* More tappable footer nav links */
  .footer-links a,
  .footer-services a {
    display: block;
    padding: 0.4rem 0;
    min-height: 36px;
    line-height: 2;
  }
}

@media (max-width: 480px) {
  /* Side padding tighter on very small screens */
  .container { padding: 0 1rem; }

  /* Hero buttons: full width */
  .hero-badge { width: auto; }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  /* Gallery: keep cards readable on narrow phones */
  .project-grid { grid-template-columns: 1fr; }
  /* project images: shorten aspect ratio so they're not too tall */
  .project-img-wrap { aspect-ratio: 4 / 4.5; }
  .project-caption { padding: 0.6rem 0.75rem; }
  .project-caption strong { font-size: 0.8rem; }
  .project-caption span { display: none; } /* hide subtitle at small sizes */

  .contact-social { flex-direction: column; }

  /* Tighten review card padding */
  .review-card { padding: 1.25rem; }
}

@media (max-width: 360px) {
  /* Smallest phones — single column gallery again */
  .project-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 0 0.875rem; }
  .nav-toggle { right: 0.875rem; }
  .nav-logo img {
    height: 54px;
    max-width: 170px;
  }
  #hero {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .hero-content {
    max-width: 100%;
    padding-top: 1.5rem;
  }
  .hero-badge {
    max-width: calc(100vw - 1.5rem);
    font-size: 0.56rem;
    gap: 0.25rem;
  }
  .hero-badge svg {
    width: 12px;
    height: 12px;
  }
  #hero h1 {
    font-size: clamp(1.6rem, 10vw, 2.15rem);
    max-width: 9ch;
  }
  .hero-sub { font-size: 0.88rem; }
  .stat-item { padding: 0.65rem 0.5rem; }
  .stat-label { font-size: 0.6rem; }
  .project-img-wrap { aspect-ratio: 3 / 4; }
  .project-caption span { display: block; }
  .container { padding: 0 0.875rem; }
}

/* ═══════════════════════════════════════
   REVIEW PLATFORM BAR
═══════════════════════════════════════ */
.review-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  color: var(--black);
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.platform-pill:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: var(--shadow);
}

.platform-name {
  font-weight: 600;
}
.platform-count {
  font-weight: 800;
  color: #F59E0B;
}
.platform-pill:hover .platform-count {
  color: #D97706;
}

/* CTA card extra link */
.review-cta-link {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 0.25rem;
}
.review-cta-link:hover { color: rgba(255,255,255,0.85); }


/* ═══ Print styles ═══ */
@media print {
  #navbar, #back-to-top, .hero-actions, .mobile-sticky-cta { display: none; }
  #hero { min-height: auto; color: #000; }
  .hero-overlay, .hero-bg { display: none; }
  #hero h1, .hero-sub { color: #000; }
}


/* ═══════════════════════════════════════
   STAT NUMBER SMALL UNIT
═══════════════════════════════════════ */
.stat-num small {
  font-size: 0.6em;
  font-weight: 700;
  opacity: 0.85;
}


/* ═══════════════════════════════════════
   PROJECT GALLERY (real photos)
═══════════════════════════════════════ */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.project-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
@media (hover: hover) {
  .project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.45);
  }
}

.project-img-btn {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
}

.project-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}
.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
@media (hover: hover) {
  .project-card:hover .project-img-wrap img {
    transform: scale(1.04);
  }
}

/* Service type badge — top-left of image */
.project-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  pointer-events: none;
  backdrop-filter: blur(6px);
}
.badge-exterior {
  background: rgba(204,27,27,0.88);
  color: var(--white);
}
.badge-interior {
  background: rgba(17,17,17,0.82);
  color: var(--white);
}

/* Caption bar below image */
.project-caption {
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.project-caption strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.project-caption span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: block;
}

/* Gallery stagger */
.project-grid .project-card:nth-child(2) { transition-delay: 0.07s; }
.project-grid .project-card:nth-child(3) { transition-delay: 0.14s; }
.project-grid .project-card:nth-child(4) { transition-delay: 0.07s; }
.project-grid .project-card:nth-child(5) { transition-delay: 0.14s; }
.project-grid .project-card:nth-child(6) { transition-delay: 0.21s; }
.project-grid .project-card:nth-child(7) { transition-delay: 0.14s; }

/* Gallery CTA */
.gallery-cta p a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gallery-cta p a:hover { color: var(--white); }


/* ═══════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox[hidden] { display: none !important; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: zoom-out;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-close svg { width: 20px; height: 20px; }

.lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 800px);
  max-height: 92svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80svh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  display: block;
}

.lightbox-caption {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-align: center;
  font-style: normal;
}


/* ═══════════════════════════════════════
   PROCESS / HOW IT WORKS
═══════════════════════════════════════ */
.section-process {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.4rem;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.step-content a { font-weight: 700; }

.process-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 3.5rem; /* visually align with middle of step card */
  color: var(--red);
}
.process-arrow svg {
  width: 28px;
  height: 28px;
}

/* Process stagger */
.process-steps .process-step:nth-child(3) { transition-delay: 0.1s; }
.process-steps .process-step:nth-child(5) { transition-delay: 0.2s; }

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    gap: 1rem;
  }
  .process-arrow {
    padding-top: 0;
    transform: rotate(90deg);
    align-self: center;
  }
  .process-step { width: 100%; }
}


/* ═══════════════════════════════════════
   FORM TRUST NOTE
═══════════════════════════════════════ */
.form-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 0.75rem;
  line-height: 1.5;
}
.form-note svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: var(--gray-400);
}


/* ═══════════════════════════════════════
   WHAT HAPPENS NEXT
═══════════════════════════════════════ */
.next-steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  counter-reset: steps;
}
.next-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  counter-increment: steps;
}
.next-steps-list li::before {
  content: counter(steps);
  min-width: 22px;
  height: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ═══════════════════════════════════════
   MOBILE STICKY CTA BAR
═══════════════════════════════════════ */
.mobile-sticky-cta {
  display: none; /* hidden on desktop */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--white);
  border-top: 2px solid var(--gray-200);
  padding: 0.65rem 1rem;
  gap: 0.6rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  align-items: center;
}

/* Only show on mobile, only when .is-visible class is applied by JS */
@media (max-width: 768px) {
  .mobile-sticky-cta.is-visible {
    display: flex;
  }

  /* Push the back-to-top button up so it doesn't overlap the bar */
  #back-to-top {
    bottom: 5rem;
  }
}

.sticky-call {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--black);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  min-height: 44px;
  text-decoration: none;
}
.sticky-call svg {
  width: 18px;
  height: 18px;
  fill: var(--red);
  flex-shrink: 0;
}
.sticky-call:hover { background: var(--gray-200); color: var(--black); }

.sticky-estimate {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  background: var(--red);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  min-height: 44px;
  text-decoration: none;
  transition: background var(--transition);
}
.sticky-estimate:hover { background: var(--red-dark); color: var(--white); }

/* Add bottom padding to page on mobile so sticky bar doesn't cover footer content */
@media (max-width: 768px) {
  #footer {
    padding-bottom: 4.5rem;
  }
}
