/* Front Range Cleaning & Sanitizing
   Brand palette and type system. Do not introduce new colors or fonts. */

:root {
  --navy: #1B2A4A;
  --green: #2D5A1B;
  --steel: #2756A8;
  --orange: #D4521A;
  --orange-hover: #B8400D;
  --offwhite: #F5F1EA;
  --white: #FFFFFF;
  --charcoal: #1B1B1B;
  --gray: #555555;
  --gray-line: #D9D3C7;

  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--steel);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
a:hover { color: var(--navy); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.04;
  color: var(--navy);
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(40px, 6vw, 68px); }
h2 { font-size: clamp(30px, 4.2vw, 46px); }
h3 { font-size: clamp(22px, 2.4vw, 28px); letter-spacing: 0.03em; }

.eyebrow {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: uppercase;
  margin: 0 0 14px;
}

.kicker {
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0 0 12px;
}

.lead {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--charcoal);
  max-width: 58ch;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Top utility bar ---------- */
.utility {
  background: var(--charcoal);
  color: var(--offwhite);
  font-size: 14px;
  padding: 8px 0;
}
.utility .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.utility a {
  color: var(--offwhite);
  text-decoration: none;
}
.utility a:hover { color: var(--orange); }
.utility .util-phone {
  font-weight: 600;
  letter-spacing: 0.02em;
}
.utility .util-hours { color: #B7B0A2; }

/* ---------- Site header ---------- */
.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--orange);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}
.brand:hover { color: var(--white); }
.brand-mark {
  height: 64px;
  width: auto;
  max-width: 260px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  background: #FFFFFF;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
/* Logo includes the wordmark, so hide redundant brand-text */
.brand-text {
  display: none;
}
.brand-name {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--white);
}
.brand-tag {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.nav a:hover { color: var(--orange); }
.nav a.is-current {
  border-bottom-color: var(--orange);
  color: var(--white);
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 18px !important;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600 !important;
  font-size: 13px !important;
  border-bottom: 0 !important;
}
.nav-cta:hover { background: var(--orange-hover); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  padding: 8px 12px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
}

@media (max-width: 880px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 0;
    transition: max-height 0.25s ease;
  }
  .nav.is-open {
    max-height: 600px;
    border-bottom: 3px solid var(--orange);
  }
  .nav a {
    padding: 16px var(--gutter);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-top: 0;
  }
  .nav a.is-current { border-bottom-color: rgba(255,255,255,0.08); color: var(--orange); }
  .nav-cta {
    margin: 14px var(--gutter) 18px;
    text-align: center;
  }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 2px;
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-hover); color: var(--white); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover { background: var(--white); color: var(--navy); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-color: #2a2018;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
/* Solid dark scrim on the bottom-left third for headline legibility.
   No gradient. A semi-transparent flat block instead. */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(15, 22, 38, 0.78) 0%, rgba(15, 22, 38, 0.78) 38%, rgba(15, 22, 38, 0) 38%, rgba(15, 22, 38, 0) 100%);
  /* This is a hard-edge scrim, not a soft gradient. */
}

.hero-inner {
  position: relative;
  min-height: 78vh;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 10vh, 120px) var(--gutter) clamp(40px, 6vh, 70px);
  display: flex;
  align-items: flex-end;
}
.hero-copy {
  max-width: 640px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(44px, 6.6vw, 72px);
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.hero p {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--offwhite);
  max-width: 56ch;
  margin-bottom: 28px;
}
.hero .btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-meta {
  position: absolute;
  top: clamp(20px, 4vh, 40px);
  right: var(--gutter);
  text-align: right;
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--offwhite);
  opacity: 0.85;
  line-height: 1.7;
}
.hero-meta strong { color: var(--orange); font-weight: 600; }

@media (max-width: 600px) {
  .hero-meta { display: none; }
}

/* Subtle off-grid nudge on hero copy. Anti-AI design move #9. */
.hero-copy { transform: translateY(-3px); }

/* ---------- Sections ---------- */
.section {
  padding: clamp(60px, 9vh, 110px) 0;
}
.section-light { background: var(--white); }
.section-paper { background: var(--offwhite); }
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .lead { color: var(--offwhite); }

.section-head { margin-bottom: 48px; max-width: 720px; }
.section-head h2 { margin-bottom: 12px; }

/* ---------- Asymmetric service grid ---------- */
.service-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card.feature {
  grid-row: 1 / span 2;
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  padding: 44px;
}
.service-card.feature h3 { color: var(--white); font-size: clamp(28px, 3vw, 38px); }
.service-card.feature p { color: var(--offwhite); }
.service-tag {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service-card h3 { margin-bottom: 8px; }
.service-card .price {
  font-family: var(--display);
  font-size: 28px;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin: 8px 0 12px;
}
.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
}
/* Hand-tuned nudge on the second small card */
.service-card.nudged { transform: translateY(4px); }

@media (max-width: 820px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card.feature { grid-row: auto; padding: 32px; }
  .service-card.nudged { transform: none; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--charcoal);
  color: var(--offwhite);
  padding: 22px 0;
}
.trust-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--body);
  font-size: 14px;
  letter-spacing: 0.06em;
}
.trust-strip strong {
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  margin-right: 8px;
}

/* ---------- Why Front Range list ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--gray-line);
}
.why-list li {
  border-bottom: 1px solid var(--gray-line);
  padding: 18px 0 18px 36px;
  position: relative;
  font-size: 17px;
}
.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 22px;
  height: 2px;
  background: var(--orange);
}
@media (max-width: 760px) {
  .why-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- Pricing block ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  padding: 28px;
  text-align: left;
  position: relative;
}
.pricing-card.featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.pricing-card.featured h3 { color: var(--white); }
.pricing-card.featured p { color: var(--offwhite); }
.pricing-card .label {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.pricing-card .amount {
  font-family: var(--display);
  font-size: 46px;
  color: inherit;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.pricing-card .pernote {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 14px;
}
.pricing-card.featured .pernote { color: #B7B0A2; }
.pricing-card .add-on {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 14px;
  color: var(--gray);
}
.pricing-card.featured .add-on { border-color: rgba(255,255,255,0.15); color: #B7B0A2; }
@media (max-width: 760px) {
  .pricing { grid-template-columns: 1fr; }
}

.pricing-note {
  margin-top: 22px;
  font-size: 14px;
  color: var(--gray);
}

/* ---------- How It Works steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
  counter-reset: step;
}
.step {
  background: var(--offwhite);
  padding: 26px 22px 26px;
  position: relative;
  border-top: 4px solid var(--orange);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--display);
  font-size: 48px;
  color: var(--navy);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.step h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--navy);
}
.step p { font-size: 15px; color: var(--charcoal); margin: 0; }
@media (max-width: 880px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- Two-column generic ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.split-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.split-photo .photo {
  background: var(--gray);
  background-size: cover;
  background-position: center;
  min-height: 320px;
}
/* First photo (Michael + Jon together) spans full width at the top */
.split-photo .photo:nth-child(1),
.split-photo .photo-real:nth-child(1) {
  grid-column: 1 / -1;
  min-height: auto;
}
/* Pair variant: two equal-width photos, no full-width first child */
.split-photo--pair .photo:nth-child(1),
.split-photo--pair .photo-real:nth-child(1) {
  grid-column: auto;
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split-photo .photo:nth-child(1) { min-height: 280px; }
}

/* Photo placeholder treatment until real photos arrive */
.photo-placeholder {
  background-color: var(--navy);
  position: relative;
  overflow: hidden;
}
.photo-placeholder::after {
  content: attr(data-label);
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 4px 8px;
}

/* ---------- What we clean list ---------- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
}
.checklist li {
  position: relative;
  padding-left: 26px;
  font-size: 17px;
  font-weight: 500;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 2px;
  background: var(--orange);
}
@media (max-width: 540px) {
  .checklist { grid-template-columns: 1fr; }
}

/* ---------- Service areas grid ---------- */
.areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  padding: 28px;
}
.area-card .city {
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 8px;
}
.area-card .zips {
  font-family: var(--body);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}
.area-card .note {
  font-size: 14px;
  color: var(--gray);
  margin-top: 10px;
}
.area-card.accent { background: var(--navy); border-color: var(--navy); }
.area-card.accent .city { color: var(--white); }
.area-card.accent .zips { color: var(--offwhite); }
.area-card.accent .note { color: #B7B0A2; }
@media (max-width: 800px) { .areas { grid-template-columns: 1fr; } }

/* ---------- Contact info block ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}
.contact-info dt {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 22px;
}
.contact-info dt:first-child { margin-top: 0; }
.contact-info dd {
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
}
.contact-info dd a { color: var(--navy); text-decoration: none; }
.contact-info dd a:hover { color: var(--orange); }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- Form wrapper ---------- */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-line);
  padding: 28px;
}
.form-wrap h3 { margin-top: 0; }
.form-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 40px;
  overflow: visible;
}
.form-wrap p.lead { font-size: 16px; }
.form-wrap iframe {
  width: 100%;
  border: 0;
  display: block;
}
/* Let the Jobber container size itself naturally based on its content */
.form-wrap div[id*="work-request"],
.form-wrap div[id*="2478255"] {
  width: 100%;
}
.form-fallback {
  font-size: 14px;
  color: var(--gray);
  margin-top: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: var(--offwhite);
  padding: 56px 0 26px;
  font-size: 15px;
}
.site-footer h4 {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a {
  color: var(--offwhite);
  text-decoration: none;
}
.footer-grid a:hover { color: var(--orange); }
.footer-brand .brand-name { color: var(--white); font-size: 24px; }
.footer-logo {
  height: 100px;
  width: auto;
  max-width: 260px;
  display: block;
  margin-bottom: 4px;
  background: #FFFFFF;
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.footer-brand p { color: #B7B0A2; max-width: 36ch; margin-top: 12px; }
.footer-phone {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
}
.footer-phone:hover { color: var(--orange); }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #8E8678;
}
.footer-bar a { color: #B7B0A2; text-decoration: none; }
.footer-bar a:hover { color: var(--orange); }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- End-of-page CTA band ---------- */
.cta-band {
  background: var(--orange);
  color: var(--white);
  padding: 44px 0;
}
.cta-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h3 {
  color: var(--white);
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 0.04em;
}
.cta-band .phone {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.cta-band .phone:hover { color: var(--navy); }
.cta-band .btn-secondary { border-color: var(--white); color: var(--white); }
.cta-band .btn-secondary:hover { background: var(--white); color: var(--orange); }

/* ---------- Generic page hero (smaller, no full photo) ---------- */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(54px, 9vh, 110px) 0 clamp(40px, 7vh, 80px);
  position: relative;
  border-bottom: 4px solid var(--orange);
}
.page-hero .eyebrow { color: var(--orange); }
.page-hero h1 { color: var(--white); }
.page-hero p { color: var(--offwhite); max-width: 60ch; }
.page-hero .container { position: relative; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
}
.hero-cta .btn { margin: 0; }
@media (max-width: 560px) {
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Prose body content ---------- */
.prose p { font-size: 17px; line-height: 1.7; max-width: 64ch; }
.prose p + p { margin-top: 14px; }
.prose h3 { margin-top: 32px; margin-bottom: 12px; }

/* ---------- Quote / pull ---------- */
.pull {
  border-left: 4px solid var(--orange);
  padding: 8px 0 8px 20px;
  font-size: 19px;
  font-weight: 500;
  color: var(--navy);
  font-style: normal;
  max-width: 56ch;
}

/* ---------- Reviews placeholder ---------- */
.reviews-soon {
  text-align: center;
  background: var(--offwhite);
  border: 1px dashed var(--gray-line);
  padding: 36px;
  color: var(--gray);
  font-size: 16px;
  letter-spacing: 0.04em;
}
.reviews-soon strong {
  display: block;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 6px;
}

/* ---------- Skip link for accessibility ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--orange);
  color: var(--white);
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Visually hidden ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Before/After Section (Recent Work) ---------- */
.before-after-section {
  padding: 80px 0;
}
.before-after-section .section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.before-after-section .section-sub {
  color: var(--offwhite);
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.6;
}
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.ba-card {
  margin: 0;
  position: relative;
}
.ba-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  aspect-ratio: 4 / 5;
}
.ba-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.12em;
  padding: 8px 18px;
  border-radius: 4px;
  color: var(--white);
}
.ba-label-before {
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.ba-label-after {
  background: var(--orange);
}
.ba-cta {
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 720px) {
  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .before-after-section { padding: 60px 0; }
}

/* ---------- Real photo cells in split layout ---------- */
.split-photo .photo-real {
  background: var(--offwhite);
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}
.split-photo .photo-labeled {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.split-photo .photo-labeled img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.ba-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  color: var(--white);
}
.ba-tag-before {
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.ba-tag-after {
  background: var(--orange);
}

/* ---------- Form section fallback ---------- */
/* Targeted padding for sections that contain forms */
section[id="quote"] {
  padding-bottom: clamp(80px, 10vh, 120px);
}

/* ---------- Family photo section (Meet the Team page) ---------- */
.family-section {
  padding: 80px 0;
}
.family-section .section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.family-photo {
  margin: 0 auto;
  max-width: 950px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.family-photo img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 720px) {
  .family-section { padding: 60px 0; }
}
