@font-face { font-family:'Space Grotesk'; font-style:normal; font-weight:400 700; font-display:swap; src:url('../fonts/space-grotesk-latin-ext.woff2') format('woff2'); unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; }
@font-face { font-family:'Space Grotesk'; font-style:normal; font-weight:400 700; font-display:swap; src:url('../fonts/space-grotesk-latin.woff2') format('woff2'); unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }

:root {
  --page: #0b0d0d;
  --surface: #131616;
  --surface-2: #1b1f1e;
  --ink: #f7f8f3;
  --muted: #a7aaa5;
  --line: rgba(255,255,255,.12);
  --accent: #f0d62c;
  --accent-ink: #10120f;
  --display: 'Space Grotesk', sans-serif;
  --body: 'Space Grotesk', sans-serif;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0,0,0,.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body::selection { color: var(--accent-ink); background: var(--accent); }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }

.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.narrow { width: min(840px, calc(100% - 48px)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { width: 34px; height: 2px; background: currentColor; content: ''; }
.section { position: relative; padding: 110px 0; }
.section--tight { padding: 72px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}
.section-head h2,
.statement h2,
.contact-panel h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1.02;
}
.section-head p { max-width: 470px; margin: 0; color: var(--muted); }

.topline {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(7,9,9,.78);
  backdrop-filter: blur(18px);
}
.topline__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
}
.topline__items { display: flex; gap: 22px; }
.topline strong { color: var(--ink); font-weight: 600; }

.header {
  position: absolute;
  z-index: 25;
  top: 39px;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(7,9,9,.8), rgba(7,9,9,.15));
}
.header__inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); }
.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.06em;
}
.brand__name { display: grid; line-height: 1; }
.brand__name strong { font-size: 21px; letter-spacing: -.04em; }
.brand__name span { margin-top: 6px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .17em; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { position: relative; font-size: 13px; font-weight: 700; }
.nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav > a:hover::after { transform: scaleX(1); }
.menu-toggle { display: none; padding: 8px; border: 0; background: transparent; color: inherit; }
.menu-toggle span { width: 26px; height: 2px; display: block; margin: 5px 0; background: currentColor; }

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.button svg { width: 17px; height: 17px; }
.button--ghost { border-color: var(--line); background: rgba(255,255,255,.04); color: var(--ink); }
.button--small { min-height: 42px; padding: 0 18px; }

.hero {
  min-height: 860px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
.hero::before,
.hero::after { position: absolute; inset: 0; pointer-events: none; content: ''; }
.hero::before { z-index: 1; background: linear-gradient(90deg, rgba(5,7,7,.94) 0%, rgba(5,7,7,.75) 38%, rgba(5,7,7,.1) 74%); }
.hero::after { z-index: 1; background: linear-gradient(180deg, rgba(5,7,7,.14) 45%, var(--page) 100%); }
.hero__inner { position: relative; z-index: 3; padding-top: 132px; }
.hero__copy { max-width: 750px; }
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 7.5vw, 102px);
  font-weight: 700;
  letter-spacing: -.075em;
  line-height: .94;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero__lead { max-width: 620px; margin: 28px 0 34px; color: #d3d5d0; font-size: clamp(17px, 2vw, 21px); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__trust {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid var(--line);
  background: rgba(8,10,10,.58);
  backdrop-filter: blur(16px);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 116px; padding: 24px 26px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-family: var(--display); font-size: 28px; line-height: 1.1; }
.trust-item span { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; }

.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.service-card {
  grid-column: span 4;
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  position: relative;
  transition: transform .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--accent) 70%, transparent); }
.service-card--wide { grid-column: span 8; }
.service-card__number { color: var(--muted); font: 700 12px var(--display); letter-spacing: .14em; }
.service-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--accent);
  color: var(--accent-ink);
}
.service-card__icon svg { width: 25px; height: 25px; stroke-width: 1.7; }
.service-card h3 { margin: 0 0 10px; font: 700 clamp(22px, 2.4vw, 32px)/1.08 var(--display); letter-spacing: -.04em; }
.service-card p { max-width: 440px; margin: 0; color: var(--muted); }
.service-card__link { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-size: 13px; font-weight: 800; }

.statement {
  padding: 92px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.statement::after {
  position: absolute;
  top: -160px;
  right: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(255,255,255,.018), 0 0 0 92px rgba(255,255,255,.012);
  content: '';
}
.statement p { max-width: 700px; margin: 28px 0 0; color: var(--muted); font-size: 18px; }
.metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 64px; background: var(--line); }
.metric { padding: 28px 28px 10px 0; background: var(--surface); }
.metric strong { display: block; color: var(--accent); font: 700 44px/1 var(--display); letter-spacing: -.05em; }
.metric span { display: block; margin-top: 10px; color: var(--muted); font-size: 13px; }

.projects-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, 310px); gap: 18px; }
.project-card {
  padding: 30px;
  display: flex;
  align-items: end;
  border-radius: var(--radius);
  background: linear-gradient(180deg, transparent, rgba(4,6,6,.9)), var(--project-image), linear-gradient(135deg, #293332, #101313);
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.project-card:first-child { grid-row: 1 / span 2; }
.project-card__label { position: relative; z-index: 1; }
.project-card__label span { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.project-card__label h3 { max-width: 430px; margin: 8px 0 0; font: 700 clamp(23px, 2.7vw, 36px)/1.05 var(--display); letter-spacing: -.045em; }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.process-card { padding: 30px 22px; border-top: 1px solid var(--line); }
.process-card strong { color: var(--accent); font: 700 13px var(--display); }
.process-card h3 { margin: 32px 0 10px; font: 700 22px var(--display); }
.process-card p { margin: 0; color: var(--muted); font-size: 14px; }

.quote {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.quote__aside { min-height: 470px; background: var(--quote-image), linear-gradient(135deg,#252a28,#101211); background-position: center; background-size: cover; }
.quote__copy { padding: 64px; display: flex; flex-direction: column; justify-content: center; }
.quote blockquote { margin: 0; font: 600 clamp(28px, 3.5vw, 48px)/1.14 var(--display); letter-spacing: -.045em; }
.quote footer { margin-top: 34px; color: var(--muted); font-size: 13px; }
.quote footer strong { display: block; color: var(--ink); font-size: 15px; }

.contact-panel {
  padding: 78px;
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 70px;
  border-radius: calc(var(--radius) + 8px);
  background: var(--accent);
  color: var(--accent-ink);
}
.contact-panel .eyebrow { color: currentColor; }
.contact-panel__actions { display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.contact-link { min-height: 58px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid color-mix(in srgb, var(--accent-ink) 25%, transparent); font-weight: 800; }
.contact-link span { font-size: 13px; font-weight: 600; opacity: .65; }

.footer { padding: 70px 0 34px; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 46px; }
.footer__intro p { max-width: 360px; margin-top: 22px; color: var(--muted); }
.footer h4 { margin: 0 0 18px; font: 700 13px var(--display); text-transform: uppercase; letter-spacing: .12em; }
.footer ul { padding: 0; margin: 0; list-style: none; }
.footer li { margin: 10px 0; color: var(--muted); font-size: 14px; }
.footer__bottom { margin-top: 58px; padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }

.concept-switcher {
  position: fixed;
  z-index: 60;
  right: 20px;
  bottom: 20px;
  padding: 8px;
  display: flex;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--page) 86%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.concept-switcher a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: var(--muted); font: 800 11px var(--display); }
.concept-switcher a:hover,
.concept-switcher a[aria-current='page'] { background: var(--accent); color: var(--accent-ink); }

/* Concept A — Architectural Noir */
.concept-a .hero { background-image: url('hero-architectural-noir.webp'); }
.concept-a .section--alt { background: linear-gradient(180deg, var(--page), #111514); }
.concept-a .service-card--wide::after {
  position: absolute; right: -90px; top: -90px; width: 250px; height: 250px; border: 48px solid rgba(240,214,44,.06); border-radius: 50%; content: '';
}
.concept-a .project-card:nth-child(1) { --project-image: url('hero-architectural-noir.webp'); }
.concept-a .project-card:nth-child(2) { --project-image: url('hero-precision-blue.webp'); }
.concept-a .project-card:nth-child(3) { --project-image: url('hero-warm-living.webp'); }
.concept-a .quote { --quote-image: url('hero-precision-blue.webp'); }

/* Concept B — Precision Blue */
.concept-b {
  --page: #f3f7fa;
  --surface: #ffffff;
  --surface-2: #e8f0f5;
  --ink: #0a2540;
  --muted: #607387;
  --line: rgba(10,37,64,.13);
  --accent: #26c6e6;
  --accent-ink: #071b2d;
  --display: 'Space Grotesk', sans-serif;
  --shadow: 0 24px 70px rgba(15,42,62,.12);
}
.concept-b .topline { background: #0a2540; color: #9fb5c8; }
.concept-b .topline strong { color: #fff; }
.concept-b .header { top: 39px; border-color: rgba(10,37,64,.08); background: rgba(255,255,255,.88); backdrop-filter: blur(18px); }
.concept-b .hero { min-height: 840px; background-image: url('hero-precision-blue.webp'); background-position: center; }
.concept-b .hero::before { background: linear-gradient(90deg, rgba(243,247,250,.98) 0%, rgba(243,247,250,.92) 43%, rgba(243,247,250,.18) 70%); }
.concept-b .hero::after { background: linear-gradient(180deg, rgba(243,247,250,0) 65%, var(--page) 100%); }
.concept-b .hero__lead { color: #4e667b; }
.concept-b .hero__trust { border-color: var(--line); background: rgba(255,255,255,.78); }
.concept-b .brand__name span { color: #607387; }
.concept-b .button--ghost { border-color: var(--line); background: rgba(255,255,255,.72); color: var(--ink); }
.concept-b .service-card { box-shadow: 0 18px 42px rgba(15,42,62,.06); }
.concept-b .service-card:nth-child(2) { grid-column: span 8; }
.concept-b .service-card:nth-child(1) { grid-column: span 4; }
.concept-b .statement { background: #0a2540; color: #fff; }
.concept-b .statement p,
.concept-b .statement .metric span { color: #a6bbcb; }
.concept-b .statement .metric { background: #0a2540; }
.concept-b .project-card:nth-child(1) { --project-image: url('hero-precision-blue.webp'); }
.concept-b .project-card:nth-child(2) { --project-image: url('hero-architectural-noir.webp'); }
.concept-b .project-card:nth-child(3) { --project-image: url('hero-warm-living.webp'); }
.concept-b .project-card__label { color: white; }
.concept-b .quote { --quote-image: url('hero-architectural-noir.webp'); }
.concept-b .contact-panel { background: #0a2540; color: white; }
.concept-b .contact-panel .button { background: var(--accent); color: var(--accent-ink); }
.concept-b .footer { background: #e8f0f5; }

/* Concept C — Warm Living */
.concept-c {
  --page: #f2ede5;
  --surface: #e8e0d4;
  --surface-2: #ded3c4;
  --ink: #1f332b;
  --muted: #68746e;
  --line: rgba(31,51,43,.16);
  --accent: #b98552;
  --accent-ink: #fffaf2;
  --display: 'Playfair Display', serif;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(42,46,38,.12);
}
.concept-c .topline { background: #1f332b; color: #aebbb4; }
.concept-c .topline strong { color: #fff; }
.concept-c .header { top: 39px; background: rgba(31,51,43,.82); color: #fff; backdrop-filter: blur(16px); }
.concept-c .brand__name span { color: #bac5bf; }
.concept-c .hero { min-height: 900px; background-image: url('hero-warm-living.webp'); background-position: center; }
.concept-c .hero::before { background: linear-gradient(90deg, rgba(22,37,31,.91) 0%, rgba(22,37,31,.68) 42%, rgba(22,37,31,.05) 70%); }
.concept-c .hero::after { background: linear-gradient(180deg, rgba(22,37,31,.05) 58%, var(--page) 100%); }
.concept-c .hero__copy { color: white; }
.concept-c .hero h1 { max-width: 800px; font-weight: 600; letter-spacing: -.045em; line-height: .98; }
.concept-c .hero h1 em { color: #e2b587; font-style: italic; }
.concept-c .hero__lead { color: #e8e9e2; }
.concept-c .button { border-radius: 2px; }
.concept-c .button--ghost { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.08); color: white; }
.concept-c .hero__trust { background: rgba(31,51,43,.72); color: white; }
.concept-c .hero__trust .trust-item span { color: #c6d0ca; }
.concept-c .eyebrow { letter-spacing: .2em; }
.concept-c .service-card { min-height: 370px; border-radius: 4px; }
.concept-c .service-card:nth-child(1) { grid-column: span 8; }
.concept-c .service-card:nth-child(2) { grid-column: span 4; }
.concept-c .service-card__icon { border-radius: 50%; }
.concept-c .statement { background: #1f332b; color: #fff; }
.concept-c .statement p,
.concept-c .statement .metric span { color: #b8c2bd; }
.concept-c .statement .metric { background: #1f332b; }
.concept-c .project-card:nth-child(1) { --project-image: url('hero-warm-living.webp'); }
.concept-c .project-card:nth-child(2) { --project-image: url('hero-architectural-noir.webp'); }
.concept-c .project-card:nth-child(3) { --project-image: url('hero-precision-blue.webp'); }
.concept-c .project-card__label { color: white; }
.concept-c .quote { --quote-image: url('hero-warm-living.webp'); background: #1f332b; color: #fff; }
.concept-c .quote footer { color: #b8c2bd; }
.concept-c .contact-panel { background: #b98552; color: white; }
.concept-c .footer { background: #e8e0d4; }

/* Concept D — Motion Access */
.concept-d {
  --page: #0a0f0d;
  --surface: #111815;
  --surface-2: #18221e;
  --ink: #f4f5ef;
  --muted: #93a09b;
  --line: rgba(255,255,255,.16);
  --accent: #d9ff43;
  --accent-ink: #07100b;
  --display: 'Space Grotesk', sans-serif;
  background: var(--page);
}
.motion-wrap { width: min(1320px, calc(100% - 80px)); margin: 0 auto; }
.motion-header {
  position: absolute;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  height: 94px;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.16);
  color: #fff;
}
.motion-brand { display: inline-flex; align-items: center; gap: 13px; font-family: 'Space Grotesk',sans-serif; }
.motion-brand > span:last-child { display: grid; line-height: 1; }
.motion-brand strong { font-size: 22px; letter-spacing: -.055em; }
.motion-brand small { margin-top: 7px; color: #aeb7b3; font-size: 8px; font-weight: 700; letter-spacing: .2em; }
.motion-brand__glyph { width: 40px; height: 40px; display: flex !important; gap: 4px; padding: 8px; border: 1px solid var(--accent); border-radius: 50%; }
.motion-brand__glyph i { width: 50%; height: 100%; display: block; border: 1px solid var(--accent); }
.motion-brand__glyph i:first-child { border-radius: 8px 1px 1px 8px; }
.motion-brand__glyph i:last-child { border-radius: 1px 8px 8px 1px; }
.motion-nav { display: flex; align-items: center; gap: 30px; }
.motion-nav > a { font: 600 12px 'Space Grotesk',sans-serif; letter-spacing: .03em; }
.motion-nav .motion-contact { min-height: 44px; padding: 0 18px; display: inline-flex; align-items: center; gap: 28px; border: 1px solid rgba(255,255,255,.24); }
.motion-nav .motion-contact span { color: var(--accent); }
.motion-menu { color: white; }

.motion-hero {
  height: max(820px,100svh);
  min-height: 820px;
  position: relative;
  overflow: hidden;
  background: #080b0a;
  color: white;
}
.motion-hero__image { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(3,6,5,.8),rgba(3,6,5,.24)),url('hero-architectural-noir.webp') center/cover; transform: scale(1.03); }
.motion-hero__image::after { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(1,3,2,.12),rgba(1,3,2,.35)); content: ''; }
.door-stage { position: absolute; z-index: 12; inset: 0; pointer-events: none; perspective: 1000px; }
.door-frame { position: absolute; z-index: 6; background: linear-gradient(90deg,#161c1a,#4b5652,#141817); box-shadow: 0 2px 16px rgba(0,0,0,.6); }
.door-frame--top { top: 94px; left: 0; right: 0; height: 17px; }
.door-frame--left { top: 94px; bottom: 0; left: 0; width: 14px; }
.door-frame--right { top: 94px; right: 0; bottom: 0; width: 14px; }
.door-sensor { position: absolute; z-index: 9; top: 96px; left: 50%; width: 78px; height: 26px; display: grid; place-items: center; border: 1px solid #46504c; border-radius: 0 0 10px 10px; background: #121615; transform: translateX(-50%); }
.door-sensor span { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(217,255,67,.55); }
.motion-hero.is-replaying .door-sensor span { animation: motion-sensor 1.25s ease .25s 2; }
.door-panel { position: absolute; z-index: 4; top: 107px; bottom: 0; width: 50.1%; border: 1px solid rgba(205,225,216,.22); background: linear-gradient(115deg,rgba(32,44,41,.8),rgba(11,18,16,.69)); box-shadow: inset 0 0 70px rgba(180,220,205,.055),0 0 36px rgba(0,0,0,.35); backdrop-filter: blur(8px) saturate(.7); }
.door-panel::after { position: absolute; inset: 0; background: linear-gradient(115deg,transparent 12%,rgba(255,255,255,.09) 12.5%,transparent 22%,transparent 62%,rgba(255,255,255,.055) 63%,transparent 72%); content: ''; }
.door-panel--left { left: 0; transform-origin: left; }
.door-panel--right { right: 0; transform-origin: right; }
.motion-hero.is-replaying .door-panel--left { animation: motion-door-left 1.75s cubic-bezier(.76,0,.2,1) .72s forwards; }
.motion-hero.is-replaying .door-panel--right { animation: motion-door-right 1.75s cubic-bezier(.76,0,.2,1) .72s forwards; }
.door-panel__line { position: absolute; top: 0; bottom: 0; width: 9px; background: linear-gradient(90deg,#0d1211,#56615d,#141a18); }
.door-panel--left .door-panel__line { right: 0; }
.door-panel--right .door-panel__line { left: 0; }
.door-panel__dot { position: absolute; top: 50%; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 14px rgba(217,255,67,.7); }
.door-panel--left .door-panel__dot { right: 18px; }
.door-panel--right .door-panel__dot { left: 18px; }
.door-centerline { position: absolute; z-index: 7; top: 106px; bottom: 0; left: 50%; width: 1px; background: rgba(217,255,67,.65); box-shadow: 0 0 18px rgba(217,255,67,.4); }
.motion-hero.is-replaying .door-centerline { animation: motion-centerline .3s ease 1.95s forwards; }
.motion-copy { position: absolute; z-index: 13; top: 50%; left: max(40px,calc((100vw - 1320px)/2)); max-width: 860px; opacity: 0; transform: translateY(40px); }
.motion-hero.is-replaying .motion-copy { animation: motion-copy-in .9s cubic-bezier(.2,.7,.2,1) 1.8s forwards; }
.motion-kicker { margin: 0 0 26px; display: flex; align-items: center; gap: 16px; color: #d2d8d4; font: 600 11px 'Space Grotesk',sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.motion-kicker span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: var(--accent); letter-spacing: 0; }
.motion-copy h1 { margin: 0; font: 600 clamp(68px,8.6vw,132px)/.82 'Space Grotesk',sans-serif; letter-spacing: -.085em; }
.motion-copy h1 em { color: var(--accent); font-style: normal; }
.motion-lead { max-width: 630px; margin: 30px 0 0; color: #c8cfcb; font-size: clamp(17px,1.6vw,22px); }
.motion-actions { margin-top: 34px; display: flex; align-items: center; gap: 16px; }
.motion-primary { min-height: 56px; padding: 0 23px; display: inline-flex; align-items: center; gap: 44px; background: var(--accent); color: var(--accent-ink); font-weight: 800; }
.motion-replay { padding: 13px 4px; display: inline-flex; align-items: center; gap: 10px; border: 0; border-bottom: 1px solid rgba(255,255,255,.35); background: transparent; color: white; cursor: pointer; }
.motion-replay__icon { color: var(--accent); font-size: 21px; }
.motion-status { position: absolute; z-index: 14; right: 34px; bottom: 38px; width: 265px; display: grid; border: 1px solid rgba(255,255,255,.2); background: rgba(6,10,9,.68); backdrop-filter: blur(15px); opacity: 0; }
.motion-hero.is-replaying .motion-status { animation: motion-fade .7s ease 2.5s forwards; }
.motion-status > * { padding: 13px 16px; display: grid; border-bottom: 1px solid rgba(255,255,255,.12); }
.motion-status > *:last-child { border-bottom: 0; }
.motion-status span { color: #8f9d97; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.motion-status strong { margin-top: 3px; color: white; font-size: 12px; }
.motion-status strong i { width: 7px; height: 7px; display: inline-block; margin-right: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px rgba(217,255,67,.7); }
.motion-scroll { position: absolute; z-index: 14; left: 36px; bottom: 37px; display: flex; align-items: center; gap: 12px; color: #bdc5c1; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: 0; }
.motion-hero.is-replaying .motion-scroll { animation: motion-fade .7s ease 2.5s forwards; }
.motion-scroll span { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; position: relative; }
.motion-scroll span::after { position: absolute; top: 11px; left: 18px; width: 1px; height: 14px; background: var(--accent); content: ''; animation: motion-scroll-dot 1.6s ease infinite; }

.motion-ticker { height: 76px; display: flex; align-items: center; border-top: 1px solid rgba(217,255,67,.28); border-bottom: 1px solid rgba(217,255,67,.28); background: var(--accent); color: var(--accent-ink); overflow: hidden; }
.motion-ticker__track { width: max-content; display: flex; align-items: center; gap: 30px; animation: motion-ticker 28s linear infinite; }
.motion-ticker span { font: 700 14px 'Space Grotesk',sans-serif; letter-spacing: .08em; white-space: nowrap; }
.motion-ticker i { width: 8px; height: 8px; border: 2px solid currentColor; border-radius: 50%; }
.motion-intro { padding: 150px 0 110px; }
.motion-intro__grid { display: grid; grid-template-columns: 260px 1fr; gap: 60px; }
.motion-section-index { padding-top: 9px; display: flex; align-items: flex-start; gap: 16px; color: #77847e; font: 600 11px 'Space Grotesk',sans-serif; text-transform: uppercase; letter-spacing: .12em; }
.motion-section-index span { color: var(--accent); }
.motion-section-index p { margin: 0; }
.motion-overline { margin: 0 0 20px; color: var(--accent); font: 700 11px 'Space Grotesk',sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.motion-intro__copy h2,.motion-manifesto h2,.motion-service__copy h2,.motion-cta h2 { margin: 0; font: 500 clamp(58px,7vw,105px)/.9 'Space Grotesk',sans-serif; letter-spacing: -.075em; }
.motion-intro__copy h2 em,.motion-manifesto h2 em,.motion-service__copy h2 em { color: var(--accent); font-style: normal; }
.motion-intro__copy > p:last-child { max-width: 710px; margin: 36px 0 0 18%; color: #a5afaa; font-size: 19px; }

.motion-systems { border-top: 1px solid var(--line); }
.motion-system { min-height: 760px; display: grid; grid-template-columns: 1.05fr .95fr; border-bottom: 1px solid var(--line); background: #080c0b; }
.motion-system:nth-child(even) .motion-system__visual { order: 2; }
.motion-system__visual { min-height: 620px; display: grid; place-items: center; border-right: 1px solid var(--line); background: radial-gradient(circle at 50% 45%,rgba(217,255,67,.1),transparent 34%),linear-gradient(135deg,#111816,#090d0c); overflow: hidden; position: relative; }
.motion-system:nth-child(even) .motion-system__visual { border-right: 0; border-left: 1px solid var(--line); }
.motion-system__visual::after { position: absolute; inset: 24px; border: 1px solid rgba(255,255,255,.055); content: ''; }
.motion-system__copy { max-width: 620px; padding: 90px 8vw; align-self: center; }
.motion-system__number { display: block; margin-bottom: 70px; color: #66746e; font: 600 10px 'Space Grotesk',sans-serif; letter-spacing: .14em; }
.motion-system__copy h3 { margin: 0; font: 500 clamp(53px,5vw,80px)/.88 'Space Grotesk',sans-serif; letter-spacing: -.07em; }
.motion-system__copy > p:not(.motion-overline) { margin: 30px 0; color: #a5afaa; font-size: 17px; }
.motion-system__copy ul { padding: 0; margin: 0 0 35px; list-style: none; }
.motion-system__copy li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: #d6dbd8; font-size: 13px; }
.motion-system__copy li::before { margin-right: 12px; color: var(--accent); content: '＋'; }
.motion-system__copy > a { display: inline-flex; align-items: center; gap: 32px; color: var(--accent); font-size: 13px; font-weight: 700; }
.motion-system__copy > a span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(217,255,67,.38); border-radius: 50%; }

.mini-door { width: min(74%,610px); aspect-ratio: 1.35; border: 12px solid #29322f; border-top-width: 24px; position: relative; overflow: hidden; box-shadow: 0 35px 70px rgba(0,0,0,.35); }
.mini-door::after { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(255,255,255,.06),transparent 43%); content: ''; }
.mini-door__sensor { position: absolute; z-index: 4; top: -17px; left: 50%; width: 58px; height: 15px; border-radius: 0 0 8px 8px; background: #0e1412; transform: translateX(-50%); }
.mini-door__sensor::after { position: absolute; top: 4px; left: 50%; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); content: ''; box-shadow: 0 0 10px var(--accent); }
.mini-door__panel { position: absolute; top: 0; bottom: 0; width: 50%; border: 2px solid #53605a; background: rgba(76,96,88,.28); backdrop-filter: blur(4px); animation: mini-door-slide 5s cubic-bezier(.7,0,.3,1) infinite; }
.mini-door__panel--left { left: 0; transform-origin: left; }
.mini-door__panel--right { right: 0; transform-origin: right; animation-name: mini-door-slide-right; }
.mini-door__person { position: absolute; z-index: 0; bottom: 8%; left: 48%; width: 26px; height: 78px; border-radius: 50% 50% 20% 20%; background: #d9ff43; box-shadow: 0 0 30px rgba(217,255,67,.2); }
.mini-barrier { width: min(76%,640px); height: 390px; position: relative; border-bottom: 2px solid #43514b; }
.mini-barrier__base { position: absolute; bottom: 0; left: 18%; width: 70px; height: 145px; border: 5px solid #3b4742; border-radius: 7px 7px 0 0; background: #161d1b; }
.mini-barrier__arm { position: absolute; z-index: 3; bottom: 104px; left: calc(18% + 35px); width: 72%; height: 18px; display: flex; background: #e8ece9; transform-origin: left center; animation: mini-barrier-lift 5s cubic-bezier(.65,0,.35,1) infinite; }
.mini-barrier__arm i { width: 45px; height: 100%; background: #d9ff43; transform: skewX(-28deg); }
.mini-barrier__car { position: absolute; right: 5%; bottom: 2px; width: 185px; height: 70px; border: 4px solid #66736d; border-radius: 42px 55px 8px 8px; background: #111715; animation: mini-car 5s ease infinite; }
.mini-barrier__car::before { position: absolute; top: -30px; left: 40px; width: 85px; height: 33px; border: 4px solid #66736d; border-bottom: 0; border-radius: 50px 50px 0 0; content: ''; }
.mini-barrier__car i { position: absolute; bottom: -12px; width: 24px; height: 24px; border: 5px solid #343c39; border-radius: 50%; background: #0b0f0e; }
.mini-barrier__car i:first-child { left: 26px; }.mini-barrier__car i:last-child { right: 26px; }
.mini-barrier__signal { position: absolute; left: calc(18% + 26px); bottom: 112px; width: 17px; height: 17px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 25px rgba(217,255,67,.8); animation: motion-sensor 1.5s ease infinite; }
.mini-pergola { width: min(76%,640px); height: 420px; position: relative; }
.mini-pergola__post { position: absolute; z-index: 3; top: 90px; bottom: 25px; width: 16px; background: linear-gradient(90deg,#303b37,#69756f,#28312e); }
.mini-pergola__post--one { left: 7%; }.mini-pergola__post--two { right: 7%; }
.mini-pergola__roof { position: absolute; z-index: 4; top: 78px; left: 5%; right: 5%; height: 48px; display: flex; justify-content: space-between; perspective: 400px; }
.mini-pergola__roof i { width: 15.5%; height: 100%; border: 2px solid #64706b; background: #27302d; transform-origin: center; animation: mini-slat 5s ease-in-out infinite; }
.mini-pergola__sun { position: absolute; top: 10px; right: 18%; width: 80px; height: 80px; border: 1px solid var(--accent); border-radius: 50%; box-shadow: 0 0 50px rgba(217,255,67,.2); }
.mini-pergola__floor { position: absolute; right: 0; bottom: 24px; left: 0; height: 4px; background: #5b6862; }
.mini-charge { width: min(72%,560px); height: 440px; position: relative; }
.mini-charge__unit { position: absolute; z-index: 4; left: 50%; bottom: 20px; width: 155px; height: 320px; border: 5px solid #53605a; border-radius: 70px 70px 12px 12px; background: linear-gradient(145deg,#1c2522,#0d1211); transform: translateX(-50%); }
.mini-charge__unit::before { position: absolute; top: 52px; left: 50%; width: 70px; height: 95px; border: 1px solid #53605a; border-radius: 7px; background: #07110d; content: ''; transform: translateX(-50%); }
.mini-charge__unit i { position: absolute; top: 70px; left: 50%; width: 26px; height: 26px; border-radius: 50%; background: var(--accent); transform: translateX(-50%); box-shadow: 0 0 28px rgba(217,255,67,.75); }
.mini-charge__cable { position: absolute; z-index: 5; left: calc(50% + 75px); bottom: 80px; width: 90px; height: 170px; border: 7px solid #53605a; border-left: 0; border-radius: 0 80px 80px 0; }
.mini-charge__bolt { position: absolute; z-index: 6; top: 190px; left: 50%; color: var(--accent); font-size: 46px; transform: translateX(-50%); animation: mini-bolt 1.6s ease-in-out infinite; }
.mini-charge__pulse { position: absolute; z-index: 1; top: 30%; left: 50%; width: 180px; height: 180px; border: 1px solid rgba(217,255,67,.45); border-radius: 50%; transform: translate(-50%,-50%); animation: mini-pulse 2.7s ease-out infinite; }
.mini-charge__pulse--two { animation-delay: 1.25s; }

.motion-manifesto { padding: 150px 0 130px; background: var(--accent); color: var(--accent-ink); }
.motion-manifesto__top { margin-bottom: 90px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(7,16,11,.32); padding-top: 16px; font: 600 11px 'Space Grotesk',sans-serif; text-transform: uppercase; letter-spacing: .1em; }
.motion-manifesto__top p { max-width: 440px; margin: 0; text-align: right; }
.motion-manifesto h2 em { color: #fff; }
.motion-manifesto__metrics { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 100px; border-top: 1px solid rgba(7,16,11,.35); }
.motion-manifesto__metrics div { padding: 26px 24px 0 0; border-right: 1px solid rgba(7,16,11,.25); }
.motion-manifesto__metrics strong { display: block; font: 600 clamp(48px,6vw,86px)/1 'Space Grotesk',sans-serif; letter-spacing: -.07em; }
.motion-manifesto__metrics span { font-size: 13px; }
.motion-projects { padding: 140px 0; }
.motion-projects__head { margin-bottom: 58px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.motion-projects__head span,.motion-service__copy > span { color: var(--accent); font: 700 10px 'Space Grotesk',sans-serif; text-transform: uppercase; letter-spacing: .14em; }
.motion-projects__head h2 { margin: 16px 0 0; font: 500 clamp(48px,5.6vw,82px)/.94 'Space Grotesk',sans-serif; letter-spacing: -.065em; }
.motion-projects__head > a { padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.26); font-size: 13px; }
.motion-projects__grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2,320px); gap: 16px; }
.motion-project-card { padding: 30px; display: flex; align-items: end; background: linear-gradient(180deg,transparent,rgba(2,5,4,.9)),url('hero-architectural-noir.webp') center/cover; overflow: hidden; }
.motion-project-card--large { grid-row: 1 / span 2; }.motion-project-card--warm { background-image: linear-gradient(180deg,transparent,rgba(2,5,4,.88)),url('hero-warm-living.webp'); }.motion-project-card--blue { background-image: linear-gradient(180deg,transparent,rgba(2,5,4,.88)),url('hero-precision-blue.webp'); }
.motion-project-card span { color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.motion-project-card h3 { max-width: 580px; margin: 10px 0 0; font: 500 clamp(26px,3vw,45px)/.98 'Space Grotesk',sans-serif; letter-spacing: -.055em; }
.motion-project-card p { color: #b4bdb8; }
.motion-service { padding: 135px 0; border-top: 1px solid var(--line); background: #0b100f; }
.motion-service__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: center; }
.motion-service__pulse { min-height: 490px; display: grid; place-items: center; position: relative; }
.motion-service__pulse span { position: absolute; width: 62%; aspect-ratio: 1; border: 1px solid rgba(217,255,67,.32); border-radius: 50%; animation: mini-pulse 3s ease-out infinite; }
.motion-service__pulse span:nth-child(2) { width: 38%; animation-delay: 1s; }
.motion-service__pulse i { width: 16px; height: 16px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 35px rgba(217,255,67,.8); }
.motion-service__copy > p { max-width: 660px; margin: 34px 0; color: #a5afaa; font-size: 18px; }
.motion-service__copy > a { color: var(--accent); font-weight: 700; }
.motion-cta { min-height: 720px; display: grid; place-items: center; position: relative; overflow: hidden; background: #e7ebe7; color: #07100b; }
.motion-cta__door { position: absolute; inset: 70px max(30px,8vw) 0; border: 10px solid #101715; border-bottom: 0; overflow: hidden; }
.motion-cta__door::after { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #101715; content: ''; }
.motion-cta__door span { position: absolute; inset: 0 50% 0 0; border: 1px solid rgba(7,16,11,.25); background: linear-gradient(135deg,rgba(255,255,255,.6),rgba(118,145,132,.18)); animation: cta-door-left 7s ease-in-out infinite; }
.motion-cta__door span:last-child { inset: 0 0 0 50%; animation-name: cta-door-right; }
.motion-cta__inner { position: relative; z-index: 3; text-align: center; }
.motion-cta__inner > span { font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.motion-cta h2 { margin: 28px 0 45px; font-size: clamp(74px,10vw,150px); }
.motion-cta__inner > div { display: flex; justify-content: center; gap: 18px; }
.motion-cta__inner > div a { min-width: 260px; padding: 18px; display: grid; border: 1px solid rgba(7,16,11,.3); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.motion-cta__inner > div strong { margin-top: 5px; font-size: 14px; text-transform: none; letter-spacing: 0; }
.motion-footer { padding: 52px 0 26px; background: #050807; }
.motion-footer .motion-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.motion-footer p { margin: 0; color: #8e9a95; text-align: right; }
.motion-footer .motion-wrap > div { grid-column: 1 / -1; padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); color: #6f7b76; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.concept-d .concept-switcher { top: 116px; right: 18px; bottom: auto; }

@keyframes motion-sensor { 0%,100% { box-shadow:0 0 0 0 rgba(217,255,67,.45) } 50% { box-shadow:0 0 0 14px rgba(217,255,67,0) } }
@keyframes motion-door-left { to { transform: translateX(-88%); } }
@keyframes motion-door-right { to { transform: translateX(88%); } }
@keyframes motion-centerline { to { opacity:0; } }
@keyframes motion-copy-in { to { opacity:1; transform:translateY(-42%); } }
@keyframes motion-fade { to { opacity:1; } }
@keyframes motion-scroll-dot { 0% { transform:translateY(-4px); opacity:.2 } 50% { opacity:1 } 100% { transform:translateY(5px); opacity:.2 } }
@keyframes motion-ticker { to { transform:translateX(-50%); } }
@keyframes mini-door-slide { 0%,22%,80%,100% { transform:translateX(0) } 38%,65% { transform:translateX(-82%) } }
@keyframes mini-door-slide-right { 0%,22%,80%,100% { transform:translateX(0) } 38%,65% { transform:translateX(82%) } }
@keyframes mini-barrier-lift { 0%,20%,78%,100% { transform:rotate(0) } 38%,65% { transform:rotate(-58deg) } }
@keyframes mini-car { 0%,28% { transform:translateX(55%) } 52%,100% { transform:translateX(-130%) } }
@keyframes mini-slat { 0%,18%,82%,100% { transform:rotateX(0) } 40%,66% { transform:rotateX(70deg) } }
@keyframes mini-bolt { 0%,100% { opacity:.45; transform:translateX(-50%) scale(.9) } 50% { opacity:1; transform:translateX(-50%) scale(1.12) } }
@keyframes mini-pulse { 0% { opacity:.7; transform:translate(-50%,-50%) scale(.2) } 100% { opacity:0; transform:translate(-50%,-50%) scale(1.6) } }
@keyframes cta-door-left { 0%,20%,80%,100% { transform:translateX(0) } 38%,65% { transform:translateX(-80%) } }
@keyframes cta-door-right { 0%,20%,80%,100% { transform:translateX(0) } 38%,65% { transform:translateX(80%) } }

@media (max-width: 980px) {
  .motion-wrap { width: min(100% - 40px,760px); }
  .motion-header { height: 78px; padding: 0 20px; }
  .motion-nav { position: fixed; z-index: 79; inset: 0; padding: 120px 30px 40px; display: none; flex-direction: column; align-items: flex-start; background: var(--page); }
  .motion-nav.is-open { display: flex; }
  .motion-nav > a { font-size: 25px; }
  .motion-menu { position: relative; z-index: 81; display: block; }
  .door-frame--top { top: 78px; }.door-frame--left,.door-frame--right { top:78px; }.door-sensor { top:80px; }.door-panel { top:91px; }.door-centerline { top:90px; }
  .motion-copy { left: 24px; right: 24px; max-width: none; }
  .motion-copy h1 { font-size: clamp(64px,13vw,100px); }
  .motion-status { display: none; }
  .motion-scroll { left: 24px; }
  .motion-intro__grid { grid-template-columns: 1fr; }
  .motion-intro__copy > p:last-child { margin-left: 0; }
  .motion-system { min-height: auto; grid-template-columns: 1fr; }
  .motion-system:nth-child(even) .motion-system__visual { order: 0; border-left: 0; }
  .motion-system__visual { min-height: 520px; border-right: 0; border-bottom: 1px solid var(--line); }
  .motion-system__copy { padding: 70px 34px; }
  .motion-service__grid { grid-template-columns: 1fr; gap: 35px; }
  .motion-service__pulse { min-height: 330px; }
}

@media (max-width: 640px) {
  .motion-wrap { width: calc(100% - 28px); }
  .motion-header { padding: 0 14px; }
  .motion-brand__glyph { width: 35px; height: 35px; padding: 7px; }
  .motion-brand strong { font-size: 19px; }
  .motion-brand small { font-size: 7px; }
  .motion-hero { height: 900px; min-height: 900px; }
  .motion-hero__image { background-position: 66% center; }
  .motion-copy { top: 43%; }
  .motion-copy h1 { font-size: clamp(52px,17vw,74px); line-height:.88; }
  .motion-kicker { font-size: 9px; }
  .motion-kicker span { width: 32px; height: 32px; }
  .motion-lead { margin-top: 22px; font-size: 16px; }
  .motion-actions { align-items: stretch; flex-direction: column; }
  .motion-primary { justify-content: space-between; }
  .motion-replay { justify-content: center; }
  .motion-scroll { display: none; }
  .motion-ticker { height: 60px; }
  .motion-intro { padding: 95px 0 70px; }
  .motion-intro__copy h2,.motion-manifesto h2,.motion-service__copy h2 { font-size: 52px; }
  .motion-intro__copy > p:last-child { font-size: 16px; }
  .motion-system__visual { min-height: 360px; }
  .motion-system__copy { padding: 55px 20px 70px; }
  .motion-system__number { margin-bottom: 42px; }
  .motion-system__copy h3 { font-size: 51px; }
  .mini-door { width: 82%; border-width: 8px; border-top-width: 18px; }
  .mini-barrier { width: 88%; height: 270px; transform:scale(.82); }
  .mini-pergola { width: 88%; height: 300px; }
  .mini-pergola__post { top:70px; }.mini-pergola__roof { top:60px; }.mini-pergola__sun { width:58px; height:58px; }
  .mini-charge { height: 330px; transform:scale(.72); }
  .motion-manifesto { padding: 100px 0 90px; }
  .motion-manifesto__top { margin-bottom: 55px; flex-direction: column; }
  .motion-manifesto__top p { text-align:left; }
  .motion-manifesto__metrics { grid-template-columns:1fr; margin-top:70px; }
  .motion-manifesto__metrics div { padding:24px 0; border-right:0; border-bottom:1px solid rgba(7,16,11,.25); }
  .motion-projects { padding: 95px 0; }
  .motion-projects__head { align-items:flex-start; flex-direction:column; }
  .motion-projects__grid { display:block; }
  .motion-project-card { min-height: 380px; margin-bottom: 12px; }
  .motion-service { padding: 90px 0; }
  .motion-service__pulse { min-height: 260px; }
  .motion-cta { min-height: 690px; }
  .motion-cta__door { inset:40px 14px 0; }
  .motion-cta h2 { font-size: 70px; }
  .motion-cta__inner > div { flex-direction:column; }
  .motion-footer .motion-wrap { grid-template-columns:1fr; }
  .motion-footer p { text-align:left; }
  .motion-footer .motion-wrap > div { align-items:flex-start; flex-direction:column; gap:8px; }
}

/* Gallery */
.gallery-page { --page:#0b0e0f; --surface:#15191a; --ink:#f5f6f4; --muted:#9da6a6; --accent:#f0d62c; }
.gallery-hero { padding: 96px 0 70px; background: radial-gradient(circle at 82% 12%, rgba(38,198,230,.14), transparent 30%), radial-gradient(circle at 18% 0, rgba(240,214,44,.14), transparent 25%); }
.gallery-hero h1 { max-width: 900px; margin: 0; font: 700 clamp(52px,8vw,108px)/.94 var(--display); letter-spacing: -.075em; }
.gallery-hero p { max-width: 670px; margin: 28px 0 0; color: var(--muted); font-size: 19px; }
.gallery-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; padding-bottom: 90px; }
.concept-card { border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: var(--surface); transition: transform .25s ease; }
.concept-card:hover { transform: translateY(-8px); }
.concept-card__image { height: 280px; background-position: center; background-size: cover; }
.concept-card__body { padding: 26px; }
.concept-card__meta { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.concept-card h2 { margin: 9px 0; font: 700 28px var(--display); letter-spacing: -.04em; }
.concept-card p { min-height: 76px; margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.palette { display: flex; gap: 7px; margin-bottom: 20px; }
.palette i { width: 22px; height: 22px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; background: var(--swatch); }

@media (max-width: 980px) {
  .wrap, .narrow { width: min(100% - 36px, 760px); }
  .nav { position: fixed; inset: 0 0 auto; top: 0; min-height: 100vh; padding: 120px 30px 40px; display: none; flex-direction: column; align-items: flex-start; background: var(--page); color: var(--ink); }
  .nav.is-open { display: flex; }
  .nav a { font-size: 24px; }
  .nav .button { font-size: 14px; }
  .menu-toggle { position: relative; z-index: 2; display: block; }
  .hero { min-height: 790px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-card,
  .service-card--wide,
  .concept-b .service-card:nth-child(1),
  .concept-b .service-card:nth-child(2),
  .concept-c .service-card:nth-child(1),
  .concept-c .service-card:nth-child(2) { grid-column: span 6; }
  .statement { padding: 60px; }
  .projects-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 460px 300px; }
  .project-card:first-child { grid-column: 1 / -1; grid-row: auto; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .quote { grid-template-columns: 1fr; }
  .quote__aside { min-height: 340px; }
  .contact-panel { grid-template-columns: 1fr; padding: 58px; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__intro { grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: 1fr; }
  .concept-card { display: grid; grid-template-columns: 1fr 1fr; }
  .concept-card__image { height: 100%; min-height: 330px; }
}

@media (max-width: 640px) {
  .wrap, .narrow { width: calc(100% - 28px); }
  .topline__inner { min-height: 34px; }
  .topline__items span:nth-child(n+2), .topline__social { display: none; }
  .header { top: 35px; }
  .header__inner { min-height: 74px; }
  .brand__mark { width: 36px; height: 36px; }
  .section { padding: 78px 0; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero { min-height: 970px; align-items: flex-start; background-position: 62% center; }
  .concept-c .hero { min-height: 1060px; }
  .hero__inner { padding-top: 180px; }
  .hero h1 { font-size: clamp(46px,14vw,70px); }
  .hero__lead { font-size: 16px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__trust { position: absolute; }
  .trust-item { min-height: 86px; padding: 14px; }
  .trust-item strong { font-size: 22px; }
  .trust-item span { font-size: 10px; }
  .services-grid { display: block; }
  .service-card { min-height: 270px; margin-bottom: 14px; padding: 24px; }
  .statement { padding: 36px 24px; }
  .statement h2, .section-head h2, .contact-panel h2 { font-size: 42px; }
  .metrics { grid-template-columns: 1fr; }
  .metric { padding: 22px 0; }
  .projects-grid { display: block; }
  .project-card { min-height: 330px; margin-bottom: 14px; padding: 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { padding-left: 0; }
  .quote__aside { min-height: 260px; }
  .quote__copy { padding: 34px 24px; }
  .contact-panel { padding: 38px 24px; }
  .contact-link { padding: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__intro { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; }
  .concept-switcher { right: 12px; bottom: 12px; }
  .gallery-hero { padding-top: 68px; }
  .gallery-hero h1 { font-size: 54px; }
  .gallery-grid { gap: 16px; }
  .concept-card { display: block; }
  .concept-card__image { min-height: 240px; }
  .concept-card p { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .door-panel--left { transform: translateX(-88%); }
  .door-panel--right { transform: translateX(88%); }
  .door-centerline { opacity: 0; }
  .motion-copy { opacity: 1; transform: translateY(-42%); }
  .motion-status, .motion-scroll { opacity: 1; }
}

/* --------------------------------------------------------------------------
   HUUN Motion Access v2 — compact home, portal entrance and page navigation
   -------------------------------------------------------------------------- */

.concept-d-home .motion-header,
.concept-d-page .motion-header { position: absolute; }

.motion-nav__products { position: relative; font: 600 12px 'Space Grotesk',sans-serif; letter-spacing: .03em; }
.motion-nav__products summary { display: flex; align-items: center; gap: 7px; color: inherit; cursor: pointer; list-style: none; }
.motion-nav__products summary::-webkit-details-marker { display: none; }
.motion-nav__products summary span { color: var(--accent); font-size: 13px; transition: transform .25s ease; }
.motion-nav__products[open] summary span { transform: rotate(180deg); }
.motion-nav__products.is-current summary { color: var(--accent); }
.motion-nav__submenu {
  position: absolute;
  top: 30px;
  left: -22px;
  width: 310px;
  padding: 12px;
  display: grid;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(6,9,8,.96);
  box-shadow: 0 28px 60px rgba(0,0,0,.45);
  backdrop-filter: blur(20px);
}
.motion-nav__submenu::before { position: absolute; top: -31px; right: 0; left: 0; height: 31px; content: ''; }
.motion-nav__submenu a { min-height: 45px; padding: 0 12px; display: flex; align-items: center; gap: 13px; border-bottom: 1px solid rgba(255,255,255,.08); color: #e4e9e6; font-size: 12px; }
.motion-nav__submenu a:hover { background: rgba(217,255,67,.08); color: var(--accent); }
.motion-nav__submenu a span { color: #6e7a75; font-size: 9px; }
.motion-nav__submenu .motion-nav__all { margin-top: 6px; border: 0; color: var(--accent); }

.concept-d-home .motion-hero {
  height: 100svh;
  min-height: 720px;
}
.concept-d-home .motion-hero__image { transform: scale(1.015); }
.concept-d-home .motion-copy { top: 50%; opacity: 0; transform: translateY(-38%); clip-path: inset(0 0 100% 0); }
.concept-d-home .motion-hero.is-replaying .motion-copy { animation: portal-copy-in .9s cubic-bezier(.2,.7,.2,1) 1.8s forwards; }

.portal-stage { position: absolute; z-index: 12; inset: 0; overflow: hidden; pointer-events: none; }
.portal-grid {
  position: absolute;
  z-index: 1;
  inset: 94px 0 0;
  opacity: .2;
  background-image: linear-gradient(rgba(217,255,67,.13) 1px,transparent 1px),linear-gradient(90deg,rgba(217,255,67,.13) 1px,transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom,black,transparent 72%);
}
.portal-panel {
  position: absolute;
  z-index: 3;
  top: 94px;
  bottom: 0;
  width: 25.2%;
  overflow: hidden;
  border-right: 1px solid rgba(217,255,67,.28);
  background: linear-gradient(118deg,rgba(41,55,51,.94),rgba(8,14,12,.9));
  box-shadow: inset 0 0 80px rgba(217,255,67,.035),8px 0 32px rgba(0,0,0,.38);
  backdrop-filter: blur(13px) saturate(.65);
}
.portal-panel::before { position: absolute; inset: 0; background: linear-gradient(115deg,transparent 10%,rgba(255,255,255,.08) 10.5%,transparent 22%,transparent 70%,rgba(217,255,67,.05)); content: ''; }
.portal-panel i { position: absolute; right: 16px; bottom: 20px; color: rgba(217,255,67,.56); font: 700 9px 'Space Grotesk',sans-serif; letter-spacing: .16em; writing-mode: vertical-rl; }
.portal-panel--one { left: 0; }
.portal-panel--two { left: 25%; }
.portal-panel--three { left: 50%; }
.portal-panel--four { left: 75%; }
.motion-hero.is-replaying .portal-panel--one { animation: portal-panel-one 1.5s cubic-bezier(.78,0,.19,1) .75s forwards; }
.motion-hero.is-replaying .portal-panel--two { animation: portal-panel-two 1.65s cubic-bezier(.78,0,.19,1) .63s forwards; }
.motion-hero.is-replaying .portal-panel--three { animation: portal-panel-three 1.65s cubic-bezier(.78,0,.19,1) .63s forwards; }
.motion-hero.is-replaying .portal-panel--four { animation: portal-panel-four 1.5s cubic-bezier(.78,0,.19,1) .75s forwards; }

.portal-sensor {
  position: absolute;
  z-index: 8;
  top: 92px;
  left: 50%;
  width: 88px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #46504c;
  border-radius: 0 0 12px 12px;
  background: #0b100e;
  transform: translateX(-50%);
}
.portal-sensor i { width: 9px; height: 9px; position: relative; z-index: 2; border-radius: 50%; background: var(--accent); box-shadow: 0 0 18px rgba(217,255,67,.8); }
.portal-sensor span { position: absolute; width: 16px; height: 16px; border: 1px solid rgba(217,255,67,.6); border-radius: 50%; opacity: 0; }
.motion-hero.is-replaying .portal-sensor span { animation: portal-radar 1.25s ease-out .1s 2; }
.motion-hero.is-replaying .portal-sensor span:last-child { animation-delay: .48s; }
.portal-scan { position: absolute; z-index: 7; top: 122px; bottom: 0; left: 50%; width: 2px; opacity: 0; background: linear-gradient(transparent,var(--accent),transparent); box-shadow: 0 0 34px rgba(217,255,67,.75); }
.motion-hero.is-replaying .portal-scan { animation: portal-scan 1s ease .25s forwards; }
.portal-lock { position: absolute; z-index: 9; top: 52%; left: 50%; width: 74px; height: 74px; display: grid; place-items: center; border: 1px solid rgba(217,255,67,.58); transform: translate(-50%,-50%) rotate(45deg); }
.portal-lock span { width: 10px; height: 10px; background: var(--accent); box-shadow: 0 0 25px var(--accent); }
.motion-hero.is-replaying .portal-lock { animation: portal-lock 1.55s cubic-bezier(.75,0,.2,1) .15s forwards; }

.brand-wall {
  min-height: 126px;
  display: grid;
  grid-template-columns: 190px minmax(0,1fr) 180px;
  align-items: stretch;
  border-top: 1px solid rgba(217,255,67,.25);
  border-bottom: 1px solid rgba(217,255,67,.25);
  background: var(--accent);
  color: var(--accent-ink);
}
.brand-wall__label,.brand-wall__note { padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.brand-wall__label { border-right: 1px solid rgba(7,16,11,.22); }
.brand-wall__label span { font: 700 9px 'Space Grotesk',sans-serif; letter-spacing: .16em; }
.brand-wall__label strong { margin-top: 5px; font: 700 12px 'Space Grotesk',sans-serif; }
.brand-wall__note { margin: 0; border-left: 1px solid rgba(7,16,11,.22); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.brand-wall__logos { min-width: 0; display: grid; grid-template-columns: repeat(6,1fr); }
.brand-word { min-width: 0; padding: 14px 10px; display: flex; align-items: center; justify-content: center; border-right: 1px solid rgba(7,16,11,.17); color: #08110c; text-align: center; white-space: nowrap; transition: background .2s ease,transform .2s ease; }
.brand-word:hover { background: rgba(255,255,255,.28); transform: translateY(-2px); }
.brand-word--geze { font: 900 21px Arial,sans-serif; letter-spacing: -.08em; }
.brand-word--dormakaba { gap: 7px; font: 600 15px Arial,sans-serif; letter-spacing: -.05em; }
.brand-word--dormakaba i { width: 16px; height: 16px; border: 3px solid #07100b; border-radius: 50%; border-right-color: transparent; transform: rotate(-25deg); }
.brand-word--assa { flex-direction: column; font-family: Arial,sans-serif; line-height: 1; }
.brand-word--assa b { font-size: 13px; letter-spacing: -.03em; }.brand-word--assa small { margin-top: 5px; font-size: 6px; letter-spacing: .13em; }
.brand-word--record { font: 700 19px Arial,sans-serif; letter-spacing: -.08em; }.brand-word--record span { margin-left: 2px; font-size: 8px; }
.brand-word--manusa { font: 800 15px Arial,sans-serif; letter-spacing: .08em; }
.brand-word--portalp { gap: 6px; font: 800 14px Arial,sans-serif; letter-spacing: .03em; }.brand-word--portalp i { font-size: 12px; }

.home-statement { min-height: calc(100svh - 126px); padding: 88px 0 72px; display: grid; align-items: center; background: var(--page); }
.home-statement__grid { display: grid; grid-template-columns: 240px minmax(0,1fr); gap: 54px; }
.home-statement__content h2 { margin: 0; font: 500 clamp(62px,7.3vw,108px)/.88 'Space Grotesk',sans-serif; letter-spacing: -.075em; }
.home-statement__content h2 em { color: var(--accent); font-style: normal; }
.home-statement__lead { max-width: 730px; margin: 27px 0 38px 18%; color: #a5afaa; font-size: 17px; }
.product-tabs { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.product-tabs a { min-height: 116px; padding: 18px; display: grid; grid-template-columns: 1fr auto; align-content: space-between; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s ease,color .25s ease; }
.product-tabs a:hover { background: var(--accent); color: var(--accent-ink); }
.product-tabs span { color:#84918b; font-size:10px; }
.product-tabs strong { grid-column: 1 / -1; align-self: end; font: 600 15px 'Space Grotesk',sans-serif; }
.product-tabs i { color: var(--accent); font-style: normal; }
.product-tabs a:hover i { color: var(--accent-ink); }
.motion-footer--compact { padding: 34px 0 22px; }

/* Inner pages */
.concept-d-page { min-height: 100vh; background:var(--page); }
.page-hero { min-height: 590px; padding: 180px 0 70px; display: flex; align-items: end; position: relative; overflow: hidden; background: #0a0f0d; }
.page-hero::before { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(4,8,6,.95),rgba(4,8,6,.24)),var(--page-image,url('hero-architectural-noir.webp')) center/cover; content: ''; }
.page-hero::after { position: absolute; inset: 94px 0 0; opacity: .12; background-image: linear-gradient(rgba(217,255,67,.25) 1px,transparent 1px),linear-gradient(90deg,rgba(217,255,67,.25) 1px,transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom,black,transparent); content: ''; }
.page-hero .motion-wrap { position: relative; z-index: 2; }
.page-hero__eyebrow { color: var(--accent); font: 700 10px 'Space Grotesk',sans-serif; letter-spacing: .15em; text-transform: uppercase; }
.page-hero h1 { max-width: 980px; margin: 20px 0 0; font: 600 clamp(64px,8.4vw,126px)/.82 'Space Grotesk',sans-serif; letter-spacing: -.08em; }
.page-hero h1 em { color: var(--accent); font-style: normal; }
.page-hero p { max-width: 680px; margin: 30px 0 0; color: #c3cbc7; font-size: 18px; }
.page-tabs { position: sticky; z-index: 40; top: 0; display: flex; overflow-x: auto; border-top: 1px solid rgba(217,255,67,.25); border-bottom: 1px solid rgba(217,255,67,.25); background: #0b100e; scrollbar-width: none; }
.page-tabs::-webkit-scrollbar { display:none; }
.page-tabs a { min-width: max-content; padding: 20px 27px; border-right: 1px solid var(--line); color: #aab5b0; font: 600 11px 'Space Grotesk',sans-serif; letter-spacing: .06em; text-transform: uppercase; }
.page-tabs a:hover,.page-tabs a[aria-current="page"] { background: var(--accent); color: var(--accent-ink); }
.page-content { padding: 105px 0 120px; }
.page-intro { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; }
.page-intro__label { color: var(--accent); font: 700 10px 'Space Grotesk',sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.page-intro h2 { margin: 0; font: 500 clamp(48px,5.5vw,82px)/.93 'Space Grotesk',sans-serif; letter-spacing: -.065em; }
.page-intro h2 em { color: var(--accent); font-style: normal; }
.page-intro__copy > p { max-width: 760px; color: #aab4af; font-size: 18px; }
.product-grid-v2 { margin-top: 72px; display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.product-card-v2 { min-height: 300px; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(135deg,rgba(217,255,67,.055),transparent 50%); }
.product-card-v2:hover { background: var(--accent); color: var(--accent-ink); }
.product-card-v2 > span { color: #718078; font-size: 10px; letter-spacing: .14em; }
.product-card-v2 h3 { margin: auto 0 12px; font: 500 clamp(32px,3.5vw,52px)/.95 'Space Grotesk',sans-serif; letter-spacing: -.055em; }
.product-card-v2 p { max-width: 470px; margin: 0; color: #99a59f; }
.product-card-v2 i { margin-top: 24px; color: var(--accent); font-style: normal; }
.product-card-v2:hover p,.product-card-v2:hover i { color: var(--accent-ink); }
.detail-grid { margin-top: 80px; display: grid; grid-template-columns: 1.1fr .9fr; border: 1px solid var(--line); }
.detail-visual { min-height: 510px; display: grid; place-items: center; position: relative; overflow: hidden; background: radial-gradient(circle,rgba(217,255,67,.11),transparent 42%),#0c1210; }
.detail-visual::after { position:absolute; inset:24px; border:1px solid rgba(255,255,255,.06); content:''; }
.detail-copy { padding: 60px; border-left: 1px solid var(--line); }
.detail-copy h2 { margin: 0; font: 500 clamp(42px,4.5vw,68px)/.94 'Space Grotesk',sans-serif; letter-spacing: -.06em; }
.detail-copy > p { color: #a4afa9; font-size: 17px; }
.feature-list { margin: 32px 0 0; padding: 0; list-style: none; }
.feature-list li { padding: 14px 0; border-bottom: 1px solid var(--line); color: #d8ddda; }
.feature-list li::before { margin-right: 12px; color: var(--accent); content: '＋'; }
.page-cta { margin-top: 70px; padding: 45px; display: flex; align-items: center; justify-content: space-between; gap: 30px; background: var(--accent); color: var(--accent-ink); }
.page-cta h2 { max-width: 760px; margin: 0; font: 500 clamp(36px,4.4vw,64px)/.94 'Space Grotesk',sans-serif; letter-spacing: -.055em; }
.page-cta a { min-width: max-content; padding: 17px 22px; border: 1px solid rgba(7,16,11,.45); font-weight: 800; }
.contact-grid-v2 { margin-top: 70px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.contact-card-v2 { min-height: 210px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-card-v2 span { color: #718078; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.contact-card-v2 strong { font: 500 clamp(22px,2.4vw,35px)/1 'Space Grotesk',sans-serif; letter-spacing: -.04em; }
.contact-card-v2 i { color: var(--accent); font-style: normal; }
.project-grid-v2 { margin-top: 70px; display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2,300px); gap: 14px; }
.project-v2 { padding: 30px; display: flex; align-items: end; position: relative; overflow: hidden; background: linear-gradient(180deg,transparent,rgba(2,5,4,.94)),var(--project-image) center/cover; }
.project-v2:first-child { grid-row: 1 / span 2; }
.project-v2 span { color: var(--accent); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.project-v2 h3 { max-width: 570px; margin: 10px 0 0; font: 500 clamp(25px,3vw,44px)/.96 'Space Grotesk',sans-serif; letter-spacing: -.05em; }

@keyframes portal-panel-one { to { transform: translateX(-105%); opacity:.78; } }
@keyframes portal-panel-two { to { transform: translateX(-205%); opacity:.72; } }
@keyframes portal-panel-three { to { transform: translateX(205%); opacity:.72; } }
@keyframes portal-panel-four { to { transform: translateX(105%); opacity:.78; } }
@keyframes portal-radar { 0% { opacity:.8; transform:scale(.4); } 100% { opacity:0; transform:scale(5); } }
@keyframes portal-scan { 0% { opacity:0; transform:translateY(-20%); } 35% { opacity:1; } 100% { opacity:0; transform:translateY(88%); } }
@keyframes portal-lock { 0%,38% { opacity:1; transform:translate(-50%,-50%) rotate(45deg) scale(1); } 72% { opacity:1; transform:translate(-50%,-50%) rotate(225deg) scale(.65); } 100% { opacity:0; transform:translate(-50%,-50%) rotate(315deg) scale(0); } }
@keyframes portal-copy-in { to { opacity:1; clip-path:inset(0 0 0 0); } }

@media (max-width: 1120px) {
  .motion-nav { gap: 20px; }
  .brand-wall { grid-template-columns: 145px minmax(0,1fr); }
  .brand-wall__note { display:none; }
  .brand-word { font-size: 12px; }
  .home-statement__grid { grid-template-columns: 180px minmax(0,1fr); }
}

@media (max-width: 980px) {
  .motion-nav__products { width:100%; font-size:25px; }
  .motion-nav__products summary { justify-content:space-between; }
  .motion-nav__submenu { position:static; width:100%; margin-top:14px; border-left:2px solid var(--accent); box-shadow:none; }
  .motion-nav__submenu a { font-size:13px; }
  .brand-wall { grid-template-columns: 130px minmax(0,1fr); }
  .brand-wall__logos { overflow-x:auto; grid-template-columns:repeat(6,150px); scrollbar-width:none; }
  .brand-wall__logos::-webkit-scrollbar { display:none; }
  .home-statement__grid,.page-intro { grid-template-columns:1fr; }
  .home-statement__lead { margin-left:0; }
  .product-tabs { grid-template-columns:repeat(2,1fr); }
  .detail-grid { grid-template-columns:1fr; }
  .detail-copy { border-top:1px solid var(--line); border-left:0; }
}

@media (max-width: 640px) {
  .concept-d-home .motion-hero { height:850px; min-height:850px; }
  .concept-d-home .motion-copy { top:44%; transform:translateY(-28%); }
  .portal-grid { top:78px; background-size:42px 42px; }
  .portal-panel { top:78px; }
  .portal-sensor { top:76px; }
  .portal-scan { top:106px; }
  .portal-lock { width:56px; height:56px; }
  .brand-wall { min-height:98px; grid-template-columns:1fr; }
  .brand-wall__label { display:none; }
  .brand-wall__logos { grid-template-columns:repeat(6,145px); }
  .home-statement { min-height:auto; padding:76px 0; }
  .home-statement__grid { gap:34px; }
  .home-statement__content h2 { font-size:52px; }
  .home-statement__lead { font-size:15px; }
  .product-tabs { grid-template-columns:1fr 1fr; }
  .product-tabs a { min-height:105px; padding:15px; }
  .product-tabs strong { font-size:13px; }
  .page-hero { min-height:520px; padding:150px 0 55px; }
  .page-hero::after { top:78px; background-size:46px 46px; }
  .page-hero h1 { font-size:58px; }
  .page-hero p { font-size:16px; }
  .page-tabs a { padding:17px 20px; }
  .page-content { padding:75px 0 85px; }
  .page-intro { gap:28px; }
  .page-intro h2 { font-size:43px; }
  .page-intro__copy > p { font-size:16px; }
  .product-grid-v2 { grid-template-columns:1fr; }
  .product-card-v2 { min-height:250px; }
  .detail-visual { min-height:330px; }
  .detail-copy { padding:34px 24px; }
  .page-cta { padding:30px 24px; align-items:flex-start; flex-direction:column; }
  .contact-grid-v2 { grid-template-columns:1fr; }
  .project-grid-v2 { display:block; }
  .project-v2 { min-height:360px; margin-bottom:12px; }
}

@media (prefers-reduced-motion: reduce) {
  .portal-panel--one { transform:translateX(-105%); }
  .portal-panel--two { transform:translateX(-205%); }
  .portal-panel--three { transform:translateX(205%); }
  .portal-panel--four { transform:translateX(105%); }
  .portal-lock,.portal-scan { opacity:0; }
  .concept-d-home .motion-copy { opacity:1; clip-path:none; }
}

/* --------------------------------------------------------------------------
   HUUN Motion Access v3 — architectural light reveal, no moving door panels
   -------------------------------------------------------------------------- */

.motion-hero--lumen .motion-hero__image {
  filter: grayscale(.42) brightness(.42) saturate(.7);
  transform: scale(1.075);
}
.motion-hero--lumen.is-replaying .motion-hero__image { animation: lumen-base 2.4s cubic-bezier(.2,.7,.2,1) forwards; }
.lumen-stage { position:absolute; z-index:12; inset:0; overflow:hidden; pointer-events:none; }
.lumen-world {
  position:absolute;
  inset:0;
  background: linear-gradient(90deg,rgba(3,6,5,.72),rgba(3,6,5,.08)),url('hero-architectural-noir.webp') center/cover;
  clip-path:circle(0% at 69% 45%);
  filter:saturate(.96) brightness(.98);
  transform:scale(1.025);
}
.motion-hero--lumen.is-replaying .lumen-world { animation:lumen-world 1.9s cubic-bezier(.72,0,.18,1) .32s forwards; }
.lumen-grid {
  position:absolute;
  inset:94px 0 0;
  opacity:0;
  background-image:linear-gradient(rgba(217,255,67,.16) 1px,transparent 1px),linear-gradient(90deg,rgba(217,255,67,.16) 1px,transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(90deg,transparent 25%,black 58%,transparent 92%);
}
.motion-hero--lumen.is-replaying .lumen-grid { animation:lumen-grid 1.65s ease .24s forwards; }
.lumen-orbit { position:absolute; z-index:5; top:45%; left:69%; width:12px; height:12px; transform:translate(-50%,-50%); }
.lumen-orbit i { position:absolute; inset:0; border:1px solid rgba(217,255,67,.78); border-radius:50%; opacity:0; }
.motion-hero--lumen.is-replaying .lumen-orbit i { animation:lumen-orbit 1.5s cubic-bezier(.15,.65,.25,1) forwards; }
.motion-hero--lumen.is-replaying .lumen-orbit i:nth-child(2) { animation-delay:.22s; }
.motion-hero--lumen.is-replaying .lumen-orbit i:nth-child(3) { animation-delay:.44s; }
.lumen-frame { position:absolute; z-index:4; top:19%; right:7%; bottom:12%; left:49%; opacity:.72; }
.lumen-frame span { position:absolute; display:block; background:linear-gradient(90deg,transparent,var(--accent),transparent); box-shadow:0 0 18px rgba(217,255,67,.22); }
.lumen-frame span:nth-child(1),.lumen-frame span:nth-child(3) { right:0; left:0; height:1px; transform:scaleX(0); }
.lumen-frame span:nth-child(1) { top:0; transform-origin:left; }.lumen-frame span:nth-child(3) { bottom:0; transform-origin:right; }
.lumen-frame span:nth-child(2),.lumen-frame span:nth-child(4) { top:0; bottom:0; width:1px; background:linear-gradient(transparent,var(--accent),transparent); transform:scaleY(0); }
.lumen-frame span:nth-child(2) { right:0; transform-origin:top; }.lumen-frame span:nth-child(4) { left:0; transform-origin:bottom; }
.motion-hero--lumen.is-replaying .lumen-frame span:nth-child(1) { animation:lumen-line-x .72s ease 1s forwards; }
.motion-hero--lumen.is-replaying .lumen-frame span:nth-child(2) { animation:lumen-line-y .72s ease 1.2s forwards; }
.motion-hero--lumen.is-replaying .lumen-frame span:nth-child(3) { animation:lumen-line-x .72s ease 1.4s forwards; }
.motion-hero--lumen.is-replaying .lumen-frame span:nth-child(4) { animation:lumen-line-y .72s ease 1.6s forwards; }
.lumen-beam { position:absolute; z-index:6; top:94px; bottom:0; left:-38%; width:26%; opacity:0; background:linear-gradient(90deg,transparent,rgba(217,255,67,.1),rgba(255,255,255,.18),transparent); transform:skewX(-12deg); }
.motion-hero--lumen.is-replaying .lumen-beam { animation:lumen-beam 1.45s cubic-bezier(.6,0,.25,1) .18s forwards; }
.lumen-sensor { position:absolute; z-index:8; top:calc(45% - 18px); left:69%; min-width:136px; height:36px; padding:0 13px; display:flex; align-items:center; gap:10px; border:1px solid rgba(217,255,67,.45); border-radius:20px; background:rgba(5,10,8,.76); opacity:0; transform:translate(-50%,-50%) scale(.85); backdrop-filter:blur(10px); }
.lumen-sensor i { width:8px; height:8px; border-radius:50%; background:var(--accent); box-shadow:0 0 18px var(--accent); }
.lumen-sensor span { color:#e8edeb; font:700 8px 'Space Grotesk',sans-serif; letter-spacing:.13em; }
.motion-hero--lumen.is-replaying .lumen-sensor { animation:lumen-sensor 1.6s ease .2s forwards; }
.lumen-data { position:absolute; z-index:5; color:rgba(217,255,67,.66); font:600 8px/1.5 'Space Grotesk',sans-serif; letter-spacing:.14em; opacity:0; }
.lumen-data--one { top:24%; right:8%; }.lumen-data--two { right:9%; bottom:17%; text-align:right; }
.motion-hero--lumen.is-replaying .lumen-data { animation:lumen-data .8s ease 1.15s forwards; }

.concept-d-home .motion-hero--lumen .motion-copy {
  --copy-y:-38%;
  opacity:1;
  filter:none;
  clip-path:none;
  transform:translateY(var(--copy-y));
}
.concept-d-home .motion-hero--lumen.is-replaying .motion-copy { animation:none; }
.motion-hero--lumen .motion-status { opacity:0; transform:translateX(24px); }
.motion-hero--lumen.is-replaying .motion-status { animation:lumen-status .72s ease 1.72s forwards; }
.motion-hero--lumen .motion-scroll { opacity:0; }
.motion-hero--lumen.is-replaying .motion-scroll { animation:motion-fade .6s ease 1.9s forwards; }
.motion-hero--lumen.is-replaying .motion-replay__icon { animation:lumen-replay-icon .75s ease 1.72s both; }

/* Product visuals now move only when deliberately explored. */
.mini-door__panel,.mini-barrier__arm,.mini-barrier__car,.mini-barrier__signal,
.mini-pergola__roof i,.mini-charge__bolt,.mini-charge__pulse,
.motion-cta__door span { animation:none !important; }
.mini-door__panel,.mini-barrier__arm,.mini-barrier__car,.mini-pergola__roof i,.mini-charge__bolt { transition:transform .8s cubic-bezier(.2,.7,.2,1),opacity .5s ease; }
.mini-door__panel--left { transform:translateX(-14%); }.mini-door__panel--right { transform:translateX(14%); }
.detail-visual:hover .mini-door__panel--left,.motion-system__visual:hover .mini-door__panel--left { transform:translateX(-78%); }
.detail-visual:hover .mini-door__panel--right,.motion-system__visual:hover .mini-door__panel--right { transform:translateX(78%); }
.mini-barrier__arm { transform:rotate(-12deg); }.mini-barrier__car { transform:translateX(12%); }
.detail-visual:hover .mini-barrier__arm,.motion-system__visual:hover .mini-barrier__arm { transform:rotate(-58deg); }
.detail-visual:hover .mini-barrier__car,.motion-system__visual:hover .mini-barrier__car { transform:translateX(-48%); }
.mini-barrier__signal { box-shadow:0 0 18px rgba(217,255,67,.48); }
.mini-pergola__roof i { transform:rotateX(24deg); }
.detail-visual:hover .mini-pergola__roof i,.motion-system__visual:hover .mini-pergola__roof i { transform:rotateX(68deg); }
.mini-charge__bolt { opacity:.62; transform:translateX(-50%) scale(.92); }
.detail-visual:hover .mini-charge__bolt,.motion-system__visual:hover .mini-charge__bolt { opacity:1; transform:translateX(-50%) scale(1.14); }
.mini-charge__pulse { opacity:0; }
.detail-visual:hover .mini-charge__pulse,.motion-system__visual:hover .mini-charge__pulse { animation:lumen-micro-pulse 1.25s ease-out forwards !important; }
.detail-visual:hover .mini-charge__pulse--two,.motion-system__visual:hover .mini-charge__pulse--two { animation-delay:.25s !important; }
.brand-word { transition:background .25s ease,color .25s ease; }
.brand-word:hover { transform:none; }

@keyframes lumen-base { to { filter:grayscale(.18) brightness(.64) saturate(.86); transform:scale(1.025); } }
@keyframes lumen-world { 0% { clip-path:circle(0% at 69% 45%); transform:scale(1.035); } 100% { clip-path:circle(145% at 69% 45%); transform:scale(1); } }
@keyframes lumen-grid { 0% { opacity:0; } 28% { opacity:.52; } 100% { opacity:0; } }
@keyframes lumen-orbit { 0% { opacity:.85; transform:scale(.4); } 100% { opacity:0; transform:scale(22); } }
@keyframes lumen-line-x { 0% { transform:scaleX(0); } 100% { transform:scaleX(1); } }
@keyframes lumen-line-y { 0% { transform:scaleY(0); } 100% { transform:scaleY(1); } }
@keyframes lumen-beam { 0% { opacity:0; transform:translate3d(0,0,0); } 20% { opacity:.9; } 82% { opacity:.46; } 100% { opacity:0; transform:translate3d(600%,0,0); } }
@keyframes lumen-sensor { 0% { opacity:0; transform:translate(-50%,-50%) scale(.72); } 28%,62% { opacity:1; transform:translate(-50%,-50%) scale(1); } 100% { opacity:0; transform:translate(-50%,-50%) scale(1.12); } }
@keyframes lumen-data { to { opacity:1; } }
@keyframes lumen-copy { to { opacity:1; filter:blur(0); transform:translateY(var(--copy-y)) translateX(0); } }
@keyframes lumen-status { to { opacity:1; transform:translateX(0); } }
@keyframes lumen-replay-icon { from { transform:rotate(-120deg); opacity:0; } to { transform:rotate(0); opacity:1; } }
@keyframes lumen-micro-pulse { 0% { opacity:.7; transform:translate(-50%,-50%) scale(.2); } 100% { opacity:0; transform:translate(-50%,-50%) scale(1.55); } }

@media (max-width:980px) {
  .lumen-frame { left:42%; right:5%; }
  .lumen-data { display:none; }
}

@media (max-width:640px) {
  .lumen-world { background-position:66% center; clip-path:none; opacity:0; }
  .motion-hero--lumen.is-replaying .lumen-world { animation-name:lumen-world-mobile; }
  .lumen-grid { top:78px; background-size:48px 48px; }
  .lumen-orbit { top:34%; left:67%; }
  .lumen-frame { top:14%; right:4%; bottom:14%; left:24%; opacity:.46; }
  .lumen-beam { top:78px; }
  .lumen-sensor { top:calc(34% - 14px); left:67%; min-width:118px; height:32px; }
  .concept-d-home .motion-hero--lumen .motion-copy { --copy-y:-28%; }
}

@keyframes lumen-world-mobile { 0% { opacity:0; transform:scale(1.02); } 100% { opacity:1; transform:scale(1); } }

@media (prefers-reduced-motion:reduce) {
  .motion-hero--lumen .motion-hero__image { filter:grayscale(.18) brightness(.64) saturate(.86); transform:scale(1.025); }
  .lumen-world { clip-path:circle(145% at 69% 45%); transform:none; }
  .lumen-grid,.lumen-orbit,.lumen-frame,.lumen-beam,.lumen-sensor,.lumen-data { display:none; }
  .concept-d-home .motion-hero--lumen .motion-copy { opacity:1; filter:none; transform:translateY(var(--copy-y)); }
  .motion-hero--lumen .motion-status,.motion-hero--lumen .motion-scroll { opacity:1; transform:none; }
}

/* --------------------------------------------------------------------------
   HUUNDOOR v10 — architectural scene rotation, local intent and product motion
   -------------------------------------------------------------------------- */

.motion-hero--lumen .motion-hero__image { overflow:hidden; background:#07100c; }
.motion-hero__slide { position:absolute; inset:-1%; opacity:0; background-position:center; background-size:cover; transform:scale(1.045); transition:opacity 1.35s ease,transform 6.8s ease; }
.motion-hero__slide.is-active { opacity:1; transform:scale(1.015); will-change:opacity,transform; }
.motion-hero__image::after { z-index:3; }
.motion-hero.has-revealed .lumen-stage { opacity:0; visibility:hidden; transition:opacity .9s ease,visibility 0s linear .9s; }
.hero-scene-nav { position:absolute; z-index:18; top:188px; right:34px; width:168px; opacity:1; }
.hero-scene-nav p { margin:0 0 10px; display:flex; align-items:center; gap:5px; color:#84928b; font:700 8px 'Space Grotesk',sans-serif; letter-spacing:.12em; text-transform:uppercase; }
.hero-scene-nav p span { color:var(--accent); }.hero-scene-nav p strong { margin-left:auto; color:#dbe1de; font-weight:600; }
.hero-scene-nav > div { display:grid; grid-template-columns:repeat(5,1fr); gap:5px; }
.hero-scene-nav button { position:relative; min-width:24px; height:24px; padding:0; border:0; background:transparent; cursor:pointer; }
.hero-scene-nav button::after { position:absolute; top:11px; right:0; left:0; height:2px; background:rgba(255,255,255,.32); transition:background .25s ease,transform .25s ease; content:''; }
.hero-scene-nav button:hover::after,.hero-scene-nav button:focus-visible::after,.hero-scene-nav button.is-active::after { background:var(--accent); transform:scaleY(2); }

.search-intent-rail { margin-top:22px; display:grid; grid-template-columns:repeat(2,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.search-intent-rail a { min-height:138px; padding:18px 20px; display:grid; grid-template-columns:1fr auto; gap:7px 18px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); background:linear-gradient(125deg,rgba(217,255,67,.04),transparent 56%); }
.search-intent-rail span { grid-column:1 / -1; color:var(--accent); font:700 8px 'Space Grotesk',sans-serif; letter-spacing:.13em; }
.search-intent-rail strong { max-width:520px; font:600 16px/1.15 'Space Grotesk',sans-serif; }
.search-intent-rail p { grid-column:1 / -1; margin:0; color:#89958f; font-size:11px; line-height:1.45; }
.search-intent-rail i { align-self:start; color:var(--accent); font:700 10px 'Space Grotesk',sans-serif; font-style:normal; white-space:nowrap; }
.search-intent-rail a:hover { background:var(--accent); color:var(--accent-ink); }.search-intent-rail a:hover span,.search-intent-rail a:hover p,.search-intent-rail a:hover i { color:var(--accent-ink); }

.door-product { position:relative; overflow:hidden; min-height:330px; }
.product-motion { position:relative; height:96px; margin:6px 0 25px; overflow:hidden; border:1px solid rgba(255,255,255,.1); background-color:#080d0b; background-image:linear-gradient(rgba(217,255,67,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(217,255,67,.055) 1px,transparent 1px); background-size:16px 16px; }
.product-motion::before { position:absolute; right:12px; bottom:11px; left:12px; height:1px; background:#3d4a43; content:''; }
.product-motion::after { position:absolute; top:15px; left:50%; width:5px; height:5px; border-radius:50%; background:var(--accent); box-shadow:0 0 12px rgba(217,255,67,.8); content:''; transform:translateX(-50%); }
.product-motion > span { position:absolute; top:25px; bottom:12px; left:50%; width:44%; border-top:1px solid #66746d; border-right:1px solid #66746d; border-left:1px solid #66746d; transform:translateX(-50%); }
.product-motion > i { position:absolute; display:block; background:rgba(197,211,204,.13); border:1px solid #89968f; }
.product-motion > b { position:absolute; display:block; background:var(--accent); box-shadow:0 0 13px rgba(217,255,67,.38); }
.product-motion small { position:absolute; top:9px; right:10px; color:#718078; font:700 6px 'Space Grotesk',sans-serif; letter-spacing:.12em; }
.product-motion--slide > i:nth-of-type(1),.product-motion--slide > i:nth-of-type(2) { top:29px; bottom:13px; width:20%; }
.product-motion--slide > i:nth-of-type(1) { left:30%; }.product-motion--slide > i:nth-of-type(2) { right:30%; }
.door-product.is-motion-ready .product-motion--slide > i:nth-of-type(1) { animation:pm-slide-left 3.2s cubic-bezier(.2,.7,.2,1) .2s both; }.door-product.is-motion-ready .product-motion--slide > i:nth-of-type(2) { animation:pm-slide-right 3.2s cubic-bezier(.2,.7,.2,1) .2s both; }
.product-motion--telescope > i { top:29px; bottom:13px; width:15%; }.product-motion--telescope > i:nth-of-type(1){left:28%}.product-motion--telescope > i:nth-of-type(2){left:43%}.product-motion--telescope > i:nth-of-type(3){left:58%}
.door-product.is-motion-ready .product-motion--telescope > i:nth-of-type(1){animation:pm-telescope-a 3.4s ease .15s both}.door-product.is-motion-ready .product-motion--telescope > i:nth-of-type(2){animation:pm-telescope-b 3.4s ease .15s both}.door-product.is-motion-ready .product-motion--telescope > i:nth-of-type(3){animation:pm-telescope-c 3.4s ease .15s both}
.product-motion--hermetic > i:first-of-type { top:28px; bottom:14px; left:34%; width:32%; border:2px solid #819089; background:#151d19; box-shadow:inset 0 0 0 3px #080d0b; }
.product-motion--hermetic > b { right:28%; bottom:14px; width:3px; height:52px; }
.door-product.is-motion-ready .product-motion--hermetic > i:first-of-type { animation:pm-hermetic 3.5s ease .2s both; }
.product-motion--curve > span { width:46%; border-right:0;border-left:0;border-top:2px solid #6d7b74;border-radius:50% 50% 0 0; }.product-motion--curve > i { top:33px; width:12px; height:46px; border-color:#87958e; transform-origin:50% 100%; }.product-motion--curve > i:nth-of-type(1){left:43%;transform:rotate(-22deg)}.product-motion--curve > i:nth-of-type(2){right:43%;transform:rotate(22deg)}
.door-product.is-motion-ready .product-motion--curve > i:nth-of-type(1){animation:pm-curve-left 3.2s ease .2s both}.door-product.is-motion-ready .product-motion--curve > i:nth-of-type(2){animation:pm-curve-right 3.2s ease .2s both}
.product-motion--revolve > span { top:27px; bottom:auto; width:54px; height:54px; border:1px solid #66746d; border-radius:50%; }.product-motion--revolve > i { top:53px; left:50%; width:46px; height:2px; border:0; background:#9aa69f; transform-origin:center; }.product-motion--revolve > i:nth-of-type(2){transform:translateX(-50%) rotate(90deg)}.product-motion--revolve > i:nth-of-type(1){transform:translateX(-50%)}
.door-product.is-motion-ready .product-motion--revolve > i { animation:pm-revolve 3.4s cubic-bezier(.2,.7,.2,1) .2s both; }
.product-motion--swing > i:first-of-type { top:29px; bottom:13px; left:50%; width:25%; transform-origin:left center; }.product-motion--swing > b { top:50px; left:50%; width:34px; height:1px; transform-origin:left; }
.door-product.is-motion-ready .product-motion--swing > i:first-of-type { animation:pm-swing 3.3s ease .2s both; }.door-product.is-motion-ready .product-motion--swing > b { animation:pm-swing-line 3.3s ease .2s both; }
.product-motion--gate > span { left:55%; width:61%; }.product-motion--gate > i { top:34px; bottom:14px; width:7%; border-color:#84928b; }.product-motion--gate > i:nth-of-type(1){left:27%}.product-motion--gate > i:nth-of-type(2){left:35%}.product-motion--gate > i:nth-of-type(3){left:43%}.product-motion--gate > i:nth-of-type(4){left:51%}
.door-product.is-motion-ready .product-motion--gate > i { animation:pm-gate 3.4s ease .2s both; }
.product-motion--sectional > span { width:38%; }.product-motion--sectional > i { right:31%; left:31%; height:10px; }.product-motion--sectional > i:nth-of-type(1){top:31px}.product-motion--sectional > i:nth-of-type(2){top:42px}.product-motion--sectional > i:nth-of-type(3){top:53px}.product-motion--sectional > i:nth-of-type(4){top:64px}
.door-product.is-motion-ready .product-motion--sectional > i { animation:pm-section-up 3.5s ease .2s both; }.door-product.is-motion-ready .product-motion--sectional > i:nth-of-type(2){animation-delay:.27s}.door-product.is-motion-ready .product-motion--sectional > i:nth-of-type(3){animation-delay:.34s}.door-product.is-motion-ready .product-motion--sectional > i:nth-of-type(4){animation-delay:.41s}
.product-motion--shutter > span { width:40%; }.product-motion--shutter > i { right:30%; left:30%; height:7px; background:repeating-linear-gradient(90deg,#77857e 0 12px,#47534d 12px 13px); }.product-motion--shutter > i:nth-of-type(1){top:31px}.product-motion--shutter > i:nth-of-type(2){top:39px}.product-motion--shutter > i:nth-of-type(3){top:47px}.product-motion--shutter > i:nth-of-type(4){top:55px}
.door-product.is-motion-ready .product-motion--shutter > i { animation:pm-shutter-up 3.3s ease .2s both; }

@keyframes pm-slide-left{0%,18%{transform:translateX(0)}65%,100%{transform:translateX(-78%)}}@keyframes pm-slide-right{0%,18%{transform:translateX(0)}65%,100%{transform:translateX(78%)}}
@keyframes pm-telescope-a{0%,20%{transform:translateX(0)}70%,100%{transform:translateX(-76%)}}@keyframes pm-telescope-b{0%,20%{transform:translateX(0)}70%,100%{transform:translateX(-38%)}}@keyframes pm-telescope-c{0%,20%{transform:translateX(0)}70%,100%{transform:translateX(38%)}}
@keyframes pm-hermetic{0%,18%{transform:translateX(38%)}62%{transform:translateX(0)}78%,100%{transform:translateY(3px)}}@keyframes pm-curve-left{0%,20%{transform:rotate(-22deg)}70%,100%{transform:translateX(-17px) rotate(-38deg)}}@keyframes pm-curve-right{0%,20%{transform:rotate(22deg)}70%,100%{transform:translateX(17px) rotate(38deg)}}
@keyframes pm-revolve{0%,18%{transform:translateX(-50%) rotate(0)}72%,100%{transform:translateX(-50%) rotate(135deg)}}@keyframes pm-swing{0%,20%{transform:perspective(120px) rotateY(0)}70%,100%{transform:perspective(120px) rotateY(-68deg)}}@keyframes pm-swing-line{0%,20%{transform:rotate(0)}70%,100%{transform:rotate(-48deg)}}
@keyframes pm-gate{0%,20%{transform:translateX(0)}70%,100%{transform:translateX(145%)}}@keyframes pm-section-up{0%,18%{transform:translateY(0)}68%,100%{transform:translateY(-24px) rotateX(55deg)}}@keyframes pm-shutter-up{0%,20%{transform:translateY(0)}70%,100%{transform:translateY(-28px) scaleY(.35)}}

.local-page-hero { min-height:650px; }.local-page-hero__actions { margin-top:34px; display:flex; flex-wrap:wrap; gap:10px; }.local-page-hero__actions a { min-height:54px; padding:0 22px; display:flex; align-items:center; gap:20px; border:1px solid rgba(255,255,255,.3); color:white; font:700 12px 'Space Grotesk',sans-serif; }.local-page-hero__actions a:first-child { border-color:var(--accent); background:var(--accent); color:var(--accent-ink); }
.local-trust { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }.local-trust div { min-height:120px; padding:22px; display:flex; flex-direction:column; justify-content:space-between; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }.local-trust span { color:#748079; font-size:8px; letter-spacing:.12em; }.local-trust strong { font:600 16px/1.2 'Space Grotesk',sans-serif; }
.local-section { padding:90px 0; border-top:1px solid var(--line); }.local-section--soft { background:#0a0f0d; }.local-heading { display:grid; grid-template-columns:.62fr 1.38fr; gap:70px; margin-bottom:48px; }.local-heading > span { color:var(--accent); font:700 9px 'Space Grotesk',sans-serif; letter-spacing:.14em; }.local-heading h2 { margin:0; font:500 clamp(42px,5.7vw,82px)/.92 'Space Grotesk',sans-serif; letter-spacing:-.06em; }.local-heading h2 em { color:var(--accent); font-style:normal; }.local-heading p { max-width:760px; margin:22px 0 0; color:#9da8a2; font-size:16px; line-height:1.7; }
.local-service-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }.local-service-card { min-height:270px; padding:28px; display:flex; flex-direction:column; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }.local-service-card > span { color:var(--accent); font:700 9px 'Space Grotesk',sans-serif; letter-spacing:.12em; }.local-service-card h3 { margin:auto 0 15px; font:600 27px/1 'Space Grotesk',sans-serif; letter-spacing:-.045em; }.local-service-card p { margin:0; color:#909c96; font-size:13px; line-height:1.6; }
.local-process { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }.local-process article { min-height:230px; padding:26px; border:1px solid var(--line); background:linear-gradient(145deg,rgba(217,255,67,.035),transparent 50%); }.local-process span { color:var(--accent); font:700 10px 'Space Grotesk',sans-serif; }.local-process h3 { margin:70px 0 12px; font:600 24px/1 'Space Grotesk',sans-serif; }.local-process p { margin:0; color:#8c9892; font-size:13px; line-height:1.55; }
.local-faq { max-width:950px; margin-left:auto; }.local-faq details { border-top:1px solid var(--line); }.local-faq details:last-child { border-bottom:1px solid var(--line); }.local-faq summary { padding:24px 5px; display:flex; justify-content:space-between; gap:25px; color:#eef1ef; cursor:pointer; font:600 18px 'Space Grotesk',sans-serif; list-style:none; }.local-faq summary::after { color:var(--accent); content:'＋'; }.local-faq details[open] summary::after { content:'−'; }.local-faq p { max-width:790px; margin:0; padding:0 5px 25px; color:#96a29c; line-height:1.7; }
.local-final-cta { padding:65px; display:grid; grid-template-columns:1fr auto; align-items:end; gap:45px; border:1px solid rgba(217,255,67,.38); background:linear-gradient(125deg,rgba(217,255,67,.1),transparent 52%); }.local-final-cta span { color:var(--accent); font:700 9px 'Space Grotesk',sans-serif; letter-spacing:.14em; }.local-final-cta h2 { max-width:830px; margin:15px 0 0; font:500 clamp(42px,5.2vw,74px)/.92 'Space Grotesk',sans-serif; letter-spacing:-.06em; }.local-final-cta a { min-height:58px; padding:0 24px; display:flex; align-items:center; background:var(--accent); color:var(--accent-ink); font:800 12px 'Space Grotesk',sans-serif; white-space:nowrap; }

@media (max-width:980px) {
  .hero-scene-nav { top:auto; right:22px; bottom:112px; }
  .search-intent-rail { grid-template-columns:1fr; }
  .local-trust,.local-process { grid-template-columns:repeat(2,1fr); }.local-service-grid { grid-template-columns:repeat(2,1fr); }.local-heading { grid-template-columns:1fr; gap:22px; }.local-final-cta { grid-template-columns:1fr; }
}
@media (max-width:640px) {
  .motion-hero__slide { background-position:66% center; }
  .hero-scene-nav { display:none; }
  .home-statement { padding-top:65px; }.search-intent-rail a { min-height:165px; }.search-intent-rail strong { font-size:15px; }
  .door-product { min-height:310px; }.product-motion { height:92px; }
  .local-page-hero { min-height:720px; }.local-page-hero__actions { display:grid; }.local-page-hero__actions a { justify-content:space-between; }
  .local-trust,.local-service-grid,.local-process { grid-template-columns:1fr; }.local-section { padding:70px 0; }.local-service-card { min-height:230px; }.local-process article { min-height:205px; }.local-process h3 { margin-top:52px; }.local-final-cta { padding:38px 24px; }.local-final-cta a { justify-content:space-between; }
}
@media (prefers-reduced-motion:reduce) {
  .motion-hero__slide { transition:none; transform:none; }.motion-hero__slide:not(:first-child) { display:none; }.hero-scene-nav { display:none; }
  .product-motion > i,.product-motion > b { animation:none !important; }
}

/* --------------------------------------------------------------------------
   HUUNDOOR v11 — project configurator, architectural motion and accessories
   -------------------------------------------------------------------------- */

.motion-status > a { transition:background .25s ease,color .25s ease; }
.motion-status > a:hover { background:var(--accent); color:var(--accent-ink); }
.motion-status > a:hover span,.motion-status > a:hover strong { color:var(--accent-ink); }

.detail-visual--architectural { padding:0; }
.architectural-door { position:relative; width:100%; min-height:530px; overflow:hidden; background:#07100c; color:#e5ebe8; }
.architectural-door__grid { position:absolute; inset:0; opacity:.48; background-image:linear-gradient(rgba(217,255,67,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(217,255,67,.055) 1px,transparent 1px); background-size:28px 28px; }
.architectural-door__grid::before,.architectural-door__grid::after { position:absolute; background:rgba(217,255,67,.26); content:''; }
.architectural-door__grid::before { top:50%; right:0; left:0; height:1px; }.architectural-door__grid::after { top:0; bottom:0; left:50%; width:1px; }
.architectural-door__frame { position:absolute; top:24%; right:14%; bottom:18%; left:14%; overflow:hidden; border:15px solid #35413d; border-top-width:30px; box-shadow:0 30px 70px rgba(0,0,0,.35),inset 0 0 0 1px #6c7973; }
.architectural-door__frame::before { position:absolute; inset:0; z-index:0; background:linear-gradient(130deg,rgba(171,208,193,.12),transparent 55%); content:''; }
.architectural-door__sensor { position:absolute; z-index:6; top:-22px; left:50%; width:72px; height:18px; border:1px solid #69766f; background:#0a100e; transform:translateX(-50%); }
.architectural-door__sensor i { position:absolute; top:5px; left:50%; width:7px; height:7px; border-radius:50%; background:var(--accent); box-shadow:0 0 15px var(--accent); transform:translateX(-50%); }
.architectural-door__panel { position:absolute; z-index:3; top:0; bottom:0; width:50%; border:2px solid #819089; background:rgba(118,147,135,.2); backdrop-filter:blur(3px); }
.architectural-door__panel::before { position:absolute; inset:13px; border:1px solid rgba(201,217,209,.24); content:''; }
.architectural-door__panel i { position:absolute; top:50%; width:6px; height:32px; background:#9cabaa; transform:translateY(-50%); }
.architectural-door__panel--left { left:0; }.architectural-door__panel--left i { right:14px; }.architectural-door__panel--right { right:0; }.architectural-door__panel--right i { left:14px; }
.architectural-door__threshold { position:absolute; z-index:5; right:0; bottom:0; left:0; height:4px; background:var(--accent); transform:scaleX(.03); }
.architectural-door__scan { position:absolute; z-index:2; top:29%; left:50%; width:42%; height:47%; border:1px solid rgba(217,255,67,.5); background:radial-gradient(ellipse at top,rgba(217,255,67,.22),transparent 66%); clip-path:polygon(45% 0,55% 0,100% 100%,0 100%); opacity:0; transform:translateX(-50%) scaleY(.2); transform-origin:top; }
.architectural-door__measure { position:absolute; z-index:6; color:#7f8d86; font:700 8px 'Space Grotesk',sans-serif; letter-spacing:.14em; }
.architectural-door__measure--width { right:22%; bottom:11%; left:22%; padding-top:9px; border-top:1px solid #66736d; text-align:center; }.architectural-door__measure--width::before,.architectural-door__measure--width::after { position:absolute; top:-3px; width:6px; height:6px; border-top:1px solid #66736d; border-left:1px solid #66736d; content:''; transform:rotate(-45deg); }.architectural-door__measure--width::before{left:0}.architectural-door__measure--width::after{right:0;transform:rotate(135deg)}
.architectural-door__measure--height { top:35%; bottom:29%; left:8%; display:flex; align-items:center; border-left:1px solid #66736d; writing-mode:vertical-rl; transform:rotate(180deg); }
.architectural-door__state { position:absolute; z-index:7; top:7%; right:7%; display:grid; grid-template-columns:auto auto; gap:3px 9px; text-align:right; }.architectural-door__state i { grid-row:1 / 3; align-self:center; width:7px; height:7px; border-radius:50%; background:var(--accent); box-shadow:0 0 12px rgba(217,255,67,.7); }.architectural-door__state span { color:#7c8983; font:700 7px 'Space Grotesk',sans-serif; letter-spacing:.13em; }.architectural-door__state strong { color:#dfe5e2; font:700 9px 'Space Grotesk',sans-serif; letter-spacing:.1em; }
.architectural-door.is-active .architectural-door__scan { animation:ad-scan 1.1s ease .35s both; }.architectural-door.is-active .architectural-door__panel--left { animation:ad-open-left 3.8s cubic-bezier(.2,.75,.2,1) 1.15s both; }.architectural-door.is-active .architectural-door__panel--right { animation:ad-open-right 3.8s cubic-bezier(.2,.75,.2,1) 1.15s both; }.architectural-door.is-active .architectural-door__threshold { animation:ad-threshold 2.4s ease 1.2s both; }
@keyframes ad-scan{0%{opacity:0;transform:translateX(-50%) scaleY(.15)}45%,80%{opacity:1;transform:translateX(-50%) scaleY(1)}100%{opacity:.12;transform:translateX(-50%) scaleY(1)}}
@keyframes ad-open-left{0%,12%{transform:translateX(0)}62%,100%{transform:translateX(-84%)}}@keyframes ad-open-right{0%,12%{transform:translateX(0)}62%,100%{transform:translateX(84%)}}@keyframes ad-threshold{0%{transform:scaleX(.03)}55%,100%{transform:scaleX(1)}}

/* Product-specific mechanisms: each motion mirrors the named door type. */
.product-motion--telescope > i:nth-of-type(4){top:29px;bottom:13px;left:58%;width:15%}.product-motion--telescope > i:nth-of-type(3){left:43%}
.door-product.is-motion-ready .product-motion--telescope > i:nth-of-type(1){animation:pm-v11-tel-l1 3.4s cubic-bezier(.2,.7,.2,1) .15s both}.door-product.is-motion-ready .product-motion--telescope > i:nth-of-type(2){animation:pm-v11-tel-l2 3.4s cubic-bezier(.2,.7,.2,1) .15s both}.door-product.is-motion-ready .product-motion--telescope > i:nth-of-type(3){animation:pm-v11-tel-r2 3.4s cubic-bezier(.2,.7,.2,1) .15s both}.door-product.is-motion-ready .product-motion--telescope > i:nth-of-type(4){animation:pm-v11-tel-r1 3.4s cubic-bezier(.2,.7,.2,1) .15s both}
@keyframes pm-v11-tel-l1{0%,18%{transform:translateX(0)}72%,100%{transform:translateX(-82%)}}@keyframes pm-v11-tel-l2{0%,18%{transform:translateX(0)}72%,100%{transform:translateX(-166%)}}@keyframes pm-v11-tel-r2{0%,18%{transform:translateX(0)}72%,100%{transform:translateX(166%)}}@keyframes pm-v11-tel-r1{0%,18%{transform:translateX(0)}72%,100%{transform:translateX(82%)}}
.door-product.is-motion-ready .product-motion--hermetic > i:first-of-type{animation:pm-v11-hermetic 3.5s cubic-bezier(.2,.7,.2,1) .2s both}.product-motion--hermetic > b{transition:opacity .3s}.door-product.is-motion-ready .product-motion--hermetic > b{animation:pm-v11-seal 1.2s ease .2s both}
@keyframes pm-v11-hermetic{0%,18%{transform:translate(0,0)}35%{transform:translate(3px,-3px)}72%,100%{transform:translate(78%,-3px)}}@keyframes pm-v11-seal{0%,45%{opacity:1}100%{opacity:.15}}
.product-motion--curve > i{width:18px;border-radius:50% 50% 15% 15%;background:rgba(197,211,204,.1)}.door-product.is-motion-ready .product-motion--curve > i:nth-of-type(1){animation:pm-v11-curve-left 3.2s cubic-bezier(.2,.7,.2,1) .2s both}.door-product.is-motion-ready .product-motion--curve > i:nth-of-type(2){animation:pm-v11-curve-right 3.2s cubic-bezier(.2,.7,.2,1) .2s both}
@keyframes pm-v11-curve-left{0%,18%{transform:translate(0,0) rotate(-22deg)}72%,100%{transform:translate(-34px,7px) rotate(-42deg)}}@keyframes pm-v11-curve-right{0%,18%{transform:translate(0,0) rotate(22deg)}72%,100%{transform:translate(34px,7px) rotate(42deg)}}
.product-motion--revolve > i:nth-of-type(3){transform:translateX(-50%) rotate(45deg)}.product-motion--revolve > i:nth-of-type(4){transform:translateX(-50%) rotate(135deg)}.door-product.is-motion-ready .product-motion--revolve > i:nth-of-type(1){animation:pm-v11-revolve-1 3.4s ease .2s both}.door-product.is-motion-ready .product-motion--revolve > i:nth-of-type(2){animation:pm-v11-revolve-2 3.4s ease .2s both}.door-product.is-motion-ready .product-motion--revolve > i:nth-of-type(3){animation:pm-v11-revolve-3 3.4s ease .2s both}.door-product.is-motion-ready .product-motion--revolve > i:nth-of-type(4){animation:pm-v11-revolve-4 3.4s ease .2s both}
@keyframes pm-v11-revolve-1{to{transform:translateX(-50%) rotate(145deg)}}@keyframes pm-v11-revolve-2{to{transform:translateX(-50%) rotate(235deg)}}@keyframes pm-v11-revolve-3{to{transform:translateX(-50%) rotate(190deg)}}@keyframes pm-v11-revolve-4{to{transform:translateX(-50%) rotate(280deg)}}
.product-motion--sectional > i{transform-origin:top center}.door-product.is-motion-ready .product-motion--sectional > i{animation:pm-v11-section-up 3.5s cubic-bezier(.2,.7,.2,1) .2s both}@keyframes pm-v11-section-up{0%,18%{transform:translateY(0) rotateX(0)}72%,100%{transform:translateY(-34px) rotateX(72deg)}}

.accessory-catalog { padding-top:100px; }
.door-product-catalog__head > p { max-width:650px; margin:18px 0 0; color:#8d9993; line-height:1.65; }
.accessory-list { display:grid; grid-template-columns:repeat(5,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.accessory-card { min-height:355px; padding:24px; display:flex; flex-direction:column; border-right:1px solid var(--line); border-bottom:1px solid var(--line); background:linear-gradient(145deg,rgba(217,255,67,.035),transparent 55%); }
.accessory-card > span { color:var(--accent); font:700 8px 'Space Grotesk',sans-serif; letter-spacing:.13em; }.accessory-card h3 { margin:auto 0 12px; font:600 22px/1.04 'Space Grotesk',sans-serif; letter-spacing:-.045em; }.accessory-card p { margin:0; color:#8c9992; font-size:12px; line-height:1.55; }
.accessory-icon { position:relative; height:115px; margin-bottom:22px; border:1px solid rgba(255,255,255,.09); background-image:linear-gradient(rgba(217,255,67,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(217,255,67,.05) 1px,transparent 1px); background-size:15px 15px; }
.accessory-icon span,.accessory-icon i,.accessory-icon b { position:absolute; display:block; }
.accessory-icon--remote span { top:20px; left:50%; width:38px; height:72px; border:2px solid #8d9b94; border-radius:16px; transform:translateX(-50%); }.accessory-icon--remote i,.accessory-icon--remote b{left:50%;width:9px;height:9px;border-radius:50%;background:var(--accent)}.accessory-icon--remote i{top:40px;transform:translateX(-12px)}.accessory-icon--remote b{top:40px;transform:translateX(3px)}
.accessory-icon--radar span { top:23px; left:50%; width:54px; height:32px; border:2px solid #8d9b94; border-radius:5px; transform:translateX(-50%); }.accessory-icon--radar i,.accessory-icon--radar b{top:50px;left:50%;border-right:1px solid var(--accent);border-left:1px solid var(--accent);border-radius:50%;transform:translateX(-50%)}.accessory-icon--radar i{width:78px;height:45px}.accessory-icon--radar b{width:105px;height:62px}
.accessory-icon--photocell span,.accessory-icon--photocell i{top:30px;width:18px;height:58px;border:2px solid #8d9b94}.accessory-icon--photocell span{left:28%}.accessory-icon--photocell i{right:28%}.accessory-icon--photocell b{top:58px;right:31%;left:31%;height:1px;background:var(--accent);box-shadow:0 0 10px var(--accent)}
.accessory-icon--selector span { top:20px; left:50%; width:64px; height:74px; border:2px solid #8d9b94; border-radius:7px; transform:translateX(-50%); }.accessory-icon--selector i{top:34px;left:50%;width:38px;height:19px;background:#15201b;border:1px solid var(--accent);transform:translateX(-50%)}.accessory-icon--selector b{top:66px;left:50%;width:8px;height:8px;border-radius:50%;background:var(--accent);box-shadow:-15px 0 #66736d,15px 0 #66736d;transform:translateX(-50%)}
.accessory-icon--battery span { top:28px; left:50%; width:76px; height:57px; border:2px solid #8d9b94; transform:translateX(-50%); }.accessory-icon--battery span::before{position:absolute;top:-8px;left:7px;width:14px;height:6px;background:#8d9b94;content:''}.accessory-icon--battery span::after{position:absolute;top:-8px;right:7px;width:14px;height:6px;background:#8d9b94;content:''}.accessory-icon--battery i{top:49px;left:50%;width:25px;height:17px;background:var(--accent);clip-path:polygon(47% 0,100% 0,65% 42%,90% 42%,32% 100%,46% 56%,14% 56%);transform:translateX(-50%)}

.page-hero--quote { --page-image:url('hero-architectural-noir.webp'); min-height:680px; }
.quote-studio { padding-top:85px; }
.quote-studio__intro { display:grid; grid-template-columns:.55fr 1fr .8fr; align-items:end; gap:45px; margin-bottom:42px; }.quote-studio__intro > span { align-self:start; color:var(--accent); font:700 9px 'Space Grotesk',sans-serif; letter-spacing:.14em; }.quote-studio__intro h2 { margin:0; font:500 clamp(42px,5vw,72px)/.92 'Space Grotesk',sans-serif; letter-spacing:-.06em; }.quote-studio__intro h2 em { color:var(--accent); font-style:normal; }.quote-studio__intro p { margin:0; color:#94a19a; line-height:1.7; }
.quote-product-tabs { display:grid; grid-template-columns:repeat(3,1fr); margin-bottom:55px; border-top:1px solid var(--line); border-left:1px solid var(--line); }.quote-product-tabs label { position:relative; min-width:0; }.quote-product-tabs input { position:absolute; opacity:0; pointer-events:none; }.quote-product-tabs span { min-height:72px; padding:15px 17px; display:flex; align-items:center; gap:14px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); color:#a9b3ae; cursor:pointer; font:600 13px 'Space Grotesk',sans-serif; transition:background .2s ease,color .2s ease; }.quote-product-tabs b { color:#6f7d76; font-size:8px; letter-spacing:.12em; }.quote-product-tabs input:checked + span { background:var(--accent); color:var(--accent-ink); }.quote-product-tabs input:checked + span b { color:var(--accent-ink); }.quote-product-tabs input:focus-visible + span { outline:2px solid white; outline-offset:-3px; }
.quote-workspace { display:grid; grid-template-columns:1fr 1fr; gap:28px; align-items:start; }.quote-preview,.quote-panel { border:1px solid var(--line); background:var(--surface); }.quote-preview { position:sticky; top:105px; }.quote-preview__head { min-height:100px; padding:22px 24px; display:grid; grid-template-columns:1fr auto; gap:7px 20px; border-bottom:1px solid var(--line); }.quote-preview__head span { color:var(--accent); font:700 8px 'Space Grotesk',sans-serif; letter-spacing:.14em; }.quote-preview__head strong { grid-column:1 / -1; font:600 23px/1 'Space Grotesk',sans-serif; letter-spacing:-.04em; }.quote-preview__head i { grid-row:1; grid-column:2; color:#6f7d76; font:700 7px 'Space Grotesk',sans-serif; font-style:normal; letter-spacing:.12em; }
.quote-drawing { width:100%; height:auto; display:block; background:#07100c; border-bottom:1px solid var(--line); }.quote-drawing [data-quote-render] { transform-origin:center; }.quote-drawing [data-quote-render].is-updated { animation:quote-draw-in .45s ease both; }.quote-dimension path { fill:none; stroke:var(--accent); stroke-width:1; }.quote-dimension text { fill:#99a59f; font:700 11px 'Space Grotesk',sans-serif; letter-spacing:.14em; }.quote-revolve { transform-box:fill-box; transform-origin:center; animation:quote-revolve 7s linear infinite; }
@keyframes quote-draw-in{from{opacity:.25;transform:scale(.985)}to{opacity:1;transform:scale(1)}}@keyframes quote-revolve{to{transform:rotate(360deg)}}
.quote-preview__specs { display:grid; grid-template-columns:repeat(3,1fr); }.quote-preview__specs div { min-height:95px; padding:17px; border-right:1px solid var(--line); }.quote-preview__specs div:last-child { border-right:0; }.quote-preview__specs span { display:block; margin-bottom:8px; color:#6f7d76; font:700 7px 'Space Grotesk',sans-serif; letter-spacing:.13em; }.quote-preview__specs strong { font:600 11px/1.25 'Space Grotesk',sans-serif; }.quote-preview__note { margin:0; padding:16px 20px; border-top:1px solid var(--line); color:#77847e; font-size:10px; line-height:1.55; }
.quote-panel .appointment-form { border:0; }.quote-form__contact { margin-top:42px; }.quote-colors,.quote-accessories { margin:0; padding:0; border:0; }.quote-colors legend,.quote-accessories legend { margin-bottom:10px; color:#aab4af; font-size:11px; }.quote-colors legend b { color:var(--accent); }.quote-colors > div { display:grid; grid-template-columns:repeat(5,1fr); gap:8px; }.quote-colors label { position:relative; align-items:center; gap:7px; padding:10px 7px; border:1px solid var(--line); cursor:pointer; font-size:9px; text-align:center; }.quote-colors input { position:absolute; width:1px; height:1px; min-height:1px; opacity:0; }.quote-colors label > span { width:25px; height:25px; display:block; margin:auto; border:1px solid rgba(255,255,255,.45); border-radius:50%; background:var(--swatch); }.quote-colors label:has(input:checked) { border-color:var(--accent); background:rgba(217,255,67,.06); color:white; }.quote-colors label:has(input:checked) > span { box-shadow:0 0 0 3px #080d0b,0 0 0 4px var(--accent); }
.quote-accessories > div { display:grid; grid-template-columns:repeat(2,1fr); gap:8px; }.quote-accessories label { min-height:45px; padding:10px 12px; display:flex; flex-direction:row; align-items:center; gap:9px; border:1px solid var(--line); cursor:pointer; }.quote-accessories input { width:16px; min-height:16px; margin:0; accent-color:var(--accent); }.quote-accessories span { color:#a8b2ad; font-size:11px; }.quote-accessories label:has(input:checked) { border-color:rgba(217,255,67,.6); background:rgba(217,255,67,.05); }.quote-success { min-height:520px; padding:70px 50px; }.quote-success > span { width:58px; height:58px; display:grid; place-items:center; border:1px solid var(--accent); border-radius:50%; color:var(--accent); font-size:24px; }.quote-success h2 { margin:45px 0 15px; font:500 48px/.95 'Space Grotesk',sans-serif; letter-spacing:-.055em; }.quote-success p { max-width:520px; color:#98a49e; line-height:1.7; }.quote-success a { margin-top:28px; display:inline-flex; padding:17px 20px; background:var(--accent); color:var(--accent-ink); font:800 11px 'Space Grotesk',sans-serif; }

@media (max-width:1180px) { .accessory-list { grid-template-columns:repeat(3,1fr); }.quote-workspace { grid-template-columns:.9fr 1.1fr; }.quote-preview__specs { grid-template-columns:1fr; }.quote-preview__specs div { min-height:65px; border-right:0; border-bottom:1px solid var(--line); }.quote-preview__specs div:last-child{border-bottom:0} }
@media (max-width:980px) { .architectural-door { min-height:450px; }.accessory-list { grid-template-columns:repeat(2,1fr); }.quote-studio__intro { grid-template-columns:1fr; gap:18px; }.quote-workspace { grid-template-columns:1fr; }.quote-preview { position:relative; top:auto; }.quote-product-tabs { grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px) { .architectural-door { min-height:390px; }.architectural-door__frame{top:25%;right:8%;bottom:21%;left:12%;border-width:9px;border-top-width:22px}.architectural-door__measure--height{left:5%}.architectural-door__measure--width{right:14%;left:18%}.accessory-list,.quote-product-tabs { grid-template-columns:1fr; }.accessory-card { min-height:310px; }.quote-studio { padding-top:60px; }.quote-product-tabs span { min-height:62px; }.quote-preview__head { min-height:92px; }.quote-preview__head strong { font-size:19px; }.quote-preview__head i { display:none; }.quote-colors > div { grid-template-columns:repeat(3,1fr); }.quote-accessories > div { grid-template-columns:1fr; }.quote-success { min-height:430px; padding:45px 25px; }.quote-success h2 { font-size:40px; } }
@media (prefers-reduced-motion:reduce) { .architectural-door__scan,.architectural-door__panel,.architectural-door__threshold,.quote-revolve,[data-quote-render] { animation:none !important; }.architectural-door__panel--left{transform:translateX(-84%)}.architectural-door__panel--right{transform:translateX(84%)} }

/* --------------------------------------------------------------------------
   HUUNDOOR identity, expanded brand wall and service appointment experience
   -------------------------------------------------------------------------- */

.huundoor-logo { width:248px; height:auto; display:block; }
.motion-header .huundoor-logo { width:218px; max-height:60px; }
.motion-footer .huundoor-logo { width:230px; }
.motion-header .motion-brand,.motion-footer .motion-brand { flex-shrink:0; }
.motion-nav { gap:18px; }
.motion-nav .motion-fault-tab { padding:10px 12px; border:1px solid rgba(217,255,67,.5); color:var(--accent); }
.motion-nav .motion-fault-tab:hover { background:var(--accent); color:var(--accent-ink); }

.brand-wall { min-height:168px; grid-template-columns:150px minmax(0,1fr) 150px; }
.brand-wall__logos { grid-template-columns:repeat(5,1fr); grid-template-rows:repeat(2,84px); }
.brand-word { min-height:84px; border-bottom:1px solid rgba(7,16,11,.17); }
.brand-word--bft { color:#122565; font:900 italic 20px Arial,sans-serif; letter-spacing:-.04em; }
.brand-word--somfy { color:#163d85; font:700 18px Arial,sans-serif; letter-spacing:-.06em; }.brand-word--somfy sup { margin-left:2px; font-size:6px; }
.brand-word--nice { color:#ef542f; font:800 italic 21px Arial,sans-serif; letter-spacing:-.07em; }
.brand-word--faac { color:#193d70; font:900 19px Arial,sans-serif; letter-spacing:.05em; }
.home-statement { min-height:calc(100svh - 168px); }

.service-dock { position:fixed; z-index:120; right:24px; bottom:22px; min-width:315px; display:grid; grid-template-columns:1.35fr .8fr; border:1px solid rgba(217,255,67,.48); background:rgba(8,14,11,.95); box-shadow:0 22px 55px rgba(0,0,0,.38); backdrop-filter:blur(16px); }
.service-dock a { min-height:58px; padding:10px 15px; display:flex; justify-content:center; flex-direction:column; }
.service-dock__call { border-right:1px solid rgba(255,255,255,.12); }
.service-dock__call span { color:#8e9c95; font:700 8px 'Space Grotesk',sans-serif; letter-spacing:.14em; }
.service-dock__call strong { margin-top:3px; color:white; font:700 15px 'Space Grotesk',sans-serif; }
.service-dock__book { align-items:center; gap:7px; background:var(--accent); color:var(--accent-ink); font:800 11px 'Space Grotesk',sans-serif; text-transform:uppercase; }
.service-dock__book i { font-size:18px; font-style:normal; }

.page-hero--service::before { background:linear-gradient(90deg,rgba(4,8,6,.98),rgba(4,8,6,.3)),url('hero-precision-blue.webp') center/cover; }
.appointment-layout { display:grid; grid-template-columns:.72fr 1.28fr; gap:70px; align-items:start; }
.appointment-aside { position:sticky; top:100px; }
.appointment-aside h2 { margin:20px 0 0; font:500 clamp(44px,4.6vw,70px)/.92 'Space Grotesk',sans-serif; letter-spacing:-.065em; }
.appointment-aside h2 em { color:var(--accent); font-style:normal; }
.appointment-aside > p { margin:28px 0; color:#9eaaa4; font-size:16px; }
.appointment-hotline { padding:24px; display:grid; border:1px solid rgba(217,255,67,.45); background:rgba(217,255,67,.055); }
.appointment-hotline span { color:#89968f; font-size:9px; letter-spacing:.14em; text-transform:uppercase; }
.appointment-hotline strong { margin:8px 0; color:white; font:600 29px 'Space Grotesk',sans-serif; }
.appointment-hotline i { color:var(--accent); font-style:normal; font-size:12px; }
.appointment-hotline--electronic { margin-top:10px; border-color:rgba(118,205,255,.38); background:rgba(118,205,255,.06); }
.appointment-hotline--electronic i { color:#9bd9ff; }
.appointment-aside ul { margin:35px 0 0; padding:0; list-style:none; }
.appointment-aside li { padding:13px 0; border-bottom:1px solid var(--line); color:#c5cdc9; font-size:13px; }
.appointment-aside li::before { margin-right:10px; color:var(--accent); content:'＋'; }
.appointment-panel { border:1px solid var(--line); background:#0a0f0d; }
.appointment-form { padding:42px; }
.appointment-form__head { margin-bottom:35px; padding-bottom:25px; border-bottom:1px solid var(--line); }
.appointment-form__head > span { color:var(--accent); font:700 9px 'Space Grotesk',sans-serif; letter-spacing:.14em; }
.appointment-form__head h2 { margin:9px 0 5px; font:500 42px/1 'Space Grotesk',sans-serif; letter-spacing:-.055em; }
.appointment-form__head p { margin:0; color:#79857f; font-size:11px; }.appointment-form b { color:var(--accent); }
.form-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.form-grid label { display:grid; gap:8px; color:#cbd3cf; font:600 11px 'Space Grotesk',sans-serif; letter-spacing:.03em; }
.form-grid__full { grid-column:1 / -1; }
.form-grid input,.form-grid select,.form-grid textarea { width:100%; min-height:50px; padding:13px 14px; border:1px solid rgba(255,255,255,.15); border-radius:0; outline:0; background:#101714; color:white; font:400 14px 'DM Sans',sans-serif; }
.form-grid textarea { resize:vertical; }
.form-grid input:focus,.form-grid select:focus,.form-grid textarea:focus { border-color:var(--accent); box-shadow:0 0 0 2px rgba(217,255,67,.08); }
.form-consent { grid-template-columns:18px 1fr !important; align-items:start; color:#929e98 !important; font-weight:400 !important; line-height:1.5; }
.form-consent input { min-height:18px; padding:0; accent-color:var(--accent); }
.appointment-submit { width:100%; min-height:60px; margin-top:28px; padding:0 22px; display:flex; align-items:center; justify-content:space-between; border:0; background:var(--accent); color:var(--accent-ink); cursor:pointer; font:800 13px 'Space Grotesk',sans-serif; }
.appointment-submit span { font-size:22px; }
.appointment-disclaimer { margin:14px 0 0; color:#77837d; font-size:10px; }
.huun-honeypot { position:absolute !important; left:-10000px !important; width:1px !important; height:1px !important; overflow:hidden !important; }
.appointment-alert { margin:28px 28px 0; padding:16px 18px; border:1px solid rgba(255,130,90,.45); background:rgba(255,100,70,.08); color:#ffd7ca; font-size:13px; }
.appointment-success { min-height:560px; padding:70px 45px; text-align:center; }
.appointment-success > span { width:64px; height:64px; margin:0 auto 28px; display:grid; place-items:center; border-radius:50%; background:var(--accent); color:var(--accent-ink); font-size:28px; }
.appointment-success h2 { margin:0; font:500 50px/1 'Space Grotesk',sans-serif; letter-spacing:-.055em; }
.appointment-success p { max-width:550px; margin:22px auto; color:#9aa69f; }
.appointment-success a { color:var(--accent); font-weight:700; }
.reference-grid { margin-top:72px; display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.reference-card { min-height:520px; position:relative; overflow:hidden; isolation:isolate; background:var(--surface); }
.reference-card::before { position:absolute; z-index:2; inset:0; content:''; background:linear-gradient(180deg,rgba(3,7,5,0) 24%,rgba(3,7,5,.16) 48%,rgba(3,7,5,.96) 74%,#030705 100%); pointer-events:none; }
.reference-card::after { position:absolute; z-index:4; inset:0; border:1px solid rgba(255,255,255,.1); content:''; pointer-events:none; transition:border-color .25s ease,box-shadow .25s ease; }
.reference-card:hover::after { border-color:rgba(217,255,67,.62); box-shadow:inset 0 0 0 1px rgba(217,255,67,.12); }
.reference-card__media { position:absolute; z-index:1; inset:0; margin:0; padding:72px 30px 224px; display:flex; align-items:center; justify-content:center; overflow:hidden; background:linear-gradient(145deg,#f8faf8,#dfe5e1); box-sizing:border-box; }
.reference-card__media::after { position:absolute; inset:0; content:''; background:radial-gradient(circle at 72% 18%,rgba(217,255,67,.18),transparent 32%),linear-gradient(135deg,rgba(0,0,0,.02),rgba(2,9,6,.12)); pointer-events:none; }
.reference-card__media img { width:100%; height:100%; padding:0; display:block; object-fit:contain; object-position:center; filter:saturate(.98) contrast(1.03); transform:scale(1); transition:transform .55s cubic-bezier(.2,.75,.25,1),filter .35s ease; }
.reference-card__media--wide { padding:78px 22px 228px; }
.reference-card__media--wide img { max-height:190px; }
.reference-card__media--emblem { padding-inline:88px; }
.reference-card__media--emblem img { max-width:230px; max-height:215px; }
.reference-card__media--photo { padding:0; }
.reference-card__media--photo img { object-fit:cover; }
.reference-card:hover .reference-card__media img { filter:saturate(1.08) contrast(1.06); transform:scale(1.035); }
.reference-card__content { position:absolute; z-index:3; right:0; bottom:0; left:0; padding:100px 26px 26px; }
.reference-card__content > span { color:var(--accent); font:700 9px 'Space Grotesk',sans-serif; letter-spacing:.12em; text-transform:uppercase; }
.reference-card h3 { margin:10px 0 0; color:#fff; font:500 clamp(22px,2.1vw,34px)/.98 'Space Grotesk',sans-serif; letter-spacing:-.045em; }
.reference-card h3 a { color:inherit; text-decoration:none; }
.reference-card__summary { max-width:54ch; margin:12px 0 14px; display:-webkit-box; overflow:hidden; -webkit-box-orient:vertical; -webkit-line-clamp:3; color:#c7d0cb; font:400 13px/1.55 'Space Grotesk',sans-serif; }
.door-product-catalog { margin-top:70px; }
.door-product-catalog__head { max-width:850px; margin-bottom:35px; }
.door-product-catalog__head span { color:var(--accent); font:700 9px 'Space Grotesk',sans-serif; letter-spacing:.14em; }
.door-product-catalog__head h2 { margin:13px 0 0; font:500 clamp(42px,5vw,72px)/.94 'Space Grotesk',sans-serif; letter-spacing:-.06em; }
.door-product-list { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.door-product { min-height:220px; padding:24px; display:flex; flex-direction:column; border-right:1px solid var(--line); border-bottom:1px solid var(--line); background:linear-gradient(140deg,rgba(217,255,67,.04),transparent 55%); }
.door-product span { color:#708078; font-size:9px; letter-spacing:.14em; }
.door-product h3 { margin:auto 0 10px; font:600 26px/1 'Space Grotesk',sans-serif; letter-spacing:-.045em; }
.door-product p { margin:0; color:#94a09a; font-size:13px; }

@media (max-width:1180px) {
  .motion-header .huundoor-logo { width:180px; }
  .motion-nav { gap:12px; }
  .motion-nav > a,.motion-nav__products { font-size:10px; }
  .motion-nav .motion-contact { gap:12px; padding:0 12px; }
  .brand-wall { grid-template-columns:120px minmax(0,1fr); }
  .brand-wall__note { display:none; }
}

@media (max-width:980px) {
  .motion-header .huundoor-logo { width:205px; }
  .motion-nav > a,.motion-nav__products { font-size:25px; }
  .motion-nav .motion-fault-tab { padding:12px 16px; }
  .brand-wall { grid-template-columns:1fr; min-height:98px; }
  .brand-wall__label { display:none; }
  .brand-wall__logos { overflow-x:auto; grid-template-columns:repeat(10,145px); grid-template-rows:98px; }
  .brand-word { min-height:98px; }
  .appointment-layout { grid-template-columns:1fr; }
  .appointment-aside { position:static; }
  .reference-grid,.door-product-list { grid-template-columns:repeat(2,1fr); }
}

@media (max-width:640px) {
  body.concept-d { padding-bottom:0; }
  body.concept-d.has-service-dock { padding-bottom:62px; }
  .motion-header .huundoor-logo { width:178px; }
  .motion-footer .huundoor-logo { width:210px; }
  .service-dock { right:0; bottom:0; left:0; min-width:0; grid-template-columns:1.1fr .9fr; border-right:0; border-bottom:0; border-left:0; }
  .service-dock a { min-height:62px; padding:8px 12px; }
  .service-dock__call strong { font-size:14px; }
  .service-dock__whatsapp { display:none; }
  .appointment-layout { gap:45px; }
  .appointment-aside h2 { font-size:46px; }
  .appointment-form { padding:28px 18px; }
  .form-grid { grid-template-columns:1fr; }
  .form-grid__full { grid-column:auto; }
  .appointment-success { min-height:480px; padding:60px 24px; }
  .reference-grid,.door-product-list { grid-template-columns:1fr; }
  .reference-card { min-height:500px; }
}

/* --------------------------------------------------------------------------
   HUUNDOOR v12 — access control, vehicle security and project identities
   -------------------------------------------------------------------------- */

.system-catalog { padding-top:105px; }
.system-category-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.system-category-grid article { min-height:330px; padding:28px; display:flex; flex-direction:column; border-right:1px solid var(--line); border-bottom:1px solid var(--line); background:linear-gradient(145deg,rgba(217,255,67,.035),transparent 52%); }
.system-category-grid article > span,.vehicle-system-grid article > span { color:var(--accent); font:700 9px 'Space Grotesk',sans-serif; letter-spacing:.14em; }
.system-category-grid h3 { margin:55px 0 22px; font:600 26px/1 'Space Grotesk',sans-serif; letter-spacing:-.045em; }
.system-category-grid ul { margin:0 0 30px; padding:0; display:grid; gap:10px; list-style:none; }.system-category-grid li { padding-left:15px; color:#8f9b95; font-size:12px; line-height:1.45; }.system-category-grid li::before { margin-left:-15px; margin-right:8px; color:var(--accent); content:'+'; }
.system-category-grid a { margin-top:auto; color:#dfe6e2; font:700 10px 'Space Grotesk',sans-serif; letter-spacing:.08em; }.system-category-grid a:hover { color:var(--accent); }

.vehicle-system-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.vehicle-system-grid article { min-height:365px; padding:25px; display:flex; flex-direction:column; border-right:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--surface); }
.vehicle-system-grid h3 { margin:auto 0 12px; font:600 27px/1 'Space Grotesk',sans-serif; letter-spacing:-.045em; }.vehicle-system-grid p { margin:0; color:#8c9892; font-size:12px; line-height:1.55; }
.vehicle-system-icon { position:relative; height:130px; margin:18px 0 25px; overflow:hidden; border:1px solid rgba(255,255,255,.09); background-image:linear-gradient(rgba(217,255,67,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(217,255,67,.05) 1px,transparent 1px); background-size:16px 16px; }
.vehicle-system-icon::after { position:absolute; right:12px; bottom:18px; left:12px; height:1px; background:#56635d; content:''; }.vehicle-system-icon i,.vehicle-system-icon b,.vehicle-system-icon em { position:absolute; z-index:2; display:block; }
.vehicle-system-icon i { bottom:19px; left:27%; width:18px; height:65px; background:#48554f; }.vehicle-system-icon b { bottom:69px; left:29%; width:48%; height:8px; background:repeating-linear-gradient(90deg,var(--accent) 0 17px,#27302c 17px 34px); transform-origin:left; animation:vehicle-arm 3.5s ease infinite; }.vehicle-system-icon em { right:23%; bottom:19px; width:55px; height:25px; border:2px solid #86938d; border-radius:7px; background:rgba(160,181,171,.12); }
@keyframes vehicle-arm{0%,25%{transform:rotate(0)}55%,82%{transform:rotate(-72deg)}100%{transform:rotate(0)}}
.vehicle-system-icon--hgs i { left:25%; height:78px; }.vehicle-system-icon--hgs b { bottom:77px; left:30%; width:78px; height:58px; border:1px solid var(--accent); border-bottom:0; border-radius:50%; background:transparent; animation:none; }.vehicle-system-icon--hgs em { width:72px; height:32px; }
.vehicle-system-icon--plate i { bottom:38px; left:28%; width:66px; height:40px; border:2px solid #89968f; border-radius:6px; background:#111816; }.vehicle-system-icon--plate b { right:20%; bottom:28px; left:auto; width:118px; height:45px; border:2px solid #89968f; background:rgba(160,181,171,.12); animation:none; }.vehicle-system-icon--plate em { right:27%; bottom:38px; width:55px; height:18px; border-color:var(--accent); border-radius:0; }
.vehicle-system-icon--bollard i,.vehicle-system-icon--bollard b,.vehicle-system-icon--bollard em { bottom:18px; width:30px; height:75px; border:2px solid #89968f; border-radius:13px 13px 0 0; background:#34403a; animation:bollard-rise 3.2s ease infinite; }.vehicle-system-icon--bollard i{left:29%}.vehicle-system-icon--bollard b{left:46%}.vehicle-system-icon--bollard em{right:28%}@keyframes bollard-rise{0%,20%{transform:translateY(64px)}65%,100%{transform:translateY(0)}}
.vehicle-system-icon--road i { bottom:19px; left:26%; width:49%; height:58px; background:#48554f; clip-path:polygon(12% 100%,28% 0,88% 0,100% 100%); animation:road-rise 3.2s ease infinite; }.vehicle-system-icon--road b { bottom:35px; left:34%; width:36%; height:5px; background:var(--accent); animation:none; transform:rotate(-8deg); }.vehicle-system-icon--road em{display:none}@keyframes road-rise{0%,20%{transform:rotateX(82deg);transform-origin:bottom}65%,100%{transform:rotateX(0);transform-origin:bottom}}
.vehicle-system-icon--loop i { left:26%; width:16px; height:83px; }.vehicle-system-icon--loop b { bottom:73px; left:22%; width:42px; height:42px; border:2px solid #89968f; border-radius:50%; background:radial-gradient(circle,var(--accent) 0 5px,transparent 6px); animation:none; }.vehicle-system-icon--loop em { right:22%; bottom:27px; width:94px; height:50px; border:1px solid var(--accent); border-radius:50%; background:transparent; }

.mini-access { position:relative; width:min(78%,610px); aspect-ratio:1.35; overflow:hidden; border:1px solid rgba(255,255,255,.1); background-color:#080d0b; background-image:linear-gradient(rgba(217,255,67,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(217,255,67,.05) 1px,transparent 1px); background-size:24px 24px; }
.mini-access__door { position:absolute; top:20%; right:13%; bottom:10%; width:48%; border:12px solid #36423d; background:rgba(151,177,165,.12); }.mini-access__lock { position:absolute; z-index:3; top:50%; right:19%; width:16px; height:40px; border:2px solid var(--accent); transform:translateY(-50%); }
.mini-access__reader { position:absolute; z-index:4; top:31%; left:18%; width:72px; height:118px; border:2px solid #86938d; border-radius:8px; background:#101815; }.mini-access__reader i { position:absolute; top:18px; right:13px; left:13px; height:48px; border:1px solid #65736c; background:radial-gradient(circle at 50% 38%,transparent 0 10px,#d9ff43 11px 12px,transparent 13px); }.mini-access__reader b { position:absolute; right:27px; bottom:16px; width:14px; height:14px; border-radius:50%; background:var(--accent); box-shadow:0 0 14px var(--accent); }
.mini-access__card { position:absolute; z-index:5; bottom:17%; left:40%; width:75px; height:46px; display:grid; place-items:center; border:1px solid var(--accent); background:#111916; color:var(--accent); font:700 9px 'Space Grotesk',sans-serif; letter-spacing:.14em; animation:access-card 3s ease infinite; }.mini-access__signal { position:absolute; top:40%; left:31%; width:130px; height:100px; border:1px solid rgba(217,255,67,.55); border-left:0; border-radius:0 50% 50% 0; animation:access-signal 3s ease infinite; }
@keyframes access-card{0%,20%{transform:translateX(0)}55%,75%{transform:translateX(-52px)}100%{transform:translateX(0)}}@keyframes access-signal{0%,30%{opacity:0;transform:scale(.45)}55%,75%{opacity:1;transform:scale(1)}100%{opacity:0}}

.reference-card__logo { position:absolute; z-index:3; top:18px; left:18px; min-width:82px; min-height:40px; padding:8px 12px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,.42); background:rgba(5,10,8,.84); color:#fff; box-shadow:0 10px 30px rgba(0,0,0,.15); backdrop-filter:blur(12px); font:800 10px/1.05 'Space Grotesk',sans-serif; letter-spacing:.06em; text-align:center; text-transform:uppercase; }
.reference-card__logo--ptt{background:#ffd500;color:#c81628}.reference-card__logo--telekom{background:#0d4ca0}.reference-card__logo--police{background:#142f59}.reference-card__logo--health{background:#fff;color:#b11226}.reference-card__logo--municipal{background:#244b75}.reference-card__logo--justice{background:#7d171c}.reference-card__logo--coffee{background:#fff;color:#161916}.reference-card__logo--governor{background:#941d2b}

@media (max-width:980px) { .system-category-grid,.vehicle-system-grid { grid-template-columns:repeat(2,1fr); }.mini-access { width:88%; } }
@media (max-width:640px) { .system-catalog { padding-top:75px; }.system-category-grid,.vehicle-system-grid { grid-template-columns:1fr; }.system-category-grid article { min-height:285px; }.vehicle-system-grid article { min-height:330px; }.mini-access { width:92%; }.reference-card { min-height:500px; }.reference-card__logo { top:14px; left:14px; }.reference-card__media { padding:64px 22px 216px; }.reference-card__media--wide { padding:72px 18px 220px; }.reference-card__media--emblem { padding-inline:72px; }.reference-card__media--photo { padding:0; }.reference-card__content { padding:112px 20px 22px; } }

/* v1.7 — indexable product knowledge pages */
.vehicle-system-grid article > a { margin-top:18px; color:#dfe6e2; font:700 10px 'Space Grotesk',sans-serif; letter-spacing:.08em; }
.vehicle-system-grid article > a:hover { color:var(--accent); }
.product-seo-content { padding:130px 0 20px; scroll-margin-top:100px; }
.product-seo-content__head { display:grid; grid-template-columns:.58fr 1.42fr; gap:72px; margin-bottom:58px; }
.product-seo-content__head > span { color:var(--accent); font:700 9px 'Space Grotesk',sans-serif; letter-spacing:.16em; }
.product-seo-content__head h2 { margin:0; font:500 clamp(46px,6vw,84px)/.91 'Space Grotesk',sans-serif; letter-spacing:-.06em; }
.product-seo-content__head h2 em { color:var(--accent); font-style:normal; }
.product-seo-content__head p { max-width:720px; margin:24px 0 0; color:#99a59f; font-size:15px; line-height:1.75; }
.product-seo-list { border-top:1px solid var(--line); }
.product-seo-article { display:grid; grid-template-columns:.58fr 1.42fr; gap:72px; padding:64px 0 72px; border-bottom:1px solid var(--line); scroll-margin-top:110px; }
.product-seo-article__meta { display:flex; flex-direction:column; align-items:flex-start; justify-content:space-between; gap:35px; }
.product-seo-article__meta span { color:var(--accent); font:700 9px 'Space Grotesk',sans-serif; letter-spacing:.15em; }
.product-seo-article__meta a { padding-bottom:5px; border-bottom:1px solid #48534e; color:#dfe6e2; font:700 10px 'Space Grotesk',sans-serif; letter-spacing:.07em; }
.product-seo-article__meta a:hover { border-color:var(--accent); color:var(--accent); }
.product-seo-article__body h2 { max-width:860px; margin:0 0 28px; font:600 clamp(34px,4vw,55px)/.96 'Space Grotesk',sans-serif; letter-spacing:-.052em; }
.product-seo-article__body p { max-width:850px; margin:0 0 17px; color:#a2ada7; font-size:15px; line-height:1.78; }
.product-seo-article__body ul { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; margin:34px 0 0; padding:1px; list-style:none; background:var(--line); }
.product-seo-article__body li { min-height:86px; padding:18px; background:var(--surface); color:#c5cec9; font-size:11px; line-height:1.5; }
.product-seo-article__body li::before { display:block; margin-bottom:13px; color:var(--accent); content:'＋'; }
.product-faq { padding:110px 0 125px; }
.product-faq .product-seo-content__head { margin-bottom:42px; }
.security-service-support { padding:115px 0 105px; }
.security-service-support__grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.security-service-support__grid article { min-height:300px; padding:30px; display:flex; flex-direction:column; border-right:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--surface); }
.security-service-support__grid span { color:var(--accent); font:700 9px 'Space Grotesk',sans-serif; letter-spacing:.15em; }
.security-service-support__grid h3 { margin:auto 0 18px; font:600 26px/1.03 'Space Grotesk',sans-serif; letter-spacing:-.045em; }
.security-service-support__grid p { margin:0; color:#9da9a3; font-size:13px; line-height:1.7; }
.security-service-support__grid a { margin-top:25px; color:var(--accent); font:700 10px 'Space Grotesk',sans-serif; }

@media (max-width:980px) {
  .product-seo-content__head,.product-seo-article { grid-template-columns:1fr; gap:26px; }
  .product-seo-article__meta { flex-direction:row; align-items:center; }
}
@media (max-width:640px) {
  .product-seo-content { padding-top:85px; }
  .product-seo-article { padding:45px 0 52px; }
  .product-seo-article__meta { flex-direction:column; align-items:flex-start; }
  .product-seo-article__body p { font-size:14px; }
  .product-seo-article__body ul { grid-template-columns:1fr; }
  .security-service-support { padding:80px 0; }
  .security-service-support__grid { grid-template-columns:1fr; }
  .product-faq { padding:75px 0 90px; }
}

/* v1.7 — professional architectural quote sheets */
.quote-preview__specs { grid-template-columns:repeat(4,1fr); }
.quote-drawing--architectural { background:#06100c; }
.quote-drawing--architectural * { vector-effect:non-scaling-stroke; }
.quote-drawing--architectural text { font-family:'Space Grotesk',sans-serif; }
.arch-sheet > rect { fill:none; stroke:#53625b; stroke-width:1; }
.arch-sheet > path { fill:none; stroke:#53625b; stroke-width:1; }
.arch-sheet__brand { fill:#d9ff43; font-size:10px; font-weight:700; letter-spacing:2.2px; }
.arch-sheet__micro { fill:#73817a; font-size:7px; font-weight:700; letter-spacing:1.35px; }
.arch-sheet__title { fill:#e7ece9; font-size:11px; font-weight:700; letter-spacing:1.35px; }
.arch-sheet__value { fill:#d9ff43; font-size:9px; font-weight:700; letter-spacing:1px; }
.arch-centerline { fill:none; stroke:#526159; stroke-width:1; stroke-dasharray:10 9; }
.arch-level { fill:none; stroke:#d9ff43; stroke-width:1; }
.arch-wall { stroke:#68766f; stroke-width:1; }
.arch-opening { fill:#06100c; stroke:#2d3b35; stroke-width:1; }
.arch-profile { fill:none; stroke-width:10; }
.arch-fine { fill:none; stroke:#9aaba3; stroke-width:1.4; }
.arch-heavy { fill:none; stroke:#b9c6c0; stroke-width:2.4; }
.arch-floor,.arch-floor-heavy { fill:none; stroke:#87968f; stroke-width:2; }
.arch-floor-heavy { stroke-width:4; }
.arch-operator { fill:#18231e; stroke:#8c9c94; stroke-width:2; }
.arch-track,.arch-section-track { fill:none; stroke:#d9ff43; stroke-width:1.4; stroke-dasharray:5 4; }
.arch-glass { stroke:#a5b6ae; stroke-width:1.4; }
.arch-glass-mark { fill:none; stroke:#708079; stroke-width:1; opacity:.75; }
.arch-sensor,.arch-safety,.arch-reflector,.arch-node { fill:#d9ff43; stroke:#07100c; stroke-width:1; filter:url(#quote-soft-glow); }
.arch-motion,.arch-signal { fill:none; stroke:#d9ff43; stroke-width:2; }
.arch-signal { stroke-width:1.5; }
.arch-dimension path { fill:none; stroke:#d9ff43; stroke-width:1; }
.arch-dimension rect { fill:#06100c; stroke:none; }
.arch-dimension text { fill:#aebbb5; font-size:9px; font-weight:700; letter-spacing:1.4px; }
.arch-callout circle { fill:#d9ff43; stroke:#07100c; stroke-width:1; }
.arch-callout path { fill:none; stroke:#d9ff43; stroke-width:1; }
.arch-callout text { fill:#aab7b1; font-size:8px; font-weight:700; letter-spacing:.9px; }
.arch-callout__number { fill:#d9ff43; }
.arch-gasket { fill:none; stroke:#d9ff43; stroke-width:1.4; stroke-dasharray:4 3; }
.arch-hermetic { stroke-width:7; }
.arch-seal { fill:none; stroke:#d9ff43; stroke-width:2; }
.arch-canopy { fill:rgba(145,188,176,.08); stroke-width:10; }
.arch-wing { fill:none; stroke:#b6c5be; stroke-width:5; }
.arch-swing-arc { fill:none; stroke:#d9ff43; stroke-width:1.4; stroke-dasharray:7 6; }
.arch-rail { fill:none; stroke:#8e9d96; stroke-width:4; }
.arch-wheel { fill:#06100c; stroke:#aebbb5; stroke-width:3; }
.arch-rack { fill:none; stroke:#d9ff43; stroke-width:3; stroke-dasharray:4 4; }
.arch-panel { stroke:#95a59d; stroke-width:1; }
.arch-shutter-box { fill:#17221d; stroke-width:4; }
.arch-drum { fill:none; stroke:#d9ff43; stroke-width:2; stroke-dasharray:4 3; }
.arch-guide { fill:none; stroke-width:8; }
.arch-slat { fill:none; stroke:#9caca4; stroke-width:1.2; }
.arch-road-edge { fill:none; stroke:#98a79f; stroke-width:3; }
.arch-lane-center { fill:none; stroke:#617169; stroke-width:2; stroke-dasharray:18 15; }
.arch-loop { fill:none; stroke:#d9ff43; stroke-width:1.5; stroke-dasharray:8 6; }
.arch-car { fill:rgba(145,188,176,.12); stroke:#b6c5be; stroke-width:3; }
.arch-windshield { fill:url(#quote-glass); stroke:#8fa199; stroke-width:1.5; }
.arch-reader,.arch-controller,.arch-control-pedestal { fill:#15201b; stroke:#d9ff43; stroke-width:2; }
.arch-barrier-base { fill:#18231e; stroke:#b4c1bb; stroke-width:2; }
.arch-barrier-arm { fill:none; stroke:#d9ff43; stroke-width:7; }
.arch-zone-label { fill:#829089; font-size:8px; font-weight:700; letter-spacing:1.25px; }
.arch-bollard { fill:#19251f; stroke-width:4; }
.arch-pit,.arch-foundation { stroke:#68766f; stroke-width:1; }
.arch-inset > rect,.arch-inset > circle { fill:rgba(5,12,9,.82); stroke:#68766f; stroke-width:1; }
.arch-inset > path,.arch-inset g path,.arch-inset g circle { fill:none; stroke:#aab8b1; stroke-width:1.5; }
.arch-inset text { fill:#78867f; font-size:7px; font-weight:700; letter-spacing:1px; }
.arch-roadblocker { stroke-width:4; }
.arch-reflector-line { fill:none; stroke:#d9ff43; stroke-width:6; }
.arch-hydraulic { fill:none; stroke:#aebbb5; stroke-width:5; }
.arch-turnstile-body,.arch-terminal { fill:#18231e; stroke-width:4; }
.arch-speed-wing { stroke:#b6c5be; stroke-width:2; }
.arch-maglock { fill:#d9ff43; stroke:#07100c; stroke-width:1; }
.arch-exit-button { fill:#17221d; stroke:#aebbb5; stroke-width:2; }
.arch-controller { fill:#101a15; stroke:#91a098; stroke-width:2; }
.arch-wiring { fill:none; stroke:#d9ff43; stroke-width:1.2; stroke-dasharray:7 5; }
.arch-terminal { stroke-width:5; }
.arch-screen { fill:#07100c; stroke:#d9ff43; stroke-width:2; }
.arch-face { fill:none; stroke:#aebbb5; stroke-width:2; }
.quote-drawing [data-quote-render].is-updated .arch-product-view { animation:quote-architecture-in .55s cubic-bezier(.2,.72,.25,1) both; }
@keyframes quote-architecture-in { from { opacity:.08; transform:translateY(9px); } to { opacity:1; transform:none; } }

@media (max-width:1180px) {
  .quote-preview__specs { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:640px) {
  .quote-preview__specs { grid-template-columns:1fr; }
  .quote-drawing--architectural { min-width:0; }
}
@media (prefers-reduced-motion:reduce) { .vehicle-system-icon b,.vehicle-system-icon--bollard i,.vehicle-system-icon--bollard b,.vehicle-system-icon--bollard em,.vehicle-system-icon--road i,.mini-access__card,.mini-access__signal { animation:none !important; } }

/* v1.9 — launch, conversion, privacy and accessibility layer */
.huun-skip-link { position:fixed; z-index:9999; top:10px; left:10px; padding:12px 16px; background:var(--accent); color:var(--accent-ink); font:800 12px 'Space Grotesk',sans-serif; transform:translateY(-150%); transition:transform .2s ease; }
.huun-skip-link:focus { transform:none; }
:where(a,button,input,select,textarea,summary):focus-visible { outline:2px solid var(--accent); outline-offset:3px; }
.motion-footer--compact > .motion-wrap > div { flex-wrap:wrap; }
.motion-footer--compact button.huun-cookie-manage { padding:0; border:0; background:transparent; color:inherit; cursor:pointer; font:inherit; }
.service-dock { min-width:460px; grid-template-columns:1.25fr .68fr .9fr; }
.service-dock__whatsapp { border-right:1px solid rgba(255,255,255,.12); }
.service-dock__whatsapp span { color:#25d366; font:700 8px 'Space Grotesk',sans-serif; letter-spacing:.14em; }
.service-dock__whatsapp strong { margin-top:3px; color:#fff; font:700 12px 'Space Grotesk',sans-serif; }
.concept-d-home .motion-status { top:calc(100svh - 294px); bottom:auto; }

@media (min-width:981px) and (max-height:700px) {
  .concept-d-home .motion-status { top:calc(100svh - 270px); }
  .concept-d-home .motion-status > * { padding:9px 14px; }
}
@media (min-width:981px) and (max-height:560px) {
  .concept-d-home .motion-status { display:none; }
}
.contact-grid-v2--expanded { grid-template-columns:repeat(3,1fr); }
.contact-card-v2--whatsapp { background:linear-gradient(140deg,rgba(37,211,102,.13),transparent 65%); }
.contact-card-v2--whatsapp > span,.contact-card-v2--whatsapp i { color:#52e188; }
.contact-card-v2--google > div { display:flex; flex-wrap:wrap; gap:18px; }
.contact-card-v2--google a { color:var(--accent); font:700 11px 'Space Grotesk',sans-serif; }
.home-trust { border-bottom:1px solid var(--line); background:var(--surface); }
.home-trust__grid { display:grid; grid-template-columns:repeat(4,1fr); padding:0; }
.home-trust__grid > div { min-height:170px; padding:28px; display:flex; flex-direction:column; justify-content:space-between; border-right:1px solid var(--line); }
.home-trust__grid > div:first-child { border-left:1px solid var(--line); }
.home-trust__grid span { color:#718078; font:700 8px 'Space Grotesk',sans-serif; letter-spacing:.14em; }
.home-trust__grid strong { font:600 clamp(20px,2vw,30px)/1 'Space Grotesk',sans-serif; letter-spacing:-.04em; }
.home-trust__grid a { color:var(--accent); font:700 10px 'Space Grotesk',sans-serif; letter-spacing:.05em; }
.form-file { padding:20px; border:1px dashed rgba(217,255,67,.34); background:rgba(217,255,67,.025); }
.form-file input[type=file] { min-height:0; margin-top:12px; padding:12px; border:1px solid rgba(255,255,255,.12); cursor:pointer; }
.form-file small { display:block; margin-top:9px; color:#7f8c85; font-size:10px; line-height:1.55; }
.form-consent a { color:var(--accent); text-decoration:underline; text-underline-offset:3px; }
.huun-cookie[hidden] { display:none; }
.huun-cookie { position:fixed; z-index:180; bottom:22px; left:24px; width:min(620px,calc(100vw - 48px)); padding:22px; display:grid; grid-template-columns:1fr auto; gap:24px; align-items:center; border:1px solid rgba(217,255,67,.42); background:rgba(5,9,7,.98); box-shadow:0 24px 70px rgba(0,0,0,.5); }
.huun-cookie strong { font:700 16px 'Space Grotesk',sans-serif; }
.huun-cookie p { margin:7px 0 0; color:#9ba69f; font-size:12px; line-height:1.55; }
.huun-cookie p a { color:var(--accent); text-decoration:underline; }
.huun-cookie__actions { display:flex; gap:8px; }
.huun-cookie__actions button { min-height:42px; padding:0 14px; border:1px solid rgba(255,255,255,.18); background:transparent; color:#fff; cursor:pointer; font:700 10px 'Space Grotesk',sans-serif; }
.huun-cookie__actions button:last-child { border-color:var(--accent); background:var(--accent); color:var(--accent-ink); }
.huun-entry__image--identity { min-height:460px; display:grid; place-items:center; background:linear-gradient(145deg,#f7f9f7,#e0e6e2); }
.huun-entry__image--identity img { width:min(72%,760px); max-height:360px; object-fit:contain; }
.huun-inner { min-height:70vh; padding:190px 0 120px; background:#070a09; color:#f4f5ef; }
.huun-inner__hero { padding-bottom:74px; border-bottom:1px solid rgba(255,255,255,.13); }
.huun-inner__hero > span { color:var(--accent); font:700 10px 'Space Grotesk',sans-serif; letter-spacing:.15em; text-transform:uppercase; }
.huun-inner__hero h1 { max-width:1050px; margin:24px 0 0; font:500 clamp(58px,8vw,120px)/.9 'Space Grotesk',sans-serif; letter-spacing:-.075em; }
.huun-inner__hero p { max-width:680px; margin:28px 0 0; color:#9da8a3; font-size:19px; }
.huun-entry { padding-top:72px; }
.huun-entry__image { margin-bottom:60px; overflow:hidden; }
.huun-entry__image img { width:100%; max-height:760px; display:block; object-fit:cover; }
.huun-entry__content { width:min(820px,100%); margin:0 auto; color:#c6ceca; font-size:18px; line-height:1.8; }
.huun-entry__content h2,.huun-entry__content h3 { color:#fff; font-family:'Space Grotesk',sans-serif; line-height:1.05; letter-spacing:-.04em; }
.huun-entry__content h2 { margin:64px 0 20px; font-size:48px; }
.huun-entry__content h3 { margin:45px 0 18px; font-size:34px; }
.huun-entry__content a { color:var(--accent); text-decoration:underline; }
.huun-project-cta { margin-top:110px; padding:70px; background:var(--accent); color:var(--accent-ink); }
.huun-project-cta span { font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }
.huun-project-cta h2 { max-width:900px; margin:20px 0 35px; font:500 clamp(48px,7vw,92px)/.92 'Space Grotesk',sans-serif; letter-spacing:-.07em; }
.huun-project-cta a { font-weight:800; }
.huun-project-cta__actions { display:flex; flex-wrap:wrap; gap:14px 26px; align-items:center; }
.huun-project-cta__actions a { min-height:44px; display:inline-flex; align-items:center; border-bottom:1px solid currentColor; text-decoration:none; }
.huun-not-found .motion-primary { margin-top:32px; display:inline-flex; }

@media (max-width:1180px) {
  .service-dock { grid-template-columns:1.2fr .7fr .7fr; }
}
@media (max-width:780px) {
  .service-dock { min-width:0; grid-template-columns:1.2fr .72fr .72fr; }
	.service-dock { background:#0a100d; backdrop-filter:none; }
  .service-dock__whatsapp strong { font-size:10px; }
  .service-dock__book { font-size:9px; }
  .contact-grid-v2--expanded { grid-template-columns:1fr; }
  .home-trust__grid { grid-template-columns:1fr 1fr; }
  .home-trust__grid > div { min-height:145px; border-bottom:1px solid var(--line); }
  .huun-cookie { right:12px; bottom:84px; left:12px; width:auto; grid-template-columns:1fr; gap:14px; }
  .huun-cookie__actions { display:grid; grid-template-columns:1fr 1fr; }
  .huun-entry__image--identity { min-height:300px; }
  .huun-inner { padding:145px 0 95px; }
  .huun-inner__hero { padding-bottom:48px; }
  .huun-inner__hero h1 { font-size:54px; }
  .huun-entry { padding-top:44px; }
  .huun-entry__content { font-size:16px; }
  .huun-entry__content h2 { font-size:38px; }
  .huun-project-cta { margin-top:70px; padding:42px 24px; }
}
 
/* v1.11 — exclusive HUUNDOOR electronic security visuals */
.security-products .detail-grid { align-items:stretch; }
.security-schematic { position:relative; width:min(88%,680px); aspect-ratio:4/3; margin:0; overflow:hidden; border:1px solid rgba(217,255,67,.22); background:#06100c; box-shadow:0 28px 75px rgba(0,0,0,.32); }
.security-schematic img { width:100%; height:100%; display:block; object-fit:cover; }
.security-schematic::before { position:absolute; inset:0; background:linear-gradient(145deg,transparent 45%,rgba(217,255,67,.08)); content:''; }
.security-schematic > * { display:none; }
.security-direct-link { margin-top:24px; padding:18px 20px; display:flex; align-items:center; justify-content:space-between; gap:24px; border:1px solid rgba(217,255,67,.34); background:rgba(217,255,67,.035); }
.security-direct-link span { color:#7f8c85; font:700 8px 'Space Grotesk',sans-serif; letter-spacing:.14em; }
.security-direct-link strong { color:var(--accent); font:700 15px 'Space Grotesk',sans-serif; }
.security-category-grid article { min-height:490px; overflow:hidden; }
.security-category-grid article::before,.security-products .product-seo-article__body::before { display:block; background-position:center; background-size:cover; background-repeat:no-repeat; content:''; }
.security-category-grid article::before { width:calc(100% + 56px); aspect-ratio:4/3; margin:-28px -28px 24px; border-bottom:1px solid var(--line); }
.security-category-grid h3 { margin:24px 0 22px; }
.security-products .product-seo-article__body::before { width:100%; aspect-ratio:16/9; margin:0 0 34px; border:1px solid var(--line); }
.security-category-grid article:nth-child(1)::before,#akilli-ev .product-seo-article__body::before { background-image:url('products/security-smart-home.webp'); }
.security-category-grid article:nth-child(2)::before,#goruntulu-diafon .product-seo-article__body::before { background-image:url('products/security-video-intercom.webp'); }
.security-category-grid article:nth-child(3)::before,#kamera-sistemleri .product-seo-article__body::before { background-image:url('products/security-cctv.webp'); }
.security-category-grid article:nth-child(4)::before,#ses-sistemleri .product-seo-article__body::before { background-image:url('products/security-audio.webp'); }
.security-category-grid article:nth-child(5)::before,#hirsiz-alarm .product-seo-article__body::before { background-image:url('products/security-alarm.webp'); }
.security-category-grid article:nth-child(6)::before,#uydu-sistemleri .product-seo-article__body::before { background-image:url('products/security-satellite.webp'); }
.security-category-grid article:nth-child(7)::before,#cagri-anons .product-seo-article__body::before { background-image:url('products/security-call.webp'); }
.security-category-grid article:nth-child(8)::before,#yangin-alarm .product-seo-article__body::before { background-image:url('products/security-fire.webp'); }
.security-category-grid article:nth-child(9)::before,#sesli-diafon .product-seo-article__body::before { background-image:url('products/security-audio-intercom.webp'); }
.security-category-grid article:nth-child(10)::before,#ip-sistemleri .product-seo-article__body::before { background-image:url('products/security-network.webp'); }
.security-category-grid article:nth-child(11)::before,#zil-panelleri .product-seo-article__body::before { background-image:url('products/security-doorbell-panel.webp'); }
.security-category-grid article:nth-child(12)::before,#yardimci-urunler .product-seo-article__body::before { background-image:url('products/security-accessories.webp'); }
.security-category-grid article > a { margin-top:22px; color:var(--accent); font:700 10px 'Space Grotesk',sans-serif; letter-spacing:.06em; }
.security-page-cta > span { display:block; margin-bottom:18px; font:700 9px 'Space Grotesk',sans-serif; letter-spacing:.15em; }
.service-dock--security .service-dock__call span { color:var(--accent); }
@media (max-width:980px) { .security-schematic { width:90%; }.security-category-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px) { .security-schematic { width:94%; }.security-category-grid { grid-template-columns:1fr; }.security-category-grid article { min-height:460px; }.security-direct-link { align-items:flex-start; flex-direction:column; gap:8px; }.security-direct-link strong { font-size:14px; } }

/* v1.12 — exclusive HUUNDOOR automation product visuals */
.door-product-list .door-product { min-height:500px; }
.door-product-list .product-motion { width:calc(100% + 48px); height:auto; aspect-ratio:4/3; margin:-24px -24px 24px; border:0; border-bottom:1px solid var(--line); background-color:#050907; background-position:center; background-size:cover; background-repeat:no-repeat; }
.door-product-list .product-motion::before,.door-product-list .product-motion::after,.door-product-list .product-motion > * { display:none; }
.door-product-list .product-motion { background-image:none !important; }
.door-product-list .product-motion > img { width:100%; height:100%; display:block !important; object-fit:cover; }
.door-product-list .door-product:nth-child(1) .product-motion { background-image:url('products/automation-real-sliding-door.webp'); }
.door-product-list .door-product:nth-child(2) .product-motion { background-image:url('products/automation-real-telescopic-door.webp'); }
.door-product-list .door-product:nth-child(3) .product-motion { background-image:url('products/automation-real-hermetic-door.webp'); }
.door-product-list .door-product:nth-child(4) .product-motion { background-image:url('products/automation-real-curved-door.webp'); }
.door-product-list .door-product:nth-child(5) .product-motion { background-image:url('products/automation-real-revolving-door.webp'); }
.door-product-list .door-product:nth-child(6) .product-motion { background-image:url('products/automation-real-swing-operator.webp'); }
.door-product-list .door-product:nth-child(7) .product-motion { background-image:url('products/automation-real-sliding-gate.webp'); }
.door-product-list .door-product:nth-child(8) .product-motion { background-image:url('products/automation-real-sectional-door.webp'); }
.door-product-list .door-product:nth-child(9) .product-motion { background-image:url('products/automation-real-rolling-shutter.webp'); }
.accessory-list .accessory-card { min-height:410px; overflow:hidden; }
.accessory-list .accessory-icon { width:calc(100% + 48px); height:auto; aspect-ratio:4/3; margin:-24px -24px 24px; border:0; border-bottom:1px solid var(--line); background-color:#050907; background-position:center; background-size:cover; background-repeat:no-repeat; }
.accessory-list .accessory-icon > * { display:none; }
.accessory-list .accessory-icon { background-image:none !important; }
.accessory-list .accessory-icon > img { width:100%; height:100%; display:block !important; object-fit:cover; }
.accessory-list .accessory-card:nth-child(1) .accessory-icon { background-image:url('products/automation-real-remote.webp'); }
.accessory-list .accessory-card:nth-child(2) .accessory-icon { background-image:url('products/automation-real-radar.webp'); }
.accessory-list .accessory-card:nth-child(3) .accessory-icon { background-image:url('products/automation-real-photocell.webp'); }
.accessory-list .accessory-card:nth-child(4) .accessory-icon { background-image:url('products/automation-real-selector.webp'); }
.accessory-list .accessory-card:nth-child(5) .accessory-icon { background-image:url('products/automation-real-battery-kit.webp'); }
@media (max-width:640px) { .door-product-list .door-product { min-height:470px; }.accessory-list .accessory-card { min-height:430px; } }

/* v1.14 — realistic system galleries, architectural boards and charging map */
.detail-grid--barrier .detail-visual,.detail-grid--access .detail-visual,.detail-grid--pergola .detail-visual,.detail-grid--charge .detail-visual { min-height:540px; background-position:center; background-size:cover; }
.detail-grid--barrier .detail-visual { background-image:linear-gradient(90deg,rgba(4,9,7,.04),rgba(4,9,7,.18)),url('products/vehicle-real-barrier.webp'); }
.detail-grid--access .detail-visual { background-image:linear-gradient(90deg,rgba(4,9,7,.04),rgba(4,9,7,.18)),url('products/access-real-controller.webp'); }
.detail-grid--pergola .detail-visual { background-image:linear-gradient(90deg,rgba(4,9,7,.04),rgba(4,9,7,.18)),url('products/pergola-real-bioclimatic.webp'); }
.detail-grid--charge .detail-visual { background-image:linear-gradient(90deg,rgba(4,9,7,.04),rgba(4,9,7,.18)),url('products/charge-real-home.webp'); }
.detail-grid--barrier .detail-visual > *,.detail-grid--access .detail-visual > *,.detail-grid--pergola .detail-visual > *,.detail-grid--charge .detail-visual > * { display:none; }
.vehicle-system-grid article { min-height:530px; overflow:hidden; }
.vehicle-system-grid .vehicle-system-icon { width:calc(100% + 50px); height:auto; aspect-ratio:4/3; margin:18px -25px 22px; border-inline:0; background-position:center; background-size:cover; background-repeat:no-repeat; }
.vehicle-system-grid .vehicle-system-icon::after,.vehicle-system-grid .vehicle-system-icon > * { display:none; }
.vehicle-system-grid .vehicle-system-icon { background-image:none !important; }
.vehicle-system-grid .vehicle-system-icon > img { width:100%; height:100%; display:block !important; object-fit:cover; }
.vehicle-system-grid h3 { margin:0 0 12px; }
.vehicle-system-grid article:nth-child(1) .vehicle-system-icon { background-image:url('products/vehicle-real-barrier.webp'); }
.vehicle-system-grid article:nth-child(2) .vehicle-system-icon { background-image:url('products/vehicle-real-hgs.webp'); }
.vehicle-system-grid article:nth-child(3) .vehicle-system-icon { background-image:url('products/vehicle-real-lpr.webp'); }
.vehicle-system-grid article:nth-child(4) .vehicle-system-icon { background-image:url('products/vehicle-real-bollard.webp'); }
.vehicle-system-grid article:nth-child(5) .vehicle-system-icon { background-image:url('products/vehicle-real-roadblocker.webp'); }
.vehicle-system-grid article:nth-child(6) .vehicle-system-icon { background-image:url('products/vehicle-real-loop.webp'); }
.system-category-grid article { min-height:565px; overflow:hidden; }
.system-category-grid article::before { width:calc(100% + 56px); aspect-ratio:4/3; margin:-28px -28px 22px; border-bottom:1px solid var(--line); background-position:center; background-size:cover; background-repeat:no-repeat; content:''; }
.access-category-grid article::before,.security-category-grid article::before { display:none; }
.product-index-image { width:calc(100% + 56px); height:auto; aspect-ratio:4/3; margin:-28px -28px 22px; display:block; border-bottom:1px solid var(--line); object-fit:cover; }
.system-category-grid h3 { margin:18px 0 22px; }
.visual-product-catalog { padding-top:105px; }
.visual-product-grid { display:grid; grid-template-columns:repeat(2,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.visual-product-grid article { min-width:0; padding:24px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--surface); }
.visual-product-grid article > span { color:var(--accent); font:700 9px 'Space Grotesk',sans-serif; letter-spacing:.14em; }
.visual-product-grid h3 { margin:18px 0 12px; font:600 clamp(25px,3vw,36px)/1 'Space Grotesk',sans-serif; letter-spacing:-.045em; }
.visual-product-grid p { margin:0; color:#8c9892; font-size:13px; line-height:1.65; }
.product-photo { width:calc(100% + 48px); aspect-ratio:4/3; margin:-24px -24px 22px; overflow:hidden; border-bottom:1px solid var(--line); background-position:center; background-size:cover; background-repeat:no-repeat; }
.product-photo:has(> img) { background-image:none !important; }
.product-photo > img { width:100%; height:100%; display:block; object-fit:cover; }
.system-catalog,.visual-product-catalog,.product-seo-content,.architecture-board,.charge-map { content-visibility:auto; contain-intrinsic-size:auto 900px; }
.product-photo--pergola { background-image:url('products/pergola-real-bioclimatic.webp'); }.product-photo--guillotine { background-image:url('products/pergola-real-guillotine.webp'); }.product-photo--sliding-glass { background-image:url('products/pergola-real-sliding-glass.webp'); }.product-photo--zip-screen { background-image:url('products/pergola-real-zip-screen.webp'); }
.product-photo--charge-home { background-image:url('products/charge-real-home.webp'); }.product-photo--charge-apartment { background-image:url('products/charge-real-apartment.webp'); }.product-photo--charge-commercial { background-image:url('products/charge-real-commercial-ac.webp'); }.product-photo--charge-dc { background-image:url('products/charge-real-fleet-dc.webp'); }
.architecture-board { padding-top:105px; }
.architecture-board__head { display:grid; grid-template-columns:.58fr 1.42fr; gap:72px; margin-bottom:42px; }
.architecture-board__head > span { color:var(--accent); font:700 9px 'Space Grotesk',sans-serif; letter-spacing:.16em; }
.architecture-board__head h2 { margin:0; font:500 clamp(42px,5.3vw,74px)/.92 'Space Grotesk',sans-serif; letter-spacing:-.055em; }
.architecture-board__head h2 em { color:var(--accent); font-style:normal; }
.architecture-board__head p { max-width:720px; margin:22px 0 0; color:#99a59f; font-size:14px; line-height:1.75; }
.architecture-board__sheet { display:grid; grid-template-columns:1.45fr .55fr; min-height:460px; border:1px solid var(--line); background:var(--surface); }
.architecture-board__drawing { position:relative; min-height:460px; overflow:hidden; border-right:1px solid var(--line); background-color:#07100c; background-image:linear-gradient(rgba(217,255,67,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(217,255,67,.045) 1px,transparent 1px); background-size:22px 22px; }
.architecture-board__drawing::before { position:absolute; inset:44px; border:1px solid rgba(173,197,185,.35); content:''; }
.architecture-board__shape { position:absolute; z-index:2; display:block; border:2px solid #829189; background:rgba(129,148,139,.08); }
.architecture-board__shape--a { top:25%; right:19%; bottom:25%; left:19%; }.architecture-board__shape--b { top:42%; right:29%; bottom:42%; left:29%; border-color:var(--accent); }.architecture-board__shape--c { top:34%; right:42%; bottom:34%; left:42%; border-color:#b6c1bc; }
.architecture-board__route { position:absolute; z-index:3; top:50%; right:9%; left:9%; height:1px; background:repeating-linear-gradient(90deg,var(--accent) 0 14px,transparent 14px 24px); }
.architecture-board__measure { position:absolute; z-index:4; color:#aab6b0; font:700 8px 'Space Grotesk',sans-serif; letter-spacing:.16em; }.architecture-board__measure--x { right:20%; bottom:16%; left:20%; padding-top:9px; border-top:1px solid var(--accent); text-align:center; }.architecture-board__measure--y { top:26%; bottom:26%; left:12%; padding-left:9px; border-left:1px solid var(--accent); writing-mode:vertical-rl; transform:rotate(180deg); text-align:center; }
.architecture-board--barrier .architecture-board__shape--a { top:20%; right:17%; bottom:20%; left:17%; border-width:1px; }.architecture-board--barrier .architecture-board__shape--b { top:31%; right:45%; bottom:31%; left:44%; transform:rotate(-22deg); transform-origin:bottom center; }.architecture-board--barrier .architecture-board__shape--c { top:37%; right:25%; bottom:37%; left:62%; border-radius:6px; }
.architecture-board--access .architecture-board__shape--a { top:18%; right:28%; bottom:18%; left:28%; }.architecture-board--access .architecture-board__shape--a::after { position:absolute; top:50%; right:-1px; width:50%; border-top:2px solid #829189; transform:rotate(-43deg); transform-origin:right; content:''; }.architecture-board--access .architecture-board__shape--b { top:42%; right:66%; bottom:42%; left:25%; }.architecture-board--access .architecture-board__shape--c { top:24%; right:21%; bottom:60%; left:70%; }
.architecture-board--pergola .architecture-board__shape--a { top:20%; right:18%; bottom:20%; left:18%; background:repeating-linear-gradient(90deg,rgba(217,255,67,.18) 0 2px,transparent 2px 30px); }.architecture-board--pergola .architecture-board__shape--b { top:22%; right:55%; bottom:22%; left:20%; border-color:#aebbb5; }.architecture-board--pergola .architecture-board__shape--c { top:22%; right:20%; bottom:22%; left:55%; border-color:#aebbb5; }
.architecture-board--charge .architecture-board__shape--a { top:18%; right:72%; bottom:55%; left:12%; }.architecture-board--charge .architecture-board__shape--b { top:39%; right:45%; bottom:39%; left:43%; }.architecture-board--charge .architecture-board__shape--c { top:18%; right:12%; bottom:55%; left:72%; border-radius:18px 18px 4px 4px; }.architecture-board--charge .architecture-board__route { top:49%; right:22%; left:22%; }
.architecture-board__notes { padding:38px; display:flex; flex-direction:column; justify-content:center; }
.architecture-board__notes span { color:var(--accent); font:700 9px 'Space Grotesk',sans-serif; letter-spacing:.14em; }
.architecture-board__notes h3 { margin:18px 0 16px; font:600 30px/1 'Space Grotesk',sans-serif; letter-spacing:-.045em; }
.architecture-board__notes ul { margin:0; padding:0; display:grid; gap:13px; list-style:none; }.architecture-board__notes li { padding-left:18px; color:#95a19b; font-size:12px; line-height:1.5; }.architecture-board__notes li::before { margin-left:-18px; margin-right:9px; color:var(--accent); content:'+'; }
.schneider-focus { margin-top:105px; display:grid; grid-template-columns:.58fr 1.42fr; gap:72px; padding:48px; border:1px solid rgba(217,255,67,.3); background:linear-gradient(135deg,rgba(217,255,67,.08),transparent 46%),#08100d; }
.schneider-focus > span { color:var(--accent); font:700 9px 'Space Grotesk',sans-serif; letter-spacing:.16em; }
.schneider-focus h2 { margin:0; max-width:860px; font:500 clamp(42px,5.5vw,76px)/.92 'Space Grotesk',sans-serif; letter-spacing:-.055em; }.schneider-focus h2 em { color:var(--accent); font-style:normal; }
.schneider-focus p { max-width:780px; margin:22px 0; color:#a0aba5; line-height:1.75; }.schneider-focus ul { margin:0 0 28px; padding:0; display:grid; grid-template-columns:repeat(2,1fr); gap:10px 26px; list-style:none; }.schneider-focus li { color:#dbe2de; font-size:13px; }.schneider-focus li::before { margin-right:9px; color:var(--accent); content:'+'; }.schneider-focus a { display:inline-flex; padding:14px 18px; border:1px solid var(--accent); color:var(--accent); font:700 11px 'Space Grotesk',sans-serif; }
.charge-map { padding-top:105px; }
.charge-map__layout { display:grid; grid-template-columns:1.35fr .65fr; min-height:570px; border:1px solid var(--line); }
.charge-map__embed { position:relative; min-height:570px; overflow:hidden; background-color:#07100c; background-image:linear-gradient(rgba(217,255,67,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(217,255,67,.055) 1px,transparent 1px),radial-gradient(circle at 50% 45%,rgba(217,255,67,.12),transparent 42%); background-size:32px 32px,32px 32px,auto; }
.charge-map__embed > button { position:absolute; z-index:2; inset:0; width:100%; padding:36px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; border:0; background:rgba(5,12,9,.72); color:#fff; cursor:pointer; text-align:center; }
.charge-map__embed > button span { color:var(--accent); font:700 9px 'Space Grotesk',sans-serif; letter-spacing:.16em; }.charge-map__embed > button strong { max-width:520px; font:600 clamp(28px,3.5vw,46px)/1 'Space Grotesk',sans-serif; letter-spacing:-.045em; }.charge-map__embed > button small { color:#9aa69f; font-size:12px; line-height:1.55; }.charge-map__embed > button:hover strong,.charge-map__embed > button:focus-visible strong { color:var(--accent); }
.charge-map__frame { width:100%; height:100%; min-height:570px; display:block; border:0; filter:grayscale(.9) invert(.9) hue-rotate(85deg) contrast(.88); }
.charge-map__aside { padding:42px; display:flex; flex-direction:column; justify-content:center; border-left:1px solid var(--line); background:var(--surface); }.charge-map__aside > span { color:var(--accent); font:700 9px 'Space Grotesk',sans-serif; letter-spacing:.15em; }.charge-map__aside h3 { margin:18px 0; font:600 32px/1 'Space Grotesk',sans-serif; letter-spacing:-.045em; }.charge-map__aside p { margin:0 0 22px; color:#96a29c; font-size:13px; line-height:1.7; }.charge-map__aside a { margin-top:10px; padding:14px 16px; border:1px solid var(--line); color:#dfe6e2; font:700 10px 'Space Grotesk',sans-serif; }.charge-map__aside a:hover { border-color:var(--accent); color:var(--accent); }.charge-map__note { display:block; margin-top:16px; color:#77837d; font-size:11px; line-height:1.6; }
@media (max-width:980px) { .visual-product-grid { grid-template-columns:1fr; }.architecture-board__head,.architecture-board__sheet,.schneider-focus,.charge-map__layout { grid-template-columns:1fr; }.architecture-board__drawing,.charge-map__aside { border:0; }.architecture-board__drawing { border-bottom:1px solid var(--line); }.charge-map__aside { border-top:1px solid var(--line); }.system-category-grid article { min-height:520px; } }
@media (max-width:640px) { .detail-grid--barrier .detail-visual,.detail-grid--access .detail-visual,.detail-grid--pergola .detail-visual,.detail-grid--charge .detail-visual { min-height:310px; }.vehicle-system-grid article,.system-category-grid article { min-height:auto; }.architecture-board,.visual-product-catalog,.schneider-focus,.charge-map { margin-top:0; padding-top:75px; }.architecture-board__head { gap:22px; }.architecture-board__sheet,.architecture-board__drawing { min-height:360px; }.architecture-board__drawing::before { inset:24px; }.architecture-board__notes,.schneider-focus,.charge-map__aside { padding:28px 22px; }.schneider-focus ul { grid-template-columns:1fr; }.charge-map__embed,.charge-map__frame { min-height:420px; }.charge-map__embed > button { padding:26px 20px; }.visual-product-grid h3 { font-size:28px; } }
/* v1.15 — WordPress navigation, editorial archives and site identity */
.motion-menu-list { display:contents; padding:0; margin:0; list-style:none; }
.motion-menu-list li { display:contents; }
.motion-menu-list a { font:600 12px 'Space Grotesk',sans-serif; letter-spacing:.03em; }
.motion-custom-logo .custom-logo-link { display:block; }
.motion-custom-logo .custom-logo { width:auto; max-width:220px; height:54px; object-fit:contain; }
.admin-bar .motion-header { top:32px; }
body:not(.home):not(.concept-d-home) .motion-header { background:rgba(6,9,8,.9); backdrop-filter:blur(16px); }
.motion-project-card a { color:inherit; }
.huun-content-grid { padding-top:62px; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.huun-content-card { overflow:hidden; border:1px solid rgba(255,255,255,.12); background:#0d1211; }
.huun-content-card__image { height:330px; display:block; overflow:hidden; }
.huun-content-card__image img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.huun-content-card:hover .huun-content-card__image img { transform:scale(1.035); }
.huun-content-card > div { padding:30px; }
.huun-content-card span { color:var(--accent); font-size:10px; text-transform:uppercase; letter-spacing:.12em; }
.huun-content-card h2 { margin:12px 0; font:500 32px/1.02 'Space Grotesk',sans-serif; letter-spacing:-.045em; }
.huun-content-card p { color:#99a49f; }
.huun-pagination { grid-column:1/-1; padding-top:40px; }
.huun-pagination .nav-links { display:flex; flex-wrap:wrap; gap:8px; }
.huun-pagination .page-numbers { min-width:42px; min-height:42px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.14); }
.huun-pagination .current { background:var(--accent); color:#07100b; }
@media (max-width:980px) {
  .motion-menu-list { display:block; }
  .motion-menu-list li { display:block; margin-bottom:22px; }
  .motion-menu-list a { font-size:25px; }
  .huun-content-grid { grid-template-columns:1fr; }
}
@media (max-width:782px) { .admin-bar .motion-header { top:46px; } }
@media (max-width:640px) { .huun-content-card__image { height:240px; } }

/* v1.17 — consistent directional icons and an iOS-safe full-screen menu */
.huun-arrow {
  --huun-arrow-angle: 0deg;
  width: 1.05em;
  height: 1.05em;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  color: currentColor;
  vertical-align: -.12em;
  transform: rotate(var(--huun-arrow-angle));
  transform-origin: 50% 50%;
}
.huun-arrow::before {
  position: absolute;
  top: 50%;
  right: 2px;
  left: 1px;
  height: 1.5px;
  background: currentColor;
  content: '';
  transform: translateY(-50%);
}
.huun-arrow::after {
  width: .42em;
  height: .42em;
  position: absolute;
  top: 50%;
  right: 2px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: '';
  transform: translateY(-50%) rotate(45deg);
}
.huun-arrow--external { --huun-arrow-angle: -45deg; }
.product-card-v2 i,
.product-tabs i { display: inline-flex; align-items: center; }
.product-card-v2 i { gap: .45em; }
.product-card-v2 .huun-arrow { font-size: 15px; }
.product-tabs .huun-arrow { font-size: 17px; }
.motion-menu span { transition: transform .22s ease, opacity .22s ease; }

@media (max-width:980px) {
  html.huun-menu-open,
  body.huun-menu-open { overflow: hidden; overscroll-behavior: none; }
  body.huun-menu-open .motion-header {
    height: calc(78px + env(safe-area-inset-top));
    position: fixed !important;
    z-index: 200;
    top: 0;
    padding: env(safe-area-inset-top) 20px 0;
    isolation: isolate;
    border-bottom-color: rgba(255,255,255,.12);
    background: #060908;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
  body.huun-menu-open .motion-brand,
  body.huun-menu-open .motion-custom-logo { position: relative; z-index: 82; }
  body.huun-menu-open .motion-header .huundoor-logo { width: 164px; }
  .motion-nav {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    z-index: 79;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    padding: calc(92px + env(safe-area-inset-top)) 22px calc(32px + env(safe-area-inset-bottom));
    gap: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #060908;
    -webkit-overflow-scrolling: touch;
  }
  .motion-nav > a,
  .motion-nav__products summary,
  .motion-menu-list a {
    width: 100%;
    min-height: 52px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: clamp(21px,6.2vw,27px);
    line-height: 1;
  }
  .motion-nav :is(a,summary):focus-visible {
    outline: 0;
    box-shadow: inset 0 0 0 1px var(--accent);
  }
  .motion-nav__products,
  .motion-menu-list { width: 100%; }
  .motion-nav__products summary { cursor: pointer; }
  .motion-nav__submenu {
    width: 100%;
    margin: 0;
    padding: 4px 0 8px;
    border: 0;
    border-left: 2px solid var(--accent);
    background: #0a100d;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .motion-nav__submenu::before { display: none; }
  .motion-nav__submenu a { min-height: 42px; padding: 0 12px; font-size: 12px; }
  .motion-menu-list li { margin: 0; }
  .motion-nav .motion-fault-tab {
    min-height: 54px;
    margin-top: 16px;
    padding: 0 14px;
    border: 1px solid rgba(217,255,67,.52);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
  }
  .motion-nav .motion-contact {
    min-height: 56px;
    margin-top: 8px;
    padding: 0 14px;
    gap: 18px;
    border-color: var(--accent);
    color: var(--accent);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
  }
  .motion-menu { width: 44px; height: 44px; padding: 9px; }
  body.huun-menu-open .motion-menu { z-index: 83; }
  body.huun-menu-open .motion-menu span {
    position: absolute;
    top: 21px;
    left: 9px;
    margin: 0;
  }
  body.huun-menu-open .motion-menu span:first-child { transform: rotate(45deg); }
  body.huun-menu-open .motion-menu span:last-child { transform: rotate(-45deg); }
  body.huun-menu-open .service-dock {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(100%);
  }
}

@media (max-width:782px) {
  body.admin-bar.huun-menu-open .motion-header { top: 46px; }
  body.admin-bar.huun-menu-open .motion-nav {
    top: 46px;
    height: calc(100dvh - 46px);
    max-height: calc(100dvh - 46px);
  }
}

@media (min-width:783px) and (max-width:980px) {
  body.admin-bar.huun-menu-open .motion-header { top: 32px; }
  body.admin-bar.huun-menu-open .motion-nav {
    top: 32px;
    height: calc(100dvh - 32px);
    max-height: calc(100dvh - 32px);
  }
}

/* v1.18 — simplified service flow, purchasable accessory and visual quote */
.appointment-hero-action {
  min-height:52px;
  margin-top:24px;
  padding:0 20px;
  display:inline-flex;
  align-items:center;
  gap:26px;
  border:1px solid var(--accent);
  background:rgba(217,255,67,.08);
  color:var(--accent);
  font:800 11px 'Space Grotesk',sans-serif;
  letter-spacing:.05em;
  text-transform:uppercase;
}
.appointment-hero-action:hover { background:var(--accent); color:var(--accent-ink); }
.appointment-panel { min-width:0; scroll-margin-top:110px; }
.form-optional { margin:4px 0; border:1px solid var(--line); background:rgba(255,255,255,.025); }
.form-optional > summary { min-height:54px; padding:0 16px; display:flex; align-items:center; justify-content:space-between; gap:18px; color:#dfe6e2; cursor:pointer; font:700 11px 'Space Grotesk',sans-serif; list-style:none; }
.form-optional > summary::-webkit-details-marker { display:none; }
.form-optional > summary::after { color:var(--accent); content:'＋'; font-size:18px; }
.form-optional[open] > summary { border-bottom:1px solid var(--line); }
.form-optional[open] > summary::after { content:'−'; }
.form-optional > summary small { margin-left:auto; color:#7f8d86; font-size:9px; font-weight:600; }
.form-optional > .form-grid { padding:18px; }
.appointment-submit:disabled { opacity:.7; cursor:wait; }

.quote-preview__view-switch { padding:12px 18px; display:flex; gap:8px; border-bottom:1px solid var(--line); background:var(--surface-2); }
.quote-preview__view-switch button { min-height:38px; padding:0 16px; border:1px solid rgba(182,197,190,.28); background:transparent; color:#b7c1bc; cursor:pointer; font:700 10px/1 'Space Grotesk',sans-serif; letter-spacing:.08em; }
.quote-preview__view-switch button[aria-selected='true'] { border-color:var(--accent); background:var(--accent); color:var(--accent-ink); }
.quote-preview__scene { position:relative; min-height:320px; aspect-ratio:3/2; margin:0; overflow:hidden; border-bottom:1px solid var(--line); background:var(--surface); }
.quote-preview__scene > img { width:100%; height:100%; display:block; object-fit:cover; object-position:center; }
.quote-preview__scene figcaption { position:absolute; right:0; bottom:0; left:0; padding:64px 22px 20px; background:linear-gradient(180deg,transparent,rgba(3,8,6,.94)); color:#fff; }
.quote-preview__scene figcaption span { margin-bottom:7px; display:block; color:var(--accent); font:700 8px/1 'Space Grotesk',sans-serif; letter-spacing:.14em; }
.quote-preview__scene figcaption strong { display:block; font:600 19px/1.15 'Space Grotesk',sans-serif; }
.quote-preview__scene figcaption small { margin-top:7px; display:block; color:#b2bcb7; font:500 9px/1.5 'Space Grotesk',sans-serif; }

.accessory-list { grid-template-columns:repeat(6,minmax(0,1fr)); }
.accessory-card--purchasable { grid-column:span 2; min-height:620px; background:linear-gradient(145deg,rgba(217,255,67,.1),rgba(255,255,255,.018) 52%); }
.accessory-card--purchasable .accessory-icon { aspect-ratio:16/10; }
.accessory-card--purchasable .accessory-icon > img { object-fit:contain; background:#f1f3f0; }
.accessory-card--purchasable h3 { margin:22px 0 12px; font-size:28px; }
.accessory-card__specs { margin:20px 0 0; padding:0; display:grid; grid-template-columns:repeat(4,1fr); gap:1px; list-style:none; background:var(--line); }
.accessory-card__specs li { min-height:42px; padding:8px; display:grid; place-items:center; background:var(--surface); color:#dce4df; font:700 9px 'Space Grotesk',sans-serif; text-align:center; }
.accessory-card__price { margin-top:18px; display:grid; grid-template-columns:auto 1fr; align-items:baseline; gap:5px 12px; }
.accessory-card__price del { color:#77847e; font-size:13px; }
.accessory-card__price strong { color:var(--accent); font:700 30px/1 'Space Grotesk',sans-serif; }
.accessory-card__price small { grid-column:1 / -1; color:#78857e; font-size:9px; line-height:1.45; }
.accessory-card__actions { margin-top:18px; display:grid; grid-template-columns:.8fr 1.2fr; gap:8px; }
.accessory-card__actions a { min-height:48px; padding:9px 12px; display:flex; align-items:center; justify-content:center; border:1px solid var(--accent); color:var(--accent); font:800 9px/1.25 'Space Grotesk',sans-serif; text-align:center; text-transform:uppercase; }
.accessory-card__actions a:first-child { background:var(--accent); color:var(--accent-ink); }
.accessory-card__compatibility,.accessory-card__demo { margin-top:10px; border:1px solid var(--line); }
.accessory-card__compatibility summary,.accessory-card__demo summary { min-height:42px; padding:0 12px; display:flex; align-items:center; justify-content:space-between; color:#dce4df; cursor:pointer; font:700 9px 'Space Grotesk',sans-serif; list-style:none; }
.accessory-card__compatibility summary::after,.accessory-card__demo summary::after { color:var(--accent); content:'＋'; }
.accessory-card__compatibility[open] summary::after,.accessory-card__demo[open] summary::after { content:'−'; }
.accessory-card__compatibility img,.accessory-card__demo video { width:100%; height:auto; display:block; border-top:1px solid var(--line); background:#fff; }
.schneider-focus a + a { margin-left:8px; }
.service-dock__book { line-height:1.15; text-align:center; }

@media (max-width:1180px) {
  .accessory-list { grid-template-columns:repeat(3,minmax(0,1fr)); }
}
@media (max-width:980px) {
  .appointment-panel { order:-1; }
  .accessory-list { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .quote-preview__scene { min-height:360px; }
}
@media (max-width:640px) {
  .appointment-hero-action { width:100%; justify-content:space-between; }
  .form-optional > .form-grid { padding:14px; }
  .accessory-list { grid-template-columns:1fr; }
  .accessory-card--purchasable { grid-column:auto; min-height:0; }
  .accessory-card--purchasable h3 { font-size:25px; }
  .accessory-card__specs { grid-template-columns:repeat(2,1fr); }
  .accessory-card__actions { grid-template-columns:1fr; }
  .quote-preview__view-switch { padding:10px 12px; }
  .quote-preview__view-switch button { flex:1; padding:0 10px; }
  .quote-preview__scene { min-height:290px; aspect-ratio:4/3; }
  .quote-preview__scene figcaption { padding:55px 16px 16px; }
  .schneider-focus a { width:100%; justify-content:center; }
  .schneider-focus a + a { margin:8px 0 0; }
}

/* v1.20 — audit fixes: admin bar, dock, cookie and safe-area spacing */
.huun-global-breadcrumb { position:absolute; z-index:21; top:88px; right:0; left:0; color:#93a099; font:700 9px/1 'Space Grotesk',sans-serif; letter-spacing:.1em; text-transform:uppercase; }
.huun-global-breadcrumb .motion-wrap { display:flex; align-items:center; gap:9px; }
.huun-global-breadcrumb a { color:#c4cdc8; }
.huun-global-breadcrumb a:hover,.huun-global-breadcrumb a:focus-visible { color:var(--accent); }
.concept-d.has-service-dock .corporate-footer { padding-bottom:110px; }
.admin-bar .motion-header { top:32px; }
.admin-bar .page-tabs { top:32px; }
.admin-bar .huun-global-breadcrumb { top:120px; }
.hero-scene-nav { width:205px; }
.hero-scene-nav > div { grid-template-columns:repeat(5,minmax(24px,1fr)) 30px; align-items:center; }
.hero-scene-nav .hero-motion-toggle { width:30px; min-width:30px; height:30px; margin-left:4px; display:inline-grid; place-items:center; border:1px solid rgba(255,255,255,.28); background:rgba(4,8,6,.72); color:#fff; cursor:pointer; font:700 11px/1 'Space Grotesk',sans-serif; }
.hero-scene-nav .hero-motion-toggle::after { display:none; }
.hero-motion-toggle:hover,.hero-motion-toggle:focus-visible { border-color:var(--accent); color:var(--accent); }

@media (min-width:781px) and (max-width:1180px) {
  .has-service-dock .huun-cookie { bottom:94px; }
}

@media (max-width:782px) {
  .admin-bar .motion-header { top:46px; }
  .admin-bar .page-tabs { top:46px; }
  .admin-bar .huun-global-breadcrumb { top:134px; }
}

@media (max-width:640px) {
	.huun-global-breadcrumb { top:82px; overflow:hidden; white-space:nowrap; }
	.huun-global-breadcrumb .motion-wrap { overflow:hidden; text-overflow:ellipsis; }
  body.concept-d.has-service-dock { padding-bottom:calc(62px + env(safe-area-inset-bottom)); }
  .service-dock { grid-template-columns:1.1fr .9fr; padding-bottom:env(safe-area-inset-bottom); }
  .concept-d.has-service-dock .corporate-footer { padding-bottom:calc(86px + env(safe-area-inset-bottom)); }
}
