:root {
  --ink: #071b49;
  --text: #24365c;
  --muted: #65738f;
  --accent: #1557ff;
  --accent-hover: #0d47da;
  --border: #d7e0ef;
  --border-strong: #b8c7df;
  --surface: #f5f8fd;
  --surface-blue: #eef4ff;
  --white: #fff;
  --success: #15803d;
  --danger: #b42318;
  --shadow: 0 16px 45px rgba(7, 27, 73, .09);
  --container: 1440px;
  --content: 860px;
  --content-wide: 1120px;
  --gutter: clamp(18px, 3vw, 44px);
  --radius: 4px;
  --radius-sm: 2px;
  --radius-lg: 4px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 18px;
  --space-4: 28px;
  --space-5: 42px;
  --space-6: clamp(64px, 8vw, 116px);
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.site-body,
body.admin-body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.drawer-open,
body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button,
input,
select,
textarea { font: inherit; letter-spacing: 0; }
button,
.btn { cursor: pointer; }
h1,
h2,
h3,
h4,
p { margin-top: 0; }
h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--font);
  font-weight: 650;
  line-height: 1.06;
  letter-spacing: 0;
}
h1 { font-size: clamp(40px, 4.8vw, 66px); }
h2 { font-size: clamp(28px, 3.35vw, 46px); }
h3 { font-size: clamp(18px, 1.75vw, 24px); }
.container,
.retail-wrap { width: min(100%, var(--container)); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: var(--space-6) 0; }
.muted { color: var(--muted) !important; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(18px, 2vw, 23px); }
.eyebrow,
.retail-kicker,
.breadcrumb {
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.breadcrumb { margin-bottom: 24px; color: var(--muted); letter-spacing: 0; text-transform: none; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; top: 8px; left: 8px; padding: 10px 14px; color: #fff; background: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.ui-icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }

/* Public design primitives: use these classes for all new page content. */
.content { width: min(100%, var(--content)); }
.content-wide { width: min(100%, var(--content-wide)); }
.section--compact { padding-block: clamp(42px, 5vw, 72px); }
.section--muted { background: var(--surface); border-block: 1px solid var(--border); }
.section--blue { background: var(--surface-blue); border-block: 1px solid var(--border); }
.flow > * + * { margin-top: var(--flow-space, var(--space-3)); }
.stack { display: grid; gap: var(--stack-gap, var(--space-3)); }
.cluster { display: flex; flex-wrap: wrap; align-items: center; gap: var(--cluster-gap, var(--space-2)); }
.split { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }
.heading-display { max-width: 920px; font-size: clamp(48px, 5.5vw, 78px); }
.heading-xl { font-size: clamp(40px, 4.5vw, 64px); }
.heading-lg { font-size: clamp(32px, 3.8vw, 54px); }
.heading-md { font-size: clamp(24px, 2.4vw, 34px); }
.text-lead { max-width: 760px; color: var(--muted); font-size: clamp(18px, 2vw, 23px); line-height: 1.55; }
.text-body { max-width: var(--content); color: var(--text); font-size: 16px; line-height: 1.7; }
.text-small { color: var(--muted); font-size: 13px; line-height: 1.55; }
.label { margin: 0; color: var(--accent); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.panel { padding: clamp(22px, 3vw, 34px); background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.panel--soft { background: var(--surface); }
.panel--blue { background: var(--surface-blue); }
.panel--dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.panel--dark :is(h1, h2, h3, h4) { color: var(--white); }
.panel--dark .muted { color: rgba(255,255,255,.72) !important; }
.media-frame { overflow: hidden; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.data-table { width: 100%; border-collapse: collapse; background: var(--white); }
.data-table :is(th, td) { padding: 13px 15px; text-align: left; border: 1px solid var(--border); vertical-align: top; }
.data-table th { color: var(--ink); background: var(--surface); font-size: 12px; font-weight: 750; }
.data-table tbody tr:nth-child(even) { background: var(--surface); }
.button-row { display: flex; flex-wrap: wrap; gap: 10px; }
.page-hero .heading-display,
.page-hero .heading-xl { margin-bottom: var(--space-3); }

:where(a, button, input, select, textarea, summary):focus-visible { outline: 3px solid rgba(21,87,255,.35); outline-offset: 3px; }

/* Shared header */
.topbar {
  position: sticky;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 78px;
  margin: 0;
  transform: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: rgba(255,255,255,.97);
  box-shadow: none;
}
.topbar::before { display: none !important; }
.nav { display: flex; align-items: center; height: 100%; gap: 18px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo { width: 154px; height: auto; }
.navlinks { display: flex; align-items: stretch; justify-content: center; gap: 2px; margin-left: auto; height: 100%; }
.navlinks a {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  border-inline: 1px solid transparent;
}
.navlinks a::after { content: ""; position: absolute; right: 14px; bottom: 17px; left: 14px; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform .2s ease; }
.navlinks a:hover,
.navlinks a:focus-visible,
.navlinks a.is-active { color: var(--accent); background: var(--surface-blue); border-color: var(--border); }
.navlinks a:hover::after,
.navlinks a:focus-visible::after,
.navlinks a.is-active::after { transform: scaleX(1); }
body.site-body .topbar .navlinks a,
body.site-body .topbar .navlinks a:hover,
body.site-body .topbar .navlinks a:focus-visible,
body.site-body .topbar .navlinks a.is-active {
  border-radius: 0;
  box-shadow: none;
  transform: none;
  backdrop-filter: none;
}
body.site-body .topbar .navlinks a.is-active { background: transparent; border-color: transparent; }
.nav-search,
.hamb,
.icon-button,
.mobile-menu-close {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.nav-search:hover,
.icon-button:hover { color: var(--accent); border-color: var(--accent); }
.hamb { display: none; }
.btn,
.retail-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.2;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover,
.retail-button:hover { transform: translateY(-1px); }
.btn.primary,
.retail-button { color: #fff; background: var(--accent); border-color: var(--accent); }
.btn.primary:hover,
.retail-button:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn.dark { color: #fff; background: var(--ink); border-color: var(--ink); }
.btn.line,
.retail-button.secondary { color: var(--ink); background: #fff; border-color: var(--border-strong); }
.btn.line:hover,
.retail-button.secondary:hover { color: var(--accent); border-color: var(--accent); background: var(--surface-blue); }
.nav-cta { padding-inline: 17px; white-space: nowrap; font-size: 13px; }
.overlay { position: fixed; z-index: 1200; inset: 0; background: rgba(7,27,73,.36); opacity: 0; visibility: hidden; transition: .2s ease; }
.mobile-menu-panel,
.drawer { position: fixed; z-index: 1300; top: 0; right: 0; width: min(92vw, 430px); height: 100dvh; padding: 24px; background: #fff; border-radius: 0; box-shadow: -20px 0 60px rgba(7,27,73,.16); backdrop-filter: none; transform: translateX(105%); transition: transform .24s ease; overflow-y: auto; }
body.menu-open .overlay,
body.drawer-open .overlay { opacity: 1; visibility: visible; }
body.menu-open .mobile-menu-panel,
body.drawer-open .drawer { transform: translateX(0); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.mobile-menu-search { display: flex; margin: 24px 0 16px; border: 1px solid var(--border); border-radius: 2px; box-shadow: none; }
.mobile-menu-search input { min-width: 0; flex: 1; border: 0; padding: 13px; }
.mobile-menu-search button { width: 48px; border: 0; color: var(--accent); background: transparent; }
.mobile-menu-nav { display: grid; border-top: 1px solid var(--border); }
.mobile-menu-nav a { display: flex; align-items: center; justify-content: space-between; min-height: 56px; padding: 0; border: 0; border-bottom: 1px solid var(--border); border-radius: 0; color: var(--ink); background: #fff; box-shadow: none; font-weight: 650; }
.mobile-menu-nav a::after { display: none !important; }
.mobile-menu-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-block: 24px; padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; backdrop-filter: none; }
.mobile-menu-actions .btn { border-radius: 2px !important; box-shadow: none !important; }
.mobile-menu-account { display: grid; gap: 8px; padding-top: 18px; border-top: 1px solid var(--border); }
.mobile-menu-account a { display: flex; align-items: center; gap: 10px; min-height: 42px; color: var(--ink); }
.drawer h2 { margin: 0; font-size: 28px; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; }
#drawerItems { display: grid; gap: 10px; margin-block: 28px; }
.drawer-item { display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.drawer-checkout { width: 100%; }

/* Shared page structures */
.page-hero { padding: clamp(54px, 6vw, 88px) 0 clamp(46px, 5vw, 72px); background: var(--surface); border-bottom: 1px solid var(--border); }
.page-hero h1 { max-width: 920px; margin-bottom: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 5vw, 72px); align-items: start; }
.section-head,
.retail-section-head,
.blog-section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-head h2,
.retail-section-head h2,
.blog-section-head h2 { margin-bottom: 0; }
.card,
.result-box { padding: clamp(22px, 3vw, 34px); border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
.shadow { box-shadow: var(--shadow); }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0; }
.tag { min-height: 31px; display: inline-flex; align-items: center; padding: 6px 10px; color: var(--text); background: var(--surface); border: 1px solid var(--border); border-radius: 2px; font-size: 12px; font-weight: 700; }
.tag-button.is-active { color: #fff; background: var(--accent); border-color: var(--accent); }
input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  outline: none;
}
textarea { min-height: 130px; resize: vertical; }
input:focus,
select:focus,
textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(21,87,255,.12); }
label { display: block; margin: 15px 0 7px; color: var(--ink); font-size: 13px; font-weight: 700; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.notice { padding: 14px 16px; margin-bottom: 20px; border-left: 3px solid var(--accent); background: var(--surface-blue); }
.notice.error { color: var(--danger); border-color: var(--danger); background: #fff4f2; }

/* Retail homepage and solution pages */
.retail-home { overflow: hidden; }
.retail-hero { border-bottom: 1px solid var(--border); background: #fff; }
.retail-hero-grid { min-height: min(720px, calc(100vh - 78px)); display: grid; grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr); padding-right: 0; }
.retail-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 5vw, 76px) clamp(32px, 4vw, 72px) clamp(40px, 5vw, 76px) 0; }
.retail-hero-copy h1 { max-width: 700px; margin: 0 0 22px; font-size: clamp(44px, 4.8vw, 66px); }
.retail-hero-copy h1 br { display: none; }
.retail-hero-copy h1 em { color: var(--accent); font-style: normal; }
.retail-hero-copy > p:not(.retail-kicker) { max-width: 650px; color: var(--muted); font-size: clamp(17px, 1.5vw, 21px); }
.retail-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.retail-hero-actions .retail-button { min-height: 44px; padding: 10px 15px; font-size: 13px; }
.retail-hero-image { position: relative; min-height: 520px; margin: 0; overflow: hidden; background: var(--surface); }
.retail-hero-image > img { width: 100%; height: 100%; object-fit: cover; }
.retail-hero-note { position: absolute; right: 0; bottom: 0; display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; padding: 20px 24px; color: var(--ink); background: rgba(255,255,255,.94); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.retail-hero-note b { color: var(--accent); font-size: 23px; }
.retail-filter-bar { position: relative; z-index: 4; background: #fff; border-bottom: 1px solid var(--border); }
.retail-filter-grid { display: grid; grid-template-columns: repeat(4, 1fr) 1.15fr; padding-block: 0; }
.retail-filter-grid > a { display: flex; align-items: center; gap: 12px; min-height: 92px; padding: 16px 20px; border-left: 1px solid var(--border); }
.retail-filter-grid > a:last-child { border-right: 1px solid var(--border); }
.retail-filter-grid svg { width: 24px; flex: 0 0 auto; fill: none; stroke: var(--accent); stroke-width: 1.5; }
.retail-filter-grid span { display: block; }
.retail-filter-grid b { display: block; color: var(--ink); font-size: 14px; }
.retail-filter-grid span span { color: var(--muted); font-size: 12px; }
.retail-filter-grid a:hover { background: var(--surface-blue); }
.retail-filter-grid .retail-filter-cta { color: #fff; background: var(--accent); }
.retail-filter-grid .retail-filter-cta svg { stroke: #fff; }
.retail-filter-grid .retail-filter-cta b,
.retail-filter-grid .retail-filter-cta span span { color: #fff; }
.retail-section { padding: clamp(72px, 9vw, 128px) 0; border-bottom: 1px solid var(--border); }
.retail-section:nth-of-type(even) { background: var(--surface); }
.retail-section-head > p { max-width: 600px; color: var(--muted); font-size: 18px; }
.retail-zone-layout,
.retail-case-grid,
.retail-tool { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; border: 1px solid var(--border); background: #fff; }
.retail-zone-visual,
.retail-case-photo { position: relative; min-height: 540px; margin: 0; overflow: hidden; border-right: 1px solid var(--border); }
.retail-zone-visual img,
.retail-case-photo img { width: 100%; height: 100%; object-fit: cover; }
.retail-zone-label { position: absolute; top: 20px; left: 20px; padding: 8px 10px; color: #fff; background: var(--accent); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.retail-zone-copy,
.retail-case-info,
.retail-tool-copy { padding: clamp(32px, 5vw, 72px); }
.retail-zone-copy > p,
.retail-case-info > p,
.retail-tool-copy > p { color: var(--muted); }
.retail-zone-list { margin: 30px 0; padding: 0; list-style: none; }
.retail-zone-list li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 15px 0; border-top: 1px solid var(--border); }
.retail-zone-list li b { color: var(--accent); }
.retail-link { display: inline-flex; align-items: center; min-height: 44px; color: var(--accent); border-bottom: 1px solid var(--accent); font-weight: 750; }
.retail-products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.retail-product-card { min-width: 0; padding: 0 22px 22px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.retail-product-card figure { height: 300px; margin: 0 -22px 24px; background: var(--surface); overflow: hidden; }
.retail-product-card figure img { width: 100%; height: 100%; object-fit: contain; }
.retail-product-card h3 { margin-bottom: 6px; }
.retail-product-card p { color: var(--muted); }
.retail-product-card footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding-top: 15px; border-top: 1px solid var(--border); font-size: 12px; }
.retail-product-card footer a { color: var(--accent); font-size: 26px; }
.retail-tool { padding: 0; grid-template-columns: .85fr 1.15fr; }
.retail-tool-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 0; margin: 30px 0; list-style: none; }
.retail-tool-steps li { color: var(--muted); font-size: 12px; }
.retail-tool-steps b { display: grid; place-items: center; width: 28px; height: 28px; margin-bottom: 8px; color: #fff; background: var(--accent); }
.retail-tool-visual { position: relative; min-height: 600px; overflow: hidden; border-left: 1px solid var(--border); }
.retail-tool-visual > img { width: 100%; height: 100%; object-fit: cover; }
.retail-tool-badge { position: absolute; right: 0; bottom: 0; width: min(420px, 90%); padding: 22px; color: #fff; background: var(--ink); }
.retail-tool-badge span { display: block; margin-top: 6px; opacity: .78; }
.retail-case-info h3 { font-size: clamp(27px, 3.5vw, 44px); }
.retail-metric-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 36px; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.retail-metric-grid div { padding: 18px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.retail-metric-grid b { display: block; color: var(--accent); font-size: 23px; }
.retail-metric-grid span { color: var(--muted); font-size: 12px; }
.service-journey-section { background: var(--surface) !important; }
.service-journey-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--border); border-left: 1px solid var(--border); background: #fff; }
.service-journey-grid article { position: relative; min-width: 0; min-height: 232px; padding: 24px 20px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.service-journey-grid article > span { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 30px; color: var(--accent); background: var(--surface-blue); border: 1px solid #cddcf5; }
.service-journey-grid svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.service-journey-grid article > b { position: absolute; top: 30px; right: 20px; color: var(--accent); font-size: 12px; }
.service-journey-grid h3 { margin: 0 0 9px; font-size: 17px; line-height: 1.25; }
.service-journey-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.service-journey-cta { margin-top: 26px; }
.retail-footer-cta { color: #fff; background: var(--ink); }
.retail-footer-cta > div { min-height: 260px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.retail-footer-cta h2 { margin: 0; color: #fff; }

/* Product catalog */
.catalog-layout { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: 42px; }
.filters { position: sticky; top: 102px; align-self: start; padding: 23px; border: 1px solid var(--border); border-radius: 0 !important; background: #fff; box-shadow: none !important; backdrop-filter: none !important; }
.filter-group { display: grid; gap: 7px; margin: 24px 0; }
.check { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 10px; border: 1px solid transparent; border-radius: 2px !important; color: var(--muted); box-shadow: none !important; }
.check:hover,
.check.active-filter { color: var(--accent); background: var(--surface-blue); border-color: var(--border); }
.check input { width: 18px; min-height: 18px; margin: 0; }
.filter-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.filter-chip { display: flex; align-items: center; min-height: 38px; padding: 7px 9px; color: var(--ink); background: #fff; border: 1px solid var(--border); cursor: pointer; font-size: 11px; font-weight: 700; text-transform: none; letter-spacing: 0; }
.filter-chip:hover { border-color: var(--accent); background: var(--surface-blue); }
.filter-chip input { width: 15px; min-height: 15px; margin: 0 7px 0 0; accent-color: var(--accent); }
.filter-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding-top: 18px; }
.filter-actions .btn { min-height: 42px; padding: 10px 8px; font-size: 11px; }
.toolbar { display: grid; grid-template-columns: minmax(200px, 1fr) 190px auto; gap: 10px; margin-bottom: 16px; }
.catalog-layout form.toolbar {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.catalog-layout form.toolbar .btn.dark {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: none;
}
.catalog-layout form.toolbar .btn.dark:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.catalog-count { margin-bottom: 24px; }
.products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product { position: relative; min-height: 370px; border: 1px solid var(--border); overflow: hidden; background: #fff; transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease; }
.product-img { display: grid; height: 100%; min-height: 370px; padding: 18px 22px 112px; place-items: center; background: linear-gradient(145deg, #fff 0%, #f5f8fd 100%); overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.product:hover,
.product:focus-within { border-color: #c6d4e8; box-shadow: 0 16px 34px rgba(7, 27, 73, .1); transform: translateY(-3px); }
.product:hover .product-img img,
.product:focus-within .product-img img { transform: scale(1.025); }
.product-body { position: absolute; inset: auto 0 0; padding: 14px 16px 16px; color: var(--text); background: rgba(255, 255, 255, .91); border-top: 1px solid rgba(215, 224, 239, .92); backdrop-filter: blur(14px); transform: translateY(calc(100% - 86px)); transition: transform .28s ease, background .28s ease; }
.product-body h3 { margin: 3px 0 0; color: var(--ink); font-size: clamp(15px, 1.1vw, 18px); line-height: 1.2; }
.product-body .muted { margin: 9px 0 0; color: var(--muted) !important; font-size: 12px; line-height: 1.45; }
.product-body .tags { margin: 12px 0; }
.product-body .tag { min-height: 28px; padding: 5px 8px; color: var(--text); background: rgba(245, 248, 253, .8); border-color: var(--border); font-size: 11px; }
.product-body .tag-button:hover { color: var(--accent); border-color: var(--accent); background: #fff; }
.product-body .tag-button.is-active { color: #fff; background: var(--accent); border-color: var(--accent); }
.product-body .product-price-row { padding-top: 2px; }
.product-body .product-price-row b { color: var(--ink); font-size: 15px; }
.product-body .product-price-row .btn { min-height: 38px; padding: 8px 12px; color: #fff; background: var(--accent); border-color: var(--accent); font-size: 12px; }
.product-body .product-price-row .btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.product:hover .product-body,
.product:focus-within .product-body { transform: translateY(0); background: rgba(255, 255, 255, .97); }
.product[data-glass-temp="warm"] .product-body { background: rgba(255, 248, 235, .94); border-top-color: rgba(228, 192, 137, .72); }
.product[data-glass-temp="cool"] .product-body { background: rgba(241, 248, 255, .94); border-top-color: rgba(159, 198, 239, .72); }
.mobile-filter-toggle { display: none; }

/* Product detail */
.product-detail-section { padding-top: 48px; }
.product-detail-grid { grid-template-columns: 1.15fr .85fr; }
.product-gallery { padding: 0; box-shadow: none; }
.product-detail-grid > .card,
.product-gallery { border-radius: 0 !important; box-shadow: none !important; }
.product-hero-img { position: relative; min-height: 560px; height: min(65vw, 680px); cursor: zoom-in; }
.product-hero-img img { object-fit: contain; background: var(--surface); }
.gallery-zoom-badge { position: absolute; right: 16px; bottom: 16px; padding: 8px 11px; color: #fff; background: var(--ink); font-size: 12px; font-weight: 700; }
.product-thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--border); border-top: 1px solid var(--border); }
.product-thumb { height: 92px; padding: 6px; background: #fff; border: 0; }
.product-thumb.is-active { box-shadow: inset 0 -3px var(--accent); }
.product-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-summary { position: sticky; top: 110px; padding: 0 !important; background: transparent !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important; }
.product-summary .eyebrow { color: var(--accent) !important; }
.product-summary h1 { margin: 12px 0 20px !important; color: var(--ink) !important; font-size: clamp(36px, 4.4vw, 56px) !important; }
.product-summary > h3 { color: var(--ink) !important; font-size: 23px; }
.product-summary .btn { margin: 5px 6px 5px 0; }
.product-breadcrumb { margin-bottom: 24px; }
.product-price-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-category { color: var(--muted); font-size: 12px; font-weight: 800; }
.tabs { display: flex; gap: 0; margin-top: 72px; overflow-x: auto; border-bottom: 1px solid var(--border); }
.tab { flex: 0 0 auto; padding: 16px 20px; color: var(--muted); border: 1px solid transparent; border-bottom: 0; cursor: pointer; font-weight: 700; }
.tab.active { color: var(--accent); background: var(--surface-blue); border-color: var(--border); }
.tab-panel { display: none; padding: clamp(28px, 5vw, 68px) 0; }
.tab-panel.active { display: block; }
.product-copy { max-width: 1050px; }
.product-description-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.product-description-copy h2 { margin: 4px 0 18px; color: var(--ink); font-size: clamp(25px, 2.7vw, 38px); line-height: 1.08; }
.product-description-copy p { max-width: 680px; }
.product-description-kicker { margin: 0 0 10px; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-description-media { display: grid; gap: 16px; }
.product-description-visual { margin: 0; border: 1px solid var(--border); background: var(--surface); }
.product-description-visual img { width: 100%; min-height: 220px; max-height: 420px; object-fit: contain; }
.product-description-visual--technical img { max-height: 360px; object-fit: cover; object-position: top; }
.product-description-visual figcaption { padding: 9px 12px; color: var(--muted); border-top: 1px solid var(--border); font-size: 12px; font-weight: 650; }
.product-fact-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 24px 0; padding: 1px; list-style: none; background: var(--border); }
.product-fact-list li { min-height: 52px; padding: 13px 14px; background: #fff; font-size: 14px; }
.product-fact-list strong { color: var(--ink); }
.product-copy table,
.spec-table table { width: 100%; border-collapse: collapse; }
.product-copy td,
.product-copy th,
.spec-table td,
.spec-table th { padding: 13px 15px; text-align: left; border: 1px solid var(--border); vertical-align: top; }
.product-copy tr:nth-child(even) { background: var(--surface); }
.product-copy table { display: table; }
.product-download-panel { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.product-download-button { align-items: flex-start; flex-direction: column; color: #fff; background: var(--ink); }
.product-download-button small { opacity: .7; }
.product-lightbox { position: fixed; z-index: 2000; inset: 0; display: none; place-items: center; padding: 24px; background: rgba(4,14,38,.94); }
.product-lightbox.is-open { display: grid; }
.product-lightbox-dialog { width: min(1200px, 100%); }
.product-lightbox-frame { position: relative; display: grid; place-items: center; min-height: 70vh; background: #fff; }
.product-lightbox-frame img { max-width: 100%; max-height: 80vh; object-fit: contain; }
.product-lightbox-close,
.product-lightbox-nav { position: absolute; z-index: 2; display: grid; place-items: center; width: 44px; height: 44px; color: #fff; background: var(--ink); border: 0; }
.product-lightbox-close { top: 12px; right: 12px; }
.product-lightbox-prev { left: 12px; top: 50%; }
.product-lightbox-next { right: 12px; top: 50%; }
.product-lightbox-caption { padding: 10px; color: #fff; text-align: center; }

/* Light lab */
.home-light-hero { border-bottom: 1px solid var(--border); background: var(--ink); }
.home-light-hero .light-lab { border: 0; }
.light-lab.is-hero { position: relative; min-height: min(780px, calc(100vh - 84px)); overflow: hidden; background: var(--ink); }
.light-lab.is-hero .light-lab-grid { display: block; min-height: inherit; }
.light-lab.is-hero .light-lab-stage { position: relative; min-height: inherit; }
.light-lab.is-hero .light-lab-image { position: absolute; inset: 0; height: auto; min-height: 0; aspect-ratio: auto; }
.light-lab.is-hero .light-lab-image img { filter: saturate(.9) contrast(1.03); }
.light-lab.is-hero .light-lab-image::after { background: linear-gradient(90deg, var(--lab-temp-dark, rgba(30, 43, 56, .88)) 0%, var(--lab-temp-middle, rgba(83, 111, 131, .62)) 39%, var(--lab-temp-edge, rgba(201, 224, 238, .12)) 70%, var(--lab-temp-end, rgba(47, 68, 83, .24)) 100%), rgba(255, 255, 255, calc((100 - var(--lab-intensity, 80)) * .0025)); transition: background .28s ease; }
.light-lab.is-hero .light-lab-copy { position: absolute; z-index: 2; top: 0; left: max(var(--gutter), calc((100% - var(--container)) / 2 + var(--gutter))); display: flex; flex-direction: column; justify-content: flex-start; width: min(580px, 44vw); min-height: 0; padding: clamp(70px, 9vh, 110px) 0 172px; color: #fff; border: 0; }
.light-lab.is-hero .eyebrow { color: #b7d5ff; }
.light-lab.is-hero .light-lab-copy h1 { max-width: 560px; margin: 0 0 18px; color: #fff; font-size: clamp(43px, 4.7vw, 66px); line-height: 1; text-shadow: 0 2px 22px rgba(0, 0, 0, .22); }
.light-lab.is-hero .light-lab-copy .muted { max-width: 500px; color: #fff !important; font-size: 17px; font-weight: 520; line-height: 1.6; text-shadow: 0 2px 16px rgba(0, 0, 0, .42); }
.light-lab.is-hero .light-scene-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); width: min(510px, 100%); margin-top: 30px; }
.light-lab.is-hero .light-scene-tabs button { min-height: 48px; color: #fff; background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .45); backdrop-filter: blur(10px); }
.light-lab.is-hero .light-scene-tabs button:hover,
.light-lab.is-hero .light-scene-tabs button.is-active { color: var(--ink); background: #fff; border-color: #fff; }
.light-lab-hero-cta { display: inline-flex; align-items: center; align-self: flex-start; gap: 10px; margin-top: 22px; padding: 14px 18px; color: #fff; font-weight: 750; background: var(--accent); border: 1px solid var(--accent); }
.light-lab-hero-cta svg { width: 18px; fill: none; stroke: currentColor; }
.light-lab-hero-cta:hover { color: var(--ink); background: #fff; border-color: #fff; }
.light-lab.is-hero .light-lab-reading { top: 30px; right: max(var(--gutter), calc((100% - var(--container)) / 2 + var(--gutter))); bottom: auto; background: rgba(5, 20, 48, .78); border: 1px solid rgba(255, 255, 255, .35); backdrop-filter: blur(10px); }
.light-lab.is-hero .light-lab-controls { position: absolute; z-index: 2; right: max(var(--gutter), calc((100% - var(--container)) / 2 + var(--gutter))); bottom: 28px; left: max(var(--gutter), calc((100% - var(--container)) / 2 + var(--gutter))); grid-template-columns: 2fr 1fr; background: rgba(255, 255, 255, .94); border: 1px solid rgba(255, 255, 255, .7); box-shadow: 0 20px 56px rgba(0, 0, 0, .2); backdrop-filter: blur(16px); }
.light-lab.is-hero .light-lab-notice { display: none; }
.light-lab { border: 1px solid var(--border); background: #fff; }
.light-lab-grid { display: grid; grid-template-columns: 310px minmax(0, 1fr); }
.light-lab-copy { padding: clamp(28px, 4vw, 54px); border-right: 1px solid var(--border); }
.light-lab-copy h2 { font-size: clamp(30px, 3.5vw, 46px); }
.light-scene-tabs { display: grid; gap: 8px; margin-top: 28px; }
.light-scene-tabs button { min-height: 50px; padding: 11px 13px; text-align: left; color: var(--ink); background: #fff; border: 1px solid var(--border); }
.light-scene-tabs button.is-active { color: #fff; background: var(--accent); border-color: var(--accent); }
.light-lab-stage { min-width: 0; }
.light-lab-image { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--surface); }
.light-lab-image img { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s ease; }
.light-lab-image::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: rgba(255,255,255,calc((100 - var(--lab-intensity, 80)) * .003)); }
.light-lab-reading { position: absolute; right: 16px; bottom: 16px; padding: 10px 13px; color: #fff; background: var(--ink); font-weight: 750; }
.light-lab-controls { display: grid; grid-template-columns: 2fr 1fr; border-top: 1px solid var(--border); }
.light-control { min-width: 0; padding: 20px; border-right: 1px solid var(--border); }
.light-control:last-child { border-right: 0; }
.light-control label,
.light-control-label { display: block; margin-top: 0; color: var(--accent); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.light-control input[type="range"] { min-height: 28px; padding: 0; accent-color: var(--accent); box-shadow: none; border: 0; }
.light-control output { display: block; margin-top: 6px; color: var(--ink); font-weight: 750; }
.temperature-switcher { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; margin-top: 10px; }
.temperature-switcher button { min-height: 48px; padding: 7px 8px; color: var(--muted); background: #fff; border: 1px solid var(--border); font-size: 11px; line-height: 1.1; text-align: left; transition: color .18s ease, background .18s ease, border-color .18s ease; }
.temperature-switcher button b,
.temperature-switcher button small { display: block; }
.temperature-switcher button b { color: var(--ink); font-size: 12px; }
.temperature-switcher button small { margin-top: 3px; font-size: 10px; }
.temperature-switcher button:hover { border-color: var(--accent); }
.temperature-switcher button.is-active { color: #fff; background: var(--accent); border-color: var(--accent); }
.temperature-switcher button.is-active b { color: #fff; }
.light-lab-notice { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 22px; border-top: 1px solid var(--border); background: var(--surface); }
.light-lab-notice .btn { border-radius: 2px !important; }

@media (min-width: 1100px) {
  .light-lab.is-hero .light-lab-copy h1 { max-width: none; font-size: clamp(42px, 3.5vw, 56px); white-space: nowrap; }
}

/* Homepage product categories */
.product-category-section { background: #fff !important; }
.product-category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.product-category-card { display: grid; grid-template-columns: 150px 1fr; min-width: 0; min-height: 184px; color: var(--ink); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; transition: background .2s ease, box-shadow .2s ease; }
.product-category-card:hover { background: #fbfdff; box-shadow: inset 0 0 0 1px rgba(21, 87, 255, .18); }
.product-category-card figure { display: grid; place-items: center; margin: 0; padding: 16px; background: var(--surface); overflow: hidden; }
.product-category-card img { width: 100%; height: 135px; object-fit: contain; mix-blend-mode: multiply; transition: transform .25s ease; }
.product-category-card:hover img { transform: scale(1.04); }
.product-category-card > div { display: flex; flex-direction: column; justify-content: center; padding: 17px 18px 17px 0; }
.product-category-card span { color: var(--accent); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.product-category-card p { margin: 7px 0 11px; color: var(--muted); font-size: 12px; line-height: 1.4; }
.product-category-card b { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-size: 11px; }
.product-category-card b svg { width: 18px; stroke: var(--accent); fill: none; }

/* Space-planning interface */
.config-page { background: var(--surface) !important; }
.config-shell { width: min(100%, var(--container)); margin-inline: auto; padding: 42px var(--gutter) 100px; }
.config-progress { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 60px; padding: 16px; border-bottom: 1px solid var(--border); background: #fff; }
.config-progress span { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; }
.config-progress b { width: 29px; height: 29px; display: grid; place-items: center; color: var(--ink); background: var(--surface); border: 1px solid var(--border); }
.config-progress .is-active { color: var(--accent); }
.config-progress .is-active b { color: #fff; background: var(--accent); border-color: var(--accent); }
.config-progress i { width: 44px; height: 1px; background: var(--border-strong); }
.config-kicker { margin: 0 0 12px; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.config-title { max-width: 900px; margin: 0; color: var(--ink); font-size: clamp(48px, 6vw, 82px); }
.config-subtitle { max-width: 700px; margin: 22px 0 38px; color: var(--muted); }
.config-subtitle--compact { margin: 0 0 10px; font-size: 11px; }
.config-builder { display: grid; grid-template-columns: 330px minmax(0, 1fr); border: 1px solid var(--border); background: #fff; }
.config-controls { padding: 26px; border-right: 1px solid var(--border); }
.config-controls h2 { margin: 0 0 18px; font-size: 16px; }
.config-control { margin-bottom: 18px; }
.config-control label { margin: 0 0 7px; color: var(--muted); font-size: 10px; text-transform: uppercase; }
.config-control input { height: 44px; min-height: 44px; }
.config-store-types,
.config-moods,
.config-zone-tools { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.config-choice,
.config-zone-tools button { min-height: 46px; padding: 8px; color: var(--ink); background: #fff; border: 1px solid var(--border); font-size: 11px; font-weight: 700; }
.config-choice:hover,
.config-zone-tools button:hover,
.config-choice.is-selected { color: var(--accent); background: var(--surface-blue); border-color: var(--accent); }
.config-zone-tools [data-delete-zone] { grid-column: 1 / -1; color: var(--danger); }
.config-zone-tools [data-delete-zone]:disabled { opacity: .45; cursor: not-allowed; }
.config-control small { display: block; margin-top: 7px; color: var(--muted); font-size: 10px; }
.config-canvas-panel { min-width: 0; min-height: 640px; padding: 20px; background: var(--surface-blue); }
.config-canvas-toolbar { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.config-canvas-toolbar span { color: var(--muted); font-size: 12px; }
.config-canvas-wrap { position: relative; height: 560px; overflow: hidden; border: 1px solid var(--border); background: #fff; }
.config-canvas { display: block; width: 100%; height: 100%; touch-action: none; }
.config-canvas-tip { position: absolute; right: 14px; bottom: 14px; max-width: 240px; padding: 10px 12px; color: var(--muted); background: rgba(255,255,255,.94); border: 1px solid var(--border); font-size: 10px; }
.config-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.config-button-primary,
.config-button-secondary { min-height: 48px; padding: 10px 18px; color: #fff; background: var(--accent); border: 1px solid var(--accent); font-weight: 750; }
.config-button-primary:hover { background: var(--accent-hover); }
.config-button-secondary { color: var(--accent); background: #fff; }
.config-button-secondary:hover { background: var(--surface-blue); }
.config-button--block { width: 100%; }
.config-button--spaced { margin-top: 9px; }
.config-results { display: none; grid-template-columns: minmax(0, 1fr) 400px; margin-top: 30px; border: 1px solid var(--border); background: #fff; }
.config-results.is-visible { display: grid; }
.config-result-plan { min-width: 0; padding: 30px; border-right: 1px solid var(--border); }
.config-result-plan h2,
.config-summary h2 { margin: 0; font-size: clamp(32px, 4vw, 48px); }
.config-result-plan .config-canvas-wrap { height: 570px; margin-top: 24px; }
.config-view-tabs { display: flex; margin-top: 14px; overflow-x: auto; border: 1px solid var(--border); }
.config-view-tabs button { flex: 1; min-width: 110px; min-height: 48px; color: var(--muted); background: #fff; border: 0; border-right: 1px solid var(--border); font-size: 10px; font-weight: 700; }
.config-view-tabs button.is-active { color: var(--accent); background: var(--surface-blue); }
.config-summary { padding: 30px; }
.config-summary > p { color: var(--muted); font-size: 12px; }
.config-recommendation { padding: 0; margin: 20px 0; list-style: none; border-top: 1px solid var(--border); }
.config-recommendation li { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.config-recommendation b,
.config-recommendation span { display: block; }
.config-recommendation b { color: var(--ink); font-size: 13px; }
.config-recommendation span { color: var(--muted); font-size: 11px; }
.config-recommendation strong { color: var(--accent); }
.config-summary-metrics { display: grid; grid-template-columns: repeat(3, 1fr); margin: 22px 0; border: 1px solid var(--border); }
.config-summary-metrics div { min-width: 0; padding: 13px 9px; border-right: 1px solid var(--border); }
.config-summary-metrics div:last-child { border: 0; }
.config-summary-metrics b,
.config-summary-metrics span { display: block; }
.config-summary-metrics b { color: var(--ink); font-size: 24px; }
.config-summary-metrics span { color: var(--muted); font-size: 9px; }
.config-disclaimer { margin-top: 16px; color: var(--muted); font-size: 10px; }
.config-lead-form { display: none; max-width: 760px; margin: 34px auto 0; padding: 28px; border: 1px solid var(--border); background: #fff; }
.config-lead-form.is-visible { display: block; }
.config-lead-form h2 { margin-bottom: 8px; font-size: 36px; }
.config-lead-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.config-lead-form-grid textarea { grid-column: 1 / -1; }
.config-form-status { color: var(--accent); font-size: 12px; font-weight: 700; }

/* Services page */
.services-hero { padding-block: clamp(70px, 9vw, 132px); }
.services-hero h1 { max-width: 850px; }
.services-hero .lead { margin-bottom: 28px; }
.services-list { padding-block: clamp(58px, 8vw, 112px); background: #fff; }
.service-feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 470px; border-top: 1px solid var(--border); border-left: 1px solid var(--border); background: #fff; }
.service-feature:last-child { border-bottom: 1px solid var(--border); }
.service-feature-image { min-height: 400px; margin: 0; overflow: hidden; border-right: 1px solid var(--border); background: var(--surface); }
.service-feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-feature:hover .service-feature-image img { transform: scale(1.025); }
.service-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 5vw, 74px); border-right: 1px solid var(--border); }
.service-feature.is-reversed .service-feature-image { order: 2; border-right: 0; border-left: 1px solid var(--border); }
.service-feature.is-reversed .service-feature-copy { order: 1; }
.service-feature-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.service-feature-meta > span { display: grid; place-items: center; width: 34px; height: 34px; color: #fff; background: var(--accent); font-size: 12px; font-weight: 800; }
.service-feature-meta .eyebrow { margin: 0; }
.service-feature h2 { max-width: 540px; margin-bottom: 18px; }
.service-feature-copy > p { max-width: 540px; margin-bottom: 25px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.service-feature ul { display: grid; gap: 10px; max-width: 540px; padding: 0; margin: 0; list-style: none; }
.service-feature li { display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: 13px; font-weight: 650; }
.service-feature li svg { width: 17px; height: 17px; color: var(--accent); }

/* Blog and generic content */
.blog-hero { position: relative; min-height: 620px; display: flex; align-items: end; overflow: hidden; background: var(--ink); }
.blog-hero-bg { position: absolute; inset: 0; }
.blog-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,27,73,.92), rgba(7,27,73,.1)); }
.blog-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.blog-hero-inner { position: relative; z-index: 1; padding-block: 100px; color: #fff; }
.blog-hero-inner h1 { max-width: 800px; color: #fff; }
.blog-hero-inner > p:last-child { max-width: 650px; font-size: 20px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { border: 1px solid var(--border); background: #fff; }
.blog-card-image { display: block; aspect-ratio: 16/10; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.blog-card:hover img { transform: scale(1.025); }
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; justify-content: space-between; color: var(--accent); font-size: 11px; text-transform: uppercase; }
.blog-card h2 { margin: 14px 0; font-size: 27px; }
.ref-detail-link { color: var(--accent); font-weight: 700; }
.map { min-height: 260px; display: grid; place-items: center; border: 1px solid var(--border); background: var(--surface-blue); }
.map-pin { padding: 12px; background: #fff; border: 1px solid var(--border); }
.result-line { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--border); }

/* Solution and editorial templates */
.space-hero { position: relative; min-height: 650px; overflow: hidden; border-bottom: 1px solid var(--border); background: #fff; }
.space-hero > img { position: absolute; inset: 0 0 0 auto; width: 57%; height: 100%; object-fit: cover; }
.space-hero .container { position: relative; z-index: 2; }
.space-hero-copy { width: 45%; min-height: 650px; display: flex; flex-direction: column; justify-content: center; padding: 70px 5vw 70px 0; }
.space-hero-copy h1 { margin: 16px 0 22px; font-size: clamp(40px, 4.4vw, 66px); }
.space-hero-copy p { color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.btn.ghost { color: var(--ink); background: #fff; border-color: var(--border-strong); }
.solution-band,
.technical-section,
.process-section,
.related-spaces { background: var(--surface); }
.solution-grid,
.benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.solution-mini-card,
.benefit-card { min-height: 230px; padding: 28px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.solution-mini-card h3,
.benefit-card h3 { margin-bottom: 14px; font-size: 25px; }
.solution-mini-card p,
.benefit-card p { color: var(--muted); }
.solution-mini-card a { color: var(--accent); font-weight: 700; }
.parameter-list .result-line { display: grid; grid-template-columns: 180px 1fr; }
.parameter-list .result-line span { color: var(--accent); font-weight: 700; }
.space-process { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.space-process > div { min-height: 160px; padding: 22px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.space-process span { display: grid; place-items: center; width: 30px; height: 30px; margin-bottom: 22px; color: #fff; background: var(--accent); }
.inspiration-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.inspiration-item { min-height: 360px; display: flex; align-items: end; padding: 20px; color: #fff; background-image: var(--img); background-position: center; background-size: cover; }
.inspiration-item span { padding: 8px 10px; background: var(--ink); font-weight: 700; }
.faq-list { display: grid; gap: 8px; }
.faq-list details { border: 1px solid var(--border); background: #fff; }
.faq-list summary { padding: 18px; color: var(--ink); cursor: pointer; font-weight: 700; }
.faq-list details p { padding: 0 18px 18px; color: var(--muted); }
.related-links { display: flex; flex-wrap: wrap; gap: 8px; }
.related-links a { padding: 11px 15px; color: var(--text); background: #fff; border: 1px solid var(--border); }
.related-links a:hover,
.related-links a.active { color: var(--accent); background: var(--surface-blue); border-color: var(--accent); }
.final-cta { border-top: 1px solid var(--border); }
.blog-article-hero { position: relative; min-height: 680px; display: flex; align-items: end; overflow: hidden; background: var(--ink); }
.blog-article-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-article-scrim { position: absolute; inset: 0; background: rgba(7,27,73,.78); }
.blog-article-hero-inner { position: relative; z-index: 2; padding-block: 90px; color: #fff; }
.blog-article-hero h1 { max-width: 950px; margin: 18px 0; color: #fff; font-family: var(--font); font-size: clamp(39px, 5.2vw, 66px); }
.blog-article-hero-inner > p { max-width: 760px; font-size: 19px; }
.blog-meta--light { max-width: 520px; color: #fff; }
.blog-article-layout { display: grid; grid-template-columns: 260px minmax(0, 850px); justify-content: center; gap: clamp(35px, 7vw, 100px); }
.blog-aside { position: sticky; top: 108px; align-self: start; display: grid; border-top: 1px solid var(--border); }
.blog-aside > p { padding-top: 15px; color: var(--accent); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.blog-aside a { padding: 10px 0; color: var(--muted); border-bottom: 1px solid var(--border); font-size: 13px; }
.blog-article-content { min-width: 0; }
.blog-article-content h2 { margin-top: 60px; font-size: clamp(30px, 4vw, 46px); }
.blog-article-content h3 { margin-top: 38px; }
.blog-article-content p,
.blog-article-content li { font-size: 18px; line-height: 1.75; }
.blog-article-content figure { margin: 35px 0; }
.blog-article-content figure img { width: 100%; }
.blog-sources,
.blog-cta { padding: 28px; margin-top: 50px; border: 1px solid var(--border); background: var(--surface); }

/* Footer */
.footer { padding: 70px 0 32px; margin-top: 0; color: var(--text); border-top: 1px solid var(--border); background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: clamp(25px, 4vw, 56px); }
.footer-grid .brand-logo { margin-bottom: 18px; }
.footer-grid b { color: var(--ink); }
.footer-grid p { margin: 10px 0; color: var(--muted); font-size: 13px; }
.footer-grid a:hover { color: var(--accent); }
.mobile-cta { display: none; }
.cookie-banner { position: fixed; z-index: 1200; right: 22px; bottom: 22px; width: min(100% - 32px, 530px); padding: 18px; color: var(--text); border: 1px solid var(--border); background: rgba(255,255,255,.96); box-shadow: 0 18px 50px rgba(17, 30, 49, .18); backdrop-filter: blur(14px); }
.cookie-banner p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.55; }
.cookie-banner strong { color: var(--ink); }
.cookie-banner > div { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: .85rem; }

/* Administration */
.admin-body { min-height: 100vh; background: var(--surface) !important; }
.admin-sidebar { position: fixed; z-index: 100; inset: 0 auto 0 0; width: 236px; display: flex; flex-direction: column; color: #fff; background: var(--ink); }
.admin-sidebar-brand { height: 78px; display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid rgba(255,255,255,.14); }
.admin-sidebar-brand .brand-logo { width: 145px; filter: brightness(0) invert(1); }
.admin-sidebar-brand button { display: none; color: #fff; background: transparent; border: 0; }
.admin-sidebar nav { display: grid; gap: 4px; padding: 22px 12px; }
.admin-sidebar nav a,
.admin-sidebar-footer a { min-height: 46px; display: flex; align-items: center; gap: 12px; padding: 10px 12px; color: rgba(255,255,255,.75); border-left: 2px solid transparent; }
.admin-sidebar nav a:hover,
.admin-sidebar nav a.is-active,
.admin-sidebar-footer a:hover { color: #fff; background: rgba(255,255,255,.09); border-left-color: #4b7cff; }
.admin-sidebar-footer { margin-top: auto; padding: 14px 12px 22px; border-top: 1px solid rgba(255,255,255,.14); }
.admin-sidebar-footer form { margin: 0; }
.admin-sidebar-footer button { width: 100%; min-height: 46px; display: flex; align-items: center; gap: 12px; padding: 10px 12px; color: rgba(255,255,255,.75); background: transparent; border: 0; border-left: 2px solid transparent; }
.admin-sidebar-footer button:hover { color: #fff; background: rgba(255,255,255,.09); border-left-color: #4b7cff; }
.admin-shell { min-height: 100vh; margin-left: 236px; }
.admin-topbar { position: sticky; z-index: 80; top: 0; height: 78px; display: grid; grid-template-columns: 1fr minmax(250px, 430px) auto; align-items: center; gap: 24px; padding: 0 30px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.97); }
.admin-topbar h1 { margin: 0; font-size: 24px; }
.admin-topbar form { position: relative; }
.admin-topbar form svg { position: absolute; top: 14px; left: 13px; color: var(--muted); }
.admin-topbar form input { padding-left: 43px; }
.admin-user { display: flex; align-items: center; gap: 10px; }
.admin-user > .ui-icon { width: 38px; height: 38px; padding: 8px; color: var(--accent); border: 1px solid var(--border); }
.admin-user span { display: grid; line-height: 1.2; }
.admin-user small { color: var(--muted); }
.admin-main { padding: 30px; }
.admin-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; margin-bottom: 24px; }
.admin-card { display: grid; gap: 8px; min-height: 130px; align-content: end; padding: 22px; color: var(--text); background: #fff; border: 1px solid var(--border); }
.admin-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.admin-card b { color: var(--ink); font-size: 34px; }
.admin-card span { color: var(--muted); }
.admin-main .card { margin-bottom: 22px; box-shadow: none; }
.admin-main table { width: 100%; border-collapse: collapse; background: #fff; }
.admin-main th { color: var(--muted); background: var(--surface); font-size: 11px; text-transform: uppercase; }
.admin-main th,
.admin-main td { padding: 13px 14px; text-align: left; border: 1px solid var(--border); vertical-align: middle; }
.admin-main tr:hover td { background: var(--surface-blue); }
.admin-main .actions { display: flex; flex-wrap: wrap; gap: 8px; }
.admin-dashboard-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.admin-section-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 16px; }
.admin-section-head h2,
.admin-quick-actions h2 { margin: 3px 0 0; font-size: 25px; }
.admin-feed-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 67px; padding: 12px 0; border-top: 1px solid var(--border); }
.admin-feed-row > span { display: grid; min-width: 0; }
.admin-feed-row > span:last-child { flex: 0 0 auto; text-align: right; }
.admin-feed-row small { max-width: 430px; overflow: hidden; color: var(--muted); text-overflow: ellipsis; white-space: nowrap; }
.admin-feed-row:hover b { color: var(--accent); }
.admin-quick-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.admin-mobile-menu { display: none; }
.admin-login-page { min-height: 100vh; display: grid; place-items: center; padding: 28px; background: var(--surface); }
.admin-login-panel { width: min(100%, 520px); }
.admin-login-panel .card { padding: clamp(30px, 6vw, 54px); }
.admin-login-panel .brand-logo { margin-bottom: 45px; }
.admin-login-panel h1 { margin: 10px 0 14px; font-size: clamp(38px, 6vw, 56px); }
.admin-login-panel .btn { width: 100%; margin-top: 22px; }
.admin-product-filters { display: grid; grid-template-columns: minmax(220px, 2fr) repeat(3, minmax(140px, 1fr)) auto auto; gap: .65rem; align-items: end; margin: 0 0 .8rem; }
.admin-product-filters input, .admin-product-filters select { margin: 0; }
.admin-result-count { margin: 0 0 1.15rem; color: var(--muted); font-size: .9rem; }
.admin-form-heading, .admin-section-heading, .admin-form-actions { display: flex; gap: 1rem; justify-content: space-between; align-items: flex-start; }
.admin-form-heading { padding-bottom: 1.1rem; margin-bottom: 1.15rem; border-bottom: 1px solid var(--border); }
.admin-form-heading h1, .admin-section-heading h2 { margin: 0; font-size: 1.35rem; }
.admin-section-heading { margin: 1.6rem 0 .85rem; }
.admin-section-heading p { color: var(--muted); margin: .3rem 0 0; max-width: 44rem; font-size: .9rem; }
.admin-active-check { align-self: end; padding-bottom: .8rem; }
.admin-media-library, .admin-editor-section { border-top: 1px solid var(--border); margin-top: 1.65rem; padding-top: .2rem; }
.admin-media-library [type="search"] { width: min(100%, 18rem); margin: 0; }
.admin-media-selected { min-height: 1.2rem; margin: 0 0 .75rem; color: var(--muted); font-size: .86rem; }
.admin-media-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .7rem; max-height: 38rem; overflow-y: auto; padding: .15rem; }
.admin-media-card { border: 1px solid var(--border); background: #fff; padding: .45rem; cursor: pointer; display: grid; gap: .45rem; min-width: 0; transition: border-color .18s ease, box-shadow .18s ease; }
.admin-media-card:hover, .admin-media-card.is-selected { border-color: var(--accent); box-shadow: 0 5px 18px rgba(28, 74, 145, .1); }
.admin-media-card img { width: 100%; aspect-ratio: 1.28; object-fit: contain; background: #f4f7fb; }
.admin-media-card > span:not(.admin-media-actions) { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: .74rem; }
.admin-media-actions { display: flex; justify-content: space-between; align-items: center; }
.admin-media-actions input { margin: 0; accent-color: var(--accent); }
.admin-editor-tabs { display: flex; flex-wrap: wrap; gap: .4rem; border-bottom: 1px solid var(--border); padding-bottom: .7rem; }
.admin-editor-tabs button { border: 1px solid transparent; background: transparent; color: var(--muted); padding: .55rem .7rem; cursor: pointer; font: inherit; font-size: .86rem; }
.admin-editor-tabs button:hover, .admin-editor-tabs button.is-active { color: var(--accent); background: var(--surface-blue); border-color: #dce7fb; }
.admin-editor-panel { display: none; margin-top: 1rem; }
.admin-editor-panel.is-active { display: block; }
.admin-wysiwyg { border: 1px solid var(--border); background: #fff; }
.admin-wysiwyg-toolbar { display: flex; flex-wrap: wrap; gap: .35rem; padding: .5rem; border-bottom: 1px solid var(--border); background: #f8fafc; }
.admin-wysiwyg-toolbar button { border: 1px solid #dce3ed; background: #fff; min-height: 2rem; padding: .25rem .55rem; color: var(--ink); cursor: pointer; font: inherit; font-size: .78rem; }
.admin-wysiwyg-toolbar button:hover { border-color: var(--accent); color: var(--accent); }
.admin-wysiwyg-surface { min-height: 18rem; padding: 1rem; outline: none; line-height: 1.65; }
.admin-wysiwyg-surface:focus { box-shadow: inset 0 0 0 2px rgba(24, 92, 211, .16); }
.admin-wysiwyg-surface img { max-width: 100%; height: auto; }
.admin-wysiwyg-surface table { width: 100%; margin: 1rem 0; border-collapse: collapse; table-layout: fixed; }
.admin-wysiwyg-surface th, .admin-wysiwyg-surface td { min-width: 76px; padding: .6rem .7rem; border: 1px solid #cfd9e8; vertical-align: top; }
.admin-wysiwyg-surface th { background: #f2f6fc; font-weight: 700; }
.admin-wysiwyg-surface td.is-table-selected, .admin-wysiwyg-surface th.is-table-selected { outline: 2px solid var(--accent); outline-offset: -2px; background: #eaf2ff; }
.admin-table-guides { display: flex; flex-wrap: wrap; gap: .45rem 1.2rem; margin: 1rem 0 .35rem; color: var(--muted); font-size: .75rem; font-weight: 700; }
.admin-table-toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; padding: .5rem; color: var(--ink); border: 1px solid #cfd9e8; background: #f6f9fd; font-size: .78rem; }
.admin-table-toolbar strong { margin-right: .15rem; }
.admin-table-toolbar [data-table-position] { color: var(--accent); font-weight: 700; margin-right: .25rem; }
.admin-table-toolbar button { min-height: 2rem; padding: .25rem .5rem; color: var(--ink); border: 1px solid #d4ddeb; background: #fff; cursor: pointer; font: inherit; font-size: .75rem; }
.admin-table-toolbar button:hover { color: var(--accent); border-color: var(--accent); }
.admin-form-actions { align-items: center; margin-top: 1.5rem; padding-top: 1.1rem; border-top: 1px solid var(--border); justify-content: flex-start; }

@media (max-width: 1180px) {
  .navlinks { display: none; }
  .nav { justify-content: space-between; }
  .nav-search { margin-left: auto; }
  .hamb { display: inline-grid; }
  .retail-filter-grid { grid-template-columns: repeat(2, 1fr); }
  .retail-filter-grid > a { border-bottom: 1px solid var(--border); }
  .retail-filter-grid .retail-filter-cta { grid-column: 1 / -1; }
  .products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-grid { grid-template-columns: repeat(3, 1fr); }
  .admin-dashboard-columns { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  h1 { font-size: clamp(38px, 10vw, 58px); }
  h2 { font-size: clamp(27px, 7vw, 42px); }
  .nav-cta { display: none; }
  .retail-hero-grid { min-height: 0; grid-template-columns: 1fr; padding-right: var(--gutter); }
  .retail-hero-copy { padding: 64px 0 42px; }
  .retail-hero-image { min-height: 480px; }
  .retail-zone-layout,
  .retail-case-grid,
  .retail-tool,
  .service-feature,
  .grid-2 { grid-template-columns: 1fr; }
  .retail-zone-visual,
  .retail-case-photo { border-right: 0; border-bottom: 1px solid var(--border); }
  .retail-tool-visual { border-left: 0; border-top: 1px solid var(--border); }
  .service-feature-image,
  .service-feature.is-reversed .service-feature-image { order: 0; min-height: 380px; border-right: 0; border-left: 0; border-bottom: 1px solid var(--border); }
  .service-feature-copy,
  .service-feature.is-reversed .service-feature-copy { order: 1; border-right: 0; }
  .retail-products,
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .product-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-journey-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .light-lab.is-hero { min-height: 760px; }
  .light-lab.is-hero .light-lab-grid,
  .light-lab.is-hero .light-lab-stage { min-height: 760px; }
  .light-lab.is-hero .light-lab-copy { left: var(--gutter); width: min(540px, calc(100% - (var(--gutter) * 2))); min-height: 525px; padding-top: 56px; }
  .light-lab.is-hero .light-lab-reading { right: var(--gutter); }
  .light-lab.is-hero .light-lab-controls { right: var(--gutter); bottom: 22px; left: var(--gutter); grid-template-columns: 2fr 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  .mobile-filter-toggle { width: 100%; min-height: 54px; display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; color: var(--ink); background: #fff; border: 1px solid var(--border); border-radius: 2px !important; box-shadow: none !important; backdrop-filter: none !important; }
  .mobile-filter-toggle.is-open { color: var(--ink) !important; background: var(--surface-blue) !important; border-color: var(--accent) !important; box-shadow: none !important; }
  .mobile-filter-toggle b { color: var(--accent) !important; }
  .filters { position: static; display: none; }
  .filters.is-open { display: block; }
  .light-lab-grid { grid-template-columns: 1fr; }
  .light-lab-copy { border-right: 0; border-bottom: 1px solid var(--border); }
  .light-scene-tabs { grid-template-columns: repeat(3, 1fr); }
  .light-lab-controls { grid-template-columns: 1fr 1fr; }
  .light-control:nth-child(2) { border-right: 0; }
  .light-control:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .config-progress { margin-bottom: 42px; }
  .config-builder,
  .config-results { grid-template-columns: 1fr; }
  .config-controls,
  .config-result-plan { border-right: 0; border-bottom: 1px solid var(--border); }
  .config-canvas-wrap,
  .config-result-plan .config-canvas-wrap { height: 470px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .space-hero { display: flex; flex-direction: column-reverse; }
  .space-hero > img { position: static; width: 100%; height: 420px; }
  .space-hero-copy { width: 100%; min-height: auto; padding: 64px 0; }
  .solution-grid,
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .space-process { grid-template-columns: repeat(3, 1fr); }
  .inspiration-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-article-layout { grid-template-columns: 1fr; }
  .blog-aside { position: static; }
  .admin-sidebar { transform: translateX(-105%); transition: transform .22s ease; }
  .admin-product-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-media-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .admin-body.admin-menu-open .admin-sidebar { transform: translateX(0); }
  .admin-sidebar-brand button,
  .admin-mobile-menu { display: grid; place-items: center; }
  .admin-mobile-menu { position: fixed; z-index: 90; right: 16px; bottom: 16px; width: 52px; height: 52px; color: #fff; background: var(--accent); border: 0; box-shadow: var(--shadow); }
  .admin-shell { margin-left: 0; }
  .admin-topbar { grid-template-columns: 1fr auto; padding: 0 78px 0 20px; }
  .admin-topbar form { display: none; }
  .admin-user small { display: none; }
}

@media (max-width: 640px) {
  .topbar { height: 68px; }
  .brand-logo { width: 132px; }
  .nav-search { display: none; }
  .section { padding-block: 62px; }
  .page-hero { padding-block: 56px; background: var(--surface); }
  .retail-hero-image { min-height: 350px; }
  .retail-hero-note { left: 0; right: auto; padding: 14px 16px; }
  .retail-filter-grid { grid-template-columns: 1fr; }
  .retail-filter-grid .retail-filter-cta { grid-column: auto; }
  .retail-filter-grid > a { min-height: 74px; border-right: 1px solid var(--border); }
  .retail-section-head,
  .section-head,
  .blog-section-head { align-items: flex-start; flex-direction: column; }
  .retail-products,
  .blog-grid,
  .products,
  .product-category-grid { grid-template-columns: 1fr; }
  .product-category-card { min-height: 168px; grid-template-columns: 130px 1fr; }
  .product-category-card img { height: 110px; }
  .retail-product-card figure { height: 250px; }
  .service-journey-grid { grid-template-columns: 1fr; }
  .service-journey-grid article { min-height: 0; padding: 20px; }
  .retail-zone-visual,
  .retail-case-photo,
  .retail-tool-visual { min-height: 390px; }
  .service-feature-image,
  .service-feature.is-reversed .service-feature-image { min-height: 270px; }
  .service-feature-copy { padding: 30px 20px; }
  .service-feature-copy > p { font-size: 15px; }
  .retail-tool-steps { grid-template-columns: 1fr 1fr; }
  .retail-footer-cta > div { align-items: flex-start; flex-direction: column; justify-content: center; }
  .toolbar { grid-template-columns: 1fr 1fr; }
  .toolbar input { grid-column: 1 / -1; }
  .product { min-height: 0; }
  .product-img { min-height: 250px; height: 250px; padding: 18px; }
  .product-body { position: static; padding: 15px; transform: none; background: #fff; backdrop-filter: none; }
  .product-body h3 { font-size: 17px; }
  .product-hero-img { min-height: 360px; height: 100vw; }
  .product-thumbs { grid-template-columns: repeat(4, 1fr); }
  .product-summary { position: static; }
  .product-description-layout { grid-template-columns: 1fr; gap: 28px; }
  .product-fact-list { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .light-scene-tabs { grid-template-columns: 1fr; }
  .light-lab-controls { grid-template-columns: 1fr; }
  .light-control { border-right: 0; border-bottom: 1px solid var(--border); }
  .light-lab-notice { align-items: flex-start; flex-direction: column; }
  .light-lab.is-hero { min-height: 800px; }
  .light-lab.is-hero .light-lab-grid,
  .light-lab.is-hero .light-lab-stage { min-height: 800px; }
  .light-lab.is-hero .light-lab-copy { top: 0; left: var(--gutter); width: calc(100% - (var(--gutter) * 2)); min-height: 520px; padding-top: 42px; padding-bottom: 20px; justify-content: flex-start; }
  .light-lab.is-hero .light-lab-copy h1 { margin-bottom: 14px; font-size: clamp(38px, 10.5vw, 50px); }
  .light-lab.is-hero .light-lab-copy .muted { font-size: 15px; line-height: 1.5; }
  .light-lab.is-hero .light-scene-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; margin-top: 20px; }
  .light-lab.is-hero .light-scene-tabs button { min-height: 43px; padding: 8px 5px; text-align: center; font-size: 12px; }
  .light-lab-hero-cta { margin-top: 16px; padding: 12px 14px; font-size: 14px; }
  .light-lab.is-hero .light-lab-reading { top: auto; right: var(--gutter); bottom: 244px; }
  .light-lab.is-hero .light-lab-controls { right: var(--gutter); bottom: 16px; left: var(--gutter); grid-template-columns: 1fr 1fr; }
  .light-lab.is-hero .light-control { display: block; padding: 13px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .light-lab.is-hero .light-control:nth-child(2) { border-right: 0; border-bottom: 0; }
  .light-lab.is-hero .temperature-labels { font-size: 9px; }
  .config-shell { padding-top: 24px; }
  .config-progress { justify-content: flex-start; gap: 6px; margin-bottom: 36px; overflow-x: auto; }
  .config-progress span { flex: 0 0 auto; font-size: 11px; }
  .config-progress i { width: 18px; flex: 0 0 auto; }
  .config-title br { display: none; }
  .config-canvas-panel,
  .config-controls,
  .config-result-plan,
  .config-summary { padding: 16px; }
  .config-canvas-wrap,
  .config-result-plan .config-canvas-wrap { height: 390px; }
  .config-lead-form-grid { grid-template-columns: 1fr; }
  .config-lead-form-grid textarea { grid-column: auto; }
  .footer { padding-bottom: 92px; }
  .cookie-banner { right: 12px; bottom: 12px; width: calc(100% - 24px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .split { align-items: flex-start; flex-direction: column; }
  .space-hero > img { height: 310px; }
  .solution-grid,
  .benefit-grid,
  .space-process,
  .inspiration-grid { grid-template-columns: 1fr; }
  .parameter-list .result-line { grid-template-columns: 1fr; }
  .inspiration-item { min-height: 300px; }
  .blog-article-hero { min-height: 580px; }
  .blog-article-content p,
  .blog-article-content li { font-size: 16px; }
  .mobile-cta { position: fixed; z-index: 950; right: 12px; bottom: 12px; display: block; }
  .admin-main { padding: 18px; }
  .admin-grid { grid-template-columns: 1fr 1fr; }
  .admin-topbar { height: 68px; }
  .admin-topbar h1 { font-size: 20px; }
  .admin-main { overflow-x: auto; }
  .admin-grid { grid-template-columns: 1fr; }
  .admin-quick-actions { align-items: flex-start; flex-direction: column; }
  .admin-product-filters, .admin-media-grid { grid-template-columns: 1fr; }
  .admin-form-heading, .admin-section-heading { flex-direction: column; }
  .admin-media-library [type="search"] { width: 100%; }
}

@media (hover: none) {
  .product-body { transform: translateY(0); background: rgba(255,255,255,.97); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
