/* =========================================================================
   LINRIC BLINDS — styles.css
   Brand: hot pink (#E91E99) + white + near-black. Bold, clean, mobile-first.
   ========================================================================= */

:root{
  --pink:#E91E99;
  --pink-dark:#C1147A;
  --pink-soft:#fdeaf6;
  --ink:#141414;
  --ink-soft:#3d3d3d;
  --grey:#f5f5f5;
  --grey-line:#e6e6e6;
  --white:#ffffff;
  --wa-green:#25D366;
  --maxw:1200px;
  --radius:14px;
  --shadow:0 10px 30px rgba(20,20,20,.10);
  --shadow-lg:0 20px 50px rgba(20,20,20,.18);
  --nav-h:76px;
  --nav-h-shrink:60px;
  --font-head:'Montserrat',system-ui,sans-serif;
  --font-body:'Inter',system-ui,sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:90px;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
  overflow-x:hidden;
}
img{max-width:100%;display:block;height:auto}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}

/* ---------- Typography ---------- */
h1,h2,h3,h4{font-family:var(--font-head);font-weight:800;line-height:1.1;letter-spacing:-.02em}
h1{font-size:clamp(2.2rem,6vw,4rem)}
h2{font-size:clamp(1.8rem,4.5vw,2.9rem)}
h3{font-size:clamp(1.2rem,2.5vw,1.5rem)}
.eyebrow{
  font-family:var(--font-head);font-weight:800;letter-spacing:.18em;
  text-transform:uppercase;font-size:.78rem;color:var(--pink);margin-bottom:.75rem;
}
.section-title{text-align:center;margin-bottom:.6rem}
.section-lead{text-align:center;max-width:640px;margin:0 auto 2.8rem;color:var(--ink-soft)}

/* ---------- Layout ---------- */
.container{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 clamp(1rem,4vw,2rem)}
.section{padding:clamp(3.5rem,7vw,6rem) 0}
.section--grey{background:var(--grey)}
.section--ink{background:var(--ink);color:var(--white)}
.section--ink .section-lead{color:#c9c9c9}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:.55rem;
  font-family:var(--font-head);font-weight:700;font-size:1rem;
  padding:.9rem 1.6rem;border-radius:50px;line-height:1;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
  white-space:nowrap;
}
.btn svg{width:1.1em;height:1.1em;flex:none}
.btn--primary{background:var(--pink);color:#fff;box-shadow:0 8px 20px rgba(233,30,153,.35)}
.btn--primary:hover{background:var(--pink-dark);transform:translateY(-2px);box-shadow:0 12px 26px rgba(233,30,153,.45)}
.btn--ghost{background:transparent;color:#fff;border:2px solid rgba(255,255,255,.8)}
.btn--ghost:hover{background:#fff;color:var(--ink);transform:translateY(-2px)}
.btn--dark{background:var(--ink);color:#fff}
.btn--dark:hover{background:#000;transform:translateY(-2px)}
.btn--lg{padding:1.05rem 2rem;font-size:1.08rem}
.btn--wa{background:var(--wa-green);color:#fff}
.btn--wa:hover{background:#1da851;transform:translateY(-2px)}

/* ---------- Header / Nav ---------- */
.header{
  position:fixed;top:0;left:0;width:100%;z-index:100;
  background:rgba(255,255,255,.97);backdrop-filter:blur(8px);
  border-bottom:1px solid var(--grey-line);
  transition:box-shadow .25s ease,padding .25s ease;
}
.header.scrolled{box-shadow:0 6px 24px rgba(0,0,0,.08)}
.nav{display:flex;align-items:center;justify-content:space-between;height:var(--nav-h);transition:height .25s ease}
.header.scrolled .nav{height:var(--nav-h-shrink)}
.brand{font-family:var(--font-head);font-weight:800;font-size:1.35rem;letter-spacing:-.02em;color:var(--ink);display:flex;align-items:center;gap:.15rem}
.brand b{color:var(--pink)}
.brand .dot{color:var(--pink)}
.nav-links{display:flex;align-items:center;gap:.35rem}
.nav-links a{
  font-family:var(--font-head);font-weight:600;font-size:.95rem;
  padding:.5rem .85rem;border-radius:8px;color:var(--ink);transition:color .15s,background .15s;
}
.nav-links a:hover{color:var(--pink)}
.nav-links a.active{color:var(--pink)}
.nav-links a.active::after{
  content:"";display:block;height:3px;width:20px;background:var(--pink);
  border-radius:3px;margin:2px auto 0;
}
.nav-cta{margin-left:.5rem}
.nav-toggle{display:none;flex-direction:column;gap:5px;padding:.4rem;z-index:110}
.nav-toggle span{width:26px;height:3px;background:var(--ink);border-radius:3px;transition:.25s}
.nav-toggle.open span:nth-child(1){transform:translateY(8px) rotate(45deg)}
.nav-toggle.open span:nth-child(2){opacity:0}
.nav-toggle.open span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}

/* ---------- Hero ---------- */
.hero{
  position:relative;min-height:min(88vh,760px);display:flex;align-items:center;
  margin-top:var(--nav-h);color:#fff;overflow:hidden;
}
/* 40% down holds the display wall rather than the showroom floor */
.hero__bg{position:absolute;inset:0;background-size:cover;background-position:center 40%;transform:scale(1.03)}
/* The client's TV reel, silent and looping, over the photo. Encoded full 16:9 and
   cropped here — pre-cropping the file is what made the About band look magnified. */
.hero__video{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:1;
  pointer-events:none;
}
.hero__overlay{position:absolute;inset:0;z-index:2;
  background:linear-gradient(120deg,rgba(20,20,20,.82) 0%,rgba(20,20,20,.55) 45%,rgba(233,30,153,.55) 100%);
}
.hero .container{position:relative;z-index:3;max-width:820px}
.hero h1{margin-bottom:1.1rem;text-shadow:0 2px 24px rgba(0,0,0,.35)}
.hero h1 span{color:var(--pink);-webkit-text-stroke:0}
.hero__sub{font-size:clamp(1.05rem,2vw,1.3rem);max-width:600px;margin-bottom:2rem;color:#f0f0f0}
.hero__cta{display:flex;gap:1rem;flex-wrap:wrap}

/* page hero (inner pages) */
.pagehero{
  margin-top:var(--nav-h);color:#fff;position:relative;padding:clamp(3rem,7vw,5rem) 0;
  background:linear-gradient(120deg,var(--ink) 0%,#2a2a2a 60%,var(--pink-dark) 130%);
  text-align:center;
}
.pagehero h1{margin-bottom:.5rem}
.pagehero p{color:#e6e6e6;max-width:640px;margin:0 auto}

/* ---------- Trust bar ---------- */
.trust{background:var(--ink);color:#fff}
.trust .container{display:flex;align-items:center;justify-content:space-around;gap:1.5rem;flex-wrap:wrap;padding-top:2rem;padding-bottom:2rem}
.trust__item{text-align:center}
.trust__num{font-family:var(--font-head);font-weight:800;font-size:2.4rem;color:var(--pink);line-height:1}
.trust__label{font-size:.9rem;color:#cfcfcf;margin-top:.35rem}
.trust__badge img{width:120px;height:120px}
.trust__divider{width:1px;height:56px;background:rgba(255,255,255,.18)}

/* ---------- Category grid ---------- */
.cat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem}
.cat-card{
  position:relative;border-radius:var(--radius);overflow:hidden;aspect-ratio:4/5;
  box-shadow:var(--shadow);background:#ddd;display:block;
}
.cat-card img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.cat-card::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(20,20,20,.78) 0%,rgba(20,20,20,.05) 55%)}
.cat-card:hover img{transform:scale(1.08)}
.cat-card__label{position:absolute;left:0;right:0;bottom:0;z-index:2;padding:1.1rem;color:#fff}
.cat-card__label h3{font-size:1.15rem;margin-bottom:.15rem}
.cat-card__label span{font-size:.85rem;color:var(--pink);font-weight:700;font-family:var(--font-head);display:inline-flex;align-items:center;gap:.3rem}

/* ---------- Why choose (icon row) ---------- */
.why-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:1.4rem}
.why-card{text-align:center;padding:1.5rem 1rem;border-radius:var(--radius);background:#fff;border:1px solid var(--grey-line);transition:transform .2s,box-shadow .2s}
.why-card:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.why-ico{width:58px;height:58px;margin:0 auto 1rem;border-radius:50%;background:var(--pink-soft);display:grid;place-items:center;color:var(--pink)}
.why-ico svg{width:28px;height:28px}
.why-card h3{font-size:1.02rem;margin-bottom:.3rem}
.why-card p{font-size:.88rem;color:var(--ink-soft)}

/* ---------- Testimonials carousel ---------- */
.carousel{position:relative;max-width:820px;margin:0 auto}
.carousel__track{overflow:hidden;border-radius:var(--radius)}
.carousel__slides{display:flex;transition:transform .5s cubic-bezier(.4,0,.2,1)}
.testimonial{flex:0 0 100%;padding:2.5rem clamp(1.2rem,4vw,3rem);text-align:center}
.testimonial .stars{color:#ffb400;font-size:1.2rem;letter-spacing:2px;margin-bottom:1rem}
.testimonial blockquote{font-size:clamp(1.1rem,2.4vw,1.4rem);font-weight:500;line-height:1.5;margin-bottom:1.2rem;font-family:var(--font-head)}
.testimonial cite{font-style:normal;font-weight:700;color:var(--pink)}
.testimonial cite span{display:block;font-weight:400;color:var(--ink-soft);font-size:.85rem;margin-top:.15rem}
.carousel__btn{
  position:absolute;top:50%;transform:translateY(-50%);width:46px;height:46px;border-radius:50%;
  background:#fff;box-shadow:var(--shadow);display:grid;place-items:center;color:var(--ink);z-index:3;transition:.2s;
}
.carousel__btn:hover{background:var(--pink);color:#fff}
.carousel__btn svg{width:20px;height:20px}
.carousel__btn--prev{left:-8px}
.carousel__btn--next{right:-8px}
.carousel__dots{display:flex;justify-content:center;gap:.5rem;margin-top:1.5rem}
.carousel__dots button{width:10px;height:10px;border-radius:50%;background:var(--grey-line);transition:.2s}
.carousel__dots button.active{background:var(--pink);width:26px;border-radius:5px}

/* ---------- Logos strip ---------- */
.logos{display:flex;align-items:center;justify-content:center;gap:clamp(1.5rem,5vw,3.5rem);flex-wrap:wrap}
.logos img{height:46px;width:auto;object-fit:contain;filter:grayscale(1);opacity:.7;transition:.25s}
.logos img:hover{filter:none;opacity:1}
.logos .badge{height:70px;filter:none;opacity:1}

/* ---------- CTA banner ---------- */
.cta-banner{background:linear-gradient(120deg,var(--pink) 0%,var(--pink-dark) 100%);color:#fff;text-align:center}
.cta-banner h2{margin-bottom:.6rem}
.cta-banner p{margin-bottom:1.8rem;color:#ffe3f4;font-size:1.1rem}

/* ---------- About ---------- */
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.5rem,4vw,3.5rem);align-items:center}
.split img{border-radius:var(--radius);box-shadow:var(--shadow-lg);width:100%}
.prose p{margin-bottom:1rem;color:var(--ink-soft)}
.prose p:last-child{margin-bottom:0}
.services-list{display:grid;gap:.8rem;margin-top:1rem}
.services-list li{display:flex;gap:.7rem;align-items:flex-start}
.services-list svg{width:22px;height:22px;color:var(--pink);flex:none;margin-top:2px}
.benefit-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem}
.benefit-card{padding:1.8rem;border-radius:var(--radius);background:#fff;border:1px solid var(--grey-line);border-top:4px solid var(--pink)}
.benefit-card .why-ico{margin:0 0 1rem}
.benefit-card h3{font-size:1.1rem;margin-bottom:.4rem}
.benefit-card p{font-size:.92rem;color:var(--ink-soft)}

/* ---------- Products ---------- */
.prod-nav{position:sticky;top:var(--nav-h);z-index:40;background:#fff;border-bottom:1px solid var(--grey-line);padding:.6rem 0}
.prod-nav .container{display:flex;gap:.5rem;overflow-x:auto;justify-content:center;flex-wrap:wrap}
.prod-nav a{font-family:var(--font-head);font-weight:600;font-size:.88rem;padding:.45rem .9rem;border-radius:50px;white-space:nowrap;background:var(--grey);transition:.15s}
.prod-nav a:hover{background:var(--pink);color:#fff}
.prod-group{padding-top:clamp(2.5rem,5vw,4rem)}
.prod-group__head{margin-bottom:2rem;border-left:4px solid var(--pink);padding-left:1rem}
.prod-group__head h2{margin-bottom:.2rem}
.prod-group__head p{color:var(--ink-soft)}
.prod-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem}
.prod-card{background:#fff;border:1px solid var(--grey-line);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);display:flex;flex-direction:column;transition:transform .2s,box-shadow .2s}
.prod-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg)}
.prod-card__img{aspect-ratio:4/3;overflow:hidden;background:#eee}
.prod-card__img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.prod-card:hover .prod-card__img img{transform:scale(1.06)}
.prod-card__body{padding:1.3rem;display:flex;flex-direction:column;flex:1}
.prod-card__body h3{margin-bottom:.5rem}
.prod-card__body p{font-size:.92rem;color:var(--ink-soft);margin-bottom:1rem}
.prod-card__actions{margin-top:auto;display:flex;gap:.6rem;align-items:center;flex-wrap:wrap}
.prod-more{background:none;color:var(--pink);font-family:var(--font-head);font-weight:700;font-size:.9rem;display:inline-flex;align-items:center;gap:.3rem}
.prod-more:hover{text-decoration:underline}
.prod-detail{max-height:0;overflow:hidden;transition:max-height .35s ease;font-size:.9rem;color:var(--ink-soft)}
.prod-detail.open{max-height:600px;margin-top:.8rem}
.prod-detail p{margin-bottom:.6rem}
.badge-pill{display:inline-block;font-family:var(--font-head);font-weight:700;font-size:.7rem;letter-spacing:.05em;text-transform:uppercase;color:var(--pink);background:var(--pink-soft);padding:.25rem .6rem;border-radius:50px;margin-bottom:.8rem}

/* ---------- Contact ---------- */
.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:clamp(1.5rem,4vw,3rem);align-items:start}
/* both own their text colour so they stay legible on ANY background —
   dropped onto the pink .cta-band they used to inherit white-on-white */
.info-block{background:var(--grey);color:var(--ink);border-radius:var(--radius);padding:2rem}
.info-row{display:flex;gap:.9rem;align-items:flex-start;margin-bottom:1.3rem}
.info-row:last-child{margin-bottom:0}
.info-row .ico{width:42px;height:42px;border-radius:10px;background:var(--pink);color:#fff;display:grid;place-items:center;flex:none}
.info-row .ico svg{width:20px;height:20px}
.info-row h4{font-size:.8rem;text-transform:uppercase;letter-spacing:.08em;color:var(--ink-soft);margin-bottom:.15rem;font-weight:700}
.info-row a,.info-row p{font-size:1rem;color:var(--ink);font-weight:500}
.info-row small{color:var(--ink-soft);font-size:.85rem}
.form{background:#fff;color:var(--ink);border:1px solid var(--grey-line);border-radius:var(--radius);padding:clamp(1.5rem,4vw,2.5rem);box-shadow:var(--shadow)}
.form h3{margin-bottom:.3rem}
.form>p{color:var(--ink-soft);margin-bottom:1.5rem}
.field{margin-bottom:1.1rem}
.field label{display:block;font-family:var(--font-head);font-weight:600;font-size:.9rem;margin-bottom:.4rem}
.field .req{color:var(--pink)}
.field input,.field textarea{
  width:100%;padding:.85rem 1rem;border:1.5px solid var(--grey-line);border-radius:10px;
  font-family:inherit;font-size:1rem;transition:border-color .15s,box-shadow .15s;background:#fff;
}
.field input:focus,.field textarea:focus{outline:none;border-color:var(--pink);box-shadow:0 0 0 3px rgba(233,30,153,.15)}
.field textarea{resize:vertical;min-height:110px}
/* Two columns need room: labels run to "Horizontal (Venetian) Blinds", which
   wraps to three cramped lines in half a phone screen. Below 540px, stack them
   and give each row a finger-sized target. */
.checks{display:grid;grid-template-columns:repeat(2,1fr);gap:.5rem .9rem;margin-top:.3rem}
.checks label{display:flex;gap:.5rem;align-items:center;font-family:var(--font-body);font-weight:400;font-size:.9rem;cursor:pointer;margin:0}
.checks input{width:auto;accent-color:var(--pink);min-width:18px;min-height:18px}
@media(max-width:540px){
  .checks{grid-template-columns:1fr;gap:.15rem}
  .checks label{padding:.5rem .2rem;min-height:44px}
}
.form-note{font-size:.82rem;color:var(--ink-soft);margin-top:.8rem}
.map-wrap{margin-top:0;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);border:1px solid var(--grey-line)}
.map-wrap iframe{width:100%;height:340px;border:0;display:block;filter:grayscale(.2)}

/* ---------- Gallery ---------- */
.gallery{columns:4 240px;column-gap:1rem}
.gallery figure{break-inside:avoid;margin:0 0 1rem;border-radius:var(--radius);overflow:hidden;cursor:pointer;position:relative;box-shadow:var(--shadow)}
.gallery img{width:100%;transition:transform .5s}
.gallery figure::after{content:"";position:absolute;inset:0;background:rgba(233,30,153,0);transition:.25s}
.gallery figure:hover img{transform:scale(1.06)}
.gallery figure:hover::after{background:rgba(233,30,153,.12)}
.gallery figcaption{position:absolute;left:0;bottom:0;right:0;padding:.9rem;color:#fff;font-family:var(--font-head);font-weight:700;font-size:.85rem;background:linear-gradient(to top,rgba(0,0,0,.7),transparent);opacity:0;transition:.25s;z-index:2}
.gallery figure:hover figcaption{opacity:1}

/* lightbox */
.lightbox{position:fixed;inset:0;background:rgba(10,10,10,.94);z-index:300;display:none;align-items:center;justify-content:center;padding:1.5rem}
.lightbox.open{display:flex}
.lightbox img{max-width:92vw;max-height:86vh;border-radius:8px;box-shadow:var(--shadow-lg)}
.lightbox__close,.lightbox__nav{position:absolute;color:#fff;background:rgba(255,255,255,.12);border-radius:50%;width:52px;height:52px;display:grid;place-items:center;transition:.2s}
.lightbox__close:hover,.lightbox__nav:hover{background:var(--pink)}
.lightbox__close{top:1.2rem;right:1.2rem;font-size:1.6rem}
.lightbox__nav{top:50%;transform:translateY(-50%)}
.lightbox__nav svg{width:26px;height:26px}
.lb-prev{left:1.2rem}.lb-next{right:1.2rem}

/* ---------- Footer ---------- */
.footer{background:var(--ink);color:#c9c9c9;padding-top:clamp(3rem,6vw,4.5rem)}
.footer__grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:2rem}
.footer h4{color:#fff;font-size:1rem;margin-bottom:1.1rem}
.footer .brand{color:#fff;margin-bottom:1rem}
.footer a{color:#c9c9c9;transition:.15s}
.footer a:hover{color:var(--pink)}
.footer ul li{margin-bottom:.6rem}
.footer__contact li{display:flex;gap:.6rem;align-items:flex-start;margin-bottom:.8rem}
.footer__contact svg{width:18px;height:18px;color:var(--pink);flex:none;margin-top:3px}
/* the tertiary phone number: its own line, visibly smaller than the other two */
.footer__contact small{font-size:.82rem;opacity:.75;display:inline-block;margin-top:.15rem}
.footer__social{display:flex;gap:.7rem;margin-top:1rem}
.footer__social a{width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.1);display:grid;place-items:center;color:#fff;transition:.2s}
.footer__social a:hover{background:var(--pink);transform:translateY(-3px)}
.footer__social svg{width:20px;height:20px}
.footer__bottom{border-top:1px solid rgba(255,255,255,.12);margin-top:3rem;padding:1.5rem 0;text-align:center;font-size:.85rem}
.footer__bottom .pink{color:var(--pink)}

/* ---------- Floating buttons ---------- */
.float-stack{position:fixed;right:20px;bottom:22px;z-index:200;display:flex;flex-direction:column;align-items:flex-end;gap:14px}
.float-stack.is-hidden{display:none}
/* Last resort for the reader the stack is sitting on top of. Small and low
   contrast so it reads as a control on the buttons, not a third button. */
.float-dismiss{
  width:26px;height:26px;margin-bottom:-6px;border-radius:50%;display:grid;place-items:center;
  background:rgba(20,20,20,.55);color:#fff;box-shadow:var(--shadow);transition:background .2s;
}
.float-dismiss svg{width:13px;height:13px}
.float-dismiss:hover{background:rgba(20,20,20,.85)}
.float-btn{
  width:58px;height:58px;border-radius:50%;display:grid;place-items:center;color:#fff;
  box-shadow:var(--shadow-lg);transition:transform .2s;position:relative;
}
.float-btn:hover{transform:scale(1.08)}
.float-btn svg{width:30px;height:30px}
.float-btn--wa{background:var(--wa-green)}
.float-btn--map{background:var(--pink)}
.float-btn--wa::before{
  content:"";position:absolute;inset:0;border-radius:50%;background:var(--wa-green);
  z-index:-1;animation:pulse 2s infinite;
}
@keyframes pulse{0%{transform:scale(1);opacity:.7}70%{transform:scale(1.7);opacity:0}100%{opacity:0}}
.float-btn__label{
  position:absolute;right:70px;top:50%;transform:translateY(-50%);
  background:var(--ink);color:#fff;padding:.5rem .9rem;border-radius:8px;font-size:.85rem;
  font-family:var(--font-head);font-weight:600;white-space:nowrap;opacity:0;pointer-events:none;transition:.2s;
}
.float-btn__label::after{content:"";position:absolute;right:-5px;top:50%;transform:translateY(-50%) rotate(45deg);width:10px;height:10px;background:var(--ink)}
.float-btn:hover .float-btn__label{opacity:1;right:74px}
/* Two 58px circles eat a lot of a 360px screen, and being fixed they sit on
   whatever scrolls under them — most visibly the product pages' full-width CTA.
   Smaller and tighter into the corner keeps them thumb-reachable while covering
   noticeably less. (A floating action button overlays content by design; this
   limits how much, it cannot remove the behaviour.) */
@media(max-width:768px){
  .float-stack{right:12px;bottom:12px;gap:10px}
  .float-btn{width:48px;height:48px}
  .float-btn svg{width:25px;height:25px}
  /* Bigger tap area than its 26px box, without growing the visible dot. */
  .float-dismiss{position:relative}
  .float-dismiss::after{content:"";position:absolute;inset:-9px}
}

/* ---------- Toast ---------- */
.toast{
  position:fixed;bottom:30px;left:50%;transform:translateX(-50%) translateY(120px);
  background:var(--ink);color:#fff;padding:1rem 1.6rem;border-radius:50px;box-shadow:var(--shadow-lg);
  z-index:400;display:flex;gap:.6rem;align-items:center;font-weight:600;transition:transform .4s cubic-bezier(.4,0,.2,1);max-width:90vw;
}
.toast.show{transform:translateX(-50%) translateY(0)}
.toast svg{width:22px;height:22px;color:var(--wa-green);flex:none}
.toast.error svg{color:#ff5a5a}

/* ---------- Reveal animation ---------- */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .6s ease,transform .6s ease}
.reveal.in{opacity:1;transform:none}

/* ---------- Nav dropdown (Products) ---------- */
.has-dropdown{position:relative}
.dropdown-toggle{display:inline-flex;align-items:center;gap:.3rem}
.dropdown-toggle svg{width:14px;height:14px;transition:transform .2s}
.dropdown{
  position:absolute;top:calc(100% + 8px);left:50%;transform:translateX(-50%) translateY(8px);
  min-width:250px;background:#fff;border:1px solid var(--grey-line);border-radius:12px;
  box-shadow:var(--shadow-lg);padding:.5rem;opacity:0;visibility:hidden;transition:.2s;z-index:120;
}
.dropdown::before{content:"";position:absolute;top:-14px;left:0;right:0;height:14px}
.has-dropdown:hover .dropdown,.has-dropdown:focus-within .dropdown{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.has-dropdown:hover .dropdown-toggle svg{transform:rotate(180deg)}
.dropdown li{margin:0}
.dropdown a{display:block;width:100%;padding:.6rem .85rem;border-radius:8px;font-size:.92rem;font-weight:600;font-family:var(--font-head);white-space:nowrap}
.dropdown a:hover{background:var(--pink-soft);color:var(--pink)}
.dropdown a::after{display:none}

/* ---------- Product category sections (Products page) ---------- */
.cat-strip{position:sticky;top:var(--nav-h);z-index:40;background:#fff;border-bottom:1px solid var(--grey-line);padding:.6rem 0}
.cat-strip .container{display:flex;gap:.5rem;overflow-x:auto;justify-content:center;flex-wrap:wrap}
.cat-strip a{font-family:var(--font-head);font-weight:600;font-size:.86rem;padding:.45rem .9rem;border-radius:50px;white-space:nowrap;background:var(--grey);transition:.15s}
.cat-strip a:hover{background:var(--pink);color:#fff}
.cat-sec{padding:clamp(3rem,6vw,5rem) 0;scroll-margin-top:130px}
.cat-sec--alt{background:var(--grey)}
.cat-sec .split{align-items:center}
.cat-figure{position:relative;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-lg);aspect-ratio:4/3}
.cat-figure img{width:100%;height:100%;object-fit:cover;object-position:center}
.cat-sec--alt .split{direction:rtl}
.cat-sec--alt .split>*{direction:ltr}
.cat-head h2{margin-bottom:.4rem}
.cat-head>p{color:var(--ink-soft);margin-bottom:1.4rem;font-size:1.05rem}
.subprod{border-top:1px solid var(--grey-line)}
.cat-sec--alt .subprod{border-top-color:#e2e2e2}
.subprod__item{border-bottom:1px solid var(--grey-line)}
.cat-sec--alt .subprod__item{border-bottom-color:#e2e2e2}
.subprod__btn{display:flex;justify-content:space-between;align-items:center;gap:1rem;width:100%;text-align:left;padding:1rem .2rem;font-family:var(--font-head);font-weight:700;font-size:1.02rem;color:var(--ink);cursor:pointer}
.subprod__btn:hover{color:var(--pink)}
.subprod__sign{flex:none;width:22px;height:22px;position:relative;transition:transform .3s}
.subprod__sign::before,.subprod__sign::after{content:"";position:absolute;background:var(--pink);border-radius:2px}
.subprod__sign::before{top:10px;left:2px;right:2px;height:2px}
.subprod__sign::after{left:10px;top:2px;bottom:2px;width:2px;transition:transform .3s}
.subprod__item.open .subprod__sign::after{transform:scaleY(0)}
.subprod__panel{max-height:0;overflow:hidden;transition:max-height .35s ease}
/* Ceiling for the open animation, not a content budget: the longest panel is
   ~470 characters, which reflows to ~410px on a 360px phone. The old 340px cap
   silently cut the last lines off. */
.subprod__panel.open{max-height:600px}
.subprod__panel p{color:var(--ink-soft);font-size:.95rem;padding:0 .2rem 1rem}
.cat-cta{margin-top:1.6rem}

/* ---------- Home: Explore Range band ---------- */
.range-band{background:var(--ink);color:#fff}
.range-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:.9rem;margin-top:2.2rem}
.range-link{
  display:flex;align-items:center;justify-content:space-between;gap:.6rem;padding:1.1rem 1.3rem;
  border:1px solid rgba(255,255,255,.16);border-radius:12px;font-family:var(--font-head);
  font-weight:700;font-size:1rem;transition:.2s;background:rgba(255,255,255,.03);
}
.range-link:hover{background:var(--pink);border-color:var(--pink);transform:translateY(-3px)}
.range-link svg{width:18px;height:18px;flex:none;color:var(--pink);transition:color .2s}
.range-link:hover svg{color:#fff}

/* image fit helpers */
.split img,.info-block img{object-fit:cover}

/* ---------- Parallax photo band (Luminos-style) ---------- */
.parallax{
  position:relative;background-size:cover;background-position:center;background-attachment:fixed;
  color:#fff;padding:clamp(4.5rem,11vw,8rem) 0;text-align:center;overflow:hidden;
}
.parallax__overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(120deg,rgba(18,18,18,.85) 0%,rgba(18,18,18,.6) 45%,rgba(193,20,122,.72) 100%)}
.parallax__content{position:relative;z-index:2;max-width:720px;margin:0 auto}
/* silent looping showroom reel behind the band (about.html) */
.parallax__video{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;
  pointer-events:none;
}
/* The poster is the band's base layer, not just its mobile fallback: if the file
   404s or the codec is refused, the gradient would otherwise sit on blank white. */
.parallax--video{background-image:url('../assets/video/showroom-band-poster.jpg')}
/* Phones get the reel too — they just get a lighter cut of it (main.js picks the
   854x480 encode). Two groups still fall back to the poster: anyone who asked
   things not to move, and anyone on Save-Data or a 2G/3G connection, for whom
   main.js puts .no-video on <html>. The poster still carries the band. */
@media(prefers-reduced-motion:reduce){
  .parallax__video,
  .hero__video{display:none}
}
.no-video .parallax__video,
.no-video .hero__video{display:none}
/* Fade the reel in once it actually has frames, so it never flashes a black box
   over the poster on a slow connection. */
.hero__video,.parallax__video{opacity:0;transition:opacity .6s ease}
.hero__video.playing,.parallax__video.playing{opacity:1}
.parallax .eyebrow{color:#fff}
.parallax h2{color:#fff;text-shadow:0 2px 20px rgba(0,0,0,.35)}
.parallax p{color:#f2e6ee;margin:.7rem auto 1.8rem;max-width:560px}

/* ---------- Floating Contact button ---------- */
.float-btn--contact{background:var(--ink)}
.float-btn--contact:hover{background:#000}

/* ---------- Responsive ---------- */
@media(max-width:1024px){
  .cat-grid{grid-template-columns:repeat(3,1fr)}
  .why-grid{grid-template-columns:repeat(3,1fr)}
  .prod-grid{grid-template-columns:repeat(2,1fr)}
  .footer__grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .nav-links{
    position:fixed;top:0;right:0;height:100vh;width:min(78vw,320px);background:#fff;
    flex-direction:column;align-items:flex-start;justify-content:flex-start;gap:.2rem;
    padding:calc(var(--nav-h) + 1rem) 1.5rem 2rem;box-shadow:-10px 0 40px rgba(0,0,0,.15);
    transform:translateX(100%);transition:transform .3s ease;
  }
  .nav-links.open{transform:none}
  .nav-links a{width:100%;font-size:1.1rem;padding:.8rem .4rem;border-bottom:1px solid var(--grey-line)}
  .nav-links a.active::after{display:none}
  .nav-links a.active{background:var(--pink-soft);border-radius:8px}
  .nav-cta{margin:.8rem 0 0}
  .nav{position:relative}
  .nav-toggle{display:flex;position:absolute;top:50%;right:0;transform:translateY(-50%)}
  /* mobile dropdown: inline accordion */
  .dropdown{
    position:static;transform:none;opacity:1;visibility:visible;box-shadow:none;border:none;
    min-width:0;padding:0 0 .4rem .6rem;max-height:0;overflow:hidden;transition:max-height .3s ease;
  }
  /* defeat the desktop hover/focus transform so the inline mobile list isn't shifted left */
  .has-dropdown:hover .dropdown,.has-dropdown:focus-within .dropdown{transform:none}
  .has-dropdown.open .dropdown{max-height:600px}
  .has-dropdown.open .dropdown-toggle svg{transform:rotate(180deg)}
  .dropdown a{white-space:normal}
  .dropdown a{border-bottom:none;font-size:1rem;padding:.6rem .4rem}
  .dropdown a.active{background:transparent}
  .cat-sec--alt .split{direction:ltr}
  .range-grid{grid-template-columns:1fr 1fr;gap:.7rem}
  .parallax{background-attachment:scroll}
  .cat-grid{grid-template-columns:repeat(2,1fr);gap:1rem}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .split{grid-template-columns:1fr}
  .benefit-grid{grid-template-columns:1fr}
  .prod-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr}
  .trust .container{display:grid;grid-template-columns:1fr 1fr;gap:1.6rem 1rem;justify-items:center}
  .trust__num{font-size:2rem}
  .trust__badge{grid-column:1 / -1}
  .trust__divider{display:none}
  .gallery{columns:2 150px}
  .hero{min-height:auto;padding:4rem 0}
}
@media(max-width:420px){
  .hero__cta .btn{width:100%;justify-content:center}
  .gallery{columns:1}
  .range-grid{grid-template-columns:1fr}
  /* "Res & Com" and "Measuring & Quotations" are the long ones — at 2rem they
     were breaking across three lines in a half-width cell. */
  .trust__num{font-size:1.6rem}
  .trust__label{font-size:.8rem}
}
/* Touch targets: 46px arrows and 10px dots are fine for a mouse, not a thumb. */
@media(hover:none){
  .carousel__btn{width:48px;height:48px}
  .carousel__dots{gap:.65rem;margin-top:1.2rem}
  .carousel__dots button{width:14px;height:14px}
  .carousel__dots button.active{width:30px}
  /* the hover-only zoom hint never appears on touch, so pin it visible */
  .pshot__zoom{opacity:1;transform:none}
}
@media(prefers-reduced-motion:reduce){
  *{animation:none!important;scroll-behavior:auto!important;transition:none!important}
  .reveal{opacity:1;transform:none}
}

/* =========================================================================
   INDIVIDUAL PRODUCT PAGES
   Photo-led where real photos exist, text-led where they don't.
   ========================================================================= */

/* ---------- Mega dropdown: a flat list of the products we actually sell ----
   No invented umbrella categories — the client's own product names only. */
.dropdown--mega{
  left:auto;right:0;transform:translateY(8px);
  min-width:min(560px,92vw);padding:1.1rem 1rem;
  display:grid;grid-template-columns:1fr 1fr;gap:0 1.4rem;
}
.has-dropdown:hover .dropdown--mega,
.has-dropdown:focus-within .dropdown--mega{transform:translateY(0)}
.dropdown--mega .dd-col{display:flex;flex-direction:column}
.dropdown--mega a{padding:.42rem .6rem;font-size:.86rem;font-weight:600;border-radius:7px}
.dropdown--mega .dd-all{
  grid-column:1 / -1;margin-top:.9rem;padding-top:.85rem;border-top:1px solid var(--grey-line);
}
.dropdown--mega .dd-all a{
  display:flex;align-items:center;justify-content:space-between;
  background:var(--pink-soft);color:var(--pink);font-weight:700;font-size:.88rem;
}
.dropdown--mega .dd-all a:hover{background:var(--pink);color:#fff}
.dropdown--mega .dd-all svg{width:15px;height:15px}

/* ---------- Breadcrumb ---------- */
/* the header is position:fixed, so the first block on the page has to clear it
   or the breadcrumb sits underneath it and the h1 is clipped */
.pcrumb{margin-top:var(--nav-h);padding:1.1rem 0 0}
.pcrumb ol{display:flex;flex-wrap:wrap;align-items:center;gap:.45rem;font-size:.82rem;color:var(--ink-soft)}
.pcrumb li{display:flex;align-items:center;gap:.45rem}
.pcrumb a{font-weight:600;transition:color .2s}
.pcrumb a:hover{color:var(--pink)}
.pcrumb svg{width:13px;height:13px;color:#b9b9b9;flex:none}
.pcrumb [aria-current]{color:var(--pink);font-weight:700}

/* ---------- Product hero ---------- */
.phero{padding:1.6rem 0 clamp(2.5rem,5vw,3.6rem)}
.phero__head{max-width:760px;margin-bottom:clamp(1.4rem,3vw,2.1rem)}
.phero__head h1{font-size:clamp(2rem,5vw,3.4rem);margin-bottom:.7rem}
.phero__head h1 em{font-style:normal;color:var(--pink)}
.phero__lead{font-size:clamp(1rem,1.6vw,1.16rem);color:var(--ink-soft);max-width:640px}
.phero__tags{display:flex;flex-wrap:wrap;gap:.45rem;margin-top:1.1rem}
.ptag{
  font-family:var(--font-head);font-weight:700;font-size:.72rem;letter-spacing:.04em;
  text-transform:uppercase;color:var(--pink);background:var(--pink-soft);
  padding:.35rem .75rem;border-radius:50px;
}

/* photo cells — shared */
/* Product photos still come from the client's Word doc at 209–630px wide, so the
   cap stops a 400px photo being blown up to 92vw and looking soft. The showroom
   and brand shots are 960–1920px, so the ceiling is set for those. */
.lightbox img{max-width:min(92vw,1100px)}

/* rendered as <button> so the lightbox is keyboard-reachable */
.pshot{
  position:relative;overflow:hidden;border-radius:var(--radius);background:var(--grey);
  box-shadow:var(--shadow);cursor:zoom-in;display:block;width:100%;padding:0;text-align:left;
}
.pshot:focus-visible{outline:3px solid var(--pink);outline-offset:3px}
.pshot img{width:100%;height:100%;object-fit:cover;object-position:center;transition:transform .6s ease}
.pshot::after{
  content:"";position:absolute;inset:0;background:rgba(233,30,153,0);transition:background .25s;
}
.pshot:hover img{transform:scale(1.05)}
.pshot:hover::after{background:rgba(233,30,153,.1)}
.pshot__zoom{
  position:absolute;right:.7rem;bottom:.7rem;width:34px;height:34px;border-radius:50%;
  background:rgba(255,255,255,.92);color:var(--ink);display:grid;place-items:center;
  opacity:0;transform:translateY(6px);transition:.25s;z-index:2;
}
.pshot__zoom svg{width:16px;height:16px}
.pshot:hover .pshot__zoom{opacity:1;transform:none}

/* honest gap: shown where the client has not supplied a photo yet.
   Never a stand-in image from another product. */
.pshot--needed{
  cursor:default;background:#fff;box-shadow:none;
  border:2px dashed rgba(233,30,153,.45);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:.5rem;text-align:center;padding:1.2rem;color:var(--ink-soft);
}
.pshot--needed:hover::after{background:transparent}
.pshot--needed svg{width:34px;height:34px;color:var(--pink);opacity:.75}
.pshot--needed b{font-family:var(--font-head);font-size:.9rem;color:var(--ink)}
.pshot--needed span{font-size:.8rem;max-width:26ch;line-height:1.45}

/* mosaic: 3–4 photos */
.phero__grid{display:grid;gap:14px}
.phero__grid--3{
  grid-template-columns:repeat(4,1fr);
  grid-template-rows:repeat(2,minmax(0,1fr));
  height:clamp(360px,44vw,500px);
}
.phero__grid--3 .pshot:nth-child(1){grid-column:1/3;grid-row:1/3}
.phero__grid--3 .pshot:nth-child(2){grid-column:3/5;grid-row:1/2}
.phero__grid--3 .pshot:nth-child(3){grid-column:3/5;grid-row:2/3}
.phero__grid--4{
  grid-template-columns:repeat(4,1fr);
  grid-template-rows:repeat(2,minmax(0,1fr));
  height:clamp(380px,46vw,520px);
}
.phero__grid--4 .pshot:nth-child(1){grid-column:1/3;grid-row:1/3}
.phero__grid--4 .pshot:nth-child(2){grid-column:3/5;grid-row:1/2}
.phero__grid--4 .pshot:nth-child(3){grid-column:3/4;grid-row:2/3}
.phero__grid--4 .pshot:nth-child(4){grid-column:4/5;grid-row:2/3}
/* mosaic: 5–6 photos — same 4 columns, a third row. The hero is the only place
   a photo is shown full size, so a product with six good shots gets all six. */
.phero__grid--5,.phero__grid--6{
  grid-template-columns:repeat(4,1fr);
  grid-template-rows:repeat(3,minmax(0,1fr));
  height:clamp(520px,62vw,700px);
}
.phero__grid--5 .pshot:nth-child(1){grid-column:1/3;grid-row:1/3}
.phero__grid--5 .pshot:nth-child(2){grid-column:3/5;grid-row:1/2}
.phero__grid--5 .pshot:nth-child(3){grid-column:3/5;grid-row:2/3}
.phero__grid--5 .pshot:nth-child(4){grid-column:1/3;grid-row:3/4}
.phero__grid--5 .pshot:nth-child(5){grid-column:3/5;grid-row:3/4}
.phero__grid--6 .pshot:nth-child(1){grid-column:1/3;grid-row:1/3}
.phero__grid--6 .pshot:nth-child(2){grid-column:3/5;grid-row:1/2}
.phero__grid--6 .pshot:nth-child(3){grid-column:3/4;grid-row:2/3}
.phero__grid--6 .pshot:nth-child(4){grid-column:4/5;grid-row:2/3}
.phero__grid--6 .pshot:nth-child(5){grid-column:1/3;grid-row:3/4}
.phero__grid--6 .pshot:nth-child(6){grid-column:3/5;grid-row:3/4}
/* duo: 2 photos */
.phero__grid--2{grid-template-columns:1fr 1fr;height:clamp(320px,40vw,460px)}
/* nothing but placeholders — keep the band short rather than reserving
   photo-sized empty boxes */
.phero__grid--awaiting{height:clamp(160px,18vw,210px)}
.pnote{
  display:flex;gap:.6rem;align-items:flex-start;margin-top:1.2rem;
  font-size:.85rem;color:var(--ink-soft);
}
.pnote svg{width:16px;height:16px;color:var(--pink);flex:none;margin-top:3px}

/* ---------- Product body ---------- */
.pbody{padding:clamp(3rem,6vw,4.5rem) 0;border-top:1px solid var(--grey-line)}
.pbody__grid{display:grid;grid-template-columns:1.5fr 1fr;gap:clamp(2rem,5vw,4rem);align-items:start}
/* Grid items default to min-width:auto, so the widest un-wrappable child sets
   the track's floor. The spec rail's CTA is a nowrap .btn reading "Contact us
   about Plissé & Honeycomb" — a 396px min-content width that dragged the whole
   single-column layout 51px past a 360px screen. body{overflow-x:hidden} then
   swallowed the scrollbar, so it just looked like the text was cut off. */
.pbody__grid>*,.cta-band__grid>*{min-width:0}
/* Once that CTA is allowed to wrap it needs its own text centring: the .btn is
   an inline-flex, so justify-content only centres the anonymous text item as a
   block — the lines inside it stay ragged-left and read as mis-aligned. */
.pspec .btn{white-space:normal;text-align:center;line-height:1.3;padding:1rem 1.4rem}
.pbody h2{font-size:clamp(1.5rem,3vw,2.1rem);margin-bottom:1rem}
.pbody h3{font-size:1.12rem;margin:2rem 0 .8rem}
.pbody p{color:var(--ink-soft);margin-bottom:1rem;max-width:68ch}
.pbody p:last-child{margin-bottom:0}

.pbenefits{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:1.8rem}
.pbenefit{
  background:#fff;border:1px solid var(--grey-line);border-radius:12px;padding:1.2rem;
  border-top:3px solid var(--pink);transition:transform .2s,box-shadow .2s;
}
.pbenefit:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.pbenefit svg{width:24px;height:24px;color:var(--pink);margin-bottom:.6rem}
.pbenefit h4{font-size:.98rem;margin-bottom:.25rem}
.pbenefit p{font-size:.87rem;margin:0}

/* sticky spec rail */
.pspec{
  position:sticky;top:calc(var(--nav-h) + 18px);
  background:var(--grey);border-radius:var(--radius);padding:1.6rem;
  border:1px solid var(--grey-line);
}
.pspec h3{font-size:.78rem;text-transform:uppercase;letter-spacing:.09em;color:var(--ink-soft);margin:0 0 .9rem}
.pspec h3:not(:first-child){margin-top:1.6rem;padding-top:1.3rem;border-top:1px solid var(--grey-line)}
.pspec ul{display:grid;gap:.55rem}
.pspec li{display:flex;gap:.55rem;align-items:flex-start;font-size:.91rem;color:var(--ink-soft)}
.pspec li svg{width:17px;height:17px;color:var(--pink);flex:none;margin-top:3px}
.pspec .btn{width:100%;justify-content:center;margin-top:1.5rem}

/* ---------- Related products ---------- */
.related{padding:clamp(2.5rem,5vw,4rem) 0;background:var(--grey);border-top:1px solid var(--grey-line)}
.related h2{font-size:clamp(1.3rem,2.6vw,1.8rem);margin-bottom:1.6rem}

/* ---------- Catalogue cards (products.html + related) ---------- */
.ccard-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.3rem}
.ccard{
  background:#fff;border:1px solid var(--grey-line);border-radius:var(--radius);overflow:hidden;
  display:flex;flex-direction:column;transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.ccard:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);border-color:var(--pink)}
.ccard__media{position:relative;aspect-ratio:4/3;overflow:hidden;background:var(--grey)}
.ccard__media img{width:100%;height:100%;object-fit:cover;transition:transform .55s ease}
.ccard:hover .ccard__media img{transform:scale(1.07)}
/* no-photo card: brand panel instead of a stand-in photo */
.ccard__media--needed,
.ccard__media--none{
  background:linear-gradient(135deg,var(--pink) 0%,var(--pink-dark) 100%);
  display:grid;place-items:center;color:#fff;
}
.ccard__media--needed::after,
.ccard__media--none::after{
  content:"";position:absolute;inset:0;opacity:.2;
  background-image:repeating-linear-gradient(180deg,rgba(255,255,255,.9) 0 2px,transparent 2px 15px);
}
.ccard__media--needed svg,
.ccard__media--none svg{width:46px;height:46px;position:relative;z-index:2}
.ccard__media--needed{flex-direction:column;gap:.5rem}
.ccard__media--needed b{
  position:relative;z-index:2;font-family:var(--font-head);font-size:.85rem;
  letter-spacing:.04em;text-transform:uppercase;
}
.ccard__body{padding:1.1rem 1.2rem 1.3rem;display:flex;flex-direction:column;flex:1}
.ccard__body h3{font-size:1.05rem;margin-bottom:.35rem}
.ccard__body p{font-size:.88rem;color:var(--ink-soft);margin-bottom:1rem;flex:1}
.ccard__link{
  display:inline-flex;align-items:center;gap:.35rem;color:var(--pink);
  font-family:var(--font-head);font-weight:700;font-size:.88rem;
}
.ccard__link svg{width:15px;height:15px;transition:transform .2s}
.ccard:hover .ccard__link svg{transform:translateX(4px)}

/* ---------- Conversion band ---------- */
.cta-band{
  background:linear-gradient(125deg,var(--pink) 0%,var(--pink-dark) 55%,#7d0b4e 100%);
  color:#fff;padding:clamp(3rem,6vw,4.8rem) 0;position:relative;overflow:hidden;
}
.cta-band::before{
  content:"";position:absolute;inset:0;opacity:.12;pointer-events:none;
  background-image:repeating-linear-gradient(180deg,rgba(255,255,255,.9) 0 2px,transparent 2px 20px);
}
.cta-band .container{position:relative;z-index:2}
.cta-band__grid{display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(1.6rem,4vw,3rem);align-items:start}
.cta-band__intro{margin-bottom:1.6rem}
.cta-band h2{color:#fff;font-size:clamp(1.6rem,3.4vw,2.5rem);margin-bottom:.5rem}
.cta-band__intro p{color:#ffe3f4;max-width:52ch}
/* the band reuses the Contact page's own .form and .info-block, slimmed down,
   so the two never drift apart */
.cta-band .form{padding:clamp(1.3rem,3vw,2rem)}
.cta-band .form .field{margin-bottom:.85rem}
.cta-band .form textarea{min-height:86px}
.cta-band .info-block{background:#fff}

/* ---------- Product-page responsive ---------- */
@media(max-width:1024px){
  .ccard-grid{grid-template-columns:repeat(3,1fr)}
  .pbody__grid{grid-template-columns:1fr}
  .pspec{position:static}
  .pbenefits{grid-template-columns:1fr 1fr}
  /* Full width means most of these items now wrap. At .55rem the gap between
     two items was smaller than the gap between one item's own wrapped lines,
     so a three-line entry read as two separate ones. */
  .pspec ul{gap:.9rem}
  .pspec li{line-height:1.5}
  .pspec .btn{margin-top:1.8rem}
}
@media(max-width:768px){
  /* mega dropdown collapses into the mobile burger accordion */
  .dropdown--mega{
    position:static;display:block;min-width:0;padding:0 0 .4rem .3rem;
    max-height:0;overflow:hidden;box-shadow:none;border:none;
  }
  .has-dropdown:hover .dropdown--mega,
  .has-dropdown:focus-within .dropdown--mega{transform:none}
  .has-dropdown.open .dropdown--mega{max-height:min(66vh,620px);overflow-y:auto}
  .dropdown--mega a{font-size:.95rem;padding:.55rem .4rem}
  .dropdown--mega .dd-all{margin-top:.6rem;padding-top:.6rem}

  .phero__grid--3,.phero__grid--4,.phero__grid--5,.phero__grid--6{
    grid-template-columns:1fr 1fr;grid-template-rows:auto;height:auto;
  }
  .phero__grid--3 .pshot,.phero__grid--4 .pshot,
  .phero__grid--5 .pshot,.phero__grid--6 .pshot{grid-column:auto!important;grid-row:auto!important;aspect-ratio:4/3}
  .phero__grid--3 .pshot:nth-child(1),.phero__grid--4 .pshot:nth-child(1),
  .phero__grid--5 .pshot:nth-child(1),.phero__grid--6 .pshot:nth-child(1){grid-column:1/-1!important;aspect-ratio:16/10}
  .phero__grid--2{height:auto}
  .phero__grid--2 .pshot{aspect-ratio:4/3}
  .cta-band__grid{grid-template-columns:1fr}
  .ccard-grid{grid-template-columns:repeat(2,1fr);gap:1rem}
}
@media(max-width:520px){
  .ccard-grid{grid-template-columns:1fr}
  .pbenefits{grid-template-columns:1fr}
  .phero__grid--3,.phero__grid--4,.phero__grid--5,.phero__grid--6{grid-template-columns:1fr}
  .phero__grid--3 .pshot,.phero__grid--4 .pshot,
  .phero__grid--5 .pshot,.phero__grid--6 .pshot{aspect-ratio:16/10}
  .phero__grid--2{grid-template-columns:1fr}
}

/* ================================================================
   SHOWROOM SHOWCASE (about.html)
   Client-filmed walkthrough beside a grid of showroom photos.
   ================================================================ */
.showcase{
  margin-top:2.2rem;
}
.showcase__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(.6rem,1.3vw,1rem)}
.showcase__grid .pshot{aspect-ratio:4/3}
.showcase__note{
  display:flex;align-items:flex-start;gap:.6rem;margin-top:1rem;
  color:var(--ink-soft);font-size:.9rem;
}
.showcase__note svg{width:18px;height:18px;color:var(--pink);flex:none;margin-top:.15rem}

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

/* ================================================================
   CONTACT PAGE INTRO (contact.html)
   Explains what we need before the two dense blocks start.
   ================================================================ */
.contact-intro{max-width:820px;margin:0 auto 2.6rem;text-align:center}
.contact-intro h2{margin-bottom:.6rem}
.contact-intro > p{color:var(--ink-soft);font-size:1.05rem;line-height:1.7}
.contact-steps{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1.8rem;text-align:left;
}
.contact-step{
  background:var(--grey);border-radius:var(--radius);padding:1.2rem 1.1rem;
  border:1px solid var(--grey-line);position:relative;
}
.contact-step__n{
  width:30px;height:30px;border-radius:50%;background:var(--pink);color:#fff;
  display:grid;place-items:center;font-family:var(--font-head);font-weight:800;
  font-size:.85rem;margin-bottom:.7rem;
}
.contact-step h3{font-size:1rem;margin-bottom:.3rem}
.contact-step p{font-size:.9rem;color:var(--ink-soft);line-height:1.55;margin:0}
@media (max-width:760px){
  .contact-steps{grid-template-columns:1fr}
  .contact-intro{text-align:left}
}

/* ---------- Visit us band (index) ---------- */
/* The drone shot of the premises is only 630px wide, so it lives here at card
   size instead of being stretched across a full-bleed hero. */
.visit{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.6rem,4vw,3.2rem);align-items:center}
.visit__media{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.visit__media img{width:100%;height:100%;max-height:340px;object-fit:cover;display:block}
.visit__body h2{margin:.3rem 0 .8rem}
.visit__hours{list-style:none;padding:0;margin:1.2rem 0 1.6rem;display:grid;gap:.45rem}
.visit__hours li{display:flex;justify-content:space-between;gap:1rem;max-width:340px;
  padding-bottom:.45rem;border-bottom:1px solid var(--grey-line);font-size:.94rem;color:var(--ink-soft)}
.visit__hours b{color:var(--ink);font-weight:600}
/* The long-weekends note belongs to the hours block, so it closes the gap the
   list's own bottom margin leaves; without :has it just sits a little lower. */
.visit__hours:has(+ .visit__note){margin-bottom:.7rem}
.visit__note{max-width:340px;margin:0 0 1.6rem;font-size:.88rem;color:var(--ink-soft)}
.btn--ghost-dark{background:transparent;color:var(--ink);border:2px solid var(--grey-line)}
.btn--ghost-dark:hover{background:var(--ink);color:#fff;border-color:var(--ink);transform:translateY(-2px)}
@media (max-width:820px){
  .visit{grid-template-columns:1fr}
  .visit__hours li{max-width:none}
}

/* ---------- Motorisation band (product pages) ---------- */
/* Motorisation is a genuine differentiator, so it gets a real band rather than
   the inline pill it was reduced to on 2026-07-30. Tinted pink-soft so it
   reads as a highlight without competing with the pink .cta-band below it. */
.mband{
  background:var(--pink-soft);
  border-top:1px solid rgba(233,30,153,.18);
  border-bottom:1px solid rgba(233,30,153,.18);
  padding:clamp(1.6rem,4vw,2.4rem) 0;
  margin-bottom:clamp(2rem,5vw,3.4rem);
}
/* On Home it's a standalone section between two others, so it carries no
   trailing margin — the next section supplies its own padding. */
.mband--home{margin-bottom:0}
.mband__inner{
  display:grid;grid-template-columns:auto 1fr auto;
  gap:clamp(1rem,3vw,1.8rem);align-items:center;
}
/* grid children default to min-width:auto — without this the nowrap CTA sets
   the track floor and the whole page overflows at 360px (bug hit 2026-07-28) */
.mband__inner>*{min-width:0}
.mband__ico{
  width:54px;height:54px;border-radius:50%;flex:none;
  background:var(--pink);color:#fff;display:grid;place-items:center;
  box-shadow:0 8px 18px rgba(233,30,153,.28);
}
.mband__ico svg{width:26px;height:26px}
.mband__eyebrow{
  display:block;font-family:var(--font-head);font-weight:700;
  font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--pink);margin-bottom:.2rem;
}
.mband__copy h2{font-size:clamp(1.25rem,3vw,1.6rem);margin-bottom:.35rem}
.mband__copy p{color:var(--ink-soft);font-size:.95rem;max-width:56ch;margin:0}
.mband__cta{flex:none;white-space:nowrap}
@media (max-width:860px){
  .mband__inner{grid-template-columns:auto 1fr;row-gap:1.2rem}
  .mband__cta{grid-column:1/-1;justify-self:start;white-space:normal}
}
@media (max-width:520px){
  .mband__inner{grid-template-columns:1fr}
  .mband__cta{width:100%;justify-content:center}
}

/* "Motorised" flag on catalogue cards, and the line that explains it */
.ccard__motor{
  position:absolute;top:.6rem;left:.6rem;z-index:2;
  display:inline-flex;align-items:center;gap:.28rem;
  padding:.28rem .55rem;border-radius:999px;
  background:rgba(255,255,255,.94);color:var(--pink);
  font-family:var(--font-head);font-weight:700;
  font-size:.66rem;letter-spacing:.06em;text-transform:uppercase;
  box-shadow:0 2px 8px rgba(0,0,0,.18);
}
.ccard__media .ccard__motor svg{width:12px;height:12px;flex:none}
/* .pagehero p already sets `margin:0 auto`, so this needs to out-specify it */
.pagehero p.pagehero__note{
  display:inline-flex;align-items:flex-start;gap:.5rem;text-align:left;
  max-width:640px;margin:1.1rem auto 0;font-size:.9rem;
  padding:.7rem .95rem;border-radius:var(--radius);
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.16);
}
.pagehero__note svg{width:17px;height:17px;flex:none;margin-top:.15rem;color:#fff}
.pagehero__note b{color:#fff}
