/* =========================================================
   JJ CLEANING — PRODUCTION WEBSITE
   No framework. No external font dependency.
   ========================================================= */

:root {
  --ink: #171714;
  --ink-2: #29261f;
  --ink-3: #454138;
  --gold: #bb8d32;
  --gold-dark: #8b641d;
  --gold-light: #efd796;
  --cream: #f6f0e5;
  --paper: #fffefa;
  --soft: #fbfaf7;
  --line: #e5ded2;
  --muted: #666158;
  --white: #ffffff;
  --success: #1f6b4a;
  --danger: #9a342d;
  --shadow-sm: 0 10px 30px rgba(34, 29, 20, 0.07);
  --shadow-md: 0 20px 55px rgba(34, 29, 20, 0.12);
  --shadow-lg: 0 34px 90px rgba(20, 18, 14, 0.2);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1220px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
h4 {
  overflow-wrap: break-word;
}

::selection {
  background: var(--gold-light);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid rgba(187, 141, 50, 0.65);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.narrow {
  width: min(820px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section--soft {
  background: var(--soft);
}

.section--cream {
  background: var(--cream);
}

.section--dark {
  background:
    radial-gradient(circle at 85% 10%, rgba(187, 141, 50, 0.19), transparent 28%),
    var(--ink);
  color: var(--white);
}

.section--compact {
  padding: 72px 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

.kicker::before {
  width: 42px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.kicker--light {
  color: var(--gold-light);
}

.heading-display,
.heading-xl,
.heading-lg,
.heading-md,
.heading-sm {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.heading-display {
  font-size: clamp(3.7rem, 7.8vw, 7rem);
  line-height: 0.93;
}

.heading-xl {
  font-size: clamp(2.8rem, 5.4vw, 5rem);
  line-height: 1.01;
}

.heading-lg {
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  line-height: 1.05;
}

.heading-md {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.1;
}

.heading-sm {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.15;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.section--dark .lead,
.text-light-muted {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading .kicker {
  justify-content: center;
}

.section-heading .kicker::after {
  width: 42px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.section-heading .lead {
  margin-inline: auto;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--muted);
}

.stack > * {
  margin-top: 0;
  margin-bottom: 0;
}

.stack > * + * {
  margin-top: var(--stack-space, 18px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 30px rgba(22, 21, 18, 0.17);
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button--light:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button--outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button--outline-dark {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button--outline-dark:hover {
  background: var(--ink);
  color: var(--white);
}

.button--gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.button--gold:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.button--small {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.82rem;
}

.button[disabled] {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
}

.text-link .arrow {
  transition: transform 180ms ease;
}

.text-link:hover .arrow {
  transform: translateX(4px);
}

/* =========================================================
   HEADER + NAVIGATION
   ========================================================= */

.announcement {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-align: center;
}

.announcement .container {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.announcement a {
  color: var(--gold-light);
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(229, 222, 210, 0.82);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-tagline {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link,
.nav-toggle {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  background: var(--cream);
  color: var(--ink);
}

.nav-chevron {
  width: 12px;
  height: 12px;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

.nav-item {
  position: relative;
}

.nav-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: min(560px, 86vw);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.nav-panel-link {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border-radius: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.nav-panel-link:hover {
  transform: translateY(-1px);
  background: var(--soft);
}

.nav-panel-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.nav-panel-link strong,
.nav-panel-link span {
  display: block;
}

.nav-panel-link strong {
  font-size: 0.85rem;
}

.nav-panel-link span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.header-cta {
  margin-left: 7px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-lines {
  position: relative;
  width: 20px;
  height: 14px;
}

.menu-lines::before,
.menu-lines::after,
.menu-lines span {
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.menu-lines::before {
  top: 0;
}

.menu-lines span {
  top: 6px;
}

.menu-lines::after {
  top: 12px;
}

.menu-button[aria-expanded="true"] .menu-lines::before {
  top: 6px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines span {
  opacity: 0;
}

.menu-button[aria-expanded="true"] .menu-lines::after {
  top: 6px;
  transform: rotate(-45deg);
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: none;
  background: rgba(13, 12, 10, 0.45);
  backdrop-filter: blur(3px);
}

.mobile-backdrop.is-open {
  display: block;
}

/* =========================================================
   HEROES
   ========================================================= */

.hero {
  position: relative;
  display: grid;
  min-height: min(860px, calc(100svh - 110px));
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-media picture,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 15%, rgba(255, 255, 255, 0.18), transparent 25%),
    linear-gradient(90deg, rgba(11, 11, 9, 0.94) 0%, rgba(11, 11, 9, 0.72) 45%, rgba(11, 11, 9, 0.22) 78%, rgba(11, 11, 9, 0.12) 100%),
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.34));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 120px 0 130px;
}

.hero-content .lead {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(9px);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(239, 215, 150, 0.12);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue-line {
  width: 1px;
  height: 40px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-cue-line::after {
  display: block;
  width: 100%;
  height: 17px;
  background: var(--white);
  content: "";
  animation: scroll-cue 1.8s infinite ease-in-out;
}

@keyframes scroll-cue {
  from { transform: translateY(-20px); }
  to { transform: translateY(45px); }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 88px;
  background:
    radial-gradient(circle at 86% 0%, rgba(187, 141, 50, 0.18), transparent 30%),
    var(--ink);
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  right: -60px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.74);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-bottom: 23px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 750;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--white);
}

/* =========================================================
   HOME COMPONENTS
   ========================================================= */

.trust-strip {
  background: var(--ink);
  color: var(--white);
}

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

.trust-item {
  padding: 27px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.trust-item:last-child {
  border-right: 0;
}

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

.trust-item strong {
  font-family: var(--serif);
  font-size: 1.18rem;
}

.trust-item span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  display: grid;
  grid-template-columns: 43% 57%;
  min-height: 365px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.service-card-media {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--cream);
}

.service-card-media picture,
.service-card-media img {
  width: 100%;
  height: 100%;
}

.service-card-media img {
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2,.7,.2,1);
}

.service-card:hover .service-card-media img {
  transform: scale(1.055);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.number-badge {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 14px 0 21px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.72;
}

.custom-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-top: 25px;
  padding: 34px 38px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 0%, rgba(187, 141, 50, 0.25), transparent 35%),
    var(--ink);
  color: var(--white);
}

.custom-banner h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.75rem;
  letter-spacing: -0.025em;
}

.custom-banner p {
  max-width: 720px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

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

.plan-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.plan-card--featured {
  border-color: var(--gold);
  box-shadow: 0 22px 55px rgba(139, 100, 29, 0.17);
}

.plan-label {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--gold-dark);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card--featured .plan-label {
  background: var(--gold);
  color: var(--ink);
}

.plan-card h3 {
  margin: 20px 0 8px;
  font-family: var(--serif);
  font-size: 1.85rem;
  letter-spacing: -0.03em;
}

.plan-price {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 0.87rem;
  font-weight: 850;
}

.plan-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 9px 0 9px 26px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 0.84rem;
}

.check-list li::before {
  position: absolute;
  top: 11px;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold-dark);
  content: "✓";
  font-size: 0.68rem;
  font-weight: 900;
}

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

.process-card {
  position: relative;
  overflow: hidden;
  padding: 31px 25px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: var(--white);
  text-align: center;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}

.process-number {
  display: inline-grid;
  width: 55px;
  height: 55px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.process-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.process-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
}

.split--top {
  align-items: start;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow-md);
}

.image-frame picture,
.image-frame img {
  width: 100%;
  height: 100%;
}

.image-frame img {
  min-height: 540px;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 17px 19px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 17px;
  background: rgba(17, 17, 15, 0.72);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.image-caption strong,
.image-caption span {
  display: block;
}

.image-caption strong {
  font-family: var(--serif);
  font-size: 1.13rem;
}

.image-caption span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  margin-top: 31px;
}

.value-card {
  position: relative;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.value-card::after {
  position: absolute;
  right: -35px;
  bottom: -55px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--cream);
  content: "";
}

.value-card span {
  position: relative;
  z-index: 1;
  color: var(--gold-dark);
  font-size: 0.73rem;
  font-weight: 900;
}

.value-card h3 {
  position: relative;
  z-index: 1;
  margin: 16px 0 7px;
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.value-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.81rem;
}

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

.area-card {
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.area-tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--gold-dark);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.area-card h3 {
  margin: 20px 0 9px;
  font-family: var(--serif);
  font-size: 1.75rem;
  letter-spacing: -0.03em;
}

.area-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.location-chip {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink-3);
  font-size: 0.68rem;
  font-weight: 800;
}

.redding-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 22px;
  padding: 28px 30px;
  border-radius: 24px;
  background: var(--ink);
  color: var(--white);
}

.redding-note h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.redding-note p {
  max-width: 760px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(34, 29, 20, 0.04);
}

.faq-question {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  text-align: left;
}

.faq-icon {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 11px;
  left: 4px;
  width: 16px;
  height: 2px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 230ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.cta-band {
  padding: 100px 24px;
  background:
    radial-gradient(circle at 85% 5%, rgba(187, 141, 50, 0.26), transparent 31%),
    var(--ink);
  color: var(--white);
  text-align: center;
}

.cta-band .lead {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.7);
}

.cta-band .button-row {
  justify-content: center;
}

/* =========================================================
   SERVICES + PRICING
   ========================================================= */

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.detail-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.detail-card-media {
  height: 300px;
  overflow: hidden;
}

.detail-card-media picture,
.detail-card-media img {
  width: 100%;
  height: 100%;
}

.detail-card-media img {
  object-fit: cover;
}

.detail-card-body {
  padding: 31px;
}

.detail-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.detail-card h2,
.detail-card h3 {
  margin: 0;
  font-family: var(--serif);
  letter-spacing: -0.03em;
}

.detail-card h2 {
  font-size: 2rem;
}

.starting-price {
  flex: 0 0 auto;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 900;
}

.detail-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.scope-box {
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
}

.scope-box h4 {
  margin: 0 0 10px;
  font-size: 0.79rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scope-box ul {
  margin: 0;
  padding-left: 17px;
  color: var(--muted);
  font-size: 0.78rem;
}

.scope-box li + li {
  margin-top: 6px;
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.price-table th,
.price-table td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.price-table th {
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.price-table td {
  color: var(--ink-3);
  font-size: 0.85rem;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table tbody tr:nth-child(even) {
  background: var(--soft);
}

.price-table strong {
  color: var(--ink);
}

.notice-box {
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  border-radius: 0 16px 16px 0;
  background: var(--cream);
  color: var(--ink-3);
  font-size: 0.87rem;
}

.notice-box strong {
  color: var(--ink);
}

.factor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.factor-card {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.factor-card span {
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 900;
}

.factor-card h3 {
  margin: 14px 0 6px;
  font-family: var(--serif);
  font-size: 1.22rem;
}

.factor-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

/* =========================================================
   ABOUT + SERVICE AREAS
   ========================================================= */

.story-card {
  padding: 37px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.story-card p {
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 27px;
}

.stat-card {
  padding: 22px;
  border-radius: 18px;
  background: var(--cream);
}

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

.stat-card strong {
  font-family: var(--serif);
  font-size: 1.65rem;
}

.stat-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

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

.standard-card {
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: var(--white);
}

.standard-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold-dark);
  font-weight: 900;
}

.standard-card h3 {
  margin: 20px 0 8px;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.standard-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.county-section + .county-section {
  margin-top: 32px;
}

.county-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.county-summary {
  padding: 36px;
  background: var(--ink);
  color: var(--white);
}

.county-summary h2 {
  margin: 15px 0 8px;
  font-family: var(--serif);
  font-size: 2.1rem;
}

.county-summary p {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.86rem;
}

.county-cities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 30px;
}

.city-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
}

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

.city-card strong {
  font-size: 0.9rem;
}

.city-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

/* =========================================================
   FORMS
   ========================================================= */

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 30px;
  align-items: start;
}

.form-card,
.form-aside {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-card {
  padding: 32px;
}

.form-aside {
  position: sticky;
  top: 126px;
  padding: 27px;
}

.form-aside h2,
.form-aside h3 {
  margin: 0;
  font-family: var(--serif);
}

.form-aside p {
  color: var(--muted);
  font-size: 0.82rem;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 30px;
}

.progress-step {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.progress-step::after {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.progress-step.is-active::after,
.progress-step.is-complete::after {
  transform: scaleX(1);
}

.form-step[hidden] {
  display: none;
}

.form-step-title {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.form-step-intro {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 0.88rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 17px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: var(--ink-2);
  font-size: 0.78rem;
  font-weight: 850;
}

.required-mark {
  color: var(--danger);
}

.field-help {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 13px;
  border: 1px solid #d6cfc3;
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(187, 141, 50, 0.13);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.error-text {
  color: var(--danger);
  font-size: 0.7rem;
  font-weight: 750;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.choice-card {
  position: relative;
}

.choice-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-card label {
  display: block;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.choice-card label:hover {
  transform: translateY(-2px);
  border-color: #cbbda5;
  background: var(--soft);
}

.choice-card input:checked + label {
  border-color: var(--gold);
  background: var(--cream);
  box-shadow: inset 0 0 0 1px var(--gold);
}

.choice-card input:focus-visible + label {
  outline: 3px solid rgba(187, 141, 50, 0.5);
  outline-offset: 3px;
}

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

.choice-card strong {
  font-size: 0.86rem;
}

.choice-card span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.check-control {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
  color: var(--ink-3);
  font-size: 0.76rem;
  cursor: pointer;
}

.check-control input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: var(--gold-dark);
}

.consent-control {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.73rem;
}

.consent-control input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold-dark);
}

.consent-control a {
  color: var(--ink);
  font-weight: 800;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 27px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.form-actions--end {
  justify-content: flex-end;
}

.form-status {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 750;
}

.form-status[hidden] {
  display: none;
}

.form-status--success {
  background: #e9f6ef;
  color: var(--success);
}

.form-status--error {
  background: #faecea;
  color: var(--danger);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.summary-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 0.77rem;
}

.summary-list span:first-child {
  color: var(--muted);
}

.summary-list span:last-child {
  color: var(--ink);
  font-weight: 850;
  text-align: right;
}

.price-preview {
  margin-top: 22px;
  padding: 19px;
  border-radius: 16px;
  background: var(--cream);
}

.price-preview span,
.price-preview strong,
.price-preview small {
  display: block;
}

.price-preview span {
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-preview strong {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 1.65rem;
}

.price-preview small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.67rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 13px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  text-decoration: none;
}

.contact-method-icon {
  display: grid;
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold-dark);
  font-weight: 900;
}

.contact-method strong,
.contact-method span {
  display: block;
}

.contact-method strong {
  font-size: 0.85rem;
}

.contact-method span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

/* =========================================================
   LEGAL + FOOTER
   ========================================================= */

.legal-content h2 {
  margin: 37px 0 10px;
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: -0.025em;
}

.legal-content h3 {
  margin: 25px 0 8px;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 22px;
}

.site-footer {
  padding: 62px 0 28px;
  background: #10100f;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.75fr 0.9fr;
  gap: 34px;
}

.footer-brand p {
  max-width: 370px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
}

.footer-heading {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact a {
  color: var(--gold-light);
  font-weight: 800;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 43px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.69rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.54);
  text-decoration: none;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.floating-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 15px 36px rgba(0, 0, 0, 0.2);
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease;
}

.floating-action:hover {
  transform: translateY(-2px);
}

.floating-action--call {
  align-self: flex-end;
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 132px;
  z-index: 790;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 70px 0;
  text-align: center;
}

.not-found-code {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(6rem, 17vw, 12rem);
  font-weight: 700;
  line-height: 0.8;
}

/* Reveal animation */
.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .nav-link,
  .nav-toggle {
    padding-inline: 9px;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card-media {
    height: 280px;
  }

  .factor-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 0.8fr);
  }

  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 90px;
  }

  .announcement {
    display: none;
  }

  .header-inner {
    min-height: 70px;
  }

  .menu-button {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    z-index: 950;
    display: block;
    width: min(410px, 92vw);
    padding: 19px;
    overflow-y: auto;
    background: var(--white);
    box-shadow: -20px 0 55px rgba(20, 18, 14, 0.14);
    transform: translateX(105%);
    transition: transform 230ms ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .nav-link,
  .nav-toggle {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 12px 13px;
    font-size: 0.91rem;
    text-align: left;
  }

  .nav-item {
    width: 100%;
  }

  .nav-panel {
    position: static;
    width: auto;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: max-height 220ms ease, padding 220ms ease;
  }

  .nav-panel.is-open {
    max-height: 520px;
    padding: 6px 0 12px;
  }

  .nav-panel-grid {
    grid-template-columns: 1fr;
  }

  .nav-panel-link {
    padding: 11px 13px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(11, 11, 9, 0.92), rgba(11, 11, 9, 0.65) 68%, rgba(11, 11, 9, 0.3));
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .split,
  .contact-grid,
  .form-layout,
  .estimate-layout {
    grid-template-columns: 1fr;
  }

  .form-aside {
    position: static;
    order: -1;
  }

  .area-grid,
  .standards-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .county-panel {
    grid-template-columns: 1fr;
  }

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

  .footer-grid > :last-child {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .container,
  .narrow {
    width: calc(100% - 30px);
  }

  .section {
    padding: 74px 0;
  }

  .section--compact {
    padding: 55px 0;
  }

  .brand-tagline {
    display: none;
  }

  .hero {
    min-height: 740px;
  }

  .hero-content {
    padding: 95px 0 110px;
  }

  .heading-display {
    font-size: clamp(3.35rem, 15vw, 5rem);
    letter-spacing: -0.045em;
  }

  .heading-xl {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .page-hero {
    padding: 82px 0 66px;
  }

  .button-row {
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .service-grid,
  .detail-grid,
  .process-grid,
  .factor-grid,
  .value-grid,
  .field-grid,
  .choice-grid,
  .checkbox-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .service-card-media {
    height: 245px;
  }

  .service-card-body,
  .detail-card-body,
  .form-card {
    padding: 25px 21px;
  }

  .custom-banner,
  .redding-note {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 22px;
  }

  .custom-banner .button,
  .redding-note .button {
    width: 100%;
  }

  .image-frame img {
    min-height: 390px;
  }

  .county-cities {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .form-progress {
    gap: 5px;
  }

  .form-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .form-actions .button {
    width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
    left: 12px;
    flex-direction: row;
  }

  .floating-action {
    flex: 1;
    padding-inline: 9px;
  }

  .floating-action--call {
    align-self: auto;
  }

  .back-to-top {
    right: 13px;
    bottom: 77px;
  }
}

@media (max-width: 420px) {
  .brand-name {
    font-size: 1.2rem;
  }

  .hero-badges {
    display: none;
  }

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

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .announcement,
  .site-header,
  .floating-actions,
  .back-to-top,
  .site-footer,
  .button-row,
  .cta-band {
    display: none !important;
  }

  body {
    color: #000;
  }

  .section,
  .page-hero {
    padding: 20px 0;
  }

  .page-hero {
    background: #fff;
    color: #000;
  }
}

/* =========================================================
   NO-JAVASCRIPT FALLBACKS
   ========================================================= */

@media (max-width: 900px) {
  html:not(.has-js) .header-inner {
    flex-wrap: wrap;
    padding-block: 12px;
  }

  html:not(.has-js) .menu-button,
  html:not(.has-js) .mobile-backdrop {
    display: none;
  }

  html:not(.has-js) .main-nav {
    position: static;
    display: grid;
    width: 100%;
    padding: 12px 0 0;
    overflow: visible;
    box-shadow: none;
    transform: none;
  }

  html:not(.has-js) .nav-panel {
    position: static;
    width: 100%;
    max-height: none;
    padding: 8px;
    border: 1px solid var(--line);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

html:not(.has-js) .form-step[hidden] {
  display: block;
}

html:not(.has-js) [data-next-step],
html:not(.has-js) [data-back-step],
html:not(.has-js) .form-progress {
  display: none;
}

html:not(.has-js) .form-step + .form-step {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

/* =========================================================
   MOBILE NAVIGATION RELIABILITY FIX
   Prevents iOS/Safari from treating the fixed drawer as a
   child of the sticky, blurred header and collapsing its area.
   ========================================================= */
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

@media (max-width: 900px) {
  .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .menu-button {
    position: relative;
    z-index: 1100;
  }

  .main-nav {
    top: 70px;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    max-height: calc(100dvh - 70px);
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(105%, 0, 0);
    transition: transform 230ms ease, opacity 160ms ease, visibility 0s linear 230ms;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition: transform 230ms ease, opacity 160ms ease;
  }

  .mobile-backdrop {
    top: 70px;
  }

  .header-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin: 14px 0 0;
  }
}
