:root {
  --ink: #212121;
  --paper: #EFEFEF;
  --accent: #65AC10;
  --accent-dark: #4d8a0c;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}
a { color: inherit; }
.wrap { max-width: 1280px; margin: 0 auto; }

/* Header */
.topbar {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 48px;
  border-bottom: 4px solid var(--ink);
}
.brand { justify-self: start; display: flex; align-items: center; gap: 12px; min-width: 0; }
.logo-mark { height: 88px; width: auto; display: block; flex-shrink: 0; }
.slogan { font-size: 14px; font-weight: 600; font-style: italic; color: var(--ink); white-space: nowrap; }
.topbar nav {
  justify-self: center;
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}
.btn-book { justify-self: end; }
.topbar nav a { text-decoration: none; }
.btn-book {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  text-decoration: none;
  white-space: nowrap;
}

/* Hero */
.hero {
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-copy {
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.hero-bar { width: 56px; height: 6px; background: var(--accent); }
.hero h1 { font-size: 52px; line-height: 1.05; font-weight: 800; margin: 0; }
.hero p { font-size: 17px; line-height: 1.6; color: #c9c9c9; max-width: 440px; margin: 0; }
.hero-actions { display: flex; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: #fff; font-weight: 700; font-size: 15px;
  padding: 16px 28px; text-decoration: none;
}
.btn-secondary {
  border: 2px solid var(--paper); color: var(--paper); font-weight: 700; font-size: 15px;
  padding: 14px 28px; text-decoration: none;
}
.hero-media { position: relative; padding: 40px 48px 40px 0; }

/* Before/after compare */
.compare {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
}
.compare-slot {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: #3a3a3a;
  color: #9a9a9a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.compare-before {
  position: absolute; inset: 0; overflow: hidden;
  clip-path: inset(0 50% 0 0);
}
.compare-before .compare-slot { background: #4a4a4a; }
.compare-handle {
  position: absolute; top: 0; bottom: 0; width: 4px; background: var(--accent);
  left: 50%; transform: translateX(-2px); pointer-events: none; z-index: 2;
}
.compare-tag {
  position: absolute; top: 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 10px; color: #fff; z-index: 2;
}
.compare-tag.before { left: 16px; background: var(--ink); }
.compare-tag.after { right: 16px; background: var(--accent); }
.compare input[type="range"] { display: none; }
.compare-range { width: 100%; margin-top: 14px; accent-color: var(--accent); }

/* Photo slots (before/after) — filled by an <img>, falls back to the
   placeholder label underneath if the file at assets/images/... is missing */
.compare-slot img,
.gallery-slot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Services */
#services { background: #fff; padding: 64px 56px; }
.services-grid { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: 56px; }
.services-heading { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin: 0; }
.service-row {
  display: grid; grid-template-columns: 56px 1fr; gap: 24px;
  padding: 22px 0; border-bottom: 1px solid #ddd;
}
.service-row .num { font-size: 22px; font-weight: 800; color: var(--accent); }
.service-row h3 { font-size: 17px; font-weight: 700; margin: 0 0 6px; }
.service-row p { font-size: 14px; line-height: 1.6; color: #555; margin: 0; max-width: 560px; }

/* Add-ons */
#addons { background: var(--paper); padding: 56px 56px 64px; }
#addons h2 { font-size: 28px; font-weight: 800; text-align: center; margin: 0 0 32px; }
.addon-list { max-width: 720px; margin: 0 auto; }
.addon-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; border-bottom: 1px solid #ddd;
}
.addon-row:last-child { border-bottom: none; }
.addon-row h3 { font-size: 16px; font-weight: 700; margin: 0; }
.addon-price { font-size: 18px; font-weight: 800; color: var(--accent); }

/* Process */
#process { background: var(--ink); color: var(--paper); padding: 72px 48px; }
#process h2 { font-size: 28px; font-weight: 800; text-align: center; margin: 0 0 48px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-line { position: absolute; top: 22px; left: 0; right: 0; height: 2px; background: var(--accent); z-index: 0; }
.process-step { position: relative; z-index: 1; text-align: center; }
.process-step .badge {
  width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #fff;
  font-weight: 800; font-size: 18px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.process-step h3 { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.process-step p { font-size: 13px; line-height: 1.5; color: #b9b9b9; margin: 0; }

/* Pricing */
#pricing { background: #fff; padding: 72px 56px; }
#pricing h2 { font-size: 28px; font-weight: 800; text-align: center; margin: 0 0 40px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1240px; margin: 0 auto; align-items: stretch;
}
.tier { border-radius: 22px; display: flex; flex-direction: column; }
.tier .badge { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; opacity: 0.85; margin-bottom: 8px; }
.tier h3 { font-size: 20px; font-weight: 800; margin: 0 0 4px; }
.tier .price { font-size: 34px; font-weight: 800; margin: 12px 0 16px; }
.tier .blurb { font-size: 13px; line-height: 1.5; opacity: 0.85; margin: 0 0 18px; }
.tier .features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.tier .features div { font-size: 13px; display: flex; gap: 8px; }
.tier .features span { font-weight: 800; }
.tier .note { font-size: 12px; font-style: italic; opacity: 0.7; margin: 0 0 18px; }
.tier .select {
  display: block; text-align: center; font-weight: 700; font-size: 14px;
  padding: 14px; border-radius: 100px; text-decoration: none; margin-top: auto;
}
.tier.interior, .tier.exterior, .tier.rv { background: #fff; color: var(--ink); padding: 36px 28px; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.tier.interior .select, .tier.exterior .select, .tier.rv .select { background: var(--ink); color: #fff; }
.tier.combo {
  background: var(--accent); color: #fff; padding: 36px 28px;
  box-shadow: 0 12px 28px rgba(101,172,16,.35);
}
.tier.combo .select { background: #fff; color: var(--ink); }

/* Gallery */
#gallery { background: var(--paper); padding: 72px 56px 56px; }
.gallery-head { text-align: center; margin-bottom: 32px; }
.gallery-head h2 { font-size: 28px; font-weight: 800; margin: 0 0 10px; }
.gallery-head p { font-size: 14px; color: #666; margin: 0; }
.gallery-scroller { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 8px; }
.gallery-card {
  background: #fff; border-radius: 18px; box-shadow: 0 2px 10px rgba(0,0,0,.06);
  padding: 12px; flex: 0 0 570px;
}
.gallery-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.gallery-slot {
  position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 1 / 1;
  background: #d8d8d8; display: flex; align-items: center; justify-content: center;
  color: #999; font-size: 11px; font-weight: 600;
}
.gallery-slot .tag {
  position: absolute; bottom: 6px; left: 6px; color: #fff; font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 100px; z-index: 2;
}
.gallery-slot .tag.before { background: rgba(33,33,33,.85); }
.gallery-slot .tag.after { background: var(--accent); }

/* Book CTA */
#book {
  background: var(--ink); padding: 88px 48px; display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 20px;
}
#book h2 { font-size: 32px; font-weight: 800; color: var(--paper); margin: 0; }
#book p { font-size: 15px; color: #c9c9c9; margin: 0; max-width: 480px; }
.btn-cta {
  background: var(--accent); color: #fff; font-weight: 700; font-size: 16px;
  padding: 18px 40px; text-decoration: none;
}

/* Footer */
footer.site-footer {
  background: var(--ink); color: var(--paper); padding: 48px;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px;
  border-top: 1px solid #3a3a3a;
}
footer.site-footer .tagline { font-size: 13px; color: #b9b9b9; margin-top: 12px; }
footer.site-footer .col { font-size: 13px; line-height: 2; color: #b9b9b9; }
footer.site-footer .col .title { color: var(--paper); font-weight: 700; margin-bottom: 6px; }
.copyright { background: #1a1a1a; color: #8a8a8a; font-size: 12px; text-align: center; padding: 14px; }

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 48px 24px; }
  .hero h1 { font-size: 36px; }
  .hero-media { padding: 0 24px 48px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  footer.site-footer { grid-template-columns: 1fr; text-align: center; }
  #services, #pricing { padding: 48px 24px; }
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand book" "nav nav";
    row-gap: 12px;
    padding: 14px 20px;
  }
  .brand { grid-area: brand; }
  .btn-book { grid-area: book; }
  .topbar nav { grid-area: nav; justify-self: center; flex-wrap: wrap; gap: 20px; }
}
