/* EPIC-012 /lp/allservices/ — isolated. Do not import site-core (it forces a dark body). */
:root {
  --lp-navy: #0e1219;
  --lp-navy-2: #141a26;
  --lp-bronze: #b8860b;
  --lp-bronze-2: #e8c872;
  --lp-text: #1a1d24;
  --lp-muted: #5c616b;
  --lp-bg: #fff;
  --lp-ghost: #f6f4f0;
  --lp-card: #efece6;
  --lp-line: #e4e0d8;
  --lp-max: 940px;
  --lp-display: "Archivo", "Archivo Fallback", system-ui, sans-serif;
  --lp-body: "Inter", "Inter Fallback", system-ui, sans-serif;
  --lp-ease: cubic-bezier(0.32, 0.72, 0, 1);
}

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

html, body {
  margin: 0;
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: var(--lp-body);
  font-size: 18px;
  line-height: 1.55;
}

img { max-width: 100%; height: auto; display: block; }
button, input { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }

.lp-wrap {
  width: min(var(--lp-max), calc(100% - 40px));
  margin: 0 auto;
}

.lp-top {
  padding: 18px 20px 10px;
  text-align: center;
  background: #fff;
}
.lp-top__eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a8680;
}
.lp-top__logo { display: inline-block; }
.lp-top__logo img { height: 44px; width: auto; margin: 0 auto; }

.lp-hero {
  background: var(--lp-ghost);
  padding: 28px 0 48px;
}
.lp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  grid-template-areas:
    "heading media"
    "details media";
  column-gap: 36px;
  row-gap: 16px;
  align-items: start;
}
.lp-hero__h1 { grid-area: heading; }
.lp-hero__media { grid-area: media; }
.lp-hero__details { grid-area: details; }
.lp-hero__h1 {
  margin: 0 0 16px;
  font-family: var(--lp-display);
  font-size: 48px;
  line-height: 62.4px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.lp-hero__h1 span { display: block; }
.lp-hero__h1-accent { color: var(--lp-bronze); }
.lp-hero__lead {
  margin: 0 0 22px;
  max-width: 52ch;
  color: var(--lp-text);
}
.lp-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lp-stats li {
  background: var(--lp-card);
  border-radius: 10px;
  padding: 14px 16px;
}
.lp-stats strong {
  display: block;
  font-family: var(--lp-display);
  font-size: 28px;
  line-height: 1.1;
}
.lp-stats span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: var(--lp-muted);
}
.lp-hero__media {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--lp-card);
  width: 400px;
  height: 520px;
}
.lp-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-note { background: var(--lp-ghost); padding: 0 0 40px; }
.lp-note__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  background: #ece9e3;
  border-radius: 16px;
  padding: 22px 26px;
}
.lp-note__badges { display: flex; flex-direction: column; gap: 8px; }
.lp-badge {
  display: inline-block;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.lp-note__text { margin: 0; }

.lp-cta {
  position: relative;
  padding: 56px 20px 64px;
  background:
    linear-gradient(180deg, rgba(14,18,25,.82), rgba(14,18,25,.9)),
    url("/assets/media/services/seamless-gutters/seamless-gutters-brown-gutter-blue-siding-corner-minneapolis.webp") center/cover;
  color: #fff;
  text-align: center;
}
.lp-cta__inner { width: min(633px, calc(100% - 24px)); margin: 0 auto; }
.lp-cta__title {
  margin: 0 0 12px;
  font-family: var(--lp-display);
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
}
.lp-cta__title em {
  font-style: normal;
  color: var(--lp-bronze-2);
}
.lp-cta__arrow { color: var(--lp-bronze-2); margin-bottom: 18px; }

.lp-quiz-card {
  background: #fff;
  color: var(--lp-text);
  border-radius: 24px;
  padding: 28px 24px 22px;
  text-align: center;
}
.lp-quiz-card__q {
  margin: 0 0 18px;
  font-family: var(--lp-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.lp-opt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
  text-align: left;
}
.lp-opt-grid--services { grid-template-columns: repeat(2, 1fr); }
.lp-opt {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 2px solid var(--lp-line);
  border-radius: 12px;
  padding: 10px 10px 12px;
  min-height: 44px;
  cursor: pointer;
  background: #fff;
  transition: border-color .2s var(--lp-ease);
}
.lp-opt:hover { border-color: var(--lp-bronze-2); }
.lp-opt:has(input:checked) { border-color: var(--lp-bronze); }
.lp-opt input { position: absolute; opacity: 0; pointer-events: none; }
.lp-opt__radio {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  border: 2px solid #cfc9bf;
  border-radius: 50%;
  background: #fff;
}
.lp-opt:has(input:checked) .lp-opt__radio {
  border-color: var(--lp-bronze);
  box-shadow: inset 0 0 0 4px var(--lp-bronze);
}
.lp-opt__img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border-radius: 8px;
}
.lp-opt__label {
  font-size: 16px;
  font-weight: 700;
  padding-right: 22px;
}

.lp-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 260px;
  min-height: 56px;
  padding: 10px 16px 10px 28px;
  border: 0;
  border-radius: 800px;
  background: var(--lp-navy);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.lp-next:hover { background: #1a2230; }
.lp-next:active { transform: scale(0.98); }
.lp-next:disabled { opacity: 0.45; cursor: not-allowed; }
.lp-next.is-loading { opacity: 0.7; }
.lp-next__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lp-bronze);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.lp-lock {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--lp-muted);
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
}
.lp-noscript { font-size: 15px; }

.lp-social, .lp-services, .lp-benefits, .lp-reviews, .lp-cover {
  padding: 64px 0;
}
.lp-social { background: var(--lp-ghost); }
.lp-slashes {
  margin: 0 0 8px;
  color: var(--lp-bronze);
  letter-spacing: 2px;
  font-weight: 700;
}
.lp-h2 {
  margin: 0 0 18px;
  font-family: var(--lp-display);
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
}
.lp-lead { margin: 0 0 28px; max-width: 62ch; color: var(--lp-text); }

.lp-proj { position: relative; }
.lp-proj__track { position: relative; min-height: 360px; }
.lp-proj__slide {
  display: none;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--lp-card);
}
.lp-proj__slide.is-on { display: block; }
.lp-proj__img { width: 100%; height: 420px; object-fit: cover; }
.lp-proj__cap { padding: 10px 4px 0; font-size: 14px; color: var(--lp-muted); }
.lp-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.lp-dots__btn {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cfc9bf;
  min-width: 44px;
  min-height: 44px;
  background-clip: content-box;
  padding: 17px;
}
.lp-dots__btn.is-on { background-color: var(--lp-bronze); background-clip: content-box; }
.lp-logos {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
  align-items: center;
}
.lp-logos img { height: 32px; width: auto; }

.lp-svc-group { margin-top: 36px; }
.lp-svc-group__h {
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lp-svc-group__note { margin: 0 0 16px; font-size: 14px; color: var(--lp-muted); }
.lp-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.lp-svc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 0 12px;
  border: 0;
  background: transparent;
  text-align: left;
  border-radius: 12px;
  min-height: 44px;
}
.lp-svc__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}
.lp-svc__name { font-weight: 700; font-size: 16px; }
.lp-svc__price { font-size: 14px; color: var(--lp-muted); }
.lp-showmore {
  display: block;
  width: 100%;
  margin-top: 18px;
  padding: 12px;
  min-height: 44px;
  border: 0;
  border-top: 1px solid var(--lp-line);
  background: transparent;
  color: var(--lp-muted);
  font-size: 14px;
  font-weight: 700;
}

.lp-ben {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin: 36px 0;
}
.lp-ben__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
}
.lp-ben__h {
  margin: 0 0 14px;
  font-family: var(--lp-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 3px solid var(--lp-bronze);
  padding-bottom: 6px;
}
.lp-checks { margin: 16px 0 0; padding: 0; list-style: none; }
.lp-checks li {
  position: relative;
  padding: 6px 0 6px 28px;
}
.lp-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 8px;
  border-left: 3px solid #2f6f3e;
  border-bottom: 3px solid #2f6f3e;
  transform: rotate(-45deg);
}

.lp-reviews__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.lp-reviews__nav { display: flex; gap: 8px; }
.lp-round {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--lp-line);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lp-reviews__track { position: relative; min-height: 220px; }
.lp-rev {
  display: none;
  background: var(--lp-ghost);
  border-radius: 16px;
  padding: 24px;
}
.lp-rev.is-on { display: block; }
.lp-rev__badge {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-bronze);
}
.lp-rev__who { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.lp-rev__ava {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lp-navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.lp-rev__name { margin: 0; font-weight: 700; }
.lp-rev__stars { margin: 0; color: #c9a227; letter-spacing: 2px; }
.lp-rev__text { margin: 0; }
.lp-rev__more {
  margin-top: 8px;
  border: 0;
  background: none;
  color: var(--lp-bronze);
  font-weight: 700;
  padding: 8px 0;
  min-height: 44px;
}

.lp-cover__stats {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.lp-cover__stats li {
  background: var(--lp-ghost);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.lp-cover__stats strong {
  display: block;
  font-family: var(--lp-display);
  font-size: 28px;
  text-transform: uppercase;
}
.lp-cover__stats span { font-size: 14px; color: var(--lp-muted); }

.lp-foot {
  background: var(--lp-navy);
  color: rgba(255,255,255,.82);
  padding: 22px 0;
  font-size: 14px;
}
.lp-foot__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.lp-foot p { margin: 0; }
.lp-foot a { text-decoration: none; }
.lp-foot a:hover { color: #fff; }
.lp-foot__links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }

.lp-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--lp-ghost);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.lp-overlay[hidden] { display: none; }
.lp-overlay__backdrop {
  position: absolute;
  inset: 0;
}
.lp-overlay__panel {
  position: relative;
  width: min(633px, 100%);
  max-height: 100dvh;
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(14,18,25,.12);
}
.lp-overlay__bar {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  padding: 10px 12px;
}
.lp-overlay__bar img { justify-self: center; height: 32px; width: auto; }
.lp-iconbtn {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lp-overlay__progress {
  height: 4px;
  background: var(--lp-line);
}
.lp-overlay__fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--lp-bronze);
  transition: width .35s var(--lp-ease);
}
.lp-overlay__body {
  padding: 20px 24px 8px;
  overflow: auto;
  flex: 1;
  text-align: center;
}
.lp-overlay__body h3 {
  margin: 0 0 8px;
  font-family: var(--lp-display);
  font-size: 28px;
  font-weight: 700;
}
.lp-overlay__sub { margin: 0 0 16px; color: var(--lp-muted); font-size: 16px; }
.lp-overlay__foot {
  border-top: 1px solid var(--lp-line);
  padding: 16px 20px calc(18px + env(safe-area-inset-bottom));
  text-align: center;
  flex-shrink: 0;
}
.lp-field {
  display: block;
  text-align: left;
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
}
.lp-field input {
  display: block;
  width: 100%;
  margin-top: 6px;
  min-height: 48px;
  font-size: 16px;
  padding: 10px 12px;
  border: 1px solid var(--lp-line);
  border-radius: 10px;
}
.lp-consent {
  display: flex;
  gap: 10px;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  align-items: flex-start;
  margin: 8px 0 4px;
}
.lp-consent input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.lp-err { color: #9b2c2c; font-size: 14px; margin: 8px 0 0; }
.lp-opt--plain { min-height: 64px; justify-content: center; padding: 16px; }

body.lp-lock-scroll { overflow: hidden; }

@media (max-width: 900px) {
  .lp-hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "media"
      "details";
    row-gap: 20px;
  }
  .lp-hero__media { width: 100%; height: 320px; }
  .lp-hero__h1 { font-size: 32px; line-height: 1.2; }
  .lp-note__card { grid-template-columns: 1fr; }
  .lp-svc-grid, .lp-ben, .lp-cover__stats, .lp-foot__row {
    grid-template-columns: 1fr;
  }
  .lp-foot__row { flex-direction: column; align-items: flex-start; }
  .lp-cta__title { font-size: 28px; }
  .lp-overlay {
    padding: 0;
    align-items: stretch;
  }
  .lp-overlay__panel {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }
}

@media (max-width: 600px) {
  .lp-opt-grid { grid-template-columns: 1fr; }
  .lp-svc-grid { grid-template-columns: 1fr 1fr; }
  .lp-wrap { width: calc(100% - 32px); }
}
