:root {
  --bg: #121212;
  --bg-elevated: #1a1a1a;
  --card: #181818;
  --border-c: #2c2c2c;
  --border-accent: #7a3d12;
  --orange: #f2711c;
  --orange-light: #ff8c3d;
  --text: #f2f2f0;
  --text-dim: #a8a8a4;
  --text-faint: #78786f;
}

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

body {
  font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.icon {
  width: 26px;
  height: 26px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
  margin-bottom: 14px;
  display: block;
}

/* Header */
header {
  position: sticky;
  top: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border-c);
  z-index: 100;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: var(--orange);
  line-height: 1.15;
}
.logo img { height: 34px; width: auto; }
.logo .sub { display: block; font-size: 0.65rem; letter-spacing: 1.5px; color: var(--text-dim); font-weight: 500; }
nav ul {
  display: flex;
  gap: 32px;
  font-weight: 500;
  font-size: 0.9rem;
}
nav a { transition: color 0.2s; color: var(--text-dim); }
nav a:hover, nav a.active { color: var(--orange); }

/* Mobile nav toggle (hidden entirely on desktop, no effect on PC layout) */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.92) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 60px 24px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--orange-light);
  margin-bottom: 14px;
  font-weight: 600;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 18px;
  max-width: 640px;
}
.hero p {
  max-width: 520px;
  font-size: 1.05rem;
  margin-bottom: 28px;
  color: #cfcfcb;
}
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.85; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-outline { border: 1px solid rgba(255,255,255,0.35); color: #fff; }

/* Page hero (interior pages) */
.page-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border-c);
  color: #fff;
  padding: 70px 24px 50px;
  text-align: left;
}
.page-hero .eyebrow { color: var(--orange-light); }
.page-hero h1 { font-size: 2.4rem; margin-bottom: 12px; }
.page-hero p { max-width: 560px; color: var(--text-dim); }

/* Stats/feature row */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 56px 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.feature-row h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
}
.feature-row p { color: var(--text-dim); font-size: 0.9rem; }

.stat-band {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-c);
  border-bottom: 1px solid var(--border-c);
  color: #fff;
  padding: 40px 24px;
  text-align: center;
}
.stat-band .num { font-size: 2.6rem; font-weight: 700; color: var(--orange-light); }
.stat-band .label { color: var(--text-dim); margin-top: 6px; }

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.image-strip img { height: 260px; width: 100%; object-fit: cover; }

/* Section generic */
section.block { padding: 72px 24px; }
.block-inner { max-width: 1140px; margin: 0 auto; }
.section-label {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.section-title { font-size: 2rem; margin-bottom: 20px; color: #fff; max-width: 640px; }
.section-text { color: var(--text-dim); max-width: 640px; margin-bottom: 24px; }
.checklist li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 0.95rem;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.bg-elevated { background: var(--bg-elevated); }
.center { text-align: center; }
.center .section-title, .center .section-text { margin-left: auto; margin-right: auto; }

/* Services grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border-c);
  border-radius: 8px;
  padding: 26px 24px;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--border-accent); }
.card h3 { color: #fff; margin-bottom: 8px; font-size: 1.05rem; }
.card p { color: var(--text-dim); font-size: 0.9rem; }
.card .checklist { margin-top: 16px; }

.link-row { text-align: left; margin-top: 32px; }
.link-row.center { text-align: center; }
.link-row a {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
}

.cta-row { margin-top: 32px; }

/* Portfolio grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.portfolio-item { border-radius: 6px; overflow: hidden; border: 1px solid var(--border-c); }
.portfolio-item img { height: 220px; object-fit: cover; transition: transform 0.3s; }
.portfolio-item:hover img { transform: scale(1.04); }
.portfolio-caption { padding: 14px 16px; background: var(--card); }
.portfolio-caption .tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 4px;
}
.portfolio-caption .title { font-weight: 600; color: #fff; }

/* Contact / quote form */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}
.contact-info-item { margin-bottom: 22px; }
.contact-info-item .label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); margin-bottom: 4px; }
.contact-info-item .value { font-weight: 600; color: #fff; }

.form-card {
  background: var(--card);
  border: 1px solid var(--border-c);
  border-radius: 10px;
  padding: 28px;
}
form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { font-size: 0.8rem; font-weight: 500; margin-bottom: 6px; display: block; color: var(--text-dim); }
input, textarea, select {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border-c);
  background: var(--bg-elevated);
  color: var(--text);
  border-radius: 4px;
  font-size: 0.92rem;
  font-family: inherit;
}
input::placeholder, textarea::placeholder { color: var(--text-faint); }
textarea { min-height: 110px; resize: vertical; }
.file-drop-label { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 8px; }
.file-row { display: flex; align-items: center; gap: 12px; }
.choose-file-btn {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}
.file-row span { font-size: 0.82rem; color: var(--text-faint); }
.submit-btn {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
  margin-top: 6px;
}
.submit-btn:hover { opacity: 0.9; }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.form-status { font-size: 0.85rem; min-height: 1.2em; }
.form-status.success { color: #4caf50; }
.form-status.error { color: #ff6b6b; }

input[type="file"] {
  width: 100%;
  padding: 9px 0;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 0.85rem;
}
input[type="file"]::file-selector-button {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  margin-right: 12px;
}

/* Footer */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border-c);
  color: var(--text-dim);
  padding: 60px 24px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-c);
}
.footer-logo { display: flex; align-items: center; gap: 10px; color: var(--orange); font-weight: 700; margin-bottom: 14px; }
.footer-logo img { height: 30px; }
.footer-tag { color: var(--orange-light); font-size: 0.85rem; margin-bottom: 10px; }
.footer-grid h4 {
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-grid li { margin-bottom: 10px; font-size: 0.88rem; }
.footer-grid a:hover { color: var(--orange-light); }
.footer-bottom {
  max-width: 1140px;
  margin: 24px auto 0;
  font-size: 0.8rem;
  color: var(--text-faint);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 900px) {
  .nav-wrap { position: relative; }
  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 101;
  }
  .nav-toggle-label span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text);
    border-radius: 2px;
  }
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border-c);
    padding: 8px 24px 12px;
  }
  nav ul li { border-bottom: 1px solid var(--border-c); }
  nav ul li:last-child { border-bottom: none; }
  nav ul li a { display: block; padding: 14px 0; }
  .nav-toggle:checked ~ nav ul { display: flex; }
  .feature-row, .card-grid, .portfolio-grid, .image-strip { grid-template-columns: 1fr; }
  .two-col, .contact-wrap, .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* Small phones: extra tightening, PC untouched */
@media (max-width: 480px) {
  .nav-wrap { padding: 14px 16px; }
  .container, .block-inner, .footer-grid, .footer-bottom { padding-left: 16px; padding-right: 16px; }
  section.block { padding: 44px 16px; }
  .page-hero { padding: 44px 16px 32px; }
  .page-hero h1 { font-size: 1.8rem; }
  .hero-text h1 { font-size: 2.1rem; }
  .hero-text p { font-size: 0.95rem; }
  .hero-cards { grid-template-columns: 1fr; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; }
  .section-title { font-size: 1.5rem; }
  .card { padding: 20px 18px; }
  .form-card { padding: 18px; }
  footer { padding: 44px 16px 24px; }
}

/* Hero redesign: two-line heading + floating cards */
.hero { align-items: center; padding: 40px 0; }
.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-text { max-width: 520px; }
.hero-text h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-text h1 .accent-text { color: var(--orange); display: block; }
.hero-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 220px));
  gap: 14px;
}
.hero-card {
  background: rgba(10,10,10,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 18px;
}
.hero-card h3 { color: var(--orange); font-size: 0.98rem; margin-bottom: 8px; }
.hero-card p { color: #d8d8d4; font-size: 0.8rem; line-height: 1.5; }
.hero-card.stat {
  border-color: var(--orange);
  background: rgba(242,113,28,0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-card .stat-num { font-size: 1.9rem; color: var(--orange-light); font-weight: 700; }
.hero-card .stat-num.badge-text { font-size: 1.3rem; line-height: 1.3; }
.hero-card .stat-label { color: #d8d8d4; font-size: 0.8rem; margin-top: 4px; }

/* Photo collage (renovations section) */
.collage {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 10px;
  height: 420px;
  overflow: hidden;
}
.collage-main { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; min-height: 0; min-width: 0; }
.collage-side { display: grid; grid-template-rows: 1fr 1fr; gap: 10px; min-height: 0; overflow: hidden; }
.collage-side img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; min-height: 0; min-width: 0; }

/* Checklist with circular badge */
.checklist-badge li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 0;
}
.checklist-badge li::before { content: none; }
.check-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(242,113,28,0.15);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.block-tight { padding: 48px 24px; }

.safety-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto 28px;
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--border-c);
  border-radius: 8px;
  text-align: left;
}
.safety-feature .icon { width: 28px; height: 28px; }
.safety-feature h4 { color: #fff; font-size: 0.95rem; margin-bottom: 4px; }
.safety-feature p { color: var(--text-dim); font-size: 0.85rem; margin: 0; }

@media (max-width: 900px) {
  .hero-inner { flex-direction: column; align-items: flex-start; }
  .hero-cards { grid-template-columns: repeat(2, 1fr); width: 100%; }
  .collage { grid-template-columns: 1fr; height: auto; gap: 8px; }
  .collage-side { grid-template-rows: 1fr 1fr; }
  .collage-main { height: 220px; }
  .collage-side { height: 220px; }
  .hero { min-height: 0; padding: 28px 0; }
  .two-col { gap: 28px; }
  section.block { padding: 48px 24px; }
}

/* Phone-specific: keep images compact so there's less to scroll past */
@media (max-width: 600px) {
  .hero { padding: 24px 0; }
  .hero-inner { gap: 24px; }
  .hero-text h1 { font-size: 2.3rem; margin-bottom: 14px; }
  .hero-text p { margin-bottom: 20px; }
  .hero-cards { gap: 10px; }
  .hero-card { padding: 14px; }
  .hero-card p { font-size: 0.75rem; }
  .collage-main { height: 170px; }
  .collage-side { height: 170px; gap: 8px; }
  section.block { padding: 36px 16px; }
  .two-col { gap: 20px; }
}