/* ==========================================================================
   Parkview Blinds — stylesheet
   Palette: espresso brown + cream + sage   |   Fonts: Source Serif 4 + Source Sans 3
   ========================================================================== */

:root{
  --espresso: #3B2A20;
  --espresso-deep: #241810;
  --espresso-soft: #6B4E3B;
  --cream: #F6EFE3;
  --cream-soft: #FBF7EE;
  --cream-line: #E5D9C6;
  --sage: #7E9270;
  --sage-deep: #5C6E4E;
  --sage-pale: #DCE4D3;
  --ink: #241A12;
  --line: rgba(59,42,32,.16);
  --shadow: 0 18px 44px rgba(36,24,16,.16);
  --radius: 3px;
  --ease: cubic-bezier(.22,.68,.32,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:"Source Sans 3", -apple-system, sans-serif;
  font-size:17px;
  line-height:1.7;
  color:var(--ink);
  background:var(--cream-soft);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
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:"Source Serif 4", Georgia, serif;
  font-weight:600;
  line-height:1.08;
  letter-spacing:-0.015em;
  margin:0;
  color:var(--espresso-deep);
}
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
.u-container{ max-width:1240px; margin:0 auto; padding:0 32px; }
.u-container--narrow{ max-width:800px; }
.eyebrow{
  font-size:.72rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.24em;
  color:var(--sage-deep);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:26px; height:1px;
  background:var(--sage-deep);
  display:inline-block;
}
.rule{
  height:1px; width:100%;
  background:var(--line);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 1.1s var(--ease);
}
.rule.is-in{ transform:scaleX(1); }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible{
  outline:2px solid var(--sage-deep);
  outline-offset:3px;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 30px;
  font-size:.92rem; font-weight:600;
  letter-spacing:.02em;
  border-radius:2px;
  border:1px solid transparent;
  transition:transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space:nowrap;
}
/* CTA: fill rises from the bottom edge — a bottom-anchored background-image
   layer grows from 0% to 100% height on hover (paint-only, no layout impact;
   background always paints beneath the button's text, so no z-index games). */
.btn--primary{
  background-color:var(--sage-deep);
  background-image:linear-gradient(var(--espresso-deep), var(--espresso-deep));
  background-repeat:no-repeat;
  background-position:left bottom;
  background-size:100% 0%;
  color:var(--cream-soft); position:relative; padding-right:48px;
  transition:background-size .5s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.btn--primary:hover, .btn--primary:focus-visible{ background-size:100% 100%; box-shadow:var(--shadow); }
.btn--outline{ border-color:currentColor; color:var(--cream); }
.btn--outline:hover{ background:rgba(246,239,227,.12); }
.btn--outline-dark{ border-color:var(--espresso); color:var(--espresso); }
.btn--outline-dark:hover{ background:var(--espresso); color:var(--cream); }
.btn--block{ width:100%; }
.btn[data-magnetic]{ position:relative; }

/* CTA icon — small chevron that spins a full turn on hover, riding on top of the fill-rise above */
.btn--primary::after{
  content:"";
  position:absolute;
  right:22px; top:50%;
  width:8px; height:8px;
  border-right:2px solid currentColor;
  border-top:2px solid currentColor;
  transform:translateY(-50%) rotate(45deg);
  transition:transform .55s var(--ease);
}
.btn--primary:hover::after{ transform:translateY(-50%) rotate(405deg); }

/* ==========================================================================
   Nav
   ========================================================================== */
.site-nav{
  position:fixed; top:0; left:0; right:0; z-index:900;
  padding:20px 0;
  transition:background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom:1px solid transparent;
}
.site-nav.is-solid{
  background:rgba(251,247,238,.92);
  backdrop-filter:blur(10px);
  padding:12px 0;
  border-color:var(--line);
  box-shadow:0 2px 24px rgba(36,24,16,.06);
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.nav-logo{ display:flex; align-items:center; gap:11px; }
.logo-mark{ width:36px; height:36px; flex:0 0 auto; }
.logo-word{
  font-family:"Source Serif 4", serif;
  font-size:1.28rem; font-weight:600;
  letter-spacing:-.01em;
  color:var(--cream);
  transition:color .35s var(--ease);
}
.site-nav.is-solid .logo-word{ color:var(--espresso-deep); }
.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a{
  font-size:.86rem; font-weight:600; letter-spacing:.03em;
  color:var(--cream);
  position:relative; padding-bottom:3px;
  transition:color .35s var(--ease);
}
.site-nav.is-solid .nav-links a{ color:var(--espresso); }
.nav-links a::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:1px;
  background:currentColor; transform:scaleX(0); transform-origin:right;
  transition:transform .3s var(--ease);
}
.nav-links a:hover::after{ transform:scaleX(1); transform-origin:left; }
.nav-cta{ display:flex; align-items:center; gap:18px; }
.nav-cta .btn{ padding:11px 22px; font-size:.82rem; }
.nav-cta .btn--primary{ padding-right:36px; }
.nav-cta .btn--primary::after{ right:16px; width:6px; height:6px; }
.nav-burger{
  display:none;
  flex-direction:column; justify-content:center; gap:5px;
  width:42px; height:42px;
  padding:0 8px;
  background:transparent; border:1px solid transparent; border-radius:2px;
  transition:border-color .3s var(--ease);
}
.nav-burger span{
  display:block; height:2px; width:100%;
  background:var(--cream);
  border-radius:1px;
  transition:transform .3s var(--ease), opacity .25s var(--ease), background .3s var(--ease);
}
.site-nav.is-solid .nav-burger span,
.site-nav.is-open .nav-burger span{ background:var(--espresso-deep); }
.nav-burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:900px){
  .nav-burger{ display:flex; }
  .nav-links{
    display:flex;
    position:absolute; top:100%; left:0; right:0;
    flex-direction:column; align-items:stretch; gap:0;
    background:var(--cream-soft);
    border-bottom:1px solid var(--line);
    box-shadow:0 24px 40px rgba(36,24,16,.14);
    padding:10px 24px 18px;
    opacity:0; transform:translateY(-8px);
    pointer-events:none; visibility:hidden;
    transition:opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
  }
  .site-nav.is-open .nav-links{
    opacity:1; transform:translateY(0);
    pointer-events:auto; visibility:visible;
    transition:opacity .3s var(--ease), transform .3s var(--ease);
  }
  .site-nav{ background:transparent; }
  .site-nav.is-open{
    background:rgba(251,247,238,.97);
    border-color:var(--line);
  }
  .site-nav.is-open .logo-word{ color:var(--espresso-deep); }
  .nav-links a{
    color:var(--espresso) !important;
    padding:13px 2px;
    font-size:1rem;
    border-bottom:1px solid var(--line);
  }
  .nav-links a:last-child{ border-bottom:none; }
  .nav-cta .btn:not(.btn--nav-primary){ display:none; }
}

/* ==========================================================================
   Hero — mosaic grid, headline carved into it
   ========================================================================== */
.hero{ position:relative; background:var(--espresso-deep); }
.hero-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(0, 1fr);
  min-height:100vh;
  gap:2px;
}
.hero-cell{ position:relative; overflow:hidden; }
.hero-cell--photo-main{ grid-column:1 / 8; grid-row:1 / 11; }
.hero-cell--photo-main img{
  width:100%; height:100%; object-fit:cover;
  transform:scale(1.06);
  will-change:transform;
}
.hero-photo-scrim{
  position:absolute; inset:0;
  background:linear-gradient(190deg, rgba(36,24,16,.03) 30%, rgba(36,24,16,.5) 100%);
}
.hero-cell--text{
  grid-column:8 / 13; grid-row:1 / 7;
  background:var(--espresso-deep);
  color:var(--cream);
  display:flex; flex-direction:column; justify-content:center;
  padding:64px 44px 30px;
}
.hero-cell--photo-small{ grid-column:8 / 13; grid-row:7 / 11; }
.hero-cell--photo-small img{ width:100%; height:100%; object-fit:cover; }
.hero-eyebrow{
  color:var(--sage-pale);
  font-size:.7rem; font-weight:600; text-transform:uppercase; letter-spacing:.26em;
  margin-bottom:18px;
  display:inline-flex; align-items:center; gap:10px;
}
.hero-eyebrow::before{ content:""; width:22px; height:1px; background:var(--sage-pale); }
.hero-headline{
  font-size:clamp(2.1rem, 3.6vw, 3.4rem);
  color:var(--cream-soft);
  margin-bottom:20px;
}
.hero-headline .word{ display:inline-block; overflow:hidden; }
.hero-headline .word span{ display:inline-block; }
.hero-sub{
  font-size:1.02rem; line-height:1.6;
  color:var(--sage-pale);
  max-width:38ch;
  margin-bottom:30px;
}
.hero-ctas{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:34px; }
.trust-row{ display:flex; flex-direction:column; gap:11px; }
.trust-item{ display:flex; align-items:flex-start; gap:10px; font-size:.85rem; color:var(--cream-soft); }
.trust-item svg{ flex:0 0 auto; margin-top:2px; color:var(--sage); }

@media (max-width:980px){
  .hero-grid{ grid-template-columns:1fr; min-height:auto; }
  .hero-cell--photo-main{ grid-column:1; grid-row:auto; height:56vh; }
  .hero-cell--text{ grid-column:1; grid-row:auto; padding:52px 24px 36px; }
  .hero-cell--photo-small{ grid-column:1; grid-row:auto; height:180px; }
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee{
  background:var(--sage-deep);
  color:var(--cream-soft);
  overflow:hidden;
  padding:14px 0;
  border-top:1px solid rgba(246,239,227,.15);
  border-bottom:1px solid rgba(246,239,227,.15);
}
.marquee-track{
  display:flex; width:max-content;
  animation:marquee 38s linear infinite;
}
.marquee-track span{
  font-family:"Source Serif 4", serif;
  font-style:italic;
  font-size:1.02rem;
  white-space:nowrap;
  padding:0 28px;
  opacity:.92;
}
.marquee-track span::after{ content:"—"; margin-left:28px; opacity:.55; font-style:normal; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ==========================================================================
   Sections generic
   ========================================================================== */
.section{ padding:100px 0; }
.section--tight{ padding:80px 0; }
.section--cream{ background:var(--cream); }
.section--soft{ background:var(--cream-soft); }
.section--espresso{ background:var(--espresso-deep); color:var(--cream); }
.section-head{ max-width:640px; margin-bottom:56px; }
.section-head h2{ font-size:clamp(1.9rem,2.6vw,2.6rem); margin-top:14px; }
.section-head p{ margin-top:16px; font-size:1.02rem; color:var(--espresso-soft); max-width:56ch; }
.section--espresso .section-head p{ color:var(--sage-pale); }

/* ==========================================================================
   Section entry — sequential rule-draw then content fade
   (this site's section-transition signature: a short rule draws first, then
   the heading/copy rise in behind it, rather than one flat block-level fade —
   distinct from the hero's duotone bloom and the closing CTA's rising fill)
   ========================================================================== */
.section-head, .enquiry-side, .page-hero-inner{ position:relative; padding-top:26px; }
.section-head::before, .enquiry-side::before, .page-hero-inner::before{
  content:"";
  position:absolute; top:0; left:0;
  width:56px; height:2px;
  background:var(--sage-deep);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .85s var(--ease);
}
.page-hero-inner::before{ background:var(--sage-pale); }
.section-head.is-revealed::before,
.enquiry-side.is-revealed::before,
.page-hero-inner.is-revealed::before{ transform:scaleX(1); }

/* the block itself no longer fades as one flat unit — the rule leads, then
   each direct child (eyebrow, heading, copy...) rises in behind it */
.section-head[data-reveal], .enquiry-side[data-reveal],
.section-head[data-reveal].is-revealed, .enquiry-side[data-reveal].is-revealed{
  opacity:1; transform:none;
}
.section-head > *, .enquiry-side > *, .page-hero-inner > *{
  opacity:0; transform:translateY(16px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}
.section-head > *:nth-child(1), .enquiry-side > *:nth-child(1), .page-hero-inner > *:nth-child(1){ transition-delay:.3s; }
.section-head > *:nth-child(2), .enquiry-side > *:nth-child(2), .page-hero-inner > *:nth-child(2){ transition-delay:.38s; }
.section-head > *:nth-child(3), .enquiry-side > *:nth-child(3), .page-hero-inner > *:nth-child(3){ transition-delay:.46s; }
.section-head > *:nth-child(4), .enquiry-side > *:nth-child(4), .page-hero-inner > *:nth-child(4){ transition-delay:.54s; }
.section-head.is-revealed > *, .enquiry-side.is-revealed > *, .page-hero-inner.is-revealed > *{
  opacity:1; transform:translateY(0);
}

/* ==========================================================================
   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-soft);
  padding:34px 28px 30px;
  display:flex; flex-direction:column; gap:14px;
  transition:background .3s var(--ease), transform .3s var(--ease);
}
.product-card:hover{ background:var(--sage-pale); }
.product-media{
  width:100%; aspect-ratio:4/3; overflow:hidden; border-radius:2px;
  background:var(--cream-line);
}
.product-media img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .5s var(--ease);
}
.product-card:hover .product-media img{ transform:scale(1.05); }
.product-name{ font-family:"Source Serif 4", serif; font-size:1.14rem; font-weight:600; color:var(--espresso-deep); }
.product-benefit{ font-size:.9rem; line-height:1.55; color:var(--espresso-soft); flex-grow:1; }
.product-link{
  font-size:.82rem; font-weight:600; letter-spacing:.02em;
  color:var(--sage-deep); display:inline-flex; align-items:center; gap:6px;
}
.product-link svg{ transition:transform .25s var(--ease); }
.product-card:hover .product-link svg{ transform:translateX(4px); }

/* CTA variant — Blind Repairs card: same structure, a quiet accent lift */
.product-card--repairs{
  background:var(--sage-pale);
  border-left:3px solid var(--sage-deep);
  padding-left:25px;
}
.product-card--repairs:hover{ background:var(--cream-line); }

@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-grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:20px;
  align-items:start;
}
.editorial-item{ position:relative; overflow:hidden; }
.editorial-item img{ width:100%; height:100%; object-fit:cover; }
.editorial-item--a{ grid-column:1 / 8; grid-row:1 / 3; aspect-ratio:16/11; }
.editorial-item--b{ grid-column:8 / 13; grid-row:1 / 2; aspect-ratio:4/5; margin-top:64px; }
.editorial-item--c{ grid-column:8 / 13; grid-row:2 / 3; aspect-ratio:4/3; }
.editorial-caption{
  position:absolute; left:0; right:0; bottom:0;
  padding:20px 22px;
  background:linear-gradient(0deg, rgba(36,24,16,.82), transparent);
  color:var(--cream-soft);
  font-size:.88rem; line-height:1.5;
}
@media (max-width:900px){
  .editorial-grid{ grid-template-columns:1fr; gap:18px; }
  .editorial-item--a, .editorial-item--b, .editorial-item--c{ grid-column:1; margin-top:0; aspect-ratio:4/3; }
}

/* ==========================================================================
   Locale storytelling
   ========================================================================== */
.locale-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:70px; align-items:center; }
.locale-text p + p{ margin-top:18px; }
.locale-text p{ color:var(--sage-pale); font-size:1.01rem; }
.locale-facts{ display:flex; flex-direction:column; gap:0; margin-top:8px; }
.fact-item{ display:flex; gap:20px; padding:20px 0; border-top:1px solid rgba(246,239,227,.16); }
.fact-item:last-child{ border-bottom:1px solid rgba(246,239,227,.16); }
.fact-num{ font-family:"Source Serif 4", serif; font-size:1.6rem; color:var(--sage); flex:0 0 46px; }
.fact-body h3{ color:var(--cream-soft); font-size:1.02rem; font-weight:600; margin-bottom:6px; }
.fact-body p{ color:var(--sage-pale); font-size:.92rem; }
@media (max-width:900px){ .locale-grid{ grid-template-columns:1fr; gap:40px; } }

/* ==========================================================================
   Process
   ========================================================================== */
.process-list{ display:grid; grid-template-columns:repeat(4,1fr); gap:36px; margin-top:10px; }
.process-item{ padding-top:26px; border-top:1px solid var(--line); }
.process-num{ font-family:"Source Serif 4", serif; font-size:2.1rem; color:var(--sage-deep); display:block; margin-bottom:14px; }
.process-item h3{ font-size:1.08rem; margin-bottom:10px; }
.process-item p{ font-size:.9rem; color:var(--espresso-soft); }
@media (max-width:900px){ .process-list{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .process-list{ grid-template-columns:1fr; } }

/* ==========================================================================
   Area chips
   ========================================================================== */
.areas-chips{ display:flex; flex-wrap:wrap; gap:14px; margin-top:10px; }
.chip{
  padding:14px 24px;
  border:1px solid var(--line);
  border-radius:2px;
  font-size:.92rem; font-weight:600; color:var(--espresso);
  display:inline-flex; align-items:center; gap:10px;
  transition:border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.chip:hover{ background:var(--espresso-deep); border-color:var(--espresso-deep); color:var(--cream); }
.chip svg{ color:var(--sage-deep); transition:color .25s var(--ease); }
.chip:hover svg{ color:var(--sage-pale); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list{ border-top:1px solid var(--line); }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-item summary{
  list-style:none;
  cursor:pointer;
  display:flex; align-items:center; justify-content:space-between;
  gap:20px;
  padding:26px 4px;
  font-family:"Source Serif 4", serif;
  font-size:1.14rem; font-weight:600;
  color:var(--espresso-deep);
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-icon{ position:relative; width:20px; height:20px; flex:0 0 auto; }
.faq-icon::before, .faq-icon::after{
  content:""; position:absolute; background:var(--sage-deep);
  transition:transform .3s var(--ease);
}
.faq-icon::before{ left:0; top:9px; width:20px; height:2px; }
.faq-icon::after{ left:9px; top:0; width:2px; height:20px; }
.faq-item[open] .faq-icon::after{ transform:rotate(90deg) scaleY(0); }
.faq-answer{ padding:0 4px 28px; max-width:66ch; color:var(--espresso-soft); font-size:.96rem; }

/* ==========================================================================
   Closing CTA — animated drifting glow
   ========================================================================== */
.cta-close{
  position:relative; overflow:hidden;
  background:var(--espresso-deep);
  color:var(--cream-soft);
  padding:120px 0;
  text-align:center;
}
.cta-bg{ position:absolute; inset:0; z-index:0; }
.cta-blob{
  position:absolute; border-radius:50%; filter:blur(70px); opacity:.5;
}
.cta-blob--1{ width:520px; height:520px; background:var(--sage-deep); top:-160px; left:-120px; animation:drift1 22s ease-in-out infinite alternate; }
.cta-blob--2{ width:460px; height:460px; background:var(--espresso-soft); bottom:-180px; right:-100px; animation:drift2 26s ease-in-out infinite alternate; }
@keyframes drift1{ from{ transform:translate(0,0) scale(1);} to{ transform:translate(80px,60px) scale(1.15);} }
@keyframes drift2{ from{ transform:translate(0,0) scale(1);} to{ transform:translate(-70px,-50px) scale(1.1);} }
.cta-inner{ position:relative; z-index:1; max-width:680px; margin:0 auto; }
.cta-inner .eyebrow{ color:var(--sage-pale); justify-content:center; }
.cta-inner .eyebrow::before{ background:var(--sage-pale); }
.cta-inner h2{ color:var(--cream-soft); font-size:clamp(2rem,3.4vw,3rem); margin:18px 0 20px; }
.cta-inner p{ color:var(--sage-pale); max-width:52ch; margin:0 auto 34px; }
.cta-inner .hero-ctas{ justify-content:center; margin-bottom:0; }

/* ==========================================================================
   Enquiry form
   ========================================================================== */
.enquiry-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:64px; }
.enquiry-side p{ color:var(--espresso-soft); margin-top:16px; }
.enquiry-side .fact-item{ border-color:var(--line); }
.enquiry-side .fact-body h3{ color:var(--espresso-deep); }
.enquiry-side .fact-body p{ color:var(--espresso-soft); }
.enquiry-side .fact-num{ color:var(--sage-deep); }
form#enquiry-form{ background:var(--cream-soft); border:1px solid var(--line); padding:40px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ margin-bottom:18px; display:flex; flex-direction:column; gap:8px; }
.field label{ font-size:.82rem; font-weight:600; letter-spacing:.02em; color:var(--espresso); }
.field input, .field select, .field textarea{
  font-family:inherit; font-size:.96rem;
  padding:13px 14px;
  border:1px solid var(--cream-line);
  background:#fff;
  color:var(--ink);
  border-radius:2px;
  transition:border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color:var(--sage-deep);
  box-shadow:0 0 0 3px rgba(126,146,112,.18);
  outline:none;
}
.field textarea{ resize:vertical; min-height:100px; }
.popia-note{ font-size:.8rem; color:var(--espresso-soft); line-height:1.55; margin:18px 0 22px; padding:14px 16px; background:var(--sage-pale); border-radius:2px; }
.form-success{
  display:none; text-align:center; padding:40px 20px;
}
.form-success.is-visible{ display:block; }
.form-success svg{ color:var(--sage-deep); margin:0 auto 16px; }
.form-success h3{ font-size:1.3rem; margin-bottom:10px; }
.form-success p{ color:var(--espresso-soft); }
@media (max-width:900px){ .enquiry-grid{ grid-template-columns:1fr; gap:40px; } form#enquiry-form{ padding:26px; } .form-row{ grid-template-columns:1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */
footer{ background:var(--espresso-deep); color:var(--sage-pale); padding:64px 0 34px; }
.footer-top{ display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; padding-bottom:40px; border-bottom:1px solid rgba(246,239,227,.14); }
.footer-brand{ display:flex; align-items:center; gap:12px; }
.footer-brand .logo-word{ color:var(--cream-soft); }
.footer-statement{ max-width:34ch; font-size:.92rem; }
.footer-links{ display:flex; gap:48px; flex-wrap:wrap; }
.footer-col h4{ font-size:.74rem; text-transform:uppercase; letter-spacing:.2em; color:var(--sage); margin-bottom:14px; }
.footer-col a{ display:block; font-size:.9rem; padding:5px 0; color:var(--sage-pale); transition:color .25s; }
.footer-col a:hover{ color:var(--cream-soft); }
.footer-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; padding-top:26px; font-size:.78rem; color:var(--espresso-soft); }

/* ==========================================================================
   Page hero (inner pages: products / areas)
   ========================================================================== */
.page-hero{ position:relative; padding:180px 0 90px; background:var(--espresso-deep); color:var(--cream); overflow:hidden; }
.page-hero-photo{ position:absolute; inset:0; }
.page-hero-photo img{ width:100%; height:100%; object-fit:cover; opacity:.34; }
.page-hero-inner{ position:relative; max-width:760px; }
.page-hero .eyebrow{ color:var(--sage-pale); }
.page-hero .eyebrow::before{ background:var(--sage-pale); }
.page-hero h1{ color:var(--cream-soft); font-size:clamp(2rem,3.4vw,3rem); margin-top:16px; }
.page-hero p{ color:var(--sage-pale); margin-top:18px; max-width:58ch; font-size:1.02rem; }
.breadcrumb{ font-size:.78rem; letter-spacing:.05em; color:var(--sage-pale); margin-bottom:20px; }
.breadcrumb a{ text-decoration:underline; text-underline-offset:3px; }
.breadcrumb a:hover{ color:var(--cream-soft); }

.content-block{ max-width:760px; }
.content-block h2{ font-size:1.7rem; margin:44px 0 16px; }
.content-block h2:first-child{ margin-top:0; }
.content-block p{ margin-bottom:16px; color:var(--espresso-soft); font-size:1.02rem; }
.content-block ul{ margin:0 0 20px; display:flex; flex-direction:column; gap:10px; }
.content-block ul li{ padding-left:22px; position:relative; color:var(--espresso-soft); }
.content-block ul li::before{ content:""; position:absolute; left:0; top:11px; width:8px; height:1px; background:var(--sage-deep); }
.two-col{ display:grid; grid-template-columns:1.2fr .8fr; gap:60px; }
.side-card{ background:var(--cream); border:1px solid var(--line); padding:30px; align-self:start; position:sticky; top:110px; }
.side-card h3{ font-size:1.1rem; margin-bottom:14px; }
.side-card p{ font-size:.9rem; color:var(--espresso-soft); margin-bottom:18px; }
@media (max-width:900px){ .two-col{ grid-template-columns:1fr; } .side-card{ position:static; } }

/* Fade/rise scroll reveal */
[data-reveal]{ opacity:0; transform:translateY(28px); }
[data-reveal].is-revealed{ opacity:1; transform:translateY(0); transition:opacity .9s var(--ease), transform .9s var(--ease); }

/* ==========================================================================
   Chat widget
   ========================================================================== */
.chat-toggle{
  position:fixed; right:26px; bottom:26px; z-index:1000;
  width:60px; height:60px; border-radius:50%;
  background:var(--sage-deep); color:var(--cream-soft);
  display:flex; align-items:center; justify-content:center;
  border:none; box-shadow:0 12px 30px rgba(36,24,16,.28);
  transition:transform .3s var(--ease), background .3s var(--ease);
}
.chat-toggle:hover{ transform:scale(1.06); background:var(--espresso-deep); }
.chat-toggle svg{ width:26px; height:26px; }
.chat-toggle .icon-close{ display:none; }
.chat-toggle.is-open .icon-chat{ display:none; }
.chat-toggle.is-open .icon-close{ display:block; }

.chat-panel{
  position:fixed; right:26px; bottom:98px; z-index:1000;
  width:360px; max-width:calc(100vw - 40px);
  max-height:min(560px, 70vh);
  background:var(--cream-soft);
  border:1px solid var(--line);
  border-radius:8px;
  box-shadow:0 26px 60px rgba(36,24,16,.3);
  display:flex; flex-direction:column;
  opacity:0; transform:translateY(16px) scale(.98);
  pointer-events:none;
  transition:opacity .28s var(--ease), transform .28s var(--ease);
  overflow:hidden;
}
.chat-panel.is-open{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
.chat-header{ background:var(--espresso-deep); color:var(--cream-soft); padding:18px 20px; }
.chat-header strong{ display:block; font-family:"Source Serif 4",serif; font-size:1.05rem; }
.chat-header span{ font-size:.78rem; color:var(--sage-pale); }
.chat-body{ flex:1; overflow-y:auto; padding:18px 16px; display:flex; flex-direction:column; gap:12px; }
.chat-msg{ max-width:86%; padding:11px 14px; border-radius:10px; font-size:.88rem; line-height:1.5; }
.chat-msg--bot{ background:var(--sage-pale); color:var(--espresso-deep); align-self:flex-start; border-bottom-left-radius:2px; }
.chat-msg--user{ background:var(--espresso-deep); color:var(--cream-soft); align-self:flex-end; border-bottom-right-radius:2px; }
.chat-popia{ font-size:.72rem; color:var(--espresso-soft); background:var(--cream); border:1px solid var(--line); padding:10px 12px; border-radius:6px; align-self:flex-start; }
.chat-chips{ display:flex; flex-wrap:wrap; gap:8px; padding:0 16px 14px; }
.chat-chip{
  border:1px solid var(--sage-deep); color:var(--sage-deep);
  background:transparent; padding:8px 14px; border-radius:20px;
  font-size:.8rem; font-weight:600; transition:background .2s, color .2s;
}
.chat-chip:hover{ background:var(--sage-deep); color:var(--cream-soft); }
.chat-form{ display:none; flex-direction:column; gap:8px; padding:14px 16px; border-top:1px solid var(--line); background:var(--cream); }
.chat-form.is-visible{ display:flex; }
.chat-form input{ padding:10px 12px; border:1px solid var(--cream-line); border-radius:6px; font-size:.88rem; font-family:inherit; }
.chat-form input:focus{ outline:2px solid var(--sage-deep); border-color:var(--sage-deep); }
.chat-input-row{ display:flex; gap:8px; padding:12px 16px 16px; border-top:1px solid var(--line); }
.chat-input-row input{ flex:1; padding:10px 12px; border:1px solid var(--cream-line); border-radius:20px; font-size:.86rem; font-family:inherit; }
.chat-input-row button{ background:var(--sage-deep); color:#fff; border:none; width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex:0 0 auto; }

@media (max-width:480px){
  .chat-panel{ right:16px; left:16px; width:auto; bottom:92px; }
  .chat-toggle{ right:16px; bottom:16px; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
    transition-delay:0s !important;
    scroll-behavior:auto !important;
  }
  html{ scroll-behavior:auto; }
  .marquee-track{ animation:none; }
  .cta-blob{ animation:none; }
  [data-reveal]{ opacity:1; transform:none; }
  .hero-cell--photo-main img{ transform:none; }
  .hero-cell--photo-main img, .hero-cell--photo-small img{ filter:none !important; }
  .locale-text p, .fact-item{ opacity:1 !important; transform:none !important; }
  .section-head::before, .enquiry-side::before, .page-hero-inner::before{ transform:scaleX(1) !important; }
  .section-head > *, .enquiry-side > *, .page-hero-inner > *{ opacity:1 !important; transform:none !important; }
  .cta-close{ clip-path:none !important; -webkit-clip-path:none !important; }
  .btn--primary:hover::after{ transform:translateY(-50%) rotate(45deg); }
}

/* 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 Almanac (guide.html) + the ballpark window list
   Uses only the tokens declared at the top of this file. No new colours.
   ========================================================================== */

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}
.u-container--mid{ max-width:980px; }

/* ---------- Almanac hero: the homepage's mosaic idea, re-cut ---------- */
.guide-hero{ position:relative; background:var(--espresso-deep); }
.guide-hero-grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  grid-auto-rows:minmax(0,1fr);
  min-height:min(86vh,820px);
  gap:2px;
}
.guide-hero-cell{ position:relative; overflow:hidden; }
.guide-hero-cell--photo{ grid-column:1 / 7; grid-row:1 / 9; }
.guide-hero-cell--photo img{ width:100%; height:100%; object-fit:cover; }
.guide-hero-scrim{
  position:absolute; inset:0;
  background:linear-gradient(200deg, rgba(36,24,16,.06) 34%, rgba(36,24,16,.52) 100%);
}
.guide-hero-cell--text{
  grid-column:7 / 13; grid-row:1 / 7;
  background:var(--espresso-deep);
  color:var(--cream);
  display:flex; flex-direction:column; justify-content:center;
  padding:70px 46px 34px;
}
.guide-hero-cell--strip{
  grid-column:7 / 13; grid-row:7 / 9;
  background:var(--sage-deep);
  color:var(--cream-soft);
  display:flex; align-items:center;
  padding:22px 46px;
}
.guide-hero h1{
  font-size:clamp(2rem,3.5vw,3.15rem);
  color:var(--cream-soft);
  margin:16px 0 18px;
}
.guide-hero .guide-lead{
  font-size:1.03rem; line-height:1.62; color:var(--sage-pale);
  max-width:44ch; margin-bottom:28px;
}
.guide-hero .breadcrumb{ margin-bottom:0; }
.guide-strip-list{ display:flex; flex-wrap:wrap; gap:10px 26px; }
.guide-strip-list li{
  display:flex; align-items:flex-start; gap:9px;
  font-size:.83rem; line-height:1.45; color:var(--cream-soft);
}
.guide-strip-list svg{ flex:0 0 auto; margin-top:3px; color:var(--sage-pale); }

@media (max-width:980px){
  .guide-hero-grid{ grid-template-columns:1fr; min-height:auto; }
  .guide-hero-cell--photo{ grid-column:1; grid-row:auto; height:46vh; min-height:280px; }
  .guide-hero-cell--text{ grid-column:1; grid-row:auto; padding:54px 24px 32px; }
  .guide-hero-cell--strip{ grid-column:1; grid-row:auto; padding:20px 24px; }
}

/* ---------- Reading rhythm inside the Almanac ---------- */
.prose-narrow{ max-width:66ch; }
.prose-narrow p{ font-size:1.04rem; color:var(--espresso-soft); }
.prose-narrow p + p{ margin-top:18px; }
.section--espresso .prose-narrow p{ color:var(--sage-pale); }
.prose-narrow em{ font-style:italic; }

/* numbered fact rows, reusing .fact-item's grammar on light backgrounds */
.almanac-list{ display:flex; flex-direction:column; counter-reset:almanac; }
.almanac-list li{
  display:flex; gap:22px; padding:24px 0;
  border-top:1px solid var(--line);
  counter-increment:almanac;
}
.almanac-list li:last-child{ border-bottom:1px solid var(--line); }
.almanac-list li::before{
  content:counter(almanac,decimal-leading-zero);
  font-family:"Source Serif 4",serif; font-size:1.5rem; line-height:1.2;
  color:var(--sage-deep); flex:0 0 46px;
}
.almanac-list h3{ font-size:1.06rem; margin-bottom:7px; }
.almanac-list p{ font-size:.95rem; color:var(--espresso-soft); max-width:62ch; }
.section--espresso .almanac-list li{ border-color:rgba(246,239,227,.16); }
.section--espresso .almanac-list li::before{ color:var(--sage); }
.section--espresso .almanac-list h3{ color:var(--cream-soft); }
.section--espresso .almanac-list p{ color:var(--sage-pale); }

/* ---------- Full-bleed photo band between chapters ---------- */
.guide-band{ position:relative; min-height:52vh; display:flex; align-items:flex-end; overflow:hidden; }
.guide-band img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.guide-band-scrim{
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(36,24,16,.86) 4%, rgba(36,24,16,.18) 62%, rgba(36,24,16,.34) 100%);
}
.guide-band-copy{ position:relative; z-index:1; padding:54px 0; color:var(--cream-soft); }
.guide-band-copy h2{ color:var(--cream-soft); font-size:clamp(1.5rem,2.7vw,2.2rem); }
.guide-band-copy p{ color:var(--sage-pale); margin-top:12px; max-width:56ch; font-size:1rem; }

/* ---------- Product recommendation cards ---------- */
.recs{ display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
.rec{ background:var(--cream-soft); padding:32px 30px 30px; display:flex; flex-direction:column; gap:12px; }
.rec--wide{ grid-column:1 / -1; display:grid; grid-template-columns:.85fr 1.15fr; gap:0; padding:0; }
.rec--wide .rec-photo{ margin:0; height:100%; min-height:260px; }
.rec--wide .rec-photo img{ width:100%; height:100%; object-fit:cover; }
.rec--wide .rec-body{ padding:32px 30px 30px; display:flex; flex-direction:column; gap:12px; }
.rec h3{ font-size:1.18rem; }
.rec-where{
  font-size:.72rem; font-weight:600; text-transform:uppercase; letter-spacing:.16em;
  color:var(--sage-deep);
}
.rec p{ font-size:.94rem; line-height:1.62; color:var(--espresso-soft); }
.rec p strong{ color:var(--espresso-deep); font-weight:600; }
.rec-catch{
  border-left:2px solid var(--sage-deep);
  padding:2px 0 2px 15px;
}
.rec-btns{ display:flex; flex-wrap:wrap; gap:10px; margin-top:auto; padding-top:6px; }
.rec-add{
  border:1px solid var(--sage-deep); background:transparent; color:var(--sage-deep);
  font-size:.8rem; font-weight:600; letter-spacing:.02em;
  padding:10px 18px; border-radius:2px;
  transition:background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.rec-add:hover{ background:var(--sage-deep); color:var(--cream-soft); }
.rec-add.is-added{ background:var(--sage-pale); border-color:var(--sage-pale); color:var(--espresso-deep); cursor:default; }
.rec-add[disabled]{ opacity:1; }
@media (max-width:900px){
  .recs{ grid-template-columns:1fr; }
  .rec--wide{ grid-template-columns:1fr; }
  .rec--wide .rec-photo{ min-height:220px; aspect-ratio:16/10; }
}

/* ---------- The two ways forward ---------- */
.ways{ display:grid; grid-template-columns:1.25fr .75fr; gap:26px; align-items:stretch; }
.way{ padding:36px 32px; display:flex; flex-direction:column; gap:14px; }
.way-main{ background:var(--espresso-deep); color:var(--cream-soft); }
.way-main h3{ color:var(--cream-soft); font-size:1.5rem; }
.way-main p{ color:var(--sage-pale); font-size:.98rem; }
.way-alt{ background:var(--cream-soft); border:1px solid var(--line); }
.way-alt h3{ font-size:1.16rem; }
.way-alt p{ color:var(--espresso-soft); font-size:.92rem; }
.way-tag{
  font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.22em;
}
.way-main .way-tag{ color:var(--sage-pale); }
.way-alt .way-tag{ color:var(--sage-deep); }
.way .btn{ margin-top:auto; align-self:flex-start; }
@media (max-width:820px){ .ways{ grid-template-columns:1fr; } }

/* ---------- Capture forms on the Almanac ---------- */
.lead-form{ background:var(--cream-soft); border:1px solid var(--line); padding:38px; }
.lead-form.is-sent{ display:none; }
.mini-cap{ display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:start; }
.mini-cap h2{ font-size:clamp(1.5rem,2.3vw,2rem); margin:12px 0 14px; }
.mini-cap p{ color:var(--espresso-soft); }
@media (max-width:820px){ .mini-cap{ grid-template-columns:1fr; gap:28px; } .lead-form{ padding:26px; } }

.f-grid{ display:grid; grid-template-columns:1fr 1fr; gap:0 18px; }
@media (max-width:640px){ .f-grid{ grid-template-columns:1fr; } }

.chk-set{ border:none; margin:6px 0 18px; padding:0; }
.chk-set legend{
  font-size:.82rem; font-weight:600; letter-spacing:.02em; color:var(--espresso);
  padding:0; margin-bottom:12px;
}
.chk-set legend .opt{ font-weight:400; color:var(--espresso-soft); }
.chk-grid{ display:grid; grid-template-columns:1fr 1fr; gap:8px 16px; }
@media (max-width:640px){ .chk-grid{ grid-template-columns:1fr; } }
.chk{ display:flex; align-items:flex-start; gap:9px; font-size:.9rem; color:var(--espresso-soft); cursor:pointer; }
.chk input{ margin-top:4px; accent-color:var(--sage-deep); flex:0 0 auto; }
.chk input:checked + span{ color:var(--espresso-deep); font-weight:600; }

.carry-note{
  font-size:.84rem; line-height:1.5; color:var(--espresso-deep);
  background:var(--sage-pale); border-radius:2px;
  padding:11px 14px; margin-top:10px;
}

.lead-thanks{
  background:var(--cream-soft); border:1px solid var(--line);
  border-left:3px solid var(--sage-deep);
  padding:34px 32px;
}
.lead-thanks h3{ font-size:1.35rem; margin-bottom:12px; }
.lead-thanks p{ color:var(--espresso-soft); font-size:.98rem; }
.lead-thanks p + p{ margin-top:12px; }
.lead-thanks a{ color:var(--sage-deep); font-weight:600; text-decoration:underline; text-underline-offset:3px; }

/* ---------- Rung 2: the ballpark window list ---------- */
.ballpark{
  border:1px dashed var(--cream-line);
  border-radius:2px;
  background:var(--cream);
  margin:6px 0 22px;
}
.ballpark > summary{
  list-style:none; cursor:pointer;
  padding:16px 18px;
  font-size:.9rem; font-weight:600; color:var(--espresso);
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.ballpark > summary::-webkit-details-marker{ display:none; }
.ballpark .ind{
  width:18px; height:18px; flex:0 0 auto; position:relative;
  display:inline-block;
}
.ballpark .ind::before, .ballpark .ind::after{
  content:""; position:absolute; background:var(--sage-deep); transition:transform .3s var(--ease);
}
.ballpark .ind::before{ left:0; top:8px; width:18px; height:2px; }
.ballpark .ind::after{ left:8px; top:0; width:2px; height:18px; }
.ballpark[open] .ind::after{ transform:rotate(90deg) scaleY(0); }
.bp-inner{ padding:0 18px 20px; }
.bp-note{ font-size:.86rem; line-height:1.6; color:var(--espresso-soft); margin-bottom:16px; max-width:70ch; }
.bp-scroll{ overflow-x:auto; }
.bp-table{ width:100%; border-collapse:collapse; min-width:640px; }
.bp-table th{
  text-align:left; font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.14em;
  color:var(--espresso-soft); padding:0 8px 8px 0; border-bottom:1px solid var(--cream-line);
}
.bp-table td{ padding:7px 8px 7px 0; vertical-align:top; }
.bp-table input, .bp-table select{
  width:100%; font-family:inherit; font-size:.88rem;
  padding:9px 10px; border:1px solid var(--cream-line); background:#fff; color:var(--ink);
  border-radius:2px;
}
.bp-table input:focus, .bp-table select:focus{
  border-color:var(--sage-deep); box-shadow:0 0 0 3px rgba(126,146,112,.18); outline:none;
}
.bp-rm{ width:38px; }
.bp-remove{
  width:30px; height:34px; line-height:1;
  border:1px solid var(--cream-line); background:#fff; color:var(--espresso-soft);
  border-radius:2px; font-size:1.05rem;
  transition:border-color .2s var(--ease), color .2s var(--ease);
}
.bp-remove:hover{ border-color:var(--espresso); color:var(--espresso-deep); }
.bp-actions{ display:flex; flex-wrap:wrap; align-items:center; gap:12px; margin-top:16px; }
.bp-actions .btn{ padding:11px 20px; font-size:.82rem; }
.bp-count{ font-size:.84rem; color:var(--espresso-soft); }
.bp-print-head{ display:none; }

@media (max-width:640px){
  .bp-table{ min-width:0; }
  .bp-table thead{ display:none; }
  .bp-table tbody{ display:block; }
  .bp-row{
    display:block; background:var(--cream-soft);
    border:1px solid var(--cream-line); border-radius:2px;
    padding:12px 12px 6px; margin-bottom:12px; position:relative;
  }
  .bp-table td{ display:block; padding:0 0 10px; }
  .bp-table td[data-lbl]::before{
    content:attr(data-lbl);
    display:block; font-size:.68rem; font-weight:700; text-transform:uppercase;
    letter-spacing:.14em; color:var(--espresso-soft); margin-bottom:5px;
  }
  .bp-rm{ width:auto; position:absolute; top:8px; right:8px; padding:0; }
  .bp-rm::before{ display:none; }
}

/* Print: the walk-the-house sheet only */
@media print{
  body.bp-printing .site-nav,
  body.bp-printing footer,
  body.bp-printing .chat-toggle,
  body.bp-printing .chat-panel,
  body.bp-printing .guide-hero,
  body.bp-printing .guide-band,
  body.bp-printing section:not(#close),
  body.bp-printing #close .section-head,
  body.bp-printing #close .f-grid,
  body.bp-printing #close .chk-set,
  body.bp-printing #close .field,
  body.bp-printing #close .f-row,
  body.bp-printing #close .popia-note,
  body.bp-printing #close button,
  body.bp-printing #close .bp-note,
  body.bp-printing #close .bp-actions,
  body.bp-printing .ballpark > summary{ display:none !important; }
  body.bp-printing .ballpark{ border:none; background:#fff; }
  body.bp-printing .bp-inner{ padding:0; }
  body.bp-printing .bp-print-head{ display:block; margin-bottom:18px; }
  body.bp-printing .bp-print-head h2{ font-size:1.4rem; margin-bottom:8px; }
  body.bp-printing .bp-print-head p{ font-size:.86rem; max-width:none; }
  body.bp-printing .bp-table{ min-width:0; }
  body.bp-printing .bp-table input, body.bp-printing .bp-table select{ border:none; border-bottom:1px solid #999; border-radius:0; }
  body.bp-printing .bp-rm{ display:none; }
  body.bp-printing .lead-form{ border:none; padding:0; }
  body.bp-printing .bp-count{ display:none; }
}

/* ---------- Sources ---------- */
.sources-list{ display:flex; flex-direction:column; gap:12px; }
.sources-list li{
  font-size:.9rem; line-height:1.55; color:var(--espresso-soft);
  padding-left:20px; position:relative;
}
.sources-list li::before{
  content:""; position:absolute; left:0; top:10px;
  width:9px; height:1px; background:var(--sage-deep);
}
.sources-list a{ color:var(--espresso-deep); text-decoration:underline; text-underline-offset:3px; }
.sources-list a:hover{ color:var(--sage-deep); }

/* ---------- Guide promo block on other pages ---------- */
.guide-promo{
  display:grid; grid-template-columns:.9fr 1.1fr; gap:0;
  border:1px solid var(--line); background:var(--cream-soft);
}
.guide-promo-photo{ position:relative; min-height:250px; overflow:hidden; }
.guide-promo-photo img{ width:100%; height:100%; object-fit:cover; }
.guide-promo-body{ padding:44px 40px; display:flex; flex-direction:column; justify-content:center; gap:14px; }
.guide-promo-body h2{ font-size:clamp(1.5rem,2.3vw,2rem); }
.guide-promo-body p{ color:var(--espresso-soft); font-size:1rem; max-width:52ch; }
.guide-promo-body .btn{ align-self:flex-start; margin-top:6px; }
.guide-promo-meta{
  font-size:.74rem; font-weight:600; text-transform:uppercase; letter-spacing:.2em;
  color:var(--sage-deep);
}
@media (max-width:820px){
  .guide-promo{ grid-template-columns:1fr; }
  .guide-promo-photo{ min-height:200px; aspect-ratio:16/9; }
  .guide-promo-body{ padding:30px 24px; }
}
