/* ===========================================================
   Level Up Garage Door — faithful reconstruction
   Brand palette: green #3cb34b on ink #212627 (no blue)
   Layout language: Pella / WindowNation / AZWDS (photo-forward,
   product galleries, family-owned trust, bold CTAs)
   =========================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* "blue" tokens remapped to green so no blue remains anywhere */
  --blue: #3cb34b;
  --blue-dark: #2f9a3d;
  --blue-deep: #237a2f;
  --green: #3cb34b;
  --green-dark: #2f9a3d;
  --ink: #212627;
  --ink-2: #2c3334;
  --paper: #ffffff;
  --paper-2: #f3f7fb;
  --paper-3: #e9eff5;
  --muted: #5d6b75;
  --muted-light: #9fb0bd;
  --line: #e2e8ef;
  --line-dark: #38413f;
  --text: #232a2c;
  --star: #ffb400;
  --radius: 14px;
  --shadow-sm: 0 6px 18px -10px rgba(33, 38, 39, 0.4);
  --shadow: 0 24px 50px -24px rgba(15, 35, 55, 0.45);
  --wrap: 1200px;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.01em;
}
a {
  color: var(--blue-dark);
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
.green {
  color: var(--green);
}
.blue {
  color: var(--blue);
}

/* ---------- Header (clean, professional, light) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(15, 35, 55, 0.04);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  height: 44px;
  width: auto;
}
nav.main {
  display: flex;
  align-items: center;
  gap: 21px;
  margin-left: auto;
}
nav.main a {
  color: var(--ink);
  font-weight: 600;
  font-size: 14.5px;
  white-space: nowrap;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
nav.main a:hover,
nav.main a[aria-current='page'] {
  color: var(--green-dark);
  border-color: var(--green);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}
.header-phone {
  color: var(--ink);
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  white-space: nowrap;
  line-height: 1.05;
}
.header-phone small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  text-transform: uppercase;
}
.hamburger {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 9px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger span::before,
.hamburger span::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger span::before {
  top: -6px;
}
.hamburger span::after {
  top: 6px;
}
.hamburger[aria-expanded='true'] span {
  background: transparent;
}
.hamburger[aria-expanded='true'] span::before {
  transform: translateY(6px) rotate(45deg);
}
.hamburger[aria-expanded='true'] span::after {
  transform: translateY(-6px) rotate(-45deg);
}
.mobile-nav {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.mobile-nav.open {
  display: block;
}
.mobile-nav a {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 24px;
  border-top: 1px solid var(--line);
}
.mobile-nav a:hover {
  background: var(--paper-2);
  color: var(--green-dark);
}
.mobile-nav .mcta {
  display: flex;
  gap: 12px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--line);
}
.mobile-nav .mcta .btn {
  flex: 1;
  padding: 13px;
  font-size: 14.5px;
}
@media (max-width: 1199px) {
  nav.main {
    display: none;
  }
  /* On mobile/tablet, collapse the phone link into a compact call icon and
     hide the Free Estimate button — both live in the slide-down menu instead,
     so the header stays clean: [logo] ............ [call] [menu] */
  .header-actions {
    gap: 10px;
  }
  .header-actions .btn {
    display: none;
  }
  .header-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 9px;
    background: var(--green);
    box-shadow: 0 10px 20px -10px rgba(60, 179, 75, 0.8);
    font-size: 0;
    line-height: 0;
  }
  .header-phone small {
    display: none;
  }
  .header-phone::before {
    content: '';
    width: 21px;
    height: 21px;
    background: #fff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24 11.36 11.36 0 0 0 3.57.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.45.57 3.57a1 1 0 0 1-.24 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24 11.36 11.36 0 0 0 3.57.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.45.57 3.57a1 1 0 0 1-.24 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
  }
  .hamburger {
    display: flex;
  }
}
@media (min-width: 1200px) {
  .mobile-nav {
    display: none !important;
  }
}

/* form status message */
.form-status {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  display: none;
}
.form-status.show {
  display: block;
}
.form-status.ok {
  color: var(--green-dark);
}
.form-status.err {
  color: #c23434;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s;
  text-align: center;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(60, 179, 75, 0.8);
}
.btn-green:hover {
  background: var(--green-dark);
}
.btn-blue {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(33, 38, 39, 0.55);
}
.btn-blue:hover {
  background: #000;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}
.btn-ghost-dark {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost-dark:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 65%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(20, 26, 30, 0.92) 0%,
    rgba(20, 26, 30, 0.78) 38%,
    rgba(20, 26, 30, 0.32) 100%
  );
}
.hero .wrap {
  position: relative;
  z-index: 2;
  padding: 58px 24px 64px;
}
.hero-inner {
  max-width: 600px;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  max-width: 100%;
  background: rgba(60, 179, 75, 0.16);
  border: 1px solid rgba(60, 179, 75, 0.45);
  color: #d8f3dd;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 15px;
}
.hero .eyebrow .ic-star {
  width: 13px;
  height: 13px;
  fill: var(--star);
}
.hero .eyebrow .eb-txt {
  white-space: nowrap;
}
.hero h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
}
.hero h1 .u {
  color: var(--green);
}
.hero p.sub {
  color: #d6e0e8;
  font-size: 19px;
  margin: 18px 0 30px;
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-badges {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hero-badges .hb {
  display: flex;
  align-items: center;
  gap: 11px;
}
.hero-badges .hb .n {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  line-height: 1;
}
.hero-badges .hb .t {
  font-size: 12.5px;
  color: var(--muted-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-badges .stars {
  color: var(--star);
  font-size: 18px;
  letter-spacing: 1px;
}

/* Floating estimate card on hero */
.hero-card {
  position: absolute;
  right: max(24px, calc((100vw - var(--wrap)) / 2 + 24px));
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 320px;
  background: #fff;
  color: var(--text);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.hero-card h3 {
  font-size: 21px;
  margin-bottom: 4px;
}
.hero-card .muted {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 14px;
}
.hero-card label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 10px 0 5px;
}
.hero-card input,
.hero-card select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
}
.hero-card .btn {
  width: 100%;
  margin-top: 16px;
  padding: 13px;
}
@media (max-width: 1180px) {
  .hero-card {
    position: relative;
    z-index: 3;
    transform: none;
    top: auto;
    left: auto;
    right: auto;
    width: auto;
    max-width: 560px;
    margin: 30px auto 0;
  }
  .hero .wrap {
    padding-bottom: 32px;
  }
  .hero {
    padding-bottom: 32px;
  }
}
/* Desktop: the estimate card is taller than the headline column, so reserve
   enough hero height that the vertically-centered card can never ride up
   under the sticky header. Center the headline column to match it. */
@media (min-width: 1181px) {
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 700px;
  }
  .hero .wrap {
    width: 100%;
  }
}

/* ---------- Trust / brand strip ---------- */
.trust-strip {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.trust-strip .wrap {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink);
  font-size: 14.5px;
}
.trust-line svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}
.brand-logos {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.brand-logos img {
  height: 30px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(1);
  transition: opacity 0.15s, filter 0.15s;
}
.brand-logos img:hover {
  opacity: 1;
  filter: none;
}

/* ---------- Sections ---------- */
section.block {
  padding: 78px 0;
}
section.block.alt {
  background: var(--paper-2);
}
section.block.ink {
  background: var(--ink);
  color: #fff;
}
.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
}
.ink .section-head h2 {
  color: #fff;
}
.section-head p {
  color: var(--muted);
  font-size: 18px;
  margin-top: 14px;
}
.ink .section-head p {
  color: #c3ced7;
}

/* ---------- Service cards (photo) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.svc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  display: flex;
  flex-direction: column;
}
.svc:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.svc .ph {
  height: 168px;
  background-size: cover;
  background-position: center;
}
.svc .bd {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc h3 {
  font-size: 21px;
  margin-bottom: 8px;
}
.svc p {
  color: var(--muted);
  font-size: 14.5px;
  flex: 1;
}
.svc .lk {
  margin-top: 14px;
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 14.5px;
}

/* ---------- Style gallery ---------- */
.style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.style {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}
.style img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.style:hover img {
  transform: scale(1.06);
}
.style .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 16px 14px;
  background: linear-gradient(transparent, rgba(20, 26, 30, 0.88));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

/* ---------- Products / pricing ---------- */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.prod {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.16s, border-color 0.16s;
}
.prod:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue);
}
.prod .pimg {
  height: 150px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.prod .pimg img {
  max-height: 150px;
  width: auto;
  object-fit: contain;
}
.prod h3 {
  font-size: 18px;
  margin-bottom: 4px;
}
.prod .desc {
  color: var(--muted);
  font-size: 14px;
  flex: 1;
}
.prod .pricerow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.prod .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--ink);
}
.prod .price small {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.prod .tag {
  background: rgba(60, 179, 75, 0.12);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

/* ---------- Split / why ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
@media (max-width: 880px) {
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.split img.portrait {
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: 100%;
}
.founder-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.founder-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  background: #fff;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 22px;
}
.feature-list li {
  display: flex;
  gap: 14px;
}
.feature-list .fic {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.feature-list h4 {
  font-size: 18px;
  margin-bottom: 2px;
}
.feature-list p {
  color: var(--muted);
  font-size: 14.5px;
}

/* ---------- Reviews ---------- */
.rev-head {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 6px;
}
.rev-head .big {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 44px;
  color: var(--ink);
}
.rev-head .stars {
  color: var(--star);
  font-size: 26px;
  letter-spacing: 2px;
}
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.review .stars {
  color: var(--star);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review p {
  font-size: 16px;
  color: var(--text);
  font-style: italic;
}
.review footer {
  margin-top: 16px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.review .gicon {
  width: 22px;
  height: 22px;
}

/* ---------- Video ---------- */
.video-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 880px) {
  .video-wrap {
    grid-template-columns: 1fr;
  }
}
.video-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: var(--shadow);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Areas ---------- */
.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.areas span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(115deg, var(--blue-deep), var(--blue) 60%, var(--green));
  color: #fff;
  border-radius: 18px;
  padding: 52px;
  text-align: center;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
}
.cta-band p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  margin: 14px auto 28px;
  font-size: 18px;
}
.cta-band .hero-ctas {
  justify-content: center;
}

/* ---------- FAQ ---------- */
.faq-cats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.faq-cats a {
  background: var(--ink);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}
.faq-cats a:hover {
  background: var(--green);
}
.faq-group {
  margin-bottom: 40px;
}
.faq-group h2 {
  font-size: 28px;
  border-bottom: 3px solid var(--green);
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 18px;
}
details.faq {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 4px 20px;
  margin-bottom: 12px;
  background: #fff;
}
details.faq[open] {
  border-color: var(--blue);
}
details.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
}
details.faq summary::-webkit-details-marker {
  display: none;
}
details.faq summary::after {
  content: '+';
  color: var(--green);
  font-size: 26px;
  line-height: 1;
}
details.faq[open] summary::after {
  content: '\2013';
}
details.faq .ans {
  color: var(--muted);
  font-size: 15px;
  padding: 0 0 16px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.info-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.info-row .fic {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(60, 179, 75, 0.12);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: 18px;
}
.info-row h4 {
  font-size: 17px;
}
.info-row p,
.info-row a {
  color: var(--muted);
  font-size: 15px;
}
form.lead {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
form.lead label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin: 14px 0 6px;
  color: var(--ink);
}
form.lead input,
form.lead select,
form.lead textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 15px;
}
form.lead input:focus,
form.lead select:focus,
form.lead textarea:focus {
  outline: 2px solid var(--blue);
  border-color: var(--blue);
}
form.lead .ssl {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 12px;
}

/* ---------- Page hero (interior) ---------- */
.page-hero {
  position: relative;
  color: #fff;
  background: var(--ink);
}
.page-hero .pbg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero .pbg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 26, 30, 0.92), rgba(20, 26, 30, 0.6));
}
.page-hero .wrap {
  position: relative;
  z-index: 2;
  padding: 64px 24px;
}
.page-hero .crumbs {
  font-size: 13px;
  color: var(--muted-light);
  margin-bottom: 12px;
}
.page-hero .crumbs a {
  color: var(--green);
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
}
.page-hero p {
  color: #d6e0e8;
  max-width: 640px;
  margin-top: 12px;
  font-size: 18px;
}
.prose {
  max-width: 780px;
}
.prose h3 {
  font-size: 24px;
  margin: 28px 0 8px;
}
.prose p {
  color: var(--muted);
  margin-bottom: 14px;
}
/* ---------- Legal / policy pages ---------- */
.prose.legal h2 {
  font-size: 21px;
  margin: 32px 0 10px;
  color: var(--ink);
}
.prose.legal h2:first-of-type {
  margin-top: 8px;
}
.prose.legal p,
.prose.legal li {
  color: var(--muted);
  line-height: 1.7;
}
.prose.legal ul {
  margin: 0 0 16px 0;
  padding-left: 22px;
  list-style: disc;
}
.prose.legal li {
  margin-bottom: 8px;
}
.prose.legal a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose.legal strong {
  color: var(--ink);
}
.legal-eff {
  font-size: 13.5px;
  padding: 12px 16px;
  background: var(--paper-2);
  border-radius: 10px;
  border: 1px solid var(--line);
}
/* ---------- Form consent / TCPA disclosure ---------- */
.consent {
  margin-top: 12px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
}
.consent a {
  color: var(--green);
  text-decoration: underline;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #aebccb;
  padding: 60px 0 28px;
  font-size: 14.5px;
}
.site-footer .cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 34px;
}
@media (max-width: 820px) {
  .site-footer .cols {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
  }
}
@media (max-width: 540px) {
  .site-footer {
    padding: 48px 0 26px;
  }
  .site-footer .cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer .cols > div:first-child {
    text-align: center;
  }
  .site-footer .cols > div:first-child p {
    margin-left: auto;
    margin-right: auto;
  }
  .site-footer .socials {
    justify-content: center;
  }
}
.site-footer h4 {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer a {
  color: #aebccb;
  display: block;
  padding: 4px 0;
}
.site-footer a:hover {
  color: var(--green);
}
.site-footer .brand {
  display: inline-block;
}
.site-footer .brand img {
  height: 44px;
  width: auto;
  margin-bottom: 14px;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  display: grid;
  place-items: center;
  padding: 0;
}
.socials a:hover {
  background: var(--green);
  border-color: var(--green);
}
.socials svg {
  width: 19px;
  height: 19px;
  fill: #cdd9e6;
}
.socials a:hover svg {
  fill: #fff;
}
.foot-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 34px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line-dark);
}
.foot-trust .ft-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.foot-trust .ft-item > svg {
  width: 26px;
  height: 26px;
  color: var(--green);
  flex: none;
}
.foot-trust .ft-item > span {
  display: flex;
  flex-direction: column;
  line-height: 1.32;
}
.foot-trust .ft-item b {
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
}
.foot-trust .ft-item small {
  color: #93a3b4;
  font-size: 12px;
}
.foot-trust .ft-stars {
  font-size: 16px;
  margin-bottom: 1px;
}
@media (max-width: 820px) {
  .foot-trust {
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
  }
}
@media (max-width: 540px) {
  .foot-trust {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.badge-roc {
  display: inline-block;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 7px 13px;
  color: #cdd9e6;
  font-size: 12.5px;
  margin-top: 14px;
}
.foot-bottom {
  border-top: 1px solid var(--line-dark);
  margin-top: 38px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted-light);
}

/* ---------- Footer legal links ---------- */
.foot-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}
.foot-legal a {
  color: var(--muted-light);
  display: inline;
  padding: 0;
}
.foot-legal a:hover {
  color: var(--green);
}

/* ---------- Footer credit ---------- */
.foot-credit a {
  color: var(--green);
  display: inline;
}

/* ===========================================================
   Mobile polish — no horizontal scroll, no wrapping issues,
   comfortable tap targets, readable type
   =========================================================== */
html,
body {
  overflow-x: hidden;
}
img,
iframe {
  max-width: 100%;
}

@media (max-width: 640px) {
  .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }
  .site-header .wrap {
    gap: 12px;
    padding: 11px 18px;
  }
  .brand img {
    height: 38px;
  }
  .hero {
    padding-bottom: 0;
  }
  .hero .wrap {
    padding: 38px 18px 26px;
  }
  .hero-bg {
    background-position: center 40%;
  }
  .hero h1 {
    font-size: clamp(28px, 8vw, 36px);
  }
  .hero p.sub {
    font-size: 15.5px;
    margin: 12px 0 20px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-badges {
    gap: 14px 20px;
    margin-top: 20px;
  }
  .hero-card {
    margin: 0 !important;
    max-width: none;
    border-radius: 18px 18px 0 0;
    border-top: 3px solid var(--green);
    box-shadow: 0 -10px 30px -18px rgba(0, 0, 0, 0.5);
    padding: 24px 18px 28px !important;
  }
  .hero-card h3 {
    font-size: 22px;
  }
  .section-head h2,
  .block h2 {
    font-size: clamp(24px, 6.5vw, 32px);
  }
  .foot-bottom,
  .trust-strip .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Gallery / cards / chips (generated pages) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.gal-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.gal-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gal-item:hover img {
  transform: scale(1.04);
}
.gal-item figcaption {
  padding: 10px 14px;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink-soft, #4a4f55);
  border-top: 1px solid var(--line);
}
.gal-item .gal-src {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}
.post-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.post-card .pc-body {
  padding: 20px 22px 24px;
}
.post-card .pc-meta {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.post-card h3 {
  font-size: 19px;
  line-height: 1.2;
}
.post-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin-top: 8px;
}
.post-card .readmore {
  display: inline-block;
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 14px;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.area-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.area-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}
.area-card .ac-body {
  padding: 18px 20px 22px;
}
.area-card h3 {
  font-size: 20px;
}
.area-card p {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 4px;
}
.area-card .readmore {
  display: inline-block;
  margin-top: 10px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 14px;
}
.svc-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-soft, #e9f6ee);
  color: var(--green-dark);
  margin-bottom: 12px;
}
.svc-ic svg {
  width: 24px;
  height: 24px;
}

.chip {
  display: inline-block;
  background: rgba(60, 179, 75, 0.12);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
  margin-right: 6px;
}

.areas a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.areas a:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

/* ---------- SVG stars (replaces ★ glyphs) ---------- */
.stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  line-height: 0;
}
.stars .ic-star {
  width: 1em;
  height: 1em;
  fill: var(--star);
}
.rev-head .stars,
.review .stars,
.hero-badges .stars {
  letter-spacing: normal;
}

/* ---------- Icon glyphs inside circular badges ---------- */
.fic svg {
  width: 20px;
  height: 20px;
}
.feature-list .fic svg {
  color: #fff;
}
.info-row .fic svg {
  color: var(--green-dark);
}
.ssl-ic {
  display: inline-flex;
  vertical-align: -3px;
  color: var(--muted);
}
.ssl-ic svg {
  width: 14px;
  height: 14px;
}

/* ---------- Shop / products ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-card .pc-img {
  aspect-ratio: 4 / 3;
  background: var(--paper-2);
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
}
.product-card .pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card .pc-info {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card .pc-brand {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.product-card h3 {
  font-size: 18px;
  margin: 6px 0 8px;
  line-height: 1.25;
}
.product-card .pc-info p {
  color: var(--muted);
  font-size: 14px;
  flex: 1;
}
.product-card .pc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}
.product-card .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
}
.shop-note {
  margin-top: 26px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.shop-note a {
  color: var(--green-dark);
  font-weight: 600;
}

/* ---------- Home FAQ ---------- */
.qa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px 28px;
}
.qa {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
}
.qa h3 {
  font-size: 17px;
  margin-bottom: 8px;
  line-height: 1.3;
}
.qa p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}
.qa p a {
  color: var(--green-dark);
  font-weight: 600;
}

/* ---------- Video grid (real YouTube videos) ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.video-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--ink);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.vc-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}
.vc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vc-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(20, 26, 30, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.9);
}
.vc-play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 17px;
  border-color: transparent transparent transparent #fff;
}
.video-card:hover .vc-play {
  background: var(--green);
}
.vc-title {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.35;
}

/* ---------- Mobile centering & polish ---------- */
@media (max-width: 640px) {
  .cta-band {
    padding: 34px 20px;
  }
  .page-hero .wrap {
    padding: 44px 18px;
    text-align: center;
  }
  .page-hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .page-hero .crumbs {
    justify-content: center;
  }
  .page-hero .hero-ctas {
    justify-content: center;
  }
}
