/* ============================================================================
   BeEasy Contracting — styles.css (v2026.04.23.2100)
   
   Premium black/gold/white construction brand.
   Shared across all 8 pages: index, about, services, projects, financing,
   careers, contact, kitchens.
============================================================================ */

/* --- Design Tokens ------------------------------------------------------- */
:root {
  /* Core palette */
  --bg:         #060607;
  --bg-2:       #0b0b0e;
  --panel:      #101014;
  --panel-2:    #15151a;
  --text:       #f5f5f7;
  --muted:      #b1b1bd;
  --line:       rgba(255, 255, 255, 0.08);
  --line-2:     rgba(255, 255, 255, 0.04);
  
  /* Gold brand accent */
  --gold:       #d4a017;
  --gold-2:     #f0c552;
  --gold-3:     #8a6507;
  --gold-glow:  rgba(212, 160, 23, 0.18);
  
  /* Status */
  --green:      #00c26f;
  --red:        #ff4d4f;
  
  /* Layout */
  --max:        1320px;
  --nav-h:      84px;
  --nav-h-mob:  70px;
  
  /* Shadows */
  --shadow:      0 24px 80px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 18px 60px rgba(212, 160, 23, 0.18);
  --shadow-lift: 0 6px 18px rgba(0, 0, 0, 0.35);
  
  /* Radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  
  /* Type */
  --font-display: 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 80% 10%, rgba(212, 160, 23, 0.08), transparent 24%),
    linear-gradient(180deg, #040404 0%, #09090b 55%, #060607 100%);
  background-attachment: fixed;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

/* --- Utilities ----------------------------------------------------------- */
.container { width: min(var(--max), calc(100% - 28px)); margin: 0 auto; }
.gold { color: var(--gold); }
.muted { color: var(--muted); }
.kicker {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 12px;
}

/* --- Typography ---------------------------------------------------------- */
h1, h2, h3, h4 { margin: 0; font-weight: 900; letter-spacing: -0.04em; text-transform: uppercase; line-height: 1; }
h1 { font-size: clamp(3rem, 7vw, 6.4rem); letter-spacing: -0.06em; }
h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); letter-spacing: -0.05em; }
h3 { font-size: 1.05rem; letter-spacing: 0.02em; }
p  { margin: 0; }

.eyebrow {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* --- Navigation ---------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 6, 7, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-2);
}
.nav-inner {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo img { width: 160px; max-width: 42vw; height: auto; }

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.76);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-links a { transition: color 0.2s ease; position: relative; padding: 6px 0; }
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 2px;
}

.nav-actions { display: flex; gap: 12px; align-items: center; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #fff;
  transition: 0.25s ease;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg); top: 21px; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg); top: 21px; }

.nav-drawer {
  position: fixed;
  inset: var(--nav-h-mob) 0 0 0;
  background: rgba(6, 6, 7, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  padding: 32px 22px 40px;
  display: none;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 16px 18px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.02);
}
.nav-drawer a:hover, .nav-drawer a.active { border-color: rgba(212, 160, 23, 0.4); color: var(--gold-2); }
.nav-drawer .drawer-cta {
  margin-top: 14px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #111;
  border: none;
  box-shadow: var(--shadow-gold);
}

/* --- Buttons ------------------------------------------------------------- */
.btn, .btn-outline, .btn-ghost, .mini-btn, .service-quote-btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  transition: 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.88rem;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #111;
  box-shadow: var(--shadow-gold);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 24px 70px rgba(212, 160, 23, 0.28); }

.btn-outline, .mini-btn {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}
.btn-outline:hover, .mini-btn:hover {
  border-color: rgba(212, 160, 23, 0.42);
  color: var(--gold-2);
}

.btn-ghost {
  border-color: transparent;
  background: transparent;
  color: var(--gold-2);
  padding: 0 12px;
}
.btn-ghost:hover { color: var(--gold); }

.mini-btn {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.8rem;
  border-radius: var(--r-sm);
}

.service-quote-btn {
  min-height: 42px;
  padding: 0 14px;
  border-radius: var(--r-sm);
  font-size: 0.78rem;
  background: rgba(212, 160, 23, 0.10);
  color: var(--gold-2);
  border-color: rgba(212, 160, 23, 0.24);
}
.service-quote-btn:hover {
  background: rgba(212, 160, 23, 0.18);
  border-color: rgba(212, 160, 23, 0.5);
}

.phone-chip {
  min-height: 52px;
  padding: 0 18px;
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 800;
  white-space: nowrap;
  color: #fff;
  transition: 0.2s;
}
.phone-chip:hover { border-color: rgba(212, 160, 23, 0.4); color: var(--gold-2); }

/* --- Hero ---------------------------------------------------------------- */
.hero { padding: 22px 0 0; }
.hero-shell {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  min-height: 760px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.68) 29%, rgba(0,0,0,0.38) 54%, rgba(0,0,0,0.22) 70%, rgba(0,0,0,0.58) 100%),
    url('../images/hero-flyer.png') 68% center / cover no-repeat;
}
.hero-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 212, 106, 0.22), transparent 18%),
    linear-gradient(180deg, rgba(255, 196, 70, 0.06), transparent 28%);
}

.hero-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 620px;
}
.hero-copy {
  padding: 46px 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  background:
    radial-gradient(ellipse 78% 62% at 30% 50%, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 38%, rgba(0, 0, 0, 0.25) 68%, rgba(0, 0, 0, 0.05) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18));
}
.hero-copy h1 { max-width: 720px; margin-top: 10px; }
.hero-sub {
  margin-top: 22px;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.96);
  max-width: 520px;
  font-weight: 500;
  line-height: 1.45;
}

.hero-metrics {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.metric { display: flex; align-items: center; gap: 10px; }
.metric-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(212, 160, 23, 0.28);
  background: rgba(212, 160, 23, 0.08);
  font-size: 17px;
  flex-shrink: 0;
}
.metric strong { display: block; font-size: 1.15rem; line-height: 1; }
.metric span { display: block; font-size: 0.76rem; color: rgba(255, 255, 255, 0.64); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

.hero-chips {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.hero-chip {
  min-height: 48px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.86);
  transition: 0.22s ease;
}
.hero-chip:hover {
  border-color: rgba(212, 160, 23, 0.34);
  color: var(--gold-2);
  transform: translateY(-2px);
  background: rgba(212, 160, 23, 0.06);
}

.hero-visual {
  position: relative;
  min-height: 100%;
}
.hero-badge {
  position: absolute;
  top: 34px;
  right: 30px;
  max-width: 280px;
  padding: 18px 20px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255, 228, 149, 0.98), rgba(212, 160, 23, 0.96));
  color: #181103;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-stack {
  position: absolute;
  right: 30px;
  bottom: 30px;
  max-width: 360px;
  display: grid;
  gap: 12px;
  z-index: 2;
}
.stack-card {
  padding: 16px 18px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.92), rgba(9, 9, 12, 0.84));
  border: 1px solid rgba(212, 160, 23, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.stack-card h4 { margin: 0; font-size: 0.88rem; color: var(--gold-2); letter-spacing: 0.05em; }
.stack-card p { margin: 6px 0 0; font-size: 0.82rem; color: var(--muted); line-height: 1.4; }

.hero-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.44) 44%, rgba(212,160,23,0.12) 100%);
}
.values-strip, .ready-strip {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.values-strip {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  justify-content: space-around;
}
.value-pill { display: flex; align-items: center; gap: 12px; min-width: 145px; }
.value-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  font-size: 19px;
  color: var(--gold);
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.18);
  flex-shrink: 0;
}
.value-pill strong { display: block; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.88rem; }
.value-pill span { display: block; margin-top: 2px; font-size: 0.72rem; color: rgba(255, 255, 255, 0.62); }

.ready-strip { justify-content: space-between; }
.ready-strip h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  line-height: 1.1;
}

/* --- States strip -------------------------------------------------------- */
.states {
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  background: linear-gradient(180deg, #0d0d10, #08080b);
}
.states-grid { display: grid; grid-template-columns: 1.15fr repeat(4, 1fr); }
.state {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
}
.state:first-child { border-left: 0; justify-content: flex-start; padding-left: 6px; color: var(--gold-2); }

/* --- Sections ------------------------------------------------------------ */
section { padding: 78px 0; border-bottom: 1px solid var(--line-2); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.section-head-copy { max-width: 680px; }
.section-head-copy p { color: var(--muted); margin-top: 14px; font-size: 1.02rem; }

/* --- Cards --------------------------------------------------------------- */
.panel, .feature-card, .service-card, .project-card, .trade-card, .difference-copy,
.estimate-shell, .services-intro, .projects-intro, .process-card, .client-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-lg);
}

/* --- Difference section -------------------------------------------------- */
.difference-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 22px; }
.difference-copy { padding: 34px 28px; }
.difference-copy p { color: var(--muted); font-size: 1rem; margin-top: 16px; }
.difference-copy .mini-btn { margin-top: 24px; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { padding: 24px 20px; min-height: 200px; }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--gold);
  background: rgba(212, 160, 23, 0.10);
  border: 1px solid rgba(212, 160, 23, 0.16);
  margin-bottom: 14px;
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.5; }

/* --- Services section ---------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.25s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 160, 23, 0.28);
  box-shadow: var(--shadow-gold);
}
.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.5));
}
.service-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 10px;
  border-radius: 999px;
  border: 1px solid rgba(212, 160, 23, 0.18);
  background: rgba(212, 160, 23, 0.08);
  color: var(--gold-2);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
}
.service-body h3 { margin-bottom: 8px; font-size: 1.15rem; }
.service-body p { color: var(--muted); font-size: 0.9rem; line-height: 1.5; flex: 1; }
.service-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }

/* --- Estimator (Instant Quote) ------------------------------------------- */
.estimate-shell { padding: 40px 32px; }
.estimate-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}
.estimate-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.estimate-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  padding: 16px;
}
.estimate-box label {
  display: block;
  color: var(--gold-2);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  font-weight: 800;
}
.estimate-box input,
.estimate-box select {
  width: 100%;
  background: #0f1014;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 0.94rem;
  outline: none;
  transition: 0.2s;
}
.estimate-box input:focus,
.estimate-box select:focus {
  border-color: rgba(212, 160, 23, 0.5);
  background: #141519;
}

.estimate-results { display: grid; gap: 12px; }
.tier-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  padding: 18px 20px;
  position: relative;
  transition: 0.22s;
  cursor: pointer;
}
.tier-card.selected {
  border-color: rgba(212, 160, 23, 0.48);
  background: linear-gradient(180deg, rgba(212, 160, 23, 0.10), rgba(212, 160, 23, 0.04));
  box-shadow: var(--shadow-gold);
}
.tier-card:hover { border-color: rgba(212, 160, 23, 0.3); }
.tier-label {
  color: var(--gold-2);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}
.tier-price {
  display: block;
  font-size: 1.7rem;
  color: #fff;
  line-height: 1;
  margin: 8px 0 6px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.tier-note { color: var(--muted); font-size: 0.86rem; line-height: 1.4; }
.tier-radio {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  transition: 0.2s;
}
.tier-card.selected .tier-radio {
  border-color: var(--gold);
  background: radial-gradient(circle, var(--gold) 40%, transparent 45%);
}

.estimate-disclaimer {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.estimate-cta-row {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* --- Process (How It Works) --------------------------------------------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-card {
  padding: 28px 22px;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.process-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.process-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.process-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.5; flex: 1; }

/* --- Clients (Homeowners / PM / Facility) ------------------------------- */
.clients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.client-card {
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  transition: 0.25s ease;
}
.client-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(212, 160, 23, 0.1), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.client-card:hover::before { opacity: 1; }
.client-card:hover { border-color: rgba(212, 160, 23, 0.28); }
.client-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  font-size: 24px;
  color: var(--gold);
  background: rgba(212, 160, 23, 0.10);
  border: 1px solid rgba(212, 160, 23, 0.16);
  margin-bottom: 20px;
}
.client-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.client-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.5; flex: 1; }
.client-card .client-actions { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; }

/* --- Projects ------------------------------------------------------------ */
.projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.project-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.25s;
}
.project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 160, 23, 0.28);
}
.project-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.project-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55));
}
.project-body { padding: 20px; }
.project-body h3 { margin-bottom: 8px; font-size: 1.1rem; }
.project-body p { color: var(--muted); font-size: 0.9rem; line-height: 1.5; }

.featured-project {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  min-height: 400px;
}
.featured-image {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}
.featured-copy {
  padding: 44px 36px;
  background: linear-gradient(180deg, rgba(212, 160, 23, 0.06), rgba(212, 160, 23, 0.01));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-copy h3 { font-size: 2rem; margin-bottom: 16px; letter-spacing: -0.03em; }
.featured-copy p { color: var(--muted); font-size: 1rem; margin-bottom: 22px; line-height: 1.55; }

/* --- CTA Banner ---------------------------------------------------------- */
.cta-section { padding-bottom: 92px; border-bottom: 0; }
.cta-shell {
  overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid rgba(212, 160, 23, 0.14);
  box-shadow: var(--shadow);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.54) 42%, rgba(212, 160, 23, 0.12) 100%),
    url('../images/cta-banner.png') center center / cover no-repeat;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: center;
  padding: 52px 48px;
}
.cta-shell h2 { font-size: clamp(2rem, 3.8vw, 3.4rem); letter-spacing: -0.05em; }
.cta-shell p { color: rgba(255, 255, 255, 0.88); margin-top: 14px; font-size: 1rem; max-width: 420px; }
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* --- Forms --------------------------------------------------------------- */
form[data-lead-form] {
  display: grid;
  gap: 14px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-2);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: #0f1014;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 0.94rem;
  outline: none;
  transition: 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(212, 160, 23, 0.5);
  background: #141519;
}
.form-row textarea { resize: vertical; min-height: 120px; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* --- Footer -------------------------------------------------------------- */
footer {
  padding: 64px 0 48px;
  border-top: 1px solid var(--line-2);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 0.8fr);
  gap: 36px;
}
.footer-brand img { width: 200px; max-width: 100%; margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; max-width: 360px; }
.footer-brand .footer-actions { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: #fff;
}
.footer-col a, .footer-col p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-2); }

.footer-legal {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
}

/* --- Page Hero (internal pages) ----------------------------------------- */
.page-hero {
  padding: 70px 0 40px;
  border-bottom: 1px solid var(--line-2);
}
.page-hero .kicker { margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); margin-bottom: 18px; }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 720px; line-height: 1.55; }

/* --- Toast --------------------------------------------------------------- */
#bcToast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 14px 18px;
  background: #101014;
  border: 1px solid var(--gold);
  border-radius: var(--r-md);
  color: #fff;
  z-index: 10000;
  box-shadow: var(--shadow);
  max-width: 90vw;
  text-align: center;
  font-weight: 700;
  display: none;
}

/* --- Responsive - Desktop Medium (tablet landscape) -------------------- */
@media (max-width: 1220px) {
  .hero-top,
  .hero-bottom,
  .states-grid,
  .difference-grid,
  .services-grid,
  .projects-grid,
  .cta-shell,
  .footer-grid,
  .estimate-grid,
  .featured-project {
    grid-template-columns: 1fr;
  }
  .services-grid, .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: 1fr; }
  .hero-chips { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .values-strip {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .hero-stack {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: 24px 24px 24px auto;
    width: calc(100% - 48px);
  }
  .state:first-child { justify-content: center; padding-left: 0; }
  .cta-actions { justify-content: flex-start; }
}

/* --- Responsive - Tablet portrait -------------------------------------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-actions .btn-outline { display: none; }
  .nav-toggle { display: block; }

  .hero-shell { min-height: auto; border-radius: var(--r-lg); }
  .hero-top { min-height: auto; }
  .hero-copy { padding: 32px 22px 26px; }
  .hero-visual { min-height: 320px; }
  .hero-badge {
    top: 18px;
    right: 18px;
    max-width: 200px;
    font-size: 0.86rem;
    padding: 12px 14px;
  }

  .services-grid,
  .projects-grid,
  .features-grid,
  .process-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .estimate-form { grid-template-columns: 1fr; }
  .hero-chips { grid-template-columns: repeat(2, 1fr); }

  .hero-actions .btn,
  .hero-actions .btn-outline { flex: 1 1 100%; }

  .cta-shell { padding: 32px 22px; }
  .cta-actions { justify-content: flex-start; }

  section { padding: 56px 0; }

  .page-hero { padding: 48px 0 28px; }
}

/* --- Responsive - Mobile phone ----------------------------------------- */
@media (max-width: 620px) {
  :root { --nav-h: var(--nav-h-mob); }
  .logo img { width: 138px; }
  .nav-inner { min-height: var(--nav-h-mob); gap: 10px; }
  .nav-actions .btn { min-height: 42px; padding: 0 14px; font-size: 0.74rem; }
  .container { width: min(var(--max), calc(100% - 16px)); }
  
  .hero { padding: 12px 0 0; }
  .hero-shell { border-radius: var(--r-md); }
  .hero-copy { padding: 22px 16px; }
  h1 { font-size: clamp(2.2rem, 11vw, 3.4rem); letter-spacing: -0.045em; }
  .hero-sub { font-size: 1rem; max-width: 100%; }
  .hero-metrics { gap: 14px; }
  .metric { min-width: calc(50% - 7px); }
  
  .hero-actions .btn,
  .hero-actions .btn-outline,
  .phone-chip { width: 100%; }
  .hero-chips { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero-chip { min-height: 44px; font-size: 0.72rem; }

  .values-strip, .ready-strip { padding: 18px 16px; }
  .value-pill { min-width: 100%; }
  .state {
    min-height: 58px;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    text-align: center;
  }
  
  h2 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  section { padding: 44px 0; }

  .service-image, .project-image { height: 170px; }
  .difference-copy,
  .estimate-shell,
  .service-body,
  .project-body { padding: 22px 18px; }

  .cta-shell { padding: 26px 18px; }
  .cta-actions { width: 100%; }
  .cta-actions .btn,
  .cta-actions .btn-outline { flex: 1 1 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-legal { justify-content: center; text-align: center; }

  .page-hero { padding: 32px 0 20px; }

  /* Hide AEGIS bubble lower on mobile so it doesn't cover CTA */
  body { padding-bottom: 20px; }
}

/* --- Reduce motion respects user preference ----------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
