/* ==========================================================================
   Waverley Blinds — stylesheet
   Theme: family-suburb · warm bone + charcoal + old brass (#A98F55) · Zilla Slab + Assistant
   NOTE: token names are legacy (--clay/--pine/--limestone) but their VALUES now
   carry the assigned palette — --clay holds old brass, --clay-dark deep brass,
   --pine warm charcoal, --limestone warm bone. Renaming would touch every page
   for zero rendered difference, so the names stay and this comment is the map.
   ========================================================================== */

:root {
  --clay: #A98F55;
  --clay-dark: #75643C;
  --clay-tint: #E7DBB8;
  --limestone: #f4eee0;
  --limestone-deep: #EAE2CF;
  --pine: #2B2823;
  --pine-deep: #1B1915;
  --ink: #2b241d;
  --ink-soft: #5c5245;
  --white: #ffffff;
  --line: rgba(43, 40, 35, 0.14);
  --shadow: 0 24px 60px -32px rgba(27, 25, 21, 0.45);
  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --section-pad: 6.5rem;
  --ff-display: "Zilla Slab", Georgia, serif;
  --ff-body: "Assistant", "Segoe UI", sans-serif;
}

@media (max-width: 720px) {
  :root { --section-pad: 3.75rem; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--limestone);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--pine);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  font-weight: 600;
}
p { max-width: 62ch; margin: 0 0 1em; }
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

:focus-visible {
  outline: 2.5px solid var(--clay);
  outline-offset: 3px;
  border-radius: 4px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--clay-dark);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--clay);
  display: inline-block;
}
.rule-draw {
  width: 64px; height: 2px; background: var(--clay);
  transform-origin: left; transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1) 0.1s;
  margin-bottom: 1.3rem;
}
.reveal.is-visible .rule-draw { transform: scaleX(1); }

.section { padding: var(--section-pad) 0; }
.section-deep { background: var(--limestone-deep); }
.section-pine { background: var(--pine); color: var(--limestone); }
.section-pine h2, .section-pine h3 { color: var(--limestone); }

.section-head { max-width: 720px; margin-bottom: 2.75rem; }
.section-head h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); margin-top: 0.6em; }
.section-head p { margin-top: 0.9em; color: var(--ink-soft); }
.section-pine .section-head p { color: rgba(244,238,224,0.78); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  padding: 0.95em 1.8em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform 0.25s cubic-bezier(.2,.8,.3,1), background 0.25s, color 0.25s, border-color 0.25s, box-shadow .25s;
  white-space: nowrap;
}
.btn-solid {
  background: var(--clay);
  color: var(--pine-deep);
  box-shadow: 0 14px 30px -14px rgba(169, 143, 85, 0.65);
}
.btn-solid:hover { background: var(--clay-dark); color: var(--limestone); transform: translateY(-2px); }
.btn-outline {
  border-color: currentColor;
  color: var(--pine);
  background: transparent;
}
.btn-outline:hover { background: var(--pine); color: var(--limestone); transform: translateY(-2px); }
.section-pine .btn-outline { color: var(--limestone); }
.section-pine .btn-outline:hover { background: var(--limestone); color: var(--pine); }
.btn svg { width: 16px; height: 16px; }

/* ---------- nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 22px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.site-nav .container { display: flex; align-items: center; justify-content: space-between; }
.site-nav.is-solid {
  background: rgba(244, 238, 224, 0.94);
  backdrop-filter: blur(10px);
  padding: 13px 0;
  box-shadow: 0 8px 30px -18px rgba(27,25,21,0.35);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--pine);
}
.site-nav.is-solid .brand,
.site-nav.is-solid .nav-links a,
.site-nav.is-solid .nav-toggle { color: var(--pine); }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-word { letter-spacing: -0.01em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a { position: relative; padding: 4px 0; color: var(--pine); }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1.5px;
  background: var(--clay);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 1.4rem; }
.nav-toggle {
  display: none;
  background: none; border: none; color: var(--pine);
  width: 40px; height: 40px;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 880px) {
  .nav-links { position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 340px);
    background: var(--limestone); flex-direction: column; align-items: flex-start;
    padding: 110px 32px 40px; gap: 1.6rem; transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.2,.8,.2,1); box-shadow: -20px 0 50px -30px rgba(0,0,0,.4); }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-cta .btn-outline { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--limestone);
  padding: 148px 0 5rem;
  overflow: hidden;
}
.hero-inner { position: relative; }
.hero-media {
  margin-left: 20%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 2752 / 1536;
  box-shadow: var(--shadow);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(244,238,224,0.94) 0%, rgba(244,238,224,0.72) 16%, rgba(244,238,224,0.18) 34%, transparent 52%),
              linear-gradient(0deg, rgba(27,25,21,0.38), transparent 42%);
  pointer-events: none;
}
.hero-headline-wrap {
  position: relative;
  width: 54%;
  margin-top: -2vw;
  z-index: 3;
  padding-bottom: 1.5rem;
}
.hero-eyebrow { margin-bottom: 1.1rem; }
.hero-headline {
  font-size: clamp(2.5rem, 5.3vw, 5.1rem);
  font-weight: 600;
  color: var(--pine);
}
.hero-headline .line { display: block; }
.hero-sub {
  margin-top: 1.6rem;
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-trust {
  margin-top: 2.6rem;
  display: flex; flex-wrap: wrap; gap: 1.8rem 2.4rem;
}
.trust-item { display: flex; align-items: center; gap: 0.7em; font-size: 0.92rem; font-weight: 600; color: var(--pine); }
.trust-item svg { width: 19px; height: 19px; color: var(--clay); flex: none; }

@media (max-width: 900px) {
  .hero { padding-top: 118px; }
  .hero-media { margin-left: 0; aspect-ratio: 4 / 5; }
  .hero-media::after { background: linear-gradient(0deg, rgba(27,25,21,0.45), rgba(27,25,21,0.04) 55%); }
  .hero-headline-wrap { width: 100%; margin-top: 1.6rem; }
  .hero-headline { color: var(--pine); }
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--pine-deep);
  color: var(--limestone-deep);
  overflow: hidden;
  padding: 1.05rem 0;
  border-top: 1px solid rgba(244,238,224,0.08);
  border-bottom: 1px solid rgba(244,238,224,0.08);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
  gap: 3rem;
}
.marquee-track span {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.marquee-track span::after { content: "—"; color: var(--clay); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.product-card {
  background: var(--limestone);
  padding: 2.4rem 1.8rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background 0.3s ease;
}
.product-card:hover { background: var(--white); }
/* card photos are wrapped in .pthumb (see utility at the foot of this sheet)
   so the hover zoom stays clipped; this rule restores the full-bleed geometry */
.product-card .pthumb {
  width: calc(100% + 3.6rem) !important;
  margin: -2.4rem -1.8rem 0.4rem;
}
.product-card h3 { font-size: 1.14rem; font-weight: 600; }
.product-card p { font-size: 0.93rem; color: var(--ink-soft); margin: 0; }
.product-link {
  margin-top: auto;
  font-weight: 700; font-size: 0.86rem;
  color: var(--clay-dark);
  display: inline-flex; align-items: center; gap: 0.4em;
}
.product-link svg { width: 14px; height: 14px; transition: transform .25s ease; }
.product-card:hover .product-link svg { transform: translateX(4px); }
.product-card--repairs {
  background: color-mix(in srgb, var(--limestone) 84%, var(--clay) 16%);
  box-shadow: inset 3px 0 0 0 var(--clay);
}
.product-card--repairs:hover { background: color-mix(in srgb, var(--white) 86%, var(--clay) 14%); }

@media (max-width: 1080px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }

/* ---------- editorial photo section ---------- */
.editorial {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}
.editorial-figure { position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow); }
.editorial-figure img { width: 100%; height: 100%; object-fit: cover; }
.editorial-figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.6rem;
  background: linear-gradient(0deg, rgba(27,25,21,0.82), transparent);
  color: var(--limestone);
  font-size: 0.88rem;
  font-weight: 600;
}
.editorial-figure.tall { aspect-ratio: 1200 / 896; align-self: end; }
.editorial-col { display: flex; flex-direction: column; gap: 1.5rem; }
.editorial-col .editorial-figure { aspect-ratio: 6 / 5; }
.editorial-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.8rem;
}
.editorial-note p:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .editorial { grid-template-columns: 1fr; }
  .editorial-figure.tall { aspect-ratio: 4/3; }
}

/* ---------- locale section ---------- */
.locale { position: relative; }
.locale-copy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.locale-copy {
  padding: 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color .3s ease;
}
.locale-copy:hover { border-color: var(--clay); }
.locale-copy h3 { font-size: 1.05rem; margin-bottom: 0.5em; }
.locale-copy p { font-size: 0.93rem; color: var(--ink-soft); margin: 0; }
.locale-copy .tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--clay-dark); margin-bottom: 0.6em;
}
@media (max-width: 820px) { .locale-copy-grid { grid-template-columns: 1fr; } }

/* ---------- process ---------- */
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; counter-reset: step; }
.process-item { position: relative; padding-top: 1rem; border-top: 2px solid var(--line); }
.process-item .num {
  font-family: var(--ff-display); font-size: 2.6rem; color: var(--clay);
  display: block; margin-bottom: 0.4rem; line-height: 1;
}
.process-item h3 { font-size: 1.08rem; margin-bottom: 0.4em; }
.process-item p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 900px) { .process-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process-list { grid-template-columns: 1fr; } }

/* ---------- area chips ---------- */
.area-chip-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.area-chip {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.85em 1.4em;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-weight: 700; font-size: 0.92rem;
  color: var(--pine);
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.area-chip:hover { border-color: var(--clay); transform: translateY(-2px); background: var(--limestone); }
.area-chip svg { width: 15px; height: 15px; color: var(--clay); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  cursor: pointer;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--pine);
  font-weight: 600;
  transition: color 0.25s ease;
}
.faq-item summary:hover { color: var(--clay-dark); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle { position: relative; width: 22px; height: 22px; flex: none; }
.faq-toggle::before, .faq-toggle::after {
  content: ""; position: absolute; background: var(--clay); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-toggle::before { width: 16px; height: 2px; }
.faq-toggle::after { width: 2px; height: 16px; transition: transform 0.3s ease; }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item p { margin-top: 1rem; color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- closing CTA ---------- */
.cta-close {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--pine);
  padding: clamp(2.6rem, 6vw, 5rem);
  text-align: center;
  isolation: isolate;
}
.cta-close::before, .cta-close::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px);
  z-index: -1; opacity: 0.55;
}
.cta-close::before { width: 420px; height: 420px; background: var(--clay); top: -160px; left: -120px; animation: drift1 22s ease-in-out infinite; }
.cta-close::after { width: 360px; height: 360px; background: #8A7450; bottom: -160px; right: -100px; animation: drift2 26s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(60px, 40px); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-50px, -30px); } }
@media (prefers-reduced-motion: reduce) { .cta-close::before, .cta-close::after { animation: none; } }
.cta-close h2 { color: var(--limestone); font-size: clamp(2rem, 4vw, 3.2rem); max-width: 18ch; margin: 0.4em auto 0.6em; }
.cta-close p { color: rgba(244,238,224,0.8); max-width: 52ch; margin: 0 auto 2rem; }
.cta-close .hero-ctas { justify-content: center; }

/* ---------- form ---------- */
.enquiry-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: start; }
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 0.5em; color: var(--pine); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85em 1em; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: var(--limestone); font-family: inherit;
  font-size: 0.98rem; color: var(--ink); transition: border-color .25s ease, background .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--clay); background: var(--white); outline: none; }
.field textarea { resize: vertical; min-height: 100px; }
.popia-line { font-size: 0.82rem; color: var(--ink-soft); margin-top: 1rem; line-height: 1.6; }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.is-visible { display: block; }
.form-success svg { width: 46px; height: 46px; color: var(--clay); margin: 0 auto 1rem; }
@media (max-width: 900px) { .enquiry-wrap { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.site-footer { background: var(--pine-deep); color: rgba(244,238,224,0.82); padding: 3.6rem 0 2.2rem; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2.4rem; padding-bottom: 2.4rem; border-bottom: 1px solid rgba(244,238,224,0.12); }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-mark { color: var(--limestone); }
.footer-brand .brand-word { font-family: var(--ff-display); font-size: 1.2rem; color: var(--limestone); }
.footer-cols { display: flex; gap: 3.5rem; flex-wrap: wrap; }
.footer-col h4 { color: var(--limestone); font-family: var(--ff-body); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a, .footer-col span { display: block; font-size: 0.92rem; margin-bottom: 0.6rem; color: rgba(244,238,224,0.78); transition: color .25s ease; }
.footer-col a:hover { color: var(--clay-tint); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.8rem; font-size: 0.82rem; color: rgba(244,238,224,0.55); }
.footer-bottom p { margin: 0; max-width: 60ch; }

/* ---------- reveal-on-scroll: staggered fade-slide from alternating sides ----------
   Signature motion for this site: each section slides in from the left by default;
   .reveal-right flips the section to slide in from the right instead, so the page
   alternates sides as you scroll. Repeating items inside a revealed block (product
   cards, FAQ rows, process steps...) get their own smaller alternating stagger once
   the parent becomes visible. */
/* Hidden states only ever apply once <html class="js"> is set by an inline
   head script — with JS off (or a crawler that runs none) every reveal target
   is plainly visible. A CSS-only safety animation also force-reveals anything
   still hidden ~2.6s after load, so no failure mode leaves content at opacity 0. */
.js .reveal { opacity: 0; transform: translateX(-44px); }
.js .reveal.reveal-right { transform: translateX(44px); }
.js .reveal.is-visible { opacity: 1; transform: translateX(0); transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1); }

.js .reveal .product-card, .js .reveal .process-item, .js .reveal .faq-item,
.js .reveal .area-chip, .js .reveal .related-card, .js .reveal .locale-copy {
  opacity: 0;
  transform: translateX(-22px);
}
.reveal .product-card, .reveal .process-item, .reveal .faq-item,
.reveal .area-chip, .reveal .related-card, .reveal .locale-copy {
  transition: opacity 0.6s cubic-bezier(.2,.7,.2,1), transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.js .reveal .product-card:nth-child(even), .js .reveal .process-item:nth-child(even), .js .reveal .faq-item:nth-child(even),
.js .reveal .area-chip:nth-child(even), .js .reveal .related-card:nth-child(even), .js .reveal .locale-copy:nth-child(even) {
  transform: translateX(22px);
}
@keyframes revealSafety { to { opacity: 1; transform: none; } }
.js .reveal:not(.is-visible),
.js .reveal:not(.is-visible) .product-card, .js .reveal:not(.is-visible) .process-item,
.js .reveal:not(.is-visible) .faq-item, .js .reveal:not(.is-visible) .area-chip,
.js .reveal:not(.is-visible) .related-card, .js .reveal:not(.is-visible) .locale-copy {
  animation: revealSafety 0.6s ease 2.6s forwards;
}
.js .reveal.is-visible .product-card, .js .reveal.is-visible .process-item, .js .reveal.is-visible .faq-item,
.js .reveal.is-visible .area-chip, .js .reveal.is-visible .related-card, .js .reveal.is-visible .locale-copy {
  opacity: 1; transform: translateX(0);
}
.reveal .product-card:nth-child(1), .reveal .process-item:nth-child(1), .reveal .faq-item:nth-child(1),
.reveal .area-chip:nth-child(1), .reveal .related-card:nth-child(1), .reveal .locale-copy:nth-child(1) { transition-delay: .03s; }
.reveal .product-card:nth-child(2), .reveal .process-item:nth-child(2), .reveal .faq-item:nth-child(2),
.reveal .area-chip:nth-child(2), .reveal .related-card:nth-child(2), .reveal .locale-copy:nth-child(2) { transition-delay: .09s; }
.reveal .product-card:nth-child(3), .reveal .process-item:nth-child(3), .reveal .faq-item:nth-child(3),
.reveal .area-chip:nth-child(3), .reveal .related-card:nth-child(3), .reveal .locale-copy:nth-child(3) { transition-delay: .15s; }
.reveal .product-card:nth-child(4), .reveal .process-item:nth-child(4), .reveal .faq-item:nth-child(4),
.reveal .area-chip:nth-child(4) { transition-delay: .21s; }
.reveal .product-card:nth-child(5), .reveal .faq-item:nth-child(5) { transition-delay: .27s; }
.reveal .product-card:nth-child(6), .reveal .faq-item:nth-child(6) { transition-delay: .33s; }
.reveal .product-card:nth-child(7) { transition-delay: .39s; }
.reveal .product-card:nth-child(8) { transition-delay: .45s; }
.reveal .product-card:nth-child(9) { transition-delay: .51s; }
.reveal .product-card:nth-child(10) { transition-delay: .57s; }
.reveal .product-card:nth-child(11) { transition-delay: .63s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal .product-card, .reveal .process-item, .reveal .faq-item,
  .reveal .area-chip, .reveal .related-card, .reveal .locale-copy {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* ---------- chat widget ---------- */
.chat-launcher {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--clay); color: var(--pine-deep); border: none;
  box-shadow: 0 16px 34px -12px rgba(169,143,85,0.6);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s cubic-bezier(.3,.8,.3,1.3), background .25s ease;
}
.chat-launcher:hover { transform: scale(1.06); background: var(--clay-dark); color: var(--limestone); }
.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: 22px; bottom: 96px; z-index: 90;
  width: min(360px, calc(100vw - 44px));
  max-height: min(560px, calc(100vh - 150px));
  background: var(--limestone);
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -20px rgba(27,25,21,0.5);
  display: flex; flex-direction: column;
  overflow: hidden;
  opacity: 0; transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.chat-panel.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.chat-head { background: var(--pine); color: var(--limestone); padding: 1.1rem 1.3rem; }
.chat-head strong { font-family: var(--ff-display); font-size: 1.05rem; display: block; margin-bottom: 0.2rem; }
.chat-head span { font-size: 0.78rem; color: rgba(244,238,224,0.72); }
.chat-body { flex: 1; overflow-y: auto; padding: 1.1rem 1.1rem 0.6rem; display: flex; flex-direction: column; gap: 0.7rem; }
.chat-msg { max-width: 86%; padding: 0.7em 0.95em; border-radius: 14px; font-size: 0.88rem; line-height: 1.5; }
.chat-msg.bot { align-self: flex-start; background: var(--white); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.chat-msg.user { align-self: flex-end; background: var(--clay); color: var(--pine-deep); border-bottom-right-radius: 4px; }
.chat-msg.popia { font-size: 0.76rem; color: var(--ink-soft); background: transparent; border: none; padding: 0 0.2em; }
.chat-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0.2rem 1.1rem 0.9rem; }
.chat-chip {
  border: 1.5px solid var(--clay); color: var(--clay-dark); background: var(--white);
  border-radius: 999px; padding: 0.5em 1em; font-size: 0.82rem; font-weight: 700;
  transition: background .2s ease, color .2s ease;
}
.chat-chip:hover { background: var(--clay); color: var(--pine-deep); }
.chat-input-row { display: flex; gap: 0.5rem; padding: 0.8rem 1rem; border-top: 1px solid var(--line); background: var(--white); }
.chat-input-row input { flex: 1; border: 1.5px solid var(--line); border-radius: 999px; padding: 0.65em 1em; font-family: inherit; font-size: 0.9rem; }
.chat-input-row input:focus { outline: none; border-color: var(--clay); }
.chat-input-row button { background: var(--pine); color: var(--limestone); border: none; border-radius: 999px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; flex: none; }
.chat-input-row button svg { width: 17px; height: 17px; }
.chat-input-row.is-hidden { display: none; }

@media (max-width: 480px) {
  .chat-panel { right: 12px; left: 12px; width: auto; bottom: 92px; }
  .chat-launcher { right: 14px; bottom: 14px; }
}

/* ---------- simple page hero (product/area pages) ---------- */
.page-hero {
  padding: 150px 0 4.5rem;
  background: var(--limestone);
  position: relative;
}
.page-hero-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/7; box-shadow: var(--shadow); position: relative; margin-top: 2.4rem; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(27,25,21,0.45), transparent 55%); }
.breadcrumb { font-size: 0.84rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 1.4rem; display:flex; gap:0.5em; align-items:center; }
.breadcrumb a { color: var(--clay-dark); }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); max-width: 18ch; }
.page-hero .hero-sub { max-width: 60ch; }

.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.spec-list li { display: flex; gap: 0.8em; padding: 0.85em 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.spec-list li svg { width: 18px; height: 18px; color: var(--clay); flex: none; margin-top: 3px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.pill { border: 1px solid var(--line); background: var(--white); border-radius: 999px; padding: 0.5em 1.1em; font-size: 0.82rem; font-weight: 700; color: var(--pine); }

.related-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 820px) { .related-strip { grid-template-columns: 1fr; } }
.related-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.6rem; transition: transform .25s ease, box-shadow .25s ease; }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.related-card h3 { font-size: 1.05rem; margin-bottom: 0.5em; }
.related-card p { font-size: 0.9rem; color: var(--ink-soft); }

/* 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 pthumb utility above must not reshape the two hero media frames —
   restore the editorial hero geometry (offset image, oversized-type overlap)
   and the wide page-hero crop it was clobbering */
.hero-media.pthumb{width:auto!important;margin:0 0 0 20%;aspect-ratio:2752/1536}
.page-hero-media.pthumb{width:auto!important;margin:2.4rem 0 0;aspect-ratio:16/7}
@media (max-width:900px){
  .hero-media.pthumb{margin-left:0;aspect-ratio:4/5}
}

/* ---------- signature moment: the Waverley sun-path ----------
   A small brass sun scrubs along a drawn arc over the "same lounge window,
   three different problems" cards, lighting morning, midday and afternoon in
   turn as you scroll — the site's one-off animated moment, tied to its own
   locale story. Decorative only: hidden without JS, on small screens and
   under prefers-reduced-motion. */
.locale-stage{position:relative}
.js .locale-stage{padding-top:104px}
.sun-arc{display:none;position:absolute;left:0;right:0;top:0;height:96px;pointer-events:none}
.js .sun-arc{display:block}
.sun-arc svg{width:100%;height:100%;display:block}
.sun-arc path{stroke:var(--clay);stroke-width:1.5;fill:none;opacity:.45;stroke-dasharray:5 7}
.sun-dot{position:absolute;left:4%;top:88%;width:18px;height:18px;border-radius:50%;
  background:var(--clay);transform:translate(-50%,-50%);
  box-shadow:0 0 0 6px rgba(169,143,85,.16),0 0 26px 4px rgba(169,143,85,.45)}
.locale-copy.is-lit{border-color:var(--clay);box-shadow:0 16px 36px -24px rgba(117,100,60,.55)}
@media (max-width:820px){
  .js .locale-stage{padding-top:0}
  .js .sun-arc{display:none}
}
@media (prefers-reduced-motion: reduce){
  .sun-arc{display:none!important}
  .js .locale-stage{padding-top:0}
}

/* ==========================================================================
   THE LEAD LADDER — The Waverley Window Notebook (guide.html), the ballpark
   window list, and the free-measure close.
   Built only from the tokens declared at the top of this sheet: --limestone,
   --limestone-deep, --pine, --pine-deep, --clay, --clay-dark, --clay-tint,
   --ink, --ink-soft, --line, --white. No new colour is introduced below, so
   the palette law still holds.
   ========================================================================== */

.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;
}
.container-narrow{ max-width:940px; }

/* ---------- guide hero: the site's overlapping-type idiom, reworked ---------- */
.guide-hero{
  position:relative; background:var(--limestone);
  padding:146px 0 4.5rem; overflow:hidden;
}
.guide-hero-inner{ position:relative; }
.guide-hero-media{
  margin-left:26%; border-radius:var(--radius-lg); overflow:hidden;
  position:relative; aspect-ratio:1376/768; box-shadow:var(--shadow);
}
.guide-hero-media img{ width:100%; height:100%; object-fit:cover; will-change:transform; }
.guide-hero-media::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(96deg, rgba(244,238,224,.95) 0%, rgba(244,238,224,.76) 18%, rgba(244,238,224,.16) 38%, transparent 56%),
             linear-gradient(0deg, rgba(27,25,21,.34), transparent 44%);
}
.guide-hero-copy{ position:relative; width:60%; margin-top:-3vw; z-index:3; }
.guide-hero-copy h1{
  font-size:clamp(2.15rem,4.3vw,4rem); font-weight:600; color:var(--pine);
  margin-top:.5em; max-width:15ch;
}
.guide-hero-copy .hero-sub{ max-width:53ch; }
.guide-strip{
  margin-top:2.4rem; display:flex; flex-wrap:wrap; gap:1rem 2.2rem;
  border-top:1px solid var(--line); padding-top:1.6rem;
}
@media (max-width:900px){
  .guide-hero{ padding-top:116px; }
  .guide-hero-media{ margin-left:0; aspect-ratio:4/3; }
  .guide-hero-media::after{ background:linear-gradient(0deg, rgba(27,25,21,.45), rgba(27,25,21,.04) 58%); }
  .guide-hero-copy{ width:100%; margin-top:1.6rem; }
}

/* ---------- long-form reading ---------- */
.prose p{ max-width:68ch; font-size:1.03rem; }
.prose em{ font-style:italic; }

/* numbered notebook entries */
.notes{ counter-reset:note; display:grid; gap:1.4rem; }
.note{
  counter-increment:note; position:relative;
  padding:1.7rem 1.8rem 1.7rem 4.6rem;
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md);
  transition:border-color .3s ease, transform .3s ease;
}
.note:hover{ border-color:var(--clay); transform:translateY(-2px); }
.note::before{
  content:counter(note,decimal-leading-zero);
  position:absolute; left:1.6rem; top:1.55rem;
  font-family:var(--ff-display); font-size:1.5rem; line-height:1;
  color:var(--clay); font-weight:600;
}
.note h3{ font-size:1.12rem; margin-bottom:.45em; }
.note p{ margin:0; color:var(--ink-soft); font-size:.97rem; max-width:74ch; }
.section-pine .note{ background:rgba(244,238,224,.05); border-color:rgba(244,238,224,.16); }
.section-pine .note:hover{ border-color:var(--clay); }
.section-pine .note h3{ color:var(--limestone); }
.section-pine .note p{ color:rgba(244,238,224,.78); }
@media (max-width:600px){
  .note{ padding:1.5rem 1.2rem 1.4rem; }
  .note::before{ position:static; display:block; margin-bottom:.4rem; }
}

/* ---------- full-bleed photo band between chapters ---------- */
.guide-band{ position:relative; overflow:hidden; background:var(--pine-deep); }
.guide-band > img{ width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.guide-band-scrim{
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(27,25,21,.9) 0%, rgba(27,25,21,.66) 46%, rgba(27,25,21,.2) 100%);
}
.guide-band-copy{ position:relative; padding:clamp(3rem,7vw,6rem) 0; }
.guide-band-copy h2{ color:var(--limestone); font-size:clamp(1.7rem,3.2vw,2.7rem); max-width:19ch; }
.guide-band-copy p{ color:rgba(244,238,224,.84); margin-top:1rem; max-width:56ch; }

/* ---------- recommendations ---------- */
.recs{ display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
.rec{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:2rem 1.9rem; display:flex; flex-direction:column; gap:.75rem;
  transition:border-color .3s ease, box-shadow .3s ease;
}
.rec:hover{ border-color:var(--clay); box-shadow:var(--shadow); }
.rec h3{ font-size:1.22rem; }
.rec p{ font-size:.95rem; color:var(--ink-soft); margin:0; max-width:none; }
.rec-where{
  font-size:.74rem !important; font-weight:700; letter-spacing:.13em; text-transform:uppercase;
  color:var(--clay-dark) !important;
}
.rec-catch{
  border-left:2px solid var(--clay);
  background:var(--limestone);
  padding:.9rem 1rem; border-radius:0 var(--radius-sm) var(--radius-sm) 0;
}
.rec strong{ color:var(--pine); font-weight:700; }
.rec--wide{
  grid-column:1 / -1; display:grid; grid-template-columns:.9fr 1.1fr; gap:0; padding:0;
  overflow:hidden;
}
.rec--wide .rec-photo{ margin:0; min-height:290px; height:100%; aspect-ratio:auto; }
.rec--wide .rec-photo img{ width:100%; height:100%; object-fit:cover; }
.rec--wide .rec-body{ padding:2rem 1.9rem; display:flex; flex-direction:column; gap:.75rem; }
.rec-btns{ display:flex; flex-wrap:wrap; gap:.6rem; margin-top:auto; padding-top:.6rem; }
.rec-add{
  border:1.5px solid var(--clay); background:transparent; color:var(--clay-dark);
  border-radius:999px; padding:.6em 1.15em; font-size:.82rem; font-weight:700;
  font-family:var(--ff-body);
  transition:background .25s ease, color .25s ease, border-color .25s ease;
}
.rec-add:hover{ background:var(--clay); color:var(--pine-deep); }
.rec-add.is-added{ background:var(--clay); color:var(--pine-deep); cursor:default; }
.rec-add[disabled]{ opacity:.92; }
@media (max-width:900px){
  .recs{ grid-template-columns:1fr; }
  .rec--wide{ grid-template-columns:1fr; }
  .rec--wide .rec-photo{ min-height:0; aspect-ratio:16/10; }
}

/* ---------- the two ways forward ---------- */
.ways{ display:grid; grid-template-columns:1.25fr .95fr; gap:1.5rem; align-items:stretch; }
.way{
  border-radius:var(--radius-lg); padding:clamp(1.8rem,3vw,2.6rem);
  display:flex; flex-direction:column; gap:.9rem;
}
.way-main{ background:var(--pine); }
.way-main h3{ color:var(--limestone); font-size:clamp(1.35rem,2.4vw,1.85rem); }
.way-main p{ color:rgba(244,238,224,.82); font-size:1rem; margin:0; }
.way-alt{ background:var(--white); border:1px solid var(--line); }
.way-alt h3{ font-size:1.2rem; }
.way-alt p{ color:var(--ink-soft); font-size:.95rem; margin:0; }
.way-tag{
  font-size:.7rem !important; font-weight:700; text-transform:uppercase; letter-spacing:.22em; margin:0;
}
.way-main .way-tag{ color:var(--clay-tint) !important; }
.way-alt .way-tag{ color:var(--clay-dark) !important; }
.way .btn{ margin-top:auto; align-self:flex-start; }
.way-main .btn-outline{ color:var(--limestone); }
.way-main .btn-outline:hover{ background:var(--limestone); color:var(--pine); }
.way-capacity{ font-size:.87rem !important; color:rgba(244,238,224,.68) !important; }
@media (max-width:820px){ .ways{ grid-template-columns:1fr; } }

/* ---------- capture forms ---------- */
.lead-form{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:clamp(1.6rem,3vw,2.6rem); box-shadow:var(--shadow);
}
.lead-form.is-sent{ display:none; }
.mini-cap{ display:grid; grid-template-columns:.9fr 1.1fr; gap:3rem; align-items:start; }
@media (max-width:900px){ .mini-cap{ grid-template-columns:1fr; gap:2rem; } }
.f-grid{ display:grid; grid-template-columns:1fr 1fr; gap:0 1.1rem; }
@media (max-width:640px){ .f-grid{ grid-template-columns:1fr; } }

.chk-set{ border:none; margin:.4rem 0 1.1rem; padding:0; }
.chk-set legend{
  font-weight:700; font-size:.85rem; color:var(--pine); padding:0; margin-bottom:.7rem;
}
.chk-set legend .opt{ font-weight:500; color:var(--ink-soft); }
.chk-grid{ display:grid; grid-template-columns:1fr 1fr; gap:.5rem 1.1rem; }
@media (max-width:640px){ .chk-grid{ grid-template-columns:1fr; } }
.chk{ display:flex; align-items:flex-start; gap:.6em; font-size:.9rem; color:var(--ink-soft); cursor:pointer; }
.chk input{ margin-top:.35em; accent-color:var(--clay-dark); flex:none; }
.chk input:checked + span{ color:var(--pine); font-weight:700; }

.carry-note{
  font-size:.85rem; line-height:1.55; color:var(--pine);
  background:var(--clay-tint);
  border-radius:var(--radius-sm); padding:.75rem .95rem; margin:.7rem 0 0; max-width:none;
}
.lead-thanks{
  background:var(--white); border:1px solid var(--line); border-left:3px solid var(--clay);
  border-radius:var(--radius-md); padding:2rem 1.9rem;
}
.lead-thanks svg{ width:40px; height:40px; color:var(--clay); margin-bottom:.8rem; }
.lead-thanks h3{ font-size:1.3rem; margin-bottom:.5em; }
.lead-thanks p{ color:var(--ink-soft); font-size:.97rem; margin:0 0 .8em; }
.lead-thanks p:last-child{ margin-bottom:0; }
.lead-thanks a{ color:var(--clay-dark); font-weight:700; text-decoration:underline; text-underline-offset:3px; }

/* ---------- Rung 2: the ballpark window list ---------- */
.ballpark{
  border:1px dashed var(--line); border-radius:var(--radius-md);
  background:var(--limestone); margin:.3rem 0 1.2rem;
}
.ballpark > summary{
  list-style:none; cursor:pointer; padding:1rem 1.1rem;
  font-size:.9rem; font-weight:700; color:var(--pine);
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
}
.ballpark > summary::-webkit-details-marker{ display:none; }
.ballpark .ind{ position:relative; width:18px; height:18px; flex:none; }
.ballpark .ind::before, .ballpark .ind::after{
  content:""; position:absolute; background:var(--clay); border-radius:2px;
}
.ballpark .ind::before{ left:0; top:8px; width:18px; height:2px; }
.ballpark .ind::after{ left:8px; top:0; width:2px; height:18px; transition:transform .3s ease; }
.ballpark[open] .ind::after{ transform:scaleY(0); }
.bp-inner{ padding:0 1.1rem 1.2rem; }
.bp-note{ font-size:.88rem; line-height:1.65; color:var(--ink-soft); margin-bottom:1rem; max-width:74ch; }
.bp-scroll{ overflow-x:auto; }
.bp-table{ width:100%; border-collapse:collapse; min-width:660px; }
.bp-table th{
  text-align:left; font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.14em;
  color:var(--ink-soft); padding:0 .5rem .5rem 0; border-bottom:1px solid var(--line);
}
.bp-table td{ padding:.45rem .5rem .45rem 0; vertical-align:top; }
.bp-table input, .bp-table select{
  width:100%; font-family:inherit; font-size:.88rem; color:var(--ink);
  padding:.55em .7em; border:1.5px solid var(--line); background:var(--white);
  border-radius:var(--radius-sm);
}
.bp-table input:focus, .bp-table select:focus{ border-color:var(--clay); outline:none; }
.bp-rm{ width:42px; }
.bp-remove{
  width:32px; height:36px; line-height:1; font-size:1.1rem;
  border:1.5px solid var(--line); background:var(--white); color:var(--ink-soft);
  border-radius:var(--radius-sm);
  transition:border-color .2s ease, color .2s ease;
}
.bp-remove:hover{ border-color:var(--clay); color:var(--pine); }
.bp-actions{ display:flex; flex-wrap:wrap; align-items:center; gap:.8rem; margin-top:1rem; }
.bp-actions .btn{ padding:.7em 1.3em; font-size:.82rem; }
.bp-count{ font-size:.85rem; color:var(--ink-soft); margin:0; }
.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; position:relative;
    background:var(--white); border:1px solid var(--line); border-radius:var(--radius-sm);
    padding:.9rem .9rem .3rem; margin-bottom:.8rem;
  }
  .bp-table td{ display:block; padding:0 0 .7rem; }
  .bp-table td[data-lbl]::before{
    content:attr(data-lbl); display:block;
    font-size:.66rem; font-weight:700; text-transform:uppercase; letter-spacing:.14em;
    color:var(--ink-soft); margin-bottom:.35rem;
  }
  .bp-rm{ position:absolute; top:.5rem; right:.5rem; width:auto; padding:0; }
}

/* Print: the walk-the-house sheet, and nothing else */
@media print{
  body.bp-printing .site-nav,
  body.bp-printing .site-footer,
  body.bp-printing .chat-root,
  body.bp-printing .marquee,
  body.bp-printing .guide-band,
  body.bp-printing main > section:not(.bp-host),
  body.bp-printing .bp-host .section-head,
  body.bp-printing .bp-host .enquiry-intro,
  body.bp-printing .bp-host .f-grid,
  body.bp-printing .bp-host .form-row,
  body.bp-printing .bp-host .field,
  body.bp-printing .bp-host .chk-set,
  body.bp-printing .bp-host .popia-line,
  body.bp-printing .bp-host .popia-note,
  body.bp-printing .bp-host button,
  body.bp-printing .bp-host .bp-note,
  body.bp-printing .bp-host .bp-actions,
  body.bp-printing .ballpark > summary{ display:none !important; }
  body.bp-printing .bp-host{ padding:0 !important; background:#fff !important; }
  body.bp-printing .lead-form, body.bp-printing .form-card{ border:none; box-shadow:none; padding:0; }
  body.bp-printing .ballpark{ border:none; background:#fff; margin:0; }
  body.bp-printing .bp-inner{ padding:0; }
  body.bp-printing .bp-print-head{ display:block; margin-bottom:1.2rem; }
  body.bp-printing .bp-print-head h2{ font-size:1.4rem; margin-bottom:.5rem; }
  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; background:none;
  }
  body.bp-printing .bp-rm, body.bp-printing .bp-count{ display:none !important; }
}

/* ---------- sources ---------- */
.sources-list{ display:grid; gap:.85rem; }
.sources-list li{
  position:relative; padding-left:1.3rem;
  font-size:.9rem; line-height:1.6; color:var(--ink-soft);
}
.sources-list li::before{
  content:""; position:absolute; left:0; top:.72em; width:10px; height:1.5px; background:var(--clay);
}
.sources-list a{ color:var(--pine); text-decoration:underline; text-underline-offset:3px; }
.sources-list a:hover{ color:var(--clay-dark); }

/* ---------- the Notebook promo block, used on the home and area pages ---------- */
.guide-promo{
  display:grid; grid-template-columns:.85fr 1.15fr; gap:0;
  border:1px solid var(--line); border-radius:var(--radius-lg);
  background:var(--white); overflow:hidden;
}
.guide-promo-photo{ position:relative; min-height:280px; overflow:hidden; }
.guide-promo-photo img{ width:100%; height:100%; object-fit:cover; transition:transform .7s cubic-bezier(.2,.7,.2,1); }
.guide-promo:hover .guide-promo-photo img{ transform:scale(1.04); }
.guide-promo-body{ padding:clamp(1.8rem,3.4vw,3rem); display:flex; flex-direction:column; justify-content:center; gap:.9rem; }
.guide-promo-body h2{ font-size:clamp(1.6rem,2.6vw,2.3rem); }
.guide-promo-body p{ color:var(--ink-soft); font-size:1rem; margin:0; }
.guide-promo-meta{
  font-size:.72rem !important; font-weight:700; letter-spacing:.2em; text-transform:uppercase;
  color:var(--clay-dark) !important; margin:0;
}
.guide-promo-body .btn{ align-self:flex-start; margin-top:.5rem; }
@media (max-width:820px){
  .guide-promo{ grid-template-columns:1fr; }
  .guide-promo-photo{ min-height:0; aspect-ratio:16/9; }
}
@media (prefers-reduced-motion:reduce){
  .guide-promo:hover .guide-promo-photo img{ transform:none; }
  .note:hover{ transform:none; }
}
