/* Copperleaf Blinds — site stylesheet
   Theme: golf-estate | Palette: deep forest green + parchment + antique copper
   Fonts: Merriweather (display) + Mulish (body/UI) */

:root{
  --ink:#1b271f;
  --pine:#233b2a;
  --pine-deep:#121f17;
  --moss:#5d7f66;
  --moss-pale:#d8e2da;
  --parchment:#f5edd9;
  --parchment-dim:#e8d8ac;
  --paper:#fffcf3;
  --copper:#b47c40;
  --copper-deep:#73593e;
  --line:rgba(27,39,31,0.16);
  --line-soft:rgba(27,39,31,0.09);
  --shadow:0 20px 54px -26px rgba(16,33,23,0.42);
  --font-display:'Merriweather','Iowan Old Style',Georgia,serif;
  --font-body:'Mulish','Segoe UI',Arial,sans-serif;
  --maxw:1240px;
  --section-pad:104px;
}

@media (max-width:780px){
  :root{ --section-pad:64px; }
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--parchment);
  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; }

.container{
  max-width:var(--maxw);
  margin-inline:auto;
  padding-inline:clamp(20px,5vw,48px);
}

h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--pine-deep);
  line-height:1.1;
  letter-spacing:-0.015em;
  margin:0;
  font-weight:700;
}

h2{ font-size:clamp(2rem,3.2vw,2.9rem); }
h3{ font-size:clamp(1.3rem,2vw,1.6rem); }

p{ margin:0; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-body);
  font-size:0.72rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.24em;
  color:var(--copper-deep);
}
.eyebrow::before{
  content:"";
  width:26px;
  height:1px;
  background:var(--copper-deep);
  display:inline-block;
}

.rule{
  height:1px;
  background:var(--line);
  transform:scaleX(0);
  transform-origin:left center;
  width:100%;
}
.rule.is-drawn{ transform:scaleX(1); transition:transform 1.1s cubic-bezier(.4,0,.2,1); }

a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,summary:focus-visible{
  outline:2px solid var(--copper-deep);
  outline-offset:3px;
  border-radius:2px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 28px;
  border-radius:999px;
  font-size:0.95rem;
  font-weight:700;
  letter-spacing:0.01em;
  border:1.5px solid transparent;
  transition:transform .25s cubic-bezier(.4,0,.2,1), background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--copper);
  color:var(--pine-deep);
  box-shadow:0 12px 28px -14px rgba(138,90,39,0.65);
}
.btn-primary:hover{ background:var(--copper-deep); color:var(--paper); }
.btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,0.55);
  color:var(--paper);
}
.btn-outline:hover{ background:rgba(255,255,255,0.14); border-color:#fff; }
.btn-outline.on-light{ border-color:var(--pine); color:var(--pine-deep); }
.btn-outline.on-light:hover{ background:var(--pine); color:var(--paper); }
.btn-block{ width:100%; justify-content:center; }

/* ---------- Nav ---------- */
.site-nav{
  position:fixed; inset:0 0 auto 0; z-index:60;
  padding:20px 0;
  transition:background-color .35s ease, box-shadow .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom:1px solid transparent;
}
.site-nav .container{ display:flex; align-items:center; justify-content:space-between; gap:20px; }
.site-nav.is-scrolled{
  background:rgba(245,237,217,0.94);
  backdrop-filter:blur(10px);
  box-shadow:0 8px 30px -18px rgba(16,33,23,0.4);
  padding:12px 0;
  border-color:var(--line-soft);
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{ flex:none; color:var(--paper); transition:color .35s ease; }
.site-nav.is-scrolled .brand-mark{ color:var(--pine-deep); }
.brand-mark .mark-slat{ stroke:currentColor; stroke-width:2; stroke-linecap:round; fill:none; }
.brand-mark .mark-sun{ fill:var(--copper); }
.footer-brand .brand-mark{ color:var(--paper); }
.mobile-panel .brand-mark{ color:var(--paper); }
.chat-head .brand-mark{ color:var(--paper); }
.brand-word{
  font-family:var(--font-display);
  font-size:1.26rem;
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--paper);
  transition:color .35s ease;
}
.site-nav.is-scrolled .brand-word{ color:var(--pine-deep); }

.nav-links{ display:none; align-items:center; gap:34px; }
.nav-links a{
  font-size:0.92rem; font-weight:600; color:var(--paper);
  position:relative; padding:4px 0; transition:color .3s ease;
}
.site-nav.is-scrolled .nav-links a{ color:var(--ink); }
.nav-links a::after{
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:1.5px;
  background:currentColor; transform:scaleX(0); transform-origin:left;
  transition:transform .3s ease;
}
.nav-links a:hover::after{ transform:scaleX(1); }
.nav-cta{ display:none; }
.nav-cta .btn{ padding:11px 22px; font-size:0.86rem; }

.nav-toggle{
  display:inline-flex; align-items:center; justify-content:center;
  width:42px; height:42px; border-radius:50%; border:1.5px solid rgba(255,255,255,0.5);
  background:transparent; color:var(--paper); transition:border-color .3s ease,color .3s ease;
}
.site-nav.is-scrolled .nav-toggle{ border-color:var(--line); color:var(--pine-deep); }
.nav-toggle svg{ width:18px; height:18px; }

.mobile-panel{
  position:fixed; inset:0; z-index:59; background:var(--pine-deep);
  display:flex; flex-direction:column; justify-content:center; gap:28px;
  padding:32px; transform:translateY(-100%); transition:transform .45s cubic-bezier(.4,0,.2,1);
}
.mobile-panel.is-open{ transform:translateY(0); }
.mobile-panel a{ font-family:var(--font-display); font-size:1.7rem; color:var(--paper); }
.mobile-panel .btn{ align-self:flex-start; margin-top:8px; }

@media (min-width:960px){
  .nav-links{ display:flex; }
  .nav-cta{ display:block; }
  .nav-toggle{ display:none; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative; min-height:100vh; display:flex; align-items:flex-end;
  overflow:hidden; background:var(--pine-deep);
}
.hero-media{ position:absolute; inset:0; overflow:hidden; }
.hero-media img{
  position:absolute; inset:0; width:100%; height:112%; top:-6%; object-fit:cover;
  transform:scale(1.02);
}
.hero-scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(12,22,15,0.55) 0%, rgba(12,22,15,0.16) 32%, rgba(12,22,15,0.34) 62%, rgba(9,17,12,0.93) 100%),
    linear-gradient(90deg, rgba(9,17,12,0.6) 0%, rgba(9,17,12,0.05) 46%);
}
.hero-content{
  position:relative; z-index:2; padding-block:180px 72px; width:100%;
}
.hero-content .eyebrow{ color:var(--copper); }
.hero-content .eyebrow::before{ background:var(--copper); }
.hero-title{
  color:var(--paper); font-size:clamp(2.4rem,5.4vw,4.3rem); max-width:15ch; margin-top:18px;
}
.hero-title .word{ display:inline-block; }
.hero-sub{
  color:rgba(245,237,217,0.86); font-size:1.08rem; line-height:1.65; max-width:46ch; margin-top:22px;
}
.hero-ctas{ display:flex; flex-wrap:wrap; gap:16px; margin-top:34px; }
.hero-trust{
  display:flex; flex-wrap:wrap; gap:28px; margin-top:46px; padding-top:28px;
  border-top:1px solid rgba(245,237,217,0.24);
}
.trust-item{ display:flex; align-items:flex-start; gap:10px; max-width:26ch; }
.trust-item svg{ flex:none; width:20px; height:20px; margin-top:2px; color:var(--copper); }
.trust-item span{ color:rgba(245,237,217,0.92); font-size:0.9rem; font-weight:500; line-height:1.45; }

/* ---------- Marquee ---------- */
.marquee{
  background:var(--pine-deep); color:var(--parchment); overflow:hidden;
  padding-block:18px; border-block:1px solid rgba(245,237,217,0.14);
  position:relative; z-index:3;
}
.marquee-track{
  display:flex; width:max-content; gap:0;
  animation:marquee 36s linear infinite;
}
.marquee:hover .marquee-track{ animation-play-state:paused; }
.marquee-item{
  display:flex; align-items:center; gap:14px;
  font-family:var(--font-display); font-style:italic; font-size:1.04rem; color:var(--moss-pale);
  padding-inline:22px; white-space:nowrap;
}
.marquee-item svg{ width:12px; height:12px; color:var(--copper); flex:none; }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }
@media (prefers-reduced-motion: reduce){
  .marquee{ overflow-x:auto; }
  .marquee-track{ animation:none; }
}

/* ---------- Sections ---------- */
.section{ padding-block:var(--section-pad); position:relative; }
.section-head{ max-width:640px; margin-bottom:52px; }
.section-head h2{ margin-top:16px; }
.section-head p{ margin-top:18px; color:#3c4d40; font-size:1.05rem; max-width:56ch; }
.section-alt{ background:var(--parchment-dim); }
.reveal{ opacity:1; }

/* ---------- Product grid ---------- */
.product-grid{
  display:grid; grid-template-columns:repeat(1,1fr); gap:1px;
  background:var(--line); border:1px solid var(--line); border-radius:18px; overflow:hidden;
}
@media (min-width:640px){ .product-grid{ grid-template-columns:repeat(2,1fr);} }
@media (min-width:980px){ .product-grid{ grid-template-columns:repeat(3,1fr);} }
.product-card{
  background:var(--paper); padding:34px 28px; display:flex; flex-direction:column; gap:16px;
  transition:background-color .3s ease, transform .3s ease;
}
.product-card:hover{ background:var(--parchment-dim); transform:translateY(-3px); }
.product-icon{ width:46px; height:46px; color:var(--pine); }
.product-card h3{ color:var(--pine-deep); }
.product-card p{ color:#48594c; font-size:0.95rem; line-height:1.6; }
.product-link{
  margin-top:auto; display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:0.86rem;
  color:var(--copper-deep); letter-spacing:0.02em;
}
.product-link svg{ width:14px; height:14px; transition:transform .25s ease; }
.product-card:hover .product-link svg{ transform:translateX(4px); }

/* ---------- Editorial photo section ---------- */
.editorial{
  display:grid; grid-template-columns:1fr; gap:18px;
}
@media (min-width:860px){
  .editorial{ grid-template-columns:1.35fr 1fr; align-items:stretch; }
  .editorial-stack{ display:flex; flex-direction:column; gap:18px; }
}
.editorial-figure{
  position:relative; border-radius:18px; overflow:hidden; min-height:280px; box-shadow:var(--shadow);
}
.editorial-figure.tall{ min-height:520px; }
.editorial-figure img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.editorial-cap{
  position:absolute; left:0; right:0; bottom:0; padding:26px 24px 22px;
  background:linear-gradient(0deg, rgba(9,17,12,0.82) 0%, rgba(9,17,12,0) 100%);
}
.editorial-cap .eyebrow{ color:var(--copper); }
.editorial-cap .eyebrow::before{ background:var(--copper); }
.editorial-cap p{ color:var(--paper); font-family:var(--font-display); font-size:1.16rem; margin-top:8px; max-width:34ch; }

/* ---------- Locale storytelling + signature moment ---------- */
.locale{ background:var(--pine-deep); color:var(--parchment); position:relative; overflow:hidden; }
.locale .eyebrow{ color:var(--copper); }
.locale .eyebrow::before{ background:var(--copper); }
.locale .section-head h2{ color:var(--paper); }
.locale .section-head p{ color:rgba(245,237,217,0.78); }
.locale-grid{ display:grid; grid-template-columns:1fr; gap:40px; }
@media (min-width:900px){ .locale-grid{ grid-template-columns:1fr 1fr; gap:64px; align-items:center; } }
.locale-list{ display:flex; flex-direction:column; gap:26px; }
.locale-item{ display:flex; gap:16px; }
.locale-item .num{
  font-family:var(--font-display); font-size:1rem; color:var(--copper); flex:none; width:30px; padding-top:2px;
}
.locale-item h4{ color:var(--paper); font-family:var(--font-body); font-size:1rem; font-weight:800; letter-spacing:0.01em; }
.locale-item p{ color:rgba(245,237,217,0.75); font-size:0.95rem; margin-top:6px; line-height:1.65; }

/* Signature moment: louvre slats tilting open over a fairway scene */
.louvre-wrap{ position:relative; }
.louvre-frame{
  position:relative; width:100%; border-radius:18px; overflow:hidden;
  box-shadow:0 26px 60px -22px rgba(0,0,0,0.55);
}
.louvre-scene{ width:100%; height:auto; display:block; }
.scene-sky{ fill:url(#skyFade); }
.scene-hill{ fill:var(--pine); opacity:0.55; }
.scene-fairway{ fill:var(--pine); }
.scene-green{ fill:var(--moss-pale); opacity:0.9; }
.scene-bunker{ fill:var(--parchment-dim); }
.scene-flagstick{ stroke:var(--paper); stroke-width:2; stroke-linecap:round; }
.scene-flag{ fill:var(--copper); }
.scene-sun{ fill:var(--copper); opacity:0.9; }
.scene-tree{ fill:var(--pine-deep); opacity:0.85; }
.louvre-slat{
  fill:var(--parchment);
  transform-box:fill-box;
  transform-origin:50% 50%;
}
.louvre-caption{ margin-top:18px; font-size:0.82rem; color:rgba(245,237,217,0.6); font-style:italic; font-family:var(--font-display); text-align:center; }

/* ---------- Process ---------- */
.process-grid{ display:grid; grid-template-columns:1fr; gap:36px; }
@media (min-width:760px){ .process-grid{ grid-template-columns:repeat(4,1fr); gap:28px; } }
.process-step{ position:relative; padding-top:26px; }
.process-step::before{
  content:""; position:absolute; top:0; left:0; width:44px; height:1px; background:var(--copper-deep);
}
.process-num{ font-family:var(--font-display); font-size:2.3rem; color:var(--moss); font-weight:700; }
.process-step h3{ margin-top:10px; color:var(--pine-deep); font-size:1.12rem; }
.process-step p{ margin-top:10px; color:#48594c; font-size:0.95rem; line-height:1.65; }

/* ---------- Area chips ---------- */
.area-chip-row{ display:flex; flex-wrap:wrap; gap:14px; }
.area-chip{
  display:inline-flex; align-items:center; gap:10px; padding:14px 22px; border-radius:999px;
  border:1.5px solid var(--line); background:var(--paper); font-weight:700; font-size:0.92rem; color:var(--pine-deep);
  transition:border-color .25s ease, background-color .25s ease, transform .25s ease;
}
.area-chip:hover{ border-color:var(--copper-deep); background:var(--parchment-dim); transform:translateY(-2px); }
.area-chip svg{ width:14px; height:14px; color:var(--copper-deep); }

/* ---------- FAQ ---------- */
.faq-list{ max-width:800px; display:flex; flex-direction:column; }
.faq-item{ border-bottom:1px solid var(--line); padding-block:6px; }
.faq-item summary{
  list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding-block:22px; font-family:var(--font-display); font-size:1.1rem; color:var(--pine-deep);
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-toggle{
  flex:none; width:28px; height:28px; border-radius:50%; border:1.5px solid var(--copper-deep); position:relative;
}
.faq-toggle::before,.faq-toggle::after{
  content:""; position:absolute; top:50%; left:50%; background:var(--copper-deep);
  transition:transform .3s ease;
}
.faq-toggle::before{ width:12px; height:1.5px; transform:translate(-50%,-50%); }
.faq-toggle::after{ width:1.5px; height:12px; transform:translate(-50%,-50%); }
.faq-item[open] .faq-toggle::after{ transform:translate(-50%,-50%) rotate(90deg); opacity:0; }
.faq-item[open] summary{ color:var(--copper-deep); }
.faq-body{ padding-bottom:24px; max-width:64ch; color:#48594c; font-size:0.98rem; line-height:1.7; }

/* ---------- Closing CTA ---------- */
.cta-close{
  position:relative; background:var(--pine-deep); color:var(--parchment); overflow:hidden;
  text-align:center;
}
.cta-glow{
  position:absolute; inset:-20%; z-index:0; pointer-events:none;
  background:
    radial-gradient(closest-side, rgba(180,124,64,0.35), transparent 70%) 20% 30% / 55% 55% no-repeat,
    radial-gradient(closest-side, rgba(93,127,102,0.4), transparent 70%) 78% 68% / 60% 60% no-repeat;
  filter:blur(30px);
  animation:drift 22s ease-in-out infinite alternate;
}
@keyframes drift{
  0%{ transform:translate(-3%, -2%) scale(1); }
  50%{ transform:translate(3%, 4%) scale(1.08); }
  100%{ transform:translate(-2%, 3%) scale(1.02); }
}
@media (prefers-reduced-motion: reduce){ .cta-glow{ animation:none; } }
.cta-close .container{ position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; }
.cta-close h2{ color:var(--paper); max-width:17ch; }
.cta-close p{ color:rgba(245,237,217,0.78); margin-top:18px; max-width:52ch; font-size:1.05rem; }
.cta-close .hero-ctas{ justify-content:center; margin-top:32px; }

/* ---------- Enquiry form ---------- */
.enquire-wrap{ display:grid; grid-template-columns:1fr; gap:48px; }
@media (min-width:900px){ .enquire-wrap{ grid-template-columns:0.85fr 1.15fr; } }
.enquire-side p{ color:#48594c; margin-top:16px; font-size:1rem; line-height:1.7; max-width:38ch; }
.enquire-side .locale-list{ margin-top:32px; }
.enquire-side .locale-item .num{ color:var(--copper-deep); }
.enquire-side .locale-item h4{ color:var(--pine-deep); }
.enquire-side .locale-item p{ color:#48594c; }

.form-card{
  background:var(--paper); border:1px solid var(--line); border-radius:20px; padding:clamp(24px,4vw,42px);
  box-shadow:var(--shadow);
}
.form-row{ display:grid; grid-template-columns:1fr; gap:18px; margin-bottom:18px; }
@media (min-width:560px){ .form-row.two{ grid-template-columns:1fr 1fr; } }
.field label{
  display:block; font-size:0.8rem; font-weight:700; letter-spacing:0.03em; text-transform:uppercase;
  color:var(--pine-deep); margin-bottom:8px;
}
.field input,.field select,.field textarea{
  width:100%; padding:13px 16px; border-radius:10px; border:1.5px solid var(--line); background:var(--parchment);
  color:var(--ink); transition:border-color .25s ease, background-color .25s ease;
}
.field input:focus,.field select:focus,.field textarea:focus{ border-color:var(--copper-deep); background:var(--paper); outline:none; }
.field textarea{ resize:vertical; min-height:110px; }
.form-popia{ font-size:0.82rem; color:#576a5b; margin-top:16px; line-height:1.6; }
.form-note{ font-size:0.82rem; color:var(--pine); margin-top:14px; display:none; }
.form-note.is-visible{ display:block; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--ink); color:rgba(245,237,217,0.86); padding-block:64px 34px; }
.footer-top{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:40px; padding-bottom:44px; border-bottom:1px solid rgba(245,237,217,0.14); }
.footer-brand .brand-word{ color:var(--paper); }
.footer-brand p{ margin-top:14px; max-width:34ch; color:rgba(245,237,217,0.6); font-size:0.95rem; line-height:1.65; }
.footer-cols{ display:flex; gap:56px; flex-wrap:wrap; }
.footer-col h5{ font-size:0.78rem; text-transform:uppercase; letter-spacing:0.2em; color:var(--copper); margin-bottom:16px; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:0.92rem; color:rgba(245,237,217,0.75); transition:color .25s ease; }
.footer-col a:hover{ color:var(--paper); }
.footer-bottom{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:14px; padding-top:28px; font-size:0.82rem; color:rgba(245,237,217,0.5); }
.footer-bottom .popia{ max-width:58ch; line-height:1.6; }

/* ---------- Sub-page hero (products/areas) ---------- */
.page-hero{
  padding-block:170px 90px; background:var(--pine-deep); color:var(--parchment); position:relative; overflow:hidden;
}
.page-hero::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(closest-side, rgba(93,127,102,0.28), transparent 70%) 85% -10% / 60% 60% no-repeat;
}
.page-hero .container{ position:relative; z-index:1; }
.page-hero .eyebrow{ color:var(--copper); }
.page-hero .eyebrow::before{ background:var(--copper); }
.page-hero h1{ color:var(--paper); margin-top:16px; font-size:clamp(2.1rem,4.4vw,3.3rem); max-width:19ch; }
.page-hero p.lead{ color:rgba(245,237,217,0.82); margin-top:20px; max-width:56ch; font-size:1.05rem; line-height:1.7; }
.page-hero .hero-ctas{ margin-top:30px; }
.breadcrumb{ display:flex; gap:8px; align-items:center; font-size:0.82rem; color:rgba(245,237,217,0.6); margin-bottom:10px; }
.breadcrumb a{ color:rgba(245,237,217,0.85); }
.breadcrumb a:hover{ color:var(--copper); }

.content-block{ max-width:70ch; }
.content-block p{ color:#3c4d40; font-size:1.02rem; line-height:1.75; margin-top:18px; }
.content-block h2{ margin-top:0; }
.content-block ul.tick-list{ margin-top:20px; display:flex; flex-direction:column; gap:14px; }
.content-block ul.tick-list li{ display:flex; gap:12px; align-items:flex-start; color:#3c4d40; font-size:0.98rem; }
.content-block ul.tick-list svg{ width:19px; height:19px; color:var(--copper-deep); flex:none; margin-top:3px; }

.spec-figure{ border-radius:18px; overflow:hidden; box-shadow:var(--shadow); }
.spec-figure img{ width:100%; height:100%; object-fit:cover; }

.two-col{ display:grid; grid-template-columns:1fr; gap:44px; }
@media (min-width:900px){ .two-col{ grid-template-columns:1.1fr 0.9fr; align-items:start; } }
@media (min-width:900px){ .two-col.reverse{ grid-template-columns:0.9fr 1.1fr; } }
@media (min-width:900px){ .two-col.reverse .spec-figure{ order:-1; } }

.mini-cta{
  background:var(--parchment-dim); border-radius:20px; padding:clamp(28px,4vw,44px); display:flex; flex-wrap:wrap;
  justify-content:space-between; align-items:center; gap:24px; margin-top:12px;
}
.mini-cta h3{ max-width:22ch; }
.mini-cta p{ color:#48594c; margin-top:8px; max-width:40ch; }

/* ---------- Chat widget ---------- */
.chat-launch{
  position:fixed; right:22px; bottom:22px; z-index:80; width:60px; height:60px; border-radius:50%;
  background:var(--copper); color:var(--pine-deep); border:none; display:flex; align-items:center; justify-content:center;
  box-shadow:0 16px 34px -14px rgba(16,33,23,0.55); transition:transform .3s cubic-bezier(.4,0,.2,1), background-color .3s ease;
}
.chat-launch:hover{ transform:translateY(-3px) scale(1.04); background:var(--copper-deep); color:var(--paper); }
.chat-launch svg{ width:26px; height:26px; }
.chat-launch .chat-x{ display:none; }
.chat-launch.is-open .chat-bubble{ display:none; }
.chat-launch.is-open .chat-x{ display:block; }

.chat-panel{
  position:fixed; right:22px; bottom:94px; z-index:80; width:min(370px,calc(100vw - 40px));
  max-height:min(560px,calc(100vh - 140px)); background:var(--paper); border-radius:20px; overflow:hidden;
  box-shadow:0 30px 70px -20px rgba(9,17,12,0.5); border:1px solid var(--line);
  display:flex; flex-direction:column; opacity:0; transform:translateY(16px) scale(0.98); pointer-events:none;
  transition:opacity .3s ease, transform .3s cubic-bezier(.4,0,.2,1);
}
.chat-panel.is-open{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
.chat-head{ background:var(--pine-deep); color:var(--paper); padding:18px 20px; display:flex; align-items:center; gap:12px; }
.chat-head .brand-mark{ width:30px; height:30px; }
.chat-head-text strong{ font-family:var(--font-display); font-size:1rem; display:block; }
.chat-head-text span{ font-size:0.76rem; color:var(--moss-pale); }
.chat-body{ flex:1; overflow-y:auto; padding:18px 16px; display:flex; flex-direction:column; gap:12px; background:var(--parchment); }
.chat-msg{ max-width:86%; padding:11px 14px; border-radius:14px; font-size:0.9rem; line-height:1.5; }
.chat-msg.bot{ background:var(--paper); border:1px solid var(--line); border-bottom-left-radius:4px; align-self:flex-start; color:var(--ink); }
.chat-msg.user{ background:var(--pine); color:var(--paper); border-bottom-right-radius:4px; align-self:flex-end; }
.chat-popia{ font-size:0.72rem; color:#576a5b; background:var(--parchment-dim); border-radius:10px; padding:9px 11px; align-self:flex-start; max-width:92%; }
.chat-chips{ display:flex; flex-wrap:wrap; gap:8px; align-self:flex-start; max-width:100%; }
.chat-chip{
  border:1.5px solid var(--pine); background:var(--paper); color:var(--pine-deep); border-radius:999px;
  padding:8px 14px; font-size:0.82rem; font-weight:700; transition:background-color .25s ease, color .25s ease;
}
.chat-chip:hover{ background:var(--pine); color:var(--paper); }
.chat-form{ display:flex; flex-direction:column; gap:8px; align-self:stretch; background:var(--paper); border:1px solid var(--line); border-radius:14px; padding:12px; }
.chat-form input{ padding:10px 12px; border-radius:8px; border:1.5px solid var(--line); background:var(--parchment); font-size:0.88rem; }
.chat-form input:focus{ outline:none; border-color:var(--copper-deep); }
.chat-form button{ margin-top:2px; }
.chat-foot{ padding:12px 16px; border-top:1px solid var(--line); font-size:0.72rem; color:#576a5b; background:var(--paper); text-align:center; }

@media (max-width:480px){
  .chat-panel{ right:12px; bottom:86px; }
  .chat-launch{ right:14px; bottom:14px; }
}

.visually-hidden{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* 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}

/* ---------- Blind Repairs service card (closes the product grid) ---------- */
.product-card .pthumb{ margin:0; border-radius:10px; }
.product-card--repairs .repairs-body{ display:flex; flex-direction:column; gap:14px; align-items:flex-start; }
.product-card--repairs .repairs-body p{ max-width:56ch; }
@media (min-width:640px){
  .product-card--repairs{ grid-column:1 / -1; flex-direction:row; align-items:center; gap:34px; }
  .product-card--repairs .pthumb{ width:min(300px,40%)!important; flex:none; }
}

/* ============================================================
   THE LEAD LADDER — guide.html + enquiry ballpark/close styles
   (all colours via existing tokens; no new palette values)
   ============================================================ */

/* Guide lead figure under the page hero */
.guide-lead{ margin-top:8px; }
.guide-lead .spec-figure{ margin:0; }
.guide-figcap{ margin-top:12px; font-size:0.86rem; color:#576a5b; font-style:italic; font-family:var(--font-display); max-width:64ch; }

/* Prose blocks inside the guide */
.guide-prose{ max-width:70ch; }
.guide-prose h3{ color:var(--pine-deep); margin-top:40px; font-size:clamp(1.25rem,2vw,1.55rem); }
.guide-prose h3:first-child{ margin-top:0; }
.guide-prose p{ color:#3c4d40; font-size:1.03rem; line-height:1.78; margin-top:16px; }
.guide-prose p + p{ margin-top:14px; }
.guide-prose strong{ color:var(--pine-deep); font-weight:800; }
.guide-prose a{ color:var(--copper-deep); text-decoration:underline; text-underline-offset:2px; }
.guide-meta{ display:flex; flex-wrap:wrap; gap:10px 22px; margin-top:22px; font-size:0.82rem; color:#576a5b; }
.guide-meta span{ display:inline-flex; align-items:center; gap:8px; }
.guide-meta svg{ width:15px; height:15px; color:var(--copper-deep); flex:none; }

/* Elevation cards (N / W / E / S) */
.elevation-grid{ display:grid; grid-template-columns:1fr; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:18px; overflow:hidden; }
@media (min-width:640px){ .elevation-grid{ grid-template-columns:repeat(2,1fr); } }
.elevation-card{ background:var(--paper); padding:28px 26px; display:flex; flex-direction:column; gap:12px; }
.elevation-card .compass{
  display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:50%;
  border:1.5px solid var(--copper-deep); color:var(--copper-deep); font-family:var(--font-display);
  font-weight:700; font-size:1.05rem; letter-spacing:0.02em; flex:none;
}
.elevation-card h4{ color:var(--pine-deep); font-family:var(--font-body); font-size:1.05rem; font-weight:800; }
.elevation-card p{ color:#48594c; font-size:0.96rem; line-height:1.65; }
.elevation-card .lead-note{ color:var(--copper-deep); font-weight:700; font-size:0.9rem; }

/* Product recommendation cards with reasoning + trade-off + add-to-plan */
.reco-list{ display:flex; flex-direction:column; gap:26px; }
.reco-card{
  display:grid; grid-template-columns:1fr; gap:0; background:var(--paper);
  border:1px solid var(--line); border-radius:18px; overflow:hidden; box-shadow:var(--shadow);
}
@media (min-width:820px){ .reco-card{ grid-template-columns:0.9fr 1.1fr; } .reco-card.flip{ grid-template-columns:1.1fr 0.9fr; } .reco-card.flip .reco-figure{ order:2; } }
.reco-figure{ position:relative; min-height:240px; overflow:hidden; background:rgba(27,39,31,0.05); }
.reco-figure img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .7s cubic-bezier(.2,.7,.2,1); }
.reco-card:hover .reco-figure img{ transform:scale(1.045); }
@media (prefers-reduced-motion:reduce){ .reco-figure img{ transition:none; } .reco-card:hover .reco-figure img{ transform:none; } }
.reco-body{ padding:30px 30px 28px; display:flex; flex-direction:column; gap:14px; }
.reco-body h3{ color:var(--pine-deep); }
.reco-for{ font-size:0.74rem; font-weight:800; text-transform:uppercase; letter-spacing:0.16em; color:var(--copper-deep); }
.reco-body p{ color:#48594c; font-size:0.98rem; line-height:1.68; }
.reco-tradeoff{
  background:var(--parchment); border-left:2px solid var(--copper); border-radius:0 10px 10px 0;
  padding:12px 16px; font-size:0.92rem; color:#3c4d40; line-height:1.6;
}
.reco-tradeoff strong{ color:var(--pine-deep); }
.reco-add{
  align-self:flex-start; margin-top:4px; display:inline-flex; align-items:center; gap:9px;
  padding:11px 20px; border-radius:999px; border:1.5px solid var(--pine); background:transparent;
  color:var(--pine-deep); font-weight:700; font-size:0.85rem; letter-spacing:0.01em;
  transition:background-color .25s ease, color .25s ease, border-color .25s ease;
}
.reco-add svg{ width:16px; height:16px; }
.reco-add:hover{ background:var(--pine); color:var(--paper); }
.reco-add.is-added{ background:var(--pine); color:var(--paper); border-color:var(--pine); }
.reco-add .add-tick{ display:none; }
.reco-add.is-added .add-plus{ display:none; }
.reco-add.is-added .add-tick{ display:inline-flex; }

/* "What we'd still check on site" list */
.check-list{ display:grid; grid-template-columns:1fr; gap:16px; max-width:820px; }
@media (min-width:720px){ .check-list{ grid-template-columns:1fr 1fr; } }
.check-item{ display:flex; gap:14px; align-items:flex-start; }
.check-item .check-ico{
  flex:none; width:34px; height:34px; border-radius:9px; background:var(--parchment-dim);
  display:inline-flex; align-items:center; justify-content:center; color:var(--copper-deep); font-family:var(--font-display); font-weight:700;
}
.check-item h4{ color:var(--pine-deep); font-family:var(--font-body); font-size:0.98rem; font-weight:800; }
.check-item p{ color:#48594c; font-size:0.92rem; line-height:1.6; margin-top:4px; }

/* Personalised-guide capture band (Rung 1 capture, mid + end) */
.capture-band{
  background:var(--parchment-dim); border:1px solid var(--line); border-radius:20px;
  padding:clamp(24px,4vw,40px); display:grid; grid-template-columns:1fr; gap:26px;
}
@media (min-width:860px){ .capture-band{ grid-template-columns:0.9fr 1.1fr; align-items:center; } }
.capture-band .capture-copy h3{ color:var(--pine-deep); max-width:20ch; }
.capture-band .capture-copy p{ color:#48594c; margin-top:12px; font-size:0.98rem; line-height:1.7; max-width:44ch; }
.capture-form .form-row{ margin-bottom:14px; }
.capture-note{ font-size:0.84rem; color:var(--pine); margin-top:12px; display:none; }
.capture-note.is-visible{ display:block; }
.capture-popia{ font-size:0.78rem; color:#576a5b; margin-top:12px; line-height:1.55; }

/* Two ways forward — plan grid (measure form + ballpark) */
.plan-grid{ display:grid; grid-template-columns:1fr; gap:34px; }
@media (min-width:980px){ .plan-grid{ grid-template-columns:1.05fr 0.95fr; align-items:start; } }
.plan-pair-note{
  background:var(--paper); border:1px dashed var(--copper); border-radius:14px;
  padding:16px 18px; font-size:0.94rem; color:#3c4d40; line-height:1.62; margin-top:18px;
}
.plan-pair-note strong{ color:var(--pine-deep); }
.scarcity-line{ font-size:0.9rem; color:#576a5b; margin-top:16px; display:flex; gap:9px; align-items:flex-start; line-height:1.55; }
.scarcity-line svg{ width:17px; height:17px; color:var(--copper-deep); flex:none; margin-top:2px; }

/* Interest checkbox grid (Rung 3) */
.interest-grid{ display:grid; grid-template-columns:1fr; gap:10px; }
@media (min-width:520px){ .interest-grid{ grid-template-columns:1fr 1fr; } }
.interest-opt{
  display:flex; align-items:center; gap:11px; padding:11px 14px; border:1.5px solid var(--line);
  border-radius:10px; background:var(--parchment); cursor:pointer; font-size:0.9rem; color:var(--ink);
  transition:border-color .2s ease, background-color .2s ease;
}
.interest-opt:hover{ border-color:var(--copper-deep); }
.interest-opt input{ width:18px; height:18px; accent-color:var(--pine); flex:none; }
.interest-opt.is-checked{ border-color:var(--pine); background:var(--paper); }

/* Ballpark tool */
.ballpark{ background:var(--paper); border:1px solid var(--line); border-radius:20px; padding:clamp(22px,3.4vw,34px); box-shadow:var(--shadow); }
.ballpark-head h3{ color:var(--pine-deep); }
.ballpark-head p{ color:#48594c; font-size:0.94rem; line-height:1.6; margin-top:8px; }
.ballpark-table{ margin-top:20px; display:flex; flex-direction:column; gap:12px; }
.ballpark-row{
  display:grid; grid-template-columns:1.1fr 0.8fr 0.8fr 1fr 1.2fr auto; gap:10px; align-items:end;
}
.ballpark-row .bp-field label{ display:block; font-size:0.68rem; font-weight:800; letter-spacing:0.04em; text-transform:uppercase; color:var(--pine-deep); margin-bottom:5px; }
.ballpark-row input, .ballpark-row select{
  width:100%; padding:10px 11px; border-radius:9px; border:1.5px solid var(--line); background:var(--parchment); color:var(--ink); font-size:0.9rem;
}
.ballpark-row input:focus, .ballpark-row select:focus{ outline:none; border-color:var(--copper-deep); background:var(--paper); }
.bp-remove{
  width:40px; height:40px; border-radius:9px; border:1.5px solid var(--line); background:var(--parchment);
  color:var(--copper-deep); display:inline-flex; align-items:center; justify-content:center; flex:none; transition:border-color .2s ease, color .2s ease;
}
.bp-remove:hover{ border-color:var(--copper-deep); color:var(--pine-deep); }
.bp-remove svg{ width:16px; height:16px; }
.ballpark-actions{ display:flex; flex-wrap:wrap; gap:12px; margin-top:18px; }
.bp-add{
  display:inline-flex; align-items:center; gap:9px; padding:12px 20px; border-radius:999px;
  border:1.5px solid var(--pine); background:transparent; color:var(--pine-deep); font-weight:700; font-size:0.88rem;
  transition:background-color .2s ease, color .2s ease;
}
.bp-add:hover{ background:var(--pine); color:var(--paper); }
.bp-add svg{ width:16px; height:16px; }
.bp-print{
  display:inline-flex; align-items:center; gap:9px; padding:12px 20px; border-radius:999px;
  border:1.5px solid var(--line); background:transparent; color:var(--pine-deep); font-weight:700; font-size:0.88rem;
  transition:border-color .2s ease, background-color .2s ease;
}
.bp-print:hover{ border-color:var(--copper-deep); background:var(--parchment); }
.bp-print svg{ width:16px; height:16px; }
.bp-count{ margin-top:14px; font-size:0.86rem; color:#576a5b; }
.bp-count strong{ color:var(--pine-deep); }

/* Ballpark: stacked cards under 640px */
@media (max-width:639px){
  .ballpark-row{
    grid-template-columns:1fr 1fr; gap:12px; padding:16px; border:1px solid var(--line);
    border-radius:12px; background:var(--parchment); position:relative;
  }
  .ballpark-row .bp-field.bp-room{ grid-column:1 / -1; }
  .ballpark-row .bp-field.bp-product{ grid-column:1 / -1; }
  .bp-remove{ position:absolute; top:10px; right:10px; width:32px; height:32px; }
  .ballpark-row .bp-field.bp-room label{ padding-right:44px; }
}

/* Sources list at the foot of the guide */
.sources-list{ max-width:760px; display:flex; flex-direction:column; gap:12px; margin-top:8px; }
.sources-list li{ font-size:0.88rem; color:#48594c; line-height:1.55; padding-left:18px; position:relative; }
.sources-list li::before{ content:""; position:absolute; left:0; top:9px; width:7px; height:7px; border-radius:50%; background:var(--copper); }
.sources-list a{ color:var(--copper-deep); text-decoration:underline; word-break:break-word; }

/* Hero secondary guide link (homepage) */
.hero-guide-link{ margin-top:16px; }
.hero-guide-link a{
  color:var(--parchment); font-size:0.9rem; font-weight:600; border-bottom:1px solid rgba(180,124,64,0.6);
  padding-bottom:2px; transition:color .25s ease, border-color .25s ease;
}
.hero-guide-link a:hover{ color:var(--copper); border-color:var(--copper); }

/* Guide promo band on the homepage */
.guide-promo{ position:relative; overflow:hidden; }
.promo-motif{ display:flex; gap:7px; align-items:flex-end; height:64px; margin-bottom:20px; }
.promo-motif span{ display:block; width:8px; border-radius:4px; background:var(--copper); opacity:0.85; }
.promo-motif span:nth-child(1){ height:26px; } .promo-motif span:nth-child(2){ height:44px; }
.promo-motif span:nth-child(3){ height:64px; background:var(--pine); opacity:1; }
.promo-motif span:nth-child(4){ height:40px; } .promo-motif span:nth-child(5){ height:54px; background:var(--pine); opacity:1; }
.promo-motif span:nth-child(6){ height:30px; }
.promo-points{ display:flex; flex-direction:column; gap:12px; margin-top:8px; }
.promo-points li{ display:flex; gap:11px; align-items:flex-start; color:#3c4d40; font-size:0.96rem; line-height:1.5; }
.promo-points svg{ width:18px; height:18px; color:var(--copper-deep); flex:none; margin-top:3px; }
.guide-promo .promo-inner{
  display:grid; grid-template-columns:1fr; gap:30px; align-items:center;
  background:var(--paper); border:1px solid var(--line); border-radius:22px; padding:clamp(26px,4vw,46px); box-shadow:var(--shadow);
}
@media (min-width:880px){ .guide-promo .promo-inner{ grid-template-columns:1.15fr 0.85fr; } }
.guide-promo .promo-copy h2{ max-width:18ch; }
.guide-promo .promo-copy p{ color:#48594c; margin-top:16px; font-size:1.02rem; line-height:1.72; max-width:52ch; }
.guide-promo .promo-copy .btn{ margin-top:26px; }
.guide-promo .promo-figure{ border-radius:16px; overflow:hidden; box-shadow:var(--shadow); min-height:220px; }
.guide-promo .promo-figure img{ width:100%; height:100%; object-fit:cover; }

/* Print: only the ballpark, so a reader can walk the house with paper */
@media print{
  body{ background:#fff; }
  .site-nav, .mobile-panel, .site-footer, .chat-widget, .marquee, .page-hero .hero-ctas,
  .bp-add, .bp-print, .bp-remove, .plan-pair-note, .scarcity-line{ display:none !important; }
  body *{ visibility:hidden; }
  #ballpark, #ballpark *{ visibility:visible; }
  #ballpark{ position:absolute; left:0; top:0; width:100%; box-shadow:none; border:none; }
  .ballpark-row{ break-inside:avoid; border:1px solid #999; }
  .ballpark-row input, .ballpark-row select{ border:1px solid #999; }
}
