:root {
  --charcoal: #4f5962;
  --charcoal-2: #3f4850;
  --charcoal-3: #313941;
  --black: #20252a;
  --off-white: #f6f3ed;
  --stone: #d8d1c7;
  --muted: #aaa9a6;
  --muted-dark: #74777a;
  --muted-light: #faf9f8;
  --pink: #ed1b72;
  --pink-2: #ff4a99;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --radius-lg: 30px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 70%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal-3);
  background: var(--off-white);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: linear-gradient(135deg, #000 25%, transparent 25%), linear-gradient(225deg, #000 25%, transparent 25%), linear-gradient(45deg, #000 25%, transparent 25%), linear-gradient(315deg, #000 25%, transparent 25%);
  background-position: 16px 0, 16px 0, 0 0, 0 0;
  background-size: 32px 32px;
  background-repeat: repeat;
  z-index: -1;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.section-dark {
  color: var(--off-white);
  background: var(--charcoal);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--off-white);
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  left: 10px;
}

.announcement {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  padding: 10px 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--off-white);
  background: var(--pink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(79, 89, 98, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: clamp(160px, 17vw, 230px);
  height: auto;
  object-fit: contain;
}

.footer-logo {
  width: 210px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--charcoal-3);
}

.nav-menu a {
  padding: 9px 11px;
  color: var(--charcoal-3);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.nav-call {
  padding: 12px 18px;
  color: var(--off-white);
  background: var(--pink-2);
  font-weight: 900;
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
}

.nav-call:hover{
  box-shadow: 0 5px 10px rgba(237, 27, 114, 0.45);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--charcoal);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 86px;
  background:
    radial-gradient(circle at 22% 18%, rgba(237, 27, 114, 0.22), transparent 30%),
    radial-gradient(circle at 83% 20%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(140deg, #4f5962 0%, #3f4850 56%, #2b3238 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.8;
  background:
    linear-gradient(22deg, transparent 18%, rgba(255, 255, 255, 0.308) 19%, transparent 20%),
    linear-gradient(157deg, transparent 18%, rgba(255, 255, 255, 0.309) 19%, transparent 20%);
  background-size: 150px 80px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -280px;
  bottom: -380px;
  border: 1px solid rgba(237, 27, 114, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(237, 27, 114, 0.06), 0 0 0 96px rgba(237, 27, 114, 0.05), 0 0 0 144px rgba(237, 27, 114, 0.04);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) 600px;
  gap: 58px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow span{
  color: var(--pink-2);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 0.95;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 9vw, 6rem);
  text-transform: uppercase;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

h3 {
  line-height: 1.08;
  font-size: 1.33rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 720px;
  color: rgba(246, 243, 237, 0.82);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 5px 10px rgba(237, 27, 114, 0.45);
}

.btn-secondary {
  color: var(--off-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  padding: 10px 13px;
  color: rgba(246, 243, 237, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-card,
.large-form {
  padding: 30px;
  color: var(--charcoal-3);
  background: rgba(246, 243, 237, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-bottom: 12px;
  font-size: 2.15rem;
  line-height: 1;
}

.hero-card p {
  color: #5c5e61;
}

.card-badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  color: white;
  background: var(--pink);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #3b4044;
  font-size: 0.86rem;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  color: var(--charcoal-3);
  background: white;
  border: 1px solid #ded8cf;
  border-radius: 14px;
  outline: none;
  padding: 14px 14px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(237, 27, 114, 0.12);
}

.form-note {
  margin: 0;
  color: #74777a;
  font-size: 0.82rem;
  text-align: center;
}

.proof-strip {
  color: var(--off-white);
  background: var(--charcoal-2);
  border-top: 4px solid var(--pink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid div {
  padding: 28px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--pink-2);
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
}

.proof-grid span {
  color: rgba(246, 243, 237, 0.74);
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow),
.why-copy p,
.split-copy p,
.cta-copy p,
.faq-intro p {
  color: #66686b;
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.process-card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  padding: 26px;
  background: var(--muted-light);
  border: 1px solid rgba(79, 89, 98, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 60px rgba(49, 57, 65, 0.08);
}

.service-card::before,
.process-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--pink), transparent);
}

.service-icon {
  margin-bottom: 30px;
  font-size: 4.6rem;
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.service-card p,
.process-card p {
  color: #66686b;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 48px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 22px;
  color: #555c62;
  font-size: 0.92rem;
  font-weight: 800;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 999px;
}

.service-card a {
  position: absolute;
  left: 26px;
  bottom: 26px;
  color: var(--pink);
  font-weight: 900;
}

.split {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 50%, rgba(237, 27, 114, 0.18), transparent 32%),
    linear-gradient(135deg, #4f5962, #20252a);
  padding: 80px;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 68px;
  align-items: center;
}

.split-copy p {
  color: rgba(246, 243, 237, 0.76);
}

.split-copy h2 {
  max-width: 680px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: rgba(246, 243, 237, 0.9);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(237, 27, 114, 0.14);
}

.split-visual {
  position: relative;
  min-height: 520px;
}

.roof-panel {
  position: absolute;
  inset: 20px 40px 40px 0;
  overflow: hidden;
  background: linear-gradient(145deg, #5d6872, #303840);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}

.roof-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(237, 27, 114, 0.12), transparent 44%);
}

.shingle-row {
  height: 25%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 86px);
}

.inspection-ticket {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: min(300px, 74%);
  padding: 24px;
  color: var(--charcoal-3);
  background: var(--off-white);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.inspection-ticket span,
.inspection-ticket small {
  display: block;
  color: #77797b;
  font-weight: 800;
}

.inspection-ticket strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 1.6rem;
  line-height: 1;
}

.why-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-item {
  padding: 24px;
  background: var(--muted-light);
  border: 1px solid rgba(79, 89, 98, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 50px rgba(49, 57, 65, 0.07);
}

.why-item strong,
.why-item span {
  display: block;
}

.why-item strong {
  color: var(--charcoal-3);
  font-size: 1.1rem;
}

.why-item span {
  margin-top: 5px;
  color: #66686b;
}

.quote-band {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: #4f5962;
}

.quote-band::before {
  content: "";
  position: absolute;
  left: -120px;
  right: -120px;
  bottom: -100px;
  height: 260px;
  opacity: 0.75;
  background: repeating-radial-gradient(ellipse at bottom left, transparent 0 10px, rgba(237, 27, 114, 0.7) 11px 12px, transparent 13px 22px);
  transform: rotate(-3deg);
}

.quote-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
}

.quote-grid p {
  margin: 0;
  color: white;
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.quote-grid strong,
.quote-grid span {
  display: block;
  text-align: right;
}

.quote-grid strong {
  color: var(--pink-2);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.quote-grid span {
  color: rgba(246, 243, 237, 0.78);
  font-style: italic;
}

.quote-grid .lowlight {
  color: var(--muted);
}

.quote-grid .highlight {
  color: var(--pink-2);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  min-height: 270px;
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  color: white;
  background: var(--charcoal);
  border-radius: 50%;
  font-weight: 900;
}

.cta-card {
  padding-top: 60px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 46px;
  align-items: center;
  padding: 48px;
  color: var(--off-white);
  background:
    radial-gradient(circle at 95% 0%, rgba(237, 27, 114, 0.22), transparent 33%),
    linear-gradient(135deg, #4f5962, #20252a);
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.cta-copy p {
  color: rgba(246, 243, 237, 0.76);
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-cards a {
  display: grid;
  gap: 2px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.contact-cards span {
  color: rgba(246, 243, 237, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-cards strong {
  color: white;
  font-size: 1.15rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: white;
  border: 1px solid rgba(79, 89, 98, 0.12);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(49, 57, 65, 0.06);
}

.faq-list summary {
  padding: 22px 24px;
  color: var(--charcoal-3);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: -8px 24px 22px;
  color: #66686b;
}

.footer {
  padding: 70px 0 28px;
  background: #20252a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 38px;
}

.footer p,
.footer a {
  color: rgba(246, 243, 237, 0.72);
}

.footer h2 {
  margin-bottom: 14px;
  color: white;
  font-size: 0.86rem;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin-bottom: 8px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 50px;
  padding-top: 24px;
  color: rgba(246, 243, 237, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .why-grid,
  .faq-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-grid,
  .proof-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-visual {
    min-height: 430px;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-grid strong,
  .quote-grid span {
    text-align: left;
  }
}

@media (max-width: 820px) {
  .announcement {
    display: none;
  }

  .nav {
    min-height: 76px;
  }

  .nav-call {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: grid;
    gap: 4px;
    padding: 16px;
    background: var(--off-white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 14px;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    padding: 70px 0;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 6rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 4rem);
  }

  .hero-card,
  .large-form,
  .cta-grid {
    padding: 24px;
    border-radius: 24px;
  }

  .service-grid,
  .process-grid,
  .proof-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div,
  .proof-grid div:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .service-card,
  .process-card {
    min-height: auto;
  }

  .service-card ul {
    margin-bottom: 20px;
  }

  .service-card a {
    position: static;
    display: inline-block;
    margin-top: 10px;
  }

  .service-icon {
    margin-bottom: 24px;
  }

  .split-visual {
    min-height: 340px;
  }

  .roof-panel {
    inset: 0 22px 44px 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 90%);
  }

  .split {
    padding: 60px 20px;
  }

  .brand-logo {
    width: 152px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-row span {
    width: 100%;
    text-align: center;
    display: none;
  }

  .inspection-ticket {
    display: none;
  }

  .split-grid {
    display: grid;
    gap:20px;
  }
}

/* V3 refinements: video hero + compact navigation */
.site-header {
  background: rgba(79, 89, 98, 0.92);
}

.announcement {
  padding: 7px 16px;
  gap: 20px;
  font-size: 0.72rem;
}

.nav {
  min-height: 68px;
  gap: 18px;
}

.brand-logo {
  width: clamp(136px, 8vw, 188px);
  /* max-height: 54px; */
}

.nav-call {
  padding: 10px 15px;
  font-size: 0.92rem;
}

.hero {
  isolation: isolate;
  min-height: calc(100svh - 100px);
  display: flex;
  align-items: center;
  padding: clamp(78px, 9vw, 128px) 0;
  background: #c2cbd4;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.48;
  filter: grayscale(45%) contrast(1.1) brightness(0.56);
}

.hero::before {
  z-index: 1;
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(32, 37, 42, 0.9) 0%, rgba(32, 37, 42, 0.72) 48%, rgba(32, 37, 42, 0.58) 100%),
    radial-gradient(circle at 22% 18%, rgba(237, 27, 114, 0.32), transparent 32%),
    linear-gradient(22deg, transparent 18%, rgba(255, 255, 255, 0.07) 19%, transparent 20%);
  background-size: auto, auto, 150px 80px;
  pointer-events: none;
}

.hero::after {
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  z-index: 2;
  margin-top: 50px;
}

.hero-card {
  backdrop-filter: blur(16px);
}

@media (max-width: 820px) {
  .nav {
    min-height: 80px;
  }

  .brand-logo {
    width: 138px;
    max-height: 48px;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 64px;
  }

  .hero-video {
    opacity: 0.36;
    object-position: center top;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(32, 37, 42, 0.9) 0%, rgba(32, 37, 42, 0.78) 55%, rgba(32, 37, 42, 0.92) 100%),
      radial-gradient(circle at 22% 18%, rgba(237, 27, 114, 0.28), transparent 34%);
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: 130px;
  }
}

/* -------------------------------------------------------
   V4 refinements: premium muted palette + subtle pink use
   Keep pink as a brand signature, not the dominant color.
-------------------------------------------------------- */
:root {
  --pink: #ed1b72;
  --pink-2: #ed1b72;
  --pink-soft: rgba(237, 27, 114, 0.1);
  --pink-line: rgba(237, 27, 114, 0.24);
  --cream-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

/* .announcement {
  color: rgba(246, 243, 237, 0.86);
  background: var(--charcoal-3);
  border-bottom: 1px solid var(--pink-line);
} */

.site-header {
  background: var(--off-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--charcoal-3);
  background: rgba(246, 243, 237, 0.08);
}
/* Hero: keep the video/text dominant, reduce the pink haze */
.hero::before {
  background:
    linear-gradient(90deg, rgba(32, 37, 42, 0.92) 0%, rgba(32, 37, 42, 0.75) 48%, rgba(32, 37, 42, 0.6) 100%),
    radial-gradient(circle at 22% 18%, rgba(237, 27, 114, 0.12), transparent 32%),
    linear-gradient(22deg, transparent 18%, rgba(255, 255, 255, 0.06) 19%, transparent 20%);
}

.hero::after {
  border-color: rgba(237, 27, 114, 0.14);
  box-shadow:
    0 0 0 48px rgba(237, 27, 114, 0.025),
    0 0 0 96px rgba(237, 27, 114, 0.018),
    0 0 0 144px rgba(237, 27, 114, 0.012);
}
/* Buttons: pink becomes a signature underline/accent instead of full backgrounds */
.btn-primary {
  color: var(--charcoal-3);
  background: var(--off-white);
  border: 1px solid rgba(246, 243, 237, 0.42);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #fff;
}

.btn-secondary {
  color: var(--off-white);
  background: rgba(246, 243, 237, 0.06);
  border: 1px solid rgba(246, 243, 237, 0.24);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: #fff;
  border-color: var(--pink-line);
  background: rgba(246, 243, 237, 0.1);
}

/* Form buttons sit on light cards, so they need a darker premium treatment */
.lead-form .btn-primary {
  color: var(--off-white);
  background: var(--charcoal-2);
  border: 1px solid rgba(49, 57, 65, 0.2);
  /* box-shadow: 0 14px 32px rgba(49, 57, 65, 0.18), inset 0 -4px 0 var(--pink); */
}

.lead-form .btn-primary:hover,
.lead-form .btn-primary:focus-visible {
  background: var(--charcoal);
  /* box-shadow: 0 18px 40px rgba(49, 57, 65, 0.22), inset 0 -4px 0 var(--pink); */
}

.card-badge {
  color: var(--pink);
  background: var(--pink-soft);
  border: 1px solid var(--pink-line);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(237, 27, 114, 0.62);
  box-shadow: 0 0 0 4px rgba(237, 27, 114, 0.1);
}

/* Proof strip: no heavy pink bar or pink headline blocks */
.proof-strip {
  background: var(--charcoal-2);
  border-top: 1px solid rgba(237, 27, 114, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-grid strong {
  color: #fff;
}

/* Cards: pink only appears on links/focus, not every number and stripe */
.service-card::before,
.process-card::before {
  height: 4px;
  background: linear-gradient(90deg, rgba(79, 89, 98, 0.45), rgba(79, 89, 98, 0.08));
}

.service-card:hover::before,
.process-card:hover::before {
  background: linear-gradient(90deg, rgba(237, 27, 114, 0.42), rgba(79, 89, 98, 0.08));
}

.service-icon {
  color: var(--charcoal);
}

.service-card:hover .service-icon{
  color: var(--pink);
}

.service-card li::before {
  background: var(--charcoal);
  box-shadow: 0 0 0 4px rgba(237, 27, 114, 0.06);
}

.service-card a {
  color: var(--charcoal-3);
}

.service-card a:hover,
.service-card a:focus-visible {
  color: var(--pink);
}

/* Dark split/CTA sections: keep depth, reduce pink glow */
.split {
  background:
    radial-gradient(circle at 74% 50%, rgba(237, 27, 114, 0.08), transparent 32%),
    linear-gradient(135deg, #4f5962, #20252a);
}

.check-list li::before {
  background: transparent;
  border: 2px solid rgba(246, 243, 237, 0.86);
  box-shadow: 0 0 0 5px rgba(237, 27, 114, 0.07);
}

.roof-panel::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 44%);
}

.cta-grid {
  background:
    radial-gradient(circle at 95% 0%, rgba(237, 27, 114, 0.08), transparent 33%),
    linear-gradient(135deg, #4f5962, #20252a);
}

.contact-cards a:hover,
.contact-cards a:focus-visible {
  border-color: var(--pink-line);
  background: rgba(255, 255, 255, 0.12);
}

/* Quote band: the line-art stays branded but becomes background texture */
.quote-band::before {
  opacity: 0.26;
  background: repeating-radial-gradient(
    ellipse at bottom left,
    transparent 0 10px,
    rgba(237, 27, 114, 0.44) 11px 12px,
    transparent 13px 22px
  );
}

.quote-grid strong {
  color: var(--off-white);
}

.quote-grid strong::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 10px;
  margin-left: auto;
  background: var(--pink);
  opacity: 0.72;
}

.process-card span {
  background: var(--charcoal-3);
  box-shadow: inset 0 -4px 0 var(--pink);
}

.footer a:hover,
.footer a:focus-visible {
  color: #fff;
}

@media (max-width: 1080px) {
  .quote-grid strong::after {
    margin-left: 0;
  }
}

@media (max-width: 820px) {
  .hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.541) 0%, rgba(32, 37, 42, 0.8) 55%, rgba(6, 6, 7, 0.94) 100%),
      radial-gradient(circle at 22% 18%, rgba(237, 27, 114, 0.1), transparent 34%);
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible {
    background: rgba(243, 243, 243, 0.08);
  }
}

.reviews-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.reviews-leave-link {
  color: var(--light);
  border-color: var(--light);
  background: transparent;
}

.reviews-leave-link:hover,
.reviews-leave-link:focus-visible {
  color: var(--light);
  border-color: var(--light);
}


/* -------------------------------------------------------
   V5 additions: before/after project gallery + reviews
-------------------------------------------------------- */
.before-after {
  position: relative;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--muted-light) 100%);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ba-card {
  overflow: hidden;
  background: var(--muted-light);
  border: 1px solid rgba(79, 89, 98, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 60px rgba(49, 57, 65, 0.08);
}

.ba-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
  background: var(--charcoal-3);
}

.ba-photo {
  position: relative;
  min-height: 320px;
  background-image:
    linear-gradient(135deg, rgba(32, 37, 42, 0.18), rgba(32, 37, 42, 0.58)),
    var(--photo),
    repeating-linear-gradient(135deg, #5b666f 0 10px, #4f5962 10px 20px);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.ba-photo + .ba-photo {
  border-left: 1px solid rgba(246, 243, 237, 0.34);
}

.ba-photo span {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 8px 12px;
  color: var(--off-white);
  background: rgba(32, 37, 42, 0.78);
  border: 1px solid rgba(246, 243, 237, 0.18);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.ba-after span {
  color: var(--charcoal-3);
  background: rgba(246, 243, 237, 0.9);
}

.ba-content {
  padding: 24px;
}

.ba-content span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ba-content h3 {
  margin-bottom: 10px;
}

.ba-content p {
  margin-bottom: 0;
  color: #66686b;
}

.ba-note {
  display: flex;
  gap: 10px;
  align-items: start;
  margin-top: 22px;
  padding: 16px 18px;
  color: #66686b;
  background: rgba(79, 89, 98, 0.08);
  border: 1px solid rgba(79, 89, 98, 0.12);
  border-radius: 18px;
  font-size: 0.9rem;
}

.ba-note strong {
  color: var(--charcoal-3);
  white-space: nowrap;
}

.reviews {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(237, 27, 114, 0.08), transparent 34%),
    linear-gradient(135deg, #4f5962 0%, #20252a 100%);
}

.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(22deg, transparent 18%, rgba(255, 255, 255, 0.08) 19%, transparent 20%),
    linear-gradient(157deg, transparent 18%, rgba(255, 255, 255, 0.06) 19%, transparent 20%);
  background-size: 150px 80px;
  pointer-events: none;
}

.reviews-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: start;
}

.reviews-intro p:not(.eyebrow) {
  color: rgba(246, 243, 237, 0.76);
  font-size: 1.05rem;
}

.rating-card {
  margin-top: 30px;
  padding: 24px;
  background: rgba(246, 243, 237, 0.08);
  border: 1px solid rgba(246, 243, 237, 0.13);
  border-radius: var(--radius-md);
  backdrop-filter: blur(14px);
}

.rating-card strong,
.rating-card span {
  display: block;
}

.rating-card strong {
  margin-top: 8px;
  color: #fff;
  font-size: 1.25rem;
}

.rating-card span {
  color: rgba(246, 243, 237, 0.68);
}

.stars {
  color: #f7b500;
  letter-spacing: 0.08em;
  line-height: 1;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.review-card {
  padding: 24px;
  color: var(--charcoal-3);
  background: rgba(246, 243, 237, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.16);
}

.review-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
}

.review-topline strong,
.review-topline span {
  display: block;
}

.review-topline strong {
  color: var(--charcoal-3);
  font-size: 1rem;
}

.review-topline span {
  color: var(--muted-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.review-card p {
  margin: 0;
  color: #4e555c;
  font-size: 0.96rem;
}

@media (max-width: 1080px) {
  .ba-grid,
  .reviews-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .ba-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .ba-comparison {
    min-height: auto;
  }

  .ba-photo {
    min-height: 260px;
  }

  .ba-note {
    display: block;
  }

  .ba-note strong {
    display: block;
    margin-bottom: 4px;
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .ba-comparison {
    grid-template-columns: 1fr;
  }

  .ba-photo + .ba-photo {
    border-left: 0;
    border-top: 1px solid rgba(246, 243, 237, 0.34);
  }

  .review-topline {
    display: grid;
  }
}

/* -------------------------------------------------------
   V6 addition: immediate trust credentials under hero
-------------------------------------------------------- */
.credential-band {
  position: relative;
  z-index: 5;
  padding: 0 0 34px;
  /* background: linear-gradient(180deg, transparent 0%, transparent 46px, var(--off-white) 46px, var(--off-white) 100%); */
}

.credential-card {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: var(--muted-light);
  border: 1px solid rgba(79, 89, 98, 0.14);
  /* border-radius: var(--radius-lg);
  box-shadow: 0 22px 60px rgba(32, 37, 42, 0.16);
  backdrop-filter: blur(14px); */
  width:100%;
}

.credential-copy .eyebrow {
  margin-bottom: 10px;
  /* color: var(--pink); */
}

.credential-copy h2 {
  max-width: 620px;
  margin-bottom: 10px;
  color: var(--charcoal-3);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 0.98;
}

.credential-copy p:not(.eyebrow) {
  margin: 0;
  color: #66686b;
  font-size: 1rem;
}

.credential-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.credential-logo {
  min-height: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  /* background: #fff;
  border: 1px solid rgba(79, 89, 98, 0.12); */
  border-radius: 22px;
  /* box-shadow: 0 12px 30px rgba(49, 57, 65, 0.08); */
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.credential-logo:hover,
.credential-logo:focus-visible {
  transform: translateY(-3px);
  border-color: var(--pink-line);
  /* box-shadow: 0 18px 42px rgba(49, 57, 65, 0.13); */
}

.credential-logo img {
  width: auto;
  max-width: 100%;
  max-height: 94px;
  object-fit: contain;
}

.credential-logo-gaf img {
  max-height: 112px;
}

.credential-logo-nwir img {
  max-height: 78px;
}

.credential-logo-bbb img {
  max-height: 90px;
  text-align: center;
}

@media (max-width: 1080px) {
  .credential-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .credential-band {
    margin-top: 0;
    padding: 28px 0;
    background: var(--off-white);
  }

  .credential-card {
    padding: 22px;
    border-radius: 24px;
  }

  .credential-logos {
    grid-template-columns: 1fr;
  }

  .credential-logo {
    min-height: 124px;
  }
}

