/* ==========================================================
   SVOR STRIPING — Shared Stylesheet
   Industrial editorial aesthetic. Mobile-first.
   ========================================================== */

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  color: #1a1a1a;
  background: #f4f1ec;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:root {
  --asphalt: #14171a;
  --asphalt-2: #1f2429;
  --bone: #f4f1ec;
  --bone-2: #ebe6dd;
  --paint: #f5e6c8;
  --safety: #ffb800;
  --line: #2a2f35;
  --muted: #6b6f76;
}

/* ---------- TYPOGRAPHY ---------- */
.display {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
}
.serif {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
}

/* ---------- LAYOUT HELPERS ---------- */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

/* ---------- TOP UTILITY BAR ---------- */
.topbar {
  background: var(--asphalt);
  color: var(--bone);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 8px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar .left { opacity: 0.7; text-transform: uppercase; }
.topbar a { font-weight: 600; }
.topbar a:hover { color: var(--safety); }
@media (max-width: 640px) { .topbar .left { display: none; } .topbar .wrap { justify-content: center; } }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bone);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(8px);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img.logo-img {
  height: 80px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}
@media (max-width: 640px) {
  .logo img.logo-img { height: 60px; }
}
.foot-brand .logo img.logo-img {
  height: 90px;
  mix-blend-mode: screen;
  opacity: 0.95;
}
.logo-mark {
  width: 42px; height: 42px;
  background: var(--asphalt);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  flex-shrink: 0;
}
.logo-mark::before, .logo-mark::after {
  content: "";
  position: absolute;
  background: var(--safety);
  width: 4px; height: 80%;
  top: 10%;
}
.logo-mark::before { left: 12px; }
.logo-mark::after  { left: 24px; }
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--asphalt);
}
.logo-text small {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: color .2s;
  color: var(--asphalt);
}
.nav-links a.active { color: var(--safety); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--safety);
  transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--asphalt);
  color: var(--bone);
  padding: 14px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-cta:hover { background: var(--safety); color: var(--asphalt); }
.nav-cta .arrow { transition: transform .25s; }
.nav-cta:hover .arrow { transform: translateX(4px); }

.hamburger { display: none; width: 32px; height: 24px; flex-direction: column; justify-content: space-between; padding: 4px 0; }
.hamburger span { width: 100%; height: 2px; background: var(--asphalt); }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bone);
    padding: 30px 32px 100px;
    gap: 24px;
    border-bottom: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,.2);
  }
  .mobile-open .nav-cta {
    display: inline-flex;
    position: absolute;
    top: calc(100% + 240px);
    left: 32px; right: 32px;
    justify-content: center;
    z-index: 101;
  }
}

/* ---------- PAGE HEADER (interior pages) ---------- */
.page-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.005em;
  margin-top: 24px;
}
.page-hero h1 em {
  color: var(--safety);
}
.page-hero p {
  font-size: 1.15rem;
  color: var(--asphalt-2);
  max-width: 600px;
  margin-top: 24px;
  line-height: 1.6;
}

.crumbs {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.crumbs a:hover { color: var(--safety); }
.crumbs span { opacity: 0.4; }

/* ---------- BUTTONS ---------- */
.btn-primary {
  background: var(--safety);
  color: var(--asphalt);
  padding: 20px 32px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all .25s;
  border: 2px solid var(--safety);
}
.btn-primary:hover { background: var(--asphalt); color: var(--safety); }
.btn-ghost {
  color: var(--asphalt);
  padding: 20px 24px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-bottom: 2px solid var(--asphalt);
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-ghost:hover { color: var(--safety); border-color: var(--safety); }
.btn-ghost-light {
  color: var(--bone);
  border-bottom-color: var(--bone);
}
.btn-ghost-light:hover { color: var(--safety); border-color: var(--safety); }

/* ---------- SECTIONS ---------- */
section { padding: 120px 0; }
@media (max-width: 700px) { section { padding: 70px 0; } }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
}
.section-head h2 {
  font-family: 'Bebas Neue';
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin-top: 16px;
}
.section-head h2 em {
  color: var(--safety);
}
.section-head p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.6;
  margin-top: 20px;
}

/* ---------- STRIPE DIVIDER ---------- */
.stripe-divider {
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--safety) 0 24px, transparent 24px 44px);
}

/* ---------- FOOTER ---------- */
footer {
  background: #0a0c0e;
  color: var(--bone);
  padding: 80px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 500px) { .foot-grid { grid-template-columns: 1fr; } }

.foot-brand p {
  color: rgba(255,255,255,.5);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.6;
}
.foot-brand .logo-text { color: var(--bone); }
.foot-brand .logo-text small { color: rgba(255,255,255,.4); }
.foot-col h5 {
  font-family: 'Bebas Neue';
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--safety);
  margin-bottom: 20px;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 12px; }
.foot-col a, .foot-col li {
  color: rgba(255,255,255,.7);
  font-size: 0.92rem;
  transition: color .2s;
}
.foot-col a:hover { color: var(--safety); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
}
.foot-bottom .marker {
  font-family: 'Bebas Neue';
  letter-spacing: 0.3em;
  color: var(--safety);
}

/* ---------- FLOATING CALL ---------- */
.floating-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--safety);
  color: var(--asphalt);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  z-index: 99;
  transition: transform .3s;
}
.floating-call:hover { transform: scale(1.1); }
@media (max-width: 900px) { .floating-call { display: flex; } }

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HOME PAGE COMPONENTS
   ============================================================ */

.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; align-items: start; } .hero { padding: 60px 0 40px; } }

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: var(--asphalt);
  margin: 32px 0 36px;
}
.hero h1 .accent {
  color: var(--safety);
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--asphalt-2);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.55;
}
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-visual {
  position: relative;
  min-height: 540px;
  background: var(--asphalt);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.35);
}
@media (max-width: 900px) {
  .hero-visual { min-height: 0; aspect-ratio: 4/3; }
}
.hero-visual img.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: photoFadeIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: scale(1.04);
}
@keyframes photoFadeIn { to { opacity: 1; transform: scale(1); } }
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,23,26,0) 50%, rgba(20,23,26,0.45) 100%);
  pointer-events: none;
}

.hero-visual .badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--safety);
  color: var(--asphalt);
  padding: 8px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-visual .corner-mark {
  position: absolute;
  bottom: 24px; right: 24px;
  color: var(--paint);
  font-family: 'Bebas Neue';
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  opacity: 0.6;
}

.trust {
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 28px 0;
  margin-top: 80px;
}
.trust .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--asphalt-2);
}
.trust-item .dot { width: 6px; height: 6px; background: var(--safety); border-radius: 50%; flex-shrink: 0; }
@media (max-width: 700px) {
  .trust .wrap { justify-content: center; }
  .trust { margin-top: 40px; }
}

/* services on home */
.services { background: var(--asphalt); color: var(--bone); }
.services .eyebrow, .services .section-head p { color: rgba(255,255,255,.55); }
.services .section-head h2 { color: var(--bone); }
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 800px) { .service-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--asphalt);
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,.1);
  margin: -1px;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}
.service-card:hover { background: var(--asphalt-2); }
.service-card .num {
  font-family: 'Bebas Neue';
  font-size: 0.95rem;
  color: var(--safety);
  letter-spacing: 0.3em;
  margin-bottom: 32px;
}
.service-card h3 {
  font-family: 'Bebas Neue';
  font-size: 2.6rem;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  line-height: 1;
}
.service-card p {
  color: rgba(255,255,255,.6);
  margin-bottom: 28px;
  line-height: 1.6;
}
.service-card ul {
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
}
.service-card li {
  padding: 10px 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-card li::before {
  content: "→";
  color: var(--safety);
  font-weight: 700;
}

/* method/process */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 800px) { .method-grid { grid-template-columns: 1fr; } }
.method-card {
  padding: 40px 32px;
  background: var(--bone-2);
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}
.method-card:hover { transform: translateY(-4px); }
.method-card .step {
  font-family: 'Bebas Neue';
  font-size: 5rem;
  line-height: 1;
  color: var(--safety);
  margin-bottom: 12px;
}
.method-card h4 {
  font-family: 'Bebas Neue';
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.method-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* about / split */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }

.about-visual {
  background: var(--asphalt);
  aspect-ratio: 1/1.1;
  position: relative;
  overflow: hidden;
}
.about-visual .lot-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--paint), var(--paint)),
    linear-gradient(var(--paint), var(--paint)),
    linear-gradient(var(--paint), var(--paint));
  background-size: 4px 60%, 4px 60%, 4px 60%;
  background-position: 30% 70%, 50% 70%, 70% 70%;
  background-repeat: no-repeat;
  opacity: 0.85;
}
.about-visual .marker {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--safety);
  font-family: 'Bebas Neue';
  font-size: 4rem;
  letter-spacing: 0.05em;
}
.about-visual .small-text {
  position: absolute;
  top: 30px; left: 30px;
  color: var(--paint);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  opacity: 0.6;
}
.about-text h2 {
  font-family: 'Bebas Neue';
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  margin: 20px 0 28px;
}
.about-text h2 em {
  color: var(--safety);
}
.about-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--asphalt-2);
  margin-bottom: 20px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,.1);
}
.stat .num {
  font-family: 'Bebas Neue';
  font-size: 2.4rem;
  color: var(--asphalt);
  line-height: 1;
}
.stat .label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* testimonial */
.quote {
  background: var(--paint);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.quote::before {
  display: none;
}
.quote blockquote {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--asphalt);
  position: relative;
}
.quote cite {
  display: block;
  text-align: center;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--asphalt-2);
  font-weight: 600;
}
.quote cite span { display: block; color: var(--muted); font-weight: 400; margin-top: 6px; letter-spacing: 0.1em; }

/* service area */
.area { background: var(--bone-2); }
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.area-list .city {
  background: var(--bone);
  padding: 14px 22px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1px solid rgba(0,0,0,.08);
  transition: all .25s;
}
.area-list .city:hover { background: var(--asphalt); color: var(--bone); }

/* Three-state service area layout */
.area-states {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 50px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.08);
}
@media (max-width: 800px) {
  .area-states { grid-template-columns: 1fr; gap: 1px; }
}
.area-state {
  background: var(--bone);
  padding: 50px 30px;
  text-align: center;
}
.area-state-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: 0.08em;
  color: var(--asphalt);
  padding-bottom: 16px;
  display: inline-block;
  border-bottom: 3px solid var(--safety);
}

/* contact / cta */
.contact { background: var(--asphalt); color: var(--bone); position: relative; overflow: hidden; }
.contact::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%) rotate(15deg);
  width: 500px;
  height: 800px;
  background: repeating-linear-gradient(90deg, var(--safety) 0 12px, transparent 12px 60px);
  opacity: 0.06;
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 50px; } }

.contact-info h2 {
  font-family: 'Bebas Neue';
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  margin: 20px 0 30px;
}
.contact-info h2 em {
  color: var(--safety);
}
.contact-info > p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 50px;
  max-width: 440px;
  line-height: 1.6;
}
.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.detail-block .label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--safety);
  margin-bottom: 8px;
  font-weight: 600;
}
.detail-block .value {
  font-family: 'Bebas Neue';
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.detail-block .value a:hover { color: var(--safety); }
.detail-block .sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
}

/* form */
.form-card {
  background: #ffffff;
  color: var(--asphalt);
  padding: 50px 44px;
  position: relative;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,.08);
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 6px;
  background: var(--safety);
}
.form-card h3 {
  font-family: 'Bebas Neue';
  font-size: 2rem;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-card .form-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.field { position: relative; }
.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--asphalt);
  margin-bottom: 8px;
  font-weight: 700;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 2px solid rgba(0,0,0,.35);
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  color: var(--asphalt);
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--safety);
}
.field textarea { resize: vertical; min-height: 90px; }

/* Show placeholder option for service dropdown in muted gray */
.field select:has(option[disabled][selected]:checked),
.field select:invalid {
  color: rgba(0,0,0,.45);
}
.field select option {
  color: var(--asphalt);
}
.field select option[disabled] {
  color: rgba(0,0,0,.45);
}
.form-submit {
  background: var(--asphalt);
  color: var(--bone);
  padding: 20px 32px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
  width: 100%;
  margin-top: 28px;
  transition: all .25s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.form-submit:hover { background: var(--safety); color: var(--asphalt); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
/* ============================================================
   ABOUT PAGE — Simplified
   ============================================================ */
.about-simple {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .about-simple {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--asphalt);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.35);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-copy p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--asphalt-2);
  margin-bottom: 22px;
}
.about-copy .eyebrow {
  margin-bottom: 28px;
}

/* ============================================================
   SERVICES PAGE — Real photo layout
   ============================================================ */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 100px;
}
.service-row .service-text { grid-column: 1; grid-row: 1; padding-top: 8px; }
.service-row .service-gallery { grid-column: 2; grid-row: 1; }
.service-row.reverse .service-text { grid-column: 2; grid-row: 1; padding-top: 8px; }
.service-row.reverse .service-gallery { grid-column: 1; grid-row: 1; }
@media (max-width: 900px) {
  .service-row, .service-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  .service-row .service-text,
  .service-row .service-gallery,
  .service-row.reverse .service-text,
  .service-row.reverse .service-gallery {
    grid-column: 1;
    grid-row: auto;
  }
}

.service-text h3 {
  font-family: 'Bebas Neue';
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  margin: 16px 0 24px;
}
.service-text h3 em {
  color: var(--safety);
}
.service-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--asphalt-2);
  margin-bottom: 18px;
}

.service-gallery {
  display: grid;
  gap: 10px;
}
.service-gallery-2 {
  grid-template-columns: 1fr;
  gap: 14px;
}
.service-gallery-3 {
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (max-width: 600px) {
  .service-gallery-2,
  .service-gallery-3 {
    grid-template-columns: 1fr;
  }
}

.service-photo {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--asphalt);
  transition: transform .4s;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.2);
}
.service-photo:hover { transform: translateY(-6px); }
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-photo:hover img { transform: scale(1.06); }

/* OLD SERVICE PAGE STYLES (kept for compat) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; margin-bottom: 60px; }
}
.service-visual {
  background: var(--asphalt);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.service-visual .vstripes {
  position: absolute;
  inset: 0;
  display: grid;
  padding: 50px 60px;
  align-items: end;
  gap: 24px;
}
.service-visual.v1 .vstripes { grid-template-columns: repeat(6, 1fr); }
.service-visual.v2 .vstripes { grid-template-columns: repeat(4, 1fr); padding: 30px 40px; }
.service-visual .vstripe {
  background: var(--paint);
  height: 75%;
  opacity: 0.9;
}
.service-visual.v2 .vstripe:nth-child(odd) { height: 90%; }
.service-visual .corner-tag {
  position: absolute;
  top: 24px; left: 24px;
  color: var(--safety);
  font-family: 'Bebas Neue';
  font-size: 0.85rem;
  letter-spacing: 0.25em;
}
.service-detail h3 {
  font-family: 'Bebas Neue';
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  margin: 16px 0 24px;
}
.service-detail h3 em {
  color: var(--safety);
}
.service-detail p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--asphalt-2);
  margin-bottom: 24px;
}
.service-features {
  list-style: none;
  margin-top: 28px;
  border-top: 1px solid rgba(0,0,0,.1);
  padding-top: 24px;
}
.service-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.98rem;
}
.service-features li::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--safety);
  flex-shrink: 0;
}

/* industries strip */
.industries {
  background: var(--asphalt);
  color: var(--bone);
  padding: 80px 0;
}
.industries h3 {
  font-family: 'Bebas Neue';
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 0.02em;
}
.industries h3 em {
  color: var(--safety);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 800px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
.industry {
  background: var(--asphalt);
  padding: 32px 20px;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .3s;
}
.industry:hover { background: var(--asphalt-2); color: var(--safety); }

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.project-feature {
  margin-bottom: 100px;
}
.project-feature:last-child { margin-bottom: 0; }

.project-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 40px;
}
@media (max-width: 800px) { .project-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; } }

.project-header h3 {
  font-family: 'Bebas Neue';
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 0.95;
  margin-top: 12px;
}
.project-header h3 em {
  color: var(--safety);
}
.project-header p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 480px;
}

.project-meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,.1);
}
.project-meta div .label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.project-meta div .val {
  font-family: 'Bebas Neue';
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.project-grid.project-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.project-grid.project-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 800px) {
  .project-grid, .project-grid.project-grid-3, .project-grid.project-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .project-grid, .project-grid.project-grid-3, .project-grid.project-grid-4 { grid-template-columns: 1fr; }
}

.project-tile {
  aspect-ratio: 4/3;
  background: var(--asphalt);
  position: relative;
  overflow: hidden;
  transition: transform .4s;
}
.project-tile:hover { transform: scale(0.98); }
.project-tile img {
  transition: transform .6s ease, filter .4s ease;
}
.project-tile:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}
.project-tile .lot-stripes {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 30px 24px;
  gap: 12px;
  align-items: end;
}
.project-tile .lot-stripes div {
  background: var(--paint);
  height: 80%;
  opacity: 0.85;
}
.project-tile.style-2 .lot-stripes { grid-template-columns: repeat(5, 1fr); transform: rotate(-3deg) scale(1.1); }
.project-tile.style-3 .lot-stripes { grid-template-columns: repeat(9, 1fr); padding: 40px 16px; }
.project-tile .label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--bone);
  font-family: 'Bebas Neue';
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  background: rgba(20,23,26,.85);
  padding: 6px 12px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
@media (max-width: 900px) { .about-hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border: 1px solid rgba(0,0,0,.08);
}
@media (max-width: 800px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--bone-2);
  padding: 50px 40px;
  border: 1px solid rgba(0,0,0,.06);
  margin: -1px;
  transition: background .3s;
}
.value-card:hover { background: var(--bone); }
.value-card .marker {
  width: 50px;
  height: 4px;
  background: var(--safety);
  margin-bottom: 24px;
}
.value-card h4 {
  font-family: 'Bebas Neue';
  font-size: 2rem;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.value-card p {
  color: var(--asphalt-2);
  line-height: 1.6;
  font-size: 0.98rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-page-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  /* On mobile, show the form first */
  .contact-page-grid .form-card { order: 1; }
  .contact-page-grid .contact-info-block { order: 2; }
}

.contact-info-block .detail-stack {
  margin-top: 50px;
  display: grid;
  gap: 32px;
}
.contact-info-block .row {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.contact-info-block .row:last-child { border-bottom: none; }
.contact-info-block .label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--safety);
  margin-bottom: 8px;
  font-weight: 700;
}
.contact-info-block .val {
  font-family: 'Bebas Neue';
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  color: var(--asphalt);
}
.contact-info-block .val a:hover { color: var(--safety); }
.contact-info-block .val.email {
  font-family: 'Inter Tight';
  font-size: 1.15rem;
  letter-spacing: 0;
  font-weight: 500;
}
.contact-info-block .sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 4px;
}

.map-wrap {
  margin-top: 60px;
  aspect-ratio: 16/9;
  background: var(--asphalt);
  position: relative;
  overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.05); }
