/* First Class Roofing v2 */
:root {
  --green: #aac527;
  --green-dark: #8fa820;
  --green-soft: #65bc7b;
  --green-glow: rgba(170, 197, 39, 0.28);
  --green-focus-bg: #f3f7e6;
  --green-focus-border: #9eb82a;
  --dark: #141617;
  --dark-2: #212326;
  --dark-3: #2e3136;
  --grey: #434549;
  --grey-mid: #6b6f76;
  --grey-light: #e4e6ea;
  --white: #ffffff;
  --cream: #f4f5f2;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 2px 16px rgba(20, 22, 23, 0.06);
  --shadow-lg: 0 16px 48px rgba(20, 22, 23, 0.14);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --header-h: 72px;
  --transition: 0.2s ease;
  --container-max: 1200px;
  --gutter: clamp(1.25rem, 4.5vw, 1.75rem);
}

@media (min-width: 768px) {
  :root { --gutter: clamp(1.5rem, 3vw, 2.75rem); }
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-underline-offset: 3px; }
a:hover { color: var(--dark); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-top: 0;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: 1.125rem; }
p { margin: 0 0 1.1rem; }
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: max(var(--gutter), env(safe-area-inset-left, 0px))
    max(var(--gutter), env(safe-area-inset-right, 0px));
}
.skip-link {
  position: absolute; left: -9999px; z-index: 9999;
  padding: 0.75rem 1rem; background: var(--green); color: var(--dark);
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.7rem 1.35rem; font-family: var(--font); font-weight: 600;
  font-size: 0.9375rem; border-radius: 8px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green); color: var(--dark); border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-dark); border-color: var(--green-dark);
  color: var(--dark); transform: translateY(-1px);
}
.btn--outline {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45);
}
.btn--outline:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.btn--dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn--dark:hover { background: var(--dark-2); color: var(--white); }
.btn--lg { padding: 0.9rem 1.75rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--submit { margin-top: 0.25rem; padding: 0.85rem 1rem; font-size: 1rem; }

/* Top bar */
.top-bar {
  background: var(--dark); color: rgba(255,255,255,0.8);
  font-size: 0.8125rem; padding: 0.35rem 0;
}
.top-bar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.top-bar__phone {
  color: var(--green); font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.top-bar__phone:hover { color: var(--white); }
.top-bar__tag { opacity: 0.75; }

/* Header — single row */
.header-shell {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  box-shadow: var(--shadow);
}
.site-header {
  background: transparent;
}
@media (min-width: 1025px) {
  .header-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
  }
  .site-header { display: contents; }
  .top-bar { grid-column: 1 / -1; }
  .header-main {
    display: contents;
  }
  .header-main > .logo {
    grid-column: 1;
    grid-row: 2;
    padding-left: max(var(--gutter), env(safe-area-inset-left, 0px), calc((100vw - var(--container-max)) / 2 + var(--gutter)));
  }
  .header-main > .header-cta {
    grid-column: 3;
    grid-row: 2;
    padding-right: max(var(--gutter), env(safe-area-inset-right, 0px), calc((100vw - var(--container-max)) / 2 + var(--gutter)));
  }
  .header-shell > .site-nav {
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
    position: static;
    transform: none;
    visibility: visible;
    width: auto;
    padding: 0;
    box-shadow: none;
    background: transparent;
    overflow: visible;
    pointer-events: auto;
  }
  .header-shell > .nav-backdrop { display: none !important; }
}
.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 0.65rem 0;
  min-height: var(--header-h);
  min-width: 0;
}
.logo {
  display: inline-flex; align-items: center; gap: 0.65rem;
  text-decoration: none; color: var(--dark); flex-shrink: 0;
}
.logo__mark { width: 44px; height: 44px; flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.05rem; letter-spacing: -0.03em; color: var(--dark);
}
.logo__tagline {
  font-size: 0.6875rem; font-weight: 600; color: var(--grey-mid);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.header-cta {
  flex-shrink: 0;
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; cursor: pointer;
  justify-self: end;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--dark);
  border-radius: 2px; transition: var(--transition);
}
.site-nav { justify-self: center; min-width: 0; }
.site-nav__list {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: nowrap; gap: 0.05rem;
  list-style: none; margin: 0; padding: 0;
}
.site-nav__list > li > a,
.dropdown-trigger {
  display: block; padding: 0.45rem 0.65rem;
  font-weight: 500; font-size: 0.875rem;
  color: var(--dark-2); text-decoration: none;
  background: none; border: none; cursor: pointer;
  font-family: inherit; border-radius: 6px;
  white-space: nowrap;
}
.site-nav__list a:hover,
.dropdown-trigger:hover { background: var(--cream); color: var(--dark); }
.site-nav__list a.is-active { color: var(--green-dark); font-weight: 600; }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 4px); left: 0; min-width: 220px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 0.4rem;
  list-style: none; margin: 0; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: var(--transition);
  max-height: 70vh; overflow-y: auto; border: 1px solid var(--grey-light);
}
.has-dropdown:hover .dropdown,
.has-dropdown.is-open .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  padding: 0.45rem 0.65rem; font-size: 0.8125rem; border-radius: 6px;
  display: block; text-decoration: none; color: var(--dark-2);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(20, 22, 23, 0.94) 0%,
    rgba(20, 22, 23, 0.82) 45%,
    rgba(20, 22, 23, 0.55) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(2.75rem, 7vh, 4.75rem);
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(170, 197, 39, 0.12); color: var(--green);
  padding: 0.3rem 0.75rem; border-radius: 6px;
  font-size: 0.75rem; font-weight: 600; margin-bottom: 1rem;
  border: 1px solid rgba(170, 197, 39, 0.25);
}
.hero h1 { color: var(--white); margin-bottom: 0.85rem; }
.hero h1 span { color: var(--green); }
.hero__lead {
  font-size: 1.0625rem; opacity: 0.92; max-width: 34rem;
  line-height: 1.65; margin-bottom: 1.25rem;
}
.hero__stats {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; margin-top: 1.75rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__stat strong {
  display: block; font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 800; color: var(--green);
}
.hero__stat span { font-size: 0.8125rem; opacity: 0.8; }

.hero__content {
  min-width: 0;
  padding-right: clamp(0rem, 2vw, 1rem);
}
.hero__form-wrap {
  min-width: 0;
  max-width: 400px;
  justify-self: end;
  width: 100%;
  background: linear-gradient(165deg, #ffffff 0%, #f8faf5 100%);
  border-radius: calc(var(--radius-lg) + 4px);
  padding: 0;
  box-shadow:
    0 0 0 1px rgba(20, 22, 23, 0.06),
    0 8px 24px rgba(20, 22, 23, 0.08),
    0 28px 56px rgba(20, 22, 23, 0.22);
  color: var(--dark-2);
  border: none;
  overflow: hidden;
  position: relative;
}
.hero__form-wrap::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-soft) 100%);
}
.hero__form-wrap .quote-form {
  padding: 1.5rem 1.5rem 1.35rem;
}
.hero__form-wrap .quote-form__title {
  color: var(--dark);
  font-size: 1.35rem;
  font-weight: 800;
}

/* Quote form */
.quote-form { width: 100%; max-width: 100%; }
.quote-form__header {
  margin-bottom: 1.15rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--grey-light);
}
.quote-form__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--green) 0%, #b8d42f 100%);
  color: var(--dark);
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 8px var(--green-glow);
}
.quote-form__badge svg { flex-shrink: 0; }
.quote-form__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
}
.quote-form__sub {
  font-size: 0.875rem;
  color: var(--grey-mid);
  margin: 0;
  line-height: 1.5;
}
.quote-form__fields {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.quote-form__fields--paired {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 0.75rem;
}
.quote-form__fields--paired .field--full {
  grid-column: 1 / -1;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}
.field--full { width: 100%; }
.field__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
}
.field:has([required]) .field__label::after {
  content: " *";
  color: var(--green-dark);
  font-weight: 700;
}
.field__control {
  position: relative;
  display: block;
}
.field__icon {
  position: absolute;
  left: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 2.15rem;
  height: 2.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--cream);
  color: var(--grey-mid);
  pointer-events: none;
  transition:
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}
.field__control--textarea .field__icon {
  top: 0.7rem;
  transform: none;
}
.field__control input,
.field__control select,
.field__control textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.85rem 1rem 0.85rem 3.35rem;
  border: 2px solid #dde0e6;
  border-radius: 10px;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--white);
  box-shadow: inset 0 1px 2px rgba(20, 22, 23, 0.04);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}
.field__control--select select {
  padding-right: 2.75rem;
  cursor: pointer;
  appearance: none;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23434549' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 16px;
}
.field__control textarea {
  min-height: 96px;
  resize: vertical;
  line-height: 1.5;
  padding-top: 0.85rem;
}
.field__control:hover input,
.field__control:hover select,
.field__control:hover textarea {
  border-color: #b8bcc4;
}
.field__control:hover .field__icon {
  background: #eef0e8;
  color: var(--grey);
}
.field__control input::placeholder,
.field__control textarea::placeholder {
  color: #9aa3b0;
  font-weight: 400;
}
.field__control:focus-within input,
.field__control:focus-within select,
.field__control:focus-within textarea {
  outline: none;
  border-color: var(--green-focus-border);
  background: var(--green-focus-bg);
  box-shadow:
    0 0 0 4px var(--green-glow),
    inset 0 0 0 1px rgba(170, 197, 39, 0.12);
}
.field__control:focus-within .field__icon {
  background: var(--green);
  color: var(--dark);
  box-shadow: 0 2px 8px var(--green-glow);
}
.field__control--select:focus-within select {
  background-color: var(--green-focus-bg);
}
.quote-form__actions {
  margin-top: 1.1rem;
}
.btn--submit {
  margin-top: 0;
  padding: 1rem 1.25rem;
  font-size: 1.0625rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  border-radius: 10px;
  box-shadow:
    0 4px 0 var(--green-dark),
    0 8px 24px var(--green-glow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn--submit:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 var(--green-dark),
    0 12px 32px var(--green-glow);
}
.btn--submit:active {
  transform: translateY(2px);
  box-shadow:
    0 1px 0 var(--green-dark),
    0 4px 12px var(--green-glow);
}
.quote-form__call {
  text-align: center;
  font-size: 0.875rem;
  color: var(--grey-mid);
  margin: 0.85rem 0 0;
  font-weight: 500;
}
.quote-form__call a {
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
}
.quote-form__call a:hover { color: var(--green-dark); }
.quote-form__fine {
  font-size: 0.6875rem;
  color: var(--grey-mid);
  margin: 0.85rem 0 0;
  line-height: 1.5;
  text-align: center;
}
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* Sidebar / inner page forms */
.sidebar-card .quote-form__header {
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
}
.sidebar-card .field__control input,
.sidebar-card .field__control select,
.sidebar-card .field__control textarea {
  font-size: 0.9375rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 3.1rem;
}
.sidebar-card .field__icon {
  width: 2rem;
  height: 2rem;
  left: 0.5rem;
}

/* Trust strip — redesigned */
.trust-strip {
  background: var(--cream);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--grey-light);
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: var(--transition);
}
.trust-card:hover {
  border-color: rgba(170, 197, 39, 0.5);
  box-shadow: var(--shadow);
}
.trust-card__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.trust-card__icon svg { width: 22px; height: 22px; }
.trust-card__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; color: var(--dark); margin: 0 0 0.2rem;
  line-height: 1.25;
}
.trust-card__text {
  font-size: 0.8125rem; color: var(--grey-mid); margin: 0; line-height: 1.45;
}

/* Sections */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--dark { background: var(--dark); color: rgba(255,255,255,0.9); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--cream { background: var(--cream); }
.section__eyebrow {
  color: var(--green-dark); font-weight: 700; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.4rem;
}
.section__head { max-width: 600px; margin-bottom: 2.5rem; }
.section__head p { color: var(--grey-mid); font-size: 1.05rem; }

/* SEO long-form */
.seo-content h2 { margin-top: 2.25rem; }
.seo-content h2:first-child { margin-top: 1.5rem; }
.seo-content p { color: var(--dark-2); }
.seo-content a { font-weight: 500; }
.prose-list { list-style: none; padding: 0; margin: 1rem 0 2rem; }
.prose-list li {
  padding: 0.65rem 0 0.65rem 1.75rem; position: relative;
  border-bottom: 1px solid var(--grey-light);
}
.prose-list li::before {
  content: ""; position: absolute; left: 0; top: 1rem;
  width: 8px; height: 8px; background: var(--green); border-radius: 2px;
}
.word-count-badge {
  display: inline-block; font-size: 0.6875rem; color: var(--grey-mid);
  margin-bottom: 1rem; padding: 0.2rem 0.5rem; background: var(--cream);
  border-radius: 4px;
}

/* Service cards */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition); text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  border: 1px solid var(--grey-light);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(170, 197, 39, 0.45);
}
.service-card__img {
  aspect-ratio: 16/10; background: var(--cream);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
.service-card__img img { max-height: 72px; object-fit: contain; }
.service-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.service-card__body h3 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.service-card__body p { color: var(--grey-mid); font-size: 0.875rem; flex: 1; margin: 0; }
.service-card__link {
  margin-top: 0.85rem; font-weight: 600; font-size: 0.875rem;
  color: var(--green-dark);
}

.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.process-step {
  background: var(--white); padding: 1.5rem;
  border-radius: var(--radius-lg); border: 1px solid var(--grey-light);
}
.process-step__num {
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 800;
  color: var(--green-dark); letter-spacing: 0.05em; margin-bottom: 0.5rem;
}
.process-step h3 { font-size: 1rem; margin-bottom: 0.35rem; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testimonial {
  background: var(--white); padding: 1.5rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid var(--grey-light);
}
.testimonial__stars { color: var(--green); margin-bottom: 0.5rem; }
.testimonial p { font-size: 0.9375rem; color: var(--grey-mid); margin-bottom: 0.75rem; }
.testimonial cite { font-style: normal; font-weight: 600; font-size: 0.8125rem; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }

.areas-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.area-pill {
  padding: 0.55rem 1rem; background: var(--white);
  border: 1px solid var(--grey-light); border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: 0.875rem;
  color: var(--dark-2); transition: var(--transition);
}
.area-pill:hover { border-color: var(--green); background: var(--green); color: var(--dark); }

.cta-band {
  background: var(--dark); padding: 3rem 2rem; border-radius: var(--radius-lg);
  text-align: center; color: var(--white);
}
.cta-band h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-band p { opacity: 0.85; max-width: 480px; margin: 0 auto 1.25rem; font-size: 0.9375rem; }
.cta-band__actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

.page-hero {
  background: var(--dark); color: var(--white);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  position: relative; overflow: hidden;
}
.page-hero--image .page-hero__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.page-hero--image .page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,22,23,0.96) 0%, rgba(20,22,23,0.75) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero__breadcrumb { font-size: 0.8125rem; opacity: 0.7; margin-bottom: 0.75rem; }
.page-hero__breadcrumb a { color: var(--green); text-decoration: none; }
.page-hero__lead { font-size: 1.0625rem; opacity: 0.9; max-width: 600px; }

.content-split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(2rem, 4vw, 3.5rem); align-items: start;
}
.benefits-list { list-style: none; padding: 0; margin: 0; }
.benefits-list li {
  padding: 0.75rem 0 0.75rem 1.5rem; position: relative;
  border-bottom: 1px solid var(--grey-light); font-size: 0.9375rem;
}
.benefits-list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--green-dark); font-weight: 700;
}
.sidebar-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.35rem; position: sticky; top: calc(var(--header-h) + 1rem);
  border: 1px solid var(--grey-light); box-shadow: var(--shadow);
  min-width: 0;
}
.faq details {
  background: var(--white); border-radius: var(--radius);
  margin-bottom: 0.5rem; border: 1px solid var(--grey-light);
}
.faq summary {
  padding: 0.9rem 1rem; font-weight: 600; font-size: 0.9375rem;
  cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { padding: 0 1rem 0.9rem; margin: 0; color: var(--grey-mid); font-size: 0.9375rem; }

/* Footer */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.78); }
.footer-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 2.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap;
}
.footer-cta h2 { color: var(--white); font-size: 1.5rem; margin: 0 0 0.25rem; }
.footer-cta__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem;
  padding: 2.5rem 0;
}
.footer-grid h3 {
  color: var(--green); font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 0.75rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 0.875rem; }
.footer-grid a:hover { color: var(--green); }
.footer-brand .logo { margin-bottom: 0.75rem; }
.footer-brand .logo__name, .footer-brand .logo__tagline { color: var(--white); }
.footer-brand .logo__tagline { opacity: 0.6; }
.footer-brand p { font-size: 0.875rem; opacity: 0.7; max-width: 260px; margin: 0; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
  padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.75rem; opacity: 0.55;
}
.footer-preview a { color: var(--green); }

.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--white);
  padding: 0.5rem max(var(--gutter), env(safe-area-inset-left, 0px))
    max(0.5rem, env(safe-area-inset-bottom, 0px))
    max(var(--gutter), env(safe-area-inset-right, 0px));
  gap: 0.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  border-top: 1px solid var(--grey-light);
}
.mobile-bar a {
  flex: 1; text-decoration: none; text-align: center; border-radius: 8px;
  padding: 0.7rem; font-weight: 600; font-size: 0.875rem;
}
.mobile-bar__call {
  color: var(--dark); border: 1px solid var(--grey-light);
  display: flex; align-items: center; justify-content: center; gap: 0.3rem;
}

.thank-you { text-align: center; padding: 5rem 0; min-height: 45vh; }

.nav-backdrop {
  display: none;
}
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .header-main {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
  }
  body.nav-open { overflow: hidden; }
  body.nav-open .header-shell {
    z-index: 301;
  }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 290;
    background: rgba(20, 22, 23, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
    border: none;
    padding: 0;
    margin: 0;
  }
  .nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-backdrop[hidden] {
    display: none;
  }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, 88vw);
    z-index: 300;
    margin: 0;
    justify-self: auto;
    background: var(--white);
    box-shadow: -8px 0 32px rgba(20, 22, 23, 0.18);
    padding: calc(var(--header-h) + 1.25rem) var(--gutter) 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform var(--transition), visibility var(--transition);
  }
  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }
  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
  }
  .site-nav__list > li > a,
  .dropdown-trigger {
    padding: 0.85rem 0.5rem;
    font-size: 1.05rem;
    white-space: normal;
    text-align: left;
  }
  .has-dropdown:hover .dropdown {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0.5rem 1rem;
    display: none;
    max-height: none;
  }
  .has-dropdown.is-open .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { padding-right: 0; }
  .hero__form-wrap { max-width: none; justify-self: stretch; }
  .quote-form__fields--paired { grid-template-columns: 1fr 1fr; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .content-split { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .top-bar__tag { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .quote-form__fields--paired { grid-template-columns: 1fr; }
  .hero__form-wrap .quote-form {
    padding: 1.35rem max(1.15rem, var(--gutter)) 1.25rem;
  }
  .cta-band {
    padding-left: max(1.25rem, var(--gutter));
    padding-right: max(1.25rem, var(--gutter));
  }
  .mobile-bar { display: flex; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
  .footer-grid { grid-template-columns: 1fr; }
}
