:root {
  --ink: #081923;
  --panel: #0f2a3a;
  --panel-deep: #0d1f2d;
  --orange: #f99026;
  --orange-hover: #e47f15;
  --paper: #fafaf7;
  --paper-alt: #f7f8f9;
  --stone: #c9bba6;
  --white: #ffffff;
  --font: "Manrope", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--ink);
  border-bottom: 3px solid var(--orange);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 56px;
  width: auto;
  max-width: min(280px, 58vw);
  object-fit: contain;
}
.footer-logo img {
  height: 64px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav a:hover { color: var(--orange); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  border: 0;
  font-family: inherit;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-hover); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }

.kicker {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 86vh;
  color: var(--white);
  display: grid;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8,25,35,0.94) 0%, rgba(8,25,35,0.62) 50%, rgba(8,25,35,0.28) 100%),
    url("/assets/hero.png") center/cover;
}
.hero-inner { position: relative; z-index: 1; padding: 80px 0 64px; max-width: 720px; }
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.02;
  margin: 12px 0 18px;
  letter-spacing: -0.03em;
}
.hero p { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.section { padding: 80px 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-panel { background: var(--panel); color: var(--white); }
.section h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  margin: 10px 0 16px;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.card {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(8,25,35,0.08);
}
.card img { width: 88px; height: 88px; object-fit: contain; margin-bottom: 14px; }
.logo img, .footer-logo img {
  max-width: min(280px, 58vw);
  margin: 0;
  object-fit: contain;
}
.card h3 { margin: 0 0 8px; font-size: 20px; }
.card p { margin: 0; color: #4a5a66; }

.compare img { width: 100%; height: 360px; object-fit: cover; border-radius: 16px; }
.compare .label {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.quote-band {
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  color: var(--white);
  border-radius: 22px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}
.quote-band form { display: grid; gap: 10px; }
.quote-band input, .quote-band select, .quote-band textarea {
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

.site-footer {
  background: #06141c;
  color: rgba(255,255,255,0.72);
  padding: 40px 0 22px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.swatch-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.swatch { border-radius: 14px; overflow: hidden; border: 1px solid rgba(8,25,35,0.08); }
.swatch-chip { height: 88px; }
.swatch figcaption { padding: 10px 12px; font-size: 13px; background: var(--white); }

.lockup-card { text-align: center; }
.lockup-card img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  margin: 0 auto 14px;
}
.photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
}
.note-warn {
  background: #fff6e8;
  border-left: 4px solid var(--orange);
  padding: 14px 16px;
  border-radius: 8px;
  max-width: 720px;
}

.service-hero { padding: 72px 0 40px; background: linear-gradient(180deg, #eef3f6 0%, var(--paper) 100%); }
.service-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 10px 0 16px;
  max-width: 820px;
}
.service-hero .lead { color: #4a5a66; font-size: 18px; max-width: 720px; }
.prose h2 { font-size: clamp(24px, 3vw, 34px); margin: 32px 0 12px; }
.prose p { color: #2c3a44; max-width: 760px; }
.checklist { list-style: none; padding: 0; margin: 16px 0; }
.checklist li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 800; }
.process { padding-left: 20px; max-width: 720px; }
.process li { margin-bottom: 10px; }
.faq-list { display: grid; gap: 12px; max-width: 860px; }
.faq-item { border: 1px solid rgba(8,25,35,0.1); border-radius: 14px; background: var(--white); overflow: hidden; }
.faq-item button {
  width: 100%; text-align: left; border: 0; background: transparent;
  padding: 16px 18px; font: inherit; font-weight: 700; cursor: pointer;
  display: flex; justify-content: space-between; gap: 16px;
}
.faq-item .answer { display: none; padding: 0 18px 16px; color: #4a5a66; }
.faq-item.open .answer { display: block; }
.section-soft { background: #eef3f6; }
.cards .card h3 { font-size: 18px; }
.btn-navy { background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.footer-grid h4 { color: #fff; margin: 0 0 10px; letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a:hover { color: var(--orange); }

/* ─── Design attack: Softwash structure + Rocky Edge conversion ─── */
.topbar {
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}
.topbar a.btn { padding: 8px 16px; font-size: 11px; }
.site-header { position: sticky; top: 0; }
.header-inner { position: relative; }
.google-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  padding: 6px 10px 6px 6px;
  text-decoration: none;
  flex-shrink: 0;
}
.google-chip img { width: 22px; height: 22px; }
.google-chip strong { display: block; font-size: 13px; line-height: 1.1; }
.google-chip small { display: block; font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: #5f6b73; font-weight: 700; }
.google-chip .stars { color: #fbbc04; font-size: 11px; letter-spacing: 1px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  border-radius: 8px;
  cursor: pointer;
}
.header-cta { display: flex; align-items: center; gap: 12px; }

.hero {
  position: relative;
  min-height: 92vh;
  color: var(--white);
  display: block;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8,25,35,0.92) 0%, rgba(8,25,35,0.62) 48%, rgba(8,25,35,0.28) 100%),
    url("/assets/photos/hero-roof.png") center 40%/cover;
}
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  min-height: 92vh;
  padding: 56px 0 72px;
}
.hero h1 {
  font-size: clamp(34px, 5.2vw, 62px);
  line-height: 0.98;
  margin: 10px 0 18px;
  letter-spacing: -0.03em;
}
.hero .lead { color: rgba(255,255,255,0.82); font-size: 17px; max-width: 540px; }
.trust-list { list-style: none; padding: 0; margin: 22px 0 28px; }
.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.trust-list svg { color: var(--orange); flex-shrink: 0; }
.g-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--ink);
  border-radius: 10px;
  padding: 10px 14px 10px 10px;
  margin-top: 22px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  text-decoration: none;
}
.g-rating img { width: 32px; height: 32px; }
.g-rating small { display: block; font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #667; }
.g-rating strong { font-size: 20px; }
.g-rating .stars { color: #fbbc04; letter-spacing: 1px; }
.g-rating em { display: block; font-style: normal; font-size: 11px; color: #667; font-weight: 600; }

.quote-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 12px;
  padding: 28px 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.quote-card .label { color: var(--orange); margin-bottom: 6px; }
.quote-card h3 { margin: 0 0 6px; font-size: 24px; }
.quote-card > p { margin: 0 0 18px; color: #5a6770; font-size: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8dee3;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  background: var(--white);
  color: var(--ink);
}
.form-grid textarea { min-height: 78px; resize: vertical; }
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,144,38,0.18);
}
.form-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 10px;
  font-size: 12px;
  color: #667;
  font-weight: 600;
}
.btn-block { width: 100%; }

.stat-bar {
  background: var(--panel);
  color: var(--white);
  padding: 28px 0;
}
.stat-bar .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-bar .stat { text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-bar .stat:last-child { border-right: 0; }
.stat-bar .num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat-bar .label {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(8,25,35,0.08);
}
.why-card h3 { margin: 10px 0 8px; font-size: 18px; }
.why-card p { margin: 0; color: #4a5a66; font-size: 14px; }
.why-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff4e8;
  color: var(--orange);
  display: grid;
  place-items: center;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.split > img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}
.split .prose p { max-width: none; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.svc-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(8,25,35,0.08);
  display: flex;
  flex-direction: column;
}
.svc-card .img-wrap { height: 180px; overflow: hidden; }
.svc-card img { width: 100%; height: 180px; object-fit: cover; }
.svc-card .body { padding: 20px 20px 22px; }
.svc-card h3 { margin: 0 0 8px; font-size: 18px; }
.svc-card p { margin: 0 0 12px; color: #4a5a66; font-size: 14px; }
.svc-card a { color: var(--orange); font-weight: 800; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.process-card {
  background: var(--panel);
  border-radius: 16px;
  padding: 22px;
}
.process-card .step {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.process-card h3 { margin: 10px 0 8px; font-size: 18px; }
.process-card p { margin: 0; color: rgba(255,255,255,0.72); font-size: 14px; }

#before-after { background: #eef3f6; }
.ba-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 24px;
}
.ba-tab {
  font-family: inherit;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5a6770;
  background: var(--white);
  border: 1px solid rgba(8,25,35,0.12);
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
}
.ba-tab.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.ba-stage { position: relative; max-width: 1100px; margin: 0 auto; }
.ba-frame {
  position: relative;
  display: none;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ink);
  user-select: none;
  --pos: 50%;
}
.ba-frame.is-active { display: block; }
.ba-frame.is-dragging { cursor: ew-resize; }
.ba-frame.is-dragging * { pointer-events: none; }
.ba-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-before-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba-handle {
  position: absolute;
  top: 0;
  left: var(--pos);
  transform: translateX(-50%);
  width: 48px;
  height: 100%;
  z-index: 3;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: none;
}
.ba-handle::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: var(--white);
}
.ba-handle .knob {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.ba-label {
  position: absolute;
  top: 18px;
  z-index: 4;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  pointer-events: none;
}
.ba-label-before { left: 18px; background: rgba(0,0,0,0.82); }
.ba-label-after { left: auto; right: 18px; background: var(--orange); }

#reviews { background: var(--ink); color: var(--white); }
.review-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.reviews-meta { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.reviews-meta img { width: 28px; height: 28px; background: #fff; border-radius: 50%; padding: 4px; }
.reviews-stars { color: #fbbc04; letter-spacing: 2px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 16px;
  padding: 22px;
}
.review-card .stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 10px; }
.review-card p { margin: 0 0 16px; color: #2c3a44; }
.review-card .who { display: flex; justify-content: space-between; gap: 8px; font-size: 13px; color: #667; border-top: 1px solid #eef; padding-top: 12px; }
.review-card .who strong { color: var(--ink); }

.cta-band {
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  color: var(--white);
  border-radius: 22px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}
.cta-band img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
}
.site-footer .footer-grid p { margin: 0 0 8px; }

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    background: var(--panel);
    flex-direction: column;
    padding: 16px 18px;
    border-radius: 12px;
    min-width: 200px;
    gap: 14px;
  }
  .nav.is-open { display: flex; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .google-chip,
  .header-cta .btn { display: none; }
  .logo img { height: 44px; }
  .grid-3, .grid-2, .quote-band, .swatch-row, .footer-grid,
  .hero-layout, .form-grid, .stat-bar .row, .why-grid, .split,
  .svc-grid, .process-grid, .review-grid, .cta-band, .review-head {
    grid-template-columns: 1fr;
  }
  .hero, .hero-layout { min-height: auto; }
  .hero-layout { padding: 36px 0 48px; }
  .stat-bar .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 12px; }
  .stat-bar .row { grid-template-columns: 1fr 1fr; }
  .split > img, .cta-band img { height: 240px; }
}
