/* ============================================================
   SOILTEC PILING & FOUNDATION LLC — Shared Stylesheet
   style.css — Applies to all pages
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark: #1a1a1a;
  --darker: #111111;
  --mid: #2d2d2d;
  --light-mid: #3a3a3a;
  --accent: #c8a84b;
  --text-light: #ffffff;
  --text-muted: #aaaaaa;
  --text-body: #cccccc;
  --border: #444444;
  --section-bg: #222222;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--darker);
  color: var(--text-light);
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   SIDE PANEL OVERLAY
══════════════════════════════════════════ */
.side-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.side-panel-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ── SIDE PANEL ── */
.side-panel {
  position: fixed;
  top: 0; right: 0;
  width: 360px;
  height: 100vh;
  background: #2a2a2a;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77,0,0.175,1);
  padding: 60px 40px;
  overflow-y: auto;
}
.side-panel.active { transform: translateX(0); }

.side-panel-close {
  position: absolute;
  top: 28px; right: 28px;
  width: 32px; height: 32px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.3s;
}
.side-panel-close:hover { opacity: 1; transform: rotate(90deg); }
.side-panel-close::before,
.side-panel-close::after {
  content: '';
  position: absolute;
  width: 20px; height: 1.5px;
  background: #fff;
  border-radius: 2px;
}
.side-panel-close::before { transform: rotate(45deg); }
.side-panel-close::after  { transform: rotate(-45deg); }

.panel-logo { text-align: center; margin-bottom: 40px; }
.panel-logo .logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: #fff; line-height: 1; display: block;
}
.panel-logo .logo-name span { color: var(--accent); }
.panel-logo .logo-sub {
  font-size: 8px; letter-spacing: 3px;
  color: var(--text-muted); text-transform: uppercase;
  font-weight: 400; display: block; margin-top: 5px;
}

.panel-divider {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 36px;
}

.panel-nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
}
.panel-nav-links a {
  color: #fff; text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.2s;
}
.panel-nav-links a:hover { color: var(--accent); }

.panel-socials { display: flex; gap: 20px; margin-bottom: 44px; }
.panel-social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 12px; font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.panel-social-link:hover {
  border-color: var(--accent); color: var(--accent);
  background: rgba(200,168,75,0.06);
}

.panel-contact { text-align: center; display: flex; flex-direction: column; gap: 12px; }
.panel-contact p {
  font-size: 12px; color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px; font-weight: 300; line-height: 1.6;
}
.panel-contact p strong {
  display: block; font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent);
  font-weight: 600; margin-bottom: 3px;
}
.panel-contact a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 12px; transition: color 0.2s;
}
.panel-contact a:hover { color: var(--accent); }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 70px; height: 88px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
nav.scrolled {
  background: #1a1a1a;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo { display: flex; flex-direction: column; gap: 2px; text-decoration: none; }
.nav-logo .logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: #fff; line-height: 1;
}
.nav-logo .logo-name span { color: var(--accent); }
.nav-logo .logo-sub {
  font-size: 7px; letter-spacing: 2.5px;
  color: rgba(255,255,255,0.4); text-transform: uppercase; font-weight: 400;
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--accent); }

.nav-right { display: flex; align-items: center; gap: 24px; }

.menu-bars {
  display: flex; flex-direction: column;
  gap: 5px; cursor: pointer;
  width: 22px; position: relative;
}
.menu-bars span {
  display: block; height: 2px;
  background: white; border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.3s ease;
  transform-origin: center;
}
.menu-bars span:nth-child(1) { width: 22px; }
.menu-bars span:nth-child(2) { width: 16px; }
.menu-bars span:nth-child(3) { width: 22px; }
.menu-bars.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.menu-bars.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-bars.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

/* ══════════════════════════════════════════
   SHARED HERO ELEMENTS
══════════════════════════════════════════ */
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #111 100%);
  z-index: 0;
}
.hero-bg-fallback::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(200,168,75,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(200,168,75,0.05) 0%, transparent 40%);
}
.hero-bg-fallback::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(200,168,75,0.03) 0, rgba(200,168,75,0.03) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.2) 100%
  );
  z-index: 2;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  filter: brightness(0.5);
}

.hero-breadcrumb {
  font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease both;
}
.hero-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.hero-breadcrumb a:hover { color: var(--accent); }
.hero-breadcrumb span { margin: 0 8px; }

.hero-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
  animation: fadeUp 0.8s 0.05s ease both;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--accent);
}

.hero-divider, .accent-bar {
  width: 40px; height: 2px;
  background: var(--accent);
  margin: 22px 0;
  animation: fadeUp 1s 0.15s ease both;
}

.hero-desc {
  font-size: 15px; line-height: 1.8;
  color: rgba(255,255,255,0.7);
  font-weight: 300; max-width: 500px;
  animation: fadeUp 1s 0.2s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   SHARED SECTION LABEL
══════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.section-label.center { justify-content: center; }
.section-label.center::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

/* ══════════════════════════════════════════
   SHARED FOOTER
══════════════════════════════════════════ */
footer {
  background: #0f0f0f;
  padding: 70px 80px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}

.footer-brand p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 280px;
  margin-bottom: 28px;
}

.social-links { display: flex; gap: 14px; }

.social-link {
  width: 30px; height: 30px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: white;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.social-link:hover { border-color: var(--accent); background: rgba(200,168,75,0.1); }

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}

.footer-col p, .footer-col a {
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
  display: block;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }

.footer-col .label {
  font-size: 9px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.25);
  margin-bottom: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.download-btn:hover { border-color: var(--accent); background: rgba(200,168,75,0.08); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  font-weight: 300;
}

.back-to-top {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 16px;
  transition: border-color 0.2s;
  text-decoration: none;
}
.back-to-top:hover { border-color: var(--accent); color: var(--accent); }

/* ══════════════════════════════════════════
   SHARED BUTTONS & LINKS
══════════════════════════════════════════ */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.read-more:hover { color: var(--accent); border-color: var(--accent); }
.read-more::after { content: '→'; font-size: 14px; }

.btn-load {
  display: inline-block;
  padding: 14px 48px;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-family: 'Barlow', sans-serif;
  text-decoration: none;
}
.btn-load:hover { background: var(--accent); color: #111; border-color: var(--accent); }

.service-link {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  padding-bottom: 2px;
}
.service-link:hover { color: #fff; border-color: #fff; }
.service-link::after { content: '→'; font-size: 13px; margin-left: 6px; }

/* ══════════════════════════════════════════
   INDEX PAGE — HERO CAROUSEL
══════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}

.hero-carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-carousel-slide video,
.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-carousel-indicators {
  position: absolute;
  bottom: 40px;
  left: 80px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-carousel-dot {
  width: 32px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: width 0.3s ease;
}

.hero-carousel-dot.active {
  width: 56px;
  background: rgba(255,255,255,0.3);
}

.hero-carousel-dot-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.1s linear;
}

.hero-carousel-dot.active .hero-carousel-dot-fill {
  animation: dotProgress var(--dot-duration, 6s) linear forwards;
}

@keyframes dotProgress {
  from { width: 0%; }
  to   { width: 100%; }
}

.hero-slide-counter {
  position: absolute;
  bottom: 36px;
  right: 80px;
  z-index: 4;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
}

.hero-slide-counter span {
  color: var(--accent);
  font-size: 16px;
}

.hero-piling-art {
  position: absolute;
  right: 0; bottom: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  opacity: 0.12;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 80px;
  max-width: 620px;
}

.hero-eyebrow-index {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  animation: fadeUp 0.8s ease both;
}

.hero-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 28px;
  animation: fadeUp 1s 0.1s ease both;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-content p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  max-width: 380px;
  animation: fadeUp 1s 0.25s ease both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  padding: 14px 32px;
  background: var(--accent);
  color: #111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  animation: fadeUp 1s 0.35s ease both;
}
.hero-cta:hover { background: #d9b84d; transform: translateY(-1px); }
.hero-cta::after { content: '→'; font-size: 14px; }

.hero-overlay-index {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.5) 55%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 2;
}

/* ── INDEX ABOUT SECTION ── */
.about-section {
  background: var(--section-bg);
  padding: 90px 80px;
  display: flex;
  justify-content: center;
}

.about-content {
  max-width: 800px;
  text-align: center;
}

.about-content .section-label { justify-content: center; }
.about-content .section-label::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.about-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  color: #fff;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 16px;
  font-weight: 300;
}

/* ── STATS SECTION ── */
.stats-section {
  background: var(--mid);
  padding: 60px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.stat-item {
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: -2px;
  position: relative;
  display: inline-block;
}

.stat-number::before {
  content: attr(data-ghost);
  position: absolute;
  top: 0; left: 0;
  color: rgba(255,255,255,0.1);
  font-size: 1em;
  pointer-events: none;
  animation: ghostFlicker 2s infinite;
}

@keyframes ghostFlicker {
  0%, 100% { opacity: 0.08; }
  50% { opacity: 0.18; }
}

.stat-suffix {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 600;
}

/* ── SERVICES ACCORDION (INDEX) ── */
.services-section {
  background: var(--darker);
  padding: 90px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.services-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  color: #fff;
}

.services-left p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 16px;
  font-weight: 300;
}

.services-right { padding-top: 4px; }

.service-block { border-top: 1px solid var(--border); }
.service-block:last-child { border-bottom: 1px solid var(--border); }

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  transition: opacity 0.2s;
}
.service-header:hover { opacity: 0.8; }

.service-header h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

.service-icon {
  position: relative;
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.service-icon::before, .service-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1px;
  background: white;
  transform: translateY(-50%);
  transition: transform 0.3s, opacity 0.3s;
}
.service-icon::after { transform: translateY(-50%) rotate(90deg); }
.service-block.open .service-icon::after { transform: translateY(-50%) rotate(0deg); opacity: 0; }

.service-desc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.service-block.open .service-desc {
  max-height: 300px;
  padding-bottom: 20px;
}

.service-list { list-style: none; padding: 0 0 16px 0; }
.service-list li {
  font-size: 12.5px;
  color: var(--text-body);
  font-weight: 300;
  padding: 4px 0 4px 14px;
  position: relative;
  line-height: 1.5;
}
.service-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ── PROJECTS GRID (INDEX) ── */
.projects-section {
  background: var(--section-bg);
  padding: 90px 80px;
}

.projects-header {
  text-align: center;
  margin-bottom: 60px;
}

.projects-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 10px;
}

.projects-header p {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 300;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card { position: relative; overflow: hidden; cursor: pointer; }

.project-card .img-wrap {
  width: 100%;
  padding-bottom: 70%;
  position: relative;
  overflow: hidden;
  background: var(--mid);
}

.project-card:nth-child(1) .img-wrap { background: linear-gradient(135deg, #1c2a1c 0%, #2d3a20 100%); }
.project-card:nth-child(2) .img-wrap { background: linear-gradient(135deg, #2a1c0a 0%, #3a2810 100%); }
.project-card:nth-child(3) .img-wrap { background: linear-gradient(135deg, #1c1c2a 0%, #202030 100%); }
.project-card:nth-child(4) .img-wrap { background: linear-gradient(135deg, #0a1c2a 0%, #102030 100%); }
.project-card:nth-child(5) .img-wrap { background: linear-gradient(135deg, #1c2a1a 0%, #22341a 100%); }
.project-card:nth-child(6) .img-wrap { background: linear-gradient(135deg, #2a1a1a 0%, #362020 100%); }

.project-card .img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px
  ),
  repeating-linear-gradient(
    180deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px
  );
}

.project-card .img-wrap .crane-icon {
  position: absolute;
  bottom: 20px; right: 20px;
  width: 60px; height: 60px;
  opacity: 0.15; z-index: 2;
}

.project-card .img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}
.project-card:hover .img-overlay { opacity: 1; }

.project-card .img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  z-index: 0;
}
.project-card:hover .img-wrap img { transform: scale(1.06); }

.project-overlay-content {
  position: relative; z-index: 2;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.project-card:hover .project-overlay-content { transform: translateY(0); }

.project-overlay-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff; margin-bottom: 10px; line-height: 1.2;
}

.view-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 3px;
}
.view-more:hover { color: var(--accent); border-color: var(--accent); gap: 14px; }
.view-more::after { content: '→'; font-size: 13px; }

.project-info { display: none; }
.load-more-wrap { text-align: center; margin-top: 60px; }

/* ── CLIENTS SECTION ── */
.clients-section {
  background: var(--darker);
  padding: 90px 80px;
}

.clients-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.clients-section-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 12px;
}

.clients-section-header p {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 300;
}

.clients-track-wrap {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.clients-track-wrap::before,
.clients-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.clients-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--darker), transparent);
}
.clients-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--darker), transparent);
}

.clients-row {
  display: flex;
  gap: 0;
  animation: clientScroll 30s linear infinite;
  width: max-content;
}
.clients-row:hover { animation-play-state: paused; }

@keyframes clientScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 44px;
  border: 1px solid rgba(255,255,255,0.05);
  margin-right: 2px;
  min-width: 160px;
  transition: border-color 0.3s, background 0.3s;
  flex-shrink: 0;
}
.client-logo:hover {
  border-color: rgba(200,168,75,0.3);
  background: rgba(200,168,75,0.04);
}
.client-logo img {
  max-width: 120px;
  max-height: 45px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transition: transform 0.3s ease;
}
.client-logo:hover img { transform: scale(1.05); }

/* ── SERVICES TICKER ── */
.services-ticker {
  background: var(--mid);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.ticker-item {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}

.ticker-dot {
  display: inline-block;
  width: 3px; height: 3px;
  background: var(--accent);
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 60px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.page-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
}

.about-intro {
  background: var(--section-bg);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-intro-left { width: 100%; text-align: left; }
.about-intro-left .section-label { justify-content: flex-start; }
.about-intro-left .section-label::after { display: none; }

.about-intro-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 28px;
}
.about-intro-left h2 em { font-style: normal; color: var(--accent); }

.about-intro-left p {
  font-size: 16px; line-height: 1.85;
  color: var(--text-body); font-weight: 300; margin-bottom: 16px;
}

.about-intro-right {
  width: 100%; height: 100%;
  min-height: 480px;
  overflow: hidden;
  position: relative;
}
.about-intro-right img {
  width: 100%; height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-intro-right .img-placeholder {
  width: 100%;
  min-height: 480px;
  background: var(--mid);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  color: var(--text-muted);
  border: 1px dashed rgba(200,168,75,0.3);
}
.about-intro-right .img-placeholder svg { opacity: 0.3; }
.about-intro-right .img-placeholder span {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
}

.mission-vision-section {
  background: var(--mid);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.mv-box {
  background: var(--section-bg);
  padding: 40px;
  border-left: 3px solid var(--accent);
  transition: transform 0.3s;
}
.mv-box:hover { transform: translateY(-4px); }
.mv-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: #fff; margin-bottom: 16px;
}
.mv-box h3 span { color: var(--accent); }
.mv-box p {
  font-size: 16px; line-height: 1.8;
  color: var(--text-body); font-weight: 300;
}

.leadership-section {
  background: var(--darker);
  padding: 100px 80px;
}
.leadership-header { text-align: center; margin-bottom: 64px; }
.leadership-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 46px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: #fff; margin-bottom: 16px;
}
.leadership-header p {
  font-size: 16px; color: var(--text-muted);
  font-weight: 300; max-width: 500px; margin: 0 auto; line-height: 1.7;
}

.leaders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.leader-card {
  background: var(--section-bg);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.leader-card:hover { background: #282828; }
.leader-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--accent);
}

.leader-photo-placeholder {
  width: 88px; height: 88px;
  border-radius: 0;
  background: var(--mid);
  border: 1px solid rgba(200,168,75,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.leader-photo-placeholder svg { opacity: 0.35; }

.leader-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: #fff; margin-bottom: 4px;
}

.leader-role {
  font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted);
  font-weight: 500; margin-bottom: 24px;
}

.leader-divider {
  width: 28px; height: 1px;
  background: rgba(200,168,75,0.4); margin-bottom: 24px;
}

.leader-details {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 24px;
}
.leader-details li {
  font-size: 12px; color: var(--text-body);
  font-weight: 300; line-height: 1.5;
  padding-left: 14px; position: relative;
}
.leader-details li::before {
  content: '–';
  position: absolute; left: 0;
  color: var(--accent); font-weight: 600;
}

.leader-bio {
  font-size: 15px; line-height: 1.75;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

.standards-section {
  background: var(--section-bg);
  padding: 100px 80px;
}
.standards-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
}
.standards-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 46px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: #fff; line-height: 1.05;
}
.standards-header h2 em { font-style: normal; color: var(--accent); }
.standards-header p {
  font-size: 16px; line-height: 1.8;
  color: var(--text-body); font-weight: 300;
}

.iso-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}

.iso-badge {
  background: var(--mid);
  padding: 0;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, background 0.3s;
  border-top: 2px solid transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.iso-badge:hover { background: #383838; border-top-color: var(--accent); }

.iso-badge img {
  width: 100%;
  min-height: 280px;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 24px;
  transition: transform 0.4s ease;
}
.iso-badge:hover img { transform: scale(1.03); }

.iso-badge-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700;
  color: #fff; letter-spacing: 1px;
  margin-bottom: 24px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.iso-badge:hover .iso-badge-label { color: var(--accent); }

.cert-strip {
  background: var(--darker);
  padding: 32px 40px;
  display: flex; align-items: center; gap: 32px;
  border-left: 3px solid var(--accent);
}
.cert-strip .cert-label {
  font-size: 9px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent);
  font-weight: 700; white-space: nowrap;
}
.cert-strip .cert-logos {
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
}
.cert-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 1px; color: rgba(255,255,255,0.6);
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s;
}
.cert-badge:hover { color: var(--accent); border-color: var(--accent); }

.values-section {
  background: var(--darker);
  padding: 100px 80px;
}
.values-header { text-align: center; margin-bottom: 64px; }
.values-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 46px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: #fff; margin-bottom: 12px;
}
.values-header .tagline {
  font-size: 13px; color: var(--text-muted);
  font-weight: 300; letter-spacing: 1px; font-style: italic;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.values-grid-row2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 2px;
}

.value-card {
  background: var(--section-bg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s;
  cursor: default;
}
.value-card:hover { background: #2a2a2a; transform: translateY(-4px); }
.value-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.value-card:hover::before { transform: scaleX(1); }

.value-icon {
  width: 36px; height: 36px;
  color: var(--accent);
  margin-bottom: 22px;
  flex-shrink: 0;
}

.value-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: #fff; margin-bottom: 12px;
}
.value-card p {
  font-size: 13px; color: var(--text-body);
  font-weight: 300; line-height: 1.7;
}

/* ══════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════ */
.services-intro {
  background: var(--section-bg);
  padding: 80px 70px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.intro-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 20px;
}
.intro-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700; line-height: 1.05;
  text-transform: uppercase; letter-spacing: -0.5px;
  margin-bottom: 28px;
}
.intro-text {
  color: var(--text-body);
  font-size: 15px; line-height: 1.75;
  font-weight: 300;
}
.intro-process {
  display: flex; flex-direction: column; gap: 0;
  background: var(--dark);
}
.intro-process-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--accent);
  padding: 28px 28px 0;
}
.intro-process-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.5px; color: #fff;
  padding: 8px 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.intro-process-step {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.intro-process-step:last-of-type { border-bottom: none; }
.intro-process-step:hover { background: rgba(255,255,255,0.03); }
.intro-step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 800;
  color: var(--accent); line-height: 1;
  min-width: 48px; opacity: 0.85; flex-shrink: 0;
}
.intro-step-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: #fff; margin-bottom: 6px; line-height: 1.2;
}
.intro-step-body p {
  font-size: 13px; color: var(--text-body);
  line-height: 1.65; font-weight: 300;
}
.intro-process-cta {
  margin: 4px 28px 28px;
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--darker); background: var(--accent);
  padding: 12px 24px; text-decoration: none;
  transition: background 0.2s;
}
.intro-process-cta:hover { background: #ddb95a; }

.service-nav {
  background: var(--darker);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky; top: 0; z-index: 900;
  padding: 0 70px;
  display: flex; gap: 0;
  overflow-x: auto; scrollbar-width: none;
}
.service-nav::-webkit-scrollbar { display: none; }
.service-nav-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 600;
  color: var(--text-muted);
  padding: 20px 28px;
  cursor: pointer; white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  background: none; border-top: none; border-left: none; border-right: none;
}
.service-nav-btn:hover { color: #fff; }
.service-nav-btn.active { color: var(--accent); border-bottom-color: var(--accent); }

.service-group {
  position: relative;
  overflow: hidden;
  padding: 100px 70px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.service-group:nth-child(even) { background: var(--section-bg); }

.group-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
  filter: brightness(0.45);
}
.group-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.50) 50%,
    rgba(0,0,0,0.18) 100%
  );
  z-index: 2;
}
.group-content {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.group-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 120px; font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 0.85; letter-spacing: -4px; margin-top: -10px;
}
.group-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.group-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: -1px; line-height: 0.95; margin-bottom: 20px;
}
.group-desc {
  color: var(--text-body);
  font-size: 15px; line-height: 1.7; font-weight: 300; max-width: 560px;
}
.group-line {
  width: 48px; height: 2px;
  background: var(--accent); margin-bottom: 20px;
}

.process-section {
  background: var(--darker);
  padding: 90px 70px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.5px; color: #fff;
  text-align: center; margin-bottom: 60px;
}
.process-steps {
  display: flex; align-items: flex-start; gap: 0; justify-content: center;
}
.process-step {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; text-align: center; padding: 0 24px;
}
.process-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px; font-weight: 800;
  color: var(--accent); line-height: 1;
  margin-bottom: 16px; opacity: 0.9;
}
.process-step-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: #fff; margin-bottom: 12px; line-height: 1.2;
}
.process-step-content p {
  font-size: 13.5px; color: var(--text-body);
  line-height: 1.7; font-weight: 300;
}
.process-arrow {
  font-size: 28px; color: var(--accent);
  align-self: flex-start; margin-top: 20px;
  padding: 0 4px; flex-shrink: 0;
}
.process-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--darker); background: var(--accent);
  padding: 14px 36px; text-decoration: none;
  display: inline-block; transition: background 0.2s;
}
.process-cta:hover { background: #ddb95a; }

.service-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
}
.service-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
.service-card {
  background: rgba(26,26,26,0.6);
  backdrop-filter: blur(5px);
  padding: 40px 36px;
  border-left: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  cursor: default; position: relative; overflow: hidden;
}
.service-group:nth-child(even) .service-card { background: rgba(45,45,45,0.6); }
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,75,0), transparent);
  transition: background 0.3s;
}
.service-card:hover {
  border-left-color: var(--accent);
  background: rgba(58,58,58,0.8);
  transform: translateY(-2px);
}
.service-card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(200,168,75,0.25), transparent);
}
.card-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(200,168,75,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.card-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: #fff; margin-bottom: 14px; line-height: 1.1;
}
.card-desc {
  font-size: 13.5px; color: var(--text-body);
  line-height: 1.7; font-weight: 300;
}

.cta-band {
  background: var(--accent);
  padding: 72px 70px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; text-transform: uppercase;
  color: var(--darker); letter-spacing: -0.5px; line-height: 1;
}
.cta-band p {
  font-size: 14px; color: rgba(26,26,26,0.7);
  margin-top: 10px; font-weight: 400; max-width: 500px;
}
.cta-band a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); background: var(--darker);
  padding: 16px 36px; text-decoration: none; white-space: nowrap;
  transition: background 0.2s;
}
.cta-band a:hover { background: #111; }

/* ══════════════════════════════════════════
   PROJECTS PAGE
══════════════════════════════════════════ */
.projects-video-section {
  position: relative;
  width: 100%; height: 100vh;
  min-height: 620px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.projects-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center; z-index: 1;
}
.projects-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.50) 50%, rgba(0,0,0,0.20) 100%
  );
  z-index: 2;
}
.projects-video-content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 80px; width: 100%; gap: 16px;
}
.play-button-wrapper {
  position: relative;
  width: 76px; height: 76px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(200,168,75,0.15);
  border: 1px solid var(--accent);
  cursor: pointer; margin-bottom: 8px;
  transition: transform 0.4s cubic-bezier(0.175,0.885,0.32,1.275), background 0.3s;
}
.play-button-wrapper:hover { transform: scale(1.1); background: var(--accent); }
.play-button-wrapper:hover .play-icon { color: var(--darker); }
.play-icon {
  width: 30px; height: 30px; color: var(--accent);
  margin-left: 4px; transition: color 0.3s;
}
.play-pulse {
  position: absolute; inset: -15px; border-radius: 50%;
  border: 1px solid var(--accent);
  animation: pulsePlay 2s infinite cubic-bezier(0.215,0.61,0.355,1);
}
@keyframes pulsePlay {
  0% { transform: scale(0.7); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}
.video-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800; letter-spacing: -0.5px;
  text-transform: uppercase; color: #fff; line-height: 1;
}
.video-caption {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.75);
  text-align: center; max-width: 600px;
}

.filter-nav {
  background: var(--darker);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky; top: 0; z-index: 900;
  padding: 0 70px;
  display: flex; gap: 0; align-items: center;
  overflow-x: auto; scrollbar-width: none;
}
.filter-nav::-webkit-scrollbar { display: none; }
.filter-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 600;
  color: var(--text-muted);
  padding: 20px 28px;
  cursor: pointer; white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  background: none; border-top: none; border-left: none; border-right: none;
}
.filter-btn:hover { color: #fff; }
.filter-btn.active { color: var(--accent); border-bottom-color: var(--accent); }

.featured-section {
  padding: 100px 70px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.featured-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  margin-top: 40px;
}
.featured-image {
  position: relative; overflow: hidden;
  background: var(--mid); min-height: 540px;
}
.featured-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75);
  transition: transform 0.7s ease, filter 0.4s ease;
}
.featured-image:hover img { transform: scale(1.04); filter: brightness(0.6); }
.featured-image-tag {
  position: absolute; top: 28px; left: 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  background: var(--accent); color: var(--darker);
  padding: 6px 14px; font-weight: 700; z-index: 2;
}
.featured-info {
  background: var(--section-bg);
  padding: 60px 56px;
}
.featured-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.5px; line-height: 1.0;
  color: #fff; margin-bottom: 6px;
}
.featured-location {
  font-size: 12px; color: rgba(255,255,255,0.4);
  font-weight: 300; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 24px;
}
.featured-divider {
  width: 40px; height: 2px;
  background: var(--accent); margin-bottom: 24px;
}
.featured-desc {
  font-size: 14px; color: var(--text-body);
  line-height: 1.75; font-weight: 300; margin-bottom: 40px;
}
.featured-facts { display: flex; flex-direction: column; gap: 20px; }
.featured-fact strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: 3px;
}
.featured-fact span {
  font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 300;
}

.flagship-header { text-align: center; margin-bottom: 72px; }
.flagship-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.flagship-eyebrow::before, .flagship-eyebrow::after {
  content: ''; display: inline-block;
  width: 32px; height: 1px; background: var(--accent);
}
.flagship-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: -1px; line-height: 0.95; color: #fff; margin-bottom: 24px;
}
.flagship-title em { font-style: normal; color: var(--accent); }
.flagship-divider {
  width: 48px; height: 2px; background: var(--accent); margin: 0 auto;
}

.carousel-wrapper { position: relative; overflow: hidden; }
.carousel-track {
  display: flex; gap: 2px;
  width: max-content;
  animation: carouselScroll 22s linear infinite;
  cursor: grab;
}
.carousel-track.carousel-track-reverse {
  animation: carouselScrollReverse 22s linear infinite;
}
.carousel-track:active { cursor: grabbing; }
.carousel-track.paused { animation-play-state: paused; }
.carousel-card {
  position: relative; overflow: hidden;
  background: var(--dark);
  flex: 0 0 380px; height: 480px; cursor: pointer;
}
.carousel-card-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.65);
  transition: transform 0.6s ease, filter 0.4s ease; display: block;
}
.carousel-card:hover .carousel-card-img { transform: scale(1.06); filter: brightness(0.4); }
.carousel-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 55%, transparent 100%);
  z-index: 1;
}
.carousel-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 28px;
}
.carousel-card-type {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.carousel-card-type::before {
  content: ''; display: inline-block; width: 16px; height: 1px; background: var(--accent);
}
.carousel-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2px;
  line-height: 1.1; color: #fff; margin-bottom: 10px;
}
.carousel-card-location {
  font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 300; letter-spacing: 0.5px;
}
.carousel-click-hint {
  position: absolute; top: 20px; right: 20px; z-index: 3;
  width: 36px; height: 36px;
  border: 1px solid rgba(200,168,75,0.5); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; background: rgba(0,0,0,0.4);
}
.carousel-click-hint svg { width: 14px; height: 14px; color: var(--accent); }
.carousel-card:hover .carousel-click-hint { opacity: 1; }

@keyframes carouselScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes carouselScrollReverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

.project-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 2000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 24px;
}
.project-modal-overlay.active { opacity: 1; pointer-events: all; }
.project-modal {
  background: #1e1e1e;
  max-width: 860px; width: 100%; max-height: 90vh;
  overflow-y: auto; display: grid; grid-template-columns: 1fr 1fr;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.project-modal-overlay.active .project-modal { transform: translateY(0); }
.project-modal-img {
  width: 100%; height: 100%; min-height: 400px;
  object-fit: cover; filter: brightness(0.8); display: block;
}
.project-modal-body {
  padding: 52px 48px;
  display: flex; flex-direction: column; justify-content: center; overflow-y: auto;
}
.project-modal-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.project-modal-label::before {
  content: ''; display: inline-block; width: 20px; height: 1px; background: var(--accent);
}
.project-modal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 3vw, 38px); font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.5px;
  color: #fff; line-height: 1.0; margin-bottom: 6px;
}
.project-modal-location {
  font-size: 12px; color: rgba(255,255,255,0.4);
  font-weight: 300; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 24px;
}
.project-modal-divider { width: 40px; height: 2px; background: var(--accent); margin-bottom: 24px; }
.project-modal-desc {
  font-size: 14px; color: var(--text-body);
  line-height: 1.75; font-weight: 300; margin-bottom: 32px;
}
.project-modal-facts {
  display: flex; flex-direction: column; gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px;
}
.project-modal-fact { display: flex; flex-direction: column; gap: 3px; }
.project-modal-fact strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
.project-modal-fact span {
  font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 300;
}
.project-modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: background 0.2s, border-color 0.2s;
}
.project-modal-close:hover { background: rgba(200,168,75,0.1); border-color: var(--accent); }
.project-modal-close::before, .project-modal-close::after {
  content: ''; position: absolute;
  width: 16px; height: 1.5px; background: #fff; border-radius: 2px;
}
.project-modal-close::before { transform: rotate(45deg); }
.project-modal-close::after  { transform: rotate(-45deg); }

.projects-grid-section {
  padding: 100px 70px;
  background: var(--section-bg);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.section-header {
  display: grid; grid-template-columns: auto 1fr; gap: 60px;
  align-items: start; margin-bottom: 72px;
}
.section-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 100px; font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 0.85; letter-spacing: -4px; margin-top: -10px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: -1px; line-height: 0.95; color: #fff; margin-bottom: 16px;
}
.section-desc {
  font-size: 15px; color: var(--text-body); font-weight: 300; line-height: 1.7;
}
.projects-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.masonry-card {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--dark);
}
.masonry-card:nth-child(3n+1) { grid-row: span 2; }
.masonry-card .masonry-img {
  width: 100%; height: 100%; min-height: 340px;
  object-fit: cover; filter: brightness(0.7);
  transition: transform 0.6s ease, filter 0.4s ease;
  display: block;
}
.masonry-card:hover .masonry-img { transform: scale(1.06); filter: brightness(0.45); }
.masonry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  z-index: 1;
}
.masonry-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2; padding: 24px;
  transform: translateY(8px); transition: transform 0.4s ease;
}
.masonry-card:hover .masonry-content { transform: translateY(0); }
.masonry-type {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 6px;
}
.masonry-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2px;
  line-height: 1.1; color: #fff; margin-bottom: 8px;
}
.masonry-location {
  font-size: 11px; color: rgba(255,255,255,0.45);
  font-weight: 300; letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.page-hero-content {
  position: relative;
  z-index: 3;
  padding: 0 80px;
  max-width: 800px;
}
.page-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
  animation: fadeUp 0.8s 0.05s ease both;
  display: flex; align-items: center; gap: 10px;
}
.page-eyebrow::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--accent);
}
.page-hero-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800; line-height: 0.92;
  text-transform: uppercase; letter-spacing: -1px;
  color: #fff; animation: fadeUp 1s 0.1s ease both;
}
.page-hero-content h1 em { font-style: normal; color: var(--accent); }

.contact-wrapper {
  max-width: 1400px; margin: 0 auto;
  padding: 80px 80px 0;
}
.map-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 80px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.map-side {
  position: relative; min-height: 480px; overflow: hidden;
}
.map-side iframe {
  width: 100%; height: 100%; border: 0; display: block;
}
.map-overlay-label {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(17,17,17,0.9);
  border: 1px solid rgba(200,168,75,0.3);
  padding: 12px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent);
  backdrop-filter: blur(8px);
}
.form-side {
  background: var(--section-bg);
  padding: 52px 52px;
  border-left: 1px solid var(--border);
}
.form-title-row { margin-bottom: 36px; }
.form-title-row .eyebrow {
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  font-weight: 600; margin-bottom: 8px; display: block;
}
.form-title-row h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px; font-weight: 800;
  text-transform: uppercase; line-height: 1;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: #1a1a1a;
  border: 1px solid var(--border);
  color: var(--text-light);
  font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 300;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  resize: none; appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent); background: #1f1f1f;
}
.form-group textarea { min-height: 130px; }
.submit-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--accent); color: #111;
  border: none; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 36px;
  transition: background 0.2s, transform 0.2s, gap 0.2s;
  margin-top: 6px;
}
.submit-btn:hover { background: #d4b45c; gap: 18px; }
.submit-btn svg { transition: transform 0.2s; }
.submit-btn:hover svg { transform: translateX(4px); }

.head-office-section {
  margin-bottom: 80px;
  animation: fadeUp 0.8s 0.4s ease both;
}
.head-office-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border); overflow: hidden;
}
.ho-image {
  position: relative; min-height: 340px; overflow: hidden;
}
.ho-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease; filter: brightness(0.75);
}
.ho-image:hover img { transform: scale(1.03); }
.ho-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
}
.ho-image-tag {
  position: absolute; bottom: 24px; left: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 600;
}
.ho-details {
  background: var(--section-bg);
  padding: 52px 52px;
  border-left: 1px solid var(--border);
}
.ho-details .eyebrow {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 8px;
}
.ho-details h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 800;
  text-transform: uppercase; line-height: 1; margin-bottom: 28px;
}
.ho-details .accent-line {
  width: 40px; height: 2px; background: var(--accent); margin-bottom: 28px;
}
.ho-detail-row {
  display: flex; gap: 16px; margin-bottom: 16px; align-items: flex-start;
}
.ho-detail-row .detail-label {
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent);
  font-weight: 600; min-width: 44px; padding-top: 2px;
}
.ho-detail-row p, .ho-detail-row a {
  font-size: 13px; font-weight: 300;
  color: var(--text-body); line-height: 1.7; text-decoration: none;
}
.ho-detail-row a:hover { color: var(--accent); }

.branches-section {
  margin-bottom: 80px;
  animation: fadeUp 0.8s 0.5s ease both;
}
.branches-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.branch-card {
  background: var(--section-bg);
  padding: 48px 48px;
  position: relative; transition: background 0.3s;
}
.branch-card:hover { background: #272727; }
.branch-card::before {
  content: '';
  position: absolute; top: 0; left: 48px; right: 48px;
  height: 2px; background: transparent; transition: background 0.3s;
}
.branch-card:hover::before { background: var(--accent); }
.branch-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px; font-weight: 800;
  color: rgba(200,168,75,0.1); line-height: 1;
  margin-bottom: 12px; letter-spacing: -1px;
}
.branch-city {
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  font-weight: 600; margin-bottom: 6px;
}
.branch-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 800;
  text-transform: uppercase; line-height: 1; margin-bottom: 20px;
}
.branch-divider {
  width: 32px; height: 1px; background: var(--border);
  margin-bottom: 20px;
  transition: background 0.3s, width 0.3s;
}
.branch-card:hover .branch-divider { background: var(--accent); width: 48px; }
.branch-address {
  font-size: 13px; font-weight: 300;
  color: var(--text-body); line-height: 1.8; margin-bottom: 22px;
}
.branch-contacts { display: flex; flex-direction: column; gap: 10px; }
.branch-contact-row { display: flex; align-items: center; gap: 12px; }
.branch-contact-row .bc-label {
  font-size: 8px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent);
  font-weight: 600; min-width: 38px;
}
.branch-contact-row a, .branch-contact-row span {
  font-size: 12px; font-weight: 400;
  color: var(--text-muted); text-decoration: none; transition: color 0.2s;
}
.branch-contact-row a:hover { color: var(--accent); }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 40px; }
  .hero-content { padding: 0 40px; }
  .about-section { padding: 70px 40px; }
  .stats-section { padding: 50px 40px; }
  .services-section { padding: 70px 40px; gap: 50px; }
  .projects-section { padding: 70px 40px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-section { padding: 70px 40px; }
  footer { padding: 60px 40px 36px; }
  .footer-grid { gap: 40px; }

  .about-intro { padding: 70px 40px; gap: 48px; }
  .mission-vision-section { padding: 60px 40px; }
  .leadership-section { padding: 70px 40px; }
  .standards-section { padding: 70px 40px; }
  .standards-header { grid-template-columns: 1fr; gap: 32px; }
  .values-section { padding: 70px 40px; }

  .services-intro { padding: 60px 40px; gap: 50px; }
  .service-nav { padding: 0 40px; }
  .service-group { padding: 70px 40px; }
  .process-section { padding: 70px 40px; }
  .cta-band { padding: 52px 40px; }

  .featured-section { padding: 70px 40px; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-image { min-height: 360px; }
  .projects-grid-section { padding: 70px 40px; }

  .contact-wrapper { padding: 60px 40px 0; }
  .map-form-grid { grid-template-columns: 1fr; }
  .map-side { min-height: 360px; }
  .form-side { border-left: none; border-top: 1px solid var(--border); }
  .head-office-grid { grid-template-columns: 1fr; }
  .ho-image { min-height: 260px; }
  .ho-details { border-left: none; border-top: 1px solid var(--border); }
  .branches-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 0 20px; height: 68px; }
  .nav-links { display: none; }
  .panel-nav-links { display: flex; }
  .nav-logo .logo-name { font-size: 18px; }
  .side-panel { width: 100%; padding: 60px 28px; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 0 20px; max-width: 100%; }
  .hero-content h1 { font-size: clamp(44px, 12vw, 72px); }
  .hero-overlay-index {
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.35) 100%);
  }
  .hero-piling-art { width: 100%; opacity: 0.07; }

  .about-section { padding: 60px 20px; }
  .about-content h2 { font-size: 32px; }

  .stats-section { padding: 40px 20px; grid-template-columns: 1fr; gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 24px 16px; }
  .stat-item:last-child { border-bottom: none; }
  .stat-number { font-size: 56px; }
  .stat-suffix { font-size: 38px; }

  .services-section { padding: 60px 20px; grid-template-columns: 1fr; gap: 40px; }
  .services-left h2 { font-size: 32px; }

  .projects-section { padding: 60px 20px; }
  .projects-header h2 { font-size: 36px; letter-spacing: 1px; }
  .projects-header { margin-bottom: 36px; }
  .projects-grid { grid-template-columns: 1fr; gap: 16px; }

  .clients-section { padding: 60px 20px; }
  .clients-section-header h2 { font-size: 36px; letter-spacing: 1px; }
  .clients-section-header { margin-bottom: 36px; }
  .client-logo { padding: 20px 28px; min-width: 130px; }

  footer { padding: 50px 20px 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }

  /* About/Services/Projects/Contact page hero mobile */
  .page-hero {
    justify-content: center;
    padding-top: 68px;
    min-height: 100svh;
  }
  .page-hero .hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.35) 100%);
  }
  .page-hero-content {
    padding: 0 20px;
    max-width: 100%;
  }
  .hero-content { padding: 0 20px; }
  .about-intro { padding: 50px 20px; grid-template-columns: 1fr; gap: 36px; }
  .about-intro-right { min-height: 280px; }
  .about-intro-right img { min-height: 280px; }
  .mission-vision-section { padding: 40px 20px; grid-template-columns: 1fr; gap: 16px; }
  .leadership-section { padding: 60px 20px; }
  .leaders-grid { grid-template-columns: 1fr; }
  .standards-section { padding: 60px 20px; }
  .iso-badges { grid-template-columns: 1fr; }
  .values-section { padding: 60px 20px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid-row2 { grid-template-columns: repeat(2, 1fr); }

  /* Services page mobile */
  .services-intro { padding: 50px 20px; grid-template-columns: 1fr; gap: 36px; }
  .service-nav { padding: 0 16px; }
  .service-group { padding: 60px 20px; }
  .group-content { grid-template-columns: 1fr; gap: 32px; }
  .group-number { display: none; }
  .service-cards { grid-template-columns: 1fr; }
  .service-card:last-child:nth-child(odd) { grid-column: auto; }
  .process-section { padding: 60px 20px; }
  .process-steps { flex-direction: column; align-items: center; gap: 32px; }
  .process-arrow { transform: rotate(90deg); margin: 0; }
  .cta-band { padding: 48px 20px; flex-direction: column; text-align: center; }

  /* Projects page mobile */
  .projects-video-content { padding: 0 20px; }
  .filter-nav { padding: 0 16px; }
  .featured-section { padding: 60px 20px; }
  .featured-info { padding: 36px 28px; }
  .projects-grid-section { padding: 60px 20px; }
  .projects-masonry { grid-template-columns: 1fr; }
  .masonry-card:nth-child(3n+1) { grid-row: span 1; }
  .section-header { grid-template-columns: 1fr; gap: 0; }
  .section-number { display: none; }
  .carousel-card { flex: 0 0 280px; height: 360px; }
  .project-modal { grid-template-columns: 1fr; }
  .project-modal-img { min-height: 240px; height: 240px; }
  .project-modal-body { padding: 36px 28px; }

  /* Contact page mobile */
  .page-hero-content { padding: 0 28px; }
  .contact-wrapper { padding: 48px 28px 0; }
  .form-side, .ho-details { padding: 36px 28px; }
  .branch-card { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 400px)
══════════════════════════════════════════ */
@media (max-width: 400px) {
  .hero-content h1 { font-size: 38px; }
  .stat-number { font-size: 48px; }
  .stat-suffix { font-size: 32px; }
  .about-content h2, .services-left h2 { font-size: 28px; }
  .projects-header h2, .clients-section-header h2 { font-size: 30px; }
  .footer-brand h3 { font-size: 22px; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid-row2 { grid-template-columns: 1fr; }
}