/* Gutter FL — charcoal / aluminum + copper accent, 1950s-modern, mobile-first */

:root {
  --charcoal: #2c3136;
  --charcoal-deep: #1a1e22;
  --aluminum: #8a9199;
  --aluminum-light: #c5cad0;
  --silver: #e8eaed;
  --off-white: #f4f5f6;
  --white: #ffffff;
  --accent: #c45c26;
  --accent-hover: #a84b1c;
  --accent-soft: #f3e6dc;
  --text: #2c3136;
  --text-muted: #5c636b;
  --border: #d5d9de;
  --shadow: 0 8px 28px rgba(26, 30, 34, 0.12);
  --radius: 6px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1100px;
  --header-h: 4rem;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--accent);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
a:hover { color: var(--accent-hover); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(44, 49, 54, 0.97);
  color: var(--silver);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  overflow-x: clip;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: var(--header-h);
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  min-width: 0;
  flex: 0 1 auto;
}
.logo:hover { color: var(--white); }

.logo-mark {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 4px;
  background: linear-gradient(145deg, var(--aluminum-light), var(--aluminum));
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  top: 38%;
  height: 3px;
  background: var(--charcoal-deep);
  border-radius: 1px;
  box-shadow: 0 5px 0 var(--accent);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.logo-text strong {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--white);
  white-space: nowrap;
}
.logo-sub {
  font-size: 0.7rem;
  color: var(--aluminum-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: none;
  gap: 1.1rem;
  align-items: center;
}
.nav a {
  color: var(--aluminum-light);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--white); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

/* Header CTA: keep on one line; shorten label on very narrow viewports */
.header-cta {
  white-space: nowrap;
  padding: 0.5rem 0.75rem;
  font-size: 0.88rem;
}
.header-cta .cta-short { display: none; }

/* Hide long logo tagline whenever CTA + hamburger share the bar */
@media (max-width: 639px) {
  .logo-sub { display: none; }
}

@media (max-width: 400px) {
  .header-cta {
    padding: 0.45rem 0.55rem;
    font-size: 0.82rem;
  }
  .header-cta .cta-full { display: none; }
  .header-cta .cta-short { display: inline; }
  .header-inner { gap: 0.35rem; }
}

/* Hide phone in header on small screens so it doesn’t crowd */
.btn.phone-btn {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  flex-shrink: 0;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 1px;
  pointer-events: none;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1rem 1.25rem;
  background: var(--charcoal-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a {
  color: var(--silver);
  text-decoration: none;
  padding: 0.75rem 0.5rem;
  font-weight: 500;
}
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] { color: var(--white); }
.mobile-nav .btn { margin-top: 0.5rem; text-align: center; }

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  font: inherit;
  font-weight: 650;
  font-size: 0.95rem;
  line-height: 1.2;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, opacity 0.15s;
}
.btn-lg {
  padding: 0.85rem 1.35rem;
  font-size: 1.05rem;
}
.btn-block { width: 100%; }
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.btn-light {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn-light:hover {
  background: var(--off-white);
  color: var(--charcoal-deep);
}
.btn.is-disabled,
.btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* —— Hero —— */
.hero {
  background:
    linear-gradient(165deg, var(--charcoal-deep) 0%, var(--charcoal) 55%, #3a4148 100%);
  color: var(--silver);
  padding: 2.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aluminum-light);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 5.5vw, 2.85rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  font-weight: 750;
}

.accent-text { color: #f0a06a; }

.lede {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  max-width: 40ch;
  color: var(--aluminum-light);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.hero .btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
}

.hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.hero-points li {
  padding-left: 1.35rem;
  position: relative;
  color: var(--aluminum-light);
  font-weight: 500;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.65rem;
  height: 0.65rem;
  background: var(--accent);
  border-radius: 2px;
}

.hero-card {
  background: var(--white);
  color: var(--text);
  border-radius: 8px;
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
  align-self: start;
}
.price-label {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.price {
  margin: 0.35rem 0 0.15rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem;
}
.price-amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  line-height: 1;
}
.price-unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}
.price-note {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.hero-card hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 1rem;
}
.card-strong {
  margin: 0 0 0.35rem;
  font-weight: 750;
  font-size: 1.15rem;
}
.card-fine {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* —— Page hero (inner pages) —— */
.page-hero {
  background:
    linear-gradient(165deg, var(--charcoal-deep) 0%, var(--charcoal) 100%);
  color: var(--silver);
  padding: 2.25rem 0 2.5rem;
}
.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4.5vw, 2.4rem);
  color: var(--white);
  letter-spacing: -0.02em;
}
.page-hero .lede {
  margin-bottom: 0;
  max-width: 48ch;
}

/* —— Sections —— */
.section {
  padding: 3.5rem 0;
}
.section-alt {
  background: var(--off-white);
}
.section-accent {
  background: var(--charcoal);
  color: var(--silver);
}
.section-accent a { color: #f0a06a; }
.section-accent a:hover { color: #ffc9a0; }

.section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.25rem;
}
.section-head.left {
  text-align: left;
  margin-left: 0;
}
.section-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
.section-accent .section-head h2,
.estimate-intro h2,
.cta-band h2 {
  color: var(--white);
}
.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.cards {
  display: grid;
  gap: 1rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}
.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}
.card p { margin: 0; color: var(--text-muted); }
.card p + p { margin-top: 0.65rem; }
.card-featured {
  border-color: transparent;
  background: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow);
}
.card-featured p { color: var(--aluminum-light); }
.card-featured h3 { color: var(--white); }
.card-price {
  margin: 0 0 0.75rem !important;
  font-size: 1.75rem !important;
  font-weight: 800;
  color: #f0a06a !important;
  letter-spacing: -0.02em;
}
.card-price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--aluminum-light);
}

/* —— Why Florida / callout —— */
.callout {
  display: grid;
  gap: 1.5rem;
}
.callout-panel {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.35rem 1.25rem;
}
.callout-panel h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: var(--charcoal);
}
.callout-panel p {
  margin: 0;
  color: var(--text);
}
.callout-panel p + p { margin-top: 0.75rem; }
.benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}
.benefit-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}
.benefit-list strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--charcoal);
  font-size: 1.05rem;
}
.benefit-list p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* —— Steps —— */
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.25rem;
}
.steps > li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.step-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 4px;
}
.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}
.steps p {
  margin: 0;
  color: var(--text-muted);
}

/* —— Area —— */
.area-grid {
  display: grid;
  gap: 2rem;
}
.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}
.area-list li {
  padding-left: 1rem;
  position: relative;
  font-weight: 550;
}
.area-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.fine {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.area-panel {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  align-self: start;
}
.area-address {
  margin: 0.35rem 0 1.25rem;
  font-size: 1.2rem;
  font-weight: 650;
  line-height: 1.4;
  color: var(--charcoal);
}

/* —— CTA band —— */
.cta-band {
  background: var(--charcoal);
  color: var(--silver);
  padding: 3rem 0;
  text-align: center;
}
.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}
.cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 40ch;
  color: var(--aluminum-light);
}
.cta-band .hero-ctas {
  justify-content: center;
  margin-bottom: 0;
}
.cta-band .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.cta-band .btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
}

/* —— Estimate form —— */
.estimate-grid {
  display: grid;
  gap: 2rem;
}
.estimate-intro h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
}
.estimate-intro > p {
  margin: 0 0 1.25rem;
  max-width: 40ch;
}
.estimate-or {
  margin-top: 1.25rem !important;
  color: var(--aluminum-light) !important;
}
.estimate-form,
.pay-card,
.prose-panel {
  background: var(--white);
  color: var(--text);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.estimate-form.standalone {
  border: 1px solid var(--border);
  box-shadow: none;
}
.form-row {
  margin-bottom: 1rem;
}
.form-row-pair {
  display: grid;
  gap: 1rem;
}
.form-row label,
.form-fieldset legend {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 650;
  font-size: 0.9rem;
}
.form-fieldset {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem 1rem;
  margin: 0 0 1rem;
}
.form-fieldset legend {
  padding: 0 0.35rem;
  margin-bottom: 0;
}
.radio-grid {
  display: grid;
  gap: 0.45rem;
}
.radio-grid label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.98rem;
  cursor: pointer;
}
.radio-grid input {
  width: auto;
  accent-color: var(--accent);
}
.req { color: var(--accent); }
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.7rem 0.75rem;
  font: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--text);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  background: var(--white);
  border-color: var(--aluminum);
}
.form-hint {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.form-status {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  min-height: 1.25em;
}
.form-status.is-error { color: #a33; font-weight: 600; }
.form-confirm {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
}
.form-confirm[hidden] { display: none !important; }
.form-note {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* —— Pay page —— */
.pay-layout {
  display: grid;
  gap: 1.5rem;
  max-width: 42rem;
  margin-inline: auto;
}
.pay-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}
.pay-card ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}
.pay-card ol li + li { margin-top: 0.5rem; }
.pay-qr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0 0 1.25rem;
  align-items: start;
}
.pay-qr {
  margin: 0;
  text-align: center;
}
.pay-qr img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
}
.pay-qr figcaption {
  margin-top: 0.65rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.35;
}
.pay-note {
  margin: 0 0 1rem;
  padding: 1rem;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
}
.pay-note p { margin: 0; }
.pay-help {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}
@media (max-width: 520px) {
  .pay-qr-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

/* —— Learn / prose —— */
.prose {
  max-width: 42rem;
  margin-inline: auto;
}
.prose h2 {
  margin: 2.25rem 0 0.75rem;
  font-size: 1.45rem;
  color: var(--charcoal);
  letter-spacing: -0.015em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.15rem;
}
.prose p {
  margin: 0 0 1rem;
  color: var(--text);
}
.prose ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--text);
}
.prose li + li { margin-top: 0.4rem; }
.def-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}
.def-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  background: var(--white);
}
.def-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  color: var(--charcoal);
}
.def-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}
.toc {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  margin-bottom: 2rem;
}
.toc h2 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.toc ol {
  margin: 0;
  padding-left: 1.25rem;
}
.toc a {
  text-decoration: none;
  font-weight: 550;
}
.toc a:hover { text-decoration: underline; }

/* —— Footer —— */
.site-footer {
  background: var(--charcoal-deep);
  color: var(--aluminum-light);
  padding: 2.5rem 0 1.5rem;
  font-size: 0.95rem;
}
.site-footer a {
  color: var(--silver);
  text-decoration: none;
}
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer-brand {
  margin: 0 0 0.35rem;
  color: var(--white);
}
.footer-brand + .fine { margin: 0; color: var(--aluminum); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--aluminum);
}

/* —— Breakpoints —— */
@media (min-width: 640px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .btn.phone-btn { display: inline-flex; white-space: nowrap; }
  .header-cta .cta-full { display: inline; }
  .header-cta .cta-short { display: none; }
  .logo-sub { display: block; }
  .hero-points {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
  }
  .form-row-pair {
    grid-template-columns: 1fr 1fr;
  }
  .radio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .def-grid {
    grid-template-columns: 1fr 1fr;
  }
  .callout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

@media (min-width: 880px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }

  .hero {
    padding: 4rem 0 4.5rem;
  }
  .hero-grid {
    grid-template-columns: 1.35fr 0.85fr;
    align-items: center;
    gap: 2.5rem;
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps > li {
    flex-direction: column;
  }
  .area-grid {
    grid-template-columns: 1.4fr 0.8fr;
    align-items: start;
  }
  .estimate-grid {
    grid-template-columns: 0.9fr 1.2fr;
    align-items: start;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr auto;
    align-items: start;
  }
  .cards.cards-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .benefit-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 880px) and (max-width: 1020px) {
  .cards.cards-4 {
    grid-template-columns: 1fr 1fr;
  }
}


/* —— Seasonal sale —— */
.sale-fineprint {
  margin: 0 0 1rem;
  padding: 0.85rem 0.95rem;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.45;
}

.sale-secondary-cta {
  margin-top: 0.65rem;
}

.sale-details .callout-panel,
.sale-terms {
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.sale-terms h3 {
  margin: 0 0 0.75rem;
  color: var(--charcoal);
}

.sale-terms ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.sale-terms li {
  margin-bottom: 0.55rem;
}

.sale-terms code {
  font-size: 0.92em;
  background: var(--silver);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

.sale-banner {
  background: var(--accent-soft);
  border-bottom: 1px solid #e0c4b0;
  padding: 0.9rem 0;
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.45;
}

.sale-banner p {
  margin: 0;
}

.sale-banner[hidden] {
  display: none !important;
}

.sale-callout {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
}

.sale-callout a {
  font-weight: 600;
  text-decoration: none;
}

.sale-callout a:hover {
  text-decoration: underline;
}

.hero-card .btn-outline {
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.hero-card .btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}


/* ============================================================
   Fall Sale — Ad Look #4 (patriotic vintage)
   Scoped to body.sale-look-4 so other pages keep charcoal/copper
   ============================================================ */
body.sale-look-4 {
  --sale4-navy: #0b2a5b;
  --sale4-navy-deep: #061a3a;
  --sale4-red: #c41e3a;
  --sale4-red-deep: #9e1830;
  --sale4-cream: #f4efe3;
  --sale4-cream-dark: #e8e0d0;
  --sale4-white: #ffffff;
  --sale4-ink: #0b2a5b;
  --accent: var(--sale4-red);
  --accent-hover: var(--sale4-red-deep);
  background: var(--sale4-cream);
  color: var(--sale4-ink);
  /* subtle paper grain */
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

body.sale-look-4 a { color: var(--sale4-red); }
body.sale-look-4 a:hover { color: var(--sale4-red-deep); }
body.sale-look-4 a:focus-visible,
body.sale-look-4 button:focus-visible {
  outline-color: var(--sale4-red);
}

/* Header: navy instead of charcoal */
body.sale-look-4 .sale4-header,
body.sale-look-4 .site-header.sale4-header {
  background: rgba(11, 42, 91, 0.97);
  border-bottom: 3px solid var(--sale4-red);
}
body.sale-look-4 .logo-mark {
  background: linear-gradient(145deg, #f4efe3, #d9d2c2);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}
body.sale-look-4 .logo-mark::after {
  background: var(--sale4-navy);
  box-shadow: 0 5px 0 var(--sale4-red);
}
body.sale-look-4 .btn-accent,
body.sale-look-4 .header-cta.btn-accent {
  background: var(--sale4-red);
  border-color: var(--sale4-red);
  color: var(--sale4-white);
}
body.sale-look-4 .btn-accent:hover,
body.sale-look-4 .header-cta.btn-accent:hover {
  background: var(--sale4-red-deep);
  border-color: var(--sale4-red-deep);
  color: var(--sale4-white);
}
body.sale-look-4 .mobile-nav {
  background: var(--sale4-navy-deep);
}

/* —— Look #4 hero frame —— */
.sale4-hero {
  padding: 1.25rem 0 2rem;
  background: var(--sale4-cream);
}
.sale4-frame {
  width: min(100% - 1.25rem, 1100px);
  margin-inline: auto;
  background: var(--sale4-cream);
  border: 6px solid var(--sale4-navy);
  box-shadow:
    0 0 0 3px var(--sale4-white),
    0 0 0 7px var(--sale4-red),
    0 12px 36px rgba(6, 26, 58, 0.18);
  overflow: hidden;
  position: relative;
}
.sale4-grid {
  display: grid;
  gap: 1.5rem;
  padding: 1.75rem 0 1.25rem;
  align-items: start;
}
.sale4-brand {
  margin: 0 0 0.35rem;
  font-family: "Oswald", var(--font);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sale4-navy);
}
.sale4-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sale4-red);
}
.sale4-copy h1 {
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 0.95;
}
.sale4-kicker {
  font-family: "Oswald", var(--font);
  font-weight: 700;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sale4-red);
}
.sale4-headline {
  font-family: "Anton", "Oswald", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--sale4-navy);
}
.sale4-price {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3.5rem, 12vw, 5.5rem);
  line-height: 0.9;
  color: var(--sale4-red);
  letter-spacing: 0.01em;
  text-shadow: 2px 2px 0 rgba(11, 42, 91, 0.12);
}
.sale4-fine {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  background: rgba(11, 42, 91, 0.06);
  border-left: 4px solid var(--sale4-red);
  color: var(--sale4-navy);
  font-size: 1.02rem;
  line-height: 1.45;
  max-width: 42ch;
}
.sale4-banners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin: 0 0 1.35rem;
}
.sale4-ribbon {
  display: inline-block;
  background: var(--sale4-red);
  color: var(--sale4-white);
  font-family: "Oswald", var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  transform: skewX(-12deg);
  box-shadow: 3px 3px 0 var(--sale4-navy);
}
.sale4-ribbon-alt {
  background: var(--sale4-navy);
  box-shadow: 3px 3px 0 var(--sale4-red);
}
.sale4-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.sale4-btn-primary {
  background: var(--sale4-red);
  color: var(--sale4-white) !important;
  border: 2px solid var(--sale4-red);
  font-weight: 750;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: "Oswald", var(--font);
}
.sale4-btn-primary:hover {
  background: var(--sale4-red-deep);
  border-color: var(--sale4-red-deep);
  color: var(--sale4-white) !important;
}
.sale4-btn-call {
  background: transparent;
  color: var(--sale4-navy) !important;
  border: 2px solid var(--sale4-navy);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: "Oswald", var(--font);
}
.sale4-btn-call:hover {
  background: var(--sale4-navy);
  color: var(--sale4-white) !important;
}
.sale4-season-note {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(11, 42, 91, 0.72);
  max-width: 46ch;
}
.sale4-visual {
  display: grid;
  gap: 1rem;
}
.sale4-photo {
  margin: 0;
  border: 4px solid var(--sale4-navy);
  box-shadow: 0 0 0 2px var(--sale4-white), 0 0 0 4px var(--sale4-red);
  background: var(--sale4-navy);
  overflow: hidden;
}
.sale4-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.sale4-offer-card {
  background: var(--sale4-navy);
  color: var(--sale4-white);
  padding: 1.25rem 1.2rem;
  border-top: 4px solid var(--sale4-red);
}
.sale4-offer-label {
  margin: 0;
  font-family: "Oswald", var(--font);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.sale4-offer-amount {
  margin: 0.2rem 0 0.15rem;
  font-family: "Anton", Impact, sans-serif;
  font-size: 3.25rem;
  line-height: 1;
  color: var(--sale4-white);
}
.sale4-offer-note {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}
.sale4-offer-card .sale4-btn-primary {
  margin-bottom: 0.55rem;
}
.sale4-offer-card .sale4-btn-call {
  color: var(--sale4-white) !important;
  border-color: rgba(255, 255, 255, 0.65);
}
.sale4-offer-card .sale4-btn-call:hover {
  background: var(--sale4-white);
  color: var(--sale4-navy) !important;
}
.sale4-navy-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.85rem;
  background: var(--sale4-navy);
  color: var(--sale4-white);
  font-family: "Oswald", var(--font);
  font-weight: 600;
  font-size: clamp(0.85rem, 2.5vw, 1.05rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
}
.sale4-dot { color: var(--sale4-red); font-weight: 900; }
.sale4-footer-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  background: var(--sale4-navy-deep);
  color: var(--sale4-white);
  font-family: "Anton", "Oswald", Impact, sans-serif;
  font-size: clamp(1.15rem, 3.5vw, 1.55rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border-top: 3px solid var(--sale4-red);
}
.sale4-star { color: var(--sale4-red); font-size: 0.85em; }

/* Details below frame */
.sale4-details .section-head h2 {
  font-family: "Oswald", var(--font);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sale4-navy);
}
.sale4-card {
  border-top: 4px solid var(--sale4-red);
  background: var(--sale4-white);
}
.sale4-card h3 {
  font-family: "Oswald", var(--font);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sale4-navy);
}
.sale4-terms {
  background: var(--sale4-cream-dark) !important;
  border: 2px solid var(--sale4-navy) !important;
  border-radius: 0 !important;
}
.sale4-terms h3 {
  font-family: "Oswald", var(--font);
  text-transform: uppercase;
  color: var(--sale4-navy) !important;
}

.sale4-cta-band {
  background: var(--sale4-navy);
  color: var(--sale4-white);
  padding: 2.75rem 0;
  text-align: center;
  border-top: 4px solid var(--sale4-red);
  border-bottom: 4px solid var(--sale4-red);
}
.sale4-cta-band h2 {
  margin: 0 0 0.5rem;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sale4-white);
}
.sale4-cta-band p {
  margin: 0 auto 1.35rem;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.85);
}
.sale4-cta-band .sale4-ctas {
  justify-content: center;
  margin-bottom: 0;
}
.sale4-cta-band .sale4-btn-call {
  color: var(--sale4-white) !important;
  border-color: rgba(255, 255, 255, 0.7);
}
.sale4-cta-band .sale4-btn-call:hover {
  background: var(--sale4-white);
  color: var(--sale4-navy) !important;
}

body.sale-look-4 .sale4-site-footer,
body.sale-look-4 .site-footer.sale4-site-footer {
  background: var(--sale4-navy-deep);
  border-top: 3px solid var(--sale4-red);
}
body.sale-look-4 .sale4-site-footer a {
  color: #f0c8cf;
}
body.sale-look-4 .sale4-site-footer a:hover {
  color: var(--sale4-white);
}

@media (min-width: 800px) {
  .sale4-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    padding: 2.25rem 0 1.5rem;
  }
  .sale4-visual {
    align-self: stretch;
  }
}

@media (max-width: 480px) {
  .sale4-frame {
    border-width: 4px;
    box-shadow:
      0 0 0 2px var(--sale4-white),
      0 0 0 5px var(--sale4-red),
      0 8px 24px rgba(6, 26, 58, 0.16);
  }
  .sale4-ribbon {
    font-size: 0.82rem;
    padding: 0.45rem 1rem;
  }
}


/* ============================================================
   Soft house photography backgrounds (non-sale pages)
   Cropped house scenes + charcoal overlay — atmosphere only
   ============================================================ */
.hero.has-photo-bg,
.page-hero.has-photo-bg,
.section.has-photo-bg,
.cta-band.has-photo-bg {
  background-color: var(--charcoal-deep);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  isolation: isolate;
}
.hero.has-photo-bg::before,
.page-hero.has-photo-bg::before,
.section.has-photo-bg::before,
.cta-band.has-photo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(165deg, rgba(26, 30, 34, 0.58) 0%, rgba(44, 49, 54, 0.52) 55%, rgba(26, 30, 34, 0.62) 100%);
  pointer-events: none;
}
/* Light sections: cream-tint wash so house reads softly behind charcoal-free content */
.section.has-photo-bg.photo-bg-soft {
  background-color: var(--off-white);
  color: inherit;
}
.section.has-photo-bg.photo-bg-soft::before {
  background:
    linear-gradient(180deg, rgba(244, 245, 246, 0.92) 0%, rgba(244, 245, 246, 0.88) 100%);
}
.section.has-photo-bg.photo-bg-soft .section-head h2,
.section.has-photo-bg.photo-bg-soft .section-head p {
  /* keep default colors */
}

.hero.has-photo-bg.photo-bg-1 {
  background-image: url("../images/bg-house-1.jpg");
}
.page-hero.has-photo-bg.photo-bg-5 {
  background-image: url("../images/bg-house-5.jpg");
}
.page-hero.has-photo-bg.photo-bg-3 {
  background-image: url("../images/bg-house-3.jpg");
}
.page-hero.has-photo-bg.photo-bg-9 {
  background-image: url("../images/bg-house-9.jpg");
}
.page-hero.has-photo-bg.photo-bg-10 {
  background-image: url("../images/bg-house-10.jpg");
}
.section.has-photo-bg.photo-bg-6 {
  background-image: url("../images/bg-house-6.jpg");
}
.section.has-photo-bg.photo-bg-3 {
  background-image: url("../images/bg-house-3.jpg");
}
.section.has-photo-bg.photo-bg-2 {
  background-image: url("../images/bg-house-2.jpg");
}
.section.has-photo-bg.photo-bg-7 {
  background-image: url("../images/bg-house-7.jpg");
}
.cta-band.has-photo-bg.photo-bg-8 {
  background-image: url("../images/bg-house-8.jpg");
}

/* Homepage Fall Sale promo strip */
.sale-promo {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  background:
    linear-gradient(135deg, rgba(11, 42, 91, 0.95), rgba(196, 30, 58, 0.92)),
    url("../images/bg-house-4.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 8px;
  border: 2px solid #0b2a5b;
  box-shadow: var(--shadow);
  text-decoration: none;
  margin: 0 0 1.5rem;
}
.sale-promo:hover {
  color: #fff;
  filter: brightness(1.05);
}
.sale-promo-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}
.sale-promo h2 {
  margin: 0.2rem 0 0.35rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: #fff;
  letter-spacing: -0.01em;
}
.sale-promo p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
}
.sale-promo-cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (min-width: 700px) {
  .sale-promo {
    grid-template-columns: 1fr auto;
    padding: 1.35rem 1.5rem;
  }
  .sale-promo-cta { margin-top: 0; align-self: center; }
}
