/* ============================================================
   SEMPER FI GUTTER GUYS LLC
   Premium Brand Stylesheet
   Color Palette: Onyx Black / Gunmetal Silver / Deep Crimson
   ============================================================ */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  /* Core Brand Colors */
  --black:        #0a0a0b;
  --black-2:      #111114;
  --black-3:      #18181c;
  --gunmetal:     #1e2028;
  --steel:        #2a2d38;
  --steel-light:  #363a48;
  --silver:       #8a9ab5;
  --silver-light: #b4c2d4;
  --white:        #f0f4f8;
  --white-pure:   #ffffff;
  --crimson:      #b91c1c;
  --crimson-light:#dc2626;
  --crimson-glow: #ef4444;
  --gold:         #c9a84c;
  --gold-light:   #e2c06e;

  /* Semantic */
  --bg-primary:   var(--black);
  --bg-secondary: var(--black-2);
  --bg-card:      var(--gunmetal);
  --text-primary: var(--white);
  --text-muted:   var(--silver);
  --accent:       var(--crimson);
  --accent-hover: var(--crimson-light);

  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-display: 'Bebas Neue', cursive;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 130px);

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --ease-circ:  cubic-bezier(0.77, 0, 0.18, 1);

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.6);
  --shadow-red: 0 0 40px rgba(185,28,28,0.25);
  --glow-red:   0 0 20px rgba(220,38,38,0.4);

  /* Borders */
  --border:       1px solid rgba(138,154,181,0.12);
  --border-red:   1px solid rgba(185,28,28,0.4);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--black);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── UTILITY ── */
.accent { color: var(--crimson-light); }
.mono   { font-family: 'Courier New', monospace; letter-spacing: 0.05em; }

/* ============================================================
   ANNOUNCEMENT BAR
============================================================ */
.announcement-bar {
  background: var(--crimson);
  padding: 9px 0;
  z-index: 1000;
  position: relative;
}

.announcement-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.announcement-inner i { margin-right: 5px; }
.announcement-inner a { color: #fff; text-decoration: underline; }
.announcement-inner a:hover { opacity: 0.85; }
.divider { opacity: 0.5; font-size: 0.9em; }

/* ============================================================
   NAVIGATION
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 0;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), top 0.3s;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 11, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.6), 0 1px 0 rgba(185,28,28,0.3);
}

.navbar.with-bar { top: 37px; }
.navbar.scrolled.with-bar { top: 0; }

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-emblem {
  width: 44px;
  height: 44px;
  background: var(--crimson);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--glow-red);
  transition: transform 0.3s var(--ease-out);
}

.nav-logo:hover .logo-emblem { transform: scale(1.08); }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  color: var(--white-pure);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-light);
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.25s, background 0.25s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: var(--crimson-light);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out);
}

.nav-link:hover { color: var(--white-pure); }
.nav-link:hover::after { transform: translateX(-50%) scaleX(1); }

.nav-cta {
  background: var(--crimson);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--crimson-light);
  box-shadow: var(--glow-red);
  transform: translateY(-1px);
}

.nav-cta i { margin-right: 6px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white-pure);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 32px 80px;
}

/* Hero Background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(185,28,28,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(185,28,28,0.05) 0%, transparent 60%),
    linear-gradient(160deg, #0d0e12 0%, #0a0a0b 50%, #0f0d10 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(138,154,181,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138,154,181,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 30%, transparent 90%);
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--crimson-light);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float var(--dur) var(--delay) infinite ease-in-out;
}

@keyframes particle-float {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-120px) scale(1.5); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(185,28,28,0.15);
  border: 1px solid rgba(185,28,28,0.35);
  border-radius: 40px;
  padding: 7px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crimson-glow);
  margin-bottom: 28px;
  animation: fade-up 0.8s var(--ease-out) 0.1s both;
}

.hero-badge i { font-size: 0.65rem; }

/* Hero Headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(72px, 15vw, 160px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white-pure);
  margin-bottom: 4px;
}

.headline-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}

.headline-line.line-1 {
  animation: slide-up 0.9s var(--ease-out) 0.3s forwards;
}

.headline-line.line-2 {
  color: var(--crimson-light);
  text-shadow: 0 0 60px rgba(220,38,38,0.4);
  animation: slide-up 0.9s var(--ease-out) 0.5s forwards;
}

@keyframes slide-up {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-light);
  margin-top: 16px;
  margin-bottom: 20px;
  animation: fade-up 0.8s var(--ease-out) 0.7s both;
}

.hero-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  animation: fade-up 0.8s var(--ease-out) 0.85s both;
}

.pillar span {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.pillar-dot { color: var(--crimson); font-size: 1.2rem; font-weight: 700; }

.hero-sub {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fade-up 0.8s var(--ease-out) 1s both;
}

.hero-sub strong { color: var(--silver-light); }

/* Hero CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fade-up 0.8s var(--ease-out) 1.15s both;
}

/* Hero Trust Row */
.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fade-up 0.8s var(--ease-out) 1.3s both;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--silver);
}

.trust-badge i {
  font-size: 1.2rem;
  color: var(--gold);
}

.trust-badge span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  text-align: left;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--silver);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fade-up 1s var(--ease-out) 1.6s both;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--silver), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--crimson);
  color: #fff;
  border-color: var(--crimson);
}

.btn-primary:hover {
  background: var(--crimson-light);
  border-color: var(--crimson-light);
  box-shadow: var(--glow-red);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white-pure);
  border-color: rgba(240,244,248,0.4);
}

.btn-secondary:hover {
  background: rgba(240,244,248,0.1);
  border-color: var(--white-pure);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--silver-light);
  border-color: transparent;
  padding: 13px 16px;
}

.btn-ghost:hover { color: var(--white-pure); }

.btn-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  border-color: transparent;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(253,29,29,0.3);
}

.btn-yelp {
  background: #d32323;
  color: #fff;
  border-color: #d32323;
}

.btn-yelp:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

.btn-google-review {
  background: transparent;
  color: var(--white-pure);
  border-color: rgba(240,244,248,0.35);
}

.btn-google-review:hover {
  background: rgba(240,244,248,0.08);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   STATS BAR
============================================================ */
.stats-bar {
  background: var(--gunmetal);
  border-top: 1px solid rgba(185,28,28,0.3);
  border-bottom: var(--border);
  padding: 48px 32px;
}

.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--white-pure);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--crimson-light);
  line-height: 1;
  vertical-align: super;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 40px;
}

/* ============================================================
   SECTION SHARED STYLES
============================================================ */
.section-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header.light .section-title,
.section-header.light .section-subtitle { color: var(--white-pure); }
.section-header.light .section-subtitle { color: rgba(240,244,248,0.7); }

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--crimson-light);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white-pure);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--silver);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SERVICES SECTION
============================================================ */
.services {
  padding: var(--section-pad) 0;
  background: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}

.service-card {
  background: var(--gunmetal);
  border: var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--crimson), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185,28,28,0.35);
  box-shadow: var(--shadow-md), var(--shadow-red);
}

.service-card:hover::before { opacity: 1; }

.service-card.featured {
  border-color: rgba(185,28,28,0.4);
  background: linear-gradient(135deg, var(--gunmetal) 0%, rgba(185,28,28,0.06) 100%);
}

.service-card.featured::before { opacity: 1; }

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(185,28,28,0.12);
  border: 1px solid rgba(185,28,28,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--crimson-light);
  margin-bottom: 20px;
  transition: background 0.3s, transform 0.3s;
}

.service-card:hover .service-icon-wrap {
  background: rgba(185,28,28,0.2);
  transform: scale(1.05);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white-pure);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.65;
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--crimson);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.services-cta {
  text-align: center;
  padding: 48px;
  background: var(--gunmetal);
  border: var(--border);
  border-radius: 16px;
}

.services-cta p {
  font-size: 1.05rem;
  color: var(--silver-light);
  margin-bottom: 24px;
}

/* ============================================================
   BRAND PROMISE SECTION
============================================================ */
.brand-promise {
  padding: var(--section-pad) 0;
  background: var(--black-2);
  border-top: var(--border);
  border-bottom: var(--border);
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.promise-text .section-label { display: block; margin-bottom: 12px; }
.promise-text .section-title { text-align: left; margin-bottom: 20px; }

.promise-text p {
  color: var(--silver);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.promise-items { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }

.promise-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.promise-item i {
  font-size: 1.2rem;
  color: var(--crimson-light);
  margin-top: 2px;
  flex-shrink: 0;
}

.promise-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white-pure);
  margin-bottom: 3px;
}

.promise-item span { font-size: 0.85rem; color: var(--silver); }

/* Promise Visual */
.promise-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.promise-emblem {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emblem-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(185,28,28,0.2);
  animation: ring-spin 20s linear infinite;
}

.emblem-ring.outer {
  width: 240px; height: 240px;
  border-color: rgba(185,28,28,0.15);
  border-style: dashed;
}

.emblem-ring.inner {
  width: 180px; height: 180px;
  border-color: rgba(185,28,28,0.25);
  animation-direction: reverse;
  animation-duration: 15s;
}

@keyframes ring-spin { to { transform: rotate(360deg); } }

.emblem-core {
  /* transparent container — logo sits cleanly within the radar rings */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  /* subtle pulsing glow behind the logo */
  filter: drop-shadow(0 0 28px rgba(185,28,28,0.35));
  animation: emblem-pulse 4s ease-in-out infinite;
}

@keyframes emblem-pulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(185,28,28,0.25)); }
  50%       { filter: drop-shadow(0 0 40px rgba(185,28,28,0.50)); }
}

.emblem-logo-img {
  width: 125px;
  height: 125px;
  object-fit: contain;
  display: block;
  /* preserve aspect ratio — no distortion */
  aspect-ratio: 1;
}

.promise-quote {
  text-align: center;
  padding: 24px 32px;
  border-left: 3px solid var(--crimson);
  background: rgba(185,28,28,0.04);
  border-radius: 0 8px 8px 0;
}

.promise-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--silver-light);
  font-style: italic;
  line-height: 1.6;
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about {
  padding: var(--section-pad) 0;
  background: var(--black);
}

.about-story {
  max-width: 800px;
  margin: 0 auto 72px;
  text-align: center;
}

.about-story h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white-pure);
  margin-bottom: 20px;
}

.about-story p {
  color: var(--silver);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 72px;
}

.team-card {
  background: var(--gunmetal);
  border: var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-red);
}

.team-photo-wrap {
  position: relative;
  height: 420px;         /* tall enough for full portrait: hat → torso */
  background: var(--gunmetal);
  overflow: hidden;
}

/* Portrait image fills wrap — contain preserves full figure */
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--steel), var(--gunmetal));
  color: var(--silver);
}

.team-photo-placeholder i { font-size: 4rem; opacity: 0.4; }
.team-photo-placeholder span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; }

.team-badge-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(185,28,28,0.9), transparent);
  padding: 24px 20px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.team-badge-overlay i { margin-right: 6px; }

.team-info { padding: 28px 28px 32px; }

/* Small logo accent badge above team member name */
.team-logo-accent {
  margin-bottom: 12px;
}
.team-logo-badge {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(185,28,28,0.3));
  opacity: 0.92;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white-pure);
  margin-bottom: 4px;
}

.team-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crimson-light);
  margin-bottom: 16px;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.75;
  margin-bottom: 20px;
}

.team-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.team-credentials span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  background: var(--steel);
  padding: 5px 12px;
  border-radius: 20px;
}

.team-credentials i { color: var(--gold); }

/* About Values */
.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-item {
  text-align: center;
  padding: 36px 20px;
  background: var(--gunmetal);
  border: var(--border);
  border-radius: 12px;
  transition: transform 0.3s, border-color 0.3s;
}

.value-item:hover {
  transform: translateY(-4px);
  border-color: rgba(185,28,28,0.3);
}

.value-item i {
  font-size: 2rem;
  color: var(--crimson-light);
  margin-bottom: 16px;
  display: block;
}

.value-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white-pure);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--silver);
  line-height: 1.65;
}

/* ============================================================
   COMPLIANCE SECTION
============================================================ */
.compliance {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  background: var(--black-3);
}

.compliance-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(185,28,28,0.06) 0%, transparent 70%),
    linear-gradient(180deg, var(--black-2) 0%, var(--black-3) 100%);
}

.compliance-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.012'%3E%3Crect x='0' y='0' width='20' height='20'/%3E%3Crect x='20' y='20' width='20' height='20'/%3E%3C/g%3E%3C/svg%3E");
}

.compliance .section-container { position: relative; z-index: 2; }

.compliance-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}

.compliance-card {
  background: rgba(30, 32, 40, 0.85);
  border: var(--border);
  border-radius: 14px;
  padding: 32px 24px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

.compliance-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185,28,28,0.35);
  box-shadow: var(--shadow-md), var(--shadow-red);
}

.compliance-card.featured-compliance {
  border-color: rgba(185,28,28,0.4);
  background: rgba(185,28,28,0.07);
}

.compliance-icon {
  width: 56px;
  height: 56px;
  background: rgba(185,28,28,0.12);
  border: 1px solid rgba(185,28,28,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--crimson-light);
  margin-bottom: 20px;
}

.compliance-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white-pure);
  margin-bottom: 12px;
}

.compliance-card p, .compliance-desc {
  font-size: 0.86rem;
  color: rgba(180,194,212,0.85);
  line-height: 1.65;
  margin-bottom: 20px;
}

.compliance-details {
  border-top: var(--border);
  padding-top: 16px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.detail-label {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
}

.detail-value {
  font-size: 0.82rem;
  color: var(--white-pure);
  background: rgba(0,0,0,0.3);
  padding: 3px 10px;
  border-radius: 4px;
}

.compliance-seal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--crimson);
  color: #fff;
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.compliance-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.comp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver-light);
  background: rgba(138,154,181,0.1);
  border: 1px solid rgba(138,154,181,0.15);
  padding: 5px 10px;
  border-radius: 4px;
}

.comp-tag i { color: var(--crimson-light); }

/* Project Types */
.compliance-types {
  text-align: center;
  padding: 48px;
  background: rgba(30,32,40,0.6);
  border: var(--border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.compliance-types h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white-pure);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.project-types {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.project-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--silver-light);
  transition: color 0.3s, transform 0.3s;
}

.project-type:hover {
  color: var(--white-pure);
  transform: translateY(-3px);
}

.project-type i {
  font-size: 2rem;
  color: var(--crimson-light);
}

.project-type span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   SERVICE AREA SECTION
============================================================ */
.service-area {
  padding: var(--section-pad) 0;
  background: var(--black);
  border-top: var(--border);
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.area-text .section-label { display: block; margin-bottom: 12px; }
.area-text .section-title { text-align: left; margin-bottom: 16px; }

.area-text > p {
  font-size: 0.95rem;
  color: var(--silver);
  margin-bottom: 36px;
  line-height: 1.75;
}

.area-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }

.area-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.area-item i {
  font-size: 1rem;
  color: var(--crimson-light);
  margin-top: 3px;
  flex-shrink: 0;
}

.area-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white-pure);
  margin-bottom: 3px;
}

.area-item span { font-size: 0.84rem; color: var(--silver); }

.map-frame {
  border-radius: 16px;
  overflow: hidden;
  border: var(--border);
  box-shadow: var(--shadow-lg);
  height: 460px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) invert(92%) hue-rotate(180deg);
}

/* ============================================================
   GALLERY SECTION
============================================================ */
/* ============================================================
   GALLERY — PREMIUM PORTFOLIO
   Curated counts: Gutters(5/flagship) | Repairs(3 BA) |
   Cleaning(3) | Fascia(3) | Commercial(3)
============================================================ */

.gallery {
  padding: var(--section-pad) 0;
  background: var(--black-2);
  border-top: var(--border);
}

/* ─────────────────────────────────────────────────────────────
   FILTER TABS
───────────────────────────────────────────────────────────── */
.gallery-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.filter-btn {
  padding: 10px 24px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  background: transparent;
  border: 1px solid rgba(138,154,181,0.18);
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.22s var(--ease-out);
  white-space: nowrap;
}

.filter-btn:hover {
  color: #fff;
  border-color: rgba(220,38,38,0.45);
  background: rgba(220,38,38,0.07);
}

.filter-btn.active {
  background: var(--crimson);
  border-color: var(--crimson);
  color: #fff;
  box-shadow: 0 0 20px rgba(185,28,28,0.3);
}

/* ─────────────────────────────────────────────────────────────
   CATEGORY BLOCK
───────────────────────────────────────────────────────────── */
.gallery-category {
  margin-bottom: 60px;
}

.gallery-category--last {
  margin-bottom: 0;
}

/* ─────────────────────────────────────────────────────────────
   CATEGORY HEADERS — bold, intentional, numbered
───────────────────────────────────────────────────────────── */
.gallery-section-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  padding: 18px 22px;
  background: var(--gunmetal);
  border-left: 3px solid var(--crimson);
  border-radius: 0 8px 8px 0;
}

/* Flagship category: stronger left accent */
.gallery-section-label--flagship {
  border-left-width: 4px;
  background: linear-gradient(90deg, rgba(185,28,28,0.12) 0%, var(--gunmetal) 60%);
}

.label-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--crimson);
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.7;
}

.gallery-section-label--flagship .label-number {
  opacity: 1;
  font-size: 2.2rem;
}

.label-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.label-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

.gallery-section-label--flagship .label-title {
  font-size: 1.2rem;
  color: #fff;
}

.label-sub {
  font-size: 0.72rem;
  color: var(--silver);
  letter-spacing: 0.04em;
  opacity: 0.7;
}

/* ─────────────────────────────────────────────────────────────
   PORTFOLIO ITEM — shared base
───────────────────────────────────────────────────────────── */
.portfolio-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--gunmetal);
  cursor: pointer;
  transition: box-shadow 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(220,38,38,0.22);
}

.portfolio-item .gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s var(--ease-out);
}

.portfolio-item:hover .gallery-photo {
  transform: scale(1.05);
}

/* Hover overlay — subtle gradient sheen, no text */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(8,8,12,0.72) 0%,
    rgba(185,28,28,0.28) 55%,
    transparent 100%);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

/* ─────────────────────────────────────────────────────────────
   PLACEHOLDER (when image not yet uploaded)
───────────────────────────────────────────────────────────── */
.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(145deg, rgba(30,35,45,0.95), var(--gunmetal));
  border: 1px dashed rgba(138,154,181,0.15);
  border-radius: 10px;
  color: var(--silver);
  padding: 16px;
  text-align: center;
}

.gallery-placeholder i    { font-size: 1.6rem; opacity: 0.2; color: var(--crimson); }
.gallery-placeholder span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; opacity: 0.55; }
.gallery-placeholder small { font-size: 0.6rem; opacity: 0.35; font-family: monospace; }

/* ─────────────────────────────────────────────────────────────
   FLAGSHIP GRID — Category 01: Gutters
   3 columns | 4 rows
   Row 1-2 : hero (col 1-2 × 2 rows) + 2 right-stack (col 3)
   Row 3   : 3 equal cards
   Row 4   : wide-bottom (col 1-2) + standard (col 3)
───────────────────────────────────────────────────────────── */
.portfolio-grid--flagship {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px 220px 220px;
  gap: 14px;
}

/* Hero: left 2 cols, top 2 rows */
.pf-hero {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

/* Wide bottom-left: col 1-2, row 4 */
.pf-wide-bottom {
  grid-column: 1 / 3;
}

/* Legacy: full-width bottom banner */
.pf-full {
  grid-column: 1 / -1;
}

/* ─────────────────────────────────────────────────────────────
   SPLIT GRID — Fascia & Commercial
   3 columns | Wide featured (2 cols) + 2 standard
───────────────────────────────────────────────────────────── */
.portfolio-grid--split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}

.pf-wide {
  grid-column: span 2;
}

/* ─────────────────────────────────────────────────────────────
   FLAT 3 GRID — Cleaning
   Equal 3 columns, single row, no hierarchy
───────────────────────────────────────────────────────────── */
.portfolio-grid--flat3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}

/* ─────────────────────────────────────────────────────────────
   CLEANING GRID — Category 03
   3 columns | 2 rows
   Row 1-2 : hero (col 1-2 × 2 rows) + 2 right-stack (col 3)
   Row 3   : 3 equal bottom cards
───────────────────────────────────────────────────────────── */
.portfolio-grid--cleaning {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 250px 250px 230px;
  gap: 14px;
}

/* Hero: left 2 cols, top 2 rows */
.cl-hero {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

/* ─────────────────────────────────────────────────────────────
   COMMERCIAL GRID — Category 05
   3 columns | 3 rows
   Row 1   : full-width hero (all 3 cols, tall)
   Row 2   : 2 equal mid cards
   Row 3   : 3 equal bottom cards
───────────────────────────────────────────────────────────── */
.portfolio-grid--commercial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 380px 280px 260px;
  gap: 14px;
}

/* Hero: full width, row 1 */
.cm-hero {
  grid-column: 1 / -1;
}

/* Mid row: 2 cards spanning 1.5 cols each — achieved via span */
.portfolio-grid--commercial article:nth-child(2) {
  grid-column: 1 / 3;
}

.portfolio-grid--commercial article:nth-child(3) {
  grid-column: 3 / 4;
}

/* ─────────────────────────────────────────────────────────────
   FASCIA & SOFFIT GRIDS — Category 04
   Narrative: BEFORE (hero 2×2 + 2 right) → PROCESS (wide 2-col + 2) → AFTER (wide 2-col + 2)
───────────────────────────────────────────────────────────── */

/* BEFORE — hero left (2×2) + 2 right-stack */
.portfolio-grid--fascia-before {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 14px;
}

.fs-hero {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

/* PROCESS & AFTER — wide (2-col) + 1 standard, single row */
.portfolio-grid--fascia-process,
.portfolio-grid--fascia-after {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 14px;
}

.fs-wide {
  grid-column: span 2;
}

/* ─────────────────────────────────────────────────────────────
   BEFORE & AFTER GRID — Repairs
   1 full-width featured + 2 side by side
───────────────────────────────────────────────────────────── */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ba-card--featured { grid-column: span 2; }

.ba-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--gunmetal);
  border: 1px solid rgba(138,154,181,0.08);
  transition: box-shadow 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.ba-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(220,38,38,0.2);
}

/* Photo pair */
.ba-pair {
  display: flex;
  align-items: stretch;
  height: 240px;
}

.ba-card--featured .ba-pair { height: 300px; }

.ba-half {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.ba-half .gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s var(--ease-out);
}

.ba-card:hover .ba-half .gallery-photo { transform: scale(1.04); }

/* Warm tint on Before, cool on After */
.ba-before::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(100,30,0,0.1);
  pointer-events: none;
}

.ba-after::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,30,15,0.07);
  pointer-events: none;
}

/* Before / After tags */
.ba-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  background: rgba(0,0,0,0.6);
  color: rgba(255,255,255,0.9);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
}

.ba-tag--after {
  background: rgba(185,28,28,0.8);
  color: #fff;
  border-color: transparent;
}

/* Chevron divider */
.ba-divider-line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  flex-shrink: 0;
  background: rgba(10,10,14,0.6);
  z-index: 5;
}

.ba-divider-line i { color: var(--crimson); font-size: 0.8rem; }

/* Caption bar */
.ba-caption {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  border-top: 1px solid rgba(138,154,181,0.08);
}

.ba-caption i { color: var(--crimson); font-size: 0.8rem; }

/* BA placeholder */
.ba-placeholder {
  position: relative;
  inset: auto;
  height: 180px;
  border-radius: 0;
  border: none;
  border-top: 1px dashed rgba(138,154,181,0.12);
}

/* ─────────────────────────────────────────────────────────────
   REPAIRS NARRATIVE GRID — Category 02
   Three phases: BEFORE → PROCESS → AFTER
   Each phase has its own grid + a phase-label divider bar
───────────────────────────────────────────────────────────── */

/* Phase divider bars */
.repairs-phase-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 12px;
  padding: 0 2px;
}

.repairs-phase-label .phase-icon {
  font-size: 0.75rem;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.repairs-phase-label .phase-text {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* BEFORE — warm amber accent */
.repairs-phase-label--before .phase-icon {
  background: rgba(180, 80, 20, 0.18);
  color: #e07030;
  border: 1px solid rgba(180, 80, 20, 0.25);
}
.repairs-phase-label--before .phase-text { color: #c06020; }

/* PROCESS — steel blue accent */
.repairs-phase-label--process .phase-icon {
  background: rgba(80, 120, 180, 0.15);
  color: #7090c0;
  border: 1px solid rgba(80, 120, 180, 0.22);
}
.repairs-phase-label--process .phase-text { color: #6080b0; }

/* AFTER — crimson brand accent */
.repairs-phase-label--after .phase-icon {
  background: rgba(185, 28, 28, 0.15);
  color: var(--crimson);
  border: 1px solid rgba(185, 28, 28, 0.25);
}
.repairs-phase-label--after .phase-text { color: var(--crimson); }

/* BEFORE grid — 3 cols: wide (2-col) + 1 + then 2 equal */
.portfolio-grid--repairs-before {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 220px;
  gap: 14px;
}

/* PROCESS grid — 3 cols: wide hero (2-col) + 1 standard */
.portfolio-grid--repairs-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 14px;
}

/* AFTER grid — 3 cols: wide (2-col) + 1 + then 2 equal */
.portfolio-grid--repairs-after {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 220px;
  gap: 14px;
}

/* Wide item spans 2 cols (used in all 3 repair grids) */
.rp-wide { grid-column: span 2; }

/* ─────────────────────────────────────────────────────────────
   GALLERY CTA
───────────────────────────────────────────────────────────── */
.gallery-cta {
  text-align: center;
  padding-top: 48px;
  margin-bottom: 20px;
}

.gallery-cta p {
  font-size: 0.86rem;
  color: var(--silver);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {

  /* Flagship: drop to 2 cols, hero full-width top row */
  .portfolio-grid--flagship {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 240px 200px 200px 200px;
  }

  .pf-hero         { grid-column: 1 / -1; grid-row: 1; }
  .pf-wide-bottom  { grid-column: 1 / -1; }
  .pf-full         { grid-column: 1 / -1; }

  /* Split: hero goes full width */
  .portfolio-grid--split {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .pf-wide { grid-column: span 2; }

  /* BA: stack vertically */
  .ba-grid { grid-template-columns: 1fr; }
  .ba-card--featured { grid-column: span 1; }

  /* Repairs narrative grids: drop to 2 cols, wide items full-width */
  .portfolio-grid--repairs-before,
  .portfolio-grid--repairs-after {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 220px 200px;
  }

  .portfolio-grid--repairs-process {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

  .rp-wide { grid-column: span 2; }

  /* Cleaning: drop to 2 cols, hero full-width top */
  .portfolio-grid--cleaning {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 240px 200px 200px;
  }

  .cl-hero { grid-column: 1 / -1; grid-row: 1; }

  /* Fascia: before hero full-width, process/after wide spans full */
  .portfolio-grid--fascia-before {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 240px 220px;
  }

  .fs-hero { grid-column: 1 / -1; grid-row: 1; }

  .portfolio-grid--fascia-process,
  .portfolio-grid--fascia-after {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .fs-wide { grid-column: 1 / -1; }

  /* Commercial: drop hero to full-width, mid row stacks 2-col */
  .portfolio-grid--commercial {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 300px 240px 240px;
  }

  .cm-hero { grid-column: 1 / -1; }

  .portfolio-grid--commercial article:nth-child(2) { grid-column: span 1; }
  .portfolio-grid--commercial article:nth-child(3) { grid-column: span 1; }
}

@media (max-width: 640px) {

  .portfolio-grid--flagship {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .pf-hero,
  .pf-wide-bottom,
  .pf-full { grid-column: 1; grid-row: auto; }

  .portfolio-grid--flagship .portfolio-item,
  .portfolio-grid--split    .portfolio-item,
  .portfolio-grid--flat3    .portfolio-item,
  .portfolio-grid--cleaning .portfolio-item,
  .portfolio-grid--fascia-before .portfolio-item,
  .portfolio-grid--fascia-process .portfolio-item,
  .portfolio-grid--fascia-after .portfolio-item,
  .portfolio-grid--commercial .portfolio-item {
    height: 220px;
  }

  .portfolio-grid--split,
  .portfolio-grid--flat3 {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  /* Cleaning: single column stacked */
  .portfolio-grid--cleaning {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .cl-hero { grid-column: 1; grid-row: auto; }

  .pf-wide  { grid-column: span 1; }
  .rp-wide  { grid-column: span 1; }
  .fs-wide  { grid-column: span 1; }
  .fs-hero  { grid-column: 1; grid-row: auto; }

  /* Repairs: single column stacked */
  .portfolio-grid--repairs-before,
  .portfolio-grid--repairs-process,
  .portfolio-grid--repairs-after {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .portfolio-grid--repairs-before .portfolio-item,
  .portfolio-grid--repairs-process .portfolio-item,
  .portfolio-grid--repairs-after .portfolio-item {
    height: 220px;
  }

  /* Fascia: single column stacked */
  .portfolio-grid--fascia-before,
  .portfolio-grid--fascia-process,
  .portfolio-grid--fascia-after {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  /* Commercial: single column stacked */
  .portfolio-grid--commercial {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .cm-hero { grid-column: 1; }

  .portfolio-grid--commercial article:nth-child(2),
  .portfolio-grid--commercial article:nth-child(3) {
    grid-column: 1;
  }

  .repairs-phase-label { margin: 16px 0 10px; }

  .ba-pair            { height: 180px; }
  .ba-card--featured .ba-pair { height: 200px; }

  .gallery-filter   { gap: 6px; margin-bottom: 40px; }
  .filter-btn       { font-size: 0.65rem; padding: 8px 14px; }

  .gallery-section-label   { padding: 14px 16px; gap: 12px; }
  .label-number            { font-size: 1.4rem; }
  .label-title             { font-size: 0.9rem; }
  .gallery-section-label--flagship .label-number { font-size: 1.6rem; }
  .gallery-section-label--flagship .label-title  { font-size: 1rem; }
}

/* ============================================================
   REVIEWS SECTION
============================================================ */
.reviews {
  padding: var(--section-pad) 0;
  background: var(--black);
  border-top: var(--border);
}

.reviews-platforms {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--gunmetal);
  border: var(--border);
  border-radius: 12px;
  padding: 18px 28px;
  transition: transform 0.3s, border-color 0.3s;
}

.platform-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(185,28,28,0.3);
}

.platform-badge > i {
  font-size: 2rem;
}

.platform-badge .fa-yelp { color: #d32323; }
.platform-badge .fa-google { color: #4285f4; }
.platform-badge .fa-facebook { color: #1877f2; }

.platform-badge .stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 3px; }
.platform-badge span { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--silver); }

/* Reviews Slider */
.reviews-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto 36px;
  overflow: hidden;
  min-height: 280px;
}

.review-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--gunmetal);
  border: var(--border);
  border-radius: 16px;
  padding: 40px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}

.review-card.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  pointer-events: all;
}

.review-card.exit {
  opacity: 0;
  transform: translateX(-40px);
}

.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.review-card blockquote {
  font-size: 1rem;
  color: var(--silver-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
  border-left: 3px solid var(--crimson);
  padding-left: 20px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: var(--crimson);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.reviewer-info { flex: 1; }
.reviewer-info strong { display: block; font-size: 0.9rem; color: var(--white-pure); margin-bottom: 2px; }
.reviewer-info span { font-size: 0.78rem; color: var(--silver); }

.review-source { font-size: 1.4rem; }
.review-source .fa-yelp { color: #d32323; }
.review-source .fa-google { color: #4285f4; }
.review-source .fa-facebook { color: #1877f2; }

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gunmetal);
  border: var(--border);
  color: var(--silver-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.slider-btn:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  color: #fff;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--steel-light);
  transition: background 0.25s, transform 0.25s;
  cursor: pointer;
}

.dot.active {
  background: var(--crimson-light);
  transform: scale(1.3);
}

.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--black-2);
  border-top: var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

/* Small logo accent above contact section headline */
.contact-logo-accent {
  margin-bottom: 16px;
}
.contact-logo-badge {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(185,28,28,0.3));
  opacity: 0.9;
}

.contact-info .section-label { display: block; margin-bottom: 12px; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }
.contact-info > p { font-size: 0.95rem; color: var(--silver); margin-bottom: 36px; line-height: 1.75; }

.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--gunmetal);
  border: var(--border);
  border-radius: 10px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

a.contact-method:hover {
  border-color: rgba(185,28,28,0.4);
  background: rgba(185,28,28,0.06);
  transform: translateX(4px);
}

.contact-method.primary-method {
  border-color: rgba(185,28,28,0.35);
  background: rgba(185,28,28,0.06);
}

.method-icon {
  width: 44px;
  height: 44px;
  background: rgba(185,28,28,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--crimson-light);
  flex-shrink: 0;
}

.method-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 3px;
}

.method-text span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white-pure);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--gunmetal);
  border: var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--silver);
  transition: all 0.25s;
}

.social-link:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  color: #fff;
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--gunmetal);
  border: var(--border);
  border-radius: 16px;
  padding: 44px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--steel);
  border: 1px solid rgba(138,154,181,0.15);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white-pure);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--silver); opacity: 0.5; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--crimson-light);
  box-shadow: 0 0 0 3px rgba(185,28,28,0.12);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%238a9ab5'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.form-group select option { background: var(--gunmetal); color: var(--white-pure); }

.form-group textarea { resize: vertical; min-height: 110px; }

.checkbox-group { flex-direction: row; align-items: center; }

/* Override .form-group label defaults for the checkbox row */
.checkbox-group.form-group label,
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--silver);
  text-transform: none !important;
  letter-spacing: normal !important;
  font-weight: 400 !important;
  line-height: 1.5;
  user-select: none;
  -webkit-user-select: none;
}

/* Hide the native checkbox — replace with custom box */
.checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;   /* prevents squishing in flex */
  border: 2px solid rgba(138,154,181,0.4);
  border-radius: 5px;
  background: var(--steel);
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

/* Hover state */
.checkbox-label:hover input[type="checkbox"] {
  border-color: var(--crimson-light);
  box-shadow: 0 0 0 3px rgba(185,28,28,0.12);
}

/* Checked state — crimson fill + white tick */
.checkbox-label input[type="checkbox"]:checked {
  background: var(--crimson);
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(185,28,28,0.2);
}

/* The checkmark tick drawn with a pseudo-element */
.checkbox-label input[type="checkbox"]:checked::after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 5px;
  width: 6px;
  height: 10px;
  border: 2px solid #ffffff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* Focus ring for keyboard accessibility */
.checkbox-label input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--crimson-light);
  outline-offset: 2px;
}

/* Label text — pointer passthrough */
.checkbox-label span {
  cursor: pointer;
  pointer-events: auto;
}

.form-disclaimer {
  font-size: 0.73rem;
  color: var(--silver);
  opacity: 0.7;
  text-align: center;
  line-height: 1.5;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 48px 24px;
}

.success-icon {
  font-size: 3.5rem;
  color: #22c55e;
  margin-bottom: 20px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white-pure);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--silver);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--black-3);
  border-top: 1px solid rgba(185,28,28,0.2);
}

.footer-top { padding: 72px 0 48px; }

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo i {
  font-size: 2rem;
  color: var(--crimson-light);
}

.footer-logo-main {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--white-pure);
  line-height: 1;
}

.footer-logo-sub {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 2px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: var(--gunmetal);
  border: var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--silver);
  transition: all 0.25s;
}

.footer-social a:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  color: #fff;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-pure);
  margin-bottom: 20px;
}

.footer-nav ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav li a,
.footer-contact li a,
.footer-contact li span {
  font-size: 0.85rem;
  color: var(--silver);
  transition: color 0.25s, transform 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-nav li a:hover { color: var(--white-pure); }
.footer-contact li a:hover { color: var(--crimson-light); }
.footer-contact li i { color: var(--crimson-light); font-size: 0.85rem; }

.footer-credentials {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-cred {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
}

.footer-cred i { color: var(--gold); }

.footer-bottom {
  border-top: var(--border);
  padding: 20px 0;
}

.footer-bottom-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--silver);
  opacity: 0.6;
  line-height: 1.7;
}

.footer-legal {
  font-size: 0.68rem !important;
  margin-top: 4px;
  opacity: 0.4 !important;
  letter-spacing: 0.04em;
}

/* Mobile CTA Bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--black-3);
  border-top: 1px solid rgba(185,28,28,0.3);
  padding: 10px 16px;
  gap: 10px;
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.mobile-cta-btn.call {
  background: var(--crimson);
  color: #fff;
}

.mobile-cta-btn.estimate {
  background: var(--gunmetal);
  color: var(--white-pure);
  border: var(--border);
}

.mobile-cta-btn:hover { opacity: 0.9; }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--crimson);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 900;
  box-shadow: var(--shadow-md), var(--glow-red);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--crimson-light);
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1100px)
============================================================ */
@media (max-width: 1100px) {
  .compliance-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .promise-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .promise-visual { order: -1; }

  /* Shrink logo inside emblem on mobile */
  .emblem-logo-img {
    width: 90px;
    height: 90px;
  }

  .area-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .map-frame { height: 360px; }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
============================================================ */
@media (max-width: 768px) {

  /* Nav */
  .hamburger { display: flex; }
  /* On mobile the announcement bar scrolls away — navbar stays at top */
  .navbar.with-bar { top: 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: var(--black-3);
    border-left: var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 40px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-link {
    font-size: 0.85rem;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(138,154,181,0.08);
  }

  .nav-link::after { display: none; }

  .nav-cta {
    margin: 16px 0 0;
    width: 100%;
    justify-content: center;
    display: flex;
    padding: 14px;
  }

  /* Announcement */
  .announcement-inner { gap: 6px; font-size: 0.68rem; }
  .divider { display: none; }

  /* Hero */
  .hero { padding: 120px 20px 70px; }
  .hero-trust-row { gap: 20px; }
  .trust-badge { flex-direction: column; text-align: center; gap: 6px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Stats */
  .stats-container {
    flex-wrap: wrap;
    gap: 32px;
  }

  .stat-divider { display: none; }
  .stat-item { flex: calc(50% - 16px); }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; }

  /* Compliance */
  .compliance-grid { grid-template-columns: 1fr; }

  /* About Values */
  .about-values { grid-template-columns: 1fr 1fr; }

  /* Reviews */
  .reviews-platforms { gap: 14px; }
  .platform-badge { padding: 14px 18px; }
  .review-card { padding: 28px 24px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }

  /* Contact logo accent — smaller on mobile */
  .contact-logo-badge { width: 44px; height: 44px; }

  /* Footer bottom */
  .footer-bottom-inner { padding: 0 20px; }

  /* Footer */
  .footer-container { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { padding: 48px 0 32px; }

  /* Mobile CTA Bar */
  .mobile-cta-bar { display: flex; }

  /* Back to top */
  .back-to-top { bottom: 80px; right: 20px; }

  /* Section spacing */
  .section-container { padding: 0 20px; }

  /* Promise Grid */
  .promise-grid { grid-template-columns: 1fr; }

  /* Project types */
  .project-types { gap: 28px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
============================================================ */
@media (max-width: 480px) {
  .hero-headline { font-size: clamp(56px, 18vw, 90px); }
  .hero-pillars { flex-wrap: wrap; gap: 8px; }
  .about-values { grid-template-columns: 1fr; }
  .stats-container { flex-direction: column; align-items: center; }
  .stat-item { width: 100%; }
  .reviews-platforms { flex-direction: column; align-items: center; }
  .compliance-types .project-types { gap: 20px; }
  /* Gallery section labels stack on small screens */
  .gallery-section-label { flex-direction: column; gap: 10px; }
  .label-number { font-size: 1.8rem; }
  /* Team logo accent */
  .team-logo-badge { width: 36px; height: 36px; }
  /* Promise emblem rings scale down gracefully */
  .promise-emblem { width: 200px; height: 200px; }
  .emblem-ring.outer { width: 200px; height: 200px; }
  .emblem-ring.inner { width: 150px; height: 150px; }
}

/* ============================================================
   LOGO IMAGE STYLES
   (replaces shield icon — upload logo.png to images/)
============================================================ */

/* Nav logo image */
.logo-img-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
  transition: transform 0.3s var(--ease-out);
  filter: drop-shadow(0 0 8px rgba(185,28,28,0.3));
}

.nav-logo:hover .nav-logo-img { transform: scale(1.08); }

/* Fallback if logo not uploaded yet */
.logo-emblem-fallback {
  width: 44px;
  height: 44px;
  background: var(--crimson);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: var(--glow-red);
}

/* Hero logo display (large centered logo above headline) */
.hero-logo-display {
  margin-bottom: 24px;
  animation: fade-up 0.8s var(--ease-out) 0.1s both;
}

.hero-logo-img {
  width: clamp(80px, 14vw, 160px);
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 0 24px rgba(185,28,28,0.35));
}

/* Footer logo image */
.footer-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 0 8px rgba(185,28,28,0.3));
}

/* ============================================================
   TEAM PHOTO STYLES
   Single static portrait — no hover transitions
============================================================ */

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  /* no transition, no scale — clean and professional */
}

/* Veteran badge variant — gold/crimson */
.team-badge-overlay.veteran-badge {
  background: linear-gradient(to top, rgba(185,28,28,0.92), transparent);
}

/* Pro badge variant — steel/dark */
.team-badge-overlay.pro-badge {
  background: linear-gradient(to top, rgba(15,15,20,0.92), transparent);
}

.team-photo-placeholder small.upload-hint {
  font-size: 0.65rem;
  color: var(--silver);
  opacity: 0.55;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0 12px;
  margin-top: 4px;
}

/* ── Gallery photo (used inside portfolio-item and ba-half) ── */
.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   CONTACT FORM — FILE UPLOAD WIDGET
============================================================ */

.label-optional {
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--silver);
  text-transform: none;
  letter-spacing: normal;
  margin-left: 4px;
}

.file-upload-wrap {
  position: relative;
}

.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px 20px;
  background: var(--steel);
  border: 2px dashed rgba(138,154,181,0.25);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  text-align: center;
}

.file-upload-label:hover,
.file-upload-wrap.drag-over .file-upload-label {
  border-color: var(--crimson-light);
  background: rgba(185,28,28,0.06);
}

.file-upload-label i {
  font-size: 2rem;
  color: var(--crimson-light);
  opacity: 0.7;
}

.file-upload-label span {
  font-size: 0.88rem;
  color: var(--silver-light);
  font-weight: 500;
}

.file-upload-label small {
  font-size: 0.72rem;
  color: var(--silver);
  opacity: 0.6;
}

/* File preview grid */
.file-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.preview-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(138,154,181,0.15);
  background: var(--steel);
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  background: rgba(185,28,28,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  z-index: 3;
}

.preview-remove:hover { background: var(--crimson-light); }

.preview-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  font-size: 0.55rem;
  color: #fff;
  padding: 3px 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* ============================================================
   GALLERY FILTER — Updated for more categories
============================================================ */

.gallery-filter {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

/* ============================================================
   RESPONSIVE UPDATES for new sections
============================================================ */

@media (max-width: 768px) {
  .hero-logo-img { width: clamp(60px, 20vw, 100px); }
  .file-preview { grid-template-columns: repeat(auto-fill, minmax(64px, 1fr)); }
}

@media (max-width: 480px) {
  .gallery-filter { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .gallery-section-label { font-size: 0.88rem; }
  .filter-btn { flex-shrink: 0; font-size: 0.7rem; padding: 8px 14px; }
}

/* ============================================================
   TEAM CARD — SINGLE STATIC PORTRAIT
   Clean, professional, no hover transitions.
   Portrait fills wrap with contain so full figure is visible.
============================================================ */

/* Single portrait image — full, unclipped, professional */
.team-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: var(--steel); /* fill letterbox areas with card bg color */
}

/* Badge overlay sits above the photo */
.team-badge-overlay {
  z-index: 3;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 16px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  pointer-events: none;
}
