/* ==========================================================================
   SolaLite — Editorial, refined, trust-forward
   Color system: deep navy + sun yellow + warm cream
   Type: Fraunces (display) + Manrope (text)
   ========================================================================== */

:root {
  /* Color */
  --navy: #0E1B3D;
  --navy-deep: #08122B;
  --navy-soft: #1E2A50;
  --sun: #F5B82E;
  --sun-warm: #FFE08A;
  --sun-glow: #FFC857;
  --amber: #E8923C;
  --cream: #FAF6EE;
  --cream-warm: #F5EFE0;
  --ink: #1A1F2E;
  --ink-soft: #4A5168;
  --ink-mute: #7A8195;
  --line: #E6E1D4;
  --line-soft: #EFEAD9;
  --white: #FFFFFF;

  /* Type */
  --display: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 4px;
  --radius-lg: 8px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
img, svg { display: block; max-width: 100%; }

button { font: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
  font-variation-settings: 'opsz' 144;
}

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn--primary {
  background: var(--sun);
  color: var(--navy);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.btn--primary:hover {
  background: var(--sun-glow);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245, 184, 46, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn--phone {
  background: var(--navy);
  color: var(--cream);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.btn--phone:hover {
  background: var(--sun);
  color: var(--navy);
}

.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--xl { padding: 20px 38px; font-size: 18px; }
.btn--block { width: 100%; }

/* ==========================================================================
   Promo bar
   ========================================================================== */
.promo-bar {
  background: var(--navy);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 9px 0;
  text-align: center;
}
.promo-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.promo-bar__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 12px var(--sun);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand__mark {
  filter: drop-shadow(0 1px 2px rgba(245, 184, 46, 0.25));
  transition: transform 0.4s var(--ease);
}
.brand:hover .brand__mark { transform: rotate(15deg); }
.brand__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--navy);
  font-variation-settings: 'opsz' 144;
}
.brand--light .brand__name { color: var(--cream); }

.site-nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.site-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.site-nav a:hover { color: var(--navy); }
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--sun);
  transition: width 0.3s var(--ease);
}
.site-nav a:hover::after { width: 100%; }

.site-header__cta { flex-shrink: 0; }
.site-header__cta .btn { padding: 10px 18px; font-size: 14px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px var(--gutter) 28px;
  border-top: 1px solid var(--line);
  background: var(--cream);
  gap: 4px;
}
.mobile-nav a {
  padding: 14px 0;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav .btn { margin-top: 16px; }
.mobile-nav.is-open { display: flex; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 10vw, 120px) 0 clamp(64px, 9vw, 100px);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(245, 184, 46, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(245, 184, 46, 0.08), transparent 60%),
    var(--cream);
  pointer-events: none;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 40px,
      rgba(14, 27, 61, 0.012) 40px,
      rgba(14, 27, 61, 0.012) 41px
    );
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow__pill {
  background: var(--navy);
  color: var(--cream);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
}
.eyebrow__since {
  color: var(--ink-mute);
  font-size: 11px;
}

.display {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin-bottom: 24px;
  font-variation-settings: 'opsz' 144;
}
.display em {
  font-style: italic;
  color: var(--sun);
  font-weight: 400;
  font-variation-settings: 'opsz' 144;
}

.lede {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
.hero__points li { display: flex; align-items: center; gap: 8px; }
.hero__points span { color: var(--sun); font-weight: 700; }

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 440px;
  justify-self: center;
}
.skylight-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 30px 60px rgba(14, 27, 61, 0.12));
  animation: gentleFloat 6s ease-in-out infinite;
}
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip {
  background: var(--navy);
  color: var(--cream);
  padding: 28px 0;
  border-top: 1px solid var(--navy-deep);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-strip__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  position: relative;
}
.trust-strip__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: rgba(245, 184, 46, 0.25);
}
.trust-strip__item strong {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  color: var(--sun);
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144;
}
.trust-strip__item span {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.7);
  font-weight: 500;
}

/* ==========================================================================
   Section primitives
   ========================================================================== */
.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-eyebrow--light { color: rgba(250, 246, 238, 0.6); }

.section-title {
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 22ch;
  margin-bottom: 20px;
}
.section-title--light { color: var(--cream); }

.section-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 32px;
}

.section-head {
  margin-bottom: 56px;
  max-width: 720px;
}

/* ==========================================================================
   About
   ========================================================================== */
.about {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.about__inner { max-width: 800px; }

/* ==========================================================================
   Products
   ========================================================================== */
.products {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
}

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

.product-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  grid-column: span 3;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.product-card:hover {
  border-color: var(--sun);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px -20px rgba(14, 27, 61, 0.15);
}
.product-card--feature {
  grid-column: span 6;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 100%);
  padding: 40px 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}
.product-card--feature .product-card__icon {
  width: 96px; height: 96px;
  margin-bottom: 0;
  grid-row: span 4;
}
.product-card--feature h3 { font-size: 32px; }
.product-card--feature .product-card__num { position: static; margin-bottom: 4px; }

.product-card__num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  font-feature-settings: 'tnum';
}

.product-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.product-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.product-card__specs {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--ink-soft);
}
.product-card__specs li {
  padding-left: 16px;
  position: relative;
}
.product-card__specs li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sun);
  font-weight: 700;
}
.product-card__specs strong { color: var(--navy); font-weight: 600; }

/* Cards 02-05 fit two-up */
.product-card:nth-child(2),
.product-card:nth-child(3),
.product-card:nth-child(4),
.product-card:nth-child(5) {
  grid-column: span 3;
}

/* ==========================================================================
   Process
   ========================================================================== */
.process {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 184, 46, 0.08), transparent 60%);
  pointer-events: none;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.process-step {
  padding-top: 32px;
  border-top: 1px solid rgba(245, 184, 46, 0.3);
  position: relative;
}
.process-step__num {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  color: var(--sun);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  font-feature-settings: 'tnum';
}
.process-step h3 {
  color: var(--cream);
  font-size: 26px;
  margin-bottom: 12px;
}
.process-step p {
  color: rgba(250, 246, 238, 0.75);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ==========================================================================
   Service Area
   ========================================================================== */
.service-area {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.service-area__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 96px);
  align-items: start;
}
.service-area__counties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.county-block {
  background: var(--cream-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.county-block__label {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--sun);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.county-block ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.county-block li {
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  padding-left: 18px;
}
.county-block li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--sun);
  font-size: 9px;
  top: 6px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 880px;
}

.faq__item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.faq__item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.contact-card {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
}
.contact-card__phone {
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(245, 184, 46, 0.25);
}
.contact-card__phone:hover .contact-card__phone-num { color: var(--sun); }
.contact-card__phone-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.65);
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-card__phone-num {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  font-variation-settings: 'opsz' 144;
  transition: color 0.2s var(--ease);
}

.contact-card__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
}
.contact-card__details > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: start;
}
.contact-card__details dt {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sun);
  font-weight: 600;
  padding-top: 2px;
}
.contact-card__details dd {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(250, 246, 238, 0.9);
}
.contact-card__details a:hover { color: var(--sun); }

/* Form */
.contact-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: sticky;
  top: 100px;
}
.contact-form__title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.field-row .field { margin-bottom: 0; }
.field label,
.field legend {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  font-family: var(--sans);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sun);
  box-shadow: 0 0 0 3px rgba(245, 184, 46, 0.18);
}
.field textarea { resize: vertical; min-height: 80px; }

.field--checkboxes {
  border: none;
  padding: 0;
  margin-bottom: 18px;
}
.field--checkboxes legend { margin-bottom: 10px; padding: 0; }
.field--checkboxes label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  border-bottom: 1px solid var(--line-soft);
}
.field--checkboxes label:last-child { border-bottom: 0; }
.field--checkboxes input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--sun);
  cursor: pointer;
}

.contact-form__note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.5;
}
.contact-form__success {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(245, 184, 46, 0.12);
  border: 1px solid var(--sun);
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 14.5px;
  line-height: 1.55;
}
.contact-form__success a { font-weight: 700; color: var(--navy); }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
  background: linear-gradient(180deg, var(--sun) 0%, var(--sun-glow) 100%);
  color: var(--navy);
  padding: clamp(64px, 9vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.2), transparent 40%);
  pointer-events: none;
}
.final-cta__inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.final-cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  color: var(--navy);
}
.final-cta p {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
}
.final-cta .btn--primary {
  background: var(--navy);
  color: var(--cream);
}
.final-cta .btn--primary:hover {
  background: var(--navy-deep);
  color: var(--sun);
  box-shadow: 0 12px 30px rgba(8, 18, 43, 0.3);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(250, 246, 238, 0.75);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.site-footer__brand { max-width: 360px; }
.site-footer__brand .brand { margin-bottom: 16px; }
.site-footer__tag {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(250, 246, 238, 0.6);
}

.site-footer__col-head {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  color: var(--sun);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col li { font-size: 14.5px; }
.site-footer__col a:hover { color: var(--sun); }

.site-footer__base {
  border-top: 1px solid rgba(245, 184, 46, 0.15);
  padding: 24px 0;
}
.site-footer__base-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(250, 246, 238, 0.5);
}
.site-footer__legal { font-style: italic; }
.site-footer__license { font-style: normal; font-weight: 500; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 320px; order: -1; }

  .service-area__inner { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .contact-form { position: static; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card,
  .product-card:nth-child(2),
  .product-card:nth-child(3),
  .product-card:nth-child(4),
  .product-card:nth-child(5) {
    grid-column: span 1;
  }
  .product-card--feature {
    grid-column: span 2;
    grid-template-columns: auto 1fr;
  }

  .process-grid { grid-template-columns: 1fr; gap: 24px; }

  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .site-footer__brand { grid-column: span 2; }
}

@media (max-width: 720px) {
  .site-nav, .site-header__cta { display: none; }
  .nav-toggle { display: flex; }

  .trust-strip .container { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .trust-strip__item:nth-child(2)::after { display: none; }
  .trust-strip__item:not(:last-child)::after { display: none; }

  .product-card--feature {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 24px;
  }
  .product-card--feature .product-card__icon {
    grid-row: auto;
    width: 72px; height: 72px;
  }

  .service-area__counties { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }

  .contact-card { padding: 24px; }
  .contact-card__phone-num { font-size: 30px; }
  .contact-form { padding: 24px; }

  .site-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__brand { grid-column: span 1; }
}

@media (max-width: 480px) {
  .promo-bar { font-size: 11.5px; padding: 8px 0; }
  .promo-bar .container { gap: 8px; padding: 0 16px; }

  .product-grid { grid-template-columns: 1fr; }
  .product-card--feature { grid-column: span 1; }

  .display { font-size: 44px; }
  .hero__points { gap: 12px 20px; font-size: 13.5px; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
