/* Bedfordview Blinds — shared stylesheet
   Theme: view-manor · magazine layout
   Palette: warm charcoal-brown ink + linen canvas + old-gold accent
   (the assigned dark-plum direction resolved to warm neutrals: the network colour
    law forbids the 260-340 hue band entirely, so nothing here sits in it)
   Fonts: EB Garamond (display) + Outfit (body/UI)
*/

:root{
  --ink:        #1f1d1c;
  --charcoal:  #3d3a37;
  --charcoal-2:#504c47;
  --charcoal-3:#645e59;
  --linen:      #F5EDE1;
  --linen-2:    #FBF6EE;
  --paper:      #FFFDF9;
  --gold:       #B98B3E;
  --gold-2:     #D9B96A;
  --gold-light: #E4C888;
  --brown-mute: #7A6259;
  --line:       rgba(31,29,28,0.15);
  --line-soft:  rgba(31,29,28,0.09);
  --shadow:     0 24px 60px -30px rgba(31,29,28,0.42);

  --font-display: "EB Garamond", "Iowan Old Style", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", system-ui, sans-serif;

  --maxw: 1200px;
  --measure: 62ch;
  --gutter: clamp(20px, 5vw, 64px);
  --section-pad: clamp(64px, 9vw, 104px);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior: auto; } }

/* Anchor targets clear the fixed nav */
[id]{ scroll-margin-top: 96px; }

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--linen);
  font-size: 17px;
  line-height: 1.7;
  -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; }
button{ font-family: inherit; cursor:pointer; }
input, select, textarea{ font-family: inherit; font-size: 1rem; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1{ font-size: clamp(2.6rem, 5.4vw, 4.5rem); }
h2{ font-size: clamp(2rem, 3.6vw, 3.1rem); }
h3{ font-size: clamp(1.4rem, 2.2vw, 1.9rem); }

p{ margin: 0 0 1.1em; }
.measure{ max-width: var(--measure); }

.eyebrow{
  display:flex; align-items:center; gap:.7em;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.1em;
}
.eyebrow::before{
  content:"";
  width: 28px; height: 1px;
  background: var(--gold);
  display:inline-block;
}

.wrap{ max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.col{ max-width: var(--measure); }
.center{ text-align:center; margin-left:auto; margin-right:auto; }

/* focus */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* rule that draws itself in */
.rule{
  height:1px; width:100%; background: var(--line);
  transform-origin: left center;
}
.rule-accent{ background: var(--gold); opacity:.55; margin: 0 0 clamp(28px,4vw,44px); }
.rule-draw{ transform: scaleX(0); }
.rule-draw.is-in{ transform: scaleX(1); transition: transform 1.1s cubic-bezier(.65,0,.2,1); }
/* Without JS the rules must simply be there. */
html:not(.js) .rule-draw{ transform: none; }
@media (prefers-reduced-motion: reduce){
  .rule-draw{ transform:none !important; transition:none !important; }
}

/* ---------------- Nav ---------------- */
.nav{
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  padding: 22px var(--gutter);
  display:flex; align-items:center; justify-content:space-between;
  transition: background-color .35s ease, padding .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-transparent{ background: transparent; }
.nav.is-solid{
  background: rgba(251,246,238,0.92);
  backdrop-filter: blur(10px);
  padding-top: 14px; padding-bottom: 14px;
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -22px rgba(31,29,28,0.5);
}
.nav-inner{ max-width: var(--maxw); margin:0 auto; width:100%; display:flex; align-items:center; justify-content:space-between; }

.brand{ display:flex; align-items:center; gap:.65em; }
.brand-mark{ width:32px; height:32px; flex:none; color: var(--ink); }
.brand-mark .ray{ color: var(--gold); }
.nav.is-transparent .brand-word,
.nav.is-transparent .navlink{ color: #fff; }
.nav.is-transparent .brand-mark{ color:#fff; }
.nav.is-transparent .brand-mark .ray{ color: var(--gold-light); }
.brand-word{
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-word b{ font-weight: 600; }

.navlinks{ display:flex; align-items:center; gap: 2.1em; }
.navlink{
  font-size: 0.86rem; font-weight: 500; letter-spacing: .01em;
  color: var(--ink); position:relative; padding: 4px 0;
}
.navlink::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.navlink:hover::after{ transform: scaleX(1); }

.nav-cta{
  font-size: .8rem; font-weight: 600; letter-spacing: .02em;
  padding: .75em 1.4em; border-radius: 999px;
  background: var(--gold); color: var(--ink);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav-cta:hover{ background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(185,139,62,.65); }

.nav-burger{
  display:none; width:34px; height:34px; background:transparent; border:none;
  position:relative; color: var(--ink);
}
.nav-burger span{
  position:absolute; left:5px; right:5px; height:2px; background:currentColor;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-burger span:nth-child(1){ top:11px; }
.nav-burger span:nth-child(2){ top:17px; }
.nav-burger span:nth-child(3){ top:23px; }
.nav-burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }
.nav.is-transparent .nav-burger{ color:#fff; }

.nav-mobile{
  position: fixed; inset:0; z-index:85; background: var(--linen-2);
  display:flex; flex-direction:column; align-items:flex-start; justify-content:center; gap: 1.3em;
  padding: 0 var(--gutter);
  opacity:0; pointer-events:none; transform: translateY(-12px);
  transition: opacity .3s ease, transform .3s ease;
}
.nav-mobile.is-open{ opacity:1; pointer-events:auto; transform:none; }
.nav-mobile a{ font-family: var(--font-display); font-size: 2rem; color: var(--ink); }
.nav-mobile .nav-cta{ margin-top: 1em; }

@media (max-width: 860px){
  .navlinks{ display:none; }
  .nav-burger{ display:block; }
}

/* ---------------- Buttons ---------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6em;
  padding: .95em 1.9em; border-radius: 999px;
  font-size: .92rem; font-weight: 600; letter-spacing:.01em;
  border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  will-change: transform;
}
.btn-solid{ background: var(--gold); color: var(--ink); }
.btn-solid:hover{ background: var(--gold-light); box-shadow: 0 18px 34px -16px rgba(185,139,62,.6); }
.btn-outline{ background: transparent; color:#fff; border-color: rgba(255,255,255,.6); }
.btn-outline:hover{ background: rgba(255,255,255,.14); border-color:#fff; }
.btn-outline.on-light{ color: var(--ink); border-color: var(--ink); }
.btn-outline.on-light:hover{ background: var(--ink); color: var(--linen-2); }
.btn-ghost{ background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover{ border-color: var(--ink); }

/* ---------------- Hero ---------------- */
.hero{
  position: relative; min-height: 100svh; display:flex; align-items:flex-end;
  overflow:hidden; background: var(--ink);
}
.hero-media{ position:absolute; inset:0; }
.hero-media img{
  width:100%; height:100%; object-fit:cover; object-position: center 62%;
  transform: scale(1.06);
}
/* Scrim kept deliberately light: the ridge photograph is the point of the hero,
   so it stays clearly legible while the bottom band carries the white type. */
.hero-scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(26,21,17,.34) 0%, rgba(26,21,17,.04) 30%, rgba(26,21,17,.20) 58%, rgba(26,21,17,.74) 100%),
    linear-gradient(90deg, rgba(26,21,17,.34) 0%, rgba(26,21,17,0) 54%);
}
.hero-inner{
  position:relative; z-index:2; width:100%;
  padding: 0 var(--gutter) clamp(56px,9vw,96px);
  max-width: var(--maxw); margin:0 auto;
}
.hero-content{ max-width: 720px; }
.hero h1{ color:#fff; margin-bottom: .4em; }
.hero h1 .word{ display:inline-block; }
.hero-sub{
  color: rgba(255,255,255,.88); font-size: 1.12rem; max-width: 46ch;
  margin-bottom: 1.9em;
}
.hero-ctas{ display:flex; flex-wrap:wrap; gap: .9em; margin-bottom: 2.6em; }

.trust-row{ display:flex; flex-wrap:wrap; gap: 1.8em 2.4em; }
.trust-item{ display:flex; align-items:flex-start; gap:.65em; color:#fff; font-size:.9rem; max-width: 24ch; }
.trust-item svg{ flex:none; width:19px; height:19px; margin-top:1px; color: var(--gold-light); }

.hero-scrollcue{
  position:absolute; right: var(--gutter); bottom: 30px; z-index:2;
  color: rgba(255,255,255,.75); writing-mode: vertical-rl;
  font-size:.72rem; letter-spacing:.24em; text-transform:uppercase;
  display:flex; align-items:center; gap:.8em;
}
.hero-scrollcue .line{ width:1px; height:52px; background: rgba(255,255,255,.5); }

/* ---------------- Marquee ---------------- */
.marquee{
  background: var(--ink); color: var(--linen-2);
  overflow:hidden; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08);
}
.marquee-track{ display:flex; width: max-content; gap: 3em; animation: marquee 42s linear infinite; }
.marquee span{
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem;
  color: var(--linen-2); opacity:.92; white-space:nowrap; display:flex; align-items:center; gap:3em;
}
.marquee span::after{ content:"◆"; font-size:.5rem; color: var(--gold); margin-left:3em; }
@keyframes marquee{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }
@media (prefers-reduced-motion: reduce){ .marquee-track{ animation: none; overflow-x:auto; } }

/* ---------------- Sections ---------------- */
section{ padding: var(--section-pad) 0; }
.section-linen{ background: var(--linen); }
.section-paper{ background: var(--paper); }
.section-ink{ background: var(--ink); color: var(--linen-2); }
.section-ink h2, .section-ink h3{ color: #fff; }

/* Reveals only ever hide themselves when JS is present to bring them back.
   html.js is set by an inline script in <head>, so a failed script tag or a
   blocked CDN can never leave the page blank. */
.reveal{ opacity:1; transform:none; }
html.js .reveal{ opacity:0; transform: translateY(34px); }
html.js .reveal.is-in{ opacity:1; transform:none; transition: opacity .9s cubic-bezier(.2,.7,.25,1), transform .9s cubic-bezier(.2,.7,.25,1); }
@media (prefers-reduced-motion: reduce){
  .reveal, html.js .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
  .hero h1 .word, [data-split] .word{ opacity:1 !important; transform:none !important; }
  .skyline-path{ stroke-dashoffset: 0 !important; }
  .skyline-sun{ opacity:1 !important; transform:none !important; }
}

/* Magazine header block */
.mag-head{
  display:grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px,5vw,80px);
  align-items:end; margin-bottom: clamp(36px,5vw,60px);
}
.mag-head p{ color: var(--brown-mute); font-size: 1.02rem; }
@media (max-width: 860px){ .mag-head{ grid-template-columns:1fr; } }

/* Pull quote */
blockquote.pull{
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.15rem); line-height: 1.32;
  color: var(--charcoal); margin: .4em 0 0; padding-left: clamp(20px,3vw,36px);
  border-left: 2px solid var(--gold); max-width: 34ch;
}
blockquote.pull cite{ display:block; font-style:normal; font-family: var(--font-body); font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; color:var(--brown-mute); margin-top:.9em; }

/* Skyline signature moment */
.skyline{
  position: relative; background: var(--linen-2); overflow:hidden;
  padding: clamp(40px,7vw,72px) 0 clamp(20px,4vw,40px);
}
.skyline-svg{ display:block; width:100%; height:auto; }
.skyline-path{
  fill:none; stroke: var(--charcoal); stroke-width: 1.4; stroke-linejoin: round; stroke-linecap: round;
}
.skyline-sun{ fill: var(--gold); }
.skyline-cap{
  text-align:center; margin-top: 18px; font-size: .78rem; letter-spacing:.2em; text-transform:uppercase; color: var(--brown-mute);
}

/* Product grid */
.grid-products{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.product-card{
  background: var(--paper); padding: 2.1em 1.8em 1.9em; display:flex; flex-direction:column; gap: .9em;
  transition: background .3s ease;
}
.product-card:hover{ background: var(--linen-2); }
.product-icon{ width:52px; height:52px; color: var(--charcoal); }
.product-card h3{ font-size: 1.12rem; margin-bottom:.15em; }
.product-card p{ color: var(--brown-mute); font-size: .92rem; margin-bottom: .3em; flex:1; }
.product-link{
  font-size: .82rem; font-weight:600; color: var(--gold-2, var(--gold));
  display:inline-flex; align-items:center; gap:.4em;
}
.product-link svg{ width:14px; height:14px; transition: transform .25s ease; }
.product-link:hover svg{ transform: translateX(4px); }
@media (max-width: 980px){ .grid-products{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .grid-products{ grid-template-columns: 1fr;} }

/* Editorial photo section */
.editorial{
  display:grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px,2.4vw,28px);
  align-items:start;
}
.ed-item{ position:relative; }
.ed-cap{
  margin-top: .9em; display:flex; gap: .8em; align-items:baseline;
}
.ed-cap .n{ font-family: var(--font-display); font-style:italic; color: var(--gold); font-size:1.05rem; flex:none; }
.ed-cap p{ margin:0; font-size:.9rem; color: var(--brown-mute); max-width: 32ch; }
.ed-a{ grid-column: 1 / span 7; }
.ed-b{ grid-column: 8 / span 5; margin-top: clamp(30px,6vw,90px); }
.ed-c{ grid-column: 2 / span 6; margin-top: clamp(20px,4vw,48px); }
.ed-img{ overflow:hidden; }
.ed-img img{ width:100%; height:100%; object-fit:cover; }
.ed-a .ed-img{ aspect-ratio: 4/5; }
.ed-b .ed-img{ aspect-ratio: 4/5; }
@media (max-width: 860px){
  .editorial{ grid-template-columns: 1fr; }
  .ed-a, .ed-b, .ed-c{ grid-column: 1; margin-top:0; }
  .ed-b{ margin-top: clamp(16px,4vw,28px); }
  .ed-c{ margin-top: clamp(16px,4vw,28px); }
}

/* Locale storytelling */
.locale{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px,6vw,90px); align-items:start; }
.locale-figure{ position:sticky; top:110px; }
.locale-figure .frame{ border:1px solid var(--line); padding: 10px; background: var(--paper); }
.locale-figure img{ aspect-ratio: 4/5; object-fit:cover; }
.locale-body h3{ margin-top: 1.4em; }
.locale-body h3:first-child{ margin-top:0; }
@media (max-width: 900px){ .locale{ grid-template-columns:1fr; } .locale-figure{ position:static; } }

/* Process */
.process{ display:grid; grid-template-columns: repeat(4,1fr); gap: clamp(20px,3vw,32px); }
.step{ border-top: 1px solid var(--line); padding-top: 1.4em; }
.step .num{ font-family: var(--font-display); font-style:italic; font-size: 2.4rem; color: var(--gold); line-height:1; margin-bottom: .35em; display:block; }
.step h3{ font-size: 1.08rem; margin-bottom:.35em; }
.step p{ color: var(--brown-mute); font-size: .92rem; margin:0; }
@media (max-width: 860px){ .process{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .process{ grid-template-columns: 1fr; } }

/* Area chips */
.chips{ display:flex; flex-wrap:wrap; gap: .8em; }
.chip{
  display:inline-flex; align-items:center; gap:.5em;
  padding: .85em 1.4em; border:1px solid var(--line); border-radius: 999px;
  font-size: .88rem; font-weight:500; background: var(--paper);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.chip:hover{ border-color: var(--gold); background: var(--linen-2); transform: translateY(-2px); }
.chip svg{ width:14px; height:14px; color: var(--gold); }

/* FAQ */
.faq{ 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: 1.5em; padding: 1.5em 0; font-family: var(--font-display); font-size: 1.18rem;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-ind{ position:relative; width:20px; height:20px; flex:none; }
.faq-ind::before, .faq-ind::after{
  content:""; position:absolute; background: var(--charcoal); transition: transform .3s ease;
}
.faq-ind::before{ left:0; top:9px; width:20px; height:2px; }
.faq-ind::after{ left:9px; top:0; width:2px; height:20px; }
.faq-item[open] .faq-ind::after{ transform: rotate(90deg); opacity:0; }
.faq-item[open] .faq-ind::before{ background: var(--gold); }
.faq-body{ padding: 0 0 1.6em; max-width: 66ch; color: var(--brown-mute); }
.faq-body p{ margin:0; }

/* Closing CTA with drifting glow */
.cta-close{
  position: relative; overflow:hidden; background: var(--ink); color:#fff; text-align:center;
}
.glow{
  position:absolute; border-radius:50%; filter: blur(70px); opacity:.55; pointer-events:none;
}
.glow-a{ width:460px; height:460px; background: radial-gradient(circle, rgba(185,139,62,.55), transparent 70%); top:-120px; left:-80px; animation: drift1 22s ease-in-out infinite; }
.glow-b{ width:520px; height:520px; background: radial-gradient(circle, rgba(122,98,89,.5), transparent 70%); 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){ .glow-a, .glow-b{ animation:none; } }
.cta-close .inner{ position:relative; z-index:1; }
.cta-close h2{ color:#fff; max-width: 18ch; margin: 0 auto .5em; }
.cta-close p{ color: rgba(255,255,255,.8); max-width: 48ch; margin: 0 auto 1.8em; }

/* Enquiry form */
.enquiry{ display:grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,6vw,80px); align-items:start; }
.form-card{
  background: var(--paper); border: 1px solid var(--line); padding: clamp(24px,4vw,40px);
}
.field{ margin-bottom: 1.2em; }
.field label{ display:block; font-size: .82rem; font-weight:600; letter-spacing:.03em; margin-bottom:.5em; color: var(--ink); }
.field input, .field select, .field textarea{
  width:100%; padding: .85em 1em; border: 1px solid var(--line); background: var(--linen-2);
  color: var(--ink); border-radius: 3px; transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--gold); background:#fff; outline:none; }
.field-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 1em; }
.popia{ font-size: .8rem; color: var(--brown-mute); margin-top: 1.1em; line-height:1.6; }
.popia strong{ color: var(--ink); }
.form-msg{ display:none; padding: 1em 1.2em; border:1px solid var(--gold); background: var(--linen-2); font-size:.9rem; margin-top:1em; }
.form-msg.is-shown{ display:block; }
@media (max-width: 900px){ .enquiry{ grid-template-columns:1fr; } .field-row{ grid-template-columns:1fr; } }

/* Sub-page banner (products/areas) */
.subhero{ position:relative; min-height: 62svh; display:flex; align-items:flex-end; overflow:hidden; background: var(--ink); }
.subhero img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.subhero .hero-scrim{ background: linear-gradient(180deg, rgba(26,21,17,.36) 0%, rgba(26,21,17,.14) 40%, rgba(26,21,17,.80) 100%); }
.subhero .hero-inner{ padding-top: 140px; padding-bottom: clamp(40px,6vw,64px); }
.breadcrumb{ color: rgba(255,255,255,.75); font-size:.8rem; letter-spacing:.08em; text-transform:uppercase; margin-bottom: 1em; display:flex; gap:.6em; align-items:center; }
.breadcrumb a:hover{ color:#fff; }

.cross{ display:grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border:1px solid var(--line); margin-top: 2.2em; }
.cross a{ background: var(--paper); padding: 1.6em 1.6em; display:block; }
.cross a:hover{ background: var(--linen-2); }
.cross .k{ font-size:.7rem; letter-spacing:.2em; text-transform:uppercase; color: var(--gold); display:block; margin-bottom:.5em; }
.cross h4{ font-family: var(--font-display); font-size:1.1rem; margin:0 0 .3em; }
.cross p{ font-size:.84rem; color: var(--brown-mute); margin:0; }
@media (max-width: 760px){ .cross{ grid-template-columns:1fr; } }

.specs{ display:grid; grid-template-columns: repeat(2,1fr); gap: 1.4em 2.4em; margin: 1.6em 0; }
.spec dt{ font-size:.72rem; text-transform:uppercase; letter-spacing:.14em; color: var(--gold); margin-bottom:.3em; }
.spec dd{ margin:0; font-size:.95rem; color: var(--ink); }
@media (max-width: 620px){ .specs{ grid-template-columns:1fr; } }

/* ---------------- Footer ---------------- */
.footer{ background: var(--ink); color: rgba(255,255,255,.72); padding: clamp(56px,7vw,80px) 0 28px; }
.footer-top{ display:grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: clamp(28px,4vw,50px); padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand{ display:flex; align-items:center; gap:.65em; margin-bottom: 1em; }
.footer-brand .brand-mark{ color:#fff; }
.footer-brand .brand-mark .ray{ color: var(--gold-light); }
.footer-brand .brand-word{ color:#fff; }
.footer p{ font-size:.9rem; max-width: 30ch; color: rgba(255,255,255,.62); }
.footer h5{ color:#fff; font-size:.74rem; text-transform:uppercase; letter-spacing:.18em; margin: 0 0 1.1em; }
.footer ul li{ margin-bottom:.7em; }
.footer a{ font-size:.9rem; color: rgba(255,255,255,.72); }
.footer a:hover{ color: var(--gold-light); }
.footer-bottom{ display:flex; flex-wrap:wrap; gap: 1em 2em; justify-content:space-between; padding-top: 26px; font-size:.78rem; color: rgba(255,255,255,.5); }
@media (max-width: 860px){ .footer-top{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-top{ grid-template-columns: 1fr; } }

/* ---------------- Chat widget ---------------- */
.chat-btn{
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%; border:none;
  background: var(--gold); color: var(--ink);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 16px 34px -14px rgba(31,29,28,.55);
  transition: transform .25s ease, background .25s ease;
}
.chat-btn:hover{ background: var(--gold-light); transform: translateY(-3px) scale(1.04); }
.chat-btn svg{ width:26px; height:26px; }
.chat-btn .ic-close{ display:none; }
.chat-btn.is-open .ic-chat{ display:none; }
.chat-btn.is-open .ic-close{ display:block; }

.chat-panel{
  position: fixed; right: 22px; bottom: 94px; z-index: 199;
  width: min(360px, calc(100vw - 44px)); max-height: min(560px, calc(100vh - 140px));
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow);
  display:flex; flex-direction:column; overflow:hidden;
  opacity:0; transform: translateY(16px) scale(.98); pointer-events:none;
  transition: opacity .25s ease, transform .25s ease;
}
.chat-panel.is-open{ opacity:1; transform:none; pointer-events:auto; }
.chat-head{ background: var(--ink); color:#fff; padding: 1.1em 1.3em; }
.chat-head strong{ font-family: var(--font-display); font-size: 1.15rem; display:block; margin-bottom:.2em; }
.chat-head span{ font-size:.78rem; color: rgba(255,255,255,.68); }
.chat-body{ flex:1; overflow-y:auto; padding: 1.1em 1.2em; display:flex; flex-direction:column; gap: .8em; }
.chat-msg{ max-width: 86%; padding: .75em .95em; border-radius: 10px; font-size:.88rem; line-height:1.5; }
.chat-msg.bot{ background: var(--linen); align-self:flex-start; border-bottom-left-radius:2px; }
.chat-msg.user{ background: var(--charcoal); color:#fff; align-self:flex-end; border-bottom-right-radius:2px; }
.chat-msg.popia{ font-size:.74rem; color: var(--brown-mute); background:transparent; padding: 0 .2em; }
.chat-chips{ display:flex; flex-wrap:wrap; gap:.5em; padding: 0 1.2em 1em; }
.chat-chip{
  border: 1px solid var(--line); background:#fff; padding:.5em .95em; border-radius:999px;
  font-size:.8rem; font-weight:500; transition: border-color .2s ease, background .2s ease;
}
.chat-chip:hover{ border-color: var(--gold); background: var(--linen-2); }
.chat-input-row{ display:flex; gap:.5em; padding: .9em 1.1em; border-top: 1px solid var(--line); }
.chat-input-row input{ flex:1; border: 1px solid var(--line); border-radius: 999px; padding: .7em 1.1em; font-size:.86rem; background: var(--linen-2); }
.chat-input-row input:focus{ outline: 2px solid var(--gold); background:#fff; }
.chat-send{ width:40px; height:40px; border-radius:50%; background: var(--ink); color:#fff; display:flex; align-items:center; justify-content:center; flex:none; border:none; }
.chat-send:hover{ background: var(--charcoal); }
.chat-send svg{ width:16px; height:16px; }
@media (prefers-reduced-motion: reduce){ .chat-panel{ transition:none; } }

/* 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}

/* ---------------- Craft pass ---------------- */

/* The hero photograph is not a product thumbnail — it must fill its box. */
.hero-media{ margin:0 !important; aspect-ratio:auto !important; }
.hero-media img{ transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }

/* Editorial + locale photography earns the same slow zoom the product cards have */
.ed-item:hover .pthumb img,
.locale-figure:hover .pthumb img{ transform: scale(1.04); }
.ed-item .ed-cap p{ transition: color .25s ease; }
.ed-item:hover .ed-cap p{ color: var(--ink); }
@media (prefers-reduced-motion:reduce){
  .ed-item:hover .pthumb img,
  .locale-figure:hover .pthumb img{ transform:none; }
  .hero-media img{ transition:none; }
}

/* Product cards: photo zooms inside its frame, the arrow leads */
.product-card{ position:relative; }
.product-card > .pthumb{ margin: 0; }
.product-card:hover .product-link svg{ transform: translateX(4px); }
.product-card:focus-within{ background: var(--linen-2); }
.product-card:focus-within .pthumb img{ transform: scale(1.045); }
.product-card.is-service > .pthumb{ aspect-ratio: 5/3; align-self: stretch; }

/* Mobile menu open: stop the page scrolling behind it, and get the chat
   launcher out of the way instead of letting it float over the menu */
body.nav-open{ overflow:hidden; }
body.nav-open .chat-btn,
body.nav-open .chat-panel{ opacity:0; pointer-events:none; }
.chat-btn{ transition: transform .25s ease, background .25s ease, opacity .25s ease; }

/* FAQ affordances */
.faq-item summary{ transition: color .25s ease; }
.faq-item summary:hover{ color: var(--gold); }
.faq-item[open] summary{ color: var(--charcoal); }

/* Cross links */
.cross a{ transition: background .25s ease, transform .25s ease; }
.cross a:hover h4{ color: var(--gold); }

/* Repairs is a service, not a product — it gets its own wide band at the foot of
   the grid so the twelve products stay a clean 4x3 and the service reads apart. */
.product-card.is-service{
  grid-column: 1 / -1;
  background: var(--linen-2);
  display:grid; grid-template-columns: minmax(220px, 320px) 1fr;
  gap: clamp(20px,3vw,40px); align-items:center;
  padding: clamp(20px,2.4vw,30px) 1.8em;
}
.product-card.is-service:hover{ background: var(--paper); }
.product-card.is-service img{ aspect-ratio: 5/3 !important; }
.product-card.is-service .svc{ display:flex; flex-direction:column; gap:.55em; }
.product-card.is-service h3{ margin:0; }
.product-card.is-service h3::after{
  content:""; display:block; width:26px; height:1px; background: var(--gold); margin-top:.55em;
}
.product-card.is-service p{ flex:none; max-width: 56ch; margin:0; }
@media (max-width: 700px){
  .product-card.is-service{ grid-template-columns: 1fr; padding: 2.1em 1.8em 1.9em; }
}

/* Footer legal strip: aligned to the same measure as the rest of the footer */
.footer .legal-links{
  max-width: var(--maxw); margin-left:auto; margin-right:auto;
  padding-left: var(--gutter); padding-right: var(--gutter);
}
.footer .legal-links a{ color: rgba(255,255,255,.72); }
.footer .legal-links a:hover{ color: var(--gold-light); }

/* Product-page lead photograph — offset to the text column, magazine style */
.pfig{
  max-width: var(--measure); margin: 0 0 clamp(30px,4vw,52px);
  border: 1px solid var(--line); padding: 10px; background: var(--paper);
}
.pfig .pfig-img{ overflow:hidden; display:block; }
.pfig img{ width:100%; height:auto; aspect-ratio: 4/3; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.pfig:hover img{ transform: scale(1.035); }
.pfig figcaption{
  font-size:.72rem; letter-spacing:.18em; text-transform:uppercase;
  color: var(--brown-mute); margin: .95em .2em .25em;
}
@media (prefers-reduced-motion:reduce){ .pfig img{ transition:none; } .pfig:hover img{ transform:none; } }

/* Every interactive element eases rather than snaps */
.navlink, .product-link, .footer a, .breadcrumb a, .nav-mobile a{ transition: color .25s ease; }
.product-link:hover{ color: var(--gold); }
.chat-send{ transition: background .25s ease, transform .25s ease; }
.chat-send:hover{ transform: translateY(-1px); }
.chat-chip{ transition: border-color .22s ease, background .22s ease, transform .22s ease; }
.chat-chip:hover{ transform: translateY(-1px); }

/* Selection accent */
::selection{ background: var(--gold-light); color: var(--ink); }

/* ============================================================
   THE LEAD LADDER
   Rung 1  The Bedfordview Ridge & Light Field Guide (guide.html)
   Rung 2  The window list — a ballpark, entirely optional
   Rung 3  The free expert measure — the dominant call to action
   Same tokens, same fonts, same magazine grammar as the rest of
   the site. Nothing here loads anything external.
   ============================================================ */

/* ---------- Guide hero: magazine split, photo offset ---------- */
.guide-hero{ background: var(--linen-2); padding: 0; }
.guide-hero-grid{
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(112px,13vw,168px) var(--gutter) clamp(48px,6vw,76px);
  display:grid; grid-template-columns: 1.02fr .98fr; gap: clamp(28px,5vw,64px);
  align-items:center;
}
.guide-hero-text .breadcrumb{ color: var(--brown-mute); margin-bottom: 1.4em; }
.guide-hero-text .breadcrumb a:hover{ color: var(--gold); }
.guide-hero h1{ font-size: clamp(2.3rem, 4.4vw, 3.9rem); margin-bottom:.34em; }
.guide-lead{ color: var(--charcoal-2); font-size: 1.06rem; max-width: 46ch; }
.guide-hero .hero-ctas{ margin: 1.7em 0 0; }
.guide-figure{ position:relative; margin:0; }
.guide-figure .frame{ border:1px solid var(--line); padding:10px; background: var(--paper); }
.guide-figure .pthumb{ margin:0; aspect-ratio: 16/10; }
.guide-figure figcaption{
  margin: .95em .2em 0; font-size:.72rem; letter-spacing:.18em;
  text-transform:uppercase; color: var(--brown-mute);
}
.guide-strip{ border-top:1px solid var(--line); background: var(--paper); padding:0; }
.guide-strip ul{
  max-width: var(--maxw); margin:0 auto; padding: 22px var(--gutter);
  display:grid; grid-template-columns: repeat(3,1fr); gap: 1em 2.2em;
}
.guide-strip li{ display:flex; gap:.6em; align-items:flex-start; font-size:.88rem; color: var(--charcoal-2); }
.guide-strip svg{ flex:none; width:17px; height:17px; margin-top:3px; color: var(--gold); }
@media (max-width: 900px){
  .guide-hero-grid{ grid-template-columns:1fr; padding-top: clamp(96px,22vw,130px); }
  .guide-figure{ order:-1; }
  .guide-strip ul{ grid-template-columns:1fr; }
}

/* ---------- Numbered editorial list ---------- */
.gnum{ counter-reset: gnum; border-top:1px solid var(--line); }
.gnum li{
  counter-increment: gnum;
  display:grid; grid-template-columns: 78px 1fr; gap: clamp(12px,2.4vw,28px);
  padding: clamp(22px,3vw,30px) 0; border-bottom:1px solid var(--line);
}
.gnum li::before{
  content: counter(gnum, decimal-leading-zero);
  font-family: var(--font-display); font-style: italic; font-size: 1.9rem;
  color: var(--gold); line-height: 1;
}
.gnum h3{ font-size: 1.18rem; margin-bottom:.32em; }
.gnum p{ color: var(--charcoal-2); font-size:.96rem; max-width: 64ch; margin:0; }
.gnum p + p{ margin-top:.7em; }
.section-ink .gnum, .section-ink .gnum li{ border-color: rgba(255,255,255,.14); }
.section-ink .gnum p{ color: rgba(255,255,255,.76); }
.section-ink .gnum li::before{ color: var(--gold-2); }
.section-ink .eyebrow{ color: var(--gold-2); }
.section-ink .eyebrow::before{ background: var(--gold-2); }
.section-ink .mag-head p{ color: rgba(255,255,255,.74); }
@media (max-width: 560px){
  .gnum li{ grid-template-columns: 1fr; gap:.3em; }
  .gnum li::before{ font-size:1.4rem; }
}

/* ---------- Full-bleed photo band carrying one line of argument ---------- */
.guide-band{ position:relative; min-height: 58svh; display:flex; align-items:flex-end; overflow:hidden; background: var(--ink); }
.guide-band > img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.guide-band-scrim{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(26,21,17,.18) 0%, rgba(26,21,17,.10) 42%, rgba(26,21,17,.82) 100%);
}
.guide-band-copy{ position:relative; z-index:2; padding-top: clamp(60px,10vw,140px); padding-bottom: clamp(34px,5vw,58px); }
.guide-band-copy h2{ color:#fff; max-width: 20ch; margin-bottom:.35em; }
.guide-band-copy p{ color: rgba(255,255,255,.84); max-width: 52ch; margin:0; }

/* ---------- Recommendation cards ---------- */
.recs{ display:grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border:1px solid var(--line); }
.rec{ background: var(--paper); padding: clamp(24px,3vw,34px) clamp(20px,2.6vw,32px); display:flex; flex-direction:column; gap:.75em; }
.rec--wide{ grid-column: 1 / -1; display:grid; grid-template-columns: .84fr 1.16fr; gap:0; padding:0; }
.rec--wide .rec-photo{ margin:0; height:100%; min-height:260px; overflow:hidden; }
.rec--wide .rec-photo img{ width:100%; height:100%; object-fit:cover; }
.rec--wide .rec-body{ padding: clamp(24px,3vw,34px) clamp(20px,2.6vw,32px); display:flex; flex-direction:column; gap:.75em; }
.rec h3{ font-size: 1.28rem; margin-bottom:0; }
.rec-where{
  font-size:.7rem; letter-spacing:.16em; text-transform:uppercase; font-weight:600;
  color: var(--gold); margin:0;
}
.rec p{ font-size:.94rem; line-height:1.66; color: var(--charcoal-2); margin:0; }
.rec p strong{ color: var(--ink); font-weight:600; }
.rec-catch{ border-left:2px solid var(--gold); padding-left: 1em; }
.rec-btns{ display:flex; flex-wrap:wrap; gap:.6em; margin-top:auto; padding-top:.6em; }
.rec-add{
  border:1px solid var(--line); background: var(--linen-2); color: var(--ink);
  font-size:.8rem; font-weight:600; letter-spacing:.01em;
  padding:.7em 1.15em; border-radius: 999px;
  transition: border-color .22s ease, background .22s ease, transform .22s ease, color .22s ease;
}
.rec-add:hover{ border-color: var(--gold); background: var(--paper); transform: translateY(-2px); }
.rec-add.is-added{ background: var(--gold); border-color: var(--gold); color: var(--ink); cursor:default; transform:none; }
.rec-add[disabled]{ opacity:1; }
@media (max-width: 860px){
  .recs{ grid-template-columns: 1fr; }
  .rec--wide{ grid-template-columns:1fr; }
  .rec--wide .rec-photo{ min-height:0; aspect-ratio:16/10; }
}
@media (prefers-reduced-motion: reduce){ .rec-add:hover{ transform:none; } }

/* ---------- The two ways forward ---------- */
.ways{ display:grid; grid-template-columns: 1.28fr .72fr; gap: clamp(18px,2.6vw,28px); align-items:stretch; }
.way{ padding: clamp(28px,3.4vw,40px) clamp(24px,3vw,36px); display:flex; flex-direction:column; gap:.85em; }
.way-main{ background: var(--ink); color: rgba(255,255,255,.82); }
.way-main h3{ color:#fff; font-size: clamp(1.5rem,2.4vw,1.95rem); }
.way-alt{ background: var(--paper); border:1px solid var(--line); }
.way-alt h3{ font-size:1.22rem; }
.way p{ margin:0; font-size:.95rem; }
.way-alt p{ color: var(--charcoal-2); }
.way-tag{ font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.22em; margin:0; }
.way-main .way-tag{ color: var(--gold-2); }
.way-alt .way-tag{ color: var(--brown-mute); }
.way .btn{ margin-top:auto; align-self:flex-start; }
@media (max-width: 820px){ .ways{ grid-template-columns:1fr; } }

/* ---------- Capture forms on the guide ---------- */
.lead-form{ background: var(--paper); border:1px solid var(--line); padding: clamp(24px,3.6vw,40px); }
.lead-form.is-sent{ display:none; }
.mini-cap{ display:grid; grid-template-columns: 1fr 1fr; gap: clamp(26px,5vw,64px); align-items:start; }
.mini-cap h2{ font-size: clamp(1.6rem,2.6vw,2.25rem); }
.mini-cap p{ color: var(--charcoal-2); }
@media (max-width: 860px){ .mini-cap{ grid-template-columns:1fr; } }

.f-grid{ display:grid; grid-template-columns:1fr 1fr; gap: 0 1em; }
@media (max-width: 640px){ .f-grid{ grid-template-columns:1fr; } }

.chk-set{ border:none; margin: .2em 0 1.2em; padding:0; }
.chk-set legend{ font-size:.82rem; font-weight:600; letter-spacing:.03em; color: var(--ink); padding:0; margin-bottom:.8em; }
.chk-set legend .opt{ font-weight:400; color: var(--brown-mute); }
.chk-grid{ display:grid; grid-template-columns:1fr 1fr; gap:.5em 1.2em; }
@media (max-width: 640px){ .chk-grid{ grid-template-columns:1fr; } }
.chk{ display:flex; align-items:flex-start; gap:.6em; font-size:.9rem; color: var(--charcoal-2); cursor:pointer; }
.chk input{ margin-top:.35em; accent-color: var(--gold); flex:none; }
.chk input:checked + span{ color: var(--ink); font-weight:600; }

.carry-note{
  font-size:.84rem; line-height:1.55; color: var(--ink);
  background: rgba(185,139,62,.10); border-left:2px solid var(--gold);
  padding:.8em 1em; margin:.7em 0 0;
}
.scarcity{
  font-size:.86rem; color: var(--brown-mute); margin:.9em 0 0;
  padding-left: 1em; border-left:1px solid var(--line);
}
.way-main .scarcity{ color: rgba(255,255,255,.62); border-left-color: rgba(255,255,255,.22); }

.lead-thanks{
  background: var(--paper); border:1px solid var(--line); border-left:3px solid var(--gold);
  padding: clamp(24px,3.4vw,36px);
}
.lead-thanks h3{ font-size:1.45rem; margin-bottom:.45em; }
.lead-thanks p{ color: var(--charcoal-2); font-size:.98rem; margin:0; }
.lead-thanks p + p{ margin-top:.8em; }
.lead-thanks a{ color: var(--gold); font-weight:600; text-decoration:underline; text-underline-offset:3px; }
.lead-thanks a:hover{ color: var(--ink); }

/* ---------- Rung 2: the window list ---------- */
.ballpark{ border:1px dashed var(--line); background: var(--linen-2); margin: .4em 0 1.4em; }
.ballpark > summary{
  list-style:none; cursor:pointer; padding: 1em 1.15em;
  font-size:.88rem; font-weight:600; color: var(--ink);
  display:flex; align-items:center; justify-content:space-between; gap:1em;
  transition: color .25s ease;
}
.ballpark > summary:hover{ color: var(--gold); }
.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(--gold); transition: transform .3s 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 1.15em 1.2em; }
.bp-note{ font-size:.86rem; line-height:1.62; color: var(--charcoal-2); margin: 0 0 1em; max-width: 70ch; }
.bp-scroll{ overflow-x:auto; }
.bp-table{ width:100%; border-collapse:collapse; min-width: 660px; }
.sr-only{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }
.bp-table th{
  text-align:left; font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.14em;
  color: var(--brown-mute); padding: 0 .6em .7em 0; border-bottom:1px solid var(--line);
}
.bp-table td{ padding:.45em .6em .45em 0; vertical-align:top; }
.bp-table input, .bp-table select{
  width:100%; font-size:.88rem; padding:.6em .7em;
  border:1px solid var(--line); background:#fff; color: var(--ink); border-radius:3px;
}
.bp-table input:focus, .bp-table select:focus{ border-color: var(--gold); outline:none; }
.bp-rm{ width:40px; }
.bp-remove{
  width:32px; height:36px; line-height:1; font-size:1.05rem;
  border:1px solid var(--line); background:#fff; color: var(--brown-mute); border-radius:3px;
  transition: border-color .2s ease, color .2s ease;
}
.bp-remove:hover{ border-color: var(--ink); color: var(--ink); }
.bp-actions{ display:flex; flex-wrap:wrap; align-items:center; gap:.8em; margin-top:1em; }
.bp-actions .btn{ padding:.72em 1.3em; font-size:.8rem; }
.bp-count{ font-size:.84rem; color: var(--brown-mute); 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(--paper);
    border:1px solid var(--line); border-radius:3px;
    padding:.85em .85em .3em; margin-bottom:.8em;
  }
  .bp-table td{ display:block; padding: 0 0 .7em; }
  .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(--brown-mute); margin-bottom:.35em;
  }
  .bp-rm{ width:auto; position:absolute; top:.5em; right:.5em; padding:0; }
}

/* Print: only the walk-the-house sheet.
   visibility, not display — so nothing depends on un-hiding an ancestor chain. */
@media print{
  body.bp-printing{ overflow: visible !important; background:#fff; }
  body.bp-printing *{ visibility: hidden !important; }
  body.bp-printing .ballpark.is-printing,
  body.bp-printing .ballpark.is-printing *{ visibility: visible !important; }
  body.bp-printing .reveal{ opacity:1 !important; transform:none !important; }
  body.bp-printing .ballpark.is-printing{
    position:absolute; left:0; top:0; width:100%;
    border:none; background:#fff; margin:0; padding:0;
  }
  body.bp-printing .ballpark.is-printing .bp-inner{ padding:0; }
  body.bp-printing .ballpark.is-printing > summary,
  body.bp-printing .ballpark.is-printing .bp-note,
  body.bp-printing .ballpark.is-printing .bp-actions,
  body.bp-printing .ballpark.is-printing .bp-count,
  body.bp-printing .ballpark.is-printing .bp-rm{ display:none !important; }
  body.bp-printing .ballpark.is-printing .bp-print-head{ display:block; margin-bottom:18px; }
  body.bp-printing .ballpark.is-printing .bp-print-head h2{ font-size:1.5rem; margin-bottom:.3em; }
  body.bp-printing .ballpark.is-printing .bp-print-head p{ font-size:.86rem; max-width:none; }
  body.bp-printing .ballpark.is-printing .bp-table{ min-width:0; }
  body.bp-printing .ballpark.is-printing .bp-table input,
  body.bp-printing .ballpark.is-printing .bp-table select{
    border:none; border-bottom:1px solid #999; border-radius:0; background:transparent;
  }
}

/* ---------- Sources ---------- */
.sources-list{ display:flex; flex-direction:column; gap:.75em; max-width: 78ch; }
.sources-list li{ position:relative; padding-left:1.3em; font-size:.9rem; line-height:1.58; color: var(--charcoal-2); }
.sources-list li::before{ content:""; position:absolute; left:0; top:.7em; width:9px; height:1px; background: var(--gold); }
.sources-list a{ color: var(--ink); text-decoration:underline; text-underline-offset:3px; }
.sources-list a:hover{ color: var(--gold); }

/* ---------- Guide promo block, used on the homepage and the area pages ---------- */
.guide-promo{ display:grid; grid-template-columns: .92fr 1.08fr; gap:0; border:1px solid var(--line); background: var(--paper); }
.guide-promo-photo{ position:relative; min-height:260px; overflow:hidden; }
.guide-promo-photo img{ width:100%; height:100%; object-fit:cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.guide-promo:hover .guide-promo-photo img{ transform: scale(1.04); }
.guide-promo-body{ padding: clamp(28px,4vw,48px) clamp(24px,3.4vw,44px); display:flex; flex-direction:column; justify-content:center; gap:.8em; }
.guide-promo-body h2{ font-size: clamp(1.6rem,2.6vw,2.3rem); margin-bottom:0; }
.guide-promo-body p{ color: var(--charcoal-2); margin:0; max-width: 52ch; }
.guide-promo-body .btn{ align-self:flex-start; margin-top:.5em; }
.guide-promo-meta{ font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.2em; color: var(--gold); margin:0; }
@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; }
  .guide-promo-photo img{ transition:none; }
}
/* the promo card stays a light card even when its section band is dark */
.section-ink .guide-promo{ border-color: rgba(255,255,255,.16); }
.section-ink .guide-promo h2{ color: var(--ink); }

/* Quiet third link in the hero CTA row */
.hero-inline-link{
  align-self:center; color: rgba(255,255,255,.85);
  font-size:.88rem; font-weight:500;
  border-bottom:1px solid rgba(255,255,255,.4); padding-bottom:2px;
  transition: color .25s ease, border-color .25s ease;
}
.hero-inline-link:hover{ color:#fff; border-color:#fff; }
