/* ============================================================
   HOMEFORCE · style.css
   Detroit Housing Operations Platform
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --ink:       #141414;
  --concrete:  #F4F2EE;
  --steel:     #3A3A3A;
  --ember:     #ED9648;
  --ember-h:   #F5A75A;
  --sage:      #83B591;
  --emerald:   #355E4A;
  --indigo:    #6B7FD4;
  --smoke:     #8A8A8A;
  --mist:      #E8E6E1;
  --white:     #FFFFFF;

  --fd: 'DM Serif Display', Georgia, serif;
  --fb: 'DM Sans', system-ui, sans-serif;
  --fl: 'Outfit', system-ui, sans-serif;

  --max: 1200px;
  --pad: 80px;
  --pad-v: 108px;
  --radius: 0;
  --transition: 0.25s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--fb);
  background: var(--concrete);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--ember); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--ember-h); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Custom cursor ─────────────────────────────────────────── */
#cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--ember);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, opacity .2s;
  mix-blend-mode: multiply;
}
#cursor.expanded { width: 32px; height: 32px; opacity: .2; }
@media (hover: none) { #cursor { display: none; } }

/* ── Typography ────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--fl);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ember);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--ember);
  flex-shrink: 0;
}
h1, h2 { font-family: var(--fd); line-height: 1.05; }
h3 { font-family: var(--fd); line-height: 1.2; }
.display { font-size: clamp(48px, 5.5vw, 86px); }
.headline { font-size: clamp(32px, 3.6vw, 54px); }
.subheadline { font-size: clamp(22px, 2.4vw, 34px); }
.body-lg { font-size: 16px; line-height: 1.75; font-weight: 300; }
.body-md { font-size: 14px; line-height: 1.75; }
.body-sm { font-size: 13px; line-height: 1.72; }
.label {
  font-family: var(--fl);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fl);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 13px 28px;
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ember); color: var(--ink); }
.btn-primary:hover { background: var(--ember-h); color: var(--ink); }
.btn-ghost-light { background: transparent; color: rgba(255,255,255,.55); border-color: rgba(255,255,255,.2); }
.btn-ghost-light:hover { border-color: var(--ember); color: var(--ember); }
.btn-ghost-dark { background: transparent; color: var(--smoke); border-color: var(--mist); }
.btn-ghost-dark:hover { border-color: var(--ember); color: var(--ember); }
.btn-text { padding: 0; background: transparent; color: var(--ember); border: none; }
.btn-text:hover { color: var(--ember-h); transform: translateX(3px); }

/* ── Layout helpers ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section-pad { padding: var(--pad-v) 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 84px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ── Reveal animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ── Divider ───────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--mist);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  height: 70px;
  transition: background .35s, box-shadow .35s;
}
#nav .nav-inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#nav.scrolled {
  background: rgba(20,20,20,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(237,150,72,.18);
}
.nav-logo { height: 26px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-family: var(--fl);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--ember); }
.nav-cta { margin-left: 8px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  transition: transform .25s, opacity .25s;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-texture {
  position: absolute;
  inset: 0;
  background: url('../assets/textures/texture_dark.jpg') center/600px;
  opacity: .055;
  z-index: 0;
}
.hero-left {
  z-index: 1;
  padding: 150px var(--pad) 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(237,150,72,.08);
}
.hero-heading { color: #fff; margin-bottom: 24px; }
.hero-heading em { font-style: italic; color: var(--ember); }
.hero-sub {
  color: rgba(255,255,255,.45);
  max-width: 420px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 28px;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 48px;
}
.stat-num {
  font-family: var(--fd);
  font-size: 28px;
  color: var(--ember);
  line-height: 1;
}
.stat-label {
  font-family: var(--fl);
  font-size: 9.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-top: 4px;
}
.stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,.08); }

.hero-right {
  z-index: 1;
  padding: 150px 80px 80px var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.hero-right .label {
  color: rgba(255,255,255,.2);
  margin-bottom: 10px;
}
.jump-card {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.jump-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: transparent;
  transition: background var(--transition);
}
.jump-card:hover {
  background: rgba(237,150,72,.07);
  border-color: rgba(237,150,72,.2);
  transform: translateX(4px);
}
.jump-card:hover::before { background: var(--ember); }
.jump-title { font-size: 13.5px; font-weight: 500; color: #fff; margin-bottom: 2px; }
.jump-sub { font-size: 11.5px; color: rgba(255,255,255,.32); }
.jump-arrow {
  color: var(--ember);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.jump-card:hover .jump-arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   AMBER STRIP
   ============================================================ */
#strip {
  background: var(--ember);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.strip-texture {
  position: absolute;
  inset: 0;
  background: url('../assets/textures/texture_ember.jpg') center/400px;
  opacity: .12;
  mix-blend-mode: multiply;
}
.strip-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.strip-quote {
  font-family: var(--fd);
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.2;
  color: var(--ink);
}
.strip-quote em { font-style: italic; }
.strip-body { color: rgba(20,20,20,.65); }
.strip-body p + p { margin-top: 14px; }

/* ============================================================
   PILLARS — What We Do
   ============================================================ */
#pillars { background: var(--concrete); }
.pillars-header { margin-bottom: 56px; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--mist);
  border: 2px solid var(--mist);
}
.pillar-card {
  background: var(--ink);
  padding: 44px 28px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.pillar-card:hover { background: #1c1c1c; }
.pillar-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.pillar-card:nth-child(1)::after { background: var(--ember); }
.pillar-card:nth-child(2)::after { background: var(--sage); }
.pillar-card:nth-child(3)::after { background: var(--indigo); }
.pillar-card:nth-child(4)::after { background: var(--emerald); }
.pillar-texture {
  position: absolute;
  inset: 0;
  background: url('../assets/textures/texture_dark.jpg') center/300px;
  opacity: .06;
}
.pillar-num {
  font-family: var(--fl);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  color: rgba(255,255,255,.14);
  display: block;
  margin-bottom: 24px;
}
.pillar-icon { margin-bottom: 18px; }
.pillar-card:nth-child(1) .pillar-icon { color: var(--ember); }
.pillar-card:nth-child(2) .pillar-icon { color: var(--sage); }
.pillar-card:nth-child(3) .pillar-icon { color: var(--indigo); }
.pillar-card:nth-child(4) .pillar-icon { color: var(--emerald); }
.pillar-title {
  font-family: var(--fd);
  font-size: 21px;
  color: #fff;
  margin-bottom: 12px;
}
.pillar-body { color: rgba(255,255,255,.44); }

/* ============================================================
   WHO WE SERVE
   ============================================================ */
#serve {
  background: var(--steel);
  position: relative;
  overflow: hidden;
}
.serve-texture {
  position: absolute;
  inset: 0;
  background: url('../assets/textures/texture_dark.jpg') center/500px;
  opacity: .07;
}
.serve-header { margin-bottom: 44px; position: relative; z-index: 1; }
.serve-header h2 { color: #fff; }
.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
.serve-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 34px 26px;
  position: relative;
  transition: transform var(--transition), background var(--transition);
}
.serve-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.07); }
.serve-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.serve-card:nth-child(1)::before { background: var(--ember); }
.serve-card:nth-child(2)::before { background: var(--sage); }
.serve-card:nth-child(3)::before { background: var(--indigo); }
.serve-card:nth-child(4)::before { background: var(--emerald); }
.serve-label { margin-bottom: 10px; }
.serve-card:nth-child(1) .serve-label { color: var(--ember); }
.serve-card:nth-child(2) .serve-label { color: var(--sage); }
.serve-card:nth-child(3) .serve-label { color: var(--indigo); }
.serve-card:nth-child(4) .serve-label { color: var(--emerald); }
.serve-title { font-family: var(--fd); font-size: 22px; color: #fff; margin-bottom: 12px; }
.serve-body { color: rgba(255,255,255,.44); margin-bottom: 18px; }
.serve-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
.serve-list li {
  font-size: 12px;
  color: rgba(255,255,255,.38);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  gap: 8px;
}
.serve-list li:last-child { border-bottom: none; }
.serve-list li svg { flex-shrink: 0; }
.serve-card:nth-child(1) .serve-list li svg { color: var(--ember); }
.serve-card:nth-child(2) .serve-list li svg { color: var(--sage); }
.serve-card:nth-child(3) .serve-list li svg { color: var(--indigo); }
.serve-card:nth-child(4) .serve-list li svg { color: var(--emerald); }
.serve-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fl);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: gap var(--transition), color var(--transition);
  text-decoration: none;
}
.serve-cta:hover { gap: 12px; }
.serve-card:nth-child(1) .serve-cta { color: var(--ember); }
.serve-card:nth-child(2) .serve-cta { color: var(--sage); }
.serve-card:nth-child(3) .serve-cta { color: var(--indigo); }
.serve-card:nth-child(4) .serve-cta { color: var(--emerald); }

/* ============================================================
   HPN — Housing Provider Network
   ============================================================ */
#hpn { background: var(--ink); }
.hpn-texture {
  position: absolute;
  inset: 0;
  background: url('../assets/textures/texture_dark.jpg') center/400px;
  opacity: .06;
}
#hpn { position: relative; overflow: hidden; }
.hpn-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hpn-left h2 { color: #fff; margin-bottom: 18px; }
.hpn-left h2 em { font-style: italic; color: var(--ember); }
.hpn-body { color: rgba(255,255,255,.44); margin-bottom: 28px; }
.hpn-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(237,150,72,.09);
  border: 1px solid rgba(237,150,72,.2);
  padding: 8px 16px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ember);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(1.5); }
}
.badge-text { font-family: var(--fl); font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ember); }
.tiers { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.tier {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), border-color var(--transition);
  cursor: pointer;
}
.tier:hover { background: rgba(237,150,72,.06); border-color: rgba(237,150,72,.2); }
.tier-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
}
.tier:nth-child(1) .tier-bar { background: rgba(237,150,72,.3); }
.tier:nth-child(2) .tier-bar { background: var(--ember); }
.tier:nth-child(3) .tier-bar { background: rgba(237,150,72,.55); }
.tier-name { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.tier-desc { font-size: 12px; color: rgba(255,255,255,.34); }
.tier-price { font-family: var(--fd); font-size: 20px; color: var(--ember); white-space: nowrap; }
.tier-price span { font-family: var(--fb); font-size: 12px; color: var(--smoke); }
.hpn-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hpn-note {
  font-family: var(--fl);
  font-size: 10px;
  letter-spacing: .07em;
  color: rgba(255,255,255,.2);
  margin-top: 14px;
}

.benefits { border: 1px solid rgba(255,255,255,.07); }
.benefit {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background var(--transition);
}
.benefit:last-child { border-bottom: none; }
.benefit:hover { background: rgba(255,255,255,.025); }
.benefit-icon {
  width: 30px; height: 30px;
  background: rgba(237,150,72,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ember);
  margin-top: 1px;
}
.benefit-title { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.benefit-body { font-size: 12px; line-height: 1.65; color: rgba(255,255,255,.36); }
.hpn-right-label {
  font-family: var(--fl);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  margin-bottom: 14px;
}

/* ============================================================
   APP SECTION
   ============================================================ */
#app { background: var(--concrete); }
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: center;
}
.phones {
  position: relative;
  height: 520px;
}
.phone {
  position: absolute;
  width: 210px;
  background: #141414;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.2);
}
.phone-1 { left: 0; top: 0; z-index: 2; transform: rotate(-4deg); }
.phone-2 { left: 100px; top: 30px; z-index: 3; transform: rotate(2deg); border: 1.5px solid rgba(237,150,72,.15); }
.phone-3 { left: 215px; top: 14px; z-index: 1; transform: rotate(5deg); opacity: .55; }
.phone-notch {
  height: 22px;
  background: rgba(0,0,0,.45);
  margin: 0 50px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.phone-screen { padding: 10px; min-height: 360px; }
.phone-status {
  display: flex;
  justify-content: space-between;
  font-family: var(--fl);
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  padding: 2px 4px;
  margin-bottom: 8px;
}
.phone-amber {
  background: var(--ember);
  margin: -10px -10px 8px;
  padding: 12px 10px 9px;
}
.p-hi { font-family: var(--fl); font-size: 7.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(20,20,20,.5); }
.p-name { font-family: var(--fd); font-size: 16px; color: var(--ink); margin-top: 1px; }
.p-prog { height: 4px; background: rgba(20,20,20,.14); margin-top: 8px; border-radius: 2px; overflow: hidden; }
.p-fill { height: 100%; background: var(--ink); width: 65%; border-radius: 2px; }
.p-module {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  padding: 7px 8px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.p-module.active { background: rgba(237,150,72,.07); border-color: rgba(237,150,72,.22); border-left-width: 2px; border-left-color: var(--ember); }
.p-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dot-done { background: var(--sage); }
.dot-active { background: var(--ember); }
.dot-todo { background: rgba(255,255,255,.16); }
.p-mod-text { font-family: var(--fl); font-size: 8px; font-weight: 500; color: rgba(255,255,255,.6); }
.p-mod-text.done { color: rgba(255,255,255,.28); text-decoration: line-through; }
.p-mod-text.active-t { color: var(--ember); }

.app-tab-row { display: flex; border: 1px solid var(--mist); width: fit-content; margin-bottom: 30px; }
.app-tab {
  font-family: var(--fl);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 9px 22px;
  background: transparent;
  color: var(--smoke);
  transition: background var(--transition), color var(--transition);
  border: none;
  cursor: pointer;
}
.app-tab.active { background: var(--ink); color: var(--ember); }
.app-features { margin-bottom: 30px; }
.app-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--mist);
}
.app-feature:first-child { border-top: 1px solid var(--mist); }
.feat-num { font-family: var(--fd); font-size: 12px; color: var(--ember); width: 20px; flex-shrink: 0; margin-top: 1px; }
.feat-title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.feat-body { color: var(--smoke); }
.app-release {
  font-family: var(--fl);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 14px;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--ink); position: relative; overflow: hidden; }
.contact-texture {
  position: absolute;
  inset: 0;
  background: url('../assets/textures/texture_dark.jpg') center/500px;
  opacity: .05;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-left h2 { color: #fff; margin-bottom: 22px; }
.contact-left h2 em { font-style: italic; color: var(--ember); }
.contact-sub { color: rgba(255,255,255,.38); margin-bottom: 36px; font-weight: 300; }
.contact-links { display: flex; flex-direction: column; gap: 14px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--ember); }
.contact-link-icon {
  width: 34px; height: 34px;
  background: rgba(237,150,72,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ember);
}

/* Form */
.hf-form { display: flex; flex-direction: column; gap: 13px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label {
  font-family: var(--fl);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
}
.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  color: #fff;
  font-family: var(--fb);
  font-size: 14px;
  padding: 12px 15px;
  outline: none;
  width: 100%;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(237,150,72,.42);
  background: rgba(237,150,72,.04);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,.2); }
.form-select option { background: var(--ink); }
.form-textarea { min-height: 96px; resize: vertical; }
.form-submit {
  font-family: var(--fl);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--ember);
  color: var(--ink);
  padding: 14px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background var(--transition), transform var(--transition);
}
.form-submit:hover { background: var(--ember-h); transform: translateY(-2px); }
.form-note {
  font-family: var(--fl);
  font-size: 10px;
  color: rgba(255,255,255,.2);
  letter-spacing: .06em;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: rgba(0,0,0,.55);
  border-top: 1px solid rgba(237,150,72,.12);
  padding: 26px 0;
  position: relative;
  z-index: 1;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo { height: 18px; mix-blend-mode: screen; opacity: .65; }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-family: var(--fl);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.24);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--ember); }
.footer-copy {
  font-family: var(--fl);
  font-size: 11px;
  color: rgba(255,255,255,.15);
}

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
.mobile-nav {
  position: fixed;
  inset: 70px 0 0;
  background: rgba(20,20,20,.98);
  backdrop-filter: blur(16px);
  z-index: 490;
  display: flex;
  flex-direction: column;
  padding: 32px var(--pad);
  gap: 4px;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--fl);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--ember); }
.mobile-nav .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* ============================================================
   SUCCESS STATE
   ============================================================ */
.form-success {
  display: none;
  padding: 32px;
  background: rgba(131,181,145,.1);
  border: 1px solid rgba(131,181,145,.25);
  text-align: center;
}
.form-success.show { display: block; }
.form-success p { color: var(--sage); font-family: var(--fl); font-size: 13px; letter-spacing: .06em; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --pad: 40px; --pad-v: 80px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .strip-inner,
  .hpn-inner,
  .app-grid,
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .phones { height: 340px; }
  .phone-3 { display: none; }
}

@media (max-width: 640px) {
  :root { --pad: 24px; --pad-v: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 420px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-ember { color: var(--ember); }
.text-white { color: #fff; }
.italic { font-style: italic; }

/* Division link on pillar cards */
.pillar-link {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--fl);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ember);
  text-decoration: none;
  transition: color var(--transition);
}
.pillar-link:hover { color: var(--ember-h); }
