:root {
  --steel: #1a1a1a;
  --iron: #111111;
  --rust: #c0392b;
  --rust-light: #e74c3c;
  --silver: #8a9ba8;
  --light: #e8eaeb;
  --white: #f5f5f5;
  --gold: #d4a017;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background-color: var(--iron);
  color: var(--light);
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='%23111'/%3E%3Crect x='0' y='0' width='1' height='1' fill='%23191919'/%3E%3Crect x='2' y='2' width='1' height='1' fill='%23181818'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}
img { display: block; max-width: 100%; }
button { font: inherit; }
a { color: inherit; }
.site-icon-library { position: absolute; width: 0; height: 0; overflow: hidden; }
.site-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-icon-filled { fill: currentColor; stroke: none; }
.button-icon { width: 20px; height: 20px; }

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 76px;
  background: rgba(9,9,10,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    height 0.35s ease;
}

header.scrolled {
  background: rgba(5,5,5,0.97);
  border-bottom-color: rgba(192,57,43,0.55);
  box-shadow: 0 14px 40px rgba(0,0,0,0.38);
  height: 68px;
}

.header-shell {
  width: min(1200px, 90%);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-link {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--rust);
  background: rgba(192,57,43,0.08);
  flex-shrink: 0;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.logo-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 6px rgba(192,57,43,0.08);
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 3vw, 24px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.brand-name span { color: var(--rust); }

header.scrolled .logo-link,
header.scrolled .brand-name {
  transform: translateY(-1px);
}

nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  border-radius: 4px;
}

.nav-link-icon { display: none; }
.nav-cta-icon { width: 18px; height: 18px; }

#main-nav a:not(.nav-cta) {
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
}

#main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  right: 12px;
  bottom: 4px;
  left: 12px;
  height: 2px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

#main-nav a:not(.nav-cta):hover,
#main-nav a:not(.nav-cta).active {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

#main-nav a:not(.nav-cta):hover::after,
#main-nav a:not(.nav-cta).active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--rust);
  color: var(--white) !important;
  margin-left: 8px;
  padding: 10px 18px;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease !important;
}
.nav-cta:hover {
  background: var(--rust-light) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(192,57,43,0.25);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  overflow: hidden;
  background: var(--iron);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.06) saturate(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,7,7,0.92) 0%, rgba(7,7,7,0.82) 38%, rgba(7,7,7,0.58) 68%, rgba(7,7,7,0.4) 100%),
    linear-gradient(135deg, rgba(192,57,43,0.18) 0%, rgba(192,57,43,0.04) 34%, transparent 58%),
    linear-gradient(0deg, rgba(0,0,0,0.22), rgba(0,0,0,0.22));
}
.hero-diag {
  position: absolute;
  right: -5%;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 1;
  background: linear-gradient(160deg, rgba(192,57,43,0.16) 0%, transparent 60%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.badge-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rust);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  margin-bottom: 28px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(192,57,43,0); }
}
.badge-urgency::before {
  display: none;
}
.badge-icon { width: 17px; height: 17px; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 28px;
}
h1 .line1 { display: block; color: var(--white); }
h1 .line2 { display: block; color: var(--rust); }
h1 .line3 {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.25);
  font-size: 0.75em;
}
.hero-desc {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--silver);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 42px;
  font-weight: 300;
}
.hero-desc strong { color: var(--light); font-weight: 500; }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-white,
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-primary {
  background: var(--rust);
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  padding: 16px 36px;
  border: 2px solid var(--rust);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary:hover {
  background: transparent;
  color: var(--rust-light);
  border-color: var(--rust-light);
}
.btn-secondary {
  background: transparent;
  color: var(--light);
  font-weight: 600;
  font-size: 17px;
  padding: 16px 32px;
  border: 2px solid rgba(255,255,255,0.2);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-secondary:hover { border-color: var(--silver); color: var(--white); }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.stat-item { text-align: left; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--rust);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 4px;
}

.urgency-strip {
  position: relative;
  z-index: 2;
  background: var(--rust);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  overflow: hidden;
}
.urgency-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0,0,0,0.08) 10px, rgba(0,0,0,0.08) 20px);
}
.urgency-item {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.urgency-icon { width: 34px; height: 34px; color: var(--white); filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.urgency-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 20px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}
.urgency-text small {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  opacity: 0.85;
  font-weight: 400;
}
.urgency-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.3); }

section { position: relative; z-index: 1; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--rust);
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 6vw, 68px);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.section-title em { font-style: normal; color: var(--rust); }

.emergency {
  padding: 100px 5%;
  background: linear-gradient(180deg, var(--iron) 0%, #0e0e0e 100%);
}
.emergency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.emergency-desc,
.services-intro,
.gallery-intro,
.why-text {
  color: var(--silver);
  font-size: 17px;
  line-height: 1.7;
}
.emergency-desc { margin-bottom: 36px; }
.emergency-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.emergency-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--light);
  line-height: 1.4;
}
.emergency-features li::before {
  content: '▸';
  color: var(--rust);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.emg-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.emg-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 4px solid var(--rust);
  padding: 26px 28px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.emg-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s;
}
.emg-card:hover { border-left-color: var(--rust-light); transform: translateX(4px); }
.emg-card:hover::after { opacity: 1; }
.emg-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  padding: 11px;
  display: block;
  color: var(--rust-light);
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.24);
  transition: transform .25s ease, background .25s ease;
}
.emg-card:hover .emg-card-icon { transform: translateY(-2px); background: rgba(192,57,43,0.17); }
.emg-card h3,
.service-card h3,
.why-feat h4,
.carousel-topbar h3 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
}
.emg-card h3 {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 8px;
}
.emg-card p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.55;
}

.services {
  padding: 100px 5%;
  background: #0d0d0d;
}
.services-header,
.gallery-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}
.services-header .section-label,
.gallery-header .section-label { justify-content: center; }
.services-header .section-label::before,
.gallery-header .section-label::before { display: none; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: rgba(255,255,255,0.025);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  cursor: default;
  border: 1px solid rgba(255,255,255,0.04);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--rust);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.service-card:hover { background: rgba(192,57,43,0.07); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-highlight {
  background: rgba(192,57,43,0.06);
  border: 1px solid rgba(192,57,43,0.2);
}
.service-card-highlight .service-num { color: rgba(192,57,43,0.15); }
.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 64px;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
  letter-spacing: -2px;
}
.service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  padding: 13px;
  display: block;
  color: var(--rust-light);
  background: rgba(192,57,43,0.09);
  border: 1px solid rgba(192,57,43,0.22);
  transition: transform .25s ease, color .25s ease, background .25s ease;
}
.service-card:hover .service-icon { transform: translateY(-3px); color: var(--white); background: var(--rust); }
.service-card h3 {
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
}
.service-card p {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.65;
}

.latest-work {
  padding: 100px 5%;
  background:
    linear-gradient(120deg, rgba(192,57,43,0.08), transparent 46%),
    #111111;
}
.latest-work-header {
  max-width: 1200px;
  margin: 0 auto 44px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.latest-work-header > p {
  max-width: 420px;
  color: var(--silver);
  font-size: 16px;
  line-height: 1.65;
}
.latest-work-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}
.latest-work-card {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.09);
  background: #090909;
}
.latest-work-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}
.latest-work-card:hover img { transform: scale(1.045); filter: saturate(1.08); }
.latest-work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04) 25%, rgba(0,0,0,.9) 100%);
}
.latest-work-content { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 24px; }
.latest-work-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 10px; }
.latest-work-meta span, .latest-work-meta time {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.latest-work-meta span { color: #ff7668; }
.latest-work-meta time { color: rgba(255,255,255,.72); }
.latest-work-content h3 { color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 28px; text-transform: uppercase; letter-spacing: .7px; }
.latest-work-content p { margin-top: 8px; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.55; }

.gallery {
  padding: 100px 5%;
  background: linear-gradient(180deg, #111111 0%, #0b0b0b 100%);
}
.carousel-block {
  max-width: 1200px;
  margin: 0 auto 48px;
}
.carousel-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.carousel-topbar h3 {
  font-weight: 700;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 1px;
  color: var(--white);
}
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.carousel-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s ease;
}
.carousel-btn:hover {
  background: var(--rust);
  border-color: var(--rust);
}
.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.gallery-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  min-width: 0;
}
.gallery-card.wide { min-width: 360px; }
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #1b1b1b;
}
.gallery-card.wide img { aspect-ratio: 16 / 10; }
.gallery-card img.gallery-modal-trigger {
  cursor: zoom-in;
  transition: transform 0.28s ease, opacity 0.28s ease, filter 0.28s ease;
}
.gallery-card:hover img.gallery-modal-trigger {
  transform: scale(1.03);
  opacity: 0.96;
  filter: saturate(1.02);
}
.gallery-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gallery-card-body strong {
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.gallery-card-category {
  color: var(--rust);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.gallery-card-body span {
  color: var(--silver);
  font-size: 14px;
  line-height: 1.5;
}
.gallery-empty {
  grid-column: 1 / -1;
  width: 100%;
  padding: 48px 24px;
  border: 1px dashed rgba(255,255,255,0.16);
  color: var(--silver);
  text-align: center;
}

.reviews-section {
  padding: 100px 5%;
  background: #0d0d0d;
}
.reviews-header {
  max-width: 1200px;
  margin: 0 auto 42px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.reviews-header > div > p { color: var(--silver); font-size: 16px; }
.reviews-score {
  min-width: 220px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  text-decoration: none;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 12px;
}
.reviews-score > strong { grid-row: 1 / 3; color: var(--white); font-size: 40px; line-height: 1; }
.reviews-score small { color: var(--silver); }
.review-stars { color: #f6b928; letter-spacing: 2px; }
.reviews-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.review-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-top: 3px solid var(--rust);
  background: rgba(255,255,255,.025);
  display: flex;
  flex-direction: column;
}
.review-card-author {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
}
.review-card-author img, .review-avatar-fallback { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.review-avatar-fallback { display: grid; place-items: center; background: var(--rust); color: white; font-weight: 900; }
.review-card-author > div { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.review-card-author a, .review-card-author strong { color: var(--white); font-weight: 700; text-decoration: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.review-card-author > small { color: var(--silver); font-size: 12px; }
.review-card blockquote { margin: 22px 0; color: #d8dde1; font-size: 15px; line-height: 1.7; }
.review-source { margin-top: auto; color: #ff7668; font-size: 13px; font-weight: 700; }
.reviews-attribution {
  max-width: 1200px;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.reviews-attribution span { color: #f5f5f5; font-family: Roboto, sans-serif; font-size: 14px; font-weight: 400; white-space: nowrap; }
.reviews-attribution p { color: var(--silver); font-size: 12px; line-height: 1.5; text-align: right; }

.why {
  padding: 100px 5%;
  background: linear-gradient(135deg, rgba(192,57,43,0.07) 0%, transparent 50%), var(--iron);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.why-feat {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid var(--rust);
  background: rgba(255,255,255,0.02);
  transition: background 0.25s;
}
.why-feat:hover { background: rgba(255,255,255,0.04); }
.why-feat-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  padding: 10px;
  display: block;
  color: var(--rust-light);
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.22);
  transition: transform .25s ease, background .25s ease;
}
.why-feat:hover .why-feat-icon { transform: translateY(-2px); background: rgba(192,57,43,0.18); }
.why-feat h4 {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 6px;
}
.why-feat p { font-size: 13px; color: var(--silver); line-height: 1.5; }
.why-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-badge-main {
  width: clamp(280px, 35vw, 420px);
  height: clamp(280px, 35vw, 420px);
  border-radius: 50%;
  border: 2px solid rgba(192,57,43,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: radial-gradient(circle at center, rgba(192,57,43,0.1) 0%, transparent 70%);
  padding: 40px;
  position: relative;
}
.why-badge-main::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(192,57,43,0.15);
}
.why-big-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(60px, 10vw, 110px);
  color: var(--rust);
  line-height: 1;
  display: block;
}
.why-big-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 2.5vw, 22px);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--silver);
  line-height: 1.2;
  margin-top: 8px;
}

.cta-section {
  padding: 100px 5%;
  background: var(--rust);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 14px, rgba(0,0,0,0.06) 14px, rgba(0,0,0,0.06) 28px);
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section .section-title {
  color: var(--white);
  font-size: clamp(40px, 7vw, 80px);
  margin-bottom: 20px;
}
.cta-section .section-title em { color: rgba(255,255,255,0.4); }
.cta-desc {
  font-size: clamp(17px, 2.5vw, 22px);
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-white {
  background: var(--white);
  color: var(--rust);
  font-weight: 700;
  font-size: 18px;
  padding: 18px 44px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-white:hover { background: var(--iron); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  padding: 18px 40px;
  border: 2px solid rgba(255,255,255,0.6);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 40px auto 0;
}
.contact-card {
  padding: 24px;
  background: rgba(0,0,0,0.14);
  border: 1px solid rgba(255,255,255,0.14);
  text-align: left;
}
.contact-card-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.94);
}
.contact-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}
.contact-card span {
  display: block;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.86);
}

footer {
  background: #080808;
  padding: 60px 5% 30px;
  border-top: 2px solid rgba(192,57,43,0.3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 50px;
}
.footer-brand .brand-name { font-size: 22px; margin-bottom: 16px; display: block; }
.footer-desc {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-link-icon { width: 17px; height: 17px; margin-top: 2px; color: var(--rust-light); }
.footer-col ul li a:hover { color: var(--light); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-slogan { color: rgba(192,57,43,0.5) !important; }

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 24px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
  transition: all 0.25s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
  background: #1ebe5c;
}
.wa-float svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }
.wa-pulse {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rust);
  animation: pulse 2s ease-in-out infinite;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.gallery-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(5px);
}
.gallery-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 1100px);
  max-height: 90vh;
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  overflow: hidden;
}
.gallery-modal-media {
  background: #090909;
}
.gallery-modal-media img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
}
.gallery-modal-info {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gallery-modal-info strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}
.gallery-modal-info span {
  color: var(--silver);
  font-size: 16px;
  line-height: 1.7;
}
.gallery-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 0;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.gallery-modal-close:hover {
  background: var(--rust);
  transform: scale(1.05);
}
.gallery-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.6);
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.gallery-modal-nav:hover {
  background: var(--rust);
  border-color: var(--rust);
}
.gallery-modal-prev { left: 14px; }
.gallery-modal-next { right: 14px; }
body.modal-open { overflow: hidden; }

@media (max-width: 992px) {
  .contact-cards,
  .why-features { grid-template-columns: 1fr 1fr; }
  .latest-work-grid { grid-template-columns: 1fr 1fr; }
  .latest-work-featured { grid-column: 1 / -1; min-height: 520px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  header { height: 108px; }
  header.scrolled { height: 100px; }
  .header-shell {
    width: 100%;
    display: grid;
    grid-template-rows: 58px 50px;
    gap: 0;
  }
  header.scrolled .header-shell { grid-template-rows: 52px 48px; }
  .logo-area { gap: 10px; }
  .logo-area {
    justify-content: center;
    padding: 7px 16px;
  }
  .logo-link { width: 42px; height: 42px; }
  .brand-name { font-size: 19px; letter-spacing: 1.5px; }
  .hero-bg img { object-position: 68% center; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7,7,7,0.88) 0%, rgba(7,7,7,0.72) 45%, rgba(7,7,7,0.55) 100%),
      linear-gradient(135deg, rgba(192,57,43,0.18) 0%, transparent 52%);
  }

  nav {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.07);
    background: rgba(5,5,5,.78);
  }
  nav a {
    min-width: 0;
    min-height: 48px;
    padding: 8px 3px;
    justify-content: center;
    font-size: clamp(10px, 3vw, 12px);
    letter-spacing: .45px;
    white-space: nowrap;
    border-radius: 0;
  }
  .nav-link-icon, .nav-cta-icon { display: none; }
  #main-nav a:not(.nav-cta)::after {
    right: 28%;
    bottom: 0;
    left: 28%;
  }
  #main-nav a:not(.nav-cta):hover,
  #main-nav a:not(.nav-cta).active {
    background: rgba(255,255,255,.05);
  }
  .nav-cta {
    min-height: 48px;
    margin: 0;
    justify-content: center;
    padding: 8px 3px;
    font-size: clamp(10px, 3vw, 12px);
    border-radius: 0;
    box-shadow: inset 1px 0 rgba(255,255,255,.12);
  }

  .hero { padding-top: 150px; }

  .emergency-grid,
  .why-grid,
  .contact-cards,
  .footer-grid,
  .why-features { grid-template-columns: 1fr; }
  .latest-work-header, .reviews-header { align-items: flex-start; flex-direction: column; }
  .latest-work-grid, .reviews-grid { grid-template-columns: 1fr; }
  .latest-work-featured { grid-column: auto; min-height: 430px; }
  .reviews-attribution { align-items: flex-start; flex-direction: column; }
  .reviews-attribution p { text-align: left; }
  .why-visual { display: none; }
  .urgency-divider { display: none; }
  h1 { font-size: clamp(42px, 14vw, 70px); }
  .carousel-track { grid-auto-columns: 85%; }
  .gallery-card.wide { min-width: 0; }
  .wa-float {
    right: 16px;
    bottom: 16px;
    padding: 13px 18px;
    font-size: 14px;
  }

  .gallery-modal {
    padding: 12px;
  }
  .gallery-modal-dialog {
    width: 100%;
    max-height: 92vh;
  }
  .gallery-modal-media img {
    max-height: 54vh;
  }
  .gallery-modal-nav {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }
  .gallery-modal-info {
    padding: 18px;
  }
  .gallery-modal-info span {
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary,
  .btn-secondary,
  .btn-white,
  .btn-outline-white {
    justify-content: center;
    width: 100%;
  }
  .hero-stats { gap: 22px; }
  .carousel-topbar { flex-direction: column; align-items: flex-start; }
  .carousel-controls { width: 100%; justify-content: flex-end; }
  .brand-name { font-size: 18px; }
}

@keyframes navSlideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
