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

/* ── TOKENS ── */
:root {
  --iron:       #032A3E;
  --iron-mid:   #1752BF;
  --gold:       #F8B123;
  --gold-dark:  #C8870A;
  --gold-dim:   rgba(248,177,35,.12);
  --dark:       #021624;
  --silver:     #8B9CAE;
  --cream:      #F4F1E9;
  --white:      #FFFFFF;
  --text-muted: #6B7E8F;

  --font-display:   'League Spartan', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body:      'Barlow', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--iron);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── TICKER ── */
.ticker {
  background: var(--gold);
  overflow: hidden;
  padding: 9px 0;
  position: relative;
  z-index: 200;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerRoll 40s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dark);
  flex-shrink: 0;
  padding: 0 2px;
}
@keyframes tickerRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--iron);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 2px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-nav.scrolled {
  border-bottom-color: var(--gold);
  background: rgba(2,22,36,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 40px rgba(0,0,0,.4);
}
.nav-logo { height: 44px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.highlight { color: var(--gold); }
.nav-links a.highlight:hover { color: #ffcf5c; }
.nav-cta {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  padding: 10px 24px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.nav-cta:hover { background: #ffcf5c; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: rgba(2,22,36,.98);
  backdrop-filter: blur(16px);
  border-top: 2px solid var(--gold);
  padding: 28px 36px 36px;
  z-index: 99;
  flex-direction: column;
  gap: 18px;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
}
.mob-menu a.highlight { color: var(--gold); }
.mob-menu-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--dark) !important;
  padding: 14px 28px;
  font-size: 16px !important;
  margin-top: 8px;
  width: fit-content;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 15px 34px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  cursor: pointer;
  transition: background .2s, transform .15s var(--ease-spring), box-shadow .2s;
}
.btn-gold:hover {
  background: #ffcf5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(248,177,35,.35);
}
.btn-outline {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  padding: 14px 32px;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.05);
}
.btn-outline-gold {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 14px 32px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background .2s, color .2s, transform .15s;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-1px);
}
.btn-dark {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--iron);
  color: var(--white);
  padding: 15px 34px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-dark:hover { background: #0a3d58; transform: translateY(-1px); }

/* ── EYEBROW / SECTION LABELS ── */
.eyebrow {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.eyebrow.dark { color: var(--iron-mid); }

/* ── SECTION HEADERS ── */
.sec-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.03em;
  line-height: .88;
}
.sec-title.on-dark { color: var(--white); }
.sec-title.on-light { color: var(--iron); }
.sec-title.gold-line em {
  font-style: normal;
  color: var(--gold);
}

/* ── STEEL TEXTURE HELPER ── */
.steel-bg {
  background: linear-gradient(135deg, var(--dark) 0%, var(--iron) 55%, #054060 100%);
  position: relative;
}
.steel-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -48deg,
      transparent,
      transparent 28px,
      rgba(255,255,255,.018) 28px,
      rgba(255,255,255,.018) 29px
    );
  pointer-events: none;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--iron) 60%, #0a4a6e 100%);
}
.hero-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-stripe {
  position: absolute;
  background: rgba(255,255,255,.022);
  transform-origin: top right;
}
.hero-stripe-1 { width: 3px; height: 130%; top: -15%; right: 28%; transform: rotate(-22deg); }
.hero-stripe-2 { width: 80px; height: 130%; top: -15%; right: 22%; transform: rotate(-22deg); }
.hero-stripe-3 { width: 3px; height: 130%; top: -15%; right: 15%; transform: rotate(-22deg); background: rgba(248,177,35,.06); }
.hero-stripe-4 { width: 160px; height: 130%; top: -15%; right: 8%; transform: rotate(-22deg); }
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .4;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 80px 80px;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-dim);
  border: 1px solid rgba(248,177,35,.3);
  padding: 7px 16px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .7s var(--ease-out) forwards .1s;
}
.hero-badge span {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.04em;
  line-height: .86;
  color: var(--white);
  margin-bottom: 32px;
}
.hero-h1 .line-1 {
  font-size: clamp(56px, 8.5vw, 124px);
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp .8s var(--ease-out) forwards .25s;
}
.hero-h1 .line-2 {
  font-size: clamp(56px, 8.5vw, 124px);
  display: block;
  color: var(--gold);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp .8s var(--ease-out) forwards .4s;
}
.hero-h1 .line-3 {
  font-size: clamp(32px, 4.5vw, 64px);
  display: block;
  color: rgba(255,255,255,.55);
  letter-spacing: -.02em;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .8s var(--ease-out) forwards .55s;
}
.hero-sub {
  font-size: 16px;
  color: var(--silver);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp .7s var(--ease-out) forwards .65s;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0;
  animation: fadeUp .7s var(--ease-out) forwards .75s;
}
.hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .7s var(--ease-out) forwards .9s;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-pill span {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--silver);
}

/* ── AREA STRIP ── */
.area-strip {
  background: rgba(3,42,62,.96);
  border-top: 1px solid rgba(248,177,35,.2);
  border-bottom: 1px solid rgba(248,177,35,.2);
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.area-strip span {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--silver);
}
.area-strip .area-label { color: var(--gold); font-weight: 700; }
.area-strip .sep { color: rgba(248,177,35,.4); }

/* ── HOW IT WORKS ── */
.how-it-works {
  background: var(--cream);
  padding: 100px 48px;
  position: relative;
}
.how-it-works::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .sec-title { font-size: clamp(44px, 6vw, 80px); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto 52px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 16.7%;
  right: 16.7%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(248,177,35,.2), var(--gold));
  z-index: 0;
}
.step {
  background: var(--white);
  padding: 48px 36px 40px;
  position: relative;
  border: 1px solid rgba(3,42,62,.08);
  transition: border-color .3s, transform .3s var(--ease-out), box-shadow .3s;
}
.step:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(3,42,62,.12);
}
.step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -.04em;
  color: rgba(3,42,62,.06);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.step-num::after {
  content: attr(data-num);
  position: absolute;
  top: 0; left: 0;
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--gold);
  font-weight: 800;
}
.step-icon { margin-bottom: 20px; }
.step-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--iron);
  margin-bottom: 12px;
  line-height: 1;
}
.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.how-cta { text-align: center; }

/* ── WHAT WE BUILD ── */
.what-we-build {
  background: var(--white);
  padding: 100px 48px;
}
.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.build-card {
  background: linear-gradient(165deg, var(--iron) 0%, var(--dark) 100%);
  padding: 48px 36px 40px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s;
  border: 1px solid rgba(255,255,255,.04);
}
.build-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.build-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -48deg, transparent, transparent 30px,
    rgba(255,255,255,.012) 30px, rgba(255,255,255,.012) 31px
  );
  pointer-events: none;
}
.build-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,.35); }
.build-card:hover::before { transform: scaleX(1); }
.build-icon { margin-bottom: 28px; position: relative; z-index: 1; }
.build-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--white);
  line-height: .92;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.build-desc {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.65;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.build-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.build-bullets li {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.build-bullets li::before { content: '—'; color: rgba(248,177,35,.35); }
.build-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── BUILT LOCALLY ── */
.built-locally {
  background: linear-gradient(135deg, var(--dark) 0%, var(--iron) 100%);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}
.built-locally::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -48deg, transparent, transparent 28px,
    rgba(255,255,255,.015) 28px, rgba(255,255,255,.015) 29px
  );
  pointer-events: none;
}
.locally-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto 52px;
}
.locally-item {
  padding: 48px 36px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  transition: background .3s, border-color .3s;
}
.locally-item:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(248,177,35,.3);
}
.locally-icon { margin-bottom: 24px; }
.locally-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1;
}
.locally-desc { font-size: 14px; color: var(--silver); line-height: 1.7; }
.locally-cta { text-align: center; position: relative; z-index: 1; }

/* ── WHO WE SERVE ── */
.who-we-serve {
  background: var(--cream);
  padding: 100px 48px;
}
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.serve-card {
  background: var(--white);
  border: 1px solid rgba(3,42,62,.1);
  padding: 48px 36px 40px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease-out), box-shadow .3s;
}
.serve-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.serve-card:hover {
  border-color: rgba(3,42,62,.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(3,42,62,.1);
}
.serve-card:hover::after { transform: scaleX(1); }
.serve-tag {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.serve-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -.03em;
  color: var(--iron);
  margin-bottom: 14px;
  line-height: .9;
}
.serve-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.serve-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.serve-points li {
  font-size: 13px;
  color: var(--iron);
  display: flex;
  align-items: center;
  gap: 10px;
}
.serve-points li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  flex-shrink: 0;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* ── STATS DARK ── */
.stats-dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--iron) 100%);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}
.stats-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -48deg, transparent, transparent 28px,
    rgba(255,255,255,.015) 28px, rgba(255,255,255,.015) 29px
  );
  pointer-events: none;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}
.stat-item {
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.025);
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--gold);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-number .sfx {
  font-size: 32px;
  color: var(--gold);
  letter-spacing: 0;
}
.stat-label {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 8px;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--white);
  padding: 100px 48px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.tcard {
  border: 1px solid rgba(3,42,62,.1);
  padding: 40px 36px;
  position: relative;
  transition: border-color .3s, box-shadow .3s;
}
.tcard:hover {
  border-color: rgba(248,177,35,.4);
  box-shadow: 0 12px 40px rgba(3,42,62,.08);
}
.tcard-quote {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 80px;
  line-height: .7;
  color: var(--gold);
  opacity: .15;
  margin-bottom: 8px;
  letter-spacing: -.04em;
}
.stars { display: flex; gap: 4px; margin-bottom: 18px; }
.star {
  width: 13px; height: 13px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.tcard-text {
  font-size: 15px;
  font-style: italic;
  line-height: 1.72;
  color: #445;
  margin-bottom: 24px;
}
.tcard-author {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--iron);
}
.tcard-role { font-size: 12px; color: var(--silver); margin-top: 3px; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 6px;
  max-width: 1100px;
  margin: 0 auto 60px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--iron);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .g-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 18px 14px;
  background: linear-gradient(to top, rgba(2,22,36,.88) 0%, transparent 100%);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s, transform .3s;
}
.gallery-item:hover .g-label { opacity: 1; transform: translateY(0); }
.gallery-item.wide  { grid-column: span 2; }
.gallery-item.tall  { grid-row: span 2; }
.gallery-item.w-full { grid-column: span 3; grid-auto-rows: 320px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--iron) 100%);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -48deg, transparent, transparent 28px,
    rgba(255,255,255,.015) 28px, rgba(255,255,255,.015) 29px
  );
  pointer-events: none;
}
.cta-banner .sec-title { font-size: clamp(52px, 8vw, 108px); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-sub { font-size: 17px; color: var(--silver); margin-bottom: 44px; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-phone-link {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 60px);
  color: var(--gold);
  letter-spacing: -.03em;
  display: block;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  transition: opacity .2s;
}
.cta-phone-link:hover { opacity: .8; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 72px 80px 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.foot-logo { height: 52px; width: auto; display: block; margin-bottom: 14px; }
.foot-tagline {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 20px;
}
.foot-social { display: flex; gap: 12px; }
.foot-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
}
.foot-social a:hover { border-color: var(--gold); background: var(--gold-dim); }
.foot-col h5 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.foot-col p, .foot-col a {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.9;
  display: block;
  transition: color .2s;
}
.foot-col a:hover { color: var(--white); }
.foot-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.foot-bottom p { font-size: 11px; color: rgba(139,156,174,.4); }

/* ── REVEAL ANIMATIONS ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--iron) 100%);
  padding: 100px 80px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -48deg, transparent, transparent 28px,
    rgba(255,255,255,.018) 28px, rgba(255,255,255,.018) 29px
  );
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 800px; }
.page-hero .sec-title { font-size: clamp(52px, 7vw, 96px); margin-bottom: 20px; }
.page-hero p { font-size: 17px; color: var(--silver); line-height: 1.7; max-width: 560px; }

/* ── FORM STYLES ── */
.form-section {
  background: var(--white);
  padding: 80px 48px;
}
.form-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--iron);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(3,42,62,.2);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--iron);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(248,177,35,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.radio-option span {
  font-size: 15px;
  color: var(--iron);
}
.form-submit {
  margin-top: 32px;
  text-align: center;
}
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}
.success-msg {
  display: none;
  background: rgba(3,42,62,.04);
  border: 2px solid var(--gold);
  padding: 32px 36px;
  text-align: center;
}
.success-msg h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--iron);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.success-msg p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ── 3D DESIGNER PAGE ── */
.designer-embed {
  background: var(--dark);
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.designer-embed iframe {
  width: 100%;
  max-width: 1200px;
  height: 680px;
  border: 2px solid rgba(248,177,35,.2);
  background: var(--iron);
}
.designer-placeholder {
  width: 100%;
  max-width: 1200px;
  height: 680px;
  border: 2px dashed rgba(248,177,35,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  background: rgba(3,42,62,.4);
}
.designer-placeholder p {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--silver);
  text-align: center;
}
.designer-placeholder .plc-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -.03em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 12px; }
  .build-grid,
  .locally-grid,
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .site-nav { padding: 0 24px; }
  .hero-content { padding: 100px 32px 60px; }
  .steps-grid { grid-template-columns: 1fr; gap: 2px; }
  .steps-grid::before { display: none; }
  .build-grid,
  .locally-grid,
  .serve-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .testi-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  footer { padding: 52px 32px 0; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .how-it-works, .what-we-build, .built-locally, .who-we-serve, .testimonials,
  .cta-banner, .form-section { padding: 72px 24px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 48px; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; text-align: center; }
  footer { padding: 48px 24px 0; }
  .page-hero { padding: 80px 28px 60px; }
  .designer-embed { padding: 24px; }
  .designer-embed iframe,
  .designer-placeholder { height: 420px; }
}
