/* ==========================================================================
   Newlands Blinds — stylesheet
   Palette: off-white bone + deep ink + fog olive accent  |  Fonts: Bodoni Moda + Figtree
   Theme: heritage-forest  |  Layout: photo hero, oversized display type overlapping the image edge
   Signature: the forest canopy draws in as the mist lifts off it, rain beading down the band
   ========================================================================== */

:root {
  --canvas: #f7f4ec;
  --canvas-dim: #efe8d8;
  --canvas-line: #ded5bd;
  --ink: #201f1a;
  --ink-soft: #58554a;
  --accent: #91906f;
  --accent-deep: #5c5b43;
  --accent-soft: #e6e3d3;
  --white: #ffffff;

  --font-display: "Bodoni Moda", "Times New Roman", serif;
  --font-body: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1280px;
  --gap: clamp(1rem, 2vw, 1.75rem);
  --section-pad: clamp(4rem, 8vw, 6.5rem);
  --radius: 4px;
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
svg { display: block; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.08;
  color: var(--ink);
}
h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
p { max-width: 62ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent-deep); }

.rule { height: 1px; width: 100%; background: var(--canvas-line); transform: scaleX(0); transform-origin: left; }
.js .rule.reveal { transition: transform 1.1s var(--ease); }
.rule.is-drawn { transform: scaleX(1); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible,
select:focus-visible, summary:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 3px; }

.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal-scale { opacity: 0; transform: scale(1.08); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal-scale { opacity: 1; transform: none; }
  .rule { transform: scaleX(1); }
}
html:not(.js) .rule { transform: scaleX(1); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.9rem; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  will-change: transform;
}
.btn-primary { background: var(--ink); color: var(--canvas); box-shadow: 0 10px 24px -12px rgba(32, 31, 26, 0.5); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-deep); color: var(--white);
  transform: translate(5px, -4px); box-shadow: 0 22px 38px -14px rgba(32, 31, 26, 0.45);
}
.btn-outline { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--ink); color: var(--canvas);
  transform: translate(5px, -4px); box-shadow: 0 16px 30px -16px rgba(32, 31, 26, 0.4);
}
.btn-outline.on-dark { border-color: rgba(247, 244, 236, 0.6); color: var(--canvas); }
.btn-outline.on-dark:hover, .btn-outline.on-dark:focus-visible { background: rgba(247, 244, 236, 0.12); border-color: var(--canvas); color: var(--canvas); }
.btn-block { width: 100%; }
@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover, .btn-primary:focus-visible, .btn-outline:hover, .btn-outline:focus-visible { transform: none; }
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 90; padding: 1.15rem 0; transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease); }
.site-header .nav-inner { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-mark .mark-leaf { fill: var(--accent); stroke: var(--ink); stroke-width: 1.1; }
.brand-mark .mark-bar { stroke: var(--ink); stroke-width: 1.6; stroke-linecap: round; }
.brand-mark .mark-vein { stroke: var(--ink); stroke-width: 1; opacity: 0.45; }
.brand-mark .mark-drop { fill: var(--accent); }
.logo-mark { width: 40px; height: 40px; flex: none; border-radius: 9px; object-fit: cover; display: block; box-shadow: 0 2px 8px rgba(23, 23, 20, 0.28); }
.brand-word { font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.brand-word em { font-style: italic; color: var(--accent-deep); }

.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a:not(.nav-cta) { font-size: 0.87rem; font-weight: 500; color: var(--ink); padding-bottom: 3px; border-bottom: 1px solid transparent; transition: color 0.3s var(--ease), border-color 0.3s var(--ease); }
.nav-links a:not(.nav-cta):hover { border-color: var(--accent-deep); color: var(--accent-deep); }
.nav-cta { padding: 0.65rem 1.35rem; border-radius: 2px; background: var(--ink); color: var(--canvas); font-size: 0.84rem; font-weight: 600; transition: background 0.25s var(--ease), transform 0.25s var(--ease); }
.nav-cta:hover { background: var(--accent-deep); color: var(--white); transform: translateY(-1px); }

.site-header.is-solid { background: rgba(247, 244, 236, 0.94); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--canvas-line); padding: 0.75rem 0; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; }
.nav-toggle span { height: 2px; width: 100%; background: var(--ink); }

.mobile-nav { display: none; position: fixed; inset: 0; z-index: 95; background: var(--ink); padding: 6.5rem 1.75rem 2rem; flex-direction: column; gap: 1.75rem; }
.mobile-nav.is-open { display: flex; }
.mobile-nav a { color: var(--canvas); font-size: 1.2rem; font-family: var(--font-display); }
.mobile-nav .nav-cta { align-self: flex-start; background: var(--accent); color: var(--ink); }
.mobile-nav-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 34px; height: 34px; color: var(--canvas); }

@media (max-width: 860px) { .nav-links { display: none; } .nav-toggle { display: flex; } }

/* ==========================================================================
   Hero — photo inset right, oversized display headline overlapping its edge
   ========================================================================== */
.hero { position: relative; background: var(--canvas); padding-top: clamp(6.5rem, 12vw, 8.5rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(300px, 44%) 1fr; align-items: stretch; gap: 0; min-height: 78vh; }
.hero-copy { position: relative; z-index: 3; display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem) 3rem; }
.hero-headline {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -0.015em; line-height: 0.98;
  font-size: clamp(2.5rem, 5.6vw, 4.7rem); color: var(--ink);
  margin-right: clamp(-6vw, -8vw, -9vw);
  position: relative;
}
.hero-headline .word-wrap { display: inline-block; overflow: hidden; vertical-align: top; }
.hero-headline .word { display: inline-block; will-change: transform; }
.hero-headline em { font-style: italic; color: var(--accent-deep); }
.hero-sub { color: var(--ink-soft); font-size: 1.02rem; max-width: 40ch; }
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 0.3rem; }

.hero-photo { position: relative; overflow: visible; }
.hero-photo-frame {
  position: relative; height: 100%; min-height: 420px;
  margin-left: clamp(2.5rem, 6vw, 5.5rem);
  border: 1px solid var(--ink);
  overflow: hidden;
  background: var(--ink);
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 18% 58%; display: block; }
.hero-photo-frame::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(105deg, var(--canvas) 0%, rgba(247, 244, 236, 0.86) 8%, rgba(247, 244, 236, 0) 34%);
}
.hero-photo-caption {
  position: absolute; left: 0; bottom: 0; z-index: 2; padding: 0.9rem 1.2rem;
  background: rgba(32, 31, 26, 0.72); color: var(--canvas); font-size: 0.78rem; letter-spacing: 0.03em;
  max-width: 60%;
}

.hero-bar { border-top: 1px solid var(--canvas-line); padding: 1.6rem 0; background: var(--canvas); }
.hero-bar-inner { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: 1.7rem; }
.trust-item { display: flex; align-items: center; gap: 0.55rem; font-size: 0.85rem; color: var(--ink-soft); }
.trust-item svg { width: 17px; height: 17px; color: var(--accent-deep); flex: none; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-photo-frame { margin-left: 0; min-height: 320px; margin-top: 1.5rem; }
  .hero-headline { margin-right: 0; }
  .hero-copy { padding-bottom: 1.5rem; order: 1; }
  .hero-photo { order: 2; }
}

/* ==========================================================================
   Canopy band — THE signature moment. A forest canopy line draws in as the
   mist lifts off it, with rain beading down through the band.
   ========================================================================== */
.canopy-band { background: var(--ink); position: relative; overflow: hidden; padding: 0 0 clamp(1.25rem, 3vw, 2rem); }
.canopy-inner { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); position: relative; }
.canopy-band svg { width: 100%; height: auto; display: block; overflow: visible; }
.canopy-back { fill: none; stroke: var(--accent-deep); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; opacity: 0.6; }
.canopy-front { fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.canopy-mist { fill: url(#mistGradient); }
.canopy-label { font-family: var(--font-body); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; fill: rgba(247, 244, 236, 0.55); }
.raindrop { stroke: rgba(145, 144, 111, 0.85); stroke-width: 1.4; stroke-linecap: round; }

.js .canopy-band [data-draw] { stroke-dasharray: 1400; stroke-dashoffset: 1400; }
.js .canopy-band.is-drawn [data-draw] { stroke-dashoffset: 0; }
.js .canopy-band.is-drawn .canopy-front { transition: stroke-dashoffset 2s var(--ease); }
.js .canopy-band.is-drawn .canopy-back { transition: stroke-dashoffset 2.4s var(--ease) 0.15s; }
.js .canopy-band .canopy-mist { opacity: 1; transition: opacity 2.2s var(--ease) 0.3s; }
.js .canopy-band.is-drawn .canopy-mist { opacity: 0; }

.js .raindrop { opacity: 0; animation: rain-fall 2.6s var(--ease) infinite; }
.raindrop:nth-child(1) { animation-delay: 0.1s; }
.raindrop:nth-child(2) { animation-delay: 0.7s; }
.raindrop:nth-child(3) { animation-delay: 1.3s; }
.raindrop:nth-child(4) { animation-delay: 0.4s; }
.raindrop:nth-child(5) { animation-delay: 1.9s; }
.raindrop:nth-child(6) { animation-delay: 1s; }
@keyframes rain-fall {
  0% { opacity: 0; transform: translateY(-6px); }
  12% { opacity: 0.9; }
  55% { opacity: 0.5; }
  75% { opacity: 0; transform: translateY(22px); }
  100% { opacity: 0; transform: translateY(22px); }
}
@media (prefers-reduced-motion: reduce) {
  .js .canopy-band [data-draw] { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; transition: none !important; }
  .js .canopy-band .canopy-mist { opacity: 0 !important; transition: none !important; }
  .js .raindrop { animation: none !important; opacity: 0.5; transform: none; }
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee { background: var(--accent-soft); color: var(--ink-soft); overflow: hidden; padding: 0.9rem 0; white-space: nowrap; border-bottom: 1px solid var(--canvas-line); }
.marquee-track { display: inline-flex; gap: 3rem; animation: marquee 36s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-style: italic; font-size: 1.02rem; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 3rem; }
.marquee-track span::after { content: "—"; color: var(--accent-deep); margin-left: 3rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } .marquee { overflow-x: auto; } }

/* ==========================================================================
   Section shells
   ========================================================================== */
section { padding: var(--section-pad) 0; }
.section-head { max-width: 58ch; margin-bottom: 3rem; display: flex; flex-direction: column; gap: 1rem; }
.section-head p { color: var(--ink-soft); }
.section-alt { background: var(--white); }

/* ==========================================================================
   Product grid — photorealistic product photography, editorial cards
   ========================================================================== */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.product-card {
  background: var(--white); border: 1px solid var(--canvas-line); overflow: hidden;
  display: flex; flex-direction: column; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 26px 46px -26px rgba(32, 31, 26, 0.4); border-color: var(--accent); }
.product-photo { display: block; position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink); }
.product-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-photo img { transform: scale(1.06); }
.product-card-body { padding: 1.6rem 1.6rem 1.85rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.product-card h3 { font-size: 1.08rem; }
.product-card p { font-size: 0.9rem; color: var(--ink-soft); }
.product-link { margin-top: auto; font-size: 0.83rem; font-weight: 600; color: var(--accent-deep); display: inline-flex; align-items: center; gap: 0.4rem; }
.product-link svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); stroke: currentColor; }
.product-card:hover .product-link svg { transform: translateX(4px); }
.product-card--note .product-card-body { background: var(--accent-soft); border-left: 3px solid var(--accent-deep); padding-left: 1.35rem; }
/* legacy circular-icon pattern, still used for the small cross-sell "related" cards on product/area pages */
.product-icon { width: 62px; height: 62px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--white); border: 1px solid var(--canvas-line); }
.product-icon svg { width: 60%; height: 60%; }
.product-icon svg * { stroke: var(--ink); }
.related-card:hover .product-icon { border-color: var(--accent); }
.related-card:hover .product-icon svg * { stroke: var(--accent-deep); }
.product-icon svg, .product-icon svg * { transition: stroke 0.3s var(--ease), border-color 0.3s var(--ease); }
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Editorial photo section — gallery-placard collage
   ========================================================================== */
.editorial-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gap); align-items: start; }
.ed-figure { border: 1px solid var(--canvas-line); background: var(--white); padding: 10px 10px 0; }
.ed-figure .ed-media { position: relative; overflow: hidden; }
.ed-figure img { width: 100%; height: 100%; object-fit: cover; }
.ed-figure figcaption { padding: 0.9rem 0.2rem 1.1rem; font-size: 0.86rem; color: var(--ink-soft); }
.ed-figure figcaption strong { display: block; font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; color: var(--ink); margin-bottom: 0.2rem; }
.ed-1 { grid-column: 1 / 8; }
.ed-1 .ed-media { min-height: 420px; }
.ed-2 { grid-column: 8 / 13; margin-top: 2.5rem; }
.ed-2 .ed-media { min-height: 240px; }
.ed-3 { grid-column: 8 / 13; }
.ed-3 .ed-media { min-height: 240px; }
@media (max-width: 900px) {
  .editorial-grid { grid-template-columns: 1fr; }
  .ed-1, .ed-2, .ed-3 { grid-column: 1; margin-top: 0; }
  .ed-1 .ed-media, .ed-2 .ed-media, .ed-3 .ed-media { min-height: 300px; }
}

/* ==========================================================================
   Locale storytelling
   ========================================================================== */
.locale-section { background: var(--ink); color: var(--canvas); }
.locale-section .eyebrow { color: var(--accent); }
.locale-section .eyebrow::before { background: var(--accent); }
.locale-section h2 { color: var(--canvas); }
.locale-section .section-head p { color: rgba(247, 244, 236, 0.72); }
.locale-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3rem; }
.locale-item { display: flex; gap: 1.1rem; }
.locale-item .num { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; color: var(--accent); flex: none; width: 2.2rem; }
.locale-item h3 { color: var(--canvas); font-size: 1.05rem; margin-bottom: 0.4rem; }
.locale-item p { color: rgba(247, 244, 236, 0.72); font-size: 0.95rem; }
@media (max-width: 760px) { .locale-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Process
   ========================================================================== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.process-step { position: relative; padding-top: 2.5rem; border-top: 1px solid var(--canvas-line); }
.process-step .num { font-family: var(--font-display); font-style: italic; font-size: 2.6rem; color: var(--accent-deep); line-height: 1; margin-bottom: 1rem; display: block; }
.process-step h3 { margin-bottom: 0.6rem; }
.process-step p { font-size: 0.94rem; color: var(--ink-soft); }
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Area chips
   ========================================================================== */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.area-chip { display: block; border: 1px solid var(--canvas-line); border-radius: var(--radius); padding: 1.6rem 1.5rem; background: var(--canvas); transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.area-chip:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 14px 30px -18px rgba(32, 31, 26, 0.3); }
.area-chip .eyebrow { margin-bottom: 0.75rem; }
.area-chip h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.area-chip p { font-size: 0.88rem; color: var(--ink-soft); }
.area-chip .go { margin-top: 1rem; font-size: 0.82rem; font-weight: 600; color: var(--accent-deep); display: inline-flex; align-items: center; gap: 0.35rem; }
@media (max-width: 900px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .areas-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--canvas-line); padding: 1.6rem 0; }
.faq-item summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; cursor: pointer; font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--accent-deep); transition: transform 0.3s var(--ease); }
.faq-icon::before { left: 0; top: 50%; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-icon::after { top: 0; left: 50%; height: 100%; width: 2px; transform: translateX(-50%); }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-item[open] summary { color: var(--accent-deep); }
.faq-item p { padding-top: 1rem; font-size: 0.96rem; color: var(--ink-soft); }

/* ==========================================================================
   Closing CTA — animated drifting glow (olive-toned, never purple)
   ========================================================================== */
.closing-cta { position: relative; overflow: hidden; background: var(--ink); color: var(--canvas); text-align: center; }
.closing-cta .glow { position: absolute; border-radius: 50%; filter: blur(75px); opacity: 0.45; pointer-events: none; }
.glow-1 { width: 480px; height: 480px; background: var(--accent); top: -170px; left: -110px; animation: drift-a 23s ease-in-out infinite alternate; }
.glow-2 { width: 420px; height: 420px; background: var(--accent-deep); bottom: -180px; right: -100px; animation: drift-b 27s ease-in-out infinite alternate; }
@keyframes drift-a { from { transform: translate(0, 0) scale(1); } to { transform: translate(80px, 55px) scale(1.15); } }
@keyframes drift-b { from { transform: translate(0, 0) scale(1); } to { transform: translate(-70px, -45px) scale(1.1); } }
@media (prefers-reduced-motion: reduce) { .glow-1, .glow-2 { animation: none; } }
.closing-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.closing-cta h2 { color: var(--canvas); }
.closing-cta p { color: rgba(247, 244, 236, 0.75); }
.closing-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ==========================================================================
   Enquiry form
   ========================================================================== */
.enquiry-section { background: var(--white); }
.enquiry-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.enquiry-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; color: var(--ink); }
.field input, .field select, .field textarea { border: 1px solid var(--canvas-line); border-radius: 3px; padding: 0.85rem 1rem; background: var(--canvas); font-size: 0.95rem; transition: border-color 0.25s var(--ease), background 0.25s var(--ease); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent-deep); background: var(--white); outline: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.legend { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; color: var(--ink); text-transform: none; margin-bottom: 0.6rem; display: block; }
.interest-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.55rem 1rem; }
.interest-grid label { display: flex; align-items: center; gap: 0.55rem; font-size: 0.88rem; color: var(--ink-soft); }
.interest-grid input { width: 15px; height: 15px; accent-color: var(--accent-deep); }
.form-popia { font-size: 0.82rem; color: var(--ink-soft); border-left: 2px solid var(--accent); padding-left: 0.85rem; }
.form-success { display: none; border: 1px solid var(--accent); background: var(--accent-soft); border-radius: var(--radius); padding: 1.1rem 1.3rem; font-size: 0.92rem; color: var(--ink); }
.form-success.is-visible { display: block; }
.enquiry-form.is-sent { display: none; }
@media (max-width: 900px) { .enquiry-wrap { grid-template-columns: 1fr; gap: 2.5rem; } .field-row, .interest-grid { grid-template-columns: 1fr; } }
.enquiry-aside { display: flex; flex-direction: column; gap: 1.5rem; }
.aside-card { background: var(--canvas); border: 1px solid var(--canvas-line); border-radius: var(--radius); padding: 1.75rem; }
.aside-card h3 { font-size: 1.02rem; margin-bottom: 0.6rem; }
.aside-card p { font-size: 0.9rem; color: var(--ink-soft); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(247, 244, 236, 0.72); padding: 4.5rem 0 2.25rem; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 3rem; }
.footer-brand .brand-word { color: var(--canvas); }
.footer-brand .mark-bar { stroke: var(--canvas); }
.footer-brand .mark-vein { stroke: var(--canvas); }
.footer-tagline { margin-top: 1rem; font-size: 0.92rem; max-width: 34ch; color: rgba(247, 244, 236, 0.72); }
.footer-links { display: grid; gap: 0.65rem; }
.footer-links a { font-size: 0.9rem; color: rgba(247, 244, 236, 0.72); transition: color 0.25s var(--ease); }
.footer-links a:hover { color: var(--accent); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--canvas); margin-bottom: 1rem; font-weight: 700; }
.footer-bottom { margin-top: 3.5rem; padding-top: 1.75rem; border-top: 1px solid rgba(247, 244, 236, 0.14); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.8rem; color: rgba(247, 244, 236, 0.5); }
.footer-popia { max-width: 60ch; }
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; } }

/* ==========================================================================
   Chat widget
   ========================================================================== */
.chat-widget { position: fixed; right: clamp(1rem, 3vw, 1.75rem); bottom: clamp(1rem, 3vw, 1.75rem); z-index: 120; }
.chat-toggle { width: 58px; height: 58px; border-radius: 50%; background: var(--ink); color: var(--canvas); display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 30px -10px rgba(32, 31, 26, 0.5); transition: transform 0.3s var(--ease), background 0.3s var(--ease); }
.chat-toggle:hover { transform: scale(1.06); background: var(--accent-deep); }
.chat-toggle svg { width: 26px; height: 26px; }
.chat-toggle .icon-close { display: none; }
.chat-widget.is-open .chat-toggle .icon-open { display: none; }
.chat-widget.is-open .chat-toggle .icon-close { display: block; }
.chat-panel { position: absolute; right: 0; bottom: 74px; width: min(370px, calc(100vw - 2.5rem)); max-height: min(560px, 72vh); background: var(--white); border-radius: 10px; box-shadow: 0 30px 60px -20px rgba(32, 31, 26, 0.35); display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--canvas-line); }
.chat-panel[hidden] { display: none; }
.chat-header { background: var(--ink); color: var(--canvas); padding: 1rem 1.1rem; display: flex; align-items: center; gap: 0.75rem; }
.chat-header-mark { width: 28px; height: 28px; flex: none; }
.chat-header-mark .mark-bar, .chat-header-mark .mark-vein { stroke: var(--canvas); }
.chat-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; }
.chat-sub { font-size: 0.74rem; color: rgba(247, 244, 236, 0.7); }
.chat-close { margin-left: auto; width: 26px; height: 26px; font-size: 1.3rem; color: rgba(247, 244, 236, 0.7); }
.chat-close:hover { color: var(--canvas); }
.chat-body { flex: 1; overflow-y: auto; padding: 1.1rem; display: flex; flex-direction: column; gap: 0.7rem; background: var(--canvas); }
.msg { max-width: 84%; padding: 0.7rem 0.95rem; border-radius: 10px; font-size: 0.88rem; line-height: 1.5; }
.msg-bot { align-self: flex-start; background: var(--white); border: 1px solid var(--canvas-line); border-bottom-left-radius: 3px; color: var(--ink); }
.msg-user { align-self: flex-end; background: var(--accent-deep); color: var(--white); border-bottom-right-radius: 3px; }
.msg-popia { font-size: 0.76rem; color: var(--ink-soft); background: transparent; border: none; padding: 0 0.2rem; max-width: 100%; }
.chat-quick { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0 1.1rem 0.9rem; background: var(--canvas); }
.chip { border: 1px solid var(--ink); color: var(--ink); border-radius: 999px; padding: 0.45rem 0.9rem; font-size: 0.82rem; font-weight: 500; transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.chip:hover { background: var(--ink); color: var(--canvas); }
.chat-input-row { display: flex; border-top: 1px solid var(--canvas-line); background: var(--white); }
.chat-input-row input { flex: 1; border: none; padding: 0.9rem 1rem; font-size: 0.9rem; background: transparent; }
.chat-input-row input:focus { outline: none; }
.chat-input-row button { padding: 0 1.2rem; font-weight: 600; font-size: 0.85rem; color: var(--accent-deep); }
.chat-input-row button:hover { color: var(--ink); }

/* ==========================================================================
   Sub-page hero (products / areas)
   ========================================================================== */
.sub-hero { position: relative; padding-top: 9.5rem; padding-bottom: 5rem; background: var(--ink); color: var(--canvas); overflow: hidden; }
.sub-hero .eyebrow { color: var(--accent); }
.sub-hero .eyebrow::before { background: var(--accent); }
.sub-hero h1 { color: var(--canvas); font-size: clamp(2.1rem, 4.4vw, 3.6rem); max-width: 18ch; margin: 1rem 0 1.25rem; }
.sub-hero p.lede { color: rgba(247, 244, 236, 0.75); font-size: 1.05rem; max-width: 56ch; }
.sub-hero-media { position: absolute; inset: 0; z-index: 0; }
.sub-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.sub-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(32, 31, 26, 0.6), var(--ink) 92%); }
.sub-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.82rem; color: rgba(247, 244, 236, 0.65); margin-bottom: 1.75rem; }
.breadcrumb a { color: rgba(247, 244, 236, 0.65); border-bottom: 1px solid transparent; }
.breadcrumb a:hover { color: var(--accent); border-color: var(--accent); }

.content-block { max-width: 72ch; }
.content-block h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.content-block h2:first-child { margin-top: 0; }
.content-block p { margin-bottom: 1.1rem; color: var(--ink-soft); }
.content-block ul { display: grid; gap: 0.65rem; margin-bottom: 1.3rem; }
.content-block ul li { padding-left: 1.3rem; position: relative; color: var(--ink-soft); font-size: 0.96rem; }
.content-block ul li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.two-col { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3.5rem; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

.callout { background: var(--canvas); border-left: 3px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.5rem 1.75rem; margin: 1.5rem 0; }
.callout p { margin: 0; color: var(--ink); font-size: 0.92rem; }
.callout .callout-label { display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-deep); font-weight: 700; margin-bottom: 0.5rem; }

.side-card { background: var(--ink); color: var(--canvas); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 6.5rem; }
.side-card h3 { color: var(--canvas); font-size: 1.15rem; }
.side-card p { color: rgba(247, 244, 236, 0.75); font-size: 0.9rem; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr; } }
.related-card { border: 1px solid var(--canvas-line); border-radius: var(--radius); padding: 1.5rem; background: var(--canvas); transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.related-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.related-card .product-icon { margin-bottom: 1rem; }
.related-card h4 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--ink); }
.related-card p { font-size: 0.88rem; color: var(--ink-soft); }

.area-hero-figure { border: 1px solid var(--canvas-line); overflow: hidden; margin-bottom: 2rem; }
.area-hero-figure img { width: 100%; height: 360px; object-fit: cover; }
.spec-list { display: grid; gap: 1.4rem; }
.spec-list li { display: flex; gap: 1rem; }
.spec-list .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); margin-top: 0.5em; flex: none; }

/* roller shutters are shading products, not security products */
.rs-note { font-size: 0.86rem; line-height: 1.55; color: var(--ink-soft); margin-top: 0.4rem; padding-left: 0.85rem; border-left: 2px solid var(--accent); }
.rs-note strong { font-weight: 600; color: var(--ink); }
