/* ============================================================
   Steyn City Blinds — stylesheet
   Theme: mega-estate | Palette: espresso brown + cream + sage
   Fonts: Playfair Display (display) + Inter Tight (body/UI)
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
svg { display: block; }

/* ---------- Tokens ---------- */
:root {
  --espresso: #4A3423;
  --espresso-deep: #2A1C13;
  --espresso-mid: #6B4E37;
  --cream: #F7F1E3;
  --cream-soft: #EFE5D0;
  --cream-line: #E4D7BC;
  --sage: #93A583;
  --sage-deep: #66795A;
  --sage-pale: #DCE3D2;
  --ink: #241811;
  --white: #FFFDF9;
  --line: rgba(42, 28, 19, 0.14);
  --shadow-sm: 0 8px 24px rgba(36, 24, 17, 0.10);
  --shadow-lg: 0 30px 70px rgba(24, 16, 11, 0.24);
  --radius-s: 3px;
  --radius-m: 6px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --section-pad: clamp(64px, 9vw, 108px);
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--espresso-deep);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 600;
}

.container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--sage-deep);
}

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); margin-bottom: 16px; }
.section-head p { font-size: 1.05rem; color: var(--espresso-mid); max-width: 58ch; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

.rule {
  height: 1px;
  background: var(--line);
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
}
.rule.in-view { transform: scaleX(1); transition: transform 1.1s var(--ease); }

a:focus-visible, button:focus-visible, [tabindex]:focus-visible, summary:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-s);
  border: 1px solid transparent;
  transition: transform .28s var(--ease), background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease);
  will-change: transform;
}
.btn-primary {
  background: var(--sage-deep);
  color: var(--white);
}
.btn-primary:hover { background: var(--espresso-deep); }
.btn-outline {
  border-color: rgba(255,253,249,0.55);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,253,249,0.12); }
.btn-outline.on-light {
  border-color: var(--espresso);
  color: var(--espresso-deep);
}
.btn-outline.on-light:hover { background: var(--espresso-deep); color: var(--white); }
.btn-small { padding: 10px 20px; font-size: 0.82rem; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 500;
  padding: 20px 0;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.nav::before {
  content: '';
  position: absolute; inset: 0 0 auto 0; height: 170px; z-index: -1;
  background: linear-gradient(180deg, rgba(20,13,8,0.6) 0%, rgba(20,13,8,0) 100%);
  opacity: 1; transition: opacity .35s var(--ease);
}
.nav.is-scrolled::before, body.subpage .nav::before { opacity: 0; }
.nav-inner {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 34px; height: 34px; flex-shrink: 0; color: var(--white); }
.chat-head .logo-mark { color: var(--white); }
.footer-brand .logo-mark { color: var(--white); width: 30px; height: 30px; }
.wordmark {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color .35s var(--ease);
}
.wordmark em { font-style: italic; color: var(--sage); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a { color: rgba(255,253,249,0.86); position: relative; transition: color .25s var(--ease); }
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--sage);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,253,249,0.4);
  border-radius: var(--radius-s);
  background: transparent;
  color: var(--white);
  align-items: center; justify-content: center;
}

.nav.is-scrolled {
  background: rgba(42, 28, 19, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 18px clamp(20px, 5vw, 48px) 26px;
    background: rgba(42, 28, 19, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(255,253,249,0.12);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .nav-links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { color: rgba(255,253,249,0.9); width: 100%; padding: 10px 0; font-size: 1rem; }
  .nav-links a::after { display: none; }
  .nav.is-light .nav-links a { color: rgba(255,253,249,0.9); }
  .nav.is-light .nav-links a:hover { color: var(--white); }
}
.nav.is-light .wordmark,
.nav.is-light .nav-links a,
.nav.is-light .nav-toggle { color: var(--espresso-deep); }
.nav.is-light .nav-links a { color: var(--espresso-mid); }
.nav.is-light .nav-links a:hover { color: var(--espresso-deep); }
.nav.is-light .nav-toggle { border-color: var(--line); color: var(--espresso-deep); }
.nav.is-light .btn-outline { border-color: var(--espresso); color: var(--espresso-deep); }
.nav.is-light .btn-outline:hover { background: var(--espresso-deep); color: var(--white); }
.nav.is-light.is-scrolled { background: rgba(247, 241, 227, 0.95); }

body.subpage .nav { background: rgba(42,28,19,0.96); padding: 14px 0; }

/* ---------- Hero mosaic (homepage) ---------- */
.hero {
  position: relative;
  padding-top: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, minmax(120px, 22vh));
  min-height: 100vh;
  grid-template-areas:
    "main main room2 detail"
    "main main room2 detail"
    "content content room3 texa"
    "content content room3 texa";
}
.tile { position: relative; overflow: hidden; }
.tile-photo {
  background-size: cover;
  background-position: center;
  transform-origin: left center;
}
.tile-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,16,11,0.05) 0%, rgba(24,16,11,0.38) 100%);
}
.tile-main { grid-area: main; }
.tile-room2 { grid-area: room2; }
.tile-detail { grid-area: detail; }
.tile-room3 { grid-area: room3; }
.tile-texa {
  grid-area: texa;
  background:
    repeating-linear-gradient(115deg, var(--sage) 0 3px, transparent 3px 26px),
    var(--espresso-mid);
}
.tile-content {
  grid-area: content;
  background: var(--espresso-deep);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 56px);
}
.tile-content .eyebrow { color: var(--sage); }
.tile-content .eyebrow::before { background: var(--sage); }
.hero-headline {
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  color: var(--white);
  margin-bottom: 22px;
}
.hero-headline span { display: inline-block; will-change: transform, opacity; }
.hero-sub {
  color: rgba(255,253,249,0.82);
  max-width: 46ch;
  font-size: 1.02rem;
  margin-bottom: 30px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.trust-row { display: flex; flex-direction: column; gap: 12px; }
.trust-row li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: rgba(255,253,249,0.88);
}
.trust-row svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--sage); }

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "content content"
      "main main"
      "room2 detail"
      "room3 texa";
    min-height: 0;
  }
  .hero-grid .tile-main { min-height: 46vh; }
  .hero-grid .tile-room2, .hero-grid .tile-detail, .hero-grid .tile-room3, .hero-grid .tile-texa { min-height: 26vh; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--espresso-deep);
  color: var(--sage-pale);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(255,253,249,0.12);
  border-bottom: 1px solid rgba(255,253,249,0.12);
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 48px;
}
.marquee-track span::after { content: '\2022'; color: var(--sage); font-style: normal; margin-left: 48px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Section shells ---------- */
section { position: relative; }
.section-pad { padding-block: var(--section-pad); }
.bg-cream { background: var(--cream); }
.bg-cream-soft { background: var(--cream-soft); }
.bg-espresso { background: var(--espresso-deep); color: var(--white); }
.bg-espresso h2, .bg-espresso h3 { color: var(--white); }

/* ---------- Products grid ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.product-card {
  background: var(--cream);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .3s var(--ease);
}
.product-card:hover { background: var(--white); }
.pthumb { overflow: hidden; border-radius: var(--radius-s); }
.pthumb img { transition: transform .45s var(--ease); will-change: transform; }
.product-card:hover .pthumb img { transform: scale(1.055); }
.p-icon { width: 46px; height: 46px; color: var(--espresso); transition: color .3s var(--ease); }
.product-card:hover .p-icon { color: var(--sage-deep); }
.product-card h3 { font-size: 1.12rem; font-weight: 600; }
.product-card p { font-size: 0.92rem; color: var(--espresso-mid); flex-grow: 1; }
.product-link {
  font-size: 0.84rem; font-weight: 600; color: var(--sage-deep);
  display: inline-flex; align-items: center; gap: 6px;
}
.product-link svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.product-card:hover .product-link svg { transform: translateX(4px); }

@media (max-width: 980px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products-grid { grid-template-columns: 1fr; } }

/* ---------- Editorial photo section ---------- */
.editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: start;
}
.ed-figure { position: relative; overflow: hidden; border-radius: var(--radius-m); }
.ed-figure img { width: 100%; height: 100%; object-fit: cover; }
.ed-figure figcaption {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  color: var(--white);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.ed-figure::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(20,13,8,0.55) 100%); }
.ed-a { grid-column: 1 / 8; aspect-ratio: 4/5; }
.ed-b { grid-column: 8 / 13; aspect-ratio: 3/4; margin-top: 64px; }
.ed-c { grid-column: 1 / 6; aspect-ratio: 5/4; margin-top: -40px; }
.ed-text { grid-column: 6 / 13; padding: 40px 0 0 30px; align-self: center; }
.ed-text h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 20px; }
.ed-text p { color: var(--espresso-mid); max-width: 52ch; margin-bottom: 14px; }

@media (max-width: 900px) {
  .editorial { grid-template-columns: 1fr 1fr; gap: 16px; }
  .ed-a { grid-column: 1 / 3; aspect-ratio: 16/10; }
  .ed-b { grid-column: 1/2; margin-top: 0; }
  .ed-c { grid-column: 2/3; margin-top: 0; }
  .ed-text { grid-column: 1 / 3; padding: 10px 0 0; }
}

/* ---------- Locale storytelling ---------- */
.locale {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.locale-facts { display: grid; gap: 26px; }
.locale-fact { padding-left: 22px; border-left: 2px solid var(--sage); }
.locale-fact h3 { font-size: 1.02rem; margin-bottom: 6px; color: var(--espresso-deep); font-family: var(--font-body); font-weight: 700; letter-spacing: -0.005em; }
.locale-fact p { font-size: 0.95rem; color: var(--espresso-mid); }
@media (max-width: 880px) { .locale { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Process ---------- */
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.process-step { position: relative; padding-top: 34px; border-top: 1px solid var(--line); }
.process-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--sage);
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}
.process-step h3 { font-size: 1.08rem; margin-bottom: 10px; }
.process-step p { font-size: 0.92rem; color: var(--espresso-mid); }
@media (max-width: 900px) { .process-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-list { grid-template-columns: 1fr; } }

/* ---------- Area chips ---------- */
.area-chips { display: flex; flex-wrap: wrap; gap: 14px; }
.area-chip {
  padding: 14px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--espresso-deep);
  background: var(--white);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
}
.area-chip svg { width: 15px; height: 15px; color: var(--sage-deep); }
.area-chip:hover { background: var(--espresso-deep); color: var(--white); border-color: var(--espresso-deep); transform: translateY(-2px); }
.area-chip:hover svg { color: var(--sage); }
.area-chip.current { background: var(--sage-deep); color: var(--white); border-color: var(--sage-deep); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.faq-item { background: var(--cream); padding: 6px 0; }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--espresso-deep);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 26px; height: 26px; flex-shrink: 0;
  border: 1px solid var(--espresso);
  border-radius: 50%;
  position: relative;
}
.faq-toggle::before, .faq-toggle::after {
  content: ''; position: absolute; background: var(--espresso);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-toggle::before { width: 11px; height: 1.4px; }
.faq-toggle::after { width: 1.4px; height: 11px; transition: transform .3s var(--ease); }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg) scale(0); }
.faq-item[open] summary { color: var(--sage-deep); }
.faq-body { padding: 0 26px 26px; max-width: 68ch; color: var(--espresso-mid); font-size: 0.98rem; }

/* ---------- Closing CTA ---------- */
.cta-close {
  position: relative;
  overflow: hidden;
  background: var(--espresso-deep);
  color: var(--white);
  text-align: center;
  padding-block: clamp(80px, 10vw, 120px);
}
.cta-glow {
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 720px; max-height: 720px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
}
.cta-glow-a { background: var(--sage); top: -20%; left: -10%; animation: drift-a 22s ease-in-out infinite alternate; }
.cta-glow-b { background: var(--espresso-mid); bottom: -25%; right: -8%; animation: drift-b 26s ease-in-out infinite alternate; }
@keyframes drift-a { from { transform: translate(0,0) scale(1); } to { transform: translate(6%, 8%) scale(1.15); } }
@keyframes drift-b { from { transform: translate(0,0) scale(1); } to { transform: translate(-8%, -6%) scale(1.1); } }
@media (prefers-reduced-motion: reduce) { .cta-glow-a, .cta-glow-b { animation: none; } }
.cta-close .container { position: relative; z-index: 2; }
.cta-close h2 { color: var(--white); font-size: clamp(2.1rem, 4vw, 3.2rem); margin-bottom: 18px; }
.cta-close p { color: rgba(255,253,249,0.82); max-width: 54ch; margin-inline: auto; margin-bottom: 36px; }
.cta-close .hero-cta { justify-content: center; margin-bottom: 0; }

/* ---------- Enquiry form ---------- */
.enquiry-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.enquiry-intro h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); margin-bottom: 18px; }
.enquiry-intro p { color: var(--espresso-mid); max-width: 46ch; margin-bottom: 24px; }
.enquiry-points { display: grid; gap: 14px; }
.enquiry-points li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; color: var(--espresso-mid); }
.enquiry-points svg { width: 17px; height: 17px; color: var(--sage-deep); flex-shrink: 0; margin-top: 3px; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; gap: 8px; margin-bottom: 20px; }
.form-row.two { grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row label { font-size: 0.82rem; font-weight: 600; color: var(--espresso-deep); }
.form-row input, .form-row select, .form-row textarea {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--cream);
  color: var(--ink);
  font-size: 0.96rem;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--sage-deep); background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-popia { font-size: 0.82rem; color: var(--espresso-mid); margin-top: 4px; line-height: 1.6; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
@media (max-width: 900px) { .enquiry-wrap { grid-template-columns: 1fr; } .form-row.two { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--espresso-deep);
  color: rgba(255,253,249,0.72);
  padding-block: 64px 32px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 40px;
  padding-bottom: 40px; margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,253,249,0.14);
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .wordmark { color: var(--white); }
.footer-statement { max-width: 40ch; font-size: 0.92rem; }
.footer-links { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--sage); margin-bottom: 16px; font-family: var(--font-body); }
.footer-col a { display: block; font-size: 0.92rem; margin-bottom: 10px; color: rgba(255,253,249,0.78); transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 0.82rem; }
.footer-popia { max-width: 60ch; }

/* ---------- Reveal utility ---------- */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.in-view { opacity: 1; transform: translateY(0); transition: opacity .9s var(--ease), transform .9s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .rule { transform: scaleX(1) !important; transition: none !important; }
  .tile-photo, .tile-texa, .hero-headline span,
  .hero-sub, .hero-cta, .hero-cta .btn, .trust-row li { opacity: 1 !important; transform: none !important; }
  .pthumb img, .product-link svg, .area-chip, .btn { transition: none !important; }
  .nav-links { transition: none !important; }
}
/* Late "reduce" switch (mid-session): main.js adds this class and force-completes */
.motion-off .reveal, .motion-off .tile-photo, .motion-off .tile-texa,
.motion-off .hero-headline span, .motion-off .hero-sub, .motion-off .hero-cta,
.motion-off .trust-row li { opacity: 1 !important; transform: none !important; }
.motion-off .rule { transform: scaleX(1) !important; }

/* ---------- Chat widget ---------- */
.chat-launcher {
  position: fixed; right: 24px; bottom: 24px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--sage-deep); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  border: none;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.chat-launcher:hover { background: var(--espresso-deep); transform: scale(1.06); }
.chat-launcher svg { width: 26px; height: 26px; }
.chat-launcher .icon-close { display: none; }
.chat-launcher.is-open .icon-chat { display: none; }
.chat-launcher.is-open .icon-close { display: block; }

.chat-panel {
  position: fixed; right: 24px; bottom: 96px; z-index: 900;
  width: min(360px, calc(100vw - 48px));
  max-height: min(560px, calc(100vh - 140px));
  background: var(--white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-lg);
  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.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.chat-head {
  background: var(--espresso-deep); color: var(--white);
  padding: 18px 20px; display: flex; align-items: center; gap: 12px;
}
.chat-head .logo-mark { width: 26px; height: 26px; }
.chat-head-text strong { display: block; font-family: var(--font-display); font-size: 1.02rem; }
.chat-head-text span { font-size: 0.76rem; color: var(--sage); }
.chat-body {
  flex: 1; overflow-y: auto; padding: 18px 16px; display: flex; flex-direction: column; gap: 12px;
  background: var(--cream);
}
.chat-msg { max-width: 88%; padding: 11px 14px; border-radius: 12px; font-size: 0.88rem; line-height: 1.55; }
.chat-msg.bot { background: var(--white); border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 3px; }
.chat-msg.user { background: var(--sage-deep); color: var(--white); align-self: flex-end; border-bottom-right-radius: 3px; }
.chat-popia { font-size: 0.74rem; color: var(--espresso-mid); border-top: 1px dashed var(--line); padding-top: 10px; margin-top: 2px; }
.chat-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chat-chip {
  border: 1px solid var(--sage-deep); color: var(--sage-deep); background: var(--white);
  padding: 8px 14px; border-radius: 999px; font-size: 0.82rem; font-weight: 600;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.chat-chip:hover { background: var(--sage-deep); color: var(--white); }
.chat-foot { border-top: 1px solid var(--line); padding: 12px; display: flex; gap: 8px; background: var(--white); }
.chat-foot input {
  flex: 1; border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px; font-size: 0.88rem; background: var(--cream);
}
.chat-foot input:focus { outline: none; border-color: var(--sage-deep); }
.chat-foot button {
  width: 40px; height: 40px; border-radius: 50%; background: var(--sage-deep); color: var(--white); border: none;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.chat-foot button svg { width: 17px; height: 17px; }
.chat-foot button:hover { background: var(--espresso-deep); }

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

/* ---------- Subpage hero (products/areas) ---------- */
.subhero {
  position: relative;
  min-height: 62vh;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  padding: 140px 0 64px;
}
.subhero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,16,11,0.55) 0%, rgba(24,16,11,0.15) 40%, rgba(24,16,11,0.82) 100%);
}
.subhero .container { position: relative; z-index: 2; }
.subhero .eyebrow { color: var(--sage); }
.subhero .eyebrow::before { background: var(--sage); }
.subhero h1 { color: var(--white); font-size: clamp(2.2rem, 4.4vw, 3.8rem); max-width: 16ch; margin-bottom: 18px; }
.subhero p { color: rgba(255,253,249,0.86); max-width: 56ch; font-size: 1.06rem; }
.breadcrumb { font-size: 0.82rem; color: rgba(255,253,249,0.72); margin-bottom: 20px; }
.breadcrumb a { text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb a:hover { color: var(--white); }

.prose { max-width: 74ch; }
.prose p { color: var(--espresso-mid); margin-bottom: 20px; font-size: 1.02rem; }
.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-top: 44px; margin-bottom: 16px; }
.prose ul { display: grid; gap: 10px; margin-bottom: 20px; }
.prose ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--espresso-mid); }
.prose ul li svg { width: 16px; height: 16px; color: var(--sage-deep); flex-shrink: 0; margin-top: 5px; }

.two-col { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

.side-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 30px; position: sticky; top: 110px;
}
.side-card h3 { font-size: 1.1rem; margin-bottom: 14px; }
.side-card p { font-size: 0.92rem; color: var(--espresso-mid); margin-bottom: 20px; }
.side-list { display: grid; gap: 10px; margin-bottom: 22px; }
.side-list a {
  font-size: 0.9rem; font-weight: 600; color: var(--espresso-deep);
  padding: 10px 14px; background: var(--cream); border-radius: var(--radius-s);
  display: flex; justify-content: space-between; align-items: center;
  transition: background .2s var(--ease);
}
.side-list a:hover { background: var(--sage-pale); }

.related-areas { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.related-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 24px; transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.related-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.related-card h3 { font-size: 1.06rem; margin-bottom: 8px; }
.related-card p { font-size: 0.9rem; color: var(--espresso-mid); margin-bottom: 14px; }
.related-card .product-link { font-size: 0.82rem; }
@media (max-width: 640px) { .related-areas { grid-template-columns: 1fr; } }


/* 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 — guide.html ("The Steyn City Glass &
   Parkland Field Guide"), the ballpark window list and the
   free-measure close. Uses only the tokens declared above.
   ============================================================ */

/* ---------- Guide hero: a two-tile mosaic strip ---------- */
.guide-hero { background: var(--espresso-deep); padding-top: 84px; }
.gh-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 74vh;
}
.gh-photo {
  background-size: cover; background-position: center;
  position: relative; min-height: 320px;
}
.gh-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(24,16,11,0.42) 0%, rgba(24,16,11,0.05) 55%, rgba(42,28,19,0.55) 100%);
}
.gh-panel {
  background: var(--espresso-deep); color: var(--white);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(30px, 4.4vw, 68px);
}
.gh-panel .eyebrow { color: var(--sage); }
.gh-panel .eyebrow::before { background: var(--sage); }
.gh-panel h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 3.5vw, 3.35rem);
  margin-bottom: 20px;
}
.gh-panel h1 em { font-style: italic; color: var(--sage); }
.gh-standfirst { color: rgba(255,253,249,0.84); max-width: 46ch; margin-bottom: 26px; }
.gh-meta {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,253,249,0.62); margin-bottom: 28px;
}
.gh-cta { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 900px) {
  .gh-grid { grid-template-columns: 1fr; }
  .gh-photo { min-height: 42vh; order: -1; }
  .guide-hero { padding-top: 68px; }
}

/* ---------- Guide body ---------- */
.g-sec { padding-block: clamp(58px, 7.5vw, 94px); }
.g-sec .section-head { margin-bottom: 38px; }
.g-sec .section-head .rule { margin: 20px 0; max-width: 220px; }
.g-body { max-width: 68ch; }
.g-body p { color: var(--espresso-mid); margin-bottom: 18px; }
.g-body p strong { color: var(--espresso-deep); font-weight: 600; }
.g-body h3 {
  font-family: var(--font-body); font-weight: 700; font-size: 1.02rem;
  color: var(--espresso-deep); margin: 26px 0 8px; letter-spacing: -0.005em;
}
.g-lede { font-size: 1.16rem; line-height: 1.62; color: var(--espresso-deep) !important; }

.g-figure { margin-top: 40px; border-radius: var(--radius-m); overflow: hidden; position: relative; }
.g-figure img { width: 100%; height: auto; display: block; }
.g-figure figcaption {
  background: var(--espresso-deep); color: rgba(255,253,249,0.78);
  font-size: 0.88rem; padding: 14px 18px;
}
.g-figure figcaption b {
  color: var(--sage); font-weight: 600; display: block;
  font-family: var(--font-display); font-style: italic; margin-bottom: 3px;
}

/* ---------- Elevation cards ---------- */
.elev-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); margin-top: 34px;
}
.elev { background: var(--cream); padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; }
.elev svg { width: 40px; height: 40px; color: var(--sage-deep); }
.elev h3 { font-size: 1.06rem; }
.elev p { font-size: 0.92rem; color: var(--espresso-mid); }
.elev .elev-do {
  font-size: 0.88rem; color: var(--espresso-deep);
  border-top: 1px solid var(--line); padding-top: 10px; margin-top: auto;
}
@media (max-width: 980px) { .elev-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .elev-grid { grid-template-columns: 1fr; } }

/* ---------- Product recommendations ---------- */
.rec-list { display: grid; gap: 20px; margin-top: 34px; }
.rec {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: clamp(22px, 3vw, 34px);
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 26px 34px; align-items: start;
}
.rec-head { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px; }
.rec-head h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
.rec-where {
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--sage-deep); font-weight: 600;
}
.rec p { font-size: 0.97rem; color: var(--espresso-mid); margin-bottom: 12px; }
.rec h4 {
  font-family: var(--font-body); font-size: 0.74rem; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--espresso-deep); margin-bottom: 10px;
}
.rec-trade { border-left: 2px solid var(--sage); padding-left: 20px; }
.rec-foot {
  grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  border-top: 1px solid var(--line); padding-top: 18px;
}
.rec-add {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--sage-pale); color: var(--espresso-deep);
  border: 1px solid var(--sage); border-radius: 999px;
  padding: 10px 20px; font-size: 0.85rem; font-weight: 600;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.rec-add svg { width: 14px; height: 14px; }
.rec-add:hover { background: var(--sage-deep); color: var(--white); border-color: var(--sage-deep); }
.rec-add.is-added { background: var(--espresso-deep); color: var(--white); border-color: var(--espresso-deep); cursor: default; }
.rec-foot small { font-size: 0.82rem; color: var(--espresso-mid); }
@media (max-width: 820px) {
  .rec { grid-template-columns: 1fr; }
  .rec-trade { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 18px; }
}

/* ---------- On-site checks ---------- */
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 40px; margin-top: 32px; }
.check-item { padding-left: 22px; border-left: 2px solid var(--sage); }
.check-item h4 {
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  color: var(--espresso-deep); margin-bottom: 6px;
}
.check-item p { font-size: 0.93rem; color: var(--espresso-mid); }
@media (max-width: 820px) { .check-list { grid-template-columns: 1fr; } }

/* ---------- The capture points ---------- */
.ladder-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: start; }
@media (max-width: 940px) { .ladder-grid { grid-template-columns: 1fr; gap: 34px; } }
.promise { display: grid; gap: 13px; margin-bottom: 22px; }
.promise li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.95rem; }
.promise svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 3px; color: var(--sage); }
.scarcity { font-size: 0.9rem; opacity: 0.82; border-top: 1px solid rgba(255,253,249,0.2); padding-top: 16px; }
.cta-band {
  position: relative; overflow: hidden; background: var(--espresso-deep);
  color: rgba(255,253,249,0.82); padding-block: clamp(64px, 8vw, 104px);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2, .cta-band h3 { color: var(--white); }
.cta-band .eyebrow { color: var(--sage); }
.cta-band .eyebrow::before { background: var(--sage); }
.cta-band .section-head p { color: rgba(255,253,249,0.8); }
.cta-band .rule { background: rgba(255,253,249,0.28); }

.lad-card { background: var(--white); border-radius: var(--radius-m); padding: clamp(24px, 3.4vw, 38px); box-shadow: var(--shadow-lg); }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label, .field legend {
  font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--espresso-deep);
}
.field input, .field select, .field textarea {
  padding: 12px 13px; border: 1px solid var(--line); border-radius: var(--radius-s);
  background: var(--cream); color: var(--ink); font-size: 0.95rem; width: 100%;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sage-deep); background: var(--white); }
.field textarea { resize: vertical; min-height: 92px; }
.interest-set { border: 1px solid var(--line); border-radius: var(--radius-s); padding: 16px; margin-bottom: 16px; }
.interest-set legend { padding: 0 8px; }
.interest-set legend span { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--espresso-mid); }
.interest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 16px; margin-top: 12px; }
.interest-grid label {
  display: flex; gap: 9px; align-items: flex-start; font-size: 0.88rem;
  color: var(--espresso-mid); font-weight: 400; text-transform: none; letter-spacing: 0;
}
.interest-grid input { width: auto; accent-color: var(--sage-deep); margin-top: 3px; }
@media (max-width: 620px) { .field-row, .interest-grid { grid-template-columns: 1fr; } }
.popia { font-size: 0.79rem; color: var(--espresso-mid); line-height: 1.6; margin-top: 12px; }
.carry-note { font-size: 0.82rem; color: var(--sage-deep); margin-top: 8px; }
.form-success { display: none; }
.form-success.show {
  display: block; background: var(--sage-pale); border: 1px solid var(--sage);
  border-radius: var(--radius-m); padding: 26px 28px; margin-top: 18px;
}
.form-success h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--espresso-deep); }
.form-success p { font-size: 0.94rem; color: var(--espresso-mid); margin-bottom: 10px; }
.form-success a { color: var(--sage-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
form.is-sent { display: none; }

/* ---------- The ballpark window list ---------- */
.ballpark { border: 1px dashed var(--line); border-radius: var(--radius-s); margin: 6px 0 16px; background: var(--cream); }
.ballpark > summary {
  list-style: none; cursor: pointer; padding: 15px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  font-size: 0.9rem; font-weight: 600; color: var(--espresso-deep);
}
.ballpark > summary::-webkit-details-marker { display: none; }
.ballpark .chev { width: 15px; height: 15px; flex-shrink: 0; transition: transform .3s var(--ease); }
.ballpark[open] .chev { transform: rotate(180deg); }
.bp-inner { padding: 0 18px 18px; }
.bp-pairing { font-size: 0.87rem; color: var(--espresso-mid); margin-bottom: 16px; line-height: 1.62; }
.bp-pairing strong { color: var(--espresso-deep); }
.bp-print-head { display: none; }
.bp-scroll { overflow-x: auto; }
.bp-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.bp-table th {
  text-align: left; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--espresso-mid); font-weight: 700; padding: 0 8px 8px 0; white-space: nowrap;
}
.bp-table td { padding: 4px 8px 4px 0; vertical-align: middle; }
.bp-table input, .bp-table select {
  width: 100%; min-width: 96px; padding: 8px 9px; font-size: 0.85rem;
  border: 1px solid var(--line); border-radius: var(--radius-s); background: var(--white); color: var(--ink);
}
.bp-table input:focus, .bp-table select:focus { outline: none; border-color: var(--sage-deep); }
.bp-rm { width: 34px; }
.bp-remove {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--white); color: var(--espresso-mid); font-size: 1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.bp-remove:hover { background: var(--espresso-deep); color: var(--white); }
.bp-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.bp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--espresso); background: transparent; color: var(--espresso-deep);
  border-radius: var(--radius-s); padding: 9px 16px; font-size: 0.82rem; font-weight: 600;
  transition: background .22s var(--ease), color .22s var(--ease);
}
.bp-btn svg { width: 15px; height: 15px; }
.bp-btn:hover { background: var(--espresso-deep); color: var(--white); }
.bp-count { font-size: 0.83rem; color: var(--sage-deep); font-weight: 600; margin-top: 12px; }
.bp-foot { font-size: 0.78rem; color: var(--espresso-mid); margin-top: 8px; line-height: 1.6; }
.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;
}

@media (max-width: 640px) {
  .bp-table, .bp-table tbody, .bp-table tr, .bp-table td { display: block; width: 100%; }
  .bp-table thead { display: none; }
  .bp-row {
    border: 1px solid var(--line); border-radius: var(--radius-s);
    background: var(--white); padding: 14px; margin-bottom: 12px; position: relative;
  }
  .bp-table td { padding: 0 0 10px; }
  .bp-table td::before {
    content: attr(data-lbl); display: block;
    font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--espresso-mid); font-weight: 700; margin-bottom: 5px;
  }
  .bp-rm { position: absolute; top: 10px; right: 10px; width: auto; padding: 0; }
  .bp-rm::before { display: none; }
}

/* ---------- Sources ---------- */
.sources ol { padding-left: 22px; display: grid; gap: 13px; max-width: 82ch; }
.sources li { font-size: 0.9rem; color: var(--espresso-mid); line-height: 1.62; }
.sources a { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 3px; word-break: break-word; }
.sources a:hover { color: var(--espresso-deep); }
.sources .note {
  font-size: 0.85rem; color: var(--espresso-mid); margin-top: 26px;
  border-left: 2px solid var(--sage); padding-left: 18px; max-width: 76ch;
}

/* ---------- Guide close ---------- */
.guide-close { display: flex; flex-wrap: wrap; gap: 30px 48px; align-items: center; justify-content: space-between; }
.guide-close h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); margin-bottom: 10px; }
.guide-close p { color: var(--espresso-mid); max-width: 46ch; }
.guide-close .hero-cta { margin-bottom: 0; }

/* ---------- Homepage / area-page pointer to the field guide ---------- */
.guide-plug { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.guide-plug-media { border-radius: var(--radius-m); overflow: hidden; }
.guide-plug-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.guide-plug h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.guide-plug p { color: var(--espresso-mid); max-width: 52ch; margin-bottom: 14px; }
.guide-plug ul { display: grid; gap: 9px; margin: 18px 0 24px; }
.guide-plug ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; color: var(--espresso-mid); }
.guide-plug ul li svg { width: 17px; height: 17px; color: var(--sage-deep); flex-shrink: 0; margin-top: 4px; }
@media (max-width: 900px) { .guide-plug { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Print: the window list, on paper ---------- */
@media print {
  body.bp-printing > *:not(main) { display: none !important; }
  body.bp-printing main > *:not(#measure) { display: none !important; }
  body.bp-printing #measure { background: #fff !important; color: #000 !important; padding: 0 !important; }
  body.bp-printing #measure .glow,
  body.bp-printing #measure .section-head,
  body.bp-printing #measure .ladder-side,
  body.bp-printing #measure .bp-actions,
  body.bp-printing #measure .bp-count,
  body.bp-printing #measure .bp-pairing,
  body.bp-printing #measure .bp-rm,
  body.bp-printing #measure .field,
  body.bp-printing #measure .interest-set,
  body.bp-printing #measure .popia,
  body.bp-printing #measure button[type="submit"] { display: none !important; }
  body.bp-printing .lad-card { box-shadow: none !important; padding: 0 !important; }
  body.bp-printing .ballpark { border: none !important; background: #fff !important; }
  body.bp-printing .ballpark > summary { display: none !important; }
  body.bp-printing .bp-inner { padding: 0 !important; }
  body.bp-printing .bp-print-head { display: block !important; margin-bottom: 16px; }
  body.bp-printing .bp-print-head h2 { font-size: 20pt; color: #000; }
  body.bp-printing .bp-print-head p { font-size: 9pt; color: #333; max-width: none; }
  body.bp-printing .bp-table { font-size: 10pt; }
  body.bp-printing .bp-table th { border-bottom: 1px solid #000; color: #000; padding-bottom: 6px; }
  body.bp-printing .bp-table td { padding: 9px 8px 9px 0; }
  body.bp-printing .bp-table input, body.bp-printing .bp-table select {
    border: none !important; border-bottom: 1px solid #999 !important; border-radius: 0 !important;
    background: transparent !important; -webkit-appearance: none; appearance: none; color: #000;
  }
  body.bp-printing .bp-foot { color: #333; }
  body.bp-printing .chat-launcher, body.bp-printing .chat-panel { display: none !important; }
}
