/* BestHome32 — premium construction landing
   Display: Syne | Body: Outfit
   Palette: ink forest + limestone + champagne brass
*/
:root {
  --ink: #0e1612;
  --ink-soft: #243029;
  --mute: #6a746d;
  --stone: #e4e7e3;
  --paper: #eef0ec;
  --line: rgba(14, 22, 18, .12);
  --brass: #b08d57;
  --brass-deep: #8f7042;
  --sage: #3f6b55;
  --max: 1160px;
  --font: "Outfit", "Segoe UI", sans-serif;
  --display: "Syne", "Outfit", sans-serif;
  --shadow: 0 30px 80px rgba(14, 22, 18, .18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 90% -5%, rgba(176,141,87,.10), transparent 55%),
    linear-gradient(180deg, #f2f3f0 0%, var(--paper) 40%, var(--stone) 100%);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, .bh-brand, .bh-logo__text, .bh-bar b, .bh-svc__n, .bh-foot__brand {
  font-family: var(--display);
}
.bh-wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

/* Top */
.bh-top {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(238, 240, 236, .88);
  border-bottom: 1px solid var(--line);
}
.bh-top__inner {
  display: flex; align-items: center; gap: 18px; min-height: 70px;
}
.bh-logo { display: inline-flex; align-items: center; gap: 10px; }
.bh-logo__mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  background: var(--ink); color: #fff;
  font-family: var(--display); font-weight: 800; font-size: 12px; letter-spacing: -.02em;
}
.bh-logo__text {
  font-weight: 700; font-size: 1.05rem; letter-spacing: -.03em;
}
.bh-logo__text span { color: var(--brass-deep); }
.bh-nav {
  margin-left: auto; display: flex; gap: 4px; list-style: none;
}
.bh-nav a {
  padding: 9px 12px; font-weight: 600; font-size: 14px; color: var(--ink-soft);
}
.bh-nav a:hover { color: var(--ink); }
.bh-top__phone {
  display: inline-flex; align-items: center; padding: 11px 16px;
  background: var(--ink); color: #fff; font-weight: 700; font-size: 14px;
  white-space: nowrap;
}
.bh-burger {
  display: none; width: 42px; height: 42px; border: 0; background: transparent;
  margin-left: auto; cursor: pointer;
}
.bh-burger span {
  display: block; height: 2px; margin: 6px 8px; background: var(--ink);
}

/* Buttons */
.bh-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 22px; font-weight: 700; font-size: 15px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s ease, background .2s ease;
}
.bh-btn:hover { transform: translateY(-1px); }
.bh-btn--gold { background: var(--brass); color: #fff; }
.bh-btn--gold:hover { background: var(--brass-deep); }
.bh-btn--ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.38);
}
.bh-btn--block { width: 100%; }

/* Hero */
.bh-hero {
  position: relative; min-height: min(92vh, 860px);
  display: grid; align-items: end; color: #fff; overflow: hidden;
}
.bh-hero__media { position: absolute; inset: 0; }
.bh-hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: bhKen 26s ease-out forwards;
}
.bh-hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(8,12,10,.92) 0%, rgba(8,12,10,.55) 52%, rgba(8,12,10,.25) 100%),
    linear-gradient(0deg, rgba(8,12,10,.78) 0%, transparent 45%);
}
.bh-hero__inner {
  position: relative; z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto; padding: 96px 0 72px;
}
.bh-kicker, .bh-eyebrow {
  margin: 0 0 14px; font-size: 12px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
}
.bh-kicker { color: rgba(255,255,255,.62); }
.bh-eyebrow { color: var(--brass-deep); }
.bh-brand {
  margin: 0 0 12px;
  font-size: clamp(48px, 10vw, 92px);
  font-weight: 800; letter-spacing: -.05em; line-height: .9;
}
.bh-hero h1 {
  margin: 0 0 18px; max-width: 13ch;
  font-size: clamp(28px, 4.6vw, 46px);
  font-weight: 700; letter-spacing: -.035em; line-height: 1.08;
}
.bh-hero__lead {
  margin: 0 0 28px; max-width: 38ch;
  font-size: 18px; color: rgba(255,255,255,.8);
}
.bh-cta { display: flex; flex-wrap: wrap; gap: 10px; }

@keyframes bhKen {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

/* Status bar */
.bh-bar {
  background: var(--ink); color: #fff;
  border-top: 3px solid var(--brass);
}
.bh-bar__row {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
}
.bh-bar__row > div {
  padding: 26px 18px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.bh-bar__row > div:last-child { border-right: 0; }
.bh-bar b {
  display: block; margin-bottom: 8px;
  font-size: clamp(22px, 2.6vw, 32px); letter-spacing: -.03em;
}
.bh-bar span { color: rgba(255,255,255,.58); font-size: 13.5px; }

/* Sections */
.bh-sec { padding: 88px 0; }
.bh-sec--tint {
  background:
    linear-gradient(180deg, rgba(223,227,224,.9), rgba(232,230,222,.95));
}
.bh-sec--dark {
  background:
    radial-gradient(700px 360px at 10% 0%, rgba(176,141,87,.16), transparent 50%),
    linear-gradient(160deg, #141c17 0%, #0c1210 100%);
  color: #fff;
}
.bh-sec--dark .bh-eyebrow { color: #d4b483; }
.bh-sec--dark p { color: rgba(255,255,255,.7); }
.bh-sec__head { margin-bottom: 36px; max-width: 54ch; }
.bh-sec__head h2, .bh-shot__copy h2, .bh-trust h2, .bh-contact h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.8vw, 44px);
  letter-spacing: -.035em; line-height: 1.1;
}
.bh-sec__head p { margin: 0; color: var(--mute); }

/* Services */
.bh-services {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px;
}
.bh-svc {
  display: block; padding: 26px 24px;
  background: #fff; border: 1px solid var(--line);
  border-left: 3px solid var(--ink);
  transition: border-color .2s ease, transform .25s ease, background .2s ease;
}
.bh-svc:hover {
  border-left-color: var(--brass);
  transform: translateY(-2px);
  background: #fbfbfa;
}
.bh-svc__n {
  display: block; margin-bottom: 12px;
  color: var(--brass); font-size: 20px; font-weight: 700; letter-spacing: -.03em;
}
.bh-svc h3 {
  margin: 0 0 10px; font-size: 22px; letter-spacing: -.025em; line-height: 1.2;
}
.bh-svc p { margin: 0; color: var(--mute); font-size: 15px; }
.bh-svc--accent {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.bh-svc--accent p { color: rgba(255,255,255,.68); }
.bh-svc--accent:hover { background: #172019; border-left-color: var(--brass); }

/* Full-bleed shot */
.bh-shot {
  position: relative; min-height: 62vh;
  display: grid; align-items: end; color: #fff; overflow: hidden;
}
.bh-shot__media { position: absolute; inset: 0; }
.bh-shot__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.bh-shot__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,12,10,.82) 0%, rgba(8,12,10,.2) 55%);
}
.bh-shot__copy {
  position: relative; z-index: 1; padding: 64px 0;
  max-width: 52ch;
}
.bh-shot__copy .bh-eyebrow { color: #d4b483; }
.bh-shot__copy p { color: rgba(255,255,255,.75); }

/* Steps */
.bh-steps {
  margin: 0; padding: 0; list-style: none;
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px;
  counter-reset: step;
}
.bh-steps li {
  position: relative; padding: 24px 20px;
  background: #fff; border: 1px solid var(--line);
  counter-increment: step;
}
.bh-steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block; margin-bottom: 14px;
  font-family: var(--display); font-weight: 700;
  color: var(--brass); font-size: 20px; letter-spacing: -.03em;
}
.bh-steps b {
  display: block; margin-bottom: 8px;
  font-family: var(--display); font-size: 18px; letter-spacing: -.02em;
}
.bh-steps span { color: var(--mute); font-size: 14.5px; }

/* Trust */
.bh-trust {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: start;
}
.bh-lead { font-size: 18px; color: var(--mute); max-width: 42ch; }
.bh-check {
  margin: 24px 0 0; padding: 0; list-style: none;
}
.bh-check li {
  position: relative; padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--line); color: var(--ink-soft);
}
.bh-check li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 12px; height: 12px; background: var(--brass);
}
.bh-trust__panel figure {
  margin: 0; overflow: hidden; aspect-ratio: 5/4; background: #ccc;
}
.bh-trust__panel img { width: 100%; height: 100%; object-fit: cover; }
.bh-trust__panel blockquote {
  margin: 0; padding: 22px 20px;
  background: var(--ink); color: #fff;
}
.bh-trust__panel blockquote p {
  margin: 0 0 12px; font-size: 17px; line-height: 1.45; color: rgba(255,255,255,.9);
}
.bh-trust__panel cite {
  font-style: normal; font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: #d4b483;
}

/* Contact */
.bh-contact {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: start;
}
.bh-contact__meta {
  display: grid; gap: 8px; margin-top: 22px;
}
.bh-contact__meta a {
  font-family: var(--display); font-size: clamp(26px, 4vw, 36px);
  font-weight: 700; letter-spacing: -.03em; color: #fff;
}
.bh-contact__meta span { color: rgba(255,255,255,.62); font-size: 14.5px; }
.bh-form {
  padding: 28px 24px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
}
.bh-form label {
  display: block; margin: 0 0 12px;
  font-size: 13px; font-weight: 650; color: rgba(255,255,255,.55);
}
.bh-form input, .bh-form select, .bh-form textarea {
  display: block; width: 100%; margin-top: 6px; padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06);
  color: #fff; font: inherit; font-size: 16px;
  -webkit-appearance: none; appearance: none;
}
.bh-form input:focus, .bh-form select:focus, .bh-form textarea:focus {
  outline: 2px solid rgba(176,141,87,.45); border-color: var(--brass);
}
.bh-form select option { color: #111; }
.bh-form__hint { margin: 12px 0 0; font-size: 13px; color: rgba(255,255,255,.55); }
.bh-form__hint a { color: #d4b483; text-decoration: underline; }
.bh-form__ok {
  margin: 14px 0 0; padding: 12px 14px;
  background: rgba(176,141,87,.18); border-left: 3px solid var(--brass);
  font-size: 14px; color: rgba(255,255,255,.85);
}
.bh-form__ok a { color: #d4b483; text-decoration: underline; }

/* Footer */
.bh-foot {
  background: #090d0b; color: rgba(255,255,255,.7); padding: 52px 0 96px;
}
.bh-foot__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; margin-bottom: 28px;
}
.bh-foot__brand {
  margin: 0 0 10px; color: #fff;
  font-size: 30px; font-weight: 750; letter-spacing: -.04em;
}
.bh-foot h4 {
  margin: 0 0 12px; color: #fff; font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase;
}
.bh-foot ul { margin: 0; padding: 0; list-style: none; }
.bh-foot li { margin: 0 0 8px; }
.bh-foot a:hover { color: #fff; }
.bh-foot__bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px;
  display: flex; flex-wrap: wrap; gap: 10px 18px; justify-content: space-between;
  font-size: 13px;
}

.bh-mobbar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  grid-template-columns: 1fr 1.2fr 1fr; gap: 1px;
  background: rgba(0,0,0,.3);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.bh-mobbar a {
  display: grid; place-items: center; min-height: 56px;
  background: var(--ink); color: #fff; font-weight: 700; font-size: 14px;
}
.bh-mobbar__main { background: var(--brass) !important; }

/* Reveal */
.bh-reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.bh-reveal.is-in { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .bh-bar__row { grid-template-columns: 1fr 1fr; }
  .bh-bar__row > div:nth-child(1),
  .bh-bar__row > div:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .bh-bar__row > div:nth-child(2) { border-right: 0; }
  .bh-steps, .bh-trust, .bh-contact, .bh-foot__grid { grid-template-columns: 1fr; }
  .bh-hero { min-height: min(80vh, 700px); }
}
@media (max-width: 760px) {
  .bh-wrap { width: min(var(--max), calc(100% - 28px)); }
  .bh-burger { display: block; }
  .bh-nav {
    display: none; position: absolute; left: 0; right: 0; top: 70px;
    flex-direction: column; background: #eef0ec;
    border-bottom: 1px solid var(--line); padding: 10px 16px 16px; margin: 0;
  }
  .bh-top.is-open .bh-nav { display: flex; }
  .bh-nav a { min-height: 44px; display: flex; align-items: center; }
  .bh-top__phone { display: none; }
  .bh-services, .bh-bar__row { grid-template-columns: 1fr; }
  .bh-bar__row > div {
    border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .bh-bar__row > div:last-child { border-bottom: 0; }
  .bh-hero { min-height: auto; }
  .bh-hero__inner { padding: 56px 0 40px; }
  .bh-brand { font-size: clamp(40px, 12vw, 64px); }
  .bh-hero h1 { max-width: 16ch; font-size: clamp(24px, 7vw, 34px); }
  .bh-hero__lead { font-size: 16px; max-width: none; }
  .bh-cta .bh-btn { flex: 1 1 100%; }
  .bh-sec { padding: 56px 0; }
  .bh-shot { min-height: 52vh; }
  .bh-mobbar { display: grid; }
  .bh-foot { padding-bottom: 100px; }
}
