/* ────────────────────────────────────────────────────────
   DESIGN TOKENS
──────────────────────────────────────────────────────── */
:root {
  /* Structure */
  --black:       #0c0c0b;
  --charcoal:    #161614;
  --iron:        #1e1e1b;
  --steel:       #252520;

  /* Brand yellow — amber-construction, not neon */
  --yellow:      #e8a900;
  --yellow-h:    #f5bc20;
  --yellow-dim:  #c08f00;
  --yellow-bg:   rgba(232,169,0,0.08);
  --yellow-rule: rgba(232,169,0,0.22);

  /* Light side */
  --concrete:    #f0ebe0;
  --concrete-d:  #e4dfd4;
  --concrete-dd: #d8d2c6;

  /* Text — dark side */
  --t-inv:       #eee9de;
  --t-inv-m:     rgba(238,233,222,0.58);
  --t-inv-f:     rgba(238,233,222,0.26);

  /* Text — light side */
  --t-dark:      #141412;
  --t-mid:       #403e38;
  --t-muted:     #706c62;
  --t-faint:     #9e9a90;

  /* Rules */
  --rule-d:      rgba(238,233,222,0.07);
  --rule-l:      rgba(20,20,18,0.1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Barlow', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  background: var(--concrete);
  color: var(--t-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Construction-grade heading family */
h1,h2,h3,h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--yellow); }

/* ────────────────────────────────────────────────────────
   NAV
──────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 4%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(12,12,11,0.97);
  border-color: var(--rule-d);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--t-inv);
  text-transform: uppercase;
}

.nav-logo-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-top: 3px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 2.6rem;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--t-inv-m);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--t-inv); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.nav-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--t-inv-m);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-phone:hover { color: var(--yellow); }

.nav-cta {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  background: var(--yellow);
  padding: 0.58rem 1.4rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--yellow-h);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--t-inv);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ────────────────────────────────────────────────────────
   HERO
──────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 40%;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

/* Subtle grid overlay on the dark hero */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,169,0,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,169,0,0.028) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 5% 9vh 4%;
  position: relative;
  z-index: 2;
}



.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.2rem, 6.5vw, 6.2rem);
  font-weight: 800;
  line-height: 0.96;
  color: var(--t-inv);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 2.8rem;
  max-width: 700px;
}

.hero-h1 .accent { color: var(--yellow); }

.hero-body {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(238,233,222,0.82);
  max-width: 500px;
  margin-bottom: 3.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-solid {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 0.9rem 2.2rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.18s, transform 0.15s;
}

.btn-solid:hover {
  background: var(--yellow-h);
  transform: translateY(-1px);
}

.btn-text {
  font-family: 'Barlow', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(238,233,222,0.82);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1.5px solid var(--rule-d);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-text:hover {
  color: var(--t-inv);
  border-color: rgba(238,233,222,0.4);
}

/* Hero stats strip — sits at bottom of hero-left */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule-d);
}

.hs-item { display: flex; flex-direction: column; }

.hs-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: 0.02em;
}

.hs-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(238,233,222,0.65);
  margin-top: 4px;
  font-weight: 400;
}

/* Hero right panel — slideshow */
.hero-right {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-slide.active {
  opacity: 1;
  animation: kenburns 5.5s ease-out forwards;
}

@keyframes kenburns {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(12,12,11,0.45) 0%, transparent 55%),
    linear-gradient(to top, rgba(12,12,11,0.65) 0%, transparent 50%);
}

.slide-label {
  position: absolute;
  bottom: 2.2rem;
  left: 2rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(238,233,222,0.82);
  font-weight: 600;
}

.slide-dots {
  position: absolute;
  bottom: 2rem;
  right: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  z-index: 10;
}

.slide-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(238,233,222,0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.slide-dot.active {
  background: var(--yellow);
  transform: scale(1.5);
}


/* ────────────────────────────────────────────────────────
   TICKER
──────────────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--yellow);
  overflow: hidden;
  padding: 0.85rem 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 38s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 600;
  white-space: nowrap;
}

.ticker-sep {
  width: 4px;
  height: 4px;
  background: rgba(12,12,11,0.35);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ────────────────────────────────────────────────────────
   SHARED UTILITIES
──────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}

.eyebrow-light {
  color: rgba(20,20,18,0.55);
}

.eyebrow-light::before {
  background: rgba(20,20,18,0.55);
}

/* ────────────────────────────────────────────────────────
   ABOUT
──────────────────────────────────────────────────────── */
#about {
  background: var(--concrete);
  padding: 9rem 4%;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.about-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--t-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.about-text {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.88;
  color: rgba(20,20,18,0.72);
  margin-bottom: 1.3rem;
  font-weight: 400;
}

.about-text:last-of-type { margin-bottom: 0; }

.about-sig {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow-dim);
  margin-top: 2.5rem;
}

/* Stats grid */
.stats-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.stat-cell {
  padding: 3rem 2rem;
  border: 1px solid var(--rule-l);
  margin: -1px 0 0 -1px;
  position: relative;
}

/* Yellow left accent on top-left cell */
.stat-cell:first-child {
  border-left: 3px solid var(--yellow);
}

.stat-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--t-dark);
  line-height: 1;
  letter-spacing: -0.01em;
}

.stat-n sup {
  font-size: 1.6rem;
  vertical-align: super;
  color: var(--yellow);
}

.stat-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20,20,18,0.65);
  margin-top: 0.7rem;
  line-height: 1.5;
  font-weight: 600;
}

/* ────────────────────────────────────────────────────────
   SERVICES
──────────────────────────────────────────────────────── */
#services {
  background: var(--charcoal);
  padding: 9rem 4%;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 0;
  gap: 1rem;
  margin-bottom: 0;
}

.services-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--t-inv);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  max-width: 480px;
}

.services-aside {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  line-height: 1.72;
  color: rgba(238,233,222,0.72);
  max-width: 520px;
  font-weight: 400;
}

/* Pole card grid */
.poles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(238,233,222,0.06);
  border: 1px solid rgba(238,233,222,0.06);
  margin-top: 3.5rem;
}

.pole-card {
  background: var(--charcoal);
  padding: 2.8rem 2.2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.pole-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  opacity: 0;
  transition: opacity 0.3s;
}

.pole-card:hover::before { opacity: 1; }

.pole-card:hover { background: rgba(238,233,222,0.02); }

.pole-wide { grid-column: span 2; }

.pole-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(238,233,222,0.04);
  position: absolute;
  top: 0.8rem; right: 1.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  transition: color 0.3s;
}

.pole-card:hover .pole-num { color: rgba(238,233,222,0.08); }

.pole-icon {
  display: block;
  width: 26px;
  height: 26px;
  color: var(--yellow);
  opacity: 0.7;
  margin-bottom: 1.2rem;
}

.pole-tag {
  font-family: 'Barlow', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pole-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--t-inv);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 0.55rem;
}

.pole-hook {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(238,233,222,0.42);
  font-weight: 400;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.pole-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.84rem;
  line-height: 1.76;
  color: rgba(238,233,222,0.72);
  font-weight: 400;
  margin-bottom: 1.4rem;
}

.pole-services {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pole-services li {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  color: rgba(238,233,222,0.55);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400;
}

.pole-services li::before {
  content: '—';
  color: var(--yellow);
  opacity: 0.6;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pole-services-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 2.5rem;
}

/* ────────────────────────────────────────────────────────
   INTERLUDE
──────────────────────────────────────────────────────── */
.interlude {
  height: 320px;
  background: var(--iron);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--rule-d);
  border-bottom: 3px solid var(--yellow);
}

.interlude-art {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.interlude-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 8%;
  max-width: 860px;
}

.interlude-inner blockquote {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(238,233,222,0.08);
  line-height: 1.3;
}

/* ────────────────────────────────────────────────────────
   PROCESS
──────────────────────────────────────────────────────── */
#process {
  background: var(--concrete-d);
  padding: 9rem 4%;
  border-top: 1px solid var(--rule-l);
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process-head {
  margin-bottom: 5rem;
}

.process-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--t-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 420px;
  line-height: 1.05;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule-l);
}

.process-step {
  padding: 3rem 2rem;
  border-right: 1px solid var(--rule-l);
  position: relative;
}

.process-step:last-child { border-right: none; }

/* Yellow top bar on step 1 */
.process-step:first-child {
  border-top: 3px solid var(--yellow);
}

.ps-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: rgba(20,20,18,0.22);
  line-height: 1;
  margin-bottom: 1.6rem;
  letter-spacing: -0.01em;
}

.ps-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--t-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.9rem;
  line-height: 1.15;
}

.ps-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(20,20,18,0.78);
  font-weight: 400;
}

/* ────────────────────────────────────────────────────────
   CONTACT
──────────────────────────────────────────────────────── */
#contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 660px;
}

.contact-dark {
  background: var(--black);
  padding: 8rem 5% 8rem 4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 3px solid var(--yellow);
}

.contact-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  color: var(--t-inv);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
  max-width: 360px;
}

.contact-h2 .accent { color: var(--yellow); }

.contact-table {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}

.ct-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule-d);
  align-items: start;
}

.ct-row:first-child { border-top: 1px solid var(--rule-d); }

.ct-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  padding-top: 2px;
}

.ct-val {
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  color: rgba(238,233,222,0.78);
  line-height: 1.65;
  font-weight: 400;
}

.ct-val a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.ct-val a:hover { color: var(--yellow); }

.contact-note {
  font-family: 'Barlow', sans-serif;
  font-size: 0.76rem;
  color: rgba(238,233,222,0.62);
  line-height: 1.65;
}

/* Form side */
.contact-light {
  background: var(--concrete);
  padding: 8rem 4% 8rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--t-dark);
  margin-bottom: 0.4rem;
}

.form-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  color: rgba(20,20,18,0.58);
  margin-bottom: 2.8rem;
}

.form-group { margin-bottom: 1.6rem; }

.form-label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(20,20,18,0.65);
  margin-bottom: 0.55rem;
  font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--rule-l);
  padding: 0.6rem 0;
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--t-dark);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(20,20,18,0.22); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--yellow); }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23706c62' stroke-width='1.3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 1.5rem;
}

.form-select option { background: var(--concrete); }

.form-textarea {
  resize: vertical;
  min-height: 92px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-submit {
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 0.92rem 2.4rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
  margin-top: 0.4rem;
}

.form-submit:hover {
  background: var(--yellow-h);
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.form-legal {
  font-family: 'Barlow', sans-serif;
  font-size: 0.66rem;
  color: var(--t-faint);
  margin-top: 1rem;
  line-height: 1.6;
}

.form-success {
  display: none;
  padding: 1.4rem;
  border-left: 3px solid var(--yellow);
  background: rgba(232,169,0,0.06);
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  color: var(--t-mid);
  line-height: 1.65;
  margin-top: 1.5rem;
}

/* ────────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────────── */
footer {
  background: #100f0c;
  border-top: 2px solid var(--yellow);
  padding: 5.5rem 4% 0;
  overflow: hidden;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4.5rem;
  border-bottom: 1px solid rgba(238,233,222,0.07);
}

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 0.8rem;
}

.footer-brand-tag {
  font-family: 'Barlow', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-brand-text {
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  color: rgba(238,233,222,0.68);
  line-height: 1.8;
  max-width: 250px;
  font-weight: 400;
}

.footer-col-title {
  font-family: 'Barlow', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-link {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.84rem;
  color: rgba(238,233,222,0.68);
  text-decoration: none;
  margin-bottom: 0.55rem;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-link:hover { color: rgba(238,233,222,0.95); }

/* Full-bleed yellow bottom strip */
.footer-bottom {
  margin: 0 -4%;
  padding: 1.3rem 4%;
  background: var(--yellow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-copy {
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem;
  color: rgba(12,12,11,0.65);
  letter-spacing: 0.06em;
  font-weight: 400;
}

.footer-copy strong {
  color: var(--black);
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* ────────────────────────────────────────────────────────
   SCROLL REVEAL
──────────────────────────────────────────────────────── */
.sr {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sr.visible { opacity: 1; transform: none; }
.sr-d1 { transition-delay: 0.1s; }
.sr-d2 { transition-delay: 0.2s; }
.sr-d3 { transition-delay: 0.3s; }

/* ────────────────────────────────────────────────────────
   MOBILE MENU
──────────────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 190;
  background: rgba(12,12,11,0.98);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5rem 4rem 4rem;
  gap: 2rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav .mobile-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--t-inv-m);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1;
}

.mobile-nav .mobile-link:hover { color: var(--yellow); }

.mobile-nav-footer {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule-d);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}

.mobile-nav-footer a {
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  color: var(--t-inv-f);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.mobile-nav-footer a:hover { color: var(--yellow); }

/* ────────────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .poles-grid { grid-template-columns: 1fr 1fr; }
  .pole-wide { grid-column: span 2; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding-bottom: 8rem; }
  .hero-stats { flex-wrap: wrap; gap: 2rem; }

  .about-inner { grid-template-columns: 1fr; gap: 4rem; }
  .services-aside { text-align: left; }
  .services-head { flex-direction: column; align-items: flex-start; }
  .poles-grid { grid-template-columns: 1fr 1fr; }
  .pole-wide { grid-column: span 2; }

  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { border-bottom: 1px solid var(--rule-l); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3) { border-bottom: none; }
  .process-step:nth-child(4) { border-right: none; border-bottom: none; }

  #contact { grid-template-columns: 1fr; }
  .contact-dark { border-right: none; border-bottom: 3px solid var(--yellow); padding: 6rem 4%; }
  .contact-light { padding: 6rem 4%; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .poles-grid { grid-template-columns: 1fr; }
  .pole-wide { grid-column: span 1; }
  .pole-services-wide { grid-template-columns: 1fr; }

  .stats-block { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .interlude { height: 220px; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 3rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  #about, #services, #process { padding: 6rem 5%; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--rule-l); }
  .process-step:last-child { border-bottom: none; }
  .stats-block { grid-template-columns: 1fr; }
}
