/* =============================================================
   Basement renovation page (services/basement-renovation.html)
   Page-specific styles only. Loaded after ../css/main.css.
   (Waterproofing now loads css/pages/waterproofing.css.)
   ============================================================= */

/* ---------- Split hero ---------- */
.svc-hero { padding-block: 48px 32px; }
@media (min-width: 960px) { .svc-hero { padding-block: 72px 0; } }
.svc-hero h1 { font-size: clamp(2.5rem, 3.9vw, 3.45rem); }
.svc-hero .lede { max-width: 48ch; }
.svc-hero-img { width: 100%; height: 100%; object-fit: cover; box-shadow: var(--shadow-card); }
.svc-hero-img.crop-43 { aspect-ratio: 4 / 3; }

/* ---------- Offerings bento: 1 tall feature + 2 stacked cells ---------- */
.bento { display: grid; gap: 1.5rem; }
@media (min-width: 900px) {
  .bento {
    grid-template-columns: 1.15fr .85fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .bento-feature { grid-row: span 2; }
}

.bento-feature {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 900px) { .bento-feature { min-height: 520px; } }
.bento-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bento-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(8 30 49 / .92) 0%, rgb(8 30 49 / .45) 45%, rgb(8 30 49 / .08) 75%);
}
.bento-feature-body { position: relative; z-index: 1; padding: 2rem; }
.bento-feature-body h3 { color: var(--dark-text); font-size: 1.375rem; }
.bento-feature-body p { color: var(--dark-text); margin-top: .375rem; font-size: .9875rem; max-width: 44ch; }

.bento-cell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.bento-cell-body p { margin-top: .375rem; font-size: .9875rem; }
.bento-cell figure { flex-shrink: 0; width: 128px; }
.bento-cell figure img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-card);
}
@media (max-width: 559px) {
  .bento-cell { flex-direction: column-reverse; align-items: stretch; }
  .bento-cell figure { width: 100%; }
  .bento-cell figure img { aspect-ratio: 16 / 9; }
}
.bento-note { margin-top: 1.75rem; font-size: .9875rem; }

/* ---------- Inline checks row (no cards) ---------- */
.check-row { display: flex; flex-wrap: wrap; gap: 2rem 3.5rem; margin-top: 2.5rem; }
.check-item { display: flex; align-items: flex-start; gap: .75rem; max-width: 300px; }
.check-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold-700); margin-top: .25rem; }
.check-item strong { display: block; font-weight: 600; color: var(--ink); }
.check-item p { margin-top: .125rem; font-size: .9375rem; }

/* =============================================================
   "Immersive" rebuild (services/basement-renovation.html)
   The split hero + bento blocks above are retained only as the
   copy source for the waterproofing split; this page now uses
   the rules below plus .check-row.
   ============================================================= */

/* ---------- Hero ----------
   The full-bleed overlay hero is now the shared .hero + .hero-service
   component in css/main.css, used by all four service pages. Nothing
   page-specific is left here. */

/* ---------- Numbered vertical features ---------- */
.bsr-feature { display: grid; gap: 2rem; align-items: center; padding-block: 3rem; }
.bsr-feature:first-child { padding-top: 0; }
.bsr-feature + .bsr-feature { border-top: 1px solid var(--line); }
@media (min-width: 900px) {
  .bsr-feature { grid-template-columns: 1fr 1fr; gap: 4.5rem; padding-block: 4rem; }
  .bsr-feature.is-flipped .bsr-feature-text { order: 2; }
}
.bsr-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 560;
  line-height: 1;
  color: var(--gold-700);
}
.bsr-feature-text h3 { margin-top: .875rem; font-size: 1.375rem; }
.bsr-feature-text p { margin-top: .5rem; max-width: 48ch; }
.bsr-feature-img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.bsr-features-note { margin-top: 2.5rem; font-size: .9875rem; }

/* ---------- Trust facts on stone with ambient draft layer ---------- */
/* .draft-bg component styles live in css/main.css; this section only
   needs the stacking context so content sits above the layer. */
.bsr-trust { position: relative; }
.bsr-trust .container { position: relative; z-index: 1; }

/* ---------- Vertical process timeline, light variant ---------- */
.bsr-timeline { position: relative; max-width: 680px; counter-reset: bsr-step; }
.bsr-timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}
.bsr-timeline li { position: relative; padding: 0 0 2.25rem 4rem; counter-increment: bsr-step; }
.bsr-timeline li:last-child { padding-bottom: 0; }
.bsr-timeline li::before {
  content: counter(bsr-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--gold);
  color: var(--gold-700);
  font-weight: 600;
  font-size: .9375rem;
}
.bsr-timeline h3 { font-size: 1.125rem; }
.bsr-timeline p { margin-top: .25rem; font-size: .9875rem; }
