/* ==========================================================================
   Lonehill Blinds — stylesheet
   Theme: complex-living / dark-first (ink canvas, glowing frames, light bands)
   Palette: limestone canvas + graphite ink + one quiet sage-green accent
   Fonts: Merriweather (display) + Mulish (body)
   ========================================================================== */

:root{
  --graphite:      #171b1c;
  --graphite-2:    #20262a;
  --graphite-3:    #2a3134;
  --ink-line:      rgba(246,247,245,0.12);
  --fog:           #eef0ee;
  --fog-2:         #e2e6e2;
  --paper:         #f7f8f6;
  --stone:         #8a938f;
  --stone-dark:    #565f5c;
  --cream-text:    #dfe3e0;
  --cream-dim:     #a8b0ac;
  --emerald:       #4b806d;
  --emerald-2:     #396253;
  --emerald-deep:  #243e35;
  --sage:          #97a48e;   /* dusty sage — micro-labels on ink, muted glows */
  --emerald-btn:   #55907c;   /* one step up, so ink-on-accent buttons clear 4.5:1 */
  --emerald-btn-h: #63a189;
  --emerald-glow:  rgba(75,128,109,0.34);
  --sage-glow:     rgba(151,164,142,0.20);
  --emerald-tint:  rgba(75,128,109,0.09);
  --ink:           #171b1c;

  --font-display: 'Merriweather', Georgia, serif;
  --font-body: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-pad: clamp(64px, 9vw, 104px);
  --max: 1240px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior: auto; } }

body{
  margin:0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font: inherit; }

.container{ width:100%; max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
}
h2{ font-size: clamp(2rem, 3.6vw, 2.9rem); line-height: 1.12; }
h3{ font-size: clamp(1.3rem, 2vw, 1.6rem); }
p{ margin: 0 0 1em; }
.lede{ font-size: 1.15rem; color: var(--stone-dark); max-width: 62ch; }

/* Micro-labels are small, uppercase and widely tracked, so they carry the accent at
   the two lightnesses that actually read: the deep tone on limestone, the dusty
   sage on ink. Same accent family, both sides legible. */
.eyebrow{
  display:inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--emerald-2);
  margin-bottom: 1.1em;
}
.on-dark .eyebrow,
.section-dark .eyebrow,
.closing .eyebrow{ color: var(--sage); }

.rule{
  height: 1px; width: 64px; background: var(--emerald);
  transform-origin: left center; transform: scaleX(0);
  margin: 0 0 1.4em;
}
.rule.in-view{ transform: scaleX(1); transition: transform .9s var(--ease); }
.section-head .rule, .form-note .rule{ margin: 0 0 1.15em; }
@media (prefers-reduced-motion: reduce){
  .rule{ transform: scaleX(1); transition: none; }
}

/* focus */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible{
  outline: 2px solid var(--emerald);
  outline-offset: 3px;
  border-radius: 2px;
}

/* skip link — off-screen until it takes focus */
.skip-link{
  position: absolute; left: 16px; top: 0; z-index: 1000;
  transform: translateY(-140%);
  background: var(--emerald-btn); color:#0b0f0d;
  padding: 12px 20px; border-radius: 0 0 4px 4px;
  font-weight: 800; font-size: 0.86rem; letter-spacing: .02em;
  transition: transform .2s var(--ease);
}
.skip-link:focus{ transform: translateY(0); }
@media (prefers-reduced-motion: reduce){ .skip-link{ transition:none; } }

/* ---------- sections ---------- */
.section{ padding: var(--section-pad) 0; }
.section-dark{ background: var(--graphite); color: var(--cream-text); }
.section-light{ background: var(--paper); color: var(--ink); }
.section-fog{ background: var(--fog); color: var(--ink); }
.on-dark .lede{ color: var(--cream-dim); }
.on-dark h2, .on-dark h3{ color: #fbfbfa; }

.section-head{ max-width: 700px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* reveal-on-scroll (JS adds .is-visible) */
.reveal{ opacity: 0; transform: translateY(28px); }
.reveal.is-visible{ opacity: 1; transform: translateY(0); transition: opacity .8s var(--ease), transform .8s var(--ease); }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex; align-items:center; gap:.5em;
  padding: 0.95em 1.8em;
  border-radius: 3px;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn-primary{ background: var(--emerald-btn); color: #0b0f0d; }
.btn-primary:hover{ background: var(--emerald-btn-h); }
.btn-outline{ background: transparent; border-color: rgba(246,247,245,0.5); color: inherit; }
.btn-outline:hover{ border-color: var(--sage); color: var(--sage); }
.on-light .btn-outline{ border-color: rgba(23,27,28,0.35); }
.on-light .btn-outline:hover{ border-color: var(--emerald-2); color: var(--emerald-2); }
.btn svg{ width:16px; height:16px; }

/* ---------- nav ---------- */
.site-nav{
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0;
  background: linear-gradient(to bottom, rgba(12,15,15,0.55), transparent);
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.site-nav.solid{
  background: rgba(20,24,25,0.94);
  backdrop-filter: blur(6px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--ink-line);
}
.site-nav .container{ display:flex; align-items:center; justify-content:space-between; gap: 24px; }
.brand{ display:flex; align-items:center; gap: 12px; color:#f6f7f5; }
.brand-mark{ flex: none; color: #f6f7f5; }
.brand-word{ font-family: var(--font-display); font-weight:700; font-size: 1.15rem; letter-spacing: -0.01em; }

.nav-links{ display:flex; align-items:center; gap: 30px; }
.nav-links a{
  color: #dfe3e0; font-size: 0.92rem; font-weight: 600;
  position: relative; padding: 4px 0;
}
.nav-links a::after{
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:1px;
  background: var(--sage); transform: scaleX(0); transform-origin:left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover::after{ transform: scaleX(1); }
.nav-cta{ display:flex; align-items:center; gap:16px; }
.nav-cta .btn{ padding: 0.7em 1.3em; }

.nav-toggle{
  display:none; background:none; border:none; color:#f6f7f5; padding:8px;
  cursor:pointer;
}
.nav-toggle svg{ width:24px; height:24px; }

@media (max-width: 880px){
  .nav-links{
    position: fixed; inset: 0; z-index: 99;
    background: var(--graphite);
    flex-direction: column; justify-content:center; align-items:center;
    gap: 28px;
    transform: translateY(-100%);
    transition: transform .4s var(--ease);
  }
  .nav-links.open{ transform: translateY(0); }
  .nav-links a{ font-size: 1.3rem; }
  .nav-toggle{ display:inline-flex; z-index: 101; }
  .nav-cta .btn-outline{ display:none; }
}

/* ---------- hero ---------- */
.hero{
  position: relative;
  min-height: 100svh;
  display:flex; align-items:flex-end;
  background: var(--graphite);
  overflow: hidden;
}
.hero-media{ position:absolute; inset:0; z-index:0; overflow:hidden; }
.hero-media img{
  width:100%; height:100%; object-fit: cover; object-position: center 62%;
  transform: scale(1.06);
}
/* Scrim tuned so the photograph stays clearly readable as a photograph.
   Two layers: a soft vertical foot to seat the text, and a left-side wash that
   carries contrast under the headline without flattening the whole frame. */
.hero-scrim{
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(to top,
      rgba(10,13,13,0.82) 0%,
      rgba(10,13,13,0.60) 22%,
      rgba(10,13,13,0.26) 45%,
      rgba(10,13,13,0.10) 70%,
      rgba(10,13,13,0.46) 100%),
    linear-gradient(to right,
      rgba(10,13,13,0.66) 0%,
      rgba(10,13,13,0.34) 38%,
      rgba(10,13,13,0.08) 70%,
      rgba(10,13,13,0.00) 100%);
}
@media (max-width: 760px){
  /* narrower column, so the side wash has to do more of the work */
  .hero-scrim{
    background: linear-gradient(to top,
      rgba(10,13,13,0.88) 0%,
      rgba(10,13,13,0.66) 34%,
      rgba(10,13,13,0.26) 66%,
      rgba(10,13,13,0.50) 100%);
  }
}
.hero-content{
  position: relative; z-index: 2; width:100%;
  padding: 200px 0 72px;
}
.hero h1{
  color:#fbfbfa;
  font-size: clamp(2.5rem, 5.6vw, 4.5rem);
  max-width: 15ch;
  margin-bottom: 0.4em;
  text-shadow: 0 2px 30px rgba(8,11,11,0.45);
}
.hero h1 .word{ display:inline-block; overflow:hidden; vertical-align:top; }
.hero h1 .word span{ display:inline-block; transform: translateY(110%); }
@media (prefers-reduced-motion: reduce){
  .hero h1 .word span{ transform:none; }
}
.hero .sub{
  color: #eceeeb;
  font-size: 1.15rem;
  max-width: 52ch;
  margin-bottom: 2em;
  text-shadow: 0 1px 18px rgba(8,11,11,0.55);
}
.hero .trust-item{ text-shadow: 0 1px 14px rgba(8,11,11,0.5); }
.hero-ctas{ display:flex; flex-wrap:wrap; gap: 16px; margin-bottom: 3em; }

.trust-row{
  display:flex; flex-wrap:wrap; gap: 28px 40px;
  border-top: 1px solid var(--ink-line);
  padding-top: 1.8em;
}
.trust-item{ display:flex; align-items:flex-start; gap:10px; color:var(--cream-text); font-size:0.92rem; max-width: 26ch; }
.trust-item svg{ flex:none; width:19px; height:19px; color: var(--sage); margin-top:2px; }

/* ---------- marquee ---------- */
.marquee{
  background: var(--graphite-2);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track{
  display:flex; width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track span{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream-dim);
  padding: 0 2.2em;
  white-space: nowrap;
  border-right: 1px solid var(--ink-line);
}
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
.marquee:hover .marquee-track{ animation-play-state: paused; }
@media (prefers-reduced-motion: reduce){ .marquee-track{ animation: none; overflow-x:auto; } }

/* ---------- product grid ---------- */
.product-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--fog-2);
  border: 1px solid var(--fog-2);
}
@media (max-width: 980px){ .product-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .product-grid{ grid-template-columns: 1fr; } }

.product-card{
  background: var(--paper);
  padding: 0;
  display:flex; flex-direction:column;
  transition: background .3s var(--ease);
}
.product-card:hover{ background: #fff; }
.product-card .pthumb{ margin: 0; }
.pc-body{
  padding: 24px 24px 28px;
  display:flex; flex-direction:column; gap: 12px; flex:1;
}
.product-card h3{ font-size:1.05rem; margin-bottom:0; }
.product-card p{ color: var(--stone-dark); font-size:0.94rem; margin-bottom:0; flex:1; }
.product-card p em{ font-style: italic; color: var(--ink); }
.product-card .card-link{
  font-weight:800; font-size:0.82rem; letter-spacing:.03em; color: var(--emerald-2);
  display:inline-flex; align-items:center; gap:6px;
  align-self:flex-start;
  transition: color .25s var(--ease);
}
.product-card .card-link:hover{ color: var(--emerald); }
.product-card .card-link svg{ width:14px; height:14px; transition: transform .25s var(--ease); }
.product-card .card-link:hover svg{ transform: translateX(4px); }

/* the repairs card — same language as the grid cells, laid out wide */
.repair-card{
  display:grid; grid-template-columns: 0.85fr 1.15fr;
  margin-top: 1px;
  border: 1px solid var(--fog-2);
  background: var(--fog);
  align-items: stretch;
  overflow: hidden;
}
.repair-card:hover{ background: var(--fog); }
.repair-card .pthumb{ aspect-ratio:auto; height:100% !important; min-height: 260px; }
.repair-card .pc-body{ padding: clamp(26px, 4vw, 44px); justify-content:center; gap: 10px; }
.repair-card .eyebrow{ margin-bottom: 0.2em; }
.repair-card h3{ font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
.repair-card p{ flex:0; max-width: 58ch; }
@media (max-width: 760px){
  .repair-card{ grid-template-columns: 1fr; }
  .repair-card .pthumb{ aspect-ratio:16/9; height:auto !important; min-height:0; }
}

/* ---------- editorial ---------- */
.editorial{
  display:grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
}
.editorial-figure{ position:relative; overflow:hidden; border-radius: 6px; border: 1px solid var(--ink-line); }
.editorial-figure img{ width:100%; height:100%; object-fit:cover; }
.editorial-figure figcaption{
  position:absolute; left:0; right:0; bottom:0;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(10,13,13,0.88), transparent);
  color: #f2f3f1; font-size: 0.9rem;
}
.editorial-main{ grid-row: span 2; min-height: 480px; }
.editorial-side{ min-height: 230px; }
@media (max-width: 800px){
  .editorial{ grid-template-columns: 1fr; }
  .editorial-main{ min-height: 320px; }
}

/* ---------- locale ---------- */
.locale-grid{
  display:grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px,5vw,64px); align-items:start;
}
.locale-list{ display:grid; gap: 20px; }
.locale-item{ display:flex; gap:14px; padding-bottom:20px; border-bottom:1px solid var(--fog-2); }
.locale-item:last-child{ border-bottom:none; padding-bottom:0; }
.locale-item svg{ flex:none; width:22px; height:22px; color: var(--emerald-2); margin-top:3px; }
.locale-item p{ margin:0; color: var(--stone-dark); font-size:0.97rem; }
.locale-item strong{ color: var(--ink); }
@media (max-width: 860px){ .locale-grid{ grid-template-columns:1fr; } }

/* ---------- signature: cluster grid ---------- */
.signature-inner{ display:grid; grid-template-columns: 1fr 0.9fr; gap: clamp(32px,6vw,72px); align-items:center; }
@media (max-width: 860px){ .signature-inner{ grid-template-columns: 1fr; } }

.cluster{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  perspective: 800px;
}
.cluster-window{
  position:relative;
  aspect-ratio: 4/3.4;
  border-radius: 4px;
  border: 1px solid var(--ink-line);
  background: var(--graphite-3);
  overflow:hidden;
}
.cluster-glow{
  position:absolute; inset:6%;
  background: radial-gradient(circle at 50% 40%, var(--emerald) 0%, var(--emerald-deep) 70%, transparent 100%);
  opacity: 0;
  filter: blur(1px);
}
.cluster-slats{ position:absolute; inset:0; display:flex; flex-direction:column; justify-content:center; gap:10%; padding: 0 10%; }
.cluster-slat{
  height: 13%;
  background: var(--graphite);
  border-top: 1px solid rgba(0,0,0,0.35);
  transform: scaleY(1);
  transform-origin: center;
}
.cluster.in-view .cluster-glow{ opacity: 0.85; transition: opacity 1s var(--ease); }
.cluster.in-view .cluster-slat{ transform: scaleY(0.28); transition: transform .7s var(--ease); }
@media (prefers-reduced-motion: reduce){
  .cluster-glow{ opacity:.85 !important; }
  .cluster-slat{ transform: scaleY(0.28) !important; transition:none !important; }
}

/* ---------- process ---------- */
.process-list{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; }
@media (max-width: 900px){ .process-list{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .process-list{ grid-template-columns: 1fr; } }
.process-step{ border-top: 2px solid var(--fog-2); padding-top: 20px; }
.process-step .num{
  font-family: var(--font-display); font-weight:700; font-size:1.4rem;
  color: var(--emerald-2); display:block; margin-bottom:10px;
}
.process-step h3{ margin-bottom: 0.4em; }
.process-step p{ color: var(--stone-dark); font-size:0.94rem; margin-bottom:0; }

/* ---------- area chips ---------- */
.area-chips{ display:flex; flex-wrap:wrap; gap:14px; }
.area-chip{
  display:inline-flex; align-items:center; gap:10px;
  padding: 14px 22px;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  color: var(--cream-text);
  font-weight:700; font-size:0.95rem;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.area-chip:hover{ border-color: var(--sage); background: var(--emerald-tint); transform: translateY(-2px); color:#fbfbfa; }
.area-chip svg{ width:16px; height:16px; color: var(--sage); }

/* ---------- FAQ ---------- */
.faq-list{ max-width: 820px; }
.faq-item{
  border-bottom: 1px solid var(--fog-2);
  padding: 22px 0;
}
.faq-item summary{
  list-style: none; cursor: pointer;
  display:flex; align-items:center; justify-content:space-between; gap: 20px;
  font-family: var(--font-display); font-weight:700; font-size:1.08rem;
  transition: color .25s var(--ease);
}
.faq-item summary:hover{ color: var(--emerald-2); }
.faq-item[open] > summary{ color: var(--emerald-2); }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item .icon{
  position:relative; width:20px; height:20px; flex:none;
}
.faq-item .icon::before, .faq-item .icon::after{
  content:""; position:absolute; background: var(--emerald-2);
  transition: transform .3s var(--ease);
}
.faq-item .icon::before{ left:0; top:50%; width:100%; height:2px; transform: translateY(-50%); }
.faq-item .icon::after{ top:0; left:50%; width:2px; height:100%; transform: translateX(-50%); }
.faq-item[open] .icon::after{ transform: translateX(-50%) rotate(90deg); opacity:0; }
.faq-item p{ margin: 14px 0 0; color: var(--stone-dark); max-width: 68ch; }
.faq-item[open] p{ animation: faq-in .38s var(--ease) both; }
@keyframes faq-in{ from{ opacity:0; transform: translateY(-6px); } to{ opacity:1; transform:none; } }
@media (prefers-reduced-motion: reduce){ .faq-item[open] p{ animation:none; } }

/* ---------- closing CTA ---------- */
.closing{
  position: relative; overflow:hidden;
  text-align:center;
  background: var(--graphite);
}
.closing-glow{
  position:absolute; inset:-20%;
  background: radial-gradient(600px 420px at 20% 30%, var(--emerald-glow), transparent 60%),
              radial-gradient(520px 400px at 80% 70%, var(--sage-glow), transparent 65%);
  animation: drift 16s ease-in-out infinite alternate;
}
@keyframes drift{
  from{ transform: translate(-3%, -2%) scale(1); }
  to{ transform: translate(3%, 3%) scale(1.08); }
}
@media (prefers-reduced-motion: reduce){ .closing-glow{ animation:none; } }
.closing .container{ position:relative; z-index:1; }
.closing h2{ color:#fbfbfa; }
.closing p{ color: var(--cream-dim); max-width: 50ch; margin: 0 auto 1.8em; }

/* ---------- enquiry form ---------- */
.form-wrap{
  display:grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px,5vw,60px);
}
@media (max-width: 860px){ .form-wrap{ grid-template-columns:1fr; } }
.form-card{
  background: var(--fog); border-radius: 8px; padding: clamp(24px,4vw,40px);
  border: 1px solid var(--fog-2);
}
.field{ margin-bottom: 18px; }
.field label{ display:block; font-weight:700; font-size:0.86rem; margin-bottom:6px; }
.field label .opt{ font-weight:500; color: var(--stone-dark); }
.field input.invalid, .field select.invalid, .field textarea.invalid{ border-color:#a2543f; }
.field-error{ display:block; font-size:0.78rem; color:#8d4634; margin-top:5px; }
.field input, .field select, .field textarea{
  width:100%; padding: 0.85em 1em; border-radius:4px;
  border: 1.5px solid var(--fog-2); background:#fff; color: var(--ink);
  font: inherit; font-size:0.96rem;
  transition: border-color .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--emerald-2); outline:none; }
.field-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px){ .field-row{ grid-template-columns:1fr; } }
.popia{ font-size: 0.82rem; color: var(--stone-dark); margin-top: 6px; }
.form-note{ align-self:center; }
.form-success{
  display:none; background: var(--emerald-deep); color:#f6f7f5;
  padding: 18px 20px; border-radius: 6px; font-weight:600; margin-top:14px;
}
.form-success.show{ display:block; }

/* ---------- footer ---------- */
.site-footer{ background: var(--graphite); color: var(--cream-dim); padding: 64px 0 32px; border-top:1px solid var(--ink-line); }
.footer-top{ display:flex; flex-wrap:wrap; justify-content:space-between; gap: 40px; margin-bottom: 40px; }
.footer-brand{ max-width: 34ch; }
.footer-brand .brand{ margin-bottom: 14px; }
.footer-brand p{ font-size:0.92rem; color: var(--cream-dim); }
.footer-links{ display:flex; flex-wrap:wrap; gap: 48px; }
.footer-col h4{ font-family: var(--font-body); font-size:0.75rem; letter-spacing:.18em; text-transform:uppercase; color: var(--sage); margin-bottom: 1em; }
.footer-col ul{ display:grid; gap: 10px; }
.footer-col a{ font-size:0.92rem; color: var(--cream-text); transition: color .25s var(--ease); }
.footer-col a:hover{ color: var(--sage); }
.footer-bottom{ border-top:1px solid var(--ink-line); padding-top: 24px; display:flex; flex-wrap:wrap; gap:12px 24px; justify-content:space-between; }
.footer-bottom p{ margin:0; font-size:0.82rem; color: var(--stone); max-width: 60ch; }

/* ---------- chat widget ---------- */
.chat-launcher{
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 60px; height:60px; border-radius:50%;
  background: var(--emerald-btn); color:#0b0f0d;
  display:flex; align-items:center; justify-content:center;
  border:none; cursor:pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.chat-launcher:hover{ transform: scale(1.06); background: var(--emerald-btn-h); }
.chat-launcher svg{ width:26px; height:26px; }
.chat-launcher .close-ic{ display:none; }
.chat-launcher.open .chat-ic{ display:none; }
.chat-launcher.open .close-ic{ display:block; }

.chat-panel{
  position: fixed; right: 22px; bottom: 96px; z-index: 200;
  width: min(360px, calc(100vw - 44px));
  max-height: min(560px, calc(100vh - 140px));
  background: var(--graphite-2);
  border: 1px solid var(--ink-line);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  display:flex; flex-direction:column;
  overflow:hidden;
  opacity:0; transform: translateY(16px) scale(0.98);
  pointer-events:none;
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}
.chat-panel.open{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
.chat-head{
  padding: 16px 18px; background: var(--graphite-3);
  display:flex; align-items:center; gap:10px;
  border-bottom: 1px solid var(--ink-line);
}
.chat-head .brand-mark{ width:26px; height:26px; }
.chat-head strong{ color:#f6f7f5; font-family: var(--font-display); font-size:0.98rem; }
.chat-head span{ display:block; font-size:0.74rem; color: var(--cream-dim); }
.chat-body{ padding: 16px 18px; overflow-y:auto; flex:1; display:flex; flex-direction:column; gap:12px; }
.chat-msg{
  background: var(--graphite-3); color: var(--cream-text);
  padding: 10px 14px; border-radius: 10px 10px 10px 2px;
  font-size:0.9rem; max-width: 92%; line-height:1.5;
}
.chat-msg.me{ background: var(--emerald-deep); color:#f2f3f1; border-radius: 10px 10px 2px 10px; align-self:flex-end; }
.chat-msg small{ display:block; color: var(--cream-dim); font-size:0.7rem; margin-top:6px; }
.chat-chips{ display:flex; flex-wrap:wrap; gap:8px; }
.chat-chip{
  border:1px solid rgba(246,247,245,0.28); background:transparent; color:#eef0ee;
  padding: 8px 14px; border-radius:999px; font-size:0.82rem; cursor:pointer;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.chat-chip:hover{ border-color: var(--sage); color: var(--sage); }
.chat-form{ padding: 14px 18px; border-top:1px solid var(--ink-line); display:flex; gap:8px; }
.chat-form input{
  flex:1; padding: 0.7em 0.9em; border-radius:8px; border:1.5px solid var(--ink-line);
  background: var(--graphite); color:#f6f7f5; font: inherit; font-size:0.88rem;
}
.chat-form input::placeholder{ color: var(--stone); }
.chat-form button{
  background: var(--emerald-btn); color:#0b0f0d; border:none; border-radius:8px;
  padding: 0 16px; font-weight:800; cursor:pointer;
}
.chat-form button:hover{ background: var(--emerald-btn-h); }
.chat-popia{ padding: 0 18px 14px; font-size:0.7rem; color: var(--stone); }

@media (max-width: 480px){
  .chat-panel{ right: 12px; bottom: 84px; }
  .chat-launcher{ right: 14px; bottom: 14px; }
}

/* ---------- misc page banner (product/area subpages) ---------- */
.page-banner{
  position: relative; min-height: 62vh; display:flex; align-items:flex-end;
  background: var(--graphite); overflow:hidden;
}
.page-banner .hero-media img{ object-position:center 55%; }
.page-banner-content{ position:relative; z-index:2; padding: 180px 0 56px; }
.breadcrumb{ font-size:0.82rem; color: var(--cream-dim); margin-bottom: 1.2em; letter-spacing:.02em; }
.breadcrumb a{ color: var(--cream-dim); }
.breadcrumb a:hover{ color: var(--sage); }
.page-banner h1{ color:#fbfbfa; font-size: clamp(2.1rem, 4.4vw, 3.4rem); max-width: 20ch; margin-bottom:0.3em; }
.page-banner .sub{ color: var(--cream-text); max-width: 56ch; font-size:1.05rem; }

.prose{ max-width: 68ch; }
.prose h2{ margin-top: 1.6em; }
.prose ul{ display:grid; gap:10px; margin: 1.2em 0; }
.prose li{ display:flex; gap:10px; align-items:flex-start; }
.prose li svg{ flex:none; width:18px; height:18px; color: var(--emerald-2); margin-top:4px; }

.cross-links{ display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 860px){ .cross-links{ grid-template-columns: 1fr; } }
.cross-card{
  border: 1px solid var(--fog-2); border-radius: 6px; padding: 22px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.cross-card:hover{ border-color: var(--emerald-2); transform: translateY(-2px); }
.cross-card h4{ font-family: var(--font-display); font-size:1.02rem; margin-bottom:0.4em; }
.cross-card p{ font-size:0.88rem; color: var(--stone-dark); margin-bottom:0.6em; }
.cross-card span{ font-weight:800; font-size:0.8rem; color: var(--emerald-2); }

.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,56px); align-items:start; }
@media (max-width: 860px){ .two-col{ grid-template-columns:1fr; } }
.figure-card{ border-radius:6px; overflow:hidden; border:1px solid var(--fog-2); }
.figure-card img{ width:100%; height:100%; object-fit:cover; }

.tier-tag{
  display:inline-block; font-size:0.78rem; font-weight:800; letter-spacing:.05em;
  text-transform:uppercase; color: var(--emerald-2); background: var(--fog-2);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 1.2em;
}

/* pthumb-injected */
/* --- product photo thumbnails (replaced the old line-drawn icons) --- */
.pthumb{width:100%!important;height:auto!important;max-width:none!important;
  aspect-ratio:4/3;overflow:hidden;display:block;margin:0 0 18px;
  background:rgba(0,0,0,.04)}
.pthumb img{width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .7s cubic-bezier(.2,.7,.2,1)}
.product-card:hover .pthumb img,.cell:hover .pthumb img,.card:hover .pthumb img,
.related-card:hover .pthumb img{transform:scale(1.045)}
@media (prefers-reduced-motion:reduce){
  .pthumb img{transition:none}
  .product-card:hover .pthumb img,.cell:hover .pthumb img,.card:hover .pthumb img,
  .related-card:hover .pthumb img{transform:none}}


/* roller shutters are shading products, not security products — see design-brief.md */
.rs-note{font-size:.94rem;line-height:1.6;opacity:.85;margin:14px 0 0;
  padding:12px 14px;border-left:2px solid currentColor}
.rs-note strong{font-weight:600}

/* ---------- chat: typing indicator + message entrance ---------- */
.chat-msg{ animation: msg-in .3s var(--ease) both; }
@keyframes msg-in{ from{ opacity:0; transform: translateY(8px); } to{ opacity:1; transform:none; } }
.chat-typing{
  display:inline-flex; align-items:center; gap:5px;
  background: var(--graphite-3); padding: 12px 15px;
  border-radius: 10px 10px 10px 2px; align-self:flex-start;
}
.chat-typing i{
  width:6px; height:6px; border-radius:50%; background: var(--cream-dim);
  animation: blip 1.05s ease-in-out infinite;
}
.chat-typing i:nth-child(2){ animation-delay:.16s; }
.chat-typing i:nth-child(3){ animation-delay:.32s; }
@keyframes blip{ 0%,60%,100%{ opacity:.3; transform: translateY(0); } 30%{ opacity:1; transform: translateY(-3px); } }
.chat-chips{ padding: 0 18px 12px; }
.chat-chips:empty{ padding: 0; }
.chat-form input:focus{ outline:none; border-color: var(--emerald); }
.chat-launcher:focus-visible{ outline: 2px solid #f6f7f5; outline-offset: 3px; }

@media (prefers-reduced-motion: reduce){
  .chat-msg{ animation:none; }
  .chat-typing i{ animation:none; opacity:.6; }
}

/* ---------- reduced-motion / no-JS safety net ----------
   Nothing on this page may ever be left invisible: if GSAP never loads, or the
   visitor asks for reduced motion, every reveal target resolves to its end state. */
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1 !important; transform:none !important; }
  .hero-media img{ transform:none; }
}
.no-motion .reveal{ opacity:1 !important; transform:none !important; }
.no-motion .rule{ transform: scaleX(1) !important; }
.no-motion .hero h1 .word span{ transform:none !important; }
.no-motion .cluster-glow{ opacity:.85 !important; }
.no-motion .cluster-slat{ transform: scaleY(0.28) !important; }

/* ==========================================================================
   THE LONEHILL COMPLEX LIGHT HANDBOOK — guide.html + the lead ladder
   Rung 1 the handbook · Rung 2 the window list · Rung 3 the free measure.
   Same tokens, same motion vocabulary as the rest of the site — no new colours.
   ========================================================================== */

.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;
}

/* ---------- handbook banner + contents rail ---------- */
.guide-banner .page-banner-content{ padding: 176px 0 52px; }
.guide-kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-body); font-weight:800; font-size:0.7rem;
  letter-spacing:0.24em; text-transform:uppercase; color: var(--sage);
  margin-bottom: 1.1em;
}
.guide-kicker::before{ content:""; width:26px; height:1px; background: var(--sage); }
.guide-meta{ color: var(--cream-dim); font-size:0.86rem; margin: 1.4em 0 0; }

.guide-rail{ background: var(--graphite-2); border-bottom: 1px solid var(--ink-line); }
.guide-rail .container{
  display:flex; gap: 10px; overflow-x:auto; padding-top:14px; padding-bottom:14px;
  scrollbar-width: thin;
}
.guide-rail a{
  flex:none; font-size:0.8rem; font-weight:700; letter-spacing:.02em;
  color: var(--cream-dim); border:1px solid var(--ink-line); border-radius:999px;
  padding: 8px 16px; white-space:nowrap;
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.guide-rail a:hover{ color:#fbfbfa; border-color: var(--sage); background: var(--emerald-tint); }

/* ---------- handbook prose ---------- */
.g-prose{ max-width: 66ch; }
.g-prose p{ margin: 0 0 1.15em; }
.g-prose p.first::first-letter{
  font-family: var(--font-display); font-weight:900;
  float:left; font-size:3.4rem; line-height:.82; padding: 6px 12px 0 0; color: var(--emerald-2);
}
.on-dark .g-prose p.first::first-letter{ color: var(--sage); }
.g-prose h3{ margin-top: 1.7em; }
.g-note{
  border-left: 2px solid var(--emerald); padding: 4px 0 4px 18px;
  font-size:0.95rem; color: var(--stone-dark); margin: 1.6em 0;
}
.on-dark .g-note{ border-left-color: var(--sage); color: var(--cream-dim); }
.g-figure{ margin: 0; border-radius:6px; overflow:hidden; border:1px solid var(--fog-2); }
.on-dark .g-figure{ border-color: var(--ink-line); }
.g-figure img{ width:100%; height:100%; object-fit:cover; }
.g-figure figcaption{
  font-size:0.86rem; color: var(--stone-dark); padding: 12px 4px 0; border:0;
}
.on-dark .g-figure figcaption{ color: var(--cream-dim); }
.g-wide{ margin: clamp(28px,4vw,44px) 0 0; }

/* ---------- signature moment: the sun-path arcs draw themselves ---------- */
.sunpath{ margin: clamp(26px,4vw,40px) 0 0; }
.sunpath svg{ width:100%; height:auto; display:block; }
/* dash length is deliberately longer than either path, so the whole curve is
   hidden at rest and fully drawn at offset 0 — no repeating dash can show. */
.sun-arc{ stroke-dasharray: 1200; stroke-dashoffset: 1200; }
.reveal.is-visible .sun-arc{ stroke-dashoffset: 0; transition: stroke-dashoffset 1.7s var(--ease) .25s; }
.reveal.is-visible .sun-arc.slow{ transition-delay: .75s; }
.sun-dot{ opacity:0; }
.reveal.is-visible .sun-dot{ opacity:1; transition: opacity .6s var(--ease) 1.5s; }
.sun-label{ font-family: var(--font-body); font-size:11px; font-weight:700; letter-spacing:.06em; }
@media (prefers-reduced-motion: reduce){
  .sun-arc{ stroke-dashoffset:0 !important; transition:none !important; }
  .sun-dot{ opacity:1 !important; transition:none !important; }
}
.no-motion .sun-arc{ stroke-dashoffset:0 !important; }
.no-motion .sun-dot{ opacity:1 !important; }

/* ---------- elevation cards ---------- */
.elev-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--ink-line); border:1px solid var(--ink-line); }
@media (max-width: 760px){ .elev-grid{ grid-template-columns:1fr; } }
.elev{ background: var(--graphite); padding: clamp(22px,3vw,32px); }
.elev .tag{
  display:inline-block; font-size:0.68rem; font-weight:800; letter-spacing:.2em;
  text-transform:uppercase; color: var(--sage); margin-bottom:.9em;
}
.elev h3{ font-size:1.15rem; color:#fbfbfa; margin-bottom:.55em; }
.elev p{ color: var(--cream-dim); font-size:0.95rem; margin-bottom:0; }
.elev p + p{ margin-top:.8em; }
.elev strong{ color: var(--cream-text); }

/* ---------- product recommendations ---------- */
.rec-list{ display:grid; gap: 1px; background: var(--fog-2); border:1px solid var(--fog-2); }
.rec{ background: var(--paper); display:grid; grid-template-columns: 0.8fr 1.2fr; gap: 0; align-items:stretch; }
@media (max-width: 820px){ .rec{ grid-template-columns:1fr; } }
.rec .rec-media{ overflow:hidden; min-height: 240px; background: var(--fog); }
.rec .rec-media img{ width:100%; height:100%; object-fit:cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.rec:hover .rec-media img{ transform: scale(1.04); }
@media (prefers-reduced-motion: reduce){ .rec .rec-media img{ transition:none; } .rec:hover .rec-media img{ transform:none; } }
.rec-body{ padding: clamp(24px,3.4vw,38px); display:flex; flex-direction:column; gap:12px; }
.rec-body h3{ margin-bottom:0; }
.rec-where{ font-size:0.72rem; font-weight:800; letter-spacing:.18em; text-transform:uppercase; color: var(--emerald-2); }
.rec-body p{ color: var(--stone-dark); font-size:0.97rem; margin:0; max-width: 62ch; }
.rec-catch{
  background: var(--emerald-tint); border-radius:4px; padding: 14px 16px;
  font-size:0.92rem; color: var(--ink);
}
.rec-catch strong{ font-weight:800; }
.rec-add{
  align-self:flex-start; margin-top:4px;
  background: transparent; border:1.5px solid var(--emerald-2); color: var(--emerald-2);
  border-radius:3px; padding: 0.72em 1.3em; font-weight:800; font-size:0.8rem;
  letter-spacing:.02em; cursor:pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.rec-add:hover{ background: var(--emerald-2); color:#f6f7f5; }
.rec-add.is-added{ background: var(--emerald-deep); border-color: var(--emerald-deep); color:#f2f3f1; cursor:default; }
.rec-add[disabled]{ opacity:1; }

/* ---------- on-site checklist ---------- */
.onsite{ display:grid; gap:0; counter-reset: chk; max-width: 900px; }
.onsite li{ display:flex; gap:18px; padding: 22px 0; border-bottom:1px solid var(--fog-2); }
.on-dark .onsite li{ border-bottom-color: var(--ink-line); }
.onsite li:last-child{ border-bottom:none; }
.onsite li::before{
  counter-increment: chk; content: counter(chk,decimal-leading-zero);
  font-family: var(--font-display); font-weight:700; font-size:1.1rem;
  color: var(--sage); flex:none; padding-top:2px;
}
.onsite h3{ font-size:1.05rem; margin-bottom:.4em; color:#fbfbfa; }
.onsite p{ margin:0; color: var(--cream-dim); font-size:0.95rem; max-width: 64ch; }

/* ---------- the two ways forward ---------- */
.ways{ display:grid; grid-template-columns: 1.15fr .85fr; gap: 22px; align-items:start; }
@media (max-width: 820px){ .ways{ grid-template-columns:1fr; } }
.way{ border:1px solid var(--fog-2); border-radius:6px; padding: clamp(24px,3.4vw,36px); background:#fff; }
.way-tag{
  font-size:0.68rem; font-weight:800; letter-spacing:.2em; text-transform:uppercase;
  color: var(--emerald-2); margin-bottom:1em;
}
.way h3{ font-size: clamp(1.25rem,2.2vw,1.7rem); }
.way p{ color: var(--stone-dark); font-size:0.97rem; }
.way-main{ border-color: var(--emerald-2); border-width:1.5px; }
.way-alt{ background: var(--fog); }
.way-alt .way-tag{ color: var(--stone-dark); }
.way-alt h3{ font-size: clamp(1.1rem,1.8vw,1.35rem); }
.capacity-note{ font-size:0.88rem; color: var(--stone-dark); margin: 1.2em 0 0; }
.on-dark .capacity-note{ color: var(--cream-dim); }

/* ---------- capture forms (handbook + close) ---------- */
.lead-form .field-row-3{ display:grid; grid-template-columns: 1fr 1fr 1fr; gap:16px; }
@media (max-width: 700px){ .lead-form .field-row-3{ grid-template-columns:1fr; } }
.chk-set{ border:0; margin: 6px 0 18px; padding:0; }
.chk-set legend{ font-weight:700; font-size:0.86rem; padding:0; margin-bottom:10px; }
.chk-set legend .opt{ font-weight:500; color: var(--stone-dark); }
.chk-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:8px; }
@media (max-width: 860px){ .chk-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .chk-grid{ grid-template-columns: 1fr; } }
.chk{
  display:flex; align-items:flex-start; gap:9px; font-size:0.88rem;
  background:#fff; border:1.5px solid var(--fog-2); border-radius:4px; padding: 10px 12px;
  cursor:pointer; transition: border-color .2s var(--ease), background .2s var(--ease);
}
.chk:hover{ border-color: var(--emerald-2); }
.chk input{ margin:3px 0 0; accent-color: var(--emerald-2); flex:none; }
.chk input:checked + span{ font-weight:700; }
.carry-note{ font-size:0.84rem; color: var(--emerald-2); margin: 8px 0 0; }
.btn-block{ width:100%; justify-content:center; }

/* the close sits on a measured column, not the full 1240px container */
#book .form-card{ max-width: 880px; }
#book .lead-thanks{ max-width: 880px; }

/* ---------- Rung 2: the window list ---------- */
.ballpark{
  border:1px solid var(--fog-2); border-radius:6px; background: var(--paper);
  margin: 4px 0 20px;
}
.ballpark > summary{
  list-style:none; cursor:pointer; padding: 16px 18px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  font-weight:700; font-size:0.95rem;
}
.ballpark > summary::-webkit-details-marker{ display:none; }
.ballpark > summary:hover{ color: var(--emerald-2); }
.ballpark .ind{ position:relative; width:18px; height:18px; flex:none; }
.ballpark .ind::before, .ballpark .ind::after{
  content:""; position:absolute; background: var(--emerald-2); transition: transform .3s var(--ease);
}
.ballpark .ind::before{ left:0; top:50%; width:100%; height:2px; transform: translateY(-50%); }
.ballpark .ind::after{ top:0; left:50%; width:2px; height:100%; transform: translateX(-50%); }
.ballpark[open] .ind::after{ transform: translateX(-50%) rotate(90deg); opacity:0; }
.bp-inner{ padding: 4px 18px 20px; }
.bp-note{ font-size:0.9rem; color: var(--stone-dark); margin: 0 0 16px; max-width: 66ch; }
.bp-print-head{ display:none; }
.bp-scroll{ overflow-x:auto; }
.bp-table{ width:100%; border-collapse:collapse; font-size:0.88rem; min-width: 720px; }
.bp-table th{
  text-align:left; font-family: var(--font-body); font-weight:800; font-size:0.7rem;
  letter-spacing:.14em; text-transform:uppercase; color: var(--stone-dark);
  padding: 0 8px 10px; border-bottom:1px solid var(--fog-2);
}
.bp-table td{ padding: 8px 8px; vertical-align:middle; }
.bp-table input, .bp-table select{
  width:100%; padding: .6em .7em; border-radius:4px; border:1.5px solid var(--fog-2);
  background:#fff; color: var(--ink); font: inherit; font-size:0.88rem;
}
.bp-table input:focus, .bp-table select:focus{ border-color: var(--emerald-2); outline:none; }
.bp-rm{ width:44px; text-align:right; }
.bp-remove{
  background:transparent; border:1.5px solid var(--fog-2); color: var(--stone-dark);
  width:32px; height:32px; border-radius:4px; cursor:pointer; line-height:1;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.bp-remove:hover{ border-color: var(--emerald-2); color: var(--emerald-2); }
.bp-actions{ display:flex; flex-wrap:wrap; align-items:center; gap:12px; margin-top:16px; }
.bp-actions .btn{ padding:.72em 1.2em; font-size:0.8rem; }
.bp-count{ font-size:0.85rem; color: var(--stone-dark); margin:0; }

/* rows become stacked cards on a phone */
@media (max-width: 640px){
  .bp-table{ min-width:0; }
  .bp-table thead{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); }
  .bp-table tr{ display:block; border:1px solid var(--fog-2); border-radius:6px; padding:10px 12px; margin-bottom:12px; background:#fff; }
  .bp-table td{ display:block; padding:6px 0; }
  .bp-table td::before{
    content: attr(data-lbl); display:block; font-size:0.68rem; font-weight:800;
    letter-spacing:.14em; text-transform:uppercase; color: var(--stone-dark); margin-bottom:4px;
  }
  .bp-rm{ width:auto; text-align:left; }
}

/* ---------- thank-you blocks ---------- */
.lead-thanks{
  background: var(--fog); border:1px solid var(--fog-2); border-left:3px solid var(--emerald-2);
  border-radius:6px; padding: clamp(22px,3vw,30px); margin-top: 8px;
}
.lead-thanks h3{ margin-bottom:.5em; }
.lead-thanks p{ color: var(--stone-dark); font-size:0.97rem; }
.lead-thanks p:last-child{ margin-bottom:0; }
.lead-thanks a{ color: var(--emerald-2); font-weight:700; text-decoration:underline; }

/* ---------- sources ---------- */
.sources-list{ display:grid; gap:12px; max-width: 80ch; }
.sources-list li{
  font-size:0.88rem; color: var(--stone-dark); padding-left:18px; position:relative; line-height:1.6;
}
.sources-list li::before{ content:""; position:absolute; left:0; top:.7em; width:8px; height:1px; background: var(--emerald); }
.sources-list a{ color: var(--emerald-2); font-weight:600; text-decoration:underline; text-underline-offset:2px; }
.sources-list a:hover{ color: var(--emerald); }

/* ---------- homepage handbook panel ---------- */
.hb-panel{ display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,5vw,60px); align-items:center; }
@media (max-width: 860px){ .hb-panel{ grid-template-columns:1fr; } }
.hb-list{ display:grid; gap:10px; margin: 1.4em 0 1.8em; }
.hb-list li{ display:flex; gap:10px; align-items:flex-start; font-size:0.95rem; color: var(--stone-dark); }
.hb-list svg{ flex:none; width:17px; height:17px; color: var(--emerald-2); margin-top:4px; }
.hero-extra{ margin: -1.8em 0 2.6em; font-size:0.92rem; color:#eceeeb; }
.hero-extra a{ border-bottom:1px solid var(--sage); padding-bottom:1px; font-weight:700; }
.hero-extra a:hover{ color: var(--sage); }

/* ---------- print: walk the house with paper ---------- */
@media print{
  .site-nav, .guide-rail, .chat-launcher, .chat-panel, .site-footer, .marquee,
  .hero, .page-banner, .closing-glow{ display:none !important; }
  body{ background:#fff; color:#000; font-size:12pt; }
  .reveal{ opacity:1 !important; transform:none !important; }
  .rec-add, .bp-actions, .btn{ display:none !important; }
}
/* bp-printing only ever changes the PRINTED page — never what is on screen,
   so a browser that swallows afterprint can't leave the visitor with a blank page. */
@media print{
  body.bp-printing main > *{ display:none !important; }
  body.bp-printing #book{ display:block !important; }
  body.bp-printing #book .container,
  body.bp-printing #book .lead-form{ display:block !important; }
  body.bp-printing .lead-form > *:not(.ballpark){ display:none !important; }
  body.bp-printing .ballpark{ display:block !important; border:0; }
  body.bp-printing .ballpark > summary{ display:none !important; }
  body.bp-printing .bp-inner{ display:block !important; padding:0; }
  body.bp-printing .bp-print-head{ display:block !important; margin-bottom:16px; }
  body.bp-printing .bp-print-head h2{ font-size:18pt; margin-bottom:6px; }
  body.bp-printing .bp-print-head p{ font-size:10pt; max-width:none; }
  body.bp-printing .bp-note{ display:none !important; }
  body.bp-printing .bp-scroll{ overflow:visible; }
  body.bp-printing .bp-table{ min-width:0; width:100%; }
  body.bp-printing .bp-table th{ color:#000; border-bottom:1px solid #000; }
  body.bp-printing .bp-table td{ border-bottom:1px solid #999; height:34px; }
  body.bp-printing .bp-table input, body.bp-printing .bp-table select{ border:0; background:transparent; }
  body.bp-printing .bp-rm{ display:none !important; }
}
