/* =========================================================
   HomeWise Property Inspections
   Design tokens
   Palette: HomeWise olive-forest green + warm charcoal + warm neutrals
   ========================================================= */
:root {
  --ink:        #2b2e26;  /* warm charcoal - primary dark (from logo) */
  --ink-2:      #363a30;  /* lighter charcoal */
  --ink-soft:   #41463a;
  --charcoal:   #2a2d25;  /* headings - warm near-black */
  --slate:      #565952;  /* body text - warm grey */
  --slate-2:    #7d7f74;  /* muted */
  --line:       #e2e0d5;  /* warm border */
  --line-2:     #eeece3;
  --cream:      #f6f4ee;  /* warm section bg */
  --cream-2:    #faf9f4;
  --white:      #ffffff;
  --accent:     #72735d;  /* HomeWise brand olive (main company colour) */
  --accent-2:   #565742;  /* deeper olive - button hover / links */
  --accent-tint:#ebece3;  /* pale olive tint */
  --ok:         #3f7d55;
  --watch:      #b8862f;
  --action:     #b4573a;
  --star:       #e0a83a;  /* gold - used only for review stars */

  --shadow-sm: 0 1px 2px rgba(40,44,36,.05);
  --shadow-md: 0 2px 8px rgba(40,44,36,.07);
  --shadow-lg: 0 10px 28px rgba(40,44,36,.10);

  --radius:   6px;
  --radius-sm:4px;
  --radius-lg:8px;

  --wrap: 1160px;
  --font-sans: 'Titillium Web', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Titillium Web', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* =========================================================
   Reset & base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--slate);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { color: var(--charcoal); font-family: var(--font-serif); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.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;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 15px; letter-spacing: .01em;
  padding: 13px 22px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .12s ease, background .18s ease, box-shadow .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap; cursor: pointer; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #2a1a05; box-shadow: 0 4px 14px rgba(189,128,57,.32); }
.btn-primary:hover { background: var(--accent-2); color: #fff; box-shadow: 0 6px 18px rgba(167,108,42,.38); }
.btn-outline { background: transparent; color: var(--ink); border-color: rgba(15,34,51,.28); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn-outline--light { color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline--light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-ghost { background: var(--cream); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 16.5px; }
.btn-block { display: flex; width: 100%; }

/* =========================================================
   Header / nav
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-2);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 92px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand-logo { height: 69px; width: auto; display: block; }
.brand-mark {
  display: inline-grid; place-items: center; width: 38px; height: 38px;
  background: var(--ink); color: #fff; border-radius: 10px;
}
.brand-name { font-family: var(--font-serif); font-weight: 600; font-size: 22px; color: var(--ink); letter-spacing: -.02em; }
.brand-name-accent { color: var(--accent); }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 26px; align-items: center; }
.main-nav li { display: flex; align-items: center; }
.main-nav a { font-size: 15px; font-weight: 500; color: var(--ink-soft); position: relative; padding: 6px 0; transition: color .15s; line-height: 1.2; }
.dropdown-trigger { line-height: 1.2; }
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--accent); transition: width .2s ease;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 15px; color: var(--ink); }
.header-phone:hover { color: var(--accent-2); }
.header-phone svg { color: var(--accent); }

.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: var(--cream); border-radius: 10px; padding: 0; position: relative; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu { border-top: 1px solid var(--line-2); background: #fff; padding: 12px 24px 20px; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { padding: 13px 4px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line-2); }
.mobile-menu-actions { display: grid; gap: 10px; margin-top: 16px; }

/* =========================================================
   Sections shared
   ========================================================= */
.section { padding: 92px 0; }
.section-head { max-width: 780px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); }
.section-lead { margin-top: 18px; font-size: 18px; color: var(--slate); }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: 12.5px; font-weight: 700; color: var(--accent-2); margin-bottom: 16px; }
.eyebrow-center { text-align: center; }
.hide-mobile { display: inline; }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; overflow: hidden; display: flex; align-items: center;
  min-height: min(84vh, 740px); border-bottom: 1px solid var(--line-2); background: var(--ink); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% center; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(11,26,40,.94) 0%, rgba(11,26,40,.82) 34%, rgba(12,28,43,.5) 62%, rgba(12,28,43,.18) 100%),
    linear-gradient(0deg, rgba(11,26,40,.55) 0%, rgba(11,26,40,0) 40%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-top: 40px; padding-bottom: 40px; }
.hero-copy { max-width: 720px; }
.hero-copy .eyebrow { color: #e3ab5a; }
/* Two forced lines: "Know what you're buying" / "before you commit".
   Font size shrinks fluidly so the longer line always fits on one line,
   even on small phones (≈9.64px width per 1px of font for the long line). */
.hero h1 { font-size: clamp(20px, calc((100vw - 48px) / 12.2), 62px); font-weight: 600; color: #fff; line-height: 1.06; letter-spacing: -.02em; text-shadow: 0 2px 24px rgba(0,0,0,.25); white-space: nowrap; }
.hero h1 .hero-line, .hero h1 .hl { display: block; white-space: nowrap; }
.hero h1 .hl { color: #e3ab5a; position: relative; }
.hero-sub { margin-top: 24px; font-size: 19px; max-width: 560px; color: #d7dfe7; }
.hero-sub em { font-style: italic; color: #fff; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.trust-strip { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.2); }
.trust-strip li { position: relative; padding-left: 24px; font-weight: 600; font-size: 14.5px; color: #eaf0f5; }
.trust-strip li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; border-radius: 50%; background: rgba(227,171,90,.22);
  box-shadow: inset 0 0 0 1.5px var(--accent);
}
.trust-strip li::after {
  content: ''; position: absolute; left: 5px; top: 50%; width: 4px; height: 8px;
  border: solid #e3ab5a; border-width: 0 2px 2px 0; transform: translateY(-60%) rotate(45deg);
}

/* =========================================================
   Trust cards
   ========================================================= */
.trust { background: var(--white); }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trust-card {
  background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.trust-icon { display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 12px; background: var(--ink); color: var(--accent); margin-bottom: 18px; }
.trust-card h3 { font-size: 20px; margin-bottom: 8px; }
.trust-card p { font-size: 15.5px; }

/* =========================================================
   Services
   ========================================================= */
.services { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.service-card h3 { font-size: 21px; margin-bottom: 10px; color: var(--ink); }
.service-card p { font-size: 15.5px; }
.service-link { margin-top: auto; padding-top: 16px; font-weight: 600; color: var(--accent-2); font-size: 15px; }
.service-link:hover { color: var(--ink); }

.service-card--feature {
  grid-column: span 3; display: grid; grid-template-columns: 1fr; gap: 0;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  border-color: var(--ink); position: relative; overflow: hidden;
}
.service-card--feature::after {
  content: ''; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(189,128,57,.22), transparent 70%);
}
.service-card--feature:hover { transform: none; box-shadow: var(--shadow-lg); }
.service-card-body { position: relative; max-width: 720px; padding: 8px 4px; }
.service-card--feature h3 { color: #fff; font-size: 27px; }
.service-card--feature p { color: #cfd9e2; font-size: 16.5px; }
.service-tag {
  display: inline-block; background: var(--accent); color: #2a1a05; font-weight: 700;
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
.service-points { margin: 18px 0 24px; display: grid; gap: 10px; }
.service-points li { position: relative; padding-left: 28px; color: #dce4ec; font-size: 15.5px; }
.service-points li::before {
  content: ''; position: absolute; left: 0; top: 8px; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(189,128,57,.2); box-shadow: inset 0 0 0 1.5px var(--accent);
}
.service-points li::after { content: ''; position: absolute; left: 5px; top: 11px; width: 4px; height: 8px; border: solid var(--accent); border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* =========================================================
   What we look for
   ========================================================= */
.look-for { background: var(--ink); color: #cdd8e1; }
.look-for h2 { color: #fff; }
.look-for .section-lead { color: #b7c3cd; }
.lookfor-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; max-width: 1000px; margin: 0 auto;
}
.lookfor-grid li {
  display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 18px 16px;
  font-weight: 500; color: #eef3f7; font-size: 15px; transition: background .18s, border-color .18s;
}
.lookfor-grid li:hover { background: rgba(189,128,57,.12); border-color: var(--accent); }
.lookfor-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex: none; box-shadow: 0 0 0 4px rgba(189,128,57,.18); }
.lookfor-note {
  max-width: 800px; margin: 40px auto 0; text-align: center; font-size: 16px; color: #b7c3cd; line-height: 1.7;
}
.lookfor-note strong { color: #fff; font-weight: 600; }

/* =========================================================
   Cost of not inspecting
   ========================================================= */
.cost { background: var(--cream); }
.cost-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.cost-copy h2 { font-size: clamp(27px, 3.4vw, 40px); margin-bottom: 22px; }
.cost-copy p { margin-bottom: 18px; font-size: 17px; }
.cost-copy em { font-style: italic; color: var(--charcoal); }
.cost-copy .btn { margin-top: 12px; }
.cost-stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 32px; box-shadow: var(--shadow-md); }
.cost-stat-row { margin-bottom: 26px; }
.cost-stat-label { display: block; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.cost-stat-bar { display: block; height: 16px; background: var(--line-2); border-radius: 999px; overflow: hidden; }
.cost-stat-bar span { display: block; height: 100%; border-radius: 999px; }
.cost-stat-bar.small span { width: 22%; background: var(--ok); }
.cost-stat-bar.large span { width: 100%; background: linear-gradient(90deg, var(--accent), var(--action)); }
.cost-stat-note { display: block; margin-top: 8px; font-size: 13.5px; color: var(--slate-2); }
.cost-stat-foot { margin-top: 6px; padding-top: 20px; border-top: 1px solid var(--line-2); font-size: 15px; color: var(--charcoal); font-weight: 500; }

/* =========================================================
   How it works
   ========================================================= */
.process { background: #fff; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; list-style: none; padding: 0; }
.step { position: relative; padding: 34px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream-2); }
.step-num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  background: var(--ink); color: var(--accent); font-family: var(--font-serif); font-weight: 700; font-size: 22px; margin-bottom: 18px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 15px; }
.step:not(:last-child)::after {
  content: ''; position: absolute; right: -15px; top: 50px; width: 22px; height: 2px; background: var(--line);
}

/* =========================================================
   Report section
   ========================================================= */
.report { background: var(--cream); }
.report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.report-copy h2 { font-size: clamp(27px, 3.4vw, 40px); margin-bottom: 20px; }
.report-copy p { margin-bottom: 16px; }
.report-list { display: grid; gap: 10px; margin: 20px 0 28px; }
.report-list li { position: relative; padding-left: 30px; font-weight: 500; color: var(--charcoal); }
.report-list li::before { content: ''; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--accent-tint); box-shadow: inset 0 0 0 1.5px var(--accent); }
.report-list li::after { content: ''; position: absolute; left: 7px; top: 7px; width: 5px; height: 9px; border: solid var(--accent-2); border-width: 0 2px 2px 0; transform: rotate(45deg); }

.report-mock { position: relative; }
.report-mock-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%); z-index: 2;
  background: var(--ink); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .04em;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.report-doc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 30px 30px 22px; }
.report-doc-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 2px solid var(--ink); }
.report-doc-brand { display: flex; align-items: center; gap: 12px; }
.report-doc-logo { display: grid; place-items: center; width: 40px; height: 40px; background: var(--ink); color: var(--accent); font-family: var(--font-serif); font-weight: 700; border-radius: 9px; font-size: 15px; }
.report-doc-brand strong { display: block; color: var(--ink); font-size: 15px; }
.report-doc-brand span { font-size: 12.5px; color: var(--slate-2); }
.report-doc-ref { font-size: 12px; color: var(--slate-2); }
.report-doc-meta { display: flex; gap: 30px; padding: 16px 0; border-bottom: 1px solid var(--line-2); font-size: 13px; color: var(--slate); }
.report-doc-meta b { color: var(--ink); font-weight: 600; }
.report-doc-section { padding: 14px 0; border-bottom: 1px solid var(--line-2); }
.rlabel { display: inline-block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 3px 10px; border-radius: 6px; margin-bottom: 8px; }
.rlabel--ok { background: #e4f1ea; color: var(--ok); }
.rlabel--watch { background: #f7edd6; color: var(--watch); }
.rlabel--action { background: #f6e2da; color: var(--action); }
.report-doc-section p { font-size: 13.5px; color: var(--slate); margin: 0; }
.report-doc-foot { padding-top: 16px; text-align: center; font-size: 12px; color: var(--slate-2); font-style: italic; }

/* =========================================================
   About
   ========================================================= */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
.about-photo { position: relative; }
.about-photo-frame {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); border: 1px solid var(--line);
  background: var(--cream); overflow: hidden; box-shadow: var(--shadow-md);
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 40% 35%; display: block; }
.about-namecard {
  position: absolute; left: 22px; bottom: -22px; background: var(--ink); color: #fff;
  padding: 14px 22px; border-radius: 12px; box-shadow: var(--shadow-md);
}
.about-namecard strong { display: block; font-family: var(--font-serif); font-size: 18px; }
.about-namecard span { font-size: 13px; color: #b7c3cd; }
.about-copy h2 { font-size: clamp(27px, 3.4vw, 40px); margin-bottom: 20px; }
.about-copy p { margin-bottom: 16px; font-size: 17px; }
.about-values { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 28px; }
.about-values li { background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: 8px 18px; font-weight: 600; font-size: 14px; color: var(--ink); }
.about-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* =========================================================
   Reviews
   ========================================================= */
.reviews { background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; position: relative; }
.stars { color: var(--accent); font-size: 19px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 16px; color: var(--charcoal); font-style: italic; }
.review-author { margin-top: 14px; font-weight: 600; color: var(--ink); font-size: 15px; }
.review-card--placeholder { border-style: dashed; background: rgba(255,255,255,.6); }
.review-flag { position: absolute; top: 14px; right: 14px; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--slate-2); background: var(--cream); border: 1px solid var(--line); padding: 3px 8px; border-radius: 6px; }
.reviews-cta { margin-top: 36px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.reviews-cta p { color: var(--slate); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: #fff; }
.faq-wrap { max-width: 840px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--cream-2); overflow: hidden; transition: border-color .18s, box-shadow .18s; }
.faq-item[open] { border-color: var(--accent); box-shadow: var(--shadow-sm); background: #fff; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 600; color: var(--ink);
  font-size: 17px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 24px; font-weight: 400; color: var(--accent-2); line-height: 1;
  transition: transform .2s ease; flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { color: var(--slate); font-size: 16px; }
.faq-answer em { color: var(--accent-2); font-style: italic; font-size: 14.5px; }
.faq-answer a { color: var(--accent-2); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  background:
    radial-gradient(700px 400px at 80% 120%, rgba(189,128,57,.28), transparent 60%),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff; text-align: center;
}
.cta-band-inner { max-width: 760px; margin: 0 auto; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 3.8vw, 44px); }
.cta-band p { margin-top: 18px; font-size: 19px; color: #cdd8e1; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }
.cta-band-email { display: inline-block; margin-top: 20px; color: #b7c3cd; font-size: 15px; text-decoration: underline; text-underline-offset: 3px; }
.cta-band-email:hover { color: #fff; }

/* =========================================================
   Contact / form
   ========================================================= */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.contact-intro h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 16px; }
.contact-details { margin: 28px 0; display: grid; gap: 16px; }
.contact-details li { display: flex; align-items: center; gap: 14px; font-size: 16px; color: var(--charcoal); font-weight: 500; }
.contact-details a:hover { color: var(--accent-2); }
.contact-ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; background: #fff; border: 1px solid var(--line); color: var(--accent-2); flex: none; }
.contact-reassure { background: var(--accent-tint); border: 1px solid #e6d3af; border-radius: 12px; padding: 16px 18px; font-size: 15.5px; color: var(--ink); }

.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-weight: 600; font-size: 14px; color: var(--ink); margin-bottom: 7px; }
.field .opt { font-weight: 400; color: var(--slate-2); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 16px; color: var(--charcoal); padding: 13px 14px;
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--cream-2);
  transition: border-color .16s, box-shadow .16s, background .16s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px rgba(189,128,57,.16);
}
.field textarea { resize: vertical; }
.form-microcopy { margin-top: 14px; text-align: center; font-size: 13.5px; color: var(--slate-2); }
.form-status { margin-top: 14px; padding: 14px 16px; border-radius: 10px; font-size: 15px; font-weight: 500; }
.form-status.is-ok { background: #e4f1ea; color: var(--ok); border: 1px solid #bfe0cf; }
.form-status.is-err { background: #f6e2da; color: var(--action); border: 1px solid #e6c4b7; }
.hp-field { position: absolute; left: -9999px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--ink); color: #aebcc7; padding: 68px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.brand--footer .brand-name { color: #fff; }
.brand--footer .brand-mark { background: rgba(255,255,255,.1); color: #fff; }
.footer-brand p { margin: 18px 0; font-size: 15px; color: #9fb0bc; max-width: 320px; }
.footer-trust { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.footer-trust li { font-size: 13px; font-weight: 600; color: #cdd8e1; position: relative; padding-left: 16px; }
.footer-trust li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.footer-col h3 { color: #fff; font-family: var(--font-sans); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { font-size: 15px; color: #aebcc7; transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-contact .btn { margin-top: 18px; }
.footer-base {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13.5px; color: #7f909d;
}

/* =========================================================
   Mobile sticky bar
   ========================================================= */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--line);
}
.mobile-bar-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; border-radius: 12px; font-weight: 700; font-size: 15px; }
.mobile-bar-call { background: var(--cream); color: var(--ink); border: 1.5px solid var(--line); }
.mobile-bar-book { background: var(--accent); color: #2a1a05; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero { min-height: 640px; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11,26,40,.94) 0%, rgba(11,26,40,.82) 46%, rgba(12,28,43,.55) 78%, rgba(12,28,43,.3) 100%),
      linear-gradient(0deg, rgba(11,26,40,.6) 0%, rgba(11,26,40,0) 45%);
  }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .lookfor-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 860px) {
  .main-nav, .header-phone { display: none; }
  .header-actions { margin-left: auto; }
  .nav-toggle { display: block; }
  .header-actions .btn-sm { display: none; }
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card--feature { grid-column: span 2; }
  .cost-grid, .report-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:not(:last-child)::after { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-photo-frame { max-width: 360px; }
  .report-mock { max-width: 480px; margin: 0 auto; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 76px; }
  .site-footer { padding-bottom: 90px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .brand-logo { height: 57px; }
  .hero { min-height: 600px; }
  .hero-bg { object-position: 62% center; }
  .hero-overlay {
    background: linear-gradient(0deg, rgba(11,26,40,.96) 8%, rgba(11,26,40,.72) 55%, rgba(11,26,40,.55) 100%);
  }
  .hero-inner { padding-top: 28px; padding-bottom: 34px; }
  .hero-sub { font-size: 17px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; }
  .cards-4, .services-grid, .steps, .lookfor-grid { grid-template-columns: 1fr; }
  .service-card--feature { grid-column: span 1; }
  .service-card--feature h3 { font-size: 23px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .section-head { margin-bottom: 38px; }
  .section-head h2 { font-size: clamp(25px, 7vw, 32px); }
  .hide-mobile { display: none; }
  .contact-form { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .about-namecard { left: 50%; transform: translateX(-50%); text-align: center; white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* =========================================================
   MULTI-PAGE COMPONENTS
   ========================================================= */

/* ---- Active nav state ---- */
.main-nav a[aria-current="page"] { color: var(--ink); }
.main-nav a[aria-current="page"]::after { width: 100%; }

/* ---- Services dropdown (desktop) ---- */
.main-nav .has-dropdown { position: relative; }
.dropdown-trigger { display: inline-flex; align-items: center; gap: 5px; }
.dd-caret { transition: transform .2s ease; margin-top: 1px; }
.has-dropdown:hover .dd-caret,
.has-dropdown:focus-within .dd-caret { transform: rotate(180deg); }
.dropdown-panel {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 340px; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden;
  transition: opacity .18s ease, transform .18s ease; z-index: 50;
}
.dropdown-panel::before { content: ''; position: absolute; top: -18px; left: 0; right: 0; height: 18px; }
.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-panel ul { display: grid; gap: 2px; }
.dropdown-panel a { display: block; padding: 11px 14px; border-radius: 10px; transition: background .15s; }
.dropdown-panel a:hover { background: var(--cream); }
.dropdown-panel a::after { display: none; }
.dd-name { display: block; font-weight: 600; color: var(--ink); font-size: 15px; }
.dd-desc { display: block; font-size: 13px; color: var(--slate-2); margin-top: 1px; }
.dd-all { margin-top: 6px; padding-top: 6px; border-top: 1px solid var(--line-2); }
.dd-all a { color: var(--accent-2); font-weight: 600; }
.dd-all .dd-name { color: var(--accent-2); }

/* ---- Mobile submenu group ---- */
.mobile-menu .m-group { display: flex; flex-direction: column; border-bottom: 1px solid var(--line-2); padding-bottom: 6px; }
.mobile-menu .m-group-head { border-bottom: none !important; padding-bottom: 6px; }
.mobile-menu .m-sublink { padding: 10px 4px 10px 18px !important; font-weight: 500 !important; color: var(--slate) !important; border-bottom: none !important; font-size: 15px; }
.mobile-menu .m-sublink::before { content: '\2013\00a0'; color: var(--accent); }

/* ---- Background utilities ---- */
.bg-white { background: #fff; }
.bg-cream { background: var(--cream); }

/* ---- Interior page hero ---- */
.page-hero { position: relative; overflow: hidden; background: var(--ink); }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url('/assets/img/hero-banner.jpg') center/cover no-repeat; opacity: .15; }
.page-hero-overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,34,51,.72) 0%, rgba(15,34,51,.88) 100%); }
.page-hero-inner { position: relative; z-index: 2; padding: 40px 24px 60px; max-width: var(--wrap); }
.page-hero .eyebrow { color: #e3ab5a; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 4.6vw, 52px); max-width: 900px; line-height: 1.06; }
.page-hero-sub { margin-top: 20px; font-size: 19px; color: #d7dfe7; max-width: 680px; }
.page-hero-sub a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.page-hero .hero-cta { margin-top: 30px; }
.page-hero--compact .page-hero-inner { padding-bottom: 52px; }

/* ---- Breadcrumbs ---- */
.breadcrumbs { margin-bottom: 22px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumbs li { display: flex; align-items: center; font-size: 13.5px; color: #a9b7c3; }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 6px; color: #6b7d8b; }
.breadcrumbs a { color: #c3cfd9; transition: color .15s; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs [aria-current="page"] { color: #fff; font-weight: 500; }

/* ---- Content sections ---- */
.section-head--left { max-width: 760px; margin-left: 0; margin-right: 0; text-align: left; }
.content-narrow { max-width: 760px; }
.content-narrow h2 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 20px; }
.content-narrow p { font-size: 17.5px; margin-bottom: 16px; }
.content-narrow.center { margin: 0 auto; text-align: center; }
.content-narrow .lead { font-size: 19px; color: var(--slate); }

/* ---- Inspect groups (service pages) ---- */
.inspect-groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.inspect-group { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.inspect-group h3 { font-size: 19px; margin-bottom: 16px; color: var(--ink); }
.check-list { display: grid; gap: 11px; }
.check-list li { position: relative; padding-left: 28px; font-size: 15.5px; color: var(--slate); }
.check-list li::before { content: ''; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--accent-tint); box-shadow: inset 0 0 0 1.5px var(--accent); }
.check-list li::after { content: ''; position: absolute; left: 6px; top: 6px; width: 5px; height: 9px; border: solid var(--accent-2); border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ---- Pills / tags ---- */
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill-grid li { background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; font-weight: 600; font-size: 14.5px; color: var(--ink); }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 24px 0 30px; }
.pill-row span { background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: 9px 20px; font-weight: 600; font-size: 14.5px; color: var(--ink); }

/* ---- Who it's for ---- */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.who-grid li { display: flex; align-items: flex-start; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; font-size: 15.5px; color: var(--charcoal); font-weight: 500; }
.who-check { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--ok); color: #fff; font-size: 13px; font-weight: 700; flex: none; }

/* ---- Scope / caveat note ---- */
.scope-note { display: flex; gap: 14px; align-items: flex-start; margin-top: 30px; background: #fbf7ef; border: 1px solid #e7d7b6; border-left: 4px solid var(--accent); border-radius: 12px; padding: 20px 22px; }
.scope-note-ico { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--accent); color: #2a1a05; font-weight: 700; font-family: var(--font-serif); font-style: italic; flex: none; }
.scope-note p { margin: 0; font-size: 15.5px; color: var(--charcoal); }

/* ---- Services grids on inner pages ---- */
.services-grid--3 { grid-template-columns: repeat(3, 1fr); }
.svc-overview-card { display: flex; flex-direction: column; }
.svc-mini { margin: 16px 0 20px; display: grid; gap: 8px; }
.svc-mini li { font-size: 14px; color: var(--slate); }
.svc-mini b { color: var(--ink); font-weight: 600; }
.svc-overview-card .btn { margin-top: auto; align-self: flex-start; }
.services-viewall { text-align: center; margin-top: 40px; }
.service-feature-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }

/* ---- FAQ page categories ---- */
.faq-cat { margin-bottom: 44px; }
.faq-cat:last-child { margin-bottom: 0; }
.faq-cat-title { font-size: 24px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--line); color: var(--ink); }
.faq-more { text-align: center; margin-top: 32px; }

/* ---- Related services ---- */
.related { background: var(--cream); }

/* ---- Reviews notice ---- */
.reviews-notice { max-width: 760px; margin: 0 auto 34px; text-align: center; background: var(--accent-tint); border: 1px solid #e6d3af; border-radius: 12px; padding: 18px 22px; }
.reviews-notice p { color: var(--ink); font-size: 15.5px; }

/* ---- Contact page extras ---- */
.contact-actions { display: grid; gap: 12px; margin: 26px 0; }
.contact-next { background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; margin-bottom: 22px; }
.contact-next h3 { font-size: 18px; margin-bottom: 14px; color: var(--ink); }
.next-steps { display: grid; gap: 12px; counter-reset: ns; }
.next-steps li { position: relative; padding-left: 40px; font-size: 15.5px; color: var(--slate); counter-increment: ns; }
.next-steps li::before { content: counter(ns); position: absolute; left: 0; top: -2px; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--accent); font-family: var(--font-serif); font-weight: 700; font-size: 14px; }
.contact-form-title { font-size: 22px; margin-bottom: 20px; color: var(--ink); }
.center-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 8px; }

/* ---- Multi-page responsive ---- */
@media (max-width: 900px) {
  .services-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .page-hero-inner { padding: 32px 24px 44px; }
  .page-hero-sub { font-size: 17px; }
  .who-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .services-grid--3 { grid-template-columns: 1fr; }
  .service-feature-cta .btn { flex: 1; }
  .pill-row { justify-content: flex-start; }
}

/* ---- Footer logo (white version of the real logo) ---- */
.footer-brand-link { display: inline-block; }
.footer-logo { height: 58px; width: auto; display: block; filter: brightness(0) invert(1); }
@media (max-width: 560px) { .footer-logo { height: 50px; } }

/* ---- Featured service card (Pre-Purchase) within the uniform grid ---- */
.service-card--highlight { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.service-card--highlight .service-tag { margin-bottom: 14px; }

/* ---- Real report page facsimile (replaces the sample mock) ---- */
.report-real { position: relative; }
.report-page {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-lg); overflow: hidden; color: #3f453b;
  font-size: 11px; line-height: 1.5;
}
.rpt-band {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #6f7355; color: #fff; padding: 11px 16px;
}
.rpt-band-title { font-family: var(--font-sans); font-weight: 700; font-size: 15px; letter-spacing: .01em; }
.rpt-band-tools { display: flex; align-items: center; gap: 14px; }
.rpt-check { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: #45a049; color: #fff; }
.rpt-band-logo { height: 22px; width: auto; filter: brightness(0) invert(1); opacity: .95; }
.rpt-body { padding: 16px 18px; }
.rpt-body h4 { font-family: var(--font-sans); font-size: 11.5px; font-weight: 700; color: #12263a; margin: 14px 0 5px; }
.rpt-body h4:first-child { margin-top: 0; }
.rpt-body p { margin: 0 0 4px; font-size: 11px; color: #4a5046; }
.rpt-body p b { color: #2b3138; }
.rpt-h-underline { text-decoration: underline; text-underline-offset: 2px; margin-top: 18px !important; }
.rpt-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 14px 0 6px; }
.rpt-photos figure { margin: 0; }
.rpt-photo { display: block; aspect-ratio: 4 / 3; border-radius: 4px;
  background: linear-gradient(135deg, #e2e5da 0%, #cdd0c1 55%, #d8d2c6 100%); }
.rpt-photos figcaption { font-size: 8.5px; line-height: 1.3; color: #7c8172; margin-top: 4px; }
.rpt-foot { display: flex; justify-content: space-between; gap: 10px; padding: 9px 18px;
  border-top: 1px solid var(--line-2); font-size: 9px; color: #9aa08e; }
@media (max-width: 560px) { .report-page { font-size: 12px; } .rpt-body p { font-size: 12px; } }

/* ---- Reviews carousel (real Google reviews) ---- */
.reviews-carousel { position: relative; }
.rc-track {
  display: flex; gap: 20px; overflow-x: auto;
  padding: 6px 2px; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
  cursor: grab; user-select: none; -webkit-user-select: none;
}
.rc-track.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.rc-track::-webkit-scrollbar { display: none; width: 0; height: 0; }
.rc-track > .review-card {
  flex: 0 0 clamp(270px, 82%, 370px);
  display: flex; flex-direction: column;
}
@media (min-width: 760px) { .rc-track > .review-card { flex-basis: 348px; } }

.review-card .review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 17px; font-family: var(--font-sans); flex: none; }
.review-id { display: flex; flex-direction: column; min-width: 0; }
.review-name { font-weight: 700; color: var(--ink); font-size: 15px; line-height: 1.2; }
.review-meta { font-size: 12.5px; color: var(--slate-2); }
.review-g { margin-left: auto; flex: none; display: inline-flex; }
.review-rate { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.review-rate .stars { font-size: 15px; margin-bottom: 0; letter-spacing: 1px; }
.review-when { font-size: 12.5px; color: var(--slate-2); }
.review-headline { font-weight: 700; color: var(--charcoal); font-size: 15px; margin-bottom: 5px; }
.rc-track .review-text { font-style: normal; font-size: 14.5px; color: var(--slate); line-height: 1.6; }

.rc-nav {
  position: absolute; top: 42%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-md); color: var(--ink); display: grid; place-items: center; cursor: pointer;
  transition: background .15s ease, color .15s ease, opacity .15s ease;
}
.rc-nav:hover { background: var(--ink); color: #fff; }
.rc-prev { left: -8px; }
.rc-next { right: -8px; }
@media (max-width: 560px) { .rc-nav { width: 40px; height: 40px; } .rc-prev { left: -4px; } .rc-next { right: -4px; } }

.reviews-cta .btn .g-logo { margin-right: 2px; }

/* =========================================================
   CONVERSION PASS: qualified-builder positioning
   ========================================================= */

/* Hero sub-lead */
.hero-lead { margin-top: 16px; font-size: 18px; color: #eef3f7; font-weight: 500; max-width: 620px; }
.hero-lead strong { color: #fff; font-weight: 700; }

/* Difference cards: lead accent on the Qualified Builder card */
.trust-card--lead { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.trust-card--lead .trust-icon { background: var(--accent); color: #2a1a05; }
.difference-note { text-align: center; margin-top: 30px; font-size: 14px; font-weight: 600; color: var(--slate-2); letter-spacing: .01em; }

/* Builder / Meet Nick section */
.builder { background: var(--cream); }
.builder-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: center; }
.builder-photo { position: relative; }
.builder-copy h2 { font-size: clamp(27px, 3.4vw, 40px); margin-bottom: 18px; }
.builder-copy p { margin-bottom: 14px; font-size: 17px; }
.builder-points { margin: 20px 0 26px; }
.builder-points li { font-weight: 500; color: var(--charcoal); }

/* Featured pull-quote (dark band) */
.pullquote-section { background: var(--ink); }
.pull-quote { max-width: 880px; margin: 0 auto; text-align: center; position: relative; }
.pull-quote-mark { display: block; font-family: var(--font-serif); font-size: 68px; line-height: .6; color: var(--accent); margin-bottom: 10px; }
.pull-quote .stars { color: var(--accent); font-size: 20px; letter-spacing: 2px; justify-content: center; margin-bottom: 16px; }
.pull-quote blockquote { font-family: var(--font-serif); font-size: clamp(20px, 2.6vw, 29px); line-height: 1.42; color: #fff; font-weight: 500; margin: 0; }
.pull-quote figcaption { margin-top: 20px; color: #b7c3cd; font-size: 15px; }
.pull-quote figcaption strong { color: #fff; }

/* First-home buyers */
.firsthome-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.firsthome-copy h2 { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 16px; }
.firsthome-copy p { font-size: 17px; margin-bottom: 24px; }
.firsthome-quote { background: var(--cream); border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 26px 28px; }
.firsthome-quote .stars { color: var(--accent); font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.firsthome-quote blockquote { margin: 0; font-size: 16.5px; color: var(--charcoal); font-style: italic; line-height: 1.6; }
.firsthome-quote figcaption { margin-top: 16px; font-weight: 600; color: var(--ink); font-size: 14px; }

/* Featured reviews grid (static, no duplication) */
.reviews-grid--featured { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reviews-grid--featured .review-card { display: flex; flex-direction: column; }
.reviews-grid--featured .review-text { font-style: normal; font-size: 14.5px; color: var(--slate); line-height: 1.6; }
.reviews-more { text-align: center; margin-top: 34px; }

/* Builder angle (service pages) */
.builder-angle { border-top: 1px solid var(--line-2); }
.builder-angle-inner { max-width: 820px; }
.builder-badge { display: inline-block; background: var(--ink); color: var(--accent); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.builder-angle-inner h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 16px; }
.builder-angle-inner p { font-size: 17px; margin-bottom: 14px; }
.builder-points--inline { margin-top: 22px; }

/* No-obligation quote callout */
.quote-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.quote-text { max-width: 640px; }
.quote-text h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 10px; }
.quote-text p { font-size: 17px; }
.quote-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Urgency band */
.urgency { background: linear-gradient(135deg, var(--accent) 0%, #a2691f 100%); }
.urgency-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.urgency .eyebrow { color: #3a2606; }
.urgency-copy h2 { color: #2a1a05; font-size: clamp(24px, 3vw, 34px); }
.urgency-copy p { color: #3a2606; margin-top: 8px; font-size: 17px; max-width: 620px; }
.urgency .btn-primary { background: var(--ink); color: #fff; box-shadow: 0 6px 18px rgba(15,34,51,.25); }
.urgency .btn-primary:hover { background: #071726; color: #fff; }

/* Contact form urgent line */
.form-urgent { margin-top: 8px; text-align: center; font-size: 13.5px; color: var(--slate); }
.form-urgent a { color: var(--accent-2); font-weight: 600; }

/* Responsive */
@media (max-width: 860px) {
  .builder-grid, .firsthome-grid { grid-template-columns: 1fr; gap: 36px; }
  .reviews-grid--featured { grid-template-columns: 1fr; }
  .quote-inner, .urgency-inner { flex-direction: column; align-items: flex-start; }
  .quote-actions .btn, .urgency .btn { width: 100%; justify-content: center; }
}
@media (max-width: 900px) and (min-width: 561px) {
  .reviews-grid--featured { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Legal / privacy policy ---- */
.legal { max-width: 760px; }
.legal p { font-size: 16.5px; margin-bottom: 16px; color: var(--slate); }
.legal h2 { font-size: 22px; margin: 34px 0 12px; color: var(--ink); }
.legal ul { list-style: disc; padding-left: 22px; margin: 0 0 18px; }
.legal li { margin-bottom: 7px; font-size: 16.5px; color: var(--slate); }
.legal a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 2px; }
.legal-updated { font-size: 14px !important; color: var(--slate-2) !important; font-weight: 600; margin-bottom: 24px !important; }
.legal-note { margin-top: 28px; padding: 16px 18px; background: var(--cream); border: 1px solid var(--line); border-radius: 12px; font-size: 14.5px !important; color: var(--slate-2) !important; }
.footer-legal a { color: #cdd8e1; text-decoration: underline; text-underline-offset: 2px; }
.footer-legal a:hover { color: var(--accent); }

/* ---- Footer "Book an Inspection" button: brighter, near-white label ---- */
.footer-contact .btn-primary { color: #fbf5ec; }

/* ---- Cost section feature image (replaces the comparison bars) ---- */
.cost-figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.cost-figure img { width: 100%; height: auto; display: block; }

/* =========================================================================
   BRAND REFINEMENT - authentic HomeWise (green + charcoal), less "AI/SaaS":
   flatter blocks, near-square green buttons, fewer pills/badges, solid
   backgrounds, no-box icons, grounded typography, tighter rhythm.
   ========================================================================= */

/* ---- Typography: grounded, confident, not oversized ---- */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.005em; }
.section { padding: 72px 0; }
.section-head { margin-bottom: 40px; }
.section-head h2 { font-size: clamp(23px, 2.7vw, 32px); line-height: 1.15; }
.section-lead { font-size: 17px; margin-top: 13px; }
.eyebrow { color: var(--accent); letter-spacing: .1em; font-size: 12px; font-weight: 700; }

/* ---- Buttons: professional, near-square, brand green ---- */
.btn { border-radius: 5px; font-weight: 600; letter-spacing: 0; }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: none; }
.btn-primary:hover { background: var(--accent-2); color: #fff; box-shadow: none; }
.btn-outline { border-color: rgba(43,46,38,.30); color: var(--ink); }
.btn-outline:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn-ghost { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.footer-contact .btn-primary { color: #fff; }
.mobile-bar-book { color: #fff; }

/* Links pick up brand green */
.faq-answer a, .content-narrow a, .legal a, .section-lead a, .faq-more a,
.reviews-more a, .services-viewall a, .service-link { color: var(--accent-2); }

/* ---- Hero: grounded headline, solid charcoal scrim, plain trust row ---- */
.hero { min-height: min(74vh, 640px); }
.hero h1 { font-size: clamp(26px, calc((100vw - 48px) / 16.5), 46px); line-height: 1.12; text-shadow: 0 1px 12px rgba(0,0,0,.30); }
.hero-lead { font-size: 17px; color: #eef0e8; }
.hero-sub { font-size: 17.5px; color: #e2e5db; }
.hero .hl { color: #c7cfb1; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(28,30,24,.90) 0%, rgba(28,30,24,.78) 40%, rgba(28,30,24,.44) 70%, rgba(28,30,24,.14) 100%),
    linear-gradient(0deg, rgba(28,30,24,.5) 0%, rgba(28,30,24,0) 42%);
}

/* Trust strip -> plain divided inline row (no chips) */
.trust-strip { gap: 6px 0; margin-top: 28px; padding-top: 22px; border-top-color: rgba(255,255,255,.22); }
.trust-strip li { padding-left: 0; padding-right: 18px; margin-right: 18px; border-right: 1px solid rgba(255,255,255,.28); font-weight: 600; font-size: 13px; color: #eef0e8; }
.trust-strip li:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.trust-strip li::before, .trust-strip li::after { display: none; }

/* ---- De-card the icon+heading+text blocks into plain columns ---- */
.trust-card, .trust-card--lead {
  background: transparent; border: none; box-shadow: none; border-radius: 0;
  padding: 2px 22px 2px 0;
}
.trust-card:hover { transform: none; box-shadow: none; border-color: transparent; }
.trust-icon { width: auto; height: auto; background: none; color: var(--accent); border-radius: 0; margin-bottom: 12px; }
.trust-card--lead .trust-icon { background: none; color: var(--accent); }
.trust-card--lead h3 { color: var(--accent); }
.difference .cards-4 { gap: 30px; }
.difference-note { color: var(--slate-2); font-weight: 600; }

/* Service cards: keep (usability) but flat + quiet */
.service-card { box-shadow: none; border-radius: var(--radius); transition: border-color .15s ease; }
.service-card:hover { transform: none; box-shadow: none; border-color: var(--accent); }
.service-card--highlight { box-shadow: none; border-color: var(--accent); }
.service-tag { display: none; }              /* drop "Most popular" badge */

/* ---- Solid backgrounds instead of gradients ---- */
.services { background: var(--cream); }
.cta-band { background: var(--ink); }
.look-for { background: var(--ink); }
.pullquote-section { background: var(--ink); }
.page-hero { background: var(--ink); }
.page-hero::before { opacity: .12; }
.page-hero-overlay { background: linear-gradient(180deg, rgba(28,30,24,.80) 0%, rgba(28,30,24,.90) 100%); }
.page-hero h1 { font-size: clamp(25px, 3.4vw, 37px); }

/* Urgency band -> solid brand green */
.urgency { background: var(--accent); }
.urgency .eyebrow { color: #dfe6d1; }
.urgency-copy h2 { color: #fff; }
.urgency-copy p { color: #eef1e7; }
.urgency .btn-primary { background: #fff; color: var(--ink); }
.urgency .btn-primary:hover { background: var(--ink); color: #fff; }

/* Builder badge -> understated label, not a pill */
.builder-badge { background: none; color: var(--accent); border-radius: 0; padding: 0 0 4px; border-bottom: 2px solid var(--accent); letter-spacing: .1em; }

/* Pills (values / trust tags) -> simple square-marker text lists */
.about-values, .pill-row, .pill-grid { gap: 9px 22px; }
.about-values li, .pill-row span, .pill-grid li {
  background: transparent; border: none; border-radius: 0; padding: 0 0 0 17px;
  color: var(--slate); font-weight: 500; font-size: 15px; position: relative;
}
.about-values li::before, .pill-row span::before, .pill-grid li::before {
  content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; background: var(--accent); border-radius: 1px;
}

/* Review stars stay gold (universal convention) */
.stars { color: var(--star); }

/* Quieter arrows / avatars keep their circle (authentic to Google) */
.rc-nav { border-radius: 6px; }

/* Report facsimile band -> brand green */
.rpt-band { background: #4c5a3a; }

/* Section rhythm: a touch tighter on the two-column blocks */
.cost-grid, .report-grid, .about-grid, .builder-grid, .firsthome-grid, .contact-grid { gap: 48px; }

/* Scope note / callouts: calmer, bordered not glowy */
.scope-note { background: var(--cream); border-color: var(--line); border-left-color: var(--accent); }
.scope-note-ico { background: var(--accent); color: #fff; }

@media (max-width: 560px) {
  .section { padding: 54px 0; }
  .trust-strip li { padding-right: 12px; margin-right: 12px; }
}

/* Keep all review stars gold, including scoped instances */
.pull-quote .stars, .firsthome-quote .stars, .review-rate .stars, .reviews-notice .stars { color: var(--star); }

/* Dark-hero accents -> light sage (brand), not amber */
.hero-copy .eyebrow, .page-hero .eyebrow { color: #c3ccae; }
.hero h1 .hl { color: #c7cfb1; }

/* Restore light outline button (used on dark heroes/CTA bands) after the brand overrides */
.btn-outline--light { color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline--light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* "What could be hiding" -> clean checklist, not boxed chips */
.look-for .section-lead { color: #b9bcaf; }
.lookfor-grid { grid-template-columns: repeat(2, 1fr); gap: 0 56px; max-width: 820px; }
.lookfor-grid li { background: none; border: none; border-radius: 0; padding: 13px 2px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 16px; color: #eaece2; font-weight: 500; }
.lookfor-grid li:hover { background: none; border-color: transparent; border-bottom-color: rgba(255,255,255,.12); }
.lookfor-grid li:nth-last-child(-n+2) { border-bottom: none; }
.lookfor-dot { width: 7px; height: 7px; border-radius: 1px; background: #b7c29b; box-shadow: none; }
@media (max-width: 620px) {
  .lookfor-grid { grid-template-columns: 1fr; gap: 0; }
  .lookfor-grid li:nth-last-child(2) { border-bottom: 1px solid rgba(255,255,255,.12); }
}

/* Numerals/marks on the dark charcoal badges -> white for contrast */
.step-num, .report-doc-logo, .next-steps li::before { color: #fff; }

/* =========================================================================
   LANDING PAGE (Google Ads) - layout on top of the HomeWise brand system
   ========================================================================= */

/* Header: no nav, actions to the right */
.lp-header .header-actions { margin-left: auto; }

/* Hero: single-sentence headline (override the two-line homepage hack) */
.lp-hero { min-height: min(70vh, 600px); }
.lp-hero h1 { white-space: normal; font-size: clamp(28px, 4.4vw, 41px); line-height: 1.12; }
.lp-hero .hero-sub { max-width: 560px; }

/* Why HomeWise: plain columns, no boxes */
.lp-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.lp-why-item { display: flex; gap: 12px; align-items: flex-start; }
.lp-why-ico { color: var(--accent); flex: none; margin-top: 1px; }
.lp-why-item h3 { font-size: 17px; margin-bottom: 5px; color: var(--ink); }
.lp-why-item p { font-size: 15px; color: var(--slate); line-height: 1.55; }

/* What you get + booking form side by side */
.lp-get-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: start; }
.lp-get-copy h2 { font-size: clamp(24px, 2.8vw, 32px); margin-bottom: 18px; }
.lp-checklist { margin-bottom: 24px; }
.lp-checklist li { font-size: 16px; }
.lp-get-contact { display: grid; gap: 12px; }
.lp-contact-line { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); font-weight: 700; font-size: 18px; }
.lp-contact-line:hover { border-color: var(--accent); }
.lp-contact-line svg { color: var(--accent); flex: none; }
.lp-contact-line span { display: flex; flex-direction: column; line-height: 1.2; }
.lp-contact-line small { font-size: 12px; font-weight: 600; color: var(--slate-2); letter-spacing: .04em; text-transform: uppercase; }

.lp-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-md); }
.lp-form-card h3 { font-size: 21px; color: var(--ink); }
.lp-form-sub { color: var(--slate); font-size: 15px; margin: 4px 0 18px; }
.lp-form-card .contact-form { padding: 0; border: none; box-shadow: none; background: none; }

/* Why a pre-purchase inspection */
.lp-reason .content-narrow { max-width: 720px; }
.lp-reason .lead { font-size: 19px; color: var(--charcoal); margin-bottom: 14px; }
.lp-reason p { font-size: 17px; }
.lp-reason .btn { margin-top: 22px; }

/* Reviews on light background */
.pull-quote--light { max-width: 820px; margin: 0 auto 30px; }
.pull-quote--light blockquote { color: var(--charcoal); font-family: var(--font-serif); font-size: clamp(19px, 2.3vw, 25px); line-height: 1.45; font-weight: 600; }
.pull-quote--light .stars { justify-content: center; color: var(--star); font-size: 20px; letter-spacing: 2px; margin-bottom: 14px; }
.pull-quote--light figcaption { margin-top: 16px; color: var(--slate); font-size: 15px; }
.pull-quote--light figcaption strong { color: var(--ink); }

/* Other services: compact cards, non-links */
.lp-other-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lp-svc { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 22px; background: #fff; }
.lp-svc h3 { font-size: 17px; margin-bottom: 7px; color: var(--ink); }
.lp-svc p { font-size: 15px; color: var(--slate); line-height: 1.55; }

/* FAQ narrower on the landing page */
.lp-faq .faq-wrap { max-width: 780px; }

/* Simple two-column footer */
.lp-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.lp-footer-brand p { margin-top: 16px; color: #b7bcae; font-size: 15px; max-width: 340px; }
.lp-footer-contact { display: grid; gap: 12px; align-content: start; }
.lp-footer-contact a, .lp-footer-contact span { display: inline-flex; align-items: center; gap: 10px; color: #cdd2c2; font-size: 15.5px; }
.lp-footer-contact a:hover { color: #fff; }
.lp-footer-contact svg { color: #9aa08c; }

/* Responsive */
@media (max-width: 900px) {
  .lp-why-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .lp-other-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .lp-get-grid { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 620px) {
  .lp-why-grid { grid-template-columns: 1fr; gap: 20px; }
  .lp-other-grid { grid-template-columns: 1fr; }
  .lp-footer-grid { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 560px) {
  .lp-header .header-phone { display: none; }   /* phone lives in the sticky bar */
  .lp-contact-line { font-size: 16px; }
}

/* Final CTA band: lighter than the footer so the two dark blocks separate */
.lp-final { background: #3a3f34; }

/* Buttons inside prose blocks must keep their own text colour (not the link colour) */
.content-narrow a.btn-primary, .faq-wrap a.btn-primary { color: #fff; }
.content-narrow a.btn-outline, .content-narrow a.btn-ghost { color: var(--ink); }

/* =========================================================
   LANDING PAGE CONVERSION REFINEMENT
   ========================================================= */

/* Hero trust points: checkmarked, clean (replaces the divided strip) */
.hero-trust { display: flex; flex-wrap: wrap; gap: 9px 24px; margin-top: 26px; list-style: none; padding: 0; }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; color: #eef0e8; font-weight: 600; font-size: 14.5px; }
.hero-trust li svg { color: #b6c29a; flex: none; }

/* What happens next: compact 3-step row */
.lp-next-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 940px; margin: 0 auto; list-style: none; padding: 0; }
.lp-next-num { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 700; font-family: var(--font-serif); font-size: 18px; margin-bottom: 14px; }
.lp-next-steps h3 { font-size: 17px; color: var(--ink); margin-bottom: 6px; }
.lp-next-steps p { font-size: 15px; color: var(--slate); line-height: 1.55; }
.lp-reason { border-top: 1px solid var(--line-2); }

/* Optional message field: visually secondary */
.field--optional label { color: var(--slate-2); }
.field--optional textarea { background: var(--cream-2); }

/* Mobile hero: strong hierarchy, breathing room, big stacked CTAs */
@media (max-width: 620px) {
  .lp-hero { min-height: auto; }
  .lp-hero .hero-inner { padding-top: 46px; padding-bottom: 42px; }
  .lp-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(26,28,22,.74) 0%, rgba(26,28,22,.92) 76%, rgba(26,28,22,.96) 100%);
  }
  .lp-hero .hero-sub { display: none; }        /* keep only the short supporting line */
  .lp-hero h1 { font-size: 30px; line-height: 1.14; }
  .lp-hero .hero-lead { font-size: 17px; margin-top: 14px; }
  .lp-hero .hero-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; width: 100%; }
  .lp-hero .hero-cta .btn { flex: none; width: 100%; }
  .hero-trust { flex-direction: column; gap: 11px; margin-top: 24px; }
  .hero-trust li { font-size: 15px; }
  .lp-next-steps { grid-template-columns: 1fr; gap: 20px; }
  .lp-form-card { padding: 20px; }
  .lp-form-card .field { margin-bottom: 14px; }
}

/* Company-colour footer (brand olive #72735D) with readable text */
.lp-footer { background: #72735d; }
.lp-footer-brand p { color: #edefe4; }
.lp-footer-contact a, .lp-footer-contact span { color: #f2f3ec; }
.lp-footer-contact a:hover { color: #fff; }
.lp-footer-contact svg { color: #d8dac9; }
.lp-footer .footer-base { border-top-color: rgba(255,255,255,.24); }
.lp-footer .footer-base p { color: #f2f3ec; }
.lp-footer .footer-legal a { color: #f2f3ec; }
.lp-footer .footer-legal a:hover { color: #fff; }

/* Two-tone footer: lighter olive upper band, darker lower band */
.lp-footer { background: transparent; padding: 0; }
.lp-footer-upper { background: #72735d; padding: 54px 0 30px; }
.lp-footer-lower { background: #2b2e26; padding: 18px 0; }
.lp-footer-lower .footer-base { margin: 0; padding: 0; border-top: none; }
.lp-footer-lower .footer-base p { color: #cdd2c2; }
.lp-footer-lower .footer-legal a { color: #dfe2d4; }
.lp-footer-lower .footer-legal a:hover { color: #fff; }

/* ============================================================
   FIX: two bottom bands only (swap). Final CTA = lighter olive,
   footer = darker. Overrides the earlier olive/two-tone footer.
   ============================================================ */
.lp-final { background: #72735d; }
.lp-final h2 { color: #fff; }
.lp-final p, .lp-final .cta-band-email { color: #f1f2ea; }
.lp-final .cta-band-email:hover { color: #fff; }
.lp-final .btn-primary { background: #fff; color: var(--ink); }
.lp-final .btn-primary:hover { background: var(--ink); color: #fff; }
.lp-final .btn-outline--light { color: #fff; border-color: rgba(255,255,255,.6); }

.lp-footer { background: #2b2e26; padding: 54px 0 26px; }
.lp-footer-brand p { color: #b7bcae; }
.lp-footer-contact a, .lp-footer-contact span { color: #cdd2c2; }
.lp-footer-contact a:hover { color: #fff; }
.lp-footer-contact svg { color: #8f9483; }
.lp-footer .footer-base { border-top-color: rgba(255,255,255,.12); }
.lp-footer .footer-base p { color: #8f9483; }
.lp-footer .footer-legal a { color: #cdd2c2; }
.lp-footer .footer-legal a:hover { color: #fff; }

/* ---- Compensate for Titillium Web's smaller x-height (nudge sizes up) ---- */
body { font-size: 18px; }
.lp-hero h1 { font-size: clamp(30px, 4.7vw, 45px); }
.section-head h2 { font-size: clamp(25px, 2.9vw, 34px); }
.hero-lead, .lp-hero .hero-lead { font-size: 18px; }
.hero-sub, .lp-hero .hero-sub { font-size: 18px; }
.section-lead { font-size: 18px; }
.faq-item summary { font-size: 17.5px; }
.faq-answer p { font-size: 16.5px; }
.lp-why-item h3, .lp-svc h3, .lp-next-steps h3 { font-size: 18px; }
.lp-why-item p, .lp-svc p, .lp-next-steps p { font-size: 15.5px; }
.reviews-grid--featured .review-text { font-size: 15.5px; }
.pull-quote--light blockquote { font-size: clamp(20px, 2.4vw, 26px); }
.report-list li, .lp-checklist li { font-size: 16.5px; }
.field label { font-size: 14.5px; }
.field input, .field select, .field textarea { font-size: 16.5px; }
.btn { font-size: 15.5px; }
.btn-lg { font-size: 16.5px; }
.lp-contact-line { font-size: 18px; }

/* iOS Safari date input: keep the value inside the field (was overflowing) */
.field { min-width: 0; }
.field input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  min-width: 0;
  /* iOS collapses an empty date field shorter than text inputs; reserve a
     full line box so the height matches Email / Property address etc. */
  min-height: 3.2em;
  line-height: 1.5;
  text-align: left;
}
.field input[type="date"]::-webkit-date-and-time-value { text-align: left; line-height: 1.5; margin: 0; }
.field input[type="date"]::-webkit-calendar-picker-indicator { margin-left: auto; }

/* =========================================================
   Pricing: "From $550" - hero, pre-purchase badge, callout
   ========================================================= */
/* Hero price (light text over the dark hero overlay) */
.hero-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin: 8px 0 22px;
}
.hero-price .price-from {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  opacity: .9;
}
.hero-price .price-amt {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  position: relative;
  top: 3px; /* nudge down so it reads in line with FROM */
}
.hero-price .price-note {
  font-size: 15px;
  color: rgba(255, 255, 255, .85);
}
.hero-price .price-note::before {
  content: "·";
  margin-right: 10px;
  opacity: .6;
}

/* Pre-purchase "What you get" price badge (on cream) */
.lp-price-badge {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 3px 9px;
  margin: 2px 0 20px;
  padding: 11px 18px;
  background: var(--accent-tint);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.lp-price-badge .price-from {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent-2);
}
.lp-price-badge .price-amt {
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  color: var(--charcoal);
}
.lp-price-badge .price-note {
  font-size: 13.5px;
  color: var(--slate-2);
}
.lp-price-badge .price-note::before {
  content: "·";
  margin-right: 9px;
  opacity: .6;
}

/* Dedicated pricing callout section */
.lp-price .price-callout {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 34px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}
.lp-price .price-callout .eyebrow { margin-bottom: 10px; }
.price-figure {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 4px 0 12px;
}
.price-figure .price-from {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent-2);
}
.price-figure .price-amt {
  font-size: clamp(46px, 8vw, 58px);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}
.lp-price .price-callout h2 { margin: 0 0 12px; }
.price-detail {
  color: var(--slate);
  max-width: 44ch;
  margin: 0 auto 24px;
}

@media (max-width: 620px) {
  .hero-price .price-amt { font-size: 28px; }
  /* on narrow screens the note drops to its own line; drop the leading dot */
  .hero-price .price-note { flex-basis: 100%; }
  .hero-price .price-note::before,
  .lp-price-badge .price-note::before { display: none; }
  .lp-price-badge .price-note { flex-basis: 100%; }
  .lp-price .price-callout { padding: 32px 22px; }
}
