/* homepage.css — brand homepage layout. Reuses tokens + components from styles/screens. */

.hp { background: var(--bone); }

/* ---------- header ---------- */
.hp-header { position: fixed; top: 0; left: 0; right: 0; z-index: 60; transition: background .25s, box-shadow .25s; }
.hp-header.solid { background: rgba(242,237,228,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line); }
.hp-header-in { max-width: 1200px; margin: 0 auto; height: 64px; padding: 0 24px; display: flex; align-items: center; gap: 18px; }
.hp-logo { display: flex; align-items: center; gap: 9px; text-decoration: none; margin-right: auto; }
.hp-logo-mark { width: 34px; height: 34px; border-radius: 9px; background: var(--pine); color: #fff; display: grid; place-items: center; font-size: 20px; flex: none; }
.hp-logo-txt { font-family: var(--display); font-weight: 800; font-size: 16px; letter-spacing: -.02em; color: var(--ink); white-space: nowrap; }
.hp-header:not(.solid) .hp-logo-txt { color: #fff; }
.hp-header:not(.solid) .hp-logo-mark { background: rgba(255,255,255,.16); }
.hp-nav { display: none; align-items: center; gap: 4px; }
.hp-nav-link { background: none; border: none; cursor: pointer; font-family: var(--body); font-weight: 600; font-size: 14.5px; color: var(--ink-soft); padding: 8px 12px; border-radius: 8px; }
.hp-header:not(.solid) .hp-nav-link { color: rgba(255,255,255,.85); }
.hp-nav-link:hover { color: var(--pine); background: rgba(31,77,69,.06); }
.hp-header:not(.solid) .hp-nav-link:hover { color: #fff; background: rgba(255,255,255,.12); }
.hp-header-actions { display: flex; align-items: center; gap: 10px; }
.hp-lang { position: static; }
.hp-header.solid .hp-lang { background: var(--white); border-color: var(--line); color: var(--ink-soft); }
.hp-quote { width: auto; min-height: 42px; padding: 0 18px; font-size: 14.5px; display: none; }
.hp-burger { width: 42px; height: 42px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,.3); background: rgba(0,0,0,.2); color: #fff; display: grid; place-items: center; font-size: 20px; cursor: pointer; }
.hp-header.solid .hp-burger { background: var(--white); border-color: var(--line); color: var(--pine); }
.hp-mobile-menu { background: var(--white); border-top: 1px solid var(--line); padding: 14px 22px 18px; display: flex; flex-direction: column; gap: 4px; box-shadow: var(--shadow-md); }
.hp-mobile-link { background: none; border: none; text-align: left; cursor: pointer; font-family: var(--body); font-weight: 600; font-size: 16px; color: var(--ink); padding: 12px 8px; border-radius: 8px; }
.hp-mobile-link:hover { background: var(--bone); }
.hp-mobile-menu .btn { margin-top: 8px; width: 100%; }

/* ---------- hero ---------- */
.hp-hero { position: relative; min-height: 560px; display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate; overflow: hidden; }
.hp-hero .hero-media { position: absolute; inset: 0; z-index: -2; background: radial-gradient(80% 55% at 74% 16%, rgba(224,162,59,.5), transparent 55%), linear-gradient(178deg, #6c7c8c 0%, #93917f 38%, #c2a578 56%, #b1936a 74%, #897457 100%); }
.hp-hero .hero-scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(15,30,26,.95) 8%, rgba(15,30,26,.6) 45%, rgba(15,30,26,.25) 80%); }
.hp-hero-content { position: relative; padding-block: 120px 40px; padding-inline: 24px; display: flex; flex-direction: column; gap: 16px; color: #fff; }
.hp-hero-pill { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; margin: -4px 0 0; padding: 7px 14px; border-radius: 999px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(4px); font-family: var(--body); font-weight: 600; font-size: 13.5px; line-height: 1.3; color: #fff; }
.hp-hero-pill .ph { color: var(--gold); font-size: 16px; flex: none; }
.hp-hero-h { font-size: 38px; line-height: 1.05; color: #fff; text-wrap: balance; max-width: 16ch; }
.hp-hero-sub { font-size: 16.5px; line-height: 1.5; color: rgba(255,255,255,.88); margin: 0; max-width: 42ch; }
.hp-hero-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.btn-ghost-light { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,.2); }

/* ---------- section heads ---------- */
.hp-sec-head { margin-bottom: 24px; }
.hp-sec-head .eyebrow { margin-bottom: 10px; }
.hp-sec-sub { font-size: 16px; line-height: 1.5; color: var(--ink-mute); margin: 10px 0 0; max-width: 52ch; }

/* ---------- services grid ---------- */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.svc-card { background: var(--white); border: 1.5px solid var(--line-soft); border-radius: var(--r-lg); padding: 20px; cursor: pointer; transition: border-color .18s, box-shadow .2s, transform .12s; display: flex; flex-direction: column; gap: 6px; }
.svc-card:hover { border-color: var(--sage); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.svc-card:focus-visible { outline: 3px solid var(--pine); outline-offset: 2px; }
.svc-card.live { border-color: #cfe0d8; }
.svc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.svc-ico { width: 48px; height: 48px; border-radius: 13px; background: var(--pine-tint); color: var(--pine); display: grid; place-items: center; font-size: 27px; }
.svc-badge { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-mute); background: var(--bone); border: 1px solid var(--line); padding: 5px 10px; border-radius: 999px; }
.svc-badge.on { color: var(--pine); background: var(--pine-tint); border-color: #cfe0d8; }
.svc-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--pine); }
.svc-name { font-family: var(--display); font-weight: 800; font-size: 20px; letter-spacing: -.02em; color: var(--ink); }
.svc-desc { font-size: 14px; color: var(--ink-mute); line-height: 1.45; }
.svc-go { margin-top: 6px; display: inline-flex; align-items: center; gap: 7px; font-family: var(--body); font-weight: 700; font-size: 13.5px; color: var(--pine); }
.svc-card:hover .svc-go .ph { transform: translateX(3px); transition: transform .15s; }

/* ---------- more services (chips) ---------- */
.hp-more { margin-top: 26px; }
.hp-more-head { font-family: var(--display); font-weight: 800; font-size: 17px; letter-spacing: -.01em; color: var(--ink); margin-bottom: 14px; }
.hp-chips, .hp-chips-pad { display: flex; flex-wrap: wrap; gap: 10px; }
.hp-chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 999px; border: 1.5px solid var(--sage); background: var(--white); color: var(--pine); font-family: var(--body); font-weight: 600; font-size: 14px; line-height: 1; white-space: nowrap; text-decoration: none; transition: background .15s, border-color .15s, transform .12s, box-shadow .2s; }
.hp-chip .ph { font-size: 17px; color: var(--sage); transition: color .15s; }
.hp-chip:hover { background: var(--pine-tint); border-color: var(--pine); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.hp-chip:hover .ph { color: var(--pine); }
.hp-chip:focus-visible { outline: 3px solid var(--pine); outline-offset: 2px; }
.hp-chips-extra { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.hp-chips-extra.open { max-height: 680px; }
.hp-chips-clip { overflow: hidden; }
.hp-chips-pad { padding-top: 10px; }
.hp-more-toggle { margin-top: 14px; background: none; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; font-family: var(--body); font-weight: 700; font-size: 14px; color: var(--pine); padding: 4px 2px; border-radius: 6px; }
.hp-more-toggle:hover { color: var(--pine-deep); }
.hp-more-toggle .ph { font-size: 16px; }
@media (prefers-reduced-motion: reduce) {
  .hp-chips-extra { transition: none; }
  .hp-chip { transition: none; }
}

/* ---------- vetted band (content only; bg from .band-tint) ---------- */
.hp-vetted .vetted-bare { width: 100%; }

/* ---------- how it works ---------- */
.hp-how-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.hp-how-step { position: relative; background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow-sm); }
.hp-how-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--pine-tint); color: var(--pine); display: grid; place-items: center; font-size: 25px; margin-bottom: 14px; }
.hp-how-n { position: absolute; top: 22px; right: 22px; width: 26px; height: 26px; border-radius: 50%; background: var(--pine); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 14px; }
.hp-how-step .step-head { font-size: 18px; margin-bottom: 4px; }
.hp-how-step .step-sub { font-size: 14.5px; }

/* ---------- proof ---------- */
.hp-proof-list { display: grid; grid-template-columns: 1fr; gap: 14px; }

/* ---------- service areas ---------- */
.hp-cities { display: flex; flex-wrap: wrap; gap: 10px; }
.hp-city { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px; transition: border-color .15s, color .15s; }
.hp-city:hover { border-color: var(--pine); color: var(--pine); }
.hp-city .ph { color: var(--sage); font-size: 16px; }

/* ---------- deals band (content only; bg from .band-pine) ---------- */
.hp-deals-bare { text-align: left; max-width: 640px; margin: 0; }
.hp-deals-ico { width: 56px; height: 56px; margin: 0 0 16px; border-radius: 15px; background: rgba(255,255,255,.12); color: var(--gold); display: grid; place-items: center; font-size: 30px; }
.hp-deals-h { color: #fff; margin: 12px 0 10px; }
.hp-deals-sub { font-size: 15.5px; line-height: 1.55; color: rgba(255,255,255,.84); margin: 0 0 22px; max-width: 52ch; }
.hp-deals-form { max-width: 520px; margin: 0; }
.hp-deals-row { display: flex; flex-direction: column; gap: 10px; }
.hp-sms { display: flex; align-items: flex-start; gap: 10px; margin-top: 14px; cursor: pointer; text-align: left; }
.hp-sms input { position: absolute; opacity: 0; width: 0; height: 0; }
.hp-sms-box { width: 24px; height: 24px; flex: none; border-radius: 6px; border: 1.5px solid rgba(255,255,255,.4); display: grid; place-items: center; color: transparent; font-size: 14px; margin-top: 1px; transition: all .15s; }
.hp-sms input:checked + .hp-sms-box { background: var(--gold); border-color: var(--gold); color: #2A1E08; }
.hp-sms span:last-child { font-size: 12.5px; line-height: 1.45; color: rgba(255,255,255,.72); }
.hp-deals-done { display: inline-flex; align-items: center; gap: 9px; font-size: 16px; font-weight: 700; color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); padding: 14px 20px; border-radius: var(--r-md); }
.hp-deals-done .ph { color: var(--gold); font-size: 22px; }
.hp-deals-save { margin-top: 18px; background: none; border: none; cursor: pointer; font-family: var(--body); font-weight: 700; font-size: 13.5px; color: rgba(255,255,255,.78); display: inline-flex; align-items: center; gap: 7px; }
.hp-deals-save:hover { color: var(--gold); }

/* ---------- about ---------- */
.hp-about-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.hp-about-photo image-slot { background: linear-gradient(160deg, #cdbfa6, #b9c3b0); border-radius: 20px; }
.hp-about-body { display: flex; flex-direction: column; gap: 12px; }
.hp-about-text { font-size: 16px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* ---------- faq ---------- */
.hp-faq-list { display: flex; flex-direction: column; gap: 10px; }
.hp-faq-item { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--r-md); overflow: hidden; }
.hp-faq-item.open { border-color: var(--sage); }
.hp-faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px; font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--ink); text-align: left; }
.hp-faq-q .ph { color: var(--pine); flex: none; }
.hp-faq-a { margin: 0; padding: 0 18px 18px; font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); }

/* ---------- footer ---------- */
.hp-footer { background: var(--pine-deep); color: #fff; padding: 44px 24px 30px; }
.hp-footer-in { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 30px; }
.hp-footer-tag { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.7); margin: 12px 0 14px; max-width: 34ch; }
.hp-footer-roc { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); }
.hp-footer-roc .ph { color: var(--gold); }
.hp-footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px; }
.hp-footer-h { font-family: var(--body); font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.hp-footer-col { display: flex; flex-direction: column; gap: 9px; }
.hp-footer-col a { color: rgba(255,255,255,.82); text-decoration: none; font-size: 14px; }
.hp-footer-col a:hover { color: #fff; }
.hp-footer-fine { max-width: 1200px; margin: 30px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column; gap: 8px; font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.5; }
.hp-footer-disclaimer { max-width: 1200px; margin: 16px auto 0; font-size: 11.5px; line-height: 1.6; color: rgba(255,255,255,.4); }
.hp-footer-disclaimer p { margin: 7px 0 0; }
.hp-footer-legal-note { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: rgba(255,255,255,.6); font-size: 10.5px; letter-spacing: .05em; text-transform: uppercase; }
.hp-footer-legal-note .ph { color: var(--gold); font-size: 13px; }

/* ---------- desktop ---------- */
@media (min-width: 900px) {
  .hp-nav { display: flex; }
  .hp-burger { display: none; }
  .hp-quote { display: inline-flex; }
  .hp-header-in { max-width: 1200px; margin-left: auto; margin-right: auto; }
  .hp-hero-content { padding-block: 150px 56px; padding-inline: max(64px, calc((100% - 1200px) / 2)); max-width: none; margin: 0; width: 100%; }
  .hp-hero-h { font-size: 54px; }
  .hp-hero-sub { font-size: 19px; }
  .hp-hero-cta { flex-direction: row; }
  .hp-hero-cta .btn { width: auto; min-width: 220px; }
  .trustbar { display: flex; justify-content: center; gap: 14px 44px; }
  .trustbar .chip { background: none; border: none; padding: 0; }
  .trustbar .lbl-full { display: inline; } .trustbar .lbl-short { display: none; }
  .svc-grid { grid-template-columns: repeat(4, 1fr); }
  .hp-how-grid { grid-template-columns: repeat(3, 1fr); }
  .hp-proof-list { grid-template-columns: repeat(2, 1fr); }
  .hp-about-grid { grid-template-columns: .9fr 1.1fr; align-items: center; }
  .hp-deals-row { flex-direction: row; align-items: stretch; }
  .hp-deals-row .input { flex: 1; }
  .hp-deals-row .btn { width: auto; min-width: 210px; }
  .hp-deals-form { max-width: 560px; }
  .hp-footer-in { grid-template-columns: 1.4fr 2.6fr; }
  .hp-footer-cols { grid-template-columns: repeat(4, 1fr); }
  .vetted-cols { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (min-width: 900px) and (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
