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

:root {
  --navy: #111111;
  --navy-mid: #1c1c1c;
  --orange: #c9a84c;
  --orange-light: #dfc070;
  --cream: #f7f5f0;
  --cream-dark: #e8e4da;
  --gray-text: #6b7280;
  --white: #ffffff;
  --section-pad: 100px 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: var(--navy);
  border-bottom: 3px solid var(--orange);
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  line-height: 1.1;
}
.nav-logo span { color: var(--orange); }
.nav-logo small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 1px;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  padding: 10px 24px;
  border: 2px solid var(--orange);
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: transparent; color: var(--orange); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--navy);
  border-bottom: 3px solid var(--orange);
  padding: 8px 32px 20px;
  z-index: 99;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:hover { color: var(--orange); }

/* HERO */
.hero {
  margin-top: 72px;
  background: var(--navy);
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.02) 39px, rgba(255,255,255,0.02) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.02) 39px, rgba(255,255,255,0.02) 40px);
  pointer-events: none;
}
.hero-content {
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--orange);
}
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
}
.hero-headline .accent { color: var(--orange); display: block; }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  padding: 16px 36px;
  border: 2px solid var(--orange);
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover { background: transparent; color: var(--orange); }
.btn-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 16px 36px;
  border: 2px solid rgba(255,255,255,0.25);
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--white); color: var(--white); }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 42px;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  overflow: hidden;
}
.hero-visual-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-mid) 0%, #0a1520 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge {
  position: absolute;
  bottom: 48px;
  left: 48px;
  background: var(--orange);
  padding: 20px 28px;
  z-index: 3;
}
.hero-badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}
.hero-badge-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

/* TRUST BAR */
.trust-bar {
  background: var(--orange);
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.trust-icon { width: 28px; height: 28px; flex-shrink: 0; opacity: 0.9; }
.trust-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.3); }

/* SECTION STYLES */
section { padding: var(--section-pad); }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 80px; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 24px;
}
.section-lead { font-size: 17px; color: var(--gray-text); max-width: 560px; line-height: 1.7; }

/* SERVICES */
#services { background: var(--white); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream-dark);
}
.service-card {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--orange);
  transition: width 0.3s ease;
}
.service-card:hover::after { width: 100%; }
.service-card:hover { background: #fafafa; }
.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 60px;
  line-height: 1;
  color: var(--cream-dark);
  margin-bottom: 24px;
  transition: color 0.25s;
}
.service-card:hover .service-num { color: rgba(224,92,26,0.15); }
.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-desc { font-size: 15px; color: var(--gray-text); line-height: 1.7; margin-bottom: 28px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--navy);
  padding: 4px 10px;
  border: 1px solid var(--cream-dark);
}

/* BUILDERS WE'VE WORKED WITH */
#builders { background: var(--cream); padding: 80px 0; }
.builders-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-text);
  text-align: center;
  margin-bottom: 40px;
}
.builders-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.builder-pill {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  padding: 14px 28px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.builder-pill:hover { border-color: var(--orange); color: var(--orange); }
.service-area-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 48px;
}
.service-area-list {
  font-size: 15px;
  line-height: 1.9;
  color: var(--gray-text);
  margin-top: 8px;
}

/* WHY US */
#why { background: var(--navy); }
#why .section-title { color: var(--white); }
#why .section-lead { color: rgba(255,255,255,0.6); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 72px;
  align-items: start;
}
.why-items { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.why-item:first-child { padding-top: 0; }
.why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--orange);
  flex-shrink: 0;
  width: 36px;
  padding-top: 2px;
}
.why-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.why-body { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.why-callout {
  background: var(--orange);
  padding: 56px 48px;
  position: sticky;
  top: 100px;
}
.why-callout-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}
.why-callout-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 34px;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
}
.why-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.why-list li::before {
  content: '✓';
  font-weight: 900;
  font-size: 13px;
  color: var(--white);
  background: rgba(255,255,255,0.2);
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

/* TEAM */
#team { background: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.team-card {
  text-align: center;
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
  margin: 0 auto 16px;
  border: 3px solid var(--cream-dark);
}
.team-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role { font-size: 13px; color: var(--gray-text); }

/* PROCESS */
#process { background: var(--cream); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  position: relative;
}
.process-step { padding: 0 32px; position: relative; z-index: 1; }
.step-num-wrap {
  width: 72px; height: 72px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
}
.step-num-wrap::after {
  content: '';
  position: absolute;
  top: 4px; left: 4px; right: -4px; bottom: -4px;
  border: 2px solid var(--orange);
  z-index: -1;
}
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--white);
}
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.step-desc { font-size: 14px; color: var(--gray-text); line-height: 1.7; }

/* CTA */
#contact { background: var(--navy); padding: 120px 0; }
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-text .section-title { color: var(--white); margin-bottom: 20px; }
.cta-text .section-lead { color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.cta-form { background: var(--white); padding: 48px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  background: var(--cream);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.form-submit:hover { background: transparent; color: var(--orange); }

/* FOOTER */
footer {
  background: #000000;
  padding: 48px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
  text-decoration: none;
  line-height: 1.1;
}
.footer-logo span { color: var(--orange); }
.footer-logo small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 32px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp 0.6s ease both; }
.hero-headline { animation: fadeUp 0.7s 0.1s ease both; }
.hero-sub { animation: fadeUp 0.7s 0.2s ease both; }
.hero-actions { animation: fadeUp 0.7s 0.3s ease both; }
.hero-stats { animation: fadeUp 0.7s 0.4s ease both; }

/* PHOTO STRIP */
#photo-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px;
  gap: 4px;
  background: #000;
}
.photo-strip-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px;
  gap: 4px;
  background: #000;
  margin-top: 4px;
}
/* FINISH GALLERY */
.finish-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .section-inner { padding: 0 32px; }
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 60px 32px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .finish-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .why-callout { position: static; top: auto; }
  .cta-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; padding: 40px 32px; }
  .trust-bar { padding: 20px 32px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  #photo-strip { grid-template-columns: 1fr; grid-template-rows: 220px 180px 180px; }
  .photo-strip-row2 { grid-template-columns: 1fr; grid-template-rows: 200px 200px; }
}

@media (max-width: 640px) {
  nav { padding: 0 20px; height: 64px; }
  .hero { margin-top: 64px; min-height: calc(100vh - 64px); }
  .mobile-menu { top: 64px; padding: 8px 20px 20px; }
  .section-inner { padding: 0 20px; }
  .hero-content { padding: 48px 20px; }
  section { padding: 64px 0; }
  .process-steps { grid-template-columns: 1fr; }
  .finish-cards-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cta-form { padding: 32px 24px; }
  .why-callout { padding: 40px 28px; }
  .hero-stats { gap: 32px; }
  .trust-bar { padding: 16px 20px; gap: 16px 24px; }
  footer { padding: 40px 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   INTERIOR PAGES (service + service-area landing pages)
   ═══════════════════════════════════════════════════════════════ */

/* BREADCRUMB */
.breadcrumb {
  background: var(--navy-mid);
  padding: 14px 0;
  margin-top: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
}
.breadcrumb-inner a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--orange); }
.breadcrumb-inner span { margin: 0 10px; color: rgba(255,255,255,0.25); }

/* PAGE HERO */
.page-hero {
  background: var(--navy);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.02) 39px, rgba(255,255,255,0.02) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.02) 39px, rgba(255,255,255,0.02) 40px);
  pointer-events: none;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 80px; position: relative; z-index: 1; }
.page-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
h1.page-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 5.5vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 900px;
}
h1.page-h1 .accent { color: var(--orange); }
.page-lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 660px;
  margin-top: 26px;
}
.page-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.btn-primary, .btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 34px;
  border: 2px solid var(--orange);
  transition: background 0.2s, color 0.2s;
}
.btn-primary { background: var(--orange); color: var(--navy); }
.btn-primary:hover { background: transparent; color: var(--orange); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.28); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* CONTENT LAYOUT */
.content-section { padding: 88px 0; background: var(--cream); }
.content-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 64px;
  align-items: start;
}

/* PROSE */
.prose { max-width: 720px; }
.prose > p, .prose > ul, .prose > ol { font-size: 16.5px; line-height: 1.75; color: #3f4451; }
.prose > p + p { margin-top: 18px; }
.prose h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 52px 0 18px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 32px 0 10px;
}
.prose ul, .prose ol { margin: 18px 0 18px 22px; }
.prose li { margin-bottom: 10px; padding-left: 4px; }
.prose li::marker { color: var(--orange); font-weight: 700; }
.prose strong { color: var(--navy); font-weight: 600; }
.prose a { color: #8a7020; text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--navy); }
.prose blockquote {
  border-left: 3px solid var(--orange);
  padding: 4px 0 4px 24px;
  margin: 28px 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--navy);
  font-weight: 500;
}

/* SPEC TABLE */
.spec-table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 15px; }
.spec-table th, .spec-table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--cream-dark); vertical-align: top; }
.spec-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--white);
}
.spec-table td { color: #3f4451; background: rgba(255,255,255,0.55); }
.spec-table td:first-child { font-weight: 600; color: var(--navy); white-space: nowrap; }

/* SIDEBAR */
.sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.side-card { background: var(--white); border-top: 3px solid var(--orange); padding: 28px 26px; }
.side-card.dark { background: var(--navy); border-top-color: var(--orange); }
.side-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}
.side-card.dark .side-card-title { color: var(--white); }
.side-list { list-style: none; }
.side-list li {
  font-size: 14px;
  line-height: 1.5;
  color: #3f4451;
  padding: 9px 0 9px 20px;
  border-bottom: 1px solid var(--cream-dark);
  position: relative;
}
.side-list li:last-child { border-bottom: 0; }
.side-list li::before { content: '›'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.side-list a { color: #3f4451; text-decoration: none; transition: color 0.2s; }
.side-list a:hover { color: #8a7020; }
.side-card.dark p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.side-phone {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--orange);
  text-decoration: none;
  margin-bottom: 4px;
}
.side-phone:hover { color: var(--orange-light); }
.side-note { font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.35); font-family: 'Barlow Condensed', sans-serif; font-weight: 600; }

/* FAQ */
.faq-section { background: var(--white); padding: 88px 0; }
.faq-inner { max-width: 900px; margin: 0 auto; padding: 0 80px; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-item summary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--navy);
  padding: 22px 44px 22px 0;
  cursor: pointer;
  position: relative;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 8px;
  top: 18px;
  font-size: 26px;
  font-weight: 400;
  color: var(--orange);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: #8a7020; }
.faq-answer { font-size: 16px; line-height: 1.75; color: #3f4451; padding: 0 44px 24px 0; }
.faq-answer p + p { margin-top: 14px; }

/* RELATED LINKS */
.related-section { background: var(--cream-dark); padding: 80px 0; }
.related-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(17,17,17,0.08);
}
.related-card {
  background: var(--cream);
  padding: 28px 26px;
  text-decoration: none;
  display: block;
  transition: background 0.2s, transform 0.2s;
}
.related-card:hover { background: var(--white); transform: translateY(-3px); }
.related-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.related-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 19px;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.related-card-desc { font-size: 13.5px; line-height: 1.5; color: var(--gray-text); }

/* INLINE BID FORM */
.bid-section { background: var(--navy); padding: 88px 0; }
.bid-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.bid-copy .section-title { color: var(--white); }
.bid-copy .section-lead { color: rgba(255,255,255,0.55); margin-top: 18px; }
.bid-points { list-style: none; margin-top: 32px; }
.bid-points li {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  padding: 12px 0 12px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.bid-points li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.bid-contact { margin-top: 32px; }
.bid-contact a { color: var(--orange); text-decoration: none; font-weight: 600; }
.bid-contact a:hover { color: var(--orange-light); }

/* SECTION HEADER FOR INTERIOR PAGES */
.interior-head { max-width: 1200px; margin: 0 auto 48px; padding: 0 80px; }

/* RESPONSIVE — INTERIOR PAGES */
@media (max-width: 1024px) {
  .breadcrumb-inner, .page-hero-inner, .content-grid, .faq-inner,
  .related-grid, .bid-inner, .interior-head { padding-left: 32px; padding-right: 32px; }
  .content-grid { grid-template-columns: 1fr; gap: 48px; }
  .sidebar { position: static; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .bid-inner { grid-template-columns: 1fr; gap: 48px; }
  .prose { max-width: none; }
}

@media (max-width: 640px) {
  .breadcrumb { margin-top: 64px; }
  .breadcrumb-inner, .page-hero-inner, .content-grid, .faq-inner,
  .related-grid, .bid-inner, .interior-head { padding-left: 20px; padding-right: 20px; }
  .page-hero { padding: 48px 0 56px; }
  .content-section, .faq-section, .bid-section, .related-section { padding: 56px 0; }
  .related-grid { grid-template-columns: 1fr; }
  .page-actions { gap: 12px; }
  .btn-primary, .btn-ghost { padding: 14px 24px; font-size: 14px; }
  .spec-table th, .spec-table td { padding: 10px 10px; font-size: 14px; }
  .spec-table td:first-child { white-space: normal; }
  .faq-item summary { font-size: 17px; padding-right: 36px; }
}

/* FOOTER COLUMNS */
.footer-cols {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 64px 60px 8px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-col p { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.4); }
.footer-brand-copy { margin-top: 14px; max-width: 300px; }
.footer-areas-inline { font-size: 13px; line-height: 1.9; color: rgba(255,255,255,0.4); }
.footer-areas-inline a { display: inline; padding: 0; }

@media (max-width: 1024px) {
  .footer-cols { grid-template-columns: 1fr 1fr; padding: 48px 32px 8px; gap: 32px; }
}
@media (max-width: 640px) {
  .footer-cols { grid-template-columns: 1fr; padding: 40px 20px 8px; }
}

/* ── SERVICE CARD DETAIL LINKS ─────────────────────────────────── */
.service-more {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
}
.service-more a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.5);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.service-more a:hover,
.service-more a:focus-visible {
  color: var(--orange);
  border-color: var(--orange);
}

/* Linked city names in the service-area strip */
.service-area-list a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.service-area-list a:hover,
.service-area-list a:focus-visible {
  color: var(--orange);
  border-color: var(--orange);
}
