/* =========================================================
   Senderwood Blinds — stylesheet
   Palette: carbon + oat + tobacco  |  Fonts: Fraunces + Archivo
   ========================================================= */

:root{
  --carbon:#1c1712;
  --carbon-soft:#2a2219;
  --carbon-line:#3a3025;
  --oat:#f4efe2;
  --oat-deep:#e8dcc3;
  --paper:#fbf8f1;
  --tobacco:#7a5842;
  --tobacco-deep:#5b4231;
  --tobacco-light:#c98a52;
  --ink:#211a13;
  --ink-soft:#5a4f41;
  --line:rgba(33,26,19,0.14);
  --line-on-dark:rgba(244,239,226,0.18);
  --shadow:0 20px 50px rgba(28,23,18,0.16);
  --font-display:'Fraunces', serif;
  --font-body:'Archivo', sans-serif;
  --max:1260px;
  --pad:clamp(20px, 5vw, 64px);
  --section-pad:clamp(64px, 9vw, 104px);
  --radius:4px;
}

*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--oat);
  font-size:17px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-display); font-weight:600; line-height:1.08; letter-spacing:-0.015em; margin:0; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
input, select, textarea{ font-family:inherit; font-size:16px; }

.container{ max-width:var(--max); margin:0 auto; padding:0 var(--pad); }

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-body); font-weight:600; font-size:12.5px;
  text-transform:uppercase; letter-spacing:0.24em; color:var(--tobacco-deep);
}
.eyebrow::before{
  content:""; width:26px; height:1.5px; background:var(--tobacco);
}
.on-dark .eyebrow{ color:var(--tobacco-light); }
.on-dark .eyebrow::before{ background:var(--tobacco-light); }

.rule{
  height:1px; width:100%; background:var(--line); transform-origin:left center;
}

/* focus states */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible{
  outline:2px solid var(--tobacco); outline-offset:3px;
}
section:focus{ outline:none; }

/* keyboard skip link — hidden until tabbed to */
.skip-link{
  position:fixed; top:10px; left:10px; z-index:300;
  background:var(--paper); color:var(--ink); padding:12px 20px; border-radius:2px;
  font-size:13.5px; font-weight:600; letter-spacing:0.02em;
  box-shadow:0 10px 30px rgba(20,15,10,0.28);
  transform:translateY(-160%); transition:transform .25s ease;
}
.skip-link:focus{ transform:translateY(0); }

/* =========================== NAV =========================== */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:18px var(--pad);
  display:flex; align-items:center; justify-content:space-between;
  background:transparent;
  transition:background .35s ease, box-shadow .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom:1px solid transparent;
}
.nav.is-scrolled{
  background:rgba(28,23,18,0.92);
  backdrop-filter:blur(10px);
  padding:12px var(--pad);
  box-shadow:0 8px 30px rgba(0,0,0,0.18);
  border-bottom:1px solid var(--line-on-dark);
}
.nav-brand{ display:flex; align-items:center; gap:12px; }
.nav-brand svg{ width:34px; height:31px; flex:none; }
.nav-brand .wordmark{
  font-family:var(--font-display); font-weight:600; font-size:1.2rem; color:var(--paper); letter-spacing:-0.01em;
}
.nav-links{ display:flex; align-items:center; gap:32px; }
.nav-links a{
  color:var(--oat-deep); font-size:14.5px; font-weight:500; position:relative; padding:4px 0;
  transition:color .25s ease;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:-2px; height:1px; width:100%;
  background:var(--tobacco-light); transform:scaleX(0); transform-origin:left; transition:transform .3s ease;
}
.nav-links a:hover{ color:var(--paper); }
.nav-links a:hover::after{ transform:scaleX(1); }
.nav-cta{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--tobacco); color:var(--paper); padding:11px 22px; border-radius:2px;
  font-size:13.5px; font-weight:600; letter-spacing:0.03em; border:1px solid var(--tobacco);
  transition:background .25s ease, transform .25s ease, border-color .25s ease;
}
.nav-cta:hover{ background:var(--tobacco-deep); border-color:var(--tobacco-deep); transform:translateY(-1px); }
.nav-toggle{
  display:none; background:none; border:1px solid var(--line-on-dark); width:42px; height:42px; border-radius:2px;
  align-items:center; justify-content:center; flex-direction:column; gap:5px;
}
.nav-toggle span{ width:18px; height:1.5px; background:var(--paper); display:block; }
.nav-mobile{
  position:fixed; inset:0; background:var(--carbon); z-index:99; display:flex; flex-direction:column;
  padding:100px var(--pad) 40px; gap:26px; transform:translateY(-8px); opacity:0; visibility:hidden;
  transition:opacity .3s ease, transform .3s ease, visibility 0s linear .3s; pointer-events:none;
}
.nav-mobile.is-open{ opacity:1; visibility:visible; transform:translateY(0); pointer-events:auto; transition-delay:0s; }
.nav-mobile a{ font-family:var(--font-display); font-size:1.7rem; color:var(--paper); transition:color .25s ease, transform .25s ease; }
.nav-mobile a:hover{ color:var(--tobacco-light); transform:translateX(4px); }
body.nav-open{ overflow:hidden; }
.nav-mobile .nav-cta{ align-self:flex-start; margin-top:10px; }

/* =========================== SIDE NAV =========================== */
.side-nav{
  position:fixed; right:26px; top:50%; transform:translateY(-50%); z-index:60;
  display:flex; flex-direction:column; gap:16px; align-items:flex-end;
}
.side-nav a{
  display:flex; align-items:center; gap:10px; font-size:11.5px; letter-spacing:0.08em; color:var(--ink-soft);
  text-transform:uppercase; font-weight:600;
}
.side-nav .dot{
  width:8px; height:8px; border-radius:50%; border:1.5px solid var(--tobacco); background:transparent; flex:none;
  transition:background .25s ease, transform .25s ease;
}
.side-nav .label{
  opacity:0; max-width:0; overflow:hidden; white-space:nowrap; transition:opacity .25s ease, max-width .25s ease;
}
.side-nav a:hover .label, .side-nav a.is-active .label{ opacity:1; max-width:160px; }
.side-nav a.is-active .dot{ background:var(--tobacco); transform:scale(1.2); }
@media (max-width:1180px){ .side-nav{ display:none; } }

/* =========================== HERO =========================== */
.hero{
  position:relative; min-height:100svh; display:flex; align-items:flex-end; overflow:hidden; background:var(--carbon);
}
.hero-media{ position:absolute; inset:0; overflow:hidden; }
.hero-media img{
  width:100%; height:100%; object-fit:cover; transform:scale(1.06);
}
/* Scrim: light enough that the photograph stays clearly visible, weighted to the
   bottom-left where the headline actually sits so the type keeps its contrast. */
.hero-scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(100deg, rgba(18,14,10,0.62) 0%, rgba(18,14,10,0.30) 42%, rgba(18,14,10,0.04) 72%),
    linear-gradient(180deg, rgba(20,16,12,0.42) 0%, rgba(20,16,12,0.10) 30%, rgba(20,16,12,0.34) 66%, rgba(18,14,10,0.80) 100%);
}
.hero-inner{
  position:relative; z-index:2; width:100%; padding:0 var(--pad) clamp(56px,9vw,96px);
}
.hero-content{ max-width:760px; }
.hero-content .eyebrow{ color:var(--tobacco-light); margin-bottom:22px; }
.hero h1{
  color:var(--paper); font-size:clamp(2.4rem, 5.4vw, 4.5rem); font-weight:600;
}
.hero h1 .word{ display:inline-block; overflow:hidden; }
.hero h1 .word span{ display:inline-block; }
.hero-sub{
  color:var(--oat-deep); font-size:clamp(1rem, 1.6vw, 1.2rem); max-width:52ch; margin-top:22px; line-height:1.65;
}
.hero-ctas{ display:flex; flex-wrap:wrap; gap:16px; margin-top:36px; }
.btn{
  display:inline-flex; align-items:center; gap:10px; padding:15px 30px; font-size:14.5px; font-weight:600;
  letter-spacing:0.02em; border-radius:2px; border:1px solid transparent; transition:transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.btn-primary{ background:var(--tobacco); color:var(--paper); border-color:var(--tobacco); }
.btn-primary:hover{ background:var(--tobacco-deep); border-color:var(--tobacco-deep); transform:translateY(-2px); }
.btn-outline{ background:transparent; color:var(--paper); border-color:rgba(251,248,241,0.55); }
.btn-outline:hover{ background:rgba(251,248,241,0.1); border-color:var(--paper); transform:translateY(-2px); }
.btn-dark{ background:var(--carbon); color:var(--paper); border-color:var(--carbon); }
.btn-dark:hover{ background:#000; }
.btn-arrow{ transition:transform .25s ease; }
.btn:hover .btn-arrow{ transform:translateX(4px); }

/* trust row */
.trust{
  background:var(--carbon); color:var(--oat); padding:34px var(--pad) 46px; position:relative; z-index:2;
}
.trust-row{
  max-width:var(--max); margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:24px;
  border-top:1px solid var(--line-on-dark); padding-top:28px;
}
.trust-item{ display:flex; gap:12px; align-items:flex-start; font-size:14.5px; color:var(--oat-deep); }
.trust-item svg{ flex:none; width:20px; height:20px; margin-top:2px; color:var(--tobacco-light); }
@media (max-width:820px){ .trust-row{ grid-template-columns:1fr; } }

/* marquee */
.marquee{
  background:var(--tobacco-deep); overflow:hidden; padding:16px 0; position:relative; z-index:2;
}
.marquee-track{
  display:flex; gap:60px; white-space:nowrap; width:max-content;
  animation:marquee 34s linear infinite;
}
.marquee-track span{
  font-family:var(--font-display); font-style:italic; font-size:1.05rem; color:var(--oat-deep);
  display:flex; align-items:center; gap:60px;
}
.marquee-track span::after{ content:"—"; color:var(--tobacco-light); margin-left:60px; }
.marquee:hover .marquee-track{ animation-play-state:paused; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* section base */
section{ position:relative; }
.band{ padding:var(--section-pad) 0; }
.band-light{ background:var(--oat); }
.band-paper{ background:var(--paper); }
.section-head{ max-width:640px; margin-bottom:52px; }
.section-head h2{ font-size:clamp(2rem, 3.4vw, 2.9rem); margin-top:16px; }
.section-head p{ margin-top:18px; color:var(--ink-soft); font-size:1.05rem; max-width:56ch; }

/* =========================== RANGE / PRODUCT GRID =========================== */
.range-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); margin-top:8px;
}
.range-card{
  background:var(--paper); padding:34px 26px; display:flex; flex-direction:column; gap:16px; transition:background .3s ease;
}
.range-card:hover{ background:var(--oat-deep); }
.range-card svg{ width:52px; height:44px; color:var(--carbon); }
/* the product photograph bleeds to the card edge above the name */
.range-card .pthumb{
  width:auto!important; margin:-34px -26px 4px; aspect-ratio:16/10; background:var(--oat-deep);
}
.range-card:hover .pthumb img{ transform:scale(1.045); }
.range-card .rs-note{
  font-size:12.5px; line-height:1.55; color:var(--ink-soft); opacity:1; margin:-4px 0 0;
  padding:0 0 0 12px; border-left:2px solid var(--tobacco);
}
.range-card .rs-note strong{ color:var(--ink); }
.range-card .rc-name{ font-family:var(--font-display); font-size:1.18rem; font-weight:600; }
.range-card .rc-benefit{ font-size:14.5px; color:var(--ink-soft); line-height:1.6; flex:1; }
.range-card .rc-link{
  font-size:13px; font-weight:600; color:var(--tobacco-deep); display:inline-flex; align-items:center; gap:6px;
  letter-spacing:0.02em; margin-top:auto;
}
.range-card .rc-link svg{ width:14px; height:14px; margin:0; transition:transform .25s ease; color:var(--tobacco-deep); }
.range-card:hover .rc-link svg{ transform:translateX(4px); }
@media (max-width:980px){ .range-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .range-grid{ grid-template-columns:1fr; } }

/* =========================== EDITORIAL PHOTO BAND =========================== */
.editorial{ background:var(--carbon); padding:var(--section-pad) 0; color:var(--paper); }
.editorial-grid{
  display:grid; grid-template-columns:repeat(6,1fr); grid-template-rows:repeat(2, minmax(160px,auto)); gap:18px; margin-top:52px;
}
.ed-item{ position:relative; overflow:hidden; border-radius:2px; }
.ed-item img{ width:100%; height:100%; object-fit:cover; }
.ed-1{ grid-column:1 / 4; grid-row:1 / 3; }
.ed-2{ grid-column:4 / 7; grid-row:1 / 2; }
.ed-3{ grid-column:4 / 7; grid-row:2 / 3; }
.ed-caption{
  position:absolute; left:0; right:0; bottom:0; padding:20px 22px;
  background:linear-gradient(0deg, rgba(15,12,9,0.85), rgba(15,12,9,0));
  font-size:14px; color:var(--oat-deep); line-height:1.5;
}
@media (max-width:860px){
  .editorial-grid{ grid-template-columns:1fr; grid-template-rows:none; }
  .ed-1, .ed-2, .ed-3{ grid-column:auto; grid-row:auto; min-height:280px; }
}

/* =========================== STORY / LOCALE =========================== */
.story{ background:var(--oat-deep); }
.story-grid{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:70px; align-items:start; }
.story-copy p{ color:var(--ink-soft); margin-top:18px; font-size:1.02rem; }
.story-copy p:first-of-type{ margin-top:22px; }
.gate-wrap{ display:flex; justify-content:center; padding-top:12px; }
.gate-wrap svg{ width:100%; max-width:320px; height:auto; }
@media (max-width:900px){ .story-grid{ grid-template-columns:1fr; gap:44px; } .gate-wrap{ order:-1; } }

/* =========================== PROCESS =========================== */
.process-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:36px; margin-top:52px; }
.process-step{ position:relative; padding-top:26px; }
.process-step::before{
  content:""; position:absolute; top:0; left:0; height:1px; width:44px; background:var(--tobacco);
  transform:scaleX(0); transform-origin:left; transition:transform .6s ease;
}
.process-step.in-view::before{ transform:scaleX(1); }
.process-num{ font-family:var(--font-display); font-size:2.6rem; color:var(--tobacco); font-weight:600; line-height:1; }
.process-step h3{ font-size:1.15rem; margin-top:14px; }
.process-step p{ margin-top:10px; color:var(--ink-soft); font-size:14.5px; line-height:1.6; }
@media (max-width:900px){ .process-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .process-grid{ grid-template-columns:1fr; } }

/* =========================== AREAS =========================== */
.areas{ background:var(--carbon); color:var(--paper); }
.area-chip-row{ display:flex; flex-wrap:wrap; gap:14px; margin-top:44px; }
.area-chip{
  display:inline-flex; align-items:center; gap:10px; padding:14px 24px; border:1px solid var(--line-on-dark);
  border-radius:999px; font-size:14.5px; color:var(--oat-deep); transition:border-color .25s ease, background .25s ease, color .25s ease;
}
.area-chip svg{ width:15px; height:15px; color:var(--tobacco-light); }
.area-chip:hover{ border-color:var(--tobacco-light); background:rgba(201,138,82,0.1); color:var(--paper); }

/* =========================== FAQ =========================== */
.faq-list{ margin-top:48px; max-width:820px; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-item summary{
  list-style:none; display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:26px 4px; cursor:pointer; font-family:var(--font-display); font-size:1.1rem; font-weight:600;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-toggle{ position:relative; width:20px; height:20px; flex:none; }
.faq-toggle::before, .faq-toggle::after{
  content:""; position:absolute; background:var(--tobacco-deep); top:50%; left:50%; transform:translate(-50%,-50%);
  transition:transform .3s ease;
}
.faq-toggle::before{ width:16px; height:1.6px; }
.faq-toggle::after{ width:1.6px; height:16px; }
.faq-item[open] .faq-toggle::after{ transform:translate(-50%,-50%) rotate(90deg); opacity:0; }
.faq-item[open] .faq-toggle::before{ transform:translate(-50%,-50%) rotate(180deg); }
.faq-body{ padding:0 4px 26px; color:var(--ink-soft); font-size:15px; max-width:66ch; line-height:1.7; }
.faq-item summary{ transition:color .25s ease; }
.faq-item summary:hover{ color:var(--tobacco-deep); }
.faq-item[open] .faq-body{ animation:faqIn .38s cubic-bezier(.2,.7,.2,1) both; }
@keyframes faqIn{ from{ opacity:0; transform:translateY(-8px); } to{ opacity:1; transform:none; } }

/* =========================== CLOSING CTA =========================== */
.cta-band{
  position:relative; overflow:hidden; background:var(--carbon); color:var(--paper); padding:clamp(80px,12vw,140px) 0;
  text-align:center;
}
.cta-glow{ position:absolute; inset:-20%; z-index:0; filter:blur(60px); opacity:0.55; }
.cta-glow span{
  position:absolute; border-radius:50%; opacity:0.55; mix-blend-mode:screen;
}
.glow-1{ width:38vw; height:38vw; background:var(--tobacco); top:-8%; left:-6%; animation:driftA 22s ease-in-out infinite alternate; }
.glow-2{ width:30vw; height:30vw; background:var(--tobacco-light); bottom:-12%; right:-4%; animation:driftB 26s ease-in-out infinite alternate; }
@keyframes driftA{ from{ transform:translate(0,0) scale(1); } to{ transform:translate(6%, 8%) scale(1.15); } }
@keyframes driftB{ from{ transform:translate(0,0) scale(1); } to{ transform:translate(-8%, -6%) scale(1.1); } }
.cta-inner{ position:relative; z-index:2; max-width:720px; margin:0 auto; }
.cta-inner .eyebrow{ justify-content:center; }
.cta-inner h2{ color:var(--paper); font-size:clamp(2.1rem, 4vw, 3.2rem); margin-top:18px; }
.cta-inner p{ color:var(--oat-deep); margin-top:18px; font-size:1.05rem; }
.cta-inner .hero-ctas{ justify-content:center; margin-top:34px; }

/* =========================== CONTACT / FORM =========================== */
.contact-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:70px; }
.contact-info h2{ font-size:clamp(1.9rem,3vw,2.6rem); margin-top:16px; }
.contact-info p{ margin-top:18px; color:var(--ink-soft); }
.contact-points{ margin-top:32px; display:flex; flex-direction:column; gap:18px; }
.contact-points li{ display:flex; gap:12px; align-items:flex-start; font-size:14.5px; color:var(--ink-soft); }
.contact-points svg{ width:18px; height:18px; flex:none; margin-top:2px; color:var(--tobacco); }
.form-card{ background:var(--paper); border:1px solid var(--line); padding:clamp(28px,4vw,44px); border-radius:2px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:12.5px; font-weight:600; text-transform:uppercase; letter-spacing:0.08em; color:var(--ink-soft); margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; border:1px solid var(--line); background:var(--oat); padding:13px 14px; border-radius:2px; color:var(--ink);
  transition:border-color .25s ease, background .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--tobacco); background:var(--paper); outline:none; }
.field textarea{ resize:vertical; min-height:100px; }
.popia-line{ font-size:12.5px; color:var(--ink-soft); margin-top:18px; line-height:1.6; }
.form-success{ display:none; padding:20px; background:var(--oat-deep); border:1px solid var(--tobacco); border-radius:2px; font-size:14.5px; }
.form-success.is-visible{ display:block; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; gap:44px; } }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }

/* =========================== FOOTER =========================== */
.site-footer{ background:var(--carbon); color:var(--oat-deep); padding:56px 0 32px; }
.footer-top{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:40px; padding-bottom:36px; border-bottom:1px solid var(--line-on-dark); }
.footer-brand{ display:flex; align-items:center; gap:12px; }
.footer-brand svg{ width:30px; height:27px; }
.footer-brand .wordmark{ font-family:var(--font-display); font-size:1.15rem; color:var(--paper); }
.footer-statement{ max-width:360px; font-size:14px; color:var(--oat-deep); margin-top:14px; }
.footer-cols{ display:flex; gap:64px; flex-wrap:wrap; }
.footer-col h4{ font-size:12px; text-transform:uppercase; letter-spacing:0.16em; color:var(--tobacco-light); font-family:var(--font-body); margin-bottom:16px; }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:14px; color:var(--oat-deep); transition:color .2s ease; }
.footer-col a:hover{ color:var(--paper); }
.footer-bottom{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:16px; padding-top:26px; font-size:12.5px; color:var(--ink-soft); }
.footer-bottom .popia-line{ color:var(--ink-soft); margin:0; max-width:520px; }

/* =========================== PAGE HERO (product / area pages) =========================== */
.page-hero{
  position:relative; padding:calc(var(--section-pad) + 60px) 0 var(--section-pad); background:var(--carbon); color:var(--paper); overflow:hidden;
}
.page-hero-media{ position:absolute; inset:0; overflow:hidden; }
.page-hero-media img{ width:100%; height:100%; object-fit:cover; opacity:0.62; }
/* directional scrim — heavier under the headline, light where the photograph reads */
.page-hero-media::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(18,14,10,0.82) 0%, rgba(18,14,10,0.60) 46%, rgba(18,14,10,0.22) 100%);
}
.page-hero .container{ position:relative; z-index:2; max-width:820px; }
.page-hero h1{ color:var(--paper); font-size:clamp(2.1rem, 4.4vw, 3.4rem); margin-top:16px; }
.page-hero p{ color:var(--oat-deep); margin-top:20px; max-width:60ch; font-size:1.05rem; }
.breadcrumb{ font-size:13px; color:var(--oat-deep); display:flex; gap:8px; align-items:center; margin-bottom:6px; }
.breadcrumb a{ color:var(--tobacco-light); }

.detail-grid{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.detail-grid img{ border-radius:2px; }
.detail-copy h2{ font-size:clamp(1.7rem,3vw,2.3rem); }
.detail-copy p{ margin-top:16px; color:var(--ink-soft); }
.detail-list{ margin-top:24px; display:flex; flex-direction:column; gap:14px; }
.detail-list li{ display:flex; gap:12px; font-size:14.5px; color:var(--ink-soft); }
.detail-list svg{ width:17px; height:17px; flex:none; margin-top:3px; color:var(--tobacco); }
@media (max-width:860px){ .detail-grid{ grid-template-columns:1fr; gap:36px; } }

.related-row{ display:flex; flex-wrap:wrap; gap:14px; margin-top:44px; }
.related-row a{
  padding:12px 20px; border:1px solid var(--line); border-radius:999px; font-size:13.5px; font-weight:600; color:var(--ink-soft);
  transition:border-color .2s ease, color .2s ease;
}
.related-row a:hover{ border-color:var(--tobacco); color:var(--tobacco-deep); }

/* =========================== REVEAL (JS controlled) ===========================
   Deliberately VISIBLE by default. The fade-and-rise start state is applied by
   js/main.js only once it has confirmed it can animate the element back in, so
   a missing CDN, a blocked script or an odd browser can never leave the page
   blank. Content beats choreography. */
.reveal{ opacity:1; }
.reveal.is-ready{ transition:opacity .8s ease, transform .8s ease; }

/* =========================== CHAT WIDGET =========================== */
.chat-launcher{
  position:fixed; right:24px; bottom:24px; z-index:200; width:60px; height:60px; border-radius:50%;
  background:var(--tobacco); border:none; color:var(--paper); display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px rgba(28,20,12,0.35); transition:transform .25s ease, background .25s ease;
}
.chat-launcher:hover{ background:var(--tobacco-deep); transform:scale(1.06); }
.chat-launcher svg{ width:26px; height:26px; }
.chat-launcher .chat-close-icon{ display:none; }
.chat-launcher.is-open .chat-open-icon{ display:none; }
.chat-launcher.is-open .chat-close-icon{ display:block; }

.chat-panel{
  position:fixed; right:24px; bottom:96px; z-index:199; width:min(360px, calc(100vw - 40px)); max-height:min(560px, calc(100vh - 140px));
  background:var(--paper); border-radius:6px; box-shadow:0 30px 70px rgba(20,15,10,0.35); border:1px solid var(--line);
  display:flex; flex-direction:column; overflow:hidden; opacity:0; transform:translateY(16px) scale(0.98); pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}
.chat-panel.is-open{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
.chat-head{ background:var(--carbon); color:var(--paper); padding:18px 20px; }
.chat-head .cw-brand{ display:flex; align-items:center; gap:10px; }
.chat-head svg.mark{ width:24px; height:22px; }
.chat-head strong{ font-family:var(--font-display); font-size:1.05rem; }
.chat-head p{ font-size:12px; color:var(--oat-deep); margin-top:6px; line-height:1.5; }
.chat-body{ padding:16px 18px; overflow-y:auto; flex:1; display:flex; flex-direction:column; gap:12px; background:var(--oat); }
.chat-msg{ max-width:86%; padding:11px 14px; border-radius:10px; font-size:13.5px; line-height:1.55; }
.chat-msg.bot{ background:var(--paper); border:1px solid var(--line); align-self:flex-start; border-bottom-left-radius:2px; }
.chat-msg.user{ background:var(--tobacco); color:var(--paper); align-self:flex-end; border-bottom-right-radius:2px; }
.chat-chips{ display:flex; flex-wrap:wrap; gap:8px; margin-top:2px; }
.chat-chip{
  border:1px solid var(--tobacco); background:transparent; color:var(--tobacco-deep); padding:8px 14px; border-radius:999px;
  font-size:12.5px; font-weight:600; transition:background .2s ease, color .2s ease;
}
.chat-chip:hover{ background:var(--tobacco); color:var(--paper); }
.chat-foot{ padding:12px 14px; border-top:1px solid var(--line); background:var(--paper); display:flex; gap:8px; }
.chat-foot input{ flex:1; border:1px solid var(--line); border-radius:999px; padding:10px 16px; font-size:13.5px; background:var(--oat); }
.chat-foot input:focus{ outline:none; border-color:var(--tobacco); }
.chat-foot button{
  width:38px; height:38px; border-radius:50%; border:none; background:var(--tobacco); color:var(--paper); display:flex;
  align-items:center; justify-content:center; flex:none;
}
.chat-foot button svg{ width:16px; height:16px; }
.chat-popia{ font-size:10.5px; color:var(--ink-soft); padding:0 18px 12px; line-height:1.5; background:var(--oat); }

/* =========================== REDUCED MOTION =========================== */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration:0.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.001ms !important;
    scroll-behavior:auto !important;
  }
  .reveal{ opacity:1 !important; transform:none !important; }
  .hero-media img{ transform:none !important; }
}

/* =========================== RESPONSIVE NAV SWITCH =========================== */
@media (max-width:900px){
  .nav-links{ display:none; }
  .nav-toggle{ display:flex; }
}

/* 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}


/* ==========================================================================
   THE LEAD LADDER — the field guide, the window list, the free measure
   Rung 1 guide.html  ·  Rung 2 the ballpark window list  ·  Rung 3 the close
   Everything below is built from the tokens declared at the top of this
   file. No new colours, no new fonts, the same square-cornered geometry.
   ========================================================================== */

/* ---------------- Rung 1 — guide hero (full-bleed, like .hero) ------------- */
.guide-hero{
  position:relative; min-height:78svh; display:flex; align-items:flex-end;
  overflow:hidden; background:var(--carbon);
}
.guide-hero-media{ position:absolute; inset:0; overflow:hidden; }
.guide-hero-media img{ width:100%; height:100%; object-fit:cover; transform:scale(1.04); }
.guide-hero-scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(100deg, rgba(18,14,10,0.74) 0%, rgba(18,14,10,0.40) 46%, rgba(18,14,10,0.06) 78%),
    linear-gradient(180deg, rgba(20,16,12,0.50) 0%, rgba(20,16,12,0.12) 34%, rgba(18,14,10,0.84) 100%);
}
.guide-hero-inner{ position:relative; z-index:2; width:100%; padding-block:150px clamp(52px,8vw,92px); }
.guide-hero .breadcrumb{ margin-bottom:18px; }
.guide-hero h1{
  color:var(--paper); font-size:clamp(2.3rem, 5vw, 4.2rem); margin-top:20px; max-width:15ch;
}
.guide-hero h1 .lede{
  display:block; font-style:italic; font-weight:400; font-size:0.42em; color:var(--oat-deep);
  letter-spacing:0.005em; line-height:1.3; margin-top:16px; max-width:26ch;
}
.guide-hero .sub{ color:var(--oat-deep); font-size:clamp(1rem,1.5vw,1.13rem); max-width:56ch; margin-top:24px; line-height:1.65; }
.guide-meta{ display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; }
.guide-meta span{
  display:inline-flex; align-items:center; gap:8px; padding:7px 15px; border-radius:999px;
  border:1px solid var(--line-on-dark); color:var(--oat-deep); font-size:12.5px; letter-spacing:0.01em;
}
.guide-meta span::before{ content:""; width:5px; height:5px; border-radius:50%; background:var(--tobacco-light); flex:none; }

/* ---------------- contents rail ---------------- */
.guide-contents{ background:var(--paper); border-bottom:1px solid var(--line); padding:22px 0; }
.guide-contents .container{ display:flex; flex-wrap:wrap; align-items:center; gap:10px 12px; }
.guide-contents .lbl{
  font-size:11.5px; font-weight:600; text-transform:uppercase; letter-spacing:0.22em;
  color:var(--tobacco-deep); margin-right:6px;
}
.guide-contents a{
  font-size:13.5px; font-weight:500; color:var(--ink-soft); border:1px solid var(--line);
  border-radius:999px; padding:8px 16px;
  transition:border-color .25s ease, color .25s ease, background .25s ease;
}
.guide-contents a:hover{ border-color:var(--tobacco); color:var(--tobacco-deep); background:var(--oat); }

/* ---------------- guide prose ---------------- */
.guide-section{ padding:var(--section-pad) 0; }
.guide-prose{ max-width:68ch; }
.guide-prose p{ color:var(--ink-soft); margin-bottom:18px; font-size:1.02rem; }
.guide-prose p:last-child{ margin-bottom:0; }
.guide-prose p strong{ color:var(--ink); font-weight:600; }
.guide-prose h3{ font-size:1.24rem; margin:36px 0 14px; }
.guide-prose ul{ margin:0 0 18px; padding:0; list-style:none; }
.guide-prose ul li{ position:relative; padding-left:24px; margin-bottom:12px; color:var(--ink-soft); }
.guide-prose ul li::before{ content:""; position:absolute; left:0; top:14px; width:12px; height:1.5px; background:var(--tobacco); }
.guide-prose sup{ font-size:0.68em; color:var(--tobacco-deep); font-weight:600; letter-spacing:0.02em; }

/* -------- full-width photo band (the stacked-panel signature of this site) -- */
.photo-band{ position:relative; background:var(--carbon); overflow:hidden; margin:0; }
.photo-band img{ width:100%; height:clamp(300px, 50vw, 600px); object-fit:cover; }
.photo-band figcaption{
  position:absolute; left:0; right:0; bottom:0; padding:70px var(--pad) 32px;
  background:linear-gradient(0deg, rgba(15,12,9,0.90) 0%, rgba(15,12,9,0) 100%);
  color:var(--oat-deep); font-size:14.5px; line-height:1.6;
}
.photo-band figcaption span{ display:block; max-width:var(--max); margin:0 auto; }
.photo-band figcaption b{
  display:block; font-family:var(--font-display); font-style:italic; font-weight:600;
  font-size:1.12rem; color:var(--paper); margin-bottom:6px;
}

/* ---------------- elevation cards ---------------- */
.elev-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); border:1px solid var(--line); margin-top:52px; }
.elev-card{ background:var(--paper); padding:32px 30px; }
.elev-card .compass{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.elev-card .compass svg{ width:30px; height:30px; flex:none; color:var(--tobacco); }
.elev-card .compass b{ font-family:var(--font-display); font-size:1.14rem; font-weight:600; letter-spacing:-0.01em; }
.elev-card p{ color:var(--ink-soft); font-size:14.6px; line-height:1.65; margin-bottom:12px; }
.elev-card p:last-of-type{ margin-bottom:0; }
.elev-card .verdict{ border-top:1px solid var(--line); margin-top:16px; padding-top:14px; font-size:14px; color:var(--ink-soft); }
.elev-card .verdict em{ font-family:var(--font-display); font-style:italic; font-weight:600; color:var(--tobacco-deep); }

/* ---------------- product recommendations ---------------- */
.rec-list{ display:flex; flex-direction:column; gap:1px; background:var(--line); border:1px solid var(--line); margin-top:52px; }
.rec{ background:var(--paper); padding:32px 34px; display:grid; grid-template-columns:1fr auto; gap:16px 34px; align-items:start; }
.rec-head{ grid-column:1 / -1; display:flex; align-items:baseline; gap:16px; flex-wrap:wrap; }
.rec-head h3{ font-size:1.2rem; }
.rec-head .where{ font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:0.16em; color:var(--tobacco-deep); }
.rec-body{ grid-column:1; }
.rec-body p{ color:var(--ink-soft); font-size:14.8px; line-height:1.68; margin-bottom:12px; }
.rec-body p:last-child{ margin-bottom:0; }
.rec-trade{ border-left:2px solid var(--tobacco); background:var(--oat); padding:14px 18px; margin-top:16px; }
.rec-trade b{ display:block; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:0.14em; color:var(--tobacco-deep); margin-bottom:6px; }
.rec-trade p{ font-size:14px; margin:0; }
.rec-side{ grid-column:2; grid-row:2; align-self:start; }
.rec-add{
  display:inline-flex; align-items:center; gap:8px; white-space:nowrap;
  background:transparent; color:var(--tobacco-deep); border:1px solid var(--tobacco);
  border-radius:2px; padding:12px 20px; font-size:13px; font-weight:600; letter-spacing:0.02em;
  transition:background .25s ease, color .25s ease, border-color .25s ease;
}
.rec-add:hover{ background:var(--tobacco); color:var(--paper); }
.rec-add::before{ content:"+"; font-size:1.05rem; line-height:1; }
.rec-add.is-added{ background:var(--oat-deep); border-color:var(--oat-deep); color:var(--ink-soft); cursor:default; }
.rec-add.is-added::before{ content:"\2713"; font-size:0.86rem; }
.rec-add[disabled]{ opacity:1; }

/* ---------------- what we would check on site ---------------- */
.check-list{ display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); border:1px solid var(--line); margin-top:52px; counter-reset:chk; }
.check-item{ background:var(--paper); padding:30px 30px 28px; }
.check-item::before{
  counter-increment:chk; content:counter(chk,decimal-leading-zero);
  font-family:var(--font-display); font-size:1.9rem; font-weight:600; color:var(--tobacco);
  display:block; line-height:1; margin-bottom:14px;
}
.check-item h4{ font-size:1.04rem; margin-bottom:9px; }
.check-item p{ color:var(--ink-soft); font-size:14.4px; line-height:1.65; }

/* ---------------- sources ---------------- */
.sources{ background:var(--paper); border:1px solid var(--line); padding:34px 38px; margin-top:44px; }
.sources ol{ margin:0; padding-left:22px; color:var(--ink-soft); font-size:14px; line-height:1.65; }
.sources li{ margin-bottom:12px; }
.sources a{ color:var(--tobacco-deep); text-decoration:underline; text-underline-offset:2px; }
.sources a:hover{ color:var(--tobacco); }
.sources .note{ font-size:13.5px; color:var(--ink-soft); margin-top:20px; padding-top:16px; border-top:1px solid var(--line); }

/* ---------------- Rung 3 — the close ---------------- */
.ladder-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:70px; align-items:start; }
.ladder-side p{ color:var(--ink-soft); margin-top:18px; }
.ladder-side .promise{ margin-top:30px; display:flex; flex-direction:column; gap:16px; }
.ladder-side .promise-item{ display:flex; gap:12px; align-items:flex-start; font-size:14.5px; color:var(--ink-soft); }
.ladder-side .promise-item svg{ width:18px; height:18px; flex:none; margin-top:2px; color:var(--tobacco); }
.ladder-side .capacity{
  margin-top:28px; padding:16px 18px; border-left:2px solid var(--tobacco); background:var(--paper);
  font-size:14px; color:var(--ink-soft); line-height:1.65;
}
.interest-grid{ display:grid; grid-template-columns:1fr 1fr; gap:2px 18px; margin-top:2px; }
.interest-grid label{
  display:flex; align-items:flex-start; gap:10px; font-size:13.8px; font-weight:400; text-transform:none;
  letter-spacing:0; color:var(--ink-soft); margin:0; padding:6px 0; cursor:pointer;
}
.interest-grid input{ width:16px; height:16px; flex:none; margin-top:2px; accent-color:var(--tobacco); }
.interest-grid input:checked + span{ color:var(--ink); font-weight:500; }
.field .legend{ display:block; font-size:12.5px; font-weight:600; text-transform:uppercase; letter-spacing:0.08em; color:var(--ink-soft); margin-bottom:9px; }
.carry-note{ font-size:13.2px; color:var(--ink-soft); background:var(--oat-deep); padding:11px 14px; margin-top:10px; line-height:1.55; }
.carry-note strong{ color:var(--ink); }
.form-success h3{ font-size:1.2rem; margin-bottom:10px; }
.form-success p{ color:var(--ink-soft); font-size:14.4px; line-height:1.65; margin-bottom:10px; }
.form-success p:last-child{ margin-bottom:0; }
.form-success a{ color:var(--tobacco-deep); text-decoration:underline; text-underline-offset:2px; font-weight:600; }
form.is-sent{ display:none; }

/* ---------------- Rung 2 — the ballpark window list ---------------- */
.ballpark{ margin-top:22px; border:1px dashed var(--line); background:var(--oat); }
.ballpark > summary{
  list-style:none; cursor:pointer; padding:18px 22px; display:flex; align-items:center;
  justify-content:space-between; gap:16px; font-size:14.5px; font-weight:600; color:var(--ink);
  transition:color .25s ease;
}
.ballpark > summary::-webkit-details-marker{ display:none; }
.ballpark > summary:hover{ color:var(--tobacco-deep); }
.ballpark > summary .chev{ width:15px; height:15px; flex:none; color:var(--tobacco); transition:transform .3s ease; }
.ballpark[open] > summary .chev{ transform:rotate(180deg); }
.bp-inner{ padding:0 22px 22px; }
.bp-pairing{ font-size:14px; color:var(--ink-soft); line-height:1.65; margin-bottom:20px; max-width:64ch; }
.bp-pairing strong{ color:var(--ink); font-weight:600; }
.bp-scroll{ overflow-x:auto; }
.bp-table{ width:100%; border-collapse:collapse; font-size:14px; }
.bp-table th{
  text-align:left; font-size:10.5px; font-weight:700; text-transform:uppercase; letter-spacing:0.13em;
  color:var(--ink-soft); padding:0 8px 10px 0; border-bottom:1px solid var(--line); white-space:nowrap;
}
.bp-table td{ padding:7px 8px 7px 0; vertical-align:middle; }
.bp-table input, .bp-table select{
  width:100%; min-width:96px; border:1px solid var(--line); background:var(--paper);
  border-radius:2px; padding:10px 11px; color:var(--ink); font-size:14px;
  transition:border-color .25s ease;
}
.bp-table input:focus, .bp-table select:focus{ outline:none; border-color:var(--tobacco); }
.bp-table td.bp-rm{ width:36px; padding-right:0; }
.bp-remove{
  width:30px; height:30px; border-radius:2px; border:1px solid var(--line); background:var(--paper);
  color:var(--ink-soft); font-size:1.02rem; line-height:1; display:flex; align-items:center; justify-content:center;
  transition:border-color .25s ease, color .25s ease, background .25s ease;
}
.bp-remove:hover{ border-color:var(--tobacco); color:var(--tobacco-deep); background:var(--oat-deep); }
.bp-actions{ display:flex; flex-wrap:wrap; gap:10px; align-items:center; margin-top:18px; }
.bp-btn{
  background:var(--paper); border:1px solid var(--line); border-radius:2px; padding:11px 18px;
  font-size:13px; font-weight:600; color:var(--ink); display:inline-flex; align-items:center; gap:8px;
  transition:border-color .25s ease, background .25s ease, color .25s ease;
}
.bp-btn:hover{ border-color:var(--tobacco); color:var(--tobacco-deep); background:var(--oat-deep); }
.bp-btn svg{ width:14px; height:14px; }
.bp-count{ font-size:13px; color:var(--ink-soft); margin-top:14px; }
.bp-foot{ font-size:12.5px; color:var(--ink-soft); margin-top:12px; line-height:1.6; }
.bp-print-head{ display:none; }
.bp-holder{ display:none; }

/* ---------------- homepage and area-page hand-offs ---------------- */
.hero-guide-link{
  display:inline-flex; align-items:center; gap:10px; margin-top:24px; padding-bottom:6px;
  font-size:14px; font-weight:500; color:var(--oat-deep); border-bottom:1px solid rgba(251,248,241,0.3);
  transition:color .25s ease, border-color .25s ease, gap .25s ease;
}
.hero-guide-link em{ font-family:var(--font-display); font-style:italic; color:var(--paper); }
.hero-guide-link svg{ width:15px; height:9px; flex:none; color:var(--tobacco-light); }
.hero-guide-link:hover{ color:var(--paper); border-color:var(--tobacco-light); gap:14px; }

.guide-band{ display:grid; grid-template-columns:1.02fr 1fr; background:var(--paper); border:1px solid var(--line); }
.guide-band-figure{ margin:0; position:relative; min-height:400px; overflow:hidden; }
.guide-band-figure img{ width:100%; height:100%; object-fit:cover; }
.guide-band-copy{ padding:clamp(34px,4.4vw,54px); display:flex; flex-direction:column; justify-content:center; }
.guide-band-copy h2{ font-size:clamp(1.8rem,3vw,2.6rem); margin-top:16px; }
.guide-band-lede{ margin-top:16px; color:var(--ink-soft); font-size:1.04rem; }
.guide-band-points{ margin:24px 0 0; padding:0; list-style:none; }
.guide-band-points li{ position:relative; padding-left:26px; margin-bottom:12px; font-size:14.6px; color:var(--ink-soft); }
.guide-band-points li::before{ content:""; position:absolute; left:0; top:12px; width:13px; height:1.5px; background:var(--tobacco); }
.guide-band-points em{ font-family:var(--font-display); font-style:italic; color:var(--ink); }
.guide-band-note{ margin-top:20px; font-size:12.8px; color:var(--ink-soft); }
.guide-band .hero-ctas{ margin-top:28px; }
.guide-band .btn-outline{ color:var(--ink); border-color:var(--line); }
.guide-band .btn-outline:hover{ background:var(--oat-deep); border-color:var(--tobacco); }

/* ---------------- ladder responsive ---------------- */
@media (max-width:1080px){
  .ladder-grid{ grid-template-columns:1fr; gap:44px; }
  .elev-grid, .check-list{ grid-template-columns:1fr; }
  .guide-band{ grid-template-columns:1fr; }
  .guide-band-figure{ min-height:0; aspect-ratio:16/9; }
}
@media (max-width:900px){
  .guide-hero-inner{ padding-block:126px clamp(44px,8vw,72px); }
}
@media (max-width:720px){
  .rec{ grid-template-columns:1fr; padding:26px 24px; }
  .rec-side{ grid-column:1; grid-row:auto; }
  .sources{ padding:26px 24px; }
  .interest-grid{ grid-template-columns:1fr; }
}
@media (max-width:640px){
  /* window rows become stacked cards */
  .bp-scroll{ overflow-x:visible; }
  .bp-table, .bp-table tbody, .bp-table tr, .bp-table td{ display:block; width:100%; }
  .bp-table thead{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }
  .bp-table tr.bp-row{ background:var(--paper); border:1px solid var(--line); padding:16px 14px 6px; margin-bottom:12px; position:relative; }
  .bp-table td{ padding:0 0 12px; }
  .bp-table td[data-lbl]::before{
    content:attr(data-lbl); display:block; font-size:10.5px; font-weight:700; text-transform:uppercase;
    letter-spacing:0.13em; color:var(--ink-soft); margin-bottom:6px;
  }
  .bp-table td.bp-rm{ position:absolute; top:10px; right:10px; width:auto; padding:0; }
  .bp-table td.bp-rm::before{ content:none; }
  .bp-inner{ padding:0 14px 18px; }
  .ballpark > summary{ padding:16px 14px; }
}

/* ---------------- print: walk the house with paper ---------------- */
@media print{
  body{ background:#fff; }
  .nav, .nav-mobile, .side-nav, .marquee, .trust, .cta-band, .site-footer, .chat-launcher,
  .chat-panel, .guide-contents, .guide-hero, .photo-band, .hero-ctas, .bp-actions,
  .bp-remove, .ballpark > summary, .bp-pairing, .popia-line, .skip-link{ display:none !important; }
  .ballpark{ border:none; background:#fff; margin:0; }
  .bp-inner{ padding:0; }
  .bp-print-head{ display:block; margin-bottom:18px; }
  .bp-print-head h2{ font-size:1.5rem; margin-bottom:6px; }
  .bp-print-head p{ font-size:13px; color:#444; }
  .bp-table input, .bp-table select{ border:1px solid #999; background:#fff; }
  .bp-table th{ border-bottom:1px solid #666; }
  .form-card{ border:none; box-shadow:none; padding:0; }
  body.bp-printing .guide-section, body.bp-printing .band{ padding:0 !important; }
  body.bp-printing .guide-prose, body.bp-printing .rec-list, body.bp-printing .elev-grid,
  body.bp-printing .check-list, body.bp-printing .sources, body.bp-printing .section-head,
  body.bp-printing .ladder-side, body.bp-printing .form-row, body.bp-printing .interest-grid,
  body.bp-printing .contact-info, body.bp-printing .field:not(.bp-holder),
  body.bp-printing .form-success, body.bp-printing .rule,
  body.bp-printing form > button{ display:none !important; }
  body.bp-printing .ladder-grid, body.bp-printing .contact-grid{ display:block !important; }
}

/* ---------------- odds and ends ---------------- */
.visually-hidden{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0 0 0 0); white-space:nowrap; border:0;
}
