:root {
  --cream: #f5efe4;
  --cream-2: #fbf8f1;
  --cream-mid: #efe6d6;
  --cream-dark: #e4d8c4;
  --green: #102b13;
  --green-2: #1d431e;
  --green-3: #2f5c2b;
  --charcoal: #151714;
  --muted: #615c50;
  --gold: #bda56e;
  --line: rgba(16, 43, 19, 0.14);
  --shadow: 0 20px 50px rgba(16, 20, 14, 0.14);
  --radius: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Text selection */
::selection{ background: rgba(16,43,19,0.14); color: var(--green); }

/* Keyboard-only focus outline */
:focus-visible{
  outline: 2px solid rgba(16,43,19,0.56);
  outline-offset: 3px;
  border-radius: 4px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: linear-gradient(180deg, #fbf8f1 0%, var(--cream) 58%, #f3ecdf 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(247, 243, 234, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-link { display: flex; align-items: center; text-decoration: none; }
.brand-link img {
  width: 106px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.1));
}

.top-nav { display: flex; align-items: center; gap: 20px; font-size: 0.92rem; color: rgba(21,23,20,.74); }
.top-nav a { text-decoration: none; }
.top-nav a:hover { color: var(--green); }
.nav-cta {
  padding: 10px 15px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--green), var(--green-3));
  box-shadow: 0 10px 24px rgba(16,43,19,.18);
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  padding: clamp(42px, 7vw, 78px) 0 clamp(36px, 5vw, 58px);
}

.eyebrow {
  margin: 0 0 11px;
  color: var(--green-3);
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 900;
}

h1, h2, h3 { margin: 0; letter-spacing: -0.045em; line-height: 1.02; color: var(--green); }
h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.8vw, 5.25rem);
}
h2 { font-size: clamp(2.15rem, 4.2vw, 3.95rem); }
h3 { font-size: clamp(1.45rem, 2.5vw, 2.2rem); }

.hero-lede {
  margin: 22px 0 0;
  max-width: 650px;
  color: rgba(21,23,20,.72);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.62;
}

.hero-subhead {
  margin: 14px 0 0;
  max-width: 650px;
  color: var(--green);
  font-size: clamp(1.28rem, 1.9vw, 1.7rem);
  line-height: 1.32;
  font-weight: 850;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: #fff; background: linear-gradient(135deg, var(--green), var(--green-3)); box-shadow: 0 16px 36px rgba(16,43,19,.2); }
.button.secondary { color: var(--green); border: 1px solid rgba(16,43,19,.2); background: rgba(255,255,255,.38); }

.service-gap {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
  padding: 28px 0 52px;
}

.service-gap-copy {
  padding: clamp(24px, 3.5vw, 38px);
  border-radius: var(--radius);
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(16,43,19,.1);
  box-shadow: 0 12px 34px rgba(16,20,14,.06);
}

.service-gap-copy h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.6vw, 3.45rem);
}

.service-gap-copy p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(21,23,20,.7);
  line-height: 1.68;
  font-size: 1rem;
}

.service-gap-list {
  display: grid;
  gap: 14px;
}

.service-gap-list div {
  padding: 22px;
  border-radius: 18px;
  background: rgba(16,43,19,.93);
  color: #fff;
  box-shadow: 0 12px 30px rgba(16,20,14,.12);
}

.service-gap-list div:last-child {
  background: rgba(255,255,255,.62);
  color: var(--charcoal);
  border: 1px solid rgba(16,43,19,.12);
}

.service-gap-list strong {
  display: block;
  color: var(--gold);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-gap-list span {
  display: block;
  line-height: 1.58;
  color: inherit;
}


/* ── BEFORE / AFTER SLIDER ────────────────────────────────────────── */
.hero-slider-wrap {
  align-self: center;
  width: 100%;
  max-width: 430px;
  justify-self: end;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  border: 1px solid rgba(16,43,19,.13);
  background: var(--green);
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-after-clip {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ba-after {
  clip-path: inset(0 0 0 50%);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 10px rgba(0,0,0,.3);
  z-index: 10;
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.ba-label {
  position: absolute;
  bottom: 14px;
  padding: 4px 11px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(0,0,0,.52);
  color: rgba(255,255,255,.9);
  pointer-events: none;
  z-index: 9;
}

.ba-label-before { left: 14px; }
.ba-label-after  { right: 14px; }

.ba-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.68), rgba(239,231,217,.72));
  border: 1px solid rgba(16,43,19,.13);
  box-shadow: var(--shadow);
}
.ba-logo-row img {
  width: min(100%, 280px);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(16,20,14,.12));
}


.ba-caption {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  letter-spacing: .04em;
}

@media (max-width: 980px) {
  .hero-slider-wrap { max-width: 520px; justify-self: center; }
}

@media (max-width: 620px) {
  .hero-slider-wrap { width: min(100%, 360px); margin: 0 auto; }
  .ba-slider { border-radius: 18px; }
}
/* ────────────────────────────────────────────────────────────────── */


.choice-section { padding: 38px 0 58px; }
.section-heading { max-width: 820px; margin-bottom: 26px; }
.section-heading p, .choice-result p, .copy-stack p, .boundary-card p {
  color: rgba(21,23,20,.7);
  font-size: 1.02rem;
  line-height: 1.62;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.choice-card {
  min-height: 168px;
  text-align: left;
  border: 1px solid rgba(16,43,19,.12);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.46);
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(16,20,14,.055);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.choice-card:hover, .choice-card.active { transform: translateY(-3px); background: rgba(16,43,19,.96); border-color: rgba(16,43,19,.8); color: #fff; }
.choice-card span { display: block; margin-bottom: 18px; color: var(--gold); font-weight: 900; }
.choice-card strong { display: block; margin-bottom: 10px; font-size: 1.03rem; line-height: 1.22; }
.choice-card p { margin: 0; line-height: 1.5; color: rgba(21,23,20,.68); font-size: .95rem; }
.choice-card:hover p, .choice-card.active p { color: rgba(255,255,255,.78); }

.choice-result {
  margin: 0;
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(16,43,19,.96), rgba(31,73,33,.94));
  color: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.choice-result h3 { color: #fff; }
.choice-result p { color: rgba(255,255,255,.78); }
.choice-result .eyebrow { color: #d6c38b; }
.text-link { color: #fff; font-weight: 900; text-decoration-color: rgba(255,255,255,.28); text-underline-offset: 6px; }

.problem-band {
  padding: 56px 0;
  background: var(--green);
  color: #fff;
}
.problem-band h2, .problem-band .eyebrow { color: #fff; }
.problem-band .copy-stack p { color: rgba(255,255,255,.78); }
.split, .fit-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(24px, 5vw, 58px); align-items: start; }
.copy-stack p:first-child { margin-top: 0; }
.copy-stack p:last-child { margin-bottom: 0; }

.service-section { padding: 64px 0; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.service-item {
  min-height: 112px;
  padding: 17px;
  border-radius: 20px;
  background: rgba(255,255,255,.46);
  border: 1px solid rgba(16,43,19,.12);
  font-weight: 850;
  line-height: 1.34;
  box-shadow: 0 10px 26px rgba(16,20,14,.05);
}
.service-item span {
  display: block;
  width: 32px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.service-detail-card {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(16,43,19,.12);
  box-shadow: 0 10px 26px rgba(16,20,14,.05);
}

.service-detail-card h3 {
  color: var(--green);
  margin-bottom: 12px;
}

.service-detail-card p,
.service-detail-card li {
  color: rgba(21,23,20,.68);
  font-size: .95rem;
  line-height: 1.62;
}

.service-detail-card ul {
  margin-top: 10px;
}

.service-note {
  margin-top: 14px !important;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(16,43,19,.06);
  border-left: 3px solid var(--gold);
  font-size: .88rem !important;
  color: var(--muted) !important;
  font-style: italic;
}

.section-note {
  margin: 22px auto 0;
  max-width: 760px;
  text-align: center;
  color: rgba(21,23,20,.62);
  font-size: .96rem;
  font-style: italic;
}
.boundary-card {
  margin-top: 16px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(16,43,19,.08);
  border: 1px solid rgba(16,43,19,.14);
}
.boundary-card strong { display: block; color: var(--green); font-size: 1.15rem; }
.boundary-card p { margin-bottom: 0; }

.estimate-section { padding: 58px 0; background: linear-gradient(180deg, rgba(16,43,19,.08), rgba(189,165,110,.13)); }

.fit-section { padding: 64px 0 32px; }
.fit-card {
  min-height: 420px;
  padding: clamp(24px, 3.6vw, 36px);
  border-radius: var(--radius);
  border: 1px solid rgba(16,43,19,.13);
  background: rgba(255,255,255,.5);
  box-shadow: 0 14px 38px rgba(16,20,14,.065);
}
.fit-card.good { background: linear-gradient(145deg, rgba(16,43,19,.95), rgba(31,73,33,.92)); color: #fff; }
.fit-card.good h2, .fit-card.good .eyebrow { color: #fff; }
.fit-card.good .eyebrow { color: #d6c38b; }
.fit-card.not { background: rgba(255,255,255,.42); }
ul { margin: 24px 0 0; padding: 0; list-style: none; }
li { display: flex; align-items: flex-start; gap: 14px; padding-left: 0; margin-bottom: 13px; line-height: 1.48; color: rgba(21,23,20,.7); }
.fit-card.good li { color: rgba(255,255,255,.78); }
li::before { content: ""; position: static; flex-shrink: 0; width: 7px; height: 7px; border-radius: 999px; background: var(--gold); margin-top: .46em; }


.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: rgba(21,23,20,.62);
  border-top: 1px solid var(--line);
}
.site-footer a { text-decoration: none; color: var(--green); font-weight: 800; }

/* ── ESTIMATE SECTION ─────────────────────────────────────────────── */
.estimate-section { padding: 72px 0 80px; }
.estimate-intro { margin-bottom: 36px; }
.estimate-intro h2 { margin-bottom: 12px; }
.estimate-intro p { color: rgba(21,23,20,.7); font-size: 1.02rem; line-height: 1.62; max-width: 620px; }

/* Progress bar */
.intake-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.step-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(21,23,20,.38);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(16,43,19,.12);
  transition: all .2s ease;
  white-space: nowrap;
}
.step-pill.active {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}
.step-pill.done {
  color: var(--green-3);
  border-color: rgba(16,43,19,.2);
  background: rgba(16,43,19,.06);
}
.step-num {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800;
  flex-shrink: 0;
}
.step-pill.active .step-num { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); }
.step-div {
  flex: 1;
  max-width: 40px;
  min-width: 12px;
  height: 1px;
  background: var(--line);
  margin: 0 4px;
}

/* Intake card */
.intake-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(16,43,19,.12);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 40px);
  box-shadow: 0 12px 40px rgba(16,20,14,.07);
}

/* Fields */
.intake-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .intake-row { grid-template-columns: 1fr; } }
.intake-field { margin-bottom: 18px; }
.intake-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(21,23,20,.55);
  margin-bottom: 7px;
}
.req { color: var(--green-3); }
.intake-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(16,43,19,.16);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--charcoal);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.intake-input::placeholder { color: rgba(21,23,20,.3); }
.intake-input:focus {
  border-color: var(--green-3);
  box-shadow: 0 0 0 3px rgba(16,43,19,.08);
}
.intake-divider { height: 1px; background: rgba(16,43,19,.1); margin: 22px 0; }

/* Concern checkboxes */
.concern-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
@media (max-width: 460px) { .concern-grid { grid-template-columns: 1fr; } }
.concern-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(16,43,19,.12);
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(21,23,20,.75);
  background: rgba(255,255,255,.6);
  transition: all .18s ease;
  user-select: none;
}
.concern-item:hover { border-color: rgba(16,43,19,.24); color: var(--charcoal); }
.concern-item.checked { border-color: var(--green-3); background: rgba(16,43,19,.07); color: var(--green); font-weight: 500; }
.concern-box {
  width: 16px; height: 16px;
  border-radius: 4px;
  border: 1.5px solid rgba(16,43,19,.2);
  background: white;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all .18s ease;
}
.concern-item.checked .concern-box {
  background: var(--green);
  border-color: var(--green);
}
.concern-item.checked .concern-box::after {
  content: '';
  display: block;
  width: 8px; height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-1px);
}

/* Radio options */
.radio-row { display: flex; gap: 8px; }
.radio-opt {
  flex: 1;
  padding: 10px;
  border: 1px solid rgba(16,43,19,.12);
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  font-size: 13px;
  background: rgba(255,255,255,.6);
  color: rgba(21,23,20,.6);
  transition: all .18s ease;
  user-select: none;
}
.radio-opt:hover { border-color: rgba(16,43,19,.22); color: var(--charcoal); }
.radio-opt.selected { border-color: var(--green-3); background: rgba(16,43,19,.08); color: var(--green); font-weight: 600; }

/* Intake alerts */
.intake-alert {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 18px;
}
.intake-alert-warn { background: rgba(180,120,20,.08); border-left: 3px solid rgba(180,120,20,.5); color: rgba(21,23,20,.72); }
.intake-alert-info { background: rgba(16,43,19,.07); border-left: 3px solid rgba(16,43,19,.3); color: var(--green); }

/* Intake actions */
.intake-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 28px;
}

/* Photo upload */
.upload-zone {
  border: 1.5px dashed rgba(16,43,19,.2);
  border-radius: 16px;
  padding: 44px 24px;
  text-align: center;
  cursor: pointer;
  transition: all .2s ease;
  background: rgba(255,255,255,.5);
}
.upload-zone:hover, .upload-zone.drag {
  border-color: var(--green-3);
  background: rgba(16,43,19,.04);
}
.upload-icon { font-size: 2.2rem; margin-bottom: 12px; }
.upload-title { font-size: 15px; color: rgba(21,23,20,.72); margin-bottom: 4px; font-weight: 500; }
.upload-sub { font-size: 12px; color: rgba(21,23,20,.4); }
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 16px; }
@media (max-width: 480px) { .photo-grid { grid-template-columns: repeat(3, 1fr); } }
.photo-thumb { position: relative; aspect-ratio: 1; border-radius: 10px; overflow: hidden; border: 1px solid rgba(16,43,19,.12); }
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-remove {
  position: absolute; top: 4px; right: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  color: white; border: none; cursor: pointer;
  font-size: 13px; display: flex; align-items: center; justify-content: center;
}
.photo-count { font-size: 12px; color: rgba(21,23,20,.45); margin-top: 8px; }

/* Analyzing state */
.analyzing-state { text-align: center; padding: 60px 24px; }
.analyzing-spinner {
  width: 48px; height: 48px;
  border: 3px solid rgba(16,43,19,.12);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: rld-spin 1s linear infinite;
  margin: 0 auto 24px;
}
@keyframes rld-spin { to { transform: rotate(360deg); } }
.analyzing-title { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--green); margin-bottom: 8px; }
.analyzing-sub { font-size: 14px; color: rgba(21,23,20,.55); line-height: 1.65; margin-bottom: 28px; }
.analyzing-steps { list-style: none; max-width: 320px; margin: 0 auto; padding: 0; }
.analyzing-steps li {
  font-size: 13px; color: rgba(21,23,20,.45);
  padding: 8px 0;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--line);
}
.analyzing-steps li.done { color: var(--green-3); }
.analyzing-steps li::before { content: '\25CB'; font-size: 10px; color: rgba(16,43,19,.2); flex-shrink: 0; position: static; width: auto; height: auto; border-radius: 0; background: none; top: auto; left: auto; margin-bottom: 0; }
.analyzing-steps li.done::before { content: '\2713'; color: var(--green-3); }

/* ── PROPOSAL ──────────────────────────────────────────────────────── */
.proposal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px;
}
.conf-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(16,43,19,.1); color: var(--green-3);
  border: 1px solid rgba(16,43,19,.2);
}
.conf-note { font-size: 12px; color: rgba(21,23,20,.45); }

.proposal-doc {
  background: var(--cream-2);
  border: 1px solid rgba(16,43,19,.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(16,20,14,.14);
}

/* Proposal cover */
.p-cover {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  padding: clamp(28px, 5vw, 52px) clamp(24px, 4vw, 48px) clamp(24px, 4vw, 44px);
  color: var(--cream);
}
.p-brand { font-size: 18px; font-weight: 700; color: var(--cream); margin-bottom: 2px; }
.p-brand-sub { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(244,239,228,.6); margin-bottom: 32px; }
.p-title { font-size: clamp(24px, 4vw, 36px); font-weight: 300; color: var(--cream); line-height: 1.15; letter-spacing: -.02em; margin-bottom: 6px; }
.p-subtitle { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(244,239,228,.6); margin-bottom: 28px; }
.p-meta { display: flex; gap: 32px; flex-wrap: wrap; }
.p-meta-item { display: flex; flex-direction: column; gap: 3px; }
.p-lbl { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: rgba(189,165,110,.8); }
.p-val { font-size: 14px; color: var(--cream); }

/* Before photo */
.p-photos { display: grid; grid-template-columns: 1fr 1fr; }
.p-photo-half { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--cream-dark); }
.p-photo-tag {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(0,0,0,.6); color: white;
  font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px; font-family: inherit;
}
.p-after-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--cream-mid);
  padding: 24px;
}
.p-disclaimer {
  font-size: 10px; color: var(--muted); font-style: italic;
  padding: 10px 20px; background: rgba(255,255,255,.5);
  border-bottom: 1px solid var(--line); line-height: 1.55;
}

/* Investment */
.p-investment {
  padding: clamp(22px, 4vw, 36px) clamp(24px, 4vw, 48px);
  display: flex; gap: 28px; align-items: flex-start;
  border-bottom: 1px solid var(--line); flex-wrap: wrap;
  background: rgba(255,255,255,.5);
}
.p-price-block { flex: 0 0 auto; }
.p-price-lbl { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.p-price-val { font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 300; color: var(--green); line-height: 1; letter-spacing: -.04em; }
.p-price-sub { font-size: 11px; color: var(--muted); margin-top: 6px; }
.p-status-link {
  margin-top: 10px;
  color: var(--green);
  font-weight: 800;
  font-size: .9rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(16,43,19,.28);
}
.p-status-link:hover { border-color: var(--green); }
.p-value-stmt {
  flex: 1; min-width: 200px;
  font-size: 14px; font-weight: 300; font-style: italic;
  color: var(--muted); line-height: 1.65;
  border-left: 2px solid var(--line); padding-left: 22px;
  margin: 0;
}

/* Proposal sections */
.p-section { padding: clamp(22px, 3.5vw, 36px) clamp(24px, 4vw, 48px); border-bottom: 1px solid var(--line); }
.p-section-tinted { background: rgba(255,255,255,.55); }
.p-section-title { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 400; color: var(--green); margin-bottom: 18px; letter-spacing: -.02em; }
.p-process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 540px) { .p-process-grid { grid-template-columns: 1fr; } }
.p-process-card {
  padding: 16px 18px;
  background: rgba(255,255,255,.7);
  border-radius: 12px;
  border-left: 3px solid var(--gold);
}
.p-process-card h4 { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
.p-process-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

.p-scope-note { font-size: 13px; color: var(--muted); margin-bottom: 14px; font-style: italic; }
.p-scope-list { list-style: none; padding: 0; margin: 0; }
.p-scope-list li {
  padding: 9px 0; border-bottom: 1px solid var(--line);
  font-size: 14px; color: var(--charcoal);
  display: flex; gap: 10px; align-items: flex-start; line-height: 1.5;
}
.p-scope-list li::before { content: '\2713'; color: var(--green-3); flex-shrink: 0; font-size: 12px; margin-top: 2px; background: none; width: auto; height: auto; border-radius: 0; }
.p-scope-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; }
.p-scope-photos .sp-thumb { border-radius: 8px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; }
.p-scope-photos .sp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.p-analysis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) { .p-analysis-grid { grid-template-columns: 1fr; } }
.p-analysis-item {
  padding: 13px 16px;
  background: rgba(255,255,255,.8);
  border-radius: 10px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.p-analysis-val { font-size: 15px; color: var(--green); font-weight: 600; text-transform: capitalize; }

.p-exclusions { columns: 2; gap: 12px; margin-bottom: 16px; }
@media (max-width: 480px) { .p-exclusions { columns: 1; } }
.p-ex-item {
  font-size: 13px; color: var(--muted);
  padding: 5px 0; break-inside: avoid;
  display: flex; align-items: center; gap: 8px;
}
.p-ex-item::before { content: '\2715'; color: rgba(160,64,64,.6); font-size: 10px; flex-shrink: 0; }

.p-proximity-note {
  margin-top: 16px; padding: 18px 20px;
  background: var(--cream-dark); border-radius: 12px;
  border: 1px solid var(--line);
}
.p-proximity-note strong { font-size: 14px; color: var(--green); display: block; margin-bottom: 5px; }
.p-proximity-note p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }

.p-sig-row { display: flex; gap: 20px; flex-wrap: wrap; }
.p-sig-field { flex: 1; min-width: 160px; }
.p-sig-field label { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 10px; }
.p-sig-line { height: 40px; border-bottom: 1px solid var(--line); }

.p-footer {
  background: var(--green);
  padding: 18px clamp(24px, 4vw, 48px);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  font-size: 10px; color: rgba(189,165,110,.75); letter-spacing: .06em;
}

.proposal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 18px; }

/* ── NEW PROPOSAL COMPONENTS ────────────────────────────────────── */

/* Internal-only: hide from customer, shown in admin / print contexts */
.internal-only { display: none !important; }

/* Pending review notice */
.p-pending-notice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(20px, 3vw, 28px) clamp(24px, 4vw, 48px);
  background: linear-gradient(135deg, rgba(16,43,19,.96), rgba(31,73,33,.94));
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.p-pending-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  opacity: .85;
}
.p-pending-text {
  flex: 1;
  min-width: 200px;
}
.p-pending-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.p-pending-text p {
  font-size: 14px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  margin: 0;
}

/* Low-confidence banner */
.low-conf-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(189,165,110,.12);
  border: 1px solid rgba(189,165,110,.35);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.low-conf-text {
  flex: 1;
  min-width: 200px;
  font-size: 13px;
  color: rgba(21,23,20,.72);
  line-height: 1.6;
}
.low-conf-text strong {
  display: block;
  color: var(--charcoal);
  margin-bottom: 3px;
  font-size: 14px;
}
.low-conf-btn {
  font-size: .82rem !important;
  min-height: 38px !important;
  padding: 0 16px !important;
  white-space: nowrap;
  flex-shrink: 0;
}

/* After visualization image (same aspect ratio as photo half) */
#p-after-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
}
#p-after-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Upload zone error message */
.upload-zone-error {
  display: none;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(160,64,64,.08);
  border-left: 3px solid rgba(160,64,64,.5);
  color: #8B3030;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

/* Print */
@media print {
  .site-header, .top-nav, .hero, .paths-section, .analysis-section,
  .choice-section, .problem-band, .service-section, .fit-section,
  .dashboard-section, .estimate-intro, .intake-progress,
  #intake-form-area, .proposal-toolbar, .proposal-actions, .site-footer { display: none !important; }
  .estimate-section { padding: 0; background: white; }
  #proposal-output { display: block !important; }
  .proposal-doc { box-shadow: none; border: none; border-radius: 0; }
  .p-cover { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .p-footer { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}


/* Desktop balance pass: tighter hero hierarchy and less empty vertical space */
@media (min-width: 981px) {
  .section-shell {
    width: min(1080px, calc(100% - 72px));
  }

  .hero.section-shell {
    width: min(980px, calc(100% - 72px));
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: clamp(32px, 4vw, 54px);
    align-items: center;
    padding: clamp(58px, 6vw, 86px) 0 clamp(48px, 5vw, 70px);
  }

  h1 {
    max-width: 650px;
    font-size: clamp(3.1rem, 4.55vw, 4.65rem);
    line-height: 1.04;
    letter-spacing: -0.048em;
  }

  .hero-lede {
    max-width: 600px;
    margin-top: 18px;
    font-size: 1.08rem;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .choice-section {
    padding-top: 34px;
  }

  .section-heading {
    margin-bottom: 22px;
  }
}


@media (max-width: 980px) {
  .top-nav a:not(.nav-cta):not(.nav-tool) { display: none; }
  .hero, .split, .fit-section, .service-gap { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; }
}


@media (max-width: 620px) {
  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(189,165,110,.16), transparent 18rem),
      linear-gradient(180deg, #fbf8f1 0%, var(--cream) 62%, #f3ecdf 100%);
  }

  .site-header {
    min-height: 64px;
    padding: 8px 14px;
  }

  .brand-link img {
    width: 78px;
  }

  .top-nav {
    gap: 10px;
  }

  .top-nav a:not(.nav-cta):not(.nav-tool) {
    display: none;
  }

  .nav-tool {
    font-size: .84rem;
    font-weight: 800;
  }

  .nav-cta {
    padding: 9px 12px;
    font-size: .86rem;
  }

  .section-shell {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    gap: 24px;
    padding: 30px 0 34px;
    text-align: center;
  }

  .hero-copy,
  .section-heading {
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  h1 {
    max-width: 10.5ch;
    margin-inline: auto;
    font-size: clamp(2.15rem, 10vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.052em;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.55rem);
  }

  h3 {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .hero-lede {
    max-width: 34ch;
    margin: 18px auto 0;
    font-size: 1rem;
    line-height: 1.56;
  }

  .hero-actions {
    justify-content: center;
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 360px;
  }

  .choice-section {
    padding: 32px 0 44px;
  }

  .choice-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    padding: 18px 16px;
  }

  .choice-card {
    min-height: auto;
    text-align: center;
    padding: 18px 16px;
  }

  .choice-card span {
    margin-bottom: 12px;
  }

  .service-gap {
    padding: 18px 0 36px;
  }

  .service-gap-copy,
  .service-gap-list div {
    padding: 18px 16px;
  }

  .choice-card strong,
  .choice-card p {
    margin-left: auto;
    margin-right: auto;
  }

  .choice-card p {
    max-width: 32ch;
  }

  .choice-result {
    padding: 22px 18px;
    text-align: center;
  }

  .problem-band {
    padding: 42px 0;
    text-align: center;
  }

  .split,
  .fit-section {
    grid-template-columns: 1fr;
  }

  .copy-stack {
    text-align: center;
  }

  .service-section {
    padding: 48px 0;
  }

  .service-item {
    min-height: auto;
    text-align: center;
    padding: 18px 16px;
  }

  .service-item span {
    margin-left: auto;
    margin-right: auto;
  }

  .boundary-card {
    text-align: center;
  }

  .estimate-section {
    padding: 42px 0;
  }

  .fit-section {
    padding: 48px 0 24px;
  }

  .fit-card {
    min-height: auto;
    padding: 24px 18px;
    text-align: center;
  }

  .fit-card ul {
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
  }

  .fit-card li {
    padding-left: 0;
  }

  .fit-card li::before {
    display: none;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 14px;
  }
}


/* ── PATHS SECTION ──────────────────────────────────────────────────── */
.paths-section {
  padding: 64px 0;
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.path-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--radius);
  border: 1px solid rgba(16,43,19,.13);
  background: rgba(255,255,255,.52);
  box-shadow: 0 10px 28px rgba(16,20,14,.065);
  text-decoration: none;
  color: var(--charcoal);
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
  cursor: pointer;
}

.path-card:hover {
  transform: translateY(-4px);
  background: rgba(16,43,19,.96);
  border-color: rgba(16,43,19,.8);
  color: #fff;
  box-shadow: var(--shadow);
}

.path-num {
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--gold);
}

.path-card h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: var(--green);
  margin: 0;
  transition: color .22s ease;
}

.path-card:hover h3 {
  color: #fff;
}

.path-card p {
  font-size: .95rem;
  color: rgba(21,23,20,.65);
  line-height: 1.56;
  margin: 0;
  flex: 1;
  transition: color .22s ease;
}

.path-card:hover p {
  color: rgba(255,255,255,.75);
}

.path-cta {
  display: inline-block;
  font-size: .88rem;
  font-weight: 800;
  color: var(--green-3);
  margin-top: 4px;
  transition: color .22s ease;
}

.path-card:hover .path-cta {
  color: var(--gold);
}

@media (max-width: 860px) {
  .paths-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .paths-section { padding: 44px 0; }
  .paths-grid { margin-top: 22px; gap: 12px; }
  .path-card { padding: 20px 18px; text-align: center; }
  .path-num { margin: 0 auto; }
}


/* ── ANALYSIS SECTION ───────────────────────────────────────────────── */
.analysis-section {
  padding: 64px 0;
  background: var(--green);
  color: var(--cream);
}

.analysis-section .section-heading {
  margin-bottom: 36px;
}

.analysis-section .section-heading h2,
.analysis-section .section-heading .eyebrow {
  color: var(--cream);
}

.analysis-section .section-heading .eyebrow {
  color: rgba(189,165,110,.85);
}

.analysis-section .section-heading p {
  color: rgba(244,239,228,.72);
}

.analysis-report-preview {
  background: var(--cream-2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
  border: 1px solid rgba(16,43,19,.12);
  padding: clamp(24px, 4vw, 40px);
}

.report-preview-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.report-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(16,43,19,.1);
  border: 1px solid rgba(16,43,19,.2);
  padding: 4px 12px;
  border-radius: 999px;
  flex-shrink: 0;
}

.report-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -.02em;
}

.report-sections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.report-section-card {
  padding: 16px 18px;
  background: rgba(255,255,255,.75);
  border-radius: 14px;
  border: 1px solid var(--line);
}

.report-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(21,23,20,.5);
  margin-bottom: 10px;
}

.report-score-bar {
  height: 8px;
  background: rgba(16,43,19,.1);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}

.report-score-bar--urgent { }
.report-score-bar--mid    { }

.report-score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-3), var(--green));
  border-radius: 999px;
  transition: width .6s ease;
}

.report-score-bar--urgent .report-score-fill {
  background: linear-gradient(90deg, #c47a1c, #e8951a);
}

.report-score-bar--mid .report-score-fill {
  background: linear-gradient(90deg, #7a9e2e, #95c23a);
}

.report-score-note {
  font-size: 11px;
  color: rgba(21,23,20,.55);
  line-height: 1.5;
}

.report-sections-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 4px;
}

.report-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(21,23,20,.7);
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.5);
  border: 1px solid var(--line);
}

.report-item-icon {
  color: var(--green-3);
  font-weight: 900;
  font-size: 12px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .report-sections-grid { grid-template-columns: 1fr; }
  .report-sections-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .analysis-section { padding: 44px 0; }
  .analysis-report-preview { padding: 20px 16px; }
  .report-sections-list { grid-template-columns: 1fr; }
}


/* ── GALLERY ────────────────────────────────────────────────────────── */
.gallery-section {
  padding: 72px 0 80px;
  background: var(--green);
}
.gallery-section .section-heading { max-width: 680px; }
.gallery-section .eyebrow { color: var(--gold); }
.gallery-section h2,
.gallery-section .section-heading p { color: #fff; }
.gallery-section .section-heading p { color: rgba(255,255,255,.65); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 40px;
}

.gallery-entry {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gallery-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.08);
}

.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.gallery-after-clip {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gallery-after {
  clip-path: inset(0 0 0 50%);
}

.gallery-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 12px rgba(0,0,0,.4);
  z-index: 10;
  pointer-events: none;
}

.gallery-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 18px rgba(0,0,0,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.gallery-label {
  position: absolute;
  bottom: 16px;
  padding: 5px 13px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(0,0,0,.55);
  color: rgba(255,255,255,.92);
  pointer-events: none;
  z-index: 9;
}
.gallery-label-before { left: 16px; }
.gallery-label-after  { right: 16px; }

.gallery-caption {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  letter-spacing: .02em;
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .gallery-grid:has(.gallery-entry:only-child) {
    grid-template-columns: min(780px, 100%);
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .gallery-section { padding: 52px 0 60px; }
  .gallery-slider { border-radius: 14px; aspect-ratio: 4/3; }
}

/* ── DASHBOARD SECTION ──────────────────────────────────────────────── */
.dashboard-section {
  padding: 64px 0;
  background: var(--cream-2);
}

.dashboard-preview {
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(16,43,19,.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(16,20,14,.08);
  margin-top: 32px;
}

.dashboard-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: var(--cream);
  font-weight: 700;
  font-size: .92rem;
}

.dashboard-coming-soon,
.dashboard-live-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(189,165,110,.25);
  color: var(--gold);
  border: 1px solid rgba(189,165,110,.35);
}

.dashboard-live-badge {
  background: rgba(244,239,228,.16);
  color: var(--cream);
  border-color: rgba(244,239,228,.28);
}

.dashboard-preview-content {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dashboard-prop-card {
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(16,43,19,.12);
  background: rgba(255,255,255,.8);
}

.dashboard-prop-card--locked {
  background: rgba(16,43,19,.04);
  border-style: dashed;
  opacity: .7;
}

.dashboard-prop-address {
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 8px;
}

.dashboard-prop-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(21,23,20,.5);
}

.dashboard-prop-status {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
}

.dashboard-prop-status--good {
  background: rgba(47,92,43,.12);
  color: var(--green-3);
  border: 1px solid rgba(47,92,43,.2);
}

.dashboard-note {
  margin: 0;
  padding: 14px 24px 18px;
  font-size: 12px;
  color: rgba(21,23,20,.5);
  line-height: 1.6;
  border-top: 1px solid var(--line);
  font-style: italic;
}

@media (max-width: 620px) {
  .dashboard-section { padding: 44px 0; }
  .dashboard-preview { margin-top: 22px; }
  .dashboard-preview-content { padding: 16px; }
  .dashboard-prop-meta { gap: 8px; }
}


/* ── PROPOSAL REPORT SCORE BARS ─────────────────────────────────────── */
.p-report-scores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 4px;
}

.p-report-score-item {
  padding: 14px 16px;
  background: rgba(255,255,255,.75);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.p-report-score-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(21,23,20,.45);
  margin-bottom: 9px;
}

.p-report-score-bar-wrap {
  height: 7px;
  background: rgba(16,43,19,.09);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 7px;
}

.p-report-score-bar-wrap .p-report-score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-3), var(--green));
  border-radius: 999px;
}

.p-report-score-bar-wrap--urgent .p-report-score-fill {
  background: linear-gradient(90deg, #c47a1c, #e8951a);
}

.p-report-score-bar-wrap--mid .p-report-score-fill {
  background: linear-gradient(90deg, #7a9e2e, #95c23a);
}

.p-report-score-val {
  font-size: 11px;
  font-weight: 600;
  color: rgba(21,23,20,.5);
}

.p-report-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-report-list li {
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--charcoal);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}

.p-report-list li::before {
  content: '\2192';
  color: var(--green-3);
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 2px;
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
}

@media (max-width: 620px) {
  .p-report-scores-grid { grid-template-columns: 1fr; }
}

/* AI tools + photo readiness */
.rld-ai-section {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--cream-2), #fff);
}
.rld-tool-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.rld-tool-card {
  border: 1px solid rgba(16,43,19,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.76);
  padding: 20px;
  box-shadow: 0 10px 26px rgba(16,20,14,.06);
}
.rld-tool-card span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--green);
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
}
.rld-tool-card h3 {
  margin: 0 0 9px;
  color: var(--green);
  font-size: 1.05rem;
}
.rld-tool-card p {
  margin: 0;
  color: rgba(21,23,20,.65);
  font-size: .9rem;
  line-height: 1.65;
}
.photo-readiness {
  margin-top: 16px;
  border: 1px solid rgba(16,43,19,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.74);
  padding: 16px;
}
.readiness-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.readiness-top span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(21,23,20,.48);
}
.readiness-top strong {
  font-size: 12px;
  color: var(--green);
  background: rgba(16,43,19,.08);
  border-radius: 999px;
  padding: 5px 10px;
}
.readiness-meter {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(16,43,19,.1);
  margin-bottom: 12px;
}
#readiness-fill {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-3), var(--gold));
  transition: width .25s ease;
}
.readiness-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
  list-style: none;
}
.readiness-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: rgba(21,23,20,.62);
  line-height: 1.45;
}
.readiness-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(16,43,19,.22);
  margin-top: .36em;
  flex-shrink: 0;
}
.readiness-list li.done {
  color: rgba(16,43,19,.88);
  font-weight: 650;
}
.readiness-list li.done::before { background: var(--green-3); }
.rld-proof-section {
  padding: 84px 0;
  background:
    linear-gradient(180deg, rgba(250,247,239,.86), rgba(239,247,232,.8)),
    var(--cream);
}
.rld-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.rld-proof-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(16, 43, 19, .12);
  box-shadow: 0 16px 38px rgba(16, 43, 19, .12);
}

@media (max-width: 940px) {
  .rld-tool-grid { grid-template-columns: repeat(2, 1fr); }
  .rld-proof-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .rld-ai-section { padding: 52px 0; }
  .rld-tool-grid { grid-template-columns: 1fr; }
  .rld-proof-grid { grid-template-columns: 1fr; }
  .readiness-top { align-items: flex-start; flex-direction: column; }
}
