/* ============================================================
   LA BUILD GROUP — Design System
   Commercial & Ground-Up Construction · Los Angeles
   Palette: Deep Navy · Charcoal · White · Amber Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --navy-950: #020810;
  --navy-900: #05101e;
  --navy-800: #0b1c35;
  --navy-700: #122445;
  --navy-600: #1c3260;
  --accent:   #c8870a;
  --amber:    #e8a020;
  --amber-lt: #f5bc4a;
  --steel:    #4a6080;
  --white:    #ffffff;
  --text:     #e2e8f0;
  --muted:    #8899b0;
  --faint:    #4a5f7a;
  --border:   rgba(255,255,255,0.07);
  --border-2: rgba(255,255,255,0.12);
  --surface:  rgba(255,255,255,0.04);
  --surface-2:rgba(255,255,255,0.07);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.22s ease;
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--navy-900);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.section-label {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}
section { padding: 100px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--amber);
  color: var(--navy-900);
}
.btn-primary:hover { background: var(--amber-lt); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,160,32,0.3); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-2);
}
.btn-outline:hover { background: var(--surface); border-color: rgba(255,255,255,0.25); }
.btn-ghost {
  background: transparent;
  color: var(--muted);
  padding: 14px 0;
}
.btn-ghost:hover { color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 0.95rem; }
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(5,16,30,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--amber);
  color: var(--navy-900);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-mono);
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--white);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,16,30,0.7) 0%, rgba(5,16,30,0.5) 50%, rgba(5,16,30,0.95) 100%),
    linear-gradient(135deg, var(--navy-950) 0%, #0d1f3a 50%, #050e1c 100%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.hero-project-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-project-image .img-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(5,16,30,0.65) 0%, rgba(5,16,30,0.3) 40%, rgba(5,16,30,0.9) 85%, var(--navy-900) 100%),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.015) 0px,
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 60px
    );
}
/* Building silhouette illustration */
.hero-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  opacity: 0.08;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 100px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,135,10,0.12);
  border: 1px solid rgba(200,135,10,0.25);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 2rem;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}
.hero-tag span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 800px;
}
.hero-headline em {
  font-style: italic;
  color: var(--amber);
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  padding-top: 0;
  max-width: 800px;
}
.hero-stat {
  background: rgba(5,16,30,0.6);
  padding: 24px 20px;
  backdrop-filter: blur(8px);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num .unit { color: var(--amber); font-size: 0.75em; }
.hero-stat-label {
  font-size: 0.72rem;
  color: var(--faint);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.trust-bar {
  background: var(--navy-800);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.trust-bar-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 32px;
  border-right: 1px solid var(--border);
  flex: 1;
  justify-content: center;
}
.trust-item:last-child { border-right: none; }
.trust-item svg {
  color: var(--amber);
  flex-shrink: 0;
  width: 18px; height: 18px;
}
.trust-item-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}
.trust-item-text span {
  font-size: 0.72rem;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services-section { background: var(--navy-900); }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 60px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}
.section-head h2 em { font-style: italic; color: var(--amber); }
.section-head p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 400px;
  align-self: end;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--navy-800);
  padding: 40px 36px;
  transition: background var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { background: var(--navy-700); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-arrow { transform: translateX(4px); opacity: 1; }
.service-icon {
  width: 48px; height: 48px;
  background: rgba(200,135,10,0.1);
  border: 1px solid rgba(200,135,10,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--amber);
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}
.service-arrow {
  color: var(--amber);
  font-size: 1.1rem;
  opacity: 0.4;
  transition: all var(--transition);
}

/* ══════════════════════════════════════════
   FEATURED PROJECT
══════════════════════════════════════════ */
.featured-project { background: var(--navy-950); }
.project-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 560px;
}
.project-visual {
  position: relative;
  background: var(--navy-800);
  overflow: hidden;
}
.project-visual-bg {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background:
    linear-gradient(135deg, #0d2044 0%, #1a3a6e 40%, #0a1830 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-visual-inner {
  width: 100%;
  height: 100%;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.project-visual svg {
  opacity: 0.12;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.project-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--amber);
  color: var(--navy-900);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
}
.project-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  position: absolute;
  bottom: 16px;
  right: 24px;
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.project-info {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-category {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.project-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.project-info p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 420px;
}
.project-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 2.5rem;
}
.project-spec label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 4px;
}
.project-spec span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

/* ══════════════════════════════════════════
   WHY US
══════════════════════════════════════════ */
.why-section { background: var(--navy-900); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.why-text h2 em { font-style: italic; color: var(--amber); }
.why-text p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
.why-features { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background var(--transition);
}
.why-feature:hover { background: var(--surface-2); }
.why-feature-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(200,135,10,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
  margin-top: 1px;
}
.why-feature-icon svg { width: 18px; height: 18px; }
.why-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.why-feature p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.why-visual {
  position: relative;
}
.stats-panel {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.stats-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber) 0%, transparent 100%);
}
.stats-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.stats-panel-item {}
.stats-panel-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stats-panel-num .unit { color: var(--amber); font-size: 0.6em; }
.stats-panel-label {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}
.stats-panel-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}
.license-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.license-badge svg { color: var(--amber); width: 20px; height: 20px; flex-shrink: 0; }
.license-badge-text { font-size: 0.78rem; color: var(--muted); }
.license-badge-text strong { display: block; color: var(--text); font-size: 0.82rem; }

/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
.process-section { background: var(--navy-950); }
.process-head { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.process-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.process-head p { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.process-step { padding: 0 24px; text-align: center; position: relative; }
.process-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.process-step:hover .process-step-num {
  background: rgba(200,135,10,0.15);
  border-color: var(--amber);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   PROJECTS GRID
══════════════════════════════════════════ */
.projects-section { background: var(--navy-900); }
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}
.project-card {
  background: var(--navy-800);
  padding: 36px 32px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.project-card:hover { background: var(--navy-700); }
.project-card-visual {
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}
.project-card-visual-bg {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-card-visual-bg.commercial {
  background: linear-gradient(135deg, #0d2644 0%, #1e4080 100%);
}
.project-card-visual-bg.adu {
  background: linear-gradient(135deg, #1a2d10 0%, #2d4820 100%);
}
.project-card-visual-bg.custom {
  background: linear-gradient(135deg, #2d1a10 0%, #4a2c18 100%);
}
.project-card-visual svg {
  opacity: 0.2;
  width: 80px; height: 80px;
  color: var(--white);
}
.project-card-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(5,16,30,0.8);
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}
.project-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.project-card-meta {
  font-size: 0.8rem;
  color: var(--faint);
  margin-bottom: 16px;
  font-family: var(--font-mono);
}
.project-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testi-section { background: var(--navy-800); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--navy-900);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: border-color var(--transition);
}
.testi-card:hover { border-color: var(--border-2); }
.testi-quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--amber);
  opacity: 0.25;
  margin-bottom: -12px;
}
.testi-stars { color: var(--amber); letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 16px; }
.testi-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-700);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--amber);
  flex-shrink: 0;
}
.testi-author-name { font-weight: 600; font-size: 0.88rem; color: var(--white); }
.testi-author-role { font-size: 0.78rem; color: var(--faint); font-family: var(--font-mono); }

/* ══════════════════════════════════════════
   SERVICE AREAS
══════════════════════════════════════════ */
.areas-section { background: var(--navy-900); }
.areas-head { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.areas-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.areas-head p { color: var(--muted); }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.area-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.82rem;
  color: var(--muted);
  transition: all var(--transition);
  cursor: default;
}
.area-chip:hover {
  background: rgba(200,135,10,0.08);
  border-color: rgba(200,135,10,0.25);
  color: var(--text);
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-section { background: var(--navy-950); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.faq-left p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--font-body);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--white); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
  font-size: 1rem;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 560px;
}
.faq-item.open .faq-answer { display: block; }

/* ══════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════ */
.cta-strip {
  background: var(--navy-800);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.cta-strip-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.cta-strip h2 em { font-style: italic; color: var(--amber); }
.cta-strip p { color: var(--muted); font-size: 0.95rem; }
.cta-strip-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--navy-950);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 320px;
}
.footer-contact a {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--transition);
  margin-bottom: 4px;
}
.footer-contact a:hover { color: var(--amber); }
.footer-col h5 {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom span, .footer-bottom a {
  font-size: 0.78rem;
  color: var(--faint);
  font-family: var(--font-mono);
}
.footer-bottom a:hover { color: var(--muted); }
.footer-legal {
  margin-top: 16px;
  font-size: 0.72rem;
  color: var(--faint);
  line-height: 1.7;
  opacity: 0.7;
}

/* ══════════════════════════════════════════
   PAGE HEADER (inner pages)
══════════════════════════════════════════ */
.page-header {
  padding: 160px 0 80px;
  background: var(--navy-950);
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--faint);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--faint); }
.breadcrumb a:hover { color: var(--amber); }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.page-header h1 em { font-style: italic; color: var(--amber); }
.page-header p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .nav-links, .nav-phone { display: none; }
  .mobile-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .project-showcase { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .projects-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .cta-strip-grid { grid-template-columns: 1fr; }
  .cta-strip-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-panel-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.6s ease both;
}
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }
