/* ============================================================
   RED LINE GRADING — Premium Contractor Stylesheet
   ============================================================ */

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

/* ---- VARIABLES ---- */
:root {
  --red:       #E02020;
  --red-dark:  #B51515;
  --red-glow:  rgba(224, 32, 32, 0.22);
  --black:     #080808;
  --charcoal:  #0F0F0F;
  --dark:      #141414;
  --steel:     #1C1C1C;
  --mid:       #2A2A2A;
  --border:    #222222;
  --muted:     #777777;
  --light:     #BBBBBB;
  --white:     #EEEEEE;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --nav-h:     72px;
  --max:       1280px;
  --radius:    4px;
  --shadow:    0 4px 32px rgba(0,0,0,0.7);
  --transition: 0.22s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
/* Subtle scanline vibe - ultra faint texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, textarea, select { font-family: var(--font-body); }

/* ---- UTILITY ---- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }
.section--dark { background: var(--charcoal); }
.section--steel { background: var(--dark); }
.red { color: var(--red); }
.tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  padding: 6px 14px;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

/* ---- SECTION HEADINGS ---- */
.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--light);
  max-width: 580px;
  line-height: 1.7;
  font-weight: 400;
}
.section-head { margin-bottom: 60px; }
.section-head--center { text-align: center; }
.section-head--center .section-sub { margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
  padding: 12px 24px;
}
.btn-ghost:hover {
  background: var(--red);
  color: #fff;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(8,8,8,0.99);
  box-shadow: 0 2px 40px rgba(0,0,0,0.8);
  border-bottom: 1px solid rgba(224,32,32,0.3);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 13px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; }

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8,8,8,0.99);
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid var(--red);
  backdrop-filter: blur(20px);
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), padding 0.38s ease;
  pointer-events: none;
}
.nav-mobile.open {
  max-height: 600px;
  padding: 24px 32px 32px;
  pointer-events: all;
}
.nav-mobile a {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
}
.nav-mobile a:hover { color: var(--red); padding-left: 8px; }
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile .btn-primary { margin-top: 20px; text-align: center; justify-content: center; }

/* ============================================================
   RED LINE ACCENT DIVIDER
   ============================================================ */
.red-rule {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 18px 0 28px;
  border-radius: 2px;
}
.red-rule--center { margin: 18px auto 28px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* fixed breaks on iOS mobile */
  z-index: 0;
}
/* Parallax only on desktop */
@media (min-width: 701px) {
  .hero-bg { background-attachment: fixed; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.7) 50%,
    rgba(0,0,0,0.45) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) 32px 80px;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 760px;
}
.hero-title span { color: var(--red); }
.hero-sub {
  font-size: 18px;
  color: var(--light);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 44px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll span {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--light);
  border-bottom: 2px solid var(--light);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* Stats bar */
.stats-bar {
  background: var(--red);
  padding: 22px 0;
  border-bottom: 3px solid var(--red-dark);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(255,255,255,0.2);
}
.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--dark);
  padding: 36px 28px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height 0.3s ease;
}
.service-card:hover { background: var(--steel); }
.service-card:hover::before { height: 100%; }
.service-icon {
  font-size: 32px;
  margin-bottom: 18px;
  display: block;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap var(--transition);
}
.service-link:hover { gap: 14px; }

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.why-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.why-image-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--red);
  color: #fff;
  padding: 20px 28px;
  border-radius: var(--radius);
}
.why-image-badge .num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.why-image-badge .lbl {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.why-points { display: flex; flex-direction: column; gap: 32px; }
.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  text-align: right;
  transition: color var(--transition);
}
.why-point:hover .why-num { color: var(--red); }
.why-text h4 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 8px;
}
.why-text p {
  font-size: 15px;
  color: var(--light);
  line-height: 1.65;
}

/* ============================================================
   PROJECT PREVIEW / GRID
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.project-card {
  position: relative;
  overflow: hidden;
  background: var(--steel);
}
.project-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover img { transform: scale(1.04); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-cat {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.project-name {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}
.project-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  line-height: 1.5;
}

/* Projects page full grid */
.projects-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.project-full-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.project-full-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.project-full-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-full-card:hover img { transform: scale(1.03); }
.project-full-card .img-wrap { overflow: hidden; }
.project-info {
  padding: 28px 32px 32px;
}
.project-info .project-cat { opacity: 1; }
.project-info h3 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin: 8px 0 12px;
}
.project-info p {
  font-size: 15px;
  color: var(--light);
  line-height: 1.65;
}
.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.project-tag {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--steel);
  padding: 5px 12px;
  border-radius: 2px;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border);
}
.process-step {
  padding: 0 24px;
  text-align: center;
  position: relative;
}
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--dark);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  transition: border-color var(--transition), background var(--transition);
}
.process-step:hover .step-num {
  border-color: var(--red);
  background: var(--red-glow);
}
.step-num span {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  color: var(--red);
}
.process-step h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 12px;
}
.process-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.area-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.area-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}
.area-icon { font-size: 28px; margin-bottom: 16px; }
.area-card h4 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 6px;
}
.area-card p {
  font-size: 13px;
  color: var(--muted);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--red);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: 'RED LINE';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: 200px;
  font-weight: 900;
  color: rgba(0,0,0,0.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -5px;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  max-width: 560px;
}
.cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-top: 14px;
  max-width: 480px;
}
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }
.btn-white {
  background: #fff;
  color: var(--red);
  border-color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.btn-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-border-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.btn-border-white:hover { border-color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand img { height: 60px; margin-bottom: 20px; }
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--red); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.footer-contact li span:first-child { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: var(--muted); transition: color var(--transition); }
.footer-contact a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom .red { color: var(--red); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 160px 0 90px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, rgba(204,28,28,0.06), transparent);
  pointer-events: none;
}
.page-hero-eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--red);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 18px;
  color: var(--light);
  max-width: 560px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.breadcrumb a, .breadcrumb span {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--light); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.about-image-accent {
  position: absolute;
  bottom: -1px; left: -1px;
  right: -1px;
  height: 4px;
  background: var(--red);
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.value-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition);
}
.value-card:hover { border-color: var(--red); }
.value-icon { font-size: 24px; margin-bottom: 12px; }
.value-card h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 6px;
}
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Who We Serve */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.serve-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.serve-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}
.serve-icon { font-size: 40px; margin-bottom: 20px; }
.serve-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
}
.serve-card p { font-size: 15px; color: var(--light); line-height: 1.65; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-detail-card {
  background: var(--dark);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.service-detail-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.4s ease;
}
.service-detail-card:hover { background: var(--steel); }
.service-detail-card:hover::after { width: 100%; }
.svc-icon { font-size: 44px; margin-bottom: 24px; }
.service-detail-card h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 16px;
}
.service-detail-card .desc {
  font-size: 15px;
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-detail-card .for {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.svc-for-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
  margin-top: 20px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 24px;
}
.contact-detail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--red-glow);
  border: 1px solid rgba(204,28,28,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-detail-text strong {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 4px;
}
.contact-detail-text a,
.contact-detail-text span {
  font-size: 16px;
  color: var(--light);
  line-height: 1.5;
  transition: color var(--transition);
  display: block;
}
.contact-detail-text a:hover { color: var(--red); }
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.area-pill {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 6px 14px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
}

/* Contact Form */
.contact-form {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
}
.contact-form h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--red); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--mid); }
.form-group textarea { height: 140px; resize: vertical; }
.form-group select option { background: var(--dark); }
.form-submit { margin-top: 8px; }
.form-submit .btn-primary { width: 100%; justify-content: center; font-size: 15px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
}
@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  .section { padding: 72px 0; }
  .container { padding: 0 24px; }
  .why-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image img,
  .about-image img { height: 380px; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card img { height: 300px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-full-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: calc(var(--nav-h) + 32px) 20px 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-inner h2 { max-width: 100%; }
  .cta-actions { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .serve-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .projects-full-grid { grid-template-columns: 1fr; }
  .nav-mobile { padding-left: 20px; padding-right: 20px; }
  .nav-mobile.open { padding: 20px; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.animate-ready {
  opacity: 0;
  transform: translateY(28px);
}
.fade-up.animate-ready.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.animate-ready:nth-child(2) { transition-delay: 0.1s; }
.fade-up.animate-ready:nth-child(3) { transition-delay: 0.2s; }
.fade-up.animate-ready:nth-child(4) { transition-delay: 0.3s; }
.fade-up.animate-ready:nth-child(5) { transition-delay: 0.4s; }
.fade-up.animate-ready:nth-child(6) { transition-delay: 0.5s; }
.fade-up.animate-ready:nth-child(7) { transition-delay: 0.6s; }
.fade-up.animate-ready:nth-child(8) { transition-delay: 0.7s; }
