:root {
  --charcoal: #161716; --charcoal-2: #202020; --forest: #3e3e3e; --forest-deep: #2c2c2c;
  --moss: #6e6e6e; --moss-faint: rgba(110, 110, 110, 0.35);
  --lumens: #E85A1F; --lumens-deep: #C44513; --lumens-soft: #F0A678;
  --brand-green: #88D030; --brand-green-deep: #6FB222;
  --birch: #ECE8E0; --birch-2: #DCD7CC; --rule: #C9C3B5; --rule-soft: rgba(201,195,181,0.5);
  --pbar-bg: #292929; --pbar-rule: rgba(236,232,224,0.14); --pbar-div: rgba(236,232,224,0.09);
  --grey: #6E6E68; --grey-2: #8E8E88; --white: #fff;
  --review: #7C5CFF; --review-bg: rgba(124,92,255,0.16); --review-line: rgba(124,92,255,0.55);
  --display: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --container: 1440px; --gutter: clamp(20px, 4vw, 48px);
  --hstack: 84px; /* sticky header height */
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body { font-family: var(--body); background: var(--birch); color: var(--charcoal); -webkit-font-smoothing: antialiased; line-height:1.5; font-size:16px; overflow-x:hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--lumens); color: var(--birch); }
.eyebrow { font-family: var(--mono); font-size:11px; font-weight:500; letter-spacing:0.14em; text-transform:uppercase; color: var(--lumens); display:inline-flex; align-items:center; gap:10px; }
.eyebrow::before { content:''; width:24px; height:1px; background: var(--lumens); display:inline-block; }
.eyebrow.no-rule::before { display: none; }
.mono { font-family: var(--mono); font-feature-settings:"tnum"; }
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.btn { display:inline-flex; align-items:center; gap:12px; padding:16px 24px; border-radius:999px; font-family: var(--body); font-weight:600; font-size:15px; transition: transform .25s, background .2s, color .2s, border-color .2s; white-space:nowrap; border:1px solid transparent; }
.btn:hover { transform: translateY(-1px); }
.btn .ar { display: inline-block; transition: transform .25s; }
.btn:hover .ar { transform: translateX(3px); }
.btn-sm { padding:11px 18px; font-size:14px; }
.btn-primary { background: var(--lumens); color: var(--birch); } .btn-primary:hover { background: var(--lumens-deep); }
.btn-dark { background: var(--charcoal); color: var(--birch); } .btn-dark:hover { background: var(--forest); }
.btn-ghost { color: var(--charcoal); border-color: var(--charcoal); } .btn-ghost:hover { background: var(--charcoal); color: var(--birch); }
.btn-ghost-light { color: var(--birch); border-color: rgba(236,232,224,0.6); } .btn-ghost-light:hover { background: var(--birch); color: var(--charcoal); border-color: var(--birch); }

/* REVIEW HIGHLIGHT — purple = content pending client confirmation */
.rvw { background: var(--review-bg); box-shadow: inset 0 -2px 0 var(--review-line); color: inherit; border-radius: 2px; padding: 0 3px; position: relative; }
.rvw-tag { font-family: var(--mono); font-size: 9px; letter-spacing:0.1em; text-transform:uppercase; color: var(--review); vertical-align: super; margin-left: 2px; }

/* ── PROMO / SEASONAL ANNOUNCEMENT BAR ── */
.promo-bar { background: radial-gradient(120% 260% at 50% 0%, #22201b 0%, var(--charcoal) 62%); color: var(--birch); border-bottom: 1px solid rgba(236,232,224,0.08); }
.promo-row { display:flex; align-items:center; justify-content:center; gap:18px; min-height:40px; padding:7px 0; flex-wrap:wrap; }
.promo-tag { display:inline-flex; align-items:center; gap:7px; font-family:var(--mono); font-size:10px; font-weight:500; letter-spacing:0.16em; text-transform:uppercase; color:var(--lumens); white-space:nowrap; }
.promo-tag .sun { width:13px; height:13px; flex-shrink:0; }
.promo-msg { margin:0; font-family:var(--body); font-size:13px; line-height:1.4; letter-spacing:-0.005em; text-align:center; color:rgba(236,232,224,0.80); }
.promo-msg b { color:var(--birch); font-weight:600; }
.promo-cta { display:inline-flex; align-items:center; gap:7px; font-family:var(--mono); font-size:10.5px; letter-spacing:0.09em; text-transform:uppercase; color:var(--lumens); white-space:nowrap; transition:color .15s, gap .2s; }
.promo-cta:hover { color:var(--lumens-soft); gap:10px; }
.promo-cta .ar { transition: transform .2s; } .promo-cta:hover .ar { transform: translateX(2px); }
@media (max-width: 900px) { .promo-msg .promo-sub { display:none; } }
@media (max-width: 600px) { .promo-tag { display:none; } .promo-row { gap:12px; padding:8px 16px; } .promo-msg { font-size:12px; } }

/* ── HEADER (comprehensive, mega-menu) ── */
.stick { position: sticky; top: 0; z-index: 60; }
.site-header { background: var(--birch); border-bottom:1px solid var(--rule); transition: box-shadow .25s; }
.stick.scrolled .site-header { box-shadow: 0 8px 30px rgba(22,23,22,0.08); }
.header-row { display:flex; align-items:center; justify-content:space-between; height:72px; gap:24px; }
.brand { display:flex; align-items:center; gap:6px; flex-shrink:0; }
.brand-logo { height:40px; width:auto; display:block; }
.brand-logo .hl-ink { fill: var(--charcoal); }
.brand-logo .hl-primary { fill: var(--brand-green); }
.m-menu-top .brand-logo { height:34px; }
.brand .dot { width:8px; height:8px; background: var(--lumens); border-radius:50%; display:inline-block; transform: translateY(-2px); }
.nav { display:flex; align-items:stretch; gap:4px; height:72px; }
.nav-item { position: relative; display:flex; align-items:center; }
.nav-link { font-size:14px; font-weight:500; position:relative; padding:0 14px; height:72px; display:inline-flex; align-items:center; gap:6px; cursor:pointer; }
.nav-link .caret { width:9px; height:9px; opacity:0.6; transition: transform .2s; }
.nav-item.open .nav-link .caret { transform: rotate(180deg); }
.nl-txt { position: relative; }
.nl-txt::after { content:''; position:absolute; left:0; right:0; bottom:-7px; height:1.5px; width:0; background: var(--lumens); transition: width .2s; }
.nav-link:hover .nl-txt::after, .nav-item.open .nl-txt::after, .nav-link.active .nl-txt::after { width:100%; }
.header-cta { display:flex; align-items:center; gap:14px; flex-shrink:0; }
.header-cta .phone { font-family: var(--body); font-weight:600; font-size:14.5px; color: var(--charcoal); letter-spacing:0; font-feature-settings:"tnum"; display:inline-flex; align-items:center; gap:7px; }
.header-cta .phone svg { width:14px; height:14px; color: var(--charcoal); }

/* dropdown / mega panels */
.menu-panel { position:absolute; top:calc(100% - 1px); left:0; background: var(--birch); border:1px solid var(--rule); border-radius:6px; box-shadow: 0 24px 48px rgba(22,23,22,0.14); padding:18px; opacity:0; visibility:hidden; transform: translateY(8px); transition: opacity .2s, transform .2s, visibility .2s; z-index:70; }
.nav-item.open .menu-panel { opacity:1; visibility:visible; transform:none; }
.menu-panel.simple { min-width: 248px; }
.menu-panel.simple ul { list-style:none; display:flex; flex-direction:column; gap:2px; }
.menu-panel.simple a { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:11px 12px; border-radius:5px; font-size:14px; font-weight:500; transition: background .15s, color .15s; }
.menu-panel.simple a:hover { background: var(--birch-2); color: var(--lumens); }
.menu-panel.simple a .m-sub { font-family: var(--mono); font-size:10px; letter-spacing:0.04em; text-transform:uppercase; color: var(--grey); }
.menu-panel.simple a:hover .m-sub { color: var(--lumens-soft); }
.menu-panel.mega { width: min(680px, 92vw); left:14px; padding:22px; }
.mega-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; padding-bottom:14px; border-bottom:1px solid var(--rule-soft); }
.mega-head span { font-family: var(--mono); font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color: var(--grey); }
.mega-head a { font-family: var(--mono); font-size:11px; letter-spacing:0.06em; text-transform:uppercase; color: var(--lumens); display:inline-flex; gap:6px; }
.mega-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap:8px; }
.mega-prod { display:flex; align-items:center; gap:14px; padding:12px; border-radius:6px; transition: background .15s; }
.mega-prod:hover { background: var(--birch-2); }
.mega-prod .mp-thumb { width:52px; height:52px; flex-shrink:0; border-radius:5px; border:1px solid var(--rule-soft); background: var(--white) center/contain no-repeat; }
.mega-prod .mp-name { display:block; font-family: var(--display); font-weight:700; font-size:15px; letter-spacing:-0.01em; transition: color .15s; }
.mega-prod:hover .mp-name { color: var(--lumens); }
.mega-prod .mp-app { display:block; font-family: var(--mono); font-size:10px; letter-spacing:0.04em; text-transform:uppercase; color: var(--grey); margin-top:3px; }
.mega-prod.is-current { background: var(--birch-2); box-shadow: inset 0 0 0 1px var(--rule); }
.mega-prod.is-current .mp-name { color: var(--lumens); }

.mobile-toggle { display:none; width:44px; height:44px; border:1px solid var(--rule); border-radius:999px; align-items:center; justify-content:center; flex-shrink:0; }
.mobile-toggle span { display:block; width:16px; height:1.5px; background: var(--charcoal); position:relative; }
.mobile-toggle span::before, .mobile-toggle span::after { content:''; position:absolute; left:0; width:16px; height:1.5px; background: var(--charcoal); }
.mobile-toggle span::before { top:-5px; } .mobile-toggle span::after { top:5px; }
@media (max-width: 1080px) { .nav, .header-cta .phone, .header-cta .btn { display:none; } .mobile-toggle { display:inline-flex; } }

/* MOBILE MENU */
.m-menu { position: fixed; inset:0; z-index:200; background: var(--birch); transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); overflow-y:auto; display:flex; flex-direction:column; }
.m-menu.open { transform:none; }
.m-menu-top { display:flex; align-items:center; justify-content:space-between; height:72px; padding:0 var(--gutter); border-bottom:1px solid var(--rule); }
.m-close { width:44px; height:44px; border:1px solid var(--rule); border-radius:999px; display:flex; align-items:center; justify-content:center; font-size:20px; }
.m-body { padding: 8px var(--gutter) 32px; flex:1; }
.m-group { border-bottom:1px solid var(--rule-soft); }
.m-group > button, .m-group > a { width:100%; display:flex; align-items:center; justify-content:space-between; padding:18px 2px; font-family: var(--display); font-weight:600; font-size:20px; letter-spacing:-0.01em; text-align:left; }
.m-group > button .mg-ic { width:18px; height:18px; transition: transform .2s; color: var(--lumens); }
.m-group.open > button .mg-ic { transform: rotate(45deg); }
.m-sub-list { max-height:0; overflow:hidden; transition: max-height .3s ease; }
.m-group.open .m-sub-list { max-height:520px; }
.m-sub-list a { display:flex; align-items:center; justify-content:space-between; padding:12px 2px 12px 16px; font-size:15px; color: var(--grey); }
.m-sub-list a .ms-sub { font-family: var(--mono); font-size:10px; text-transform:uppercase; letter-spacing:0.04em; }
.m-sub-list a:last-child { padding-bottom:20px; }
.m-cta { display:flex; flex-direction:column; gap:10px; padding: 24px var(--gutter) 40px; }
.m-cta .phone { font-family: var(--mono); font-size:14px; color: var(--charcoal); display:flex; align-items:center; gap:8px; justify-content:center; margin-top:6px; }

/* ── PRODUCT OVERLAY (client requirement) — floats over the hero; standalone cards ── */
.product-overlay { position: relative; }
.product-track { display: flex; gap: 10px; align-items: stretch; }
.product-card { position: relative; flex: 1 1 0; min-width: 0; display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 8px;
  background: #181818; border: none;
  transition: background .2s; }
.product-card:hover { background: #222222; }
.product-thumb { width: 46px; height: 46px; flex-shrink: 0; background-repeat: no-repeat; background-position: center; background-size: contain; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4)); }
.product-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.product-name { font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; line-height: 18px; color: var(--birch); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-app { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(236,232,224,0.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* active Solar Bollard = flat dark card, orange accent, white-knockout Solar Bollard Lighting logo */
.product-card.active { background: #222222; border-color: var(--lumens); box-shadow: inset 0 0 0 1px var(--lumens); }
.product-logo { align-self: flex-start; height: 18px; width: auto; max-width: 100%; object-fit: contain; display: block; filter: brightness(0) invert(1); opacity: 0.96; }
.product-card.active .product-app { color: var(--lumens-soft); }
/* expand / minimise into a spec view */
.product-expand { flex: 0 0 auto; width: 46px; align-self: stretch; display: flex; align-items: center; justify-content: center; border-radius: 8px;
  background: #181818; border: 1px solid rgba(236,232,224,0.14); color: var(--birch); transition: background .2s, border-color .2s; }
.product-expand:hover { background: #222222; border-color: rgba(236,232,224,0.28); }
.product-expand svg { width: 18px; height: 18px; transition: transform .3s; }
.product-overlay.open .product-expand svg { transform: rotate(180deg); }
.product-panel { overflow: hidden; max-height: 0; opacity: 0; transition: max-height .35s ease, opacity .3s ease, margin-top .35s ease; }
.product-overlay.open .product-panel { max-height: 220px; opacity: 1; margin-top: 10px; }
.pp-inner { display: flex; align-items: center; gap: 14px 18px; flex-wrap: wrap; padding: 14px 18px; border-radius: 8px; background: #181818; border: 1px solid rgba(236,232,224,0.14); }
.pp-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lumens-soft); }
.pp-chips { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; min-width: 0; }
.pp-chip { font-family: var(--mono); font-size: 11px; letter-spacing: 0.02em; color: var(--birch); padding: 6px 11px; border-radius: 999px; background: rgba(236,232,224,0.08); border: 1px solid rgba(236,232,224,0.18); white-space: nowrap; }
.pp-link { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--lumens); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.pp-link:hover { color: var(--lumens-soft); }
@media (max-width: 980px) {
  .product-track { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 2px; }
  .product-track::-webkit-scrollbar { display: none; }
  .product-card { flex: 0 0 auto; min-width: 188px; }
  .product-expand { display: none; }
  .product-overlay.open .product-panel { max-height: 300px; }
}

/* ── HERO — DEPLOYMENT SLIDER ── */
.hero { position: relative; background: var(--charcoal); overflow: hidden; min-height: clamp(660px, 90vh, 960px); display: flex; }
.hero-stage { position: absolute; inset: 0; z-index: 0; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; }
.slide.on { opacity: 1; }
.slide::after { content: ''; position: absolute; inset: 0; background:
    linear-gradient(90deg, rgba(16,16,16,0.82) 0%, rgba(16,16,16,0.5) 42%, rgba(16,16,16,0.12) 74%, rgba(16,16,16,0.4) 100%),
    linear-gradient(0deg, rgba(16,16,16,0.78) 0%, rgba(16,16,16,0.0) 34%),
    linear-gradient(180deg, rgba(16,16,16,0.58) 0%, rgba(16,16,16,0.0) 22%); }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; position: absolute; inset: 0; transform: scale(1.06); transition: transform 7s ease; }
.slide.on img { transform: scale(1.0); }
.hero-content { position: relative; z-index: 3; flex: 1; display: flex; min-width: 0; }
.hero-content > .wrap { flex: 1; display: flex; flex-direction: column; padding-top: 20px; padding-bottom: 22px; min-width: 0; }
.hero-copy { display: flex; flex-direction: column; margin-top: auto; padding-top: 24px; min-width: 0; }
.hero-content .eyebrow { color: var(--lumens-soft); }
.hero-content .eyebrow::before { background: var(--lumens-soft); }
.hero h1 { font-family: var(--display); font-weight: 700; font-size: clamp(40px, 5.6vw, 80px); line-height: 0.94; letter-spacing: -0.04em; color: var(--birch); margin: 18px 0 22px; max-width: 880px; }
.hero h1 .it { font-style: italic; font-weight: 500; color: var(--lumens); font-variation-settings: "slnt" -10; }
.hero .tagline { font-family: var(--body); font-weight: 400; font-size: clamp(12px, 1.24vw, 17px); line-height: 1.6; letter-spacing: normal; color: var(--birch); max-width: 560px; margin-bottom: 16px; }
.hero .lead { font-size: clamp(15px, 1.25vw, 16.5px); line-height: 1.6; max-width: 500px; margin-bottom: 30px; color: rgba(236,232,224,0.82); }
.hero .ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
/* home hero content staggers in on load, ordered from the top */
@keyframes heroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero .product-overlay, .hero .hero-copy h1, .hero .hero-copy .tagline, .hero .hero-copy .ctas, .hero .hero-footer { animation: heroIn .75s cubic-bezier(.2,.8,.2,1) both; }
.hero .product-overlay { animation-delay: .06s; }
.hero .hero-copy h1 { animation-delay: .18s; }
.hero .hero-copy .tagline { animation-delay: .30s; }
.hero .hero-copy .ctas { animation-delay: .40s; }
.hero .hero-footer { animation-delay: .50s; }
@media (prefers-reduced-motion: reduce) { .hero .product-overlay, .hero .hero-copy h1, .hero .hero-copy .tagline, .hero .hero-copy .ctas, .hero .hero-footer { animation: none; } }
/* hero footer row — awards (left) + slide info & nav (right), under a hairline */
.hero-footer { display: flex; align-items: center; justify-content: space-between; gap: 22px 32px; margin-top: 24px; margin-bottom: auto; padding-top: 20px; border-top: 1px solid rgba(236,232,224,0.22); flex-wrap: wrap; }
.hf-left { display: flex; align-items: center; gap: 16px; }
.hf-left img { height: 56px; width: auto; filter: brightness(0) invert(1); opacity: 0.92; }
.hf-left .t-txt { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(236,232,224,0.72); line-height: 1.5; }
.hf-left .t-txt strong { color: var(--birch); font-weight: 500; }
.hf-right { display: flex; align-items: center; gap: 20px; }

/* slider chrome */
.hero-frame { position: absolute; inset: 18px; z-index: 2; pointer-events: none; }
.hero-frame span { position: absolute; width: 18px; height: 18px; border-color: rgba(236,232,224,0.5); }
.hero-frame .tl { top: 0; left: 0; border-top: 1px solid; border-left: 1px solid; }
.hero-frame .tr { top: 0; right: 0; border-top: 1px solid; border-right: 1px solid; }
.hero-frame .bl { bottom: 0; left: 0; border-bottom: 1px solid; border-left: 1px solid; }
.hero-frame .br { bottom: 0; right: 0; border-bottom: 1px solid; border-right: 1px solid; }
.slide-cap { display: flex; align-items: center; gap: 14px; color: var(--birch); }
.slide-cap .num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--lumens-soft); white-space: nowrap; }
.slide-cap .divider { width: 28px; height: 1px; background: rgba(236,232,224,0.4); }
.slide-cap .loc { font-family: var(--display); font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
.slide-cap .sec { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(236,232,224,0.66); }
.slide-nav { display: flex; align-items: center; gap: 16px; }
.slide-dots { display: flex; align-items: center; gap: 9px; }
.slide-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(236,232,224,0.34); transition: background .2s, transform .2s; padding: 0; }
.slide-dots button.on { background: var(--lumens); transform: scale(1.25); }
.slide-arrows { display: flex; gap: 8px; }
.slide-arrows button { width: 42px; height: 42px; border-radius: 999px; border: 1px solid rgba(236,232,224,0.34); color: var(--birch); display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s, color .2s; }
.slide-arrows button:hover { background: var(--birch); color: var(--charcoal); border-color: var(--birch); }
.slide-arrows svg { width: 16px; height: 16px; }
.slide-progress { position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: rgba(236,232,224,0.16); z-index: 4; }
.slide-progress i { display: block; height: 100%; width: 0; background: var(--lumens); }
.slide-progress i.run { transition: width linear; }
@media (max-width: 760px) {
  .hero-footer { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hf-right { width: 100%; justify-content: space-between; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: clamp(46px, 13vw, 92px); }
  .slide::after { background: linear-gradient(180deg, rgba(16,16,16,0.6) 0%, rgba(16,16,16,0.42) 42%, rgba(16,16,16,0.82) 100%); }
}

/* ── OVERVIEW STAT ROW ── */
.ov-stats { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: clamp(40px, 5vw, 64px); padding-top: clamp(32px, 4vw, 48px); border-top: 1px solid var(--rule); }
.ov-stat { padding: 0 20px; border-left: 1px solid var(--rule-soft); display: flex; flex-direction: column; gap: 8px; }
.ov-stat:first-child { border-left: none; padding-left: 0; }
.ov-stat .pv { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3vw, 42px); letter-spacing: -0.03em; line-height: 1; }
.ov-stat .pl { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey); line-height: 1.5; }
.ov-stat-head { display: flex; align-items: center; gap: 12px; }
.aus-badge { height: 48px; width: auto; flex-shrink: 0; }
@media (max-width: 1080px) { .ov-stats { grid-template-columns: repeat(3, 1fr); row-gap: 30px; } .ov-stat { border-left: 1px solid var(--rule-soft); padding-left: 18px; } .ov-stat:nth-child(3n+1) { border-left: none; padding-left: 0; } }
@media (max-width: 620px) { .ov-stats { grid-template-columns: repeat(2, 1fr); } .ov-stat:nth-child(3n+1) { border-left: 1px solid var(--rule-soft); padding-left: 18px; } .ov-stat:nth-child(2n+1) { border-left: none; padding-left: 0; } }

/* HERO HIGHLIGHTS */
.highlights { background: var(--birch); padding: clamp(48px,7vw,84px) 0 clamp(56px, 8vw, 96px); }
.highlights-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:16px; }
.highlight { background: var(--white); border:1px solid var(--rule-soft); border-radius:4px; padding:28px 28px; display:flex; flex-direction:column; gap:10px; transition: border-color .25s, transform .25s; }
.highlight:hover { border-color: var(--forest); transform: translateY(-2px); }
.highlight .h-ic { width:32px; height:32px; color: var(--lumens); margin-bottom: 4px; }
.highlight h3 { font-family: var(--display); font-weight:700; font-size:20px; letter-spacing:-0.015em; line-height:1.1; }
.highlight p { font-size:14px; line-height:1.55; color: var(--grey); }
@media (max-width: 760px) { .highlights-grid { grid-template-columns: 1fr; } }

/* SECTION HEAD util */
.section-head { display:grid; grid-template-columns: 5fr 7fr; gap: clamp(24px, 4vw, 64px); align-items: end; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 { font-family: var(--display); font-weight: 700; font-size: clamp(36px, 5vw, 72px); line-height: 0.96; letter-spacing: -0.035em; margin-top: 20px; }
.section-head h2 .it { font-style: italic; font-weight: 500; color: var(--forest); font-variation-settings: "slnt" -10; }
.section-head p { font-size: clamp(15px, 1.2vw, 18px); line-height: 1.55; max-width: 600px; margin-bottom: 10px; }
@media (max-width: 760px) { .section-head { grid-template-columns: 1fr; align-items:start; } }

/* OVERVIEW (narrative + specimen) */
/* OVERVIEW — product spotlight showcase */
.showcase { position: relative; overflow: hidden; color: var(--birch); padding: clamp(38px, 4vw, 58px) 0; background: radial-gradient(125% 92% at 70% 32%, var(--forest) 0%, var(--forest-deep) 44%, var(--charcoal) 100%); }
.showcase::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 34%, rgba(232,90,31,0.10), transparent 46%); pointer-events: none; }
.sc-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 5.4fr 6.6fr; gap: clamp(28px, 4vw, 72px); align-items: center; }
.sc-text .eyebrow { color: var(--lumens-soft); }
.sc-text .eyebrow::before { background: var(--lumens-soft); }
.sc-h + .eyebrow-sub { display: block; margin-top: -16px; margin-bottom: 20px; }
.eyebrow-sub::before { display: none; }
.sc-h { font-family: var(--display); font-weight: 700; font-size: clamp(36px, 4.8vw, 74px); line-height: 0.98; letter-spacing: -0.035em; color: var(--birch); margin: 20px 0 26px; }
.sc-h .it { font-style: italic; font-weight: 500; color: var(--lumens); font-variation-settings: "slnt" -10; }
.sc-lead { font-family: var(--display); font-weight: 500; font-size: clamp(18px, 1.7vw, 23px); line-height: 1.36; letter-spacing: -0.015em; color: var(--birch); max-width: 540px; margin-bottom: 20px; }
.sc-body { font-size: 15.5px; line-height: 1.65; color: rgba(236,232,224,0.8); max-width: 540px; }
.sc-stage { position: relative; min-height: clamp(380px, 44vw, 580px); display: flex; align-items: center; justify-content: center; }
.sc-glow { position: absolute; z-index: 1; width: 84%; height: 68%; top: 3%; left: 8%; border-radius: 50%; background: radial-gradient(circle, rgba(240,166,120,0.5) 0%, rgba(232,90,31,0.22) 38%, transparent 70%); filter: blur(30px); pointer-events: none; }
.sc-pool { position: absolute; z-index: 1; bottom: 6%; left: 50%; transform: translateX(-50%); width: 58%; height: 12%; background: radial-gradient(ellipse at center, rgba(240,166,120,0.4) 0%, transparent 68%); filter: blur(18px); pointer-events: none; }
.sc-img { position: relative; z-index: 2; max-height: clamp(360px, 44vw, 580px); width: auto; filter: drop-shadow(0 40px 64px rgba(0,0,0,0.55)); transform-origin: center; }
/* Product annotations — static leader-line call-outs pinning each verified spec to its part */
.sc-leaders { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 3; pointer-events: none; overflow: visible; }
.sc-leaders line { stroke: rgba(236,232,224,0.42); stroke-width: 1; vector-effect: non-scaling-stroke; }
.sc-dot { position: absolute; z-index: 4; width: 7px; height: 7px; border-radius: 50%; background: var(--lumens); transform: translate(-50%,-50%); box-shadow: 0 0 0 3px rgba(232,90,31,0.16); }
.sc-anno { position: absolute; z-index: 5; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.03em; color: var(--birch); background: #181818; border: 1px solid rgba(236,232,224,0.16); padding: 6px 11px; border-radius: 6px; white-space: nowrap; }
.sc-anno b { color: var(--lumens-soft); font-weight: 500; }
.sc-anno.L { transform: translate(-100%, -50%); }
.sc-anno.R { transform: translate(0, -50%); }
/* interactive: pins are clickable to zoom the product to that part */
.sc-anno { cursor: pointer; transition: border-color .2s, background .2s; }
.sc-anno:hover, .sc-anno:focus-visible { border-color: var(--lumens); background: #222222; outline: none; }
.sc-dot { cursor: pointer; transition: transform .2s, box-shadow .2s; }
.sc-dot:hover { box-shadow: 0 0 0 5px rgba(232,90,31,0.22); }
.sc-img { transition: transform .6s cubic-bezier(.2,.8,.2,1); will-change: transform; }
.showcase.zoomed .sc-img { cursor: pointer; }
.showcase.zoomed .sc-leaders, .showcase.zoomed .sc-dot, .showcase.zoomed .sc-anno { opacity: 0; pointer-events: none; transition: opacity .25s; }
.showcase.zoomed .sc-stats::before { opacity: 0.5; }
.showcase.zoomed .sc-glow, .showcase.zoomed .sc-pool { opacity: 0; transition: opacity .45s; }
/* left content leaves/returns block-by-block with a staggered slide from the left */
.sc-text > * { transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .45s; }
.sc-text > *:nth-child(1) { transition-delay: .30s; }
.sc-text > *:nth-child(2) { transition-delay: .25s; }
.sc-text > *:nth-child(3) { transition-delay: .20s; }
.sc-text > *:nth-child(4) { transition-delay: .15s; }
.sc-text > *:nth-child(5) { transition-delay: .10s; }
.sc-text > *:nth-child(6) { transition-delay: .05s; }
.showcase.zoomed .sc-text { pointer-events: none; }
.showcase.zoomed .sc-text > * { opacity: 0; transform: translateX(-54px); }
.showcase.zoomed .sc-text > *:nth-child(1) { transition-delay: 0s; }
.showcase.zoomed .sc-text > *:nth-child(2) { transition-delay: .04s; }
.showcase.zoomed .sc-text > *:nth-child(3) { transition-delay: .08s; }
.showcase.zoomed .sc-text > *:nth-child(4) { transition-delay: .12s; }
.showcase.zoomed .sc-text > *:nth-child(5) { transition-delay: .16s; }
.showcase.zoomed .sc-text > *:nth-child(6) { transition-delay: .20s; }
/* detail card revealed on zoom */
.sc-detail { position: absolute; top: 50%; z-index: 9; width: min(40%, 440px); background: #181818; border: 1px solid rgba(236,232,224,0.18); border-radius: 12px; padding: 26px 28px 22px; opacity: 0; transform: translateY(-50%); pointer-events: none; transition: opacity .4s .12s, transform .55s .12s cubic-bezier(.2,.8,.2,1); box-shadow: 0 26px 64px rgba(0,0,0,0.42); }
.sc-detail.side-left  { left: calc(max(0px, (100% - var(--container)) / 2) + var(--gutter)); right: auto; transform: translate(-30px, -50%); }
.sc-detail.side-right { right: calc(max(0px, (100% - var(--container)) / 2) + var(--gutter)); left: auto; transform: translate(30px, -50%); }
.showcase.zoomed .sc-detail { opacity: 1; pointer-events: auto; }
.showcase.zoomed .sc-detail.side-left, .showcase.zoomed .sc-detail.side-right { transform: translate(0, -50%); }
/* connector — draws from the pinned point on the product out to the card */
.sc-connector { position: absolute; height: 1px; background: rgba(236,232,224,0.5); z-index: 8; opacity: 0; transform: scaleX(0); transform-origin: 100% 50%; pointer-events: none; transition: transform .55s .32s cubic-bezier(.2,.8,.2,1), opacity .25s .32s; }
.showcase.zoomed .sc-connector { opacity: 1; transform: scaleX(1); }
.sc-connector-dot { position: absolute; top: 50%; width: 9px; height: 9px; border-radius: 50%; background: var(--lumens); transform: translate(-50%,-50%); box-shadow: 0 0 0 4px rgba(232,90,31,0.2); }
/* Australian Made seal — detached from the product image; floats and moves to a fixed corner on zoom */
.sc-badge { position: absolute; z-index: 6; left: 78%; top: 70%; width: clamp(74px, 7.6vw, 104px); height: auto; transform: translate(-50%, -50%); pointer-events: none; filter: drop-shadow(0 8px 18px rgba(0,0,0,0.5)); transition: opacity .3s ease; }
.showcase.zoomed .sc-badge { opacity: 0; }
@media (max-width: 1000px) { .sc-badge { display: none; } }
.sc-detail-eyebrow { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lumens-soft); }
.sc-detail-title { font-family: var(--display); font-weight: 700; font-size: clamp(21px, 1.9vw, 27px); line-height: 1.1; letter-spacing: -0.02em; color: var(--birch); margin: 9px 0 12px; }
.sc-detail-desc { font-size: 14.5px; line-height: 1.62; color: rgba(236,232,224,0.85); }
.sc-detail-close { position: absolute; top: 12px; right: 13px; width: 28px; height: 28px; border-radius: 50%; background: rgba(236,232,224,0.08); color: var(--birch); font-size: 19px; line-height: 1; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; transition: background .2s; }
.sc-detail-close:hover { background: rgba(236,232,224,0.18); }
.sc-detail-nav { display: flex; align-items: center; gap: 14px; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(236,232,224,0.12); }
.sc-detail-nav button { width: 38px; height: 38px; border-radius: 999px; border: 1px solid rgba(236,232,224,0.28); color: var(--birch); background: transparent; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s, border-color .2s, color .2s; }
.sc-detail-nav button:hover { background: var(--birch); color: var(--charcoal); border-color: var(--birch); }
.sc-detail-nav button svg { width: 16px; height: 16px; }
.sc-detail-count { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: rgba(236,232,224,0.6); }
.sc-detail-count .scd-cur { color: var(--lumens-soft); }
/* final "step" — continue-reading primary + quote/brochure links (only shown on the last step) */
.sc-detail-actions { display: none; margin-top: 18px; }
.sc-detail.is-final .sc-detail-actions { display: block; }
.sc-detail-continue { display: inline-flex; align-items: center; gap: 8px; font-family: var(--body); font-weight: 700; font-size: 14px; color: var(--charcoal); background: var(--birch); border: 0; border-radius: 999px; padding: 13px 26px; cursor: pointer; transition: background .2s, transform .2s; }
.sc-detail-continue:hover { background: #fff; transform: translateY(-1px); }
.sc-detail-sublinks { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 20px; margin-top: 15px; }
.sc-detail-sublinks a { display: inline-flex; align-items: center; gap: 7px; font-family: var(--body); font-weight: 600; font-size: 13px; color: rgba(236, 232, 224, .68); text-decoration: none; transition: color .2s; }
.sc-detail-sublinks a:hover { color: var(--birch); }
.sc-detail-brochure svg { opacity: .85; }
.sc-detail-quote .ar { transition: transform .25s; }
.sc-detail-quote:hover .ar { transform: translateX(3px); }
@media (max-width: 760px) { .sc-leaders, .sc-dot, .sc-anno, .sc-detail, .sc-connector { display: none; } }
@media (prefers-reduced-motion: reduce) { .sc-img { transition: none; } }
.sc-stats { position: relative; z-index: 6; display: grid; grid-template-columns: repeat(5, 1fr); margin-top: clamp(26px, 3vw, 40px); padding-top: clamp(22px, 2.5vw, 34px); border-top: 1px solid rgba(236,232,224,0.2); }
/* scrim under the stats so they stay readable when the zoomed product expands behind them */
.sc-stats::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); bottom: -160px; width: 100vw; height: 520px; background: linear-gradient(to top, var(--charcoal) 0%, var(--charcoal) 56%, rgba(22,23,22,0.78) 74%, rgba(22,23,22,0.4) 88%, transparent 100%); z-index: -1; opacity: 0; transition: opacity .45s ease; pointer-events: none; }
.sc-stat { padding: 0 20px; border-left: 1px solid rgba(236,232,224,0.15); display: flex; flex-direction: column; gap: 8px; }
.sc-stat:first-child { border-left: none; padding-left: 0; }
.sc-stat-head { display: flex; align-items: center; gap: 12px; }
.sc-stat-head img { height: 44px; width: auto; flex-shrink: 0; }
.sc-stat .sv { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3vw, 42px); letter-spacing: -0.03em; line-height: 1; color: var(--birch); }
.sc-stat .sl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(236,232,224,0.6); line-height: 1.5; white-space: nowrap; }
@media (max-width: 1000px) {
  .sc-grid { grid-template-columns: 1fr; }
  .sc-stage { order: -1; min-height: 380px; }
  .sc-pill-1 { top: 4%; right: 2%; } .sc-pill-2 { top: 40%; left: 0; } .sc-pill-3 { bottom: 12%; right: 2%; }
  .sc-stats { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
  .sc-stat { border-left: 1px solid rgba(236,232,224,0.15); padding-left: 20px; } .sc-stat:nth-child(3n+1) { border-left: none; padding-left: 0; }
  .sc-stat .sl { white-space: normal; }
}
@media (max-width: 560px) {
  .sc-stats { grid-template-columns: repeat(2, 1fr); }
  .sc-stat:nth-child(3n+1) { border-left: 1px solid rgba(236,232,224,0.15); padding-left: 20px; } .sc-stat:nth-child(2n+1) { border-left: none; padding-left: 0; }
  .sc-pill { display: none; }
}

/* Affiliation logo in hero footer — keeps brand colour (overrides white-knockout) */
.hf-left img.lca-logo { height: 70px; filter: none; opacity: 1; }
@media (max-width: 760px) { .hf-left img { height: 46px; } .hf-left img.lca-logo { height: 56px; } }

/* PRODUCT BAR — standalone product switcher directly below the header (dark rail) */
/* product switcher floats over the hero (showcase) background */
.showcase .product-overlay { position: relative; z-index: 7; margin-bottom: clamp(30px, 4vw, 58px); }

/* Overview CTAs — the overview now leads the product page */
.sc-text .ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* Solar Bollard Lighting brand mark above the overview title */
.sc-text .sbl-mark { display: block; height: 44px; width: auto; max-width: 88%; margin-bottom: 18px; }
@media (max-width: 900px) { .sc-text .sbl-mark { height: 36px; } }

/* SOFT LIGHT + PRODUCT VIDEO — light section (overview copy moved here + live-site video) */
.lit { background: var(--birch); padding: clamp(56px, 8vw, 120px) 0; }
.lit-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.lit-text .eyebrow { color: var(--forest); }
.lit-text .eyebrow::before { background: var(--forest); }
.lit-h { font-family: var(--display); font-weight: 700; font-size: clamp(32px, 4.2vw, 60px); line-height: 0.98; letter-spacing: -0.035em; color: var(--charcoal); margin: 18px 0 22px; }
.lit-h .it { font-style: italic; font-weight: 500; color: var(--forest); font-variation-settings: "slnt" -10; }
.lit-lead { font-family: var(--display); font-weight: 500; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.4; letter-spacing: -0.015em; color: var(--charcoal); margin-bottom: 18px; }
.lit-body { font-size: 15.5px; line-height: 1.65; color: var(--grey); }
.lit-video { display: flex; flex-direction: column; gap: 14px; }
.lit-video .vandal-frame { aspect-ratio: 16 / 9; border-radius: 6px; border-color: rgba(22,23,22,0.14); }
.lit-video .cap { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey); }
.lit-video .cap .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lumens); display: inline-block; }
@media (max-width: 900px) { .lit-grid { grid-template-columns: 1fr; } .lit-video { order: -1; } }

/* FEATURES — compact list beside the anatomy diagram */
.features { background: var(--birch-2); padding: clamp(56px, 8vw, 120px) 0; }
.feat-top { max-width: 860px; margin-bottom: clamp(30px, 4vw, 52px); }
.feat-top h2 { font-family: var(--display); font-weight: 700; font-size: clamp(32px, 4.4vw, 60px); line-height: 0.98; letter-spacing: -0.03em; margin: 16px 0 18px; }
.feat-top h2 .it { font-style: italic; font-weight: 500; color: var(--forest); font-variation-settings: "slnt" -10; }
.feat-top .intro { font-size: clamp(14.5px, 1.15vw, 16.5px); line-height: 1.6; color: var(--charcoal); max-width: 740px; }
.feat-body { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 4.5vw, 64px); align-items: start; }
.feat-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 30px; }
.feat { display: flex; align-items: flex-start; gap: 13px; }
.feat .icon { width: 26px; height: 26px; color: var(--forest); flex-shrink: 0; margin-top: 1px; }
.feat h3 { font-family: var(--display); font-weight: 700; font-size: 15.5px; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 4px; }
.feat p { font-size: 13px; line-height: 1.5; color: var(--grey); }
.feat-figure { padding: 0; }
.feat-figure img { width: 100%; max-width: 380px; margin: 0 auto; display: block; }
@media (max-width: 900px) { .feat-body { grid-template-columns: 1fr; } .feat-figure { order: -1; } }
@media (max-width: 560px) { .feat-list { grid-template-columns: 1fr; } }
.spec-figs-grid.single { grid-template-columns: 1fr; }

/* VANDAL RESISTANT (split) */
.vandal { background: var(--charcoal); color: var(--birch); padding: clamp(64px, 9vw, 140px) 0; }
.vandal-grid { display:grid; grid-template-columns: 6fr 6fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.vandal-grid h2 { font-family: var(--display); font-weight: 700; font-size: clamp(34px, 4.6vw, 64px); line-height: 0.96; letter-spacing:-0.035em; margin: 20px 0 24px; color: var(--birch); }
.vandal-grid h2 .it { font-style: italic; font-weight: 500; color: var(--lumens); font-variation-settings: "slnt" -10; }
.vandal-grid p { font-size: 15.5px; line-height: 1.65; color: rgba(236,232,224,0.78); margin-bottom: 16px; max-width: 560px; }
.vandal-grid .eyebrow { color: var(--lumens-soft); }
.vandal-video { display: flex; flex-direction: column; gap: 14px; }
.vandal-frame { position: relative; display: block; width: 100%; aspect-ratio: 4/3; border-radius: 4px; overflow: hidden; background: #000; border: 1px solid rgba(236,232,224,0.12); cursor: pointer; padding: 0; }
.vandal-frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s, opacity .3s; }
.vandal-frame:hover img { transform: scale(1.03); opacity: 0.9; }
.vandal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-play { position: absolute; inset: 0; margin: auto; width: 68px; height: 68px; border-radius: 50%; background: var(--lumens); color: var(--birch); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,0.4); transition: transform .2s, background .2s; }
.vandal-frame:hover .yt-play { transform: scale(1.08); background: var(--lumens-deep); }
.yt-play svg { width: 28px; height: 28px; margin-left: 3px; }
.vandal-video .cap { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(236,232,224,0.7); }
.vandal-video .cap .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lumens); display: inline-block; }
@media (max-width: 900px) { .vandal-grid { grid-template-columns: 1fr; } .vandal-video { order:-1; } }

/* PROJECTS */
.projects { background: var(--birch); padding: clamp(64px, 9vw, 140px) 0; }
.proj-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.proj-card { background: var(--white); border:1px solid var(--rule-soft); border-radius:12px; overflow:hidden; display:flex; flex-direction:column; }
.proj-thumb { position:relative; aspect-ratio: 1/1; overflow:hidden; background: var(--charcoal); }
.proj-thumb img { width:100%; height:100%; object-fit: cover; }
/* hover: dim the image and reveal an "open" arrow — no card or image movement */
.proj-thumb::before { content:''; position:absolute; inset:0; z-index:1; background: rgba(232,90,31,0.4); opacity:0; transition: opacity .28s ease; }
.proj-thumb::after { content:''; position:absolute; z-index:2; top:50%; left:50%; width:27px; height:27px; background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23ECE8E0'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M7%2017%2017%207'/%3E%3Cpath%20d='M8%207h9v9'/%3E%3C/svg%3E") center / 26px no-repeat; opacity:0; transform: translate(-50%,-50%) scale(.86); transition: opacity .28s ease, transform .3s cubic-bezier(.2,.8,.2,1); }
.proj-card:hover .proj-thumb::before, .proj-card:focus-visible .proj-thumb::before { opacity:1; }
.proj-card:hover .proj-thumb::after, .proj-card:focus-visible .proj-thumb::after { opacity:1; transform: translate(-50%,-50%) scale(1); }
.proj-body { padding: 20px 20px 22px; display:flex; flex-direction:column; gap:8px; flex:1; }
.proj-body .loc { font-family: var(--mono); font-size:10px; letter-spacing:0.08em; text-transform:uppercase; color: var(--lumens); }
.proj-body h3 { font-family: var(--display); font-weight:700; font-size:17px; letter-spacing:-0.015em; line-height:1.2; }
.proj-body .desc { font-size:13px; line-height:1.5; color: var(--grey); flex:1; }
@media (max-width: 1100px) { .proj-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .proj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .proj-grid { grid-template-columns: 1fr; } }

/* GENERATION 2 */
.gen { background: var(--birch-2); padding: clamp(64px, 9vw, 140px) 0; }
.gen .nar-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 5vw, 80px); align-items: start; margin-bottom: clamp(40px, 5vw, 64px); }
.gen .nar-grid h2 { font-family: var(--display); font-weight: 700; font-size: clamp(34px, 4.6vw, 60px); line-height: 0.98; letter-spacing: -0.03em; margin-top: 20px; }
.gen .nar-grid h2 .it { font-style: italic; font-weight: 500; color: var(--forest); font-variation-settings: "slnt" -10; }
.gen .nar-grid .lead { font-family: var(--display); font-weight: 500; font-size: clamp(19px, 1.9vw, 24px); line-height: 1.34; letter-spacing: -0.015em; color: var(--charcoal); margin-bottom: 22px; }
.gen .nar-grid p { font-size: 15.5px; line-height: 1.65; color: var(--charcoal); margin-bottom: 16px; max-width: 640px; }
.gen-compare { display:grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.gen-card { background: var(--white); border: 1px solid var(--rule-soft); border-radius: 4px; padding: 32px 28px; display:flex; flex-direction: column; gap: 14px; }
.gen-card .code { font-family: var(--mono); font-size: 11px; color: var(--lumens); letter-spacing: 0.08em; text-transform: uppercase; }
.gen-card h3 { font-family: var(--display); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; line-height: 1.05; }
.gen-card .tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; padding: 4px 9px; border-radius: 999px; align-self: flex-start; }
.gen-card .tag.heritage { background: var(--forest); color: var(--birch); }
.gen-card .tag.current { background: var(--lumens); color: var(--birch); }
.gen-card .specs { display: flex; flex-direction: column; gap: 0; margin-top: 4px; }
.gen-card .spec-row { display: flex; justify-content: space-between; gap: 16px; font-family: var(--mono); font-size: 12px; color: var(--grey); letter-spacing: 0.02em; padding: 11px 0; border-bottom: 1px solid var(--rule-soft); }
.gen-card .spec-row:last-child { border-bottom: none; }
.gen-card .spec-row strong { color: var(--charcoal); font-weight: 500; text-align: right; }
@media (max-width: 760px) { .gen .nar-grid { grid-template-columns:1fr; } .gen-compare { grid-template-columns: 1fr; } }

/* GEN 2 — recreated infographic content (features card + vector light-splay) */
.gen2-grid { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(24px, 3.5vw, 56px); align-items: start; }
.gen2-prod { display: block; width: 100%; max-width: 460px; height: auto; margin: 4px 0 20px; filter: drop-shadow(0 26px 42px rgba(22,23,22,0.16)); }
.gen2-lead .eyebrow { display: inline-flex; margin-bottom: 14px; }
.gen2-h { font-family: var(--display); font-weight: 700; font-size: clamp(30px, 4vw, 54px); line-height: 0.98; letter-spacing: -0.03em; color: var(--charcoal); margin: 0 0 18px; }
.gen2-h .it { font-style: italic; font-weight: 500; color: var(--forest); font-variation-settings: "slnt" -10; }
.gen2-lead .lead { font-family: var(--display); font-weight: 500; font-size: clamp(18px, 1.7vw, 22px); line-height: 1.36; letter-spacing: -0.015em; color: var(--charcoal); margin-bottom: 16px; max-width: 600px; }
.gen2-lead p { font-size: 15.5px; line-height: 1.65; color: var(--charcoal); margin-bottom: 14px; max-width: 600px; }
.gen2-card { background: var(--forest-deep); color: var(--birch); border-radius: 6px; padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; }
.g2-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lumens-soft); margin-bottom: 16px; }
.gen2-list { list-style: none; margin: 0 0 22px; padding: 0; }
.gen2-list li { position: relative; padding: 11px 0 11px 24px; font-size: 15px; line-height: 1.4; color: rgba(236,232,224,0.9); border-bottom: 1px solid rgba(236,232,224,0.1); }
.gen2-list li:last-child { border-bottom: none; }
.gen2-list li::before { content: ''; position: absolute; left: 2px; top: 17px; width: 8px; height: 8px; border-radius: 50%; background: var(--lumens); }
.gen2-badges { display: flex; align-items: center; gap: 11px; flex-wrap: wrap; margin-bottom: 22px; }
.gen2-badges .g2-ausmade { height: 46px; width: auto; }
.g2-chip { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--birch); border: 1px solid rgba(236,232,224,0.28); border-radius: 999px; padding: 7px 12px; white-space: nowrap; }
.g2-chip b { color: var(--lumens-soft); font-weight: 500; }
.gen2-by { margin-top: auto; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-family: var(--mono); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(236,232,224,0.58); padding-top: 20px; border-top: 1px solid rgba(236,232,224,0.12); }
.gen2-by img { height: 24px; width: auto; }
.gen2-splay { margin: clamp(40px, 5vw, 68px) 0 0; display: grid; grid-template-columns: 4.3fr 7.7fr; gap: clamp(24px, 3.5vw, 56px); align-items: center; }
.splay-stage { position: relative; isolation: isolate; background: #212121; border-radius: 8px; overflow: hidden; }
.splay-svg { width: 100%; height: auto; display: block; }
.splay-cap { margin: 0; }
.splay-cap .g2-caplabel { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--forest); margin-bottom: 14px; }
.splay-lead { font-family: var(--display); font-weight: 500; font-size: clamp(20px, 1.9vw, 26px); line-height: 1.24; letter-spacing: -0.02em; color: var(--charcoal); margin: 0 0 14px; }
.splay-body { font-size: 15px; line-height: 1.62; color: var(--charcoal); margin: 0 0 18px; }
.splay-spec { font-family: var(--mono); font-size: 11px; letter-spacing: 0.03em; color: var(--forest); margin: 0; }
@media (max-width: 820px) { .gen2-splay { grid-template-columns: 1fr; gap: 22px; } }
@media (max-width: 760px) { .gen2-grid { grid-template-columns: 1fr; } }

/* SPEC FIGURES */
.spec-figs { background: var(--birch); padding: clamp(64px, 9vw, 120px) 0 0; }
.spec-figs-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: clamp(8px,2vw,16px); }
.spec-fig { background: var(--white); border:1px solid var(--rule-soft); border-radius:4px; padding: clamp(24px,3vw,40px); display:flex; flex-direction:column; }
.spec-fig .fig-wrap { flex:1; display:flex; align-items:center; justify-content:center; min-height: 280px; }
.spec-fig img { max-width:100%; max-height: 420px; object-fit: contain; }
.spec-fig .cap { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--rule-soft); }
@media (max-width: 760px) { .spec-figs-grid { grid-template-columns: 1fr; } }

/* SPEC TABLE */
.tech { background: var(--forest); color: var(--birch); padding: clamp(64px, 9vw, 140px) 0; }
.tech-head { margin-bottom: clamp(32px, 4vw, 52px); max-width: 880px; }
.tech-head .eyebrow { color: var(--lumens-soft); }
.tech-head h2 { font-family: var(--display); font-weight: 700; font-size: clamp(34px, 4.6vw, 64px); line-height: 0.96; letter-spacing:-0.035em; color: var(--birch); margin-top: 20px; }
.tech-head h2 .it { font-style: italic; font-weight: 500; color: var(--lumens); font-variation-settings: "slnt" -10; }
.tech-intro { font-size: clamp(15px, 1.2vw, 17px); line-height: 1.6; color: rgba(236,232,224,0.82); max-width: 660px; margin-top: 18px; }
.tech-body { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.tech-figure { background: var(--white); border-radius: 8px; padding: clamp(24px, 3vw, 40px); }
.tech-figure img { width: 100%; max-width: 340px; margin: 0 auto; display: block; }
.tech-figure .cap { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--rule-soft); text-align: center; }
.tech-table { display: grid; grid-template-columns: 1fr 2.4fr; gap: 0; border-top: 1px solid rgba(236,232,224,0.18); }
.tech-table .key, .tech-table .val { padding: 22px 22px; border-bottom: 1px solid rgba(236,232,224,0.18); display: flex; align-items: center; }
.tech-table .key { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--lumens-soft); text-transform: uppercase; }
.tech-table .val { font-size: 15px; line-height: 1.55; color: var(--birch); }
@media (max-width: 900px) { .tech-body { grid-template-columns: 1fr; } .tech-figure { order: -1; max-width: 440px; margin: 0 auto; } }
@media (max-width: 760px) { .tech-table { grid-template-columns: 1fr; } .tech-table .key { padding-bottom: 6px; border-bottom: none; } .tech-table .val { padding-top: 4px; padding-bottom: 20px; } }

/* FAQ */
.faqs { background: var(--charcoal); color: var(--birch); padding: clamp(64px, 9vw, 140px) 0; }
.faq-list { max-width: 1000px; margin: clamp(40px,5vw,56px) auto 0; }
.faq { border-top: 1px solid rgba(236,232,224,0.2); padding: 26px 0; }
.faq:last-child { border-bottom: 1px solid rgba(236,232,224,0.2); }
.faq summary { list-style: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 32px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary h3 { font-family: var(--display); font-weight: 500; font-size: clamp(18px, 1.7vw, 24px); letter-spacing: -0.02em; line-height: 1.25; color: var(--birch); }
.faq summary .ic { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(236,232,224,0.4); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition: background .2s, border-color .2s, transform .25s; }
.faq[open] summary .ic { background: var(--lumens); border-color: var(--lumens); transform: rotate(45deg); }
.faq summary .ic svg { width: 12px; height: 12px; }
.faq .body { font-size: 15.5px; line-height: 1.65; color: rgba(236,232,224,0.75); padding: 16px 64px 0 0; max-width: 860px; }
.faq .body p { margin-bottom: 12px; }
.faq .body p:last-child { margin-bottom: 0; }
.faq .body a.dl { color: var(--lumens-soft); font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; display:inline-flex; align-items:center; gap:6px; }
.faq .body a.dl:hover { color: var(--lumens); }
.faqs .section-head h2 { color: var(--birch); }
.faqs .section-head h2 .it { color: var(--lumens); }
.faqs .section-head p { color: rgba(236,232,224,0.8); }
.faqs .eyebrow { color: var(--lumens-soft); }

/* CTA */
.cta-band { background: var(--forest-deep); color: var(--birch); padding: clamp(64px, 9vw, 120px) 0; position: relative; overflow: hidden; }
.cta-band::before { content:''; position:absolute; width:600px; height:600px; background: radial-gradient(circle, rgba(232,90,31,0.18), transparent 70%); top:-200px; right:-100px; pointer-events:none; }
.cta-grid { display:grid; grid-template-columns: 7fr 5fr; gap:48px; align-items:end; position:relative; }
.cta-grid h2 { font-family: var(--display); font-weight:700; font-size: clamp(32px,4.4vw,64px); line-height:1.0; letter-spacing:-0.035em; margin-top:20px; }
.cta-grid h2 .it { color: var(--lumens); font-style:italic; font-weight:500; font-variation-settings: "slnt" -10; }
.cta-right { display:flex; flex-direction:column; gap:20px; padding-bottom:8px; }
.cta-right p { font-size:15.5px; color: rgba(236,232,224,0.78); line-height:1.6; }
.cta-actions { display:flex; gap:12px; flex-wrap:wrap; }
.cta-contact { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: rgba(236,232,224,0.7); margin-top: 4px; }
@media (max-width: 900px) { .cta-grid { grid-template-columns: 1fr; align-items: start; } }

/* FOOTER */
.site-footer { background: var(--forest-deep); color: var(--birch); padding: 80px 0 32px; border-top: 1px solid rgba(236,232,224,0.12); }
.foot-top { display:grid; grid-template-columns: 4fr 8fr; gap: 56px; padding-bottom: 64px; border-bottom: 1px solid rgba(236,232,224,0.15); }
.foot-news h3 { font-family: var(--display); font-weight:700; font-size:24px; letter-spacing:-0.02em; margin-bottom:12px; line-height: 1.1; }
.foot-news p { font-size:14px; color: rgba(236,232,224,0.7); line-height:1.5; margin-bottom: 24px; }
.news-form { display:flex; gap: 8px; flex-wrap: wrap; }
.news-form input { flex:1; min-width: 200px; background: transparent; border:1px solid rgba(236,232,224,0.25); color: var(--birch); padding: 14px 18px; border-radius: 999px; font-family: var(--body); font-size: 14px; outline: none; }
.news-form input::placeholder { color: rgba(236,232,224,0.4); }
.news-form input:focus { border-color: var(--lumens); }
.news-form button { background: var(--lumens); color: var(--birch); padding: 14px 24px; border-radius: 999px; font-weight:600; font-size: 14px; transition: background .2s; }
.news-form button:hover { background: var(--lumens-deep); }
.foot-cols { display:grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.foot-col h5 { font-family: var(--mono); font-size: 11px; letter-spacing:0.1em; text-transform: uppercase; color: rgba(236,232,224,0.5); margin-bottom: 16px; font-weight: 500; }
.foot-col ul { list-style:none; display:flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14px; transition: color .15s; color: rgba(236,232,224,0.85); }
.foot-col a:hover { color: var(--lumens); }
.foot-bottom { padding: 40px 0 0; display:grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; }
.foot-mark { font-family: var(--display); font-weight: 800; font-size: clamp(80px, 16vw, 220px); letter-spacing: -0.05em; line-height: 0.85; color: var(--forest); }
.foot-mark .dot { color: var(--lumens); }
.foot-meta { display:flex; flex-direction: column; gap: 16px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: rgba(236,232,224,0.6); }
.foot-meta strong { color: var(--birch); font-weight: 500; }
.foot-meta .row { display:flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 900px) { .foot-top { grid-template-columns: 1fr; } .foot-cols { grid-template-columns: repeat(3,1fr); gap:32px 16px; } .foot-bottom { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .foot-cols { grid-template-columns: 1fr 1fr; gap: 32px 16px; } }

[data-reveal] { opacity:0; transform: translateY(24px); transition: opacity .9s, transform .9s; }
[data-reveal].in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity:1; transform:none; } .slide img { transition:none; transform:none; } .slide.on img { transform:none; } }

/* ── HOME: product range ── */
.range { background: var(--birch); padding: clamp(64px,9vw,128px) 0; }
.range-grid { display:grid; grid-template-columns: repeat(5,1fr); gap:16px; }
.range-card { display:flex; flex-direction:column; background: var(--white); border:1px solid var(--rule-soft); border-radius:6px; overflow:hidden; transition: border-color .25s, transform .25s; color:inherit; }
.range-card:hover { border-color: var(--forest); transform: translateY(-3px); }
.range-thumb { aspect-ratio: 1/1; background: radial-gradient(120% 120% at 50% 28%, var(--forest) 0%, var(--forest-deep) 55%, var(--charcoal) 100%); display:flex; align-items:center; justify-content:center; padding: 24px; position:relative; }
.range-thumb::before { content:''; position:absolute; width:70%; height:50%; top:14%; left:15%; background: radial-gradient(circle, rgba(232,90,31,0.2), transparent 70%); }
.range-thumb img { width:100%; height:100%; object-fit:contain; filter: drop-shadow(0 16px 26px rgba(0,0,0,0.45)); position:relative; z-index:1; }
.range-body { padding: 18px 18px 20px; display:flex; flex-direction:column; gap:5px; flex:1; }
.range-body .rn { font-family: var(--display); font-weight:700; font-size:17px; letter-spacing:-0.015em; line-height:1.1; }
.range-body .ra { font-family: var(--mono); font-size:10px; letter-spacing:0.06em; text-transform:uppercase; color: var(--grey); }
.range-body .rm { font-family: var(--mono); font-size:10px; letter-spacing:0.06em; text-transform:uppercase; color: var(--charcoal); margin-top:10px; display:inline-flex; gap:6px; align-items:center; }
.range-card:hover .rm { color: var(--lumens); }
@media (max-width: 1000px) { .range-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 620px) { .range-grid { grid-template-columns: repeat(2,1fr); } }

/* ── HOME: industries (4-up highlight cards) ── */
.ind { background: var(--birch-2); padding: clamp(64px,9vw,128px) 0; }
.ind-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:16px; }
.ind-card { background: var(--white); border:1px solid var(--rule-soft); border-radius:6px; padding:28px 26px; display:flex; flex-direction:column; gap:12px; transition: border-color .25s, transform .25s; color:inherit; }
.ind-card:hover { border-color: var(--forest); transform: translateY(-2px); }
.ind-card .ic { width:30px; height:30px; color: var(--lumens); }
.ind-card h3 { font-family: var(--display); font-weight:700; font-size:19px; letter-spacing:-0.015em; line-height:1.1; }
.ind-card p { font-size:14px; line-height:1.55; color: var(--grey); flex:1; }
.ind-card .im { font-family: var(--mono); font-size:10px; letter-spacing:0.06em; text-transform:uppercase; color: var(--charcoal); display:inline-flex; gap:6px; }
.ind-card:hover .im { color: var(--lumens); }
@media (max-width: 900px){ .ind-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .ind-grid { grid-template-columns: 1fr; } }

/* ── INTERIOR PAGE HERO ── */
.page-hero { background: var(--charcoal); color: var(--birch); padding: clamp(116px,15vh,172px) 0 clamp(52px,7vw,84px); position:relative; overflow:hidden; }
.page-hero.forest { background: radial-gradient(120% 110% at 72% 18%, var(--forest) 0%, var(--forest-deep) 52%, var(--charcoal) 100%); }
.page-hero.forest::after { content:''; position:absolute; inset:0; background: radial-gradient(circle at 72% 30%, rgba(232,90,31,0.10), transparent 46%); pointer-events:none; }
.page-hero .wrap { position:relative; z-index:1; }
.page-hero .crumbs { font-family: var(--mono); font-size:11px; letter-spacing:0.06em; text-transform:uppercase; color: rgba(236,232,224,0.55); margin-bottom:14px; }
.page-hero .crumbs a { color: rgba(236,232,224,0.55); } .page-hero .crumbs a:hover { color: var(--lumens-soft); }
.page-hero .eyebrow { color: var(--lumens-soft); } .page-hero .eyebrow::before { background: var(--lumens-soft); }
.page-hero h1 { font-family: var(--display); font-weight:700; font-size: clamp(40px,6vw,92px); line-height:0.95; letter-spacing:-0.04em; color: var(--birch); margin:18px 0 20px; max-width: 16ch; }
.page-hero h1 .it { font-style: italic; font-weight:500; color: var(--lumens); font-variation-settings:"slnt" -10; }
.page-hero .lead { font-family: var(--display); font-weight:500; font-size: clamp(17px,1.6vw,22px); line-height:1.4; letter-spacing:-0.015em; color: var(--birch); max-width: 640px; }
.page-hero .ctas { display:flex; gap:12px; flex-wrap:wrap; margin-top:28px; }

/* ── GENERIC CONTENT SECTIONS ── */
.section { padding: clamp(56px,8vw,120px) 0; }
.section.birch { background: var(--birch); } .section.birch-2 { background: var(--birch-2); }
.section.forest { background: var(--forest); color: var(--birch); }
.section.charcoal { background: var(--charcoal); color: var(--birch); }
.prose { max-width: 720px; }
.prose p { font-size: clamp(15px,1.2vw,17px); line-height:1.7; color: var(--charcoal); margin-bottom:18px; }
.prose.light p { color: rgba(236,232,224,0.82); }
.split { display:grid; grid-template-columns: 6fr 6fr; gap: clamp(32px,5vw,72px); align-items:center; }
.split.narrow-first { grid-template-columns: 5fr 7fr; }
.split img { width:100%; border-radius:6px; display:block; }
.split-media { position:relative; aspect-ratio: 4/3; border-radius:6px; overflow:hidden; background: var(--charcoal); }
.split-media img { width:100%; height:100%; object-fit:cover; border-radius:0; }
@media (max-width:900px){ .split, .split.narrow-first { grid-template-columns:1fr; } }

/* ── SIMPLE FORM (quote / contact) ── */
.form-card { background: var(--white); border:1px solid var(--rule-soft); border-radius:8px; padding: clamp(24px,3vw,40px); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.field { display:flex; flex-direction:column; gap:7px; }
.field.full { grid-column:1/-1; }
.field label { font-family: var(--mono); font-size:11px; letter-spacing:0.05em; text-transform:uppercase; color: var(--grey); }
.field input, .field select, .field textarea { font-family: var(--body); font-size:15px; padding:13px 15px; border:1px solid var(--rule); border-radius:6px; background: var(--birch); color: var(--charcoal); outline:none; transition: border-color .15s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--lumens); }
.field textarea { min-height:130px; resize:vertical; }
@media (max-width:640px){ .form-row { grid-template-columns:1fr; } }

/* ── HOME v2: Australian-Made product duo ── */
.am-duo { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.am-card { background: var(--white); border:1px solid var(--rule-soft); border-radius:8px; overflow:hidden; display:flex; flex-direction:column; }
.am-media { aspect-ratio:16/10; background: radial-gradient(120% 120% at 50% 28%, var(--forest), var(--forest-deep) 58%, var(--charcoal)); display:flex; align-items:center; justify-content:center; padding:26px; position:relative; }
.am-media::before{ content:''; position:absolute; width:66%; height:48%; top:16%; left:17%; background:radial-gradient(circle, rgba(232,90,31,0.2), transparent 70%); }
.am-media img { max-height:100%; max-width:100%; object-fit:contain; filter: drop-shadow(0 18px 30px rgba(0,0,0,.45)); position:relative; z-index:1; }
.am-body { padding:26px 26px 28px; display:flex; flex-direction:column; gap:12px; flex:1; align-items:flex-start; }
.am-body h3 { font-family:var(--display); font-weight:700; font-size:24px; letter-spacing:-0.02em; }
.am-body p { font-size:14.5px; line-height:1.6; color:var(--grey); flex:1; }
@media (max-width:760px){ .am-duo { grid-template-columns:1fr; } }

/* ── HOME v2: process options ── */
.proc-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top: clamp(28px,4vw,44px); }
.proc-card { background: var(--white); border:1px solid var(--rule-soft); border-radius:8px; padding:32px 30px; transition:border-color .25s; }
.proc-card:hover{ border-color:var(--forest); }
.proc-card .opt { font-family:var(--mono); font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:var(--lumens); }
.proc-card h3 { font-family:var(--display); font-weight:700; font-size:26px; letter-spacing:-0.02em; margin:8px 0 12px; }
.proc-card p { font-size:14.5px; line-height:1.6; color:var(--grey); }
@media (max-width:760px){ .proc-grid { grid-template-columns:1fr; } }

/* ── HOME v2: affiliations + client logos ── */
.aff-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:16px; }
.aff-card { background: var(--white); border:1px solid var(--rule-soft); border-radius:8px; padding:24px 24px; display:flex; gap:14px; align-items:flex-start; }
.aff-card .ac-ic { width:26px;height:26px;color:var(--lumens);flex-shrink:0;margin-top:1px; }
.aff-card p { font-size:14px; line-height:1.55; color:var(--charcoal); }
@media (max-width:800px){ .aff-grid { grid-template-columns:1fr; } }

/* APPLICATIONS — 2:3 portrait cards, 4-up on desktop (design from 005/002) */
.app-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.app-card { display: flex; flex-direction: column; background: var(--birch); border-radius: 8px; overflow: hidden; text-decoration: none; }
.ac-img { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--forest-deep); }
.ac-bg { position: absolute; inset: -1px; background-size: cover; background-position: center; filter: brightness(0.92) saturate(0.96); transition: transform .8s ease; }
.app-card:hover .ac-bg { transform: scale(1.05); }
.ac-body { padding: 15px 16px 17px; display: flex; align-items: center; gap: 14px; flex: 1; }
.ac-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 7px; }
.ac-text h3 { font-family: var(--display); font-weight: 600; font-size: clamp(15.5px, 1.2vw, 18px); line-height: 1.14; letter-spacing: -0.01em; color: var(--charcoal); }
.ac-arrow { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--charcoal); color: var(--birch); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.ac-arrow svg { width: 15px; height: 15px; }
.app-card:hover .ac-arrow { background: var(--lumens); }
.ac-body p { font-size: 13px; line-height: 1.5; color: var(--grey); }
@media (max-width: 1120px) { .app-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .app-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 440px) { .app-grid { grid-template-columns: 1fr; } }
.logos-strip { background: var(--white); border:1px solid var(--rule-soft); border-radius:8px; padding: clamp(22px,3vw,40px); text-align:center; }
.logos-strip img { max-width:100%; height:auto; display:block; margin:0 auto; mix-blend-mode:multiply; }
/* OUR CUSTOMERS — white section, copy left / logos right */
.customers { background: var(--white); }
.cust-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.cust-title { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3.1vw, 40px); line-height: 1.02; letter-spacing: -0.03em; color: var(--charcoal); margin: 16px 0 16px; white-space: nowrap; }
.cust-title .it { font-style: italic; font-weight: 500; color: var(--forest); }
.cust-desc { font-size: clamp(15px, 1.2vw, 16.5px); line-height: 1.6; color: var(--grey); max-width: 42ch; margin: 0; }
.cust-logos img { max-width: 100%; height: auto; display: block; mix-blend-mode: multiply; }
@media (max-width: 760px) { .cust-grid { grid-template-columns: 1fr; gap: 26px; } .cust-title { white-space: normal; } }

/* ── HOME: featured-deployment card (replaces the slide caption) ── */
.hero-footer.deploy { align-items: flex-end; }
.deploy-card { display: flex; align-items: center; gap: 22px; max-width: 500px; background: none; border: none; border-radius: 0; padding: 0; box-shadow: none; }
.deploy-card .dc-content { min-width: 0; }
.deploy-card .dc-title { font-family: var(--body); font-weight: 700; font-size: 13.5px; line-height: 1.2; letter-spacing: normal; color: var(--birch); margin-bottom: 4px; text-shadow: 0 1px 16px rgba(0,0,0,0.6); }
.deploy-card .dc-body { font-size: 13.5px; line-height: 1.55; color: rgba(236,232,224,0.85); margin-bottom: 0; text-shadow: 0 1px 12px rgba(0,0,0,0.55); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.deploy-card .dc-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.deploy-card .dc-cta { font-family: var(--body); font-weight: 600; font-size: 13px; color: var(--birch); display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(236,232,224,0.45); border-radius: 999px; padding: 9px 16px; transition: background .2s, color .2s, border-color .2s; white-space: nowrap; }
.deploy-card .dc-cta:hover { background: var(--birch); color: var(--charcoal); border-color: var(--birch); }
.deploy-card .dc-cta .ar { transition: transform .25s; } .deploy-card .dc-cta:hover .ar { transform: translateX(3px); }
.deploy-card .slide-arrows { flex-shrink: 0; }
.deploy-card .slide-arrows button { width: 38px; height: 38px; }
@media (max-width: 760px) { .hero-footer.deploy { align-items: stretch; } .deploy-card { max-width: none; width: 100%; } }

/* FEATURED CASE STUDY (home) */
/* case-study section head + carousel nav */
.cs-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(18px, 2vw, 26px); }
.cs-heading { font-family: var(--display); font-weight: 700; font-size: clamp(23px, 2.7vw, 37px); line-height: 1.04; letter-spacing: -0.03em; color: var(--charcoal); margin: 12px 0 0; white-space: nowrap; }
.cs-heading .it { font-style: italic; font-weight: 500; color: var(--forest); }
.cs-nav { display: flex; align-items: center; gap: 18px; flex-shrink: 0; padding-bottom: 3px; }
.cs-count { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--grey); white-space: nowrap; }
.cs-count span { color: var(--charcoal); }
.cs-nav .slide-arrows button { border-color: rgba(22,23,22,0.28); color: var(--charcoal); }
.cs-nav .slide-arrows button:hover { background: var(--charcoal); color: var(--birch); border-color: var(--charcoal); }
@media (max-width: 700px) { .cs-head { flex-direction: column; align-items: flex-start; gap: 14px; } .cs-heading { white-space: normal; } }
.cs-carousel { position: relative; }
.casestudy { display: none; grid-template-columns: 1fr 1fr; background: var(--birch); border: 1px solid var(--birch-2); border-radius: 14px; overflow: hidden; box-shadow: 0 26px 60px rgba(22,23,22,0.10); }
.casestudy.on { display: grid; animation: csfade .45s ease; }
@keyframes csfade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.cs-img { position: relative; min-height: 520px; background-size: cover; background-position: center; }
.cs-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(150deg, rgba(22,23,22,0.30) 0%, transparent 44%); }
.cs-counter { position: absolute; top: 20px; left: 20px; z-index: 2; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--birch); background: rgba(22,23,22,0.5); padding: 7px 12px; border-radius: 999px; }
.cs-body { padding: clamp(34px, 4.4vw, 62px) clamp(26px, 3.6vw, 54px); display: flex; flex-direction: column; justify-content: center; }
.cs-client { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lumens); margin-bottom: 18px; }
.cs-title { font-family: var(--display); font-weight: 700; font-size: clamp(24px, 2.6vw, 38px); line-height: 1.08; letter-spacing: -0.025em; color: var(--charcoal); margin: 0 0 22px; max-width: 20ch; }
.cs-title .it { font-style: italic; font-weight: 500; color: var(--forest); }
.cs-quote { font-family: var(--display); font-weight: 500; font-size: clamp(15.5px, 1.4vw, 18.5px); line-height: 1.55; color: var(--charcoal); border-left: 2px solid var(--lumens); padding-left: 18px; margin: 0 0 16px; max-width: 52ch; }
.cs-attr { font-family: var(--mono); font-size: 11px; letter-spacing: 0.03em; color: var(--grey); padding-left: 20px; margin: 0 0 30px; }
.cs-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; border-top: 1px solid var(--birch-2); padding-top: 24px; margin-bottom: 30px; }
.cs-num { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(23px, 2.6vw, 32px); line-height: 1; letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 7px; }
.cs-num em { font-style: normal; color: var(--lumens); }
.cs-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); line-height: 1.4; }
.cs-body .btn { align-self: flex-start; }
@media (max-width: 900px) { .casestudy { grid-template-columns: 1fr; } .cs-img { min-height: 280px; } }

/* RECOGNITION — award & affiliation logos: vertical rules, bold headings, staggered columns */
.recognition .section-head { grid-template-columns: 1.8fr 1fr; }
.recognition .section-head h2 { font-size: clamp(30px, 3.3vw, 47px); line-height: 1.05; }
@media (max-width: 760px) { .recognition .section-head { grid-template-columns: 1fr; } }
.aw-logo img[src*="good-design"] { max-height: 72px; }
.award-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(22px, 2.6vw, 40px); align-items: start; }
.award-item { display: flex; flex-direction: column; border-left: 1px solid rgba(22,23,22,0.16); padding-left: clamp(20px, 1.8vw, 28px); }
.award-item:first-child { border-left: none; padding-left: 0; }
.award-item:nth-child(2n) { margin-top: clamp(28px, 3.6vw, 64px); }
.aw-logo { height: 100px; display: flex; align-items: flex-end; margin-bottom: 24px; }
.aw-logo img { max-height: 100px; max-width: 100%; width: auto; object-fit: contain; }
.aw-name { font-family: var(--display); font-weight: 700; font-size: clamp(20px, 1.8vw, 26px); letter-spacing: -0.02em; line-height: 1.1; color: var(--charcoal); margin-bottom: 9px; }
.award-item p { font-size: 14px; line-height: 1.55; color: var(--grey); }
@media (max-width: 900px) {
  .award-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .award-item:nth-child(2n) { margin-top: 0; }
  .award-item:nth-child(2n+1) { border-left: none; padding-left: 0; }
}
@media (max-width: 520px) {
  .award-grid { grid-template-columns: 1fr; gap: 32px; }
  .award-item, .award-item:nth-child(2n+1) { border-left: none; padding-left: 0; border-top: 1px solid rgba(22,23,22,0.14); padding-top: 24px; }
  .award-item:first-child { border-top: none; padding-top: 0; }
}
