:root {
  --ink: #070708;
  --panel: #101012;
  --panel-2: #161619;
  --line: rgba(255, 255, 255, 0.11);
  --text: #f4f1ec;
  --muted: #9d9ca2;
  --orange: #ff3300;
  --cyan: #20d4e8;
  --cream: #ece5da;
  --max: 1240px;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-top: 78px;
  color: var(--text);
  background: var(--ink);
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.17'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--orange); color: white; }

.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.section-sm { padding: 72px 0; }
.section-dark { background: #0b0b0d; }
.section-light { color: #121214; background: var(--cream); }
.section-light .muted { color: #5f5c58; }
.hairline { border-top: 1px solid var(--line); }
.muted { color: var(--muted); }
.accent { color: var(--orange); }
.cyan { color: var(--cyan); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.display {
  margin: 0;
  max-width: 1000px;
  font-size: clamp(44px, 7vw, 104px);
  line-height: .94;
  letter-spacing: -.06em;
  font-weight: 700;
}
.display em { color: var(--orange); font-family: Georgia, serif; font-weight: 400; }
.title {
  margin: 0;
  max-width: 800px;
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.subtitle { max-width: 670px; margin: 24px 0 0; font-size: clamp(17px, 2vw, 21px); line-height: 1.7; color: var(--muted); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 54px; }
.section-head p { max-width: 440px; margin: 0; line-height: 1.7; color: var(--muted); }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 78px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 8, .78);
  backdrop-filter: blur(20px);
  transition: background .25s, box-shadow .25s;
}
.site-header.scrolled { background: rgba(7, 7, 8, .95); box-shadow: 0 12px 40px rgba(0,0,0,.28); }
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 32px; }
.logo { display: inline-flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 800; letter-spacing: .08em; white-space: nowrap; }
.logo-mark { display: grid; place-items: center; width: 36px; height: 36px; color: #fff; background: var(--orange); font-size: 13px; letter-spacing: -.04em; clip-path: polygon(0 0,100% 0,100% 74%,75% 100%,0 100%); }
.logo span:last-child { background: linear-gradient(90deg,#fff 42%,#ff405d); -webkit-background-clip: text; color: transparent; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 26px; margin-left: auto; }
.main-nav a { position: relative; padding: 28px 0; color: #bbb9bd; font-size: 13px; font-weight: 700; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; background: var(--orange); transform: scaleX(0); transition: transform .2s; }
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 19px; height: 2px; margin: 5px auto; background: #fff; transition: .25s; }
.menu-toggle.active span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:last-child { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s, background .2s, border-color .2s;
}
.btn::after { content: "↗"; font-size: 17px; }
.btn:hover { transform: translateY(-3px); background: #ff4c20; }
.btn-outline { border-color: rgba(255,255,255,.35); background: transparent; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-dark { background: #111; }
.header-cta { min-height: 42px; padding-inline: 18px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: #070708;
}
.hero-bg { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(5,5,6,.95) 0%, rgba(5,5,6,.78) 42%, rgba(5,5,6,.12) 77%), linear-gradient(0deg, rgba(5,5,6,.8), transparent 55%); }
.hero-inner { position: relative; z-index: 2; padding-block: clamp(80px, 11vh, 128px); }
.hero-copy { max-width: 850px; }
.hero .display { max-width: 780px; }
.hero .subtitle { max-width: 590px; color: #c6c2c2; }
.hero-index { position: absolute; z-index: 2; right: 34px; bottom: 40px; color: rgba(255,255,255,.5); font-size: 12px; letter-spacing: .14em; writing-mode: vertical-rl; }
.scroll-cue { position: absolute; z-index: 2; right: 34px; top: 110px; width: 1px; height: 130px; background: linear-gradient(var(--orange), transparent); }

.trust-strip { background: #0d0d0f; border-block: 1px solid var(--line); }
.trust-grid { min-height: 112px; display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); align-items: center; }
.trust-label { font-size: 11px; color: var(--muted); letter-spacing: .15em; text-transform: uppercase; }
.trust-item { min-height: 58px; display: flex; flex-direction: column; justify-content: center; padding-left: 28px; border-left: 1px solid var(--line); }
.trust-item strong { font-size: 17px; }
.trust-item span { margin-top: 5px; color: #77777d; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.card { position: relative; padding: 34px; border: 1px solid var(--line); background: var(--panel); border-radius: var(--radius); overflow: hidden; transition: transform .25s, border-color .25s; }
.card:hover { transform: translateY(-6px); border-color: rgba(255,51,0,.55); }
.card-no { display: block; margin-bottom: 58px; color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.card h3 { margin: 0 0 16px; font-size: 25px; line-height: 1.15; letter-spacing: -.025em; }
.card p { margin: 0; color: var(--muted); line-height: 1.7; }
.card-link { display: inline-flex; gap: 10px; margin-top: 28px; color: #fff; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.card-link:hover { color: var(--orange); }

.split { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(42px, 7vw, 100px); }
.visual { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--panel); box-shadow: var(--shadow); }
.visual img { height: 100%; min-height: 520px; object-fit: cover; }
.visual-tag { position: absolute; left: 22px; bottom: 22px; padding: 12px 15px; background: rgba(7,7,8,.86); border: 1px solid var(--line); backdrop-filter: blur(12px); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.quote-mark { margin: 0 0 32px; color: var(--orange); font-family: Georgia, serif; font-size: 76px; line-height: .5; }
.big-quote { margin: 0; font-size: clamp(29px, 4vw, 54px); line-height: 1.12; letter-spacing: -.035em; }
.facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 52px; background: var(--line); border: 1px solid var(--line); }
.fact { padding: 26px; background: #0c0c0e; }
.fact strong { display: block; color: var(--orange); font-size: 34px; letter-spacing: -.04em; }
.fact span { color: var(--muted); font-size: 12px; }

.art-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 18px; }
.art-card { position: relative; grid-column: span 4; min-height: 500px; overflow: hidden; background: var(--panel); border-radius: var(--radius); }
.art-card.wide { grid-column: span 8; }
.art-card img { height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .6s; }
.art-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.86), transparent 58%); }
.art-card:hover img { transform: scale(1.045); }
.art-card > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.art-card:hover > video { transform: scale(1.035); }
.art-card-content { position: absolute; z-index: 2; right: 28px; bottom: 26px; left: 28px; }
.art-card small { color: #d8d4cf; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.art-card h3 { margin: 8px 0 0; font-size: 27px; }

.testimonial-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.testimonial-main { padding: 48px; min-height: 420px; display: flex; flex-direction: column; justify-content: space-between; background: var(--panel); border-radius: var(--radius); }
.testimonial-main blockquote { margin: 0; font-size: clamp(25px, 3vw, 40px); line-height: 1.25; letter-spacing: -.025em; }
.person { display: flex; align-items: center; gap: 14px; }
.avatar { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--orange); font-weight: 800; }
.person strong, .person span { display: block; }
.person span { margin-top: 3px; color: var(--muted); font-size: 12px; }
.testimonial-side { display: grid; grid-template-rows: 1fr 1fr; gap: 18px; }
.mini-quote { padding: 32px; background: var(--panel-2); border-radius: var(--radius); }
.mini-quote p { margin: 0 0 24px; line-height: 1.65; }

.cta-panel { position: relative; overflow: hidden; padding: clamp(48px, 8vw, 100px); border: 1px solid rgba(255,255,255,.13); background: radial-gradient(circle at 80% 20%, rgba(255,51,0,.28), transparent 32%), #111114; border-radius: 28px; }
.cta-panel::after { content: "XM/26"; position: absolute; right: -20px; bottom: -72px; color: rgba(255,255,255,.035); font-size: clamp(120px, 22vw, 300px); font-weight: 900; letter-spacing: -.09em; }
.cta-panel > * { position: relative; z-index: 1; }

.page-hero { position: relative; padding: 128px 0 90px; border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero::after { content: attr(data-index); position: absolute; right: 3vw; bottom: -7vw; color: rgba(255,255,255,.035); font-size: 30vw; font-weight: 900; line-height: 1; }
.page-hero .display { max-width: 980px; }
.page-hero-image { min-height: 680px; display: flex; align-items: end; }
.page-hero-image::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg,rgba(5,5,6,.92),rgba(5,5,6,.3)), linear-gradient(0deg,rgba(5,5,6,.82),transparent); }
.page-hero-image > img,.page-hero-image > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-image .container { position: relative; z-index: 2; }

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 42px; }
.filter-btn { min-height: 42px; padding: 0 18px; color: var(--muted); border: 1px solid var(--line); background: transparent; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.filter-btn:hover, .filter-btn.active { color: #fff; border-color: var(--orange); background: var(--orange); }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px 18px; }
.product-card { transition: opacity .25s, transform .25s; }
.product-card.hidden { display: none; }
.product-media { aspect-ratio: 1/1; overflow: hidden; border-radius: 18px; background: var(--panel); }
.product-media img { height: 100%; object-fit: cover; transition: transform .55s; }
.product-media video,.real-media video { display: block; width: 100%; height: 100%; object-fit: cover; }
.real-media { position: relative; overflow: hidden; }
.real-media::after { content:"Material Reference"; position:absolute; z-index:3; right:10px; bottom:10px; padding:7px 8px; color:#fff; border:1px solid rgba(255,255,255,.18); background:rgba(5,5,6,.72); font-size:7px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.product-card:hover .product-media img { transform: scale(1.04); }
.product-meta { display: flex; justify-content: space-between; gap: 20px; padding: 18px 4px 0; }
.product-meta h2, .product-meta h3 { margin: 0; font-size: 20px; }
.product-meta p { margin: 6px 0 0; color: var(--muted); font-size: 12px; }
.product-meta a { align-self: start; color: var(--orange); font-size: 22px; }

.manifesto { padding: clamp(48px,7vw,90px); background: var(--orange); color: #fff; border-radius: var(--radius); }
.manifesto p { max-width: 1000px; margin: 0; font-family: Georgia,serif; font-size: clamp(34px,5.7vw,78px); line-height: 1.05; letter-spacing: -.04em; }
.dual-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.dual-card { padding: clamp(36px,6vw,72px); background: var(--panel); }
.dual-card + .dual-card { border-left: 1px solid var(--line); background: #0d0d0f; }
.dual-age { display: block; color: var(--orange); font-size: clamp(80px,11vw,150px); font-weight: 900; line-height: .82; letter-spacing: -.09em; }
.dual-card h3 { margin: 34px 0 16px; font-size: 28px; }
.dual-card p { color: var(--muted); line-height: 1.8; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.service-item { min-height: 300px; padding: 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0d0d0f; }
.service-item:nth-child(3n) { border-right: 0; }
.service-item:nth-last-child(-n+3) { border-bottom: 0; }
.service-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 60px; border: 1px solid rgba(255,51,0,.5); color: var(--orange); font-weight: 800; }
.service-item h3 { margin: 0 0 14px; font-size: 22px; }
.service-item p { margin: 0; color: var(--muted); line-height: 1.65; }
.process { counter-reset: step; }
.process-step { counter-increment: step; display: grid; grid-template-columns: 120px 1fr 1fr; gap: 32px; padding: 36px 0; border-top: 1px solid var(--line); align-items: start; }
.process-step::before { content: "0" counter(step); color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.process-step h3 { margin: 0; font-size: 24px; }
.process-step p { margin: 0; color: var(--muted); line-height: 1.7; }
.faq-list { max-width: 930px; margin: 0 auto; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 30px; padding: 28px 2px; cursor: pointer; font-size: 19px; font-weight: 700; list-style: none; }
.faq-list summary::after { content: "+"; color: var(--orange); font-size: 25px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; margin: -4px 0 28px; color: var(--muted); line-height: 1.8; }

.featured-post { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 540px; overflow: hidden; background: var(--panel); border-radius: var(--radius); }
.featured-post img { height: 100%; object-fit: cover; }
.post-copy { padding: clamp(34px,5vw,66px); display: flex; flex-direction: column; justify-content: center; }
.post-copy h2 { margin: 18px 0; font-size: clamp(30px,4vw,52px); line-height: 1.08; letter-spacing: -.035em; }
.post-copy p { color: var(--muted); line-height: 1.75; }
.post-tag { color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 34px 18px; }
.blog-card { border-top: 1px solid var(--line); padding-top: 18px; }
.blog-card { position: relative; }
.blog-card::before,.featured-post::after { content:"Material Pack Image"; position:absolute; z-index:4; top:30px; right:12px; padding:7px 9px; color:#fff; background:rgba(7,7,8,.76); border:1px solid rgba(255,255,255,.18); font-size:8px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.featured-post { position: relative; }
.featured-post::after { top:16px; right:auto; left:16px; }
.blog-card img { aspect-ratio: 16/10; object-fit: cover; border-radius: 14px; margin-bottom: 22px; }
.blog-card h2, .blog-card h3 { margin: 10px 0 12px; font-size: 23px; line-height: 1.24; }
.blog-card p { color: var(--muted); line-height: 1.65; }
.blog-card time { color: #77777e; font-size: 11px; letter-spacing: .08em; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px,8vw,110px); }
.contact-info { display: flex; flex-direction: column; gap: 30px; }
.contact-block { padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.contact-block small { display: block; margin-bottom: 10px; color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-block a, .contact-block p { margin: 0; font-size: 18px; line-height: 1.6; }
.socials { display: flex; flex-wrap: wrap; gap: 10px; }
.socials a { padding: 11px 14px; border: 1px solid var(--line); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.socials a:hover { border-color: var(--orange); color: var(--orange); }
.contact-form { padding: clamp(30px,5vw,58px); background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field.full { grid-column: 1/-1; }
.field label { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; padding: 15px 0; color: #fff; border: 0; border-bottom: 1px solid #3a3a3e; outline: 0; background: transparent; }
.field select option { color: #111; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { margin: 18px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.form-status { min-height: 24px; margin-top: 16px; color: var(--cyan); font-size: 13px; }
.map-frame { width: 100%; height: 460px; border: 0; filter: grayscale(1) invert(.88) contrast(1.15); }
.map-wrap { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }

.site-footer { padding: 80px 0 32px; border-top: 1px solid var(--line); background: #080809; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1fr; gap: 60px; }
.footer-brand p { max-width: 340px; margin: 22px 0 0; color: var(--muted); line-height: 1.65; }
.footer-col h2, .footer-col h3 { margin: 0 0 22px; color: #77777d; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.footer-col a, .footer-col span { display: block; margin: 12px 0; color: #c4c1c4; font-size: 14px; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 72px; padding-top: 26px; border-top: 1px solid var(--line); color: #66666c; font-size: 11px; letter-spacing: .04em; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .main-nav { position: fixed; inset: 78px 0 auto; display: block; padding: 20px 24px 28px; background: #0a0a0c; border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform .3s; }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { display: block; padding: 15px 0; font-size: 16px; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .trust-grid { grid-template-columns: repeat(2,1fr); padding: 24px 0; }
  .trust-label { grid-column: 1/-1; margin-bottom: 18px; }
  .trust-item { padding: 15px; border-left: 0; border-top: 1px solid var(--line); }
  .grid-3, .product-grid, .blog-grid { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .split, .featured-post, .contact-layout { grid-template-columns: 1fr; }
  .visual img { min-height: 430px; }
  .art-card, .art-card.wide { grid-column: span 6; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .service-item:nth-child(3n) { border-right: 1px solid var(--line); }
  .service-item:nth-child(2n) { border-right: 0; }
  .service-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .service-item:nth-last-child(-n+2) { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 680px) {
  body { padding-top: 68px; }
  .container { width: min(calc(100% - 30px), var(--max)); }
  .section { padding: 78px 0; }
  .site-header { height: 68px; }
  .main-nav { top: 68px; }
  .logo { font-size: 13px; }
  .logo-mark { width: 33px; height: 33px; }
  .display { font-size: clamp(44px, 15vw, 68px); }
  .title { font-size: clamp(36px,11vw,50px); }
  .hero { min-height: 760px; }
  .hero::before { background: linear-gradient(0deg,rgba(5,5,6,.96) 0%,rgba(5,5,6,.7) 65%,rgba(5,5,6,.25)); }
  .hero-bg { object-position: 63% center; }
  .hero-inner { padding-block: 72px 64px; }
  .hero-index, .scroll-cue { display: none; }
  .actions .btn { flex: 1 1 100%; }
  .section-head { display: block; }
  .section-head p { margin-top: 22px; }
  .trust-grid, .grid-3, .grid-4, .product-grid, .blog-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .card { padding: 28px; }
  .card-no { margin-bottom: 38px; }
  .art-card, .art-card.wide { grid-column: 1/-1; min-height: 430px; }
  .testimonial-main { padding: 32px; min-height: 380px; }
  .testimonial-main blockquote { font-size: 25px; }
  .page-hero { padding: 90px 0 70px; }
  .page-hero-image { min-height: 720px; }
  .page-hero-image::before { background: linear-gradient(0deg,rgba(5,5,6,.94),rgba(5,5,6,.35)); }
  .dual-grid, .service-grid { grid-template-columns: 1fr; }
  .dual-card + .dual-card { border-left: 0; border-top: 1px solid var(--line); }
  .service-item, .service-item:nth-child(2n), .service-item:nth-child(3n) { min-height: 260px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-item:last-child { border-bottom: 0; }
  .service-icon { margin-bottom: 40px; }
  .process-step { grid-template-columns: 58px 1fr; }
  .process-step p { grid-column: 2; }
  .featured-post { min-height: auto; }
  .featured-post img { min-height: 320px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 30px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { display: block; line-height: 1.7; }
}

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

/* Conversion system v2 */
.scroll-progress { position: fixed; z-index: 1300; top: 0; left: 0; width: 100%; height: 3px; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg,var(--orange),#ff7857); pointer-events: none; }
.cursor-glow { position: fixed; z-index: -1; top: -260px; left: -260px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle,rgba(255,51,0,.09),transparent 68%); pointer-events: none; transition: transform .08s linear; }
[data-parallax] { transform: translate3d(0,var(--parallax-y,0),0) scale(1.05); will-change: transform; }
.wa-float { position: fixed; z-index: 1200; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 10px; min-height: 54px; padding: 7px 16px 7px 7px; color: #fff; background: #14a45b; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; box-shadow: 0 16px 44px rgba(0,0,0,.38); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: transform .2s,background .2s; }
.wa-float:hover { transform: translateY(-4px); background: #18b965; }
.showroom-float { position: fixed; z-index: 1190; right: 22px; bottom: 88px; min-width: 210px; min-height: 62px; padding: 9px 13px; display: flex; align-items: center; gap: 11px; color: #fff; border: 1px solid rgba(255,255,255,.2); background: rgba(10,10,12,.82); backdrop-filter: blur(16px); box-shadow: 0 18px 50px rgba(0,0,0,.34); transition: transform .25s,border-color .25s; }
.showroom-float:hover { transform: translateY(-4px); border-color: var(--orange); }
.showroom-float-orb { width: 36px; height: 36px; flex: 0 0 auto; border-radius: 50%; background: radial-gradient(circle at 35% 30%,#ffad94,var(--orange) 24%,#3a0b00 60%,#050506 63%); box-shadow: 0 0 0 1px rgba(255,255,255,.16),0 0 24px rgba(255,51,0,.35); animation: showroomOrb 4s ease-in-out infinite; }
@keyframes showroomOrb { 50% { transform: rotate(180deg) scale(.9); box-shadow: 0 0 0 7px rgba(255,51,0,.05),0 0 34px rgba(255,51,0,.55); } }
.showroom-float span:nth-child(2) { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.showroom-float small { display: block; margin-bottom: 4px; color: #77777d; font-size: 7px; letter-spacing: .13em; }
.showroom-float b { margin-left: auto; color: var(--orange); }
.wa-icon { position: relative; z-index: 1; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: #fff; color: #128c4f; font-size: 11px; }
.wa-pulse { position: absolute; left: 8px; width: 38px; height: 38px; border: 1px solid #fff; border-radius: 50%; animation: waPulse 2.2s infinite; }
@keyframes waPulse { 0%{transform:scale(.85);opacity:.8} 70%,100%{transform:scale(1.65);opacity:0} }
.concept-media { position: relative; overflow: hidden; }
.concept-media::after { content: "Concept Rendering"; position: absolute; z-index: 3; right: 14px; bottom: 14px; padding: 8px 10px; color: #fff; background: rgba(7,7,8,.78); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(10px); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.tilt-card { transform-style: preserve-3d; transition: transform .22s ease,border-color .22s; will-change: transform; }
.tilt-card > * { transform: translateZ(1px); }

.procurement-paths { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 42px; }
.path-card { min-height: 180px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); background: rgba(16,16,18,.78); border-radius: 16px; transition: .25s; }
.path-card:hover { border-color: var(--orange); background: #171719; transform: translateY(-5px); }
.path-card small { color: var(--orange); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.path-card strong { font-size: 20px; line-height: 1.2; }
.process-compare { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.process-type { padding: 36px; background: #0e0e10; }
.process-type.featured { background: linear-gradient(145deg,rgba(255,51,0,.18),#111114 55%); }
.process-type h3 { margin: 18px 0 8px; font-size: 26px; }
.process-type p { min-height: 82px; color: var(--muted); line-height: 1.65; }
.decision-list { margin: 26px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.decision-list li { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.decision-list strong { color: #fff; text-align: right; }

.catalog-layout { display: grid; grid-template-columns: 250px 1fr; gap: 34px; align-items: start; }
.filter-panel { position: sticky; top: 100px; padding: 25px; border: 1px solid var(--line); background: #0d0d0f; border-radius: 18px; }
.filter-panel h2 { margin: 0 0 24px; font-size: 18px; }
.filter-group { margin-top: 22px; }
.filter-group label { display: block; margin-bottom: 9px; color: #8d8c92; font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.filter-group select { width: 100%; min-height: 44px; padding: 0 12px; color: #fff; border: 1px solid #323238; background: #151518; outline: 0; }
.filter-group select:focus { border-color: var(--orange); }
.text-button { padding: 0; color: var(--muted); border: 0; background: transparent; font-size: 11px; text-decoration: underline; cursor: pointer; }
.mobile-filter-toggle { display: none; width: 100%; margin-bottom: 18px; }
.catalog-main .product-grid { grid-template-columns: repeat(3,1fr); }
.catalog-topline { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; color: var(--muted); font-size: 12px; }
.trade-card { border: 1px solid var(--line); padding-bottom: 20px; background: #0c0c0e; border-radius: 18px; overflow: hidden; }
.trade-card .product-media { border-radius: 0; }
.trade-card-body { padding: 18px 18px 0; }
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 13px; }
.product-tags span { padding: 6px 8px; color: #c7c4c2; border: 1px solid #34343a; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.product-tags span:first-child { color: var(--orange); border-color: rgba(255,51,0,.5); }
.trade-card h2,.trade-card h3 { margin: 0; font-size: 19px; }
.sku { display: block; margin-top: 5px; color: #77777e; font-size: 10px; letter-spacing: .08em; }
.buy-data { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 18px 0; }
.buy-data div { padding: 10px; background: #141417; }
.buy-data small,.buy-data strong { display: block; }
.buy-data small { color: #77777e; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.buy-data strong { margin-top: 5px; font-size: 11px; }
.card-actions { display: flex; gap: 8px; }
.card-actions .btn { flex: 1; min-height: 42px; padding: 0 10px; font-size: 9px; }
.card-actions .icon-button { width: 43px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.card-actions .icon-button:hover,.card-actions .icon-button.added { color: var(--orange); border-color: var(--orange); }

.project-drawer { position: fixed; z-index: 1250; top: 0; right: 0; width: min(420px,100%); height: 100dvh; padding: 28px; display: flex; flex-direction: column; background: #0b0b0d; border-left: 1px solid var(--line); box-shadow: -30px 0 90px rgba(0,0,0,.55); transform: translateX(105%); transition: transform .32s ease; }
.project-drawer.open { transform: translateX(0); }
.project-drawer-head { display: flex; justify-content: space-between; align-items: start; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.project-drawer-head small { color: var(--orange); text-transform: uppercase; letter-spacing: .12em; }
.project-drawer-head h2 { margin: 5px 0 0; }
.project-drawer-head button { color: #fff; border: 0; background: transparent; font-size: 30px; cursor: pointer; }
.project-items { flex: 1; overflow: auto; padding: 16px 0; }
.project-item { display: flex; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.project-item strong,.project-item span { display: block; }
.project-item span { margin-top: 5px; color: var(--muted); font-size: 11px; }
.project-item button { color: var(--muted); border: 0; background: transparent; cursor: pointer; }
.project-empty { color: var(--muted); line-height: 1.7; }
.project-drawer-foot { display: grid; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.project-list-trigger { position: fixed; z-index: 1100; left: 22px; bottom: 22px; min-height: 48px; padding: 0 16px; border: 1px solid var(--line); background: rgba(12,12,14,.88); backdrop-filter: blur(12px); color: #fff; cursor: pointer; }
.project-list-trigger b { display: inline-grid; place-items: center; min-width: 22px; height: 22px; margin-left: 7px; border-radius: 50%; background: var(--orange); }

.vr-stage { --vr-x:0deg; --vr-y:0deg; position: relative; min-height: 590px; perspective: 1200px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: radial-gradient(circle at 50% 35%,#25252b,#0b0b0d 62%); }
.vr-room { position: absolute; inset: 8% 5%; transform-style: preserve-3d; transform: rotateX(var(--vr-x)) rotateY(var(--vr-y)); transition: transform .12s linear; }
.vr-frame { position: absolute; top: 12%; width: 31%; aspect-ratio: 1/1.15; padding: 8px; background: #050505; box-shadow: 0 35px 55px rgba(0,0,0,.5); transform-style: preserve-3d; }
.vr-frame::after { content:""; position:absolute; inset:8px; box-shadow: inset 0 0 30px rgba(255,255,255,.08); }
.vr-frame img { height: 100%; object-fit: cover; }
.vr-frame:nth-child(1){left:5%;transform:translateZ(40px) rotateY(12deg)}
.vr-frame:nth-child(2){left:34.5%;transform:translateZ(100px)}
.vr-frame:nth-child(3){right:5%;transform:translateZ(40px) rotateY(-12deg)}
.vr-floor { position: absolute; right: -10%; bottom: -35%; left: -10%; height: 65%; background: linear-gradient(180deg,#1b1b1f,#09090a); transform: rotateX(68deg); }
.vr-label { position: absolute; z-index: 3; left: 24px; bottom: 24px; padding: 12px 14px; border: 1px solid var(--line); background: rgba(5,5,6,.75); backdrop-filter: blur(10px); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.pdp-hero { padding: 62px 0 90px; }
.pdp-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: start; }
.pdp-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pdp-gallery figure { margin: 0; min-height: 260px; border-radius: 16px; overflow: hidden; background: var(--panel); }
.pdp-gallery figure:first-child { grid-column: 1/-1; min-height: 600px; }
.pdp-gallery img { height: 100%; object-fit: cover; transition: transform .6s; }
.pdp-gallery figure:hover img { transform: scale(1.04); }
.pdp-buy { position: sticky; top: 104px; padding: 36px; border: 1px solid var(--line); background: #0d0d0f; border-radius: var(--radius); }
.pdp-buy h1 { margin: 12px 0; font-size: clamp(38px,4vw,60px); line-height: 1; letter-spacing: -.05em; }
.pdp-value { color: #c6c3c0; line-height: 1.65; }
.purchase-facts { display: grid; grid-template-columns: 1fr 1fr; margin: 28px 0; border: 1px solid var(--line); }
.purchase-facts div { padding: 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.purchase-facts div:nth-child(2n){border-right:0}.purchase-facts div:nth-last-child(-n+2){border-bottom:0}
.purchase-facts small,.purchase-facts strong { display: block; }
.purchase-facts small { color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.purchase-facts strong { margin-top: 7px; font-size: 13px; }
.option-group { margin-top: 18px; }
.option-group > label { display: block; margin-bottom: 8px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.option-group select { width: 100%; min-height: 48px; padding: 0 12px; color: white; border: 1px solid #34343a; background: #161619; }
.config-summary { margin: 18px 0 0; color: var(--cyan); font-size: 11px; line-height: 1.5; }
.anchor-nav { position: sticky; z-index: 900; top: 78px; overflow-x: auto; border-block: 1px solid var(--line); background: rgba(7,7,8,.92); backdrop-filter: blur(16px); }
.anchor-nav .container { display: flex; gap: 28px; }
.anchor-nav a { flex: 0 0 auto; padding: 18px 0; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.anchor-nav a:hover { color: var(--orange); }
.spec-table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); }
.spec-table th,.spec-table td { padding: 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.spec-table th { width: 32%; color: #8b8a90; background: #101012; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.spec-table td { background: #0c0c0e; }
.inquiry-panel { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.select-field { width: 100%; min-height: 50px; padding: 0 12px; color: #fff; border: 0; border-bottom: 1px solid #3a3a3e; background: transparent; }
.file-field { padding: 18px; border: 1px dashed #49494f; background: rgba(255,255,255,.02); }
.form-status { line-height: 1.6; }
.form-status a { color: var(--orange); text-decoration: underline; }

@media (max-width:980px) {
  .procurement-paths { grid-template-columns: repeat(2,1fr); }
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-panel { position: fixed; z-index: 1240; right: 0; bottom: 0; left: 0; top: auto; border-radius: 22px 22px 0 0; transform: translateY(105%); transition: transform .3s; }
  .filter-panel.open { transform: translateY(0); }
  .mobile-filter-toggle { display: inline-flex; }
  .catalog-main .product-grid { grid-template-columns: repeat(2,1fr); }
  .pdp-grid,.inquiry-panel { grid-template-columns: 1fr; }
  .pdp-buy { position: static; }
}
@media (max-width:680px) {
  .wa-float { right: 14px; bottom: 14px; padding-right: 7px; }
  .showroom-float { right: 14px; bottom: 77px; min-width: 0; min-height: 50px; padding: 6px; }
  .showroom-float > span:nth-child(2),.showroom-float > b { display: none; }
  .showroom-float-orb { width: 38px; height: 38px; }
  .wa-label { display: none; }
  .project-list-trigger { left: 14px; bottom: 14px; }
  .procurement-paths,.process-compare,.catalog-main .product-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 145px; }
  .process-type p { min-height: 0; }
  .vr-stage { min-height: 420px; }
  .vr-frame { top: 19%; width: 38%; }
  .vr-frame:nth-child(1){left:-5%}.vr-frame:nth-child(2){left:31%}.vr-frame:nth-child(3){right:-5%}
  .pdp-gallery figure:first-child { min-height: 440px; }
  .pdp-gallery figure { min-height: 190px; }
  .anchor-nav { top: 68px; }
  .purchase-facts { grid-template-columns: 1fr; }
  .purchase-facts div,.purchase-facts div:nth-child(2n),.purchase-facts div:nth-last-child(-n+2){border-right:0;border-bottom:1px solid var(--line)}
  .purchase-facts div:last-child{border-bottom:0}
}

/* Immersive showroom */
.showroom-body { height: 100dvh; padding: 0; overflow: hidden; background: #050506; }
.showroom-intro { position: fixed; z-index: 3000; inset: 0; display: grid; place-items: center; overflow: hidden; background: #050506; transition: opacity .75s, transform .9s cubic-bezier(.7,0,.2,1); }
.showroom-intro.exiting { opacity: 0; transform: scale(1.08); pointer-events: none; }
.showroom-intro[hidden] { display: none; }
.showroom-intro > img,.showroom-intro > video { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:saturate(.82) contrast(1.08); animation:showroomIntroDrift 14s ease-in-out infinite alternate; }
@keyframes showroomIntroDrift { to { transform:scale(1.07) translate3d(-1%,1%,0); } }
.showroom-intro-shade { position: absolute; inset: 0; background: radial-gradient(circle at 70% 45%,transparent 0 18%,rgba(5,5,6,.22) 42%,rgba(5,5,6,.92) 88%),linear-gradient(90deg,rgba(5,5,6,.94),rgba(5,5,6,.15)); }
.showroom-intro-copy { position: relative; z-index: 2; width: min(1280px,calc(100% - 72px)); }
.showroom-intro-copy h1 { max-width: 980px; margin: 0; font-size: clamp(64px,9vw,150px); line-height: .84; letter-spacing: -.075em; }
.showroom-intro-copy h1 em { color: var(--orange); font-family: Georgia,serif; font-weight: 400; }
.showroom-intro-copy p { max-width: 560px; margin: 34px 0; color: #c1bec0; font-size: 18px; line-height: 1.65; }
.showroom-intro-copy small { display: block; margin-top: 18px; color: #77777e; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.showroom-shell { position: relative; width: 100%; height: 100dvh; overflow: hidden; }
.showroom-topbar { position: fixed; z-index: 40; top: 0; right: 0; left: 0; height: 78px; padding: 0 30px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.1); background: linear-gradient(180deg,rgba(5,5,6,.92),transparent); }
.showroom-actions { display: flex; align-items: center; gap: 8px; }
.showroom-actions button,.showroom-actions a { min-height: 40px; padding: 0 14px; display: inline-flex; align-items: center; color: #d2cfd0; border: 1px solid rgba(255,255,255,.18); background: rgba(9,9,10,.55); backdrop-filter: blur(12px); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.showroom-actions button:hover,.showroom-actions a:hover { color: #fff; border-color: var(--orange); }
.showroom-zone-nav { position:absolute; left:50%; display:flex; gap:4px; transform:translateX(-50%); }
.showroom-zone-nav button { min-height:40px; padding:0 18px; border:0; background:transparent; color:#77777e; font:800 9px/1 Manrope,sans-serif; letter-spacing:.1em; text-transform:uppercase; cursor:pointer; }
.showroom-zone-nav button.active { color:#fff; background:rgba(255,255,255,.09); }
.showroom-video-zone { position:absolute; inset:78px 0 0; overflow-y:auto; padding:90px max(30px,5vw) 100px; background:radial-gradient(circle at 78% 12%,rgba(255,95,0,.12),transparent 28%),#070708; color:#fff; }
.showroom-video-heading { max-width:1500px; margin:0 auto 80px; }
.showroom-video-heading h2 { max-width:920px; margin:10px 0 24px; font-size:clamp(54px,7vw,110px); line-height:.9; letter-spacing:-.065em; }
.showroom-video-heading p { max-width:700px; margin:0 0 26px; color:#aaa8ad; font-size:16px; line-height:1.7; }
.showroom-video-departments { max-width:1500px; margin:auto; display:grid; gap:90px; }
.showroom-film-department { display:grid; grid-template-columns:minmax(260px,.55fr) minmax(0,1.45fr); gap:55px; padding-top:34px; border-top:1px solid rgba(255,255,255,.15); }
.showroom-film-department > header span { color:var(--orange); font-size:9px; font-weight:800; letter-spacing:.15em; text-transform:uppercase; }
.showroom-film-department > header h2 { margin:10px 0 16px; font-size:clamp(30px,4vw,58px); line-height:.98; }
.showroom-film-department > header p { color:#8e8e94; font-size:12px; line-height:1.65; }
.showroom-film-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:28px 12px; }
.showroom-film-department.handpaint .showroom-film-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
.showroom-film-card > div { position:relative; aspect-ratio:16/10; overflow:hidden; background:#111; }
.showroom-film-card video { width:100%; height:100%; object-fit:cover; }
.showroom-film-card > div > span { position:absolute; top:10px; left:10px; padding:6px 8px; background:rgba(0,0,0,.65); color:#fff; font-size:8px; }
.showroom-film-card h3 { margin:12px 0 5px; font-size:15px; }
.showroom-film-card p { margin:0; color:#74747a; font-size:9px; text-transform:uppercase; letter-spacing:.08em; }
.showroom-gallery-zone { position:absolute; inset:78px 0 0; }
.showroom-viewport { position: absolute; inset: 0; overflow: hidden; outline: 0; perspective: 1400px; background: radial-gradient(ellipse at 50% 34%,#252529 0,#111113 38%,#050506 75%); }
.showroom-ambient { position: absolute; inset: 0; background: radial-gradient(circle at 50% 38%,rgba(255,255,255,.12),transparent 19%),linear-gradient(90deg,rgba(255,51,0,.06),transparent 25% 75%,rgba(32,212,232,.035)); animation: showroomBreath 7s ease-in-out infinite alternate; }
@keyframes showroomBreath { to { opacity: .55; transform: scale(1.08); } }

/* Two-direction catalog and imported hand-painted collection */
.hero-static .hero-bg { filter: saturate(.82) contrast(1.06) brightness(.72); }
.home-showroom-teaser > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:saturate(.75) contrast(1.08); }
.process-compare-two { grid-template-columns: minmax(0,1.65fr) minmax(280px,.75fr); }
.direction-grid { display:grid; grid-template-columns:minmax(0,1.65fr) minmax(300px,.75fr); gap:24px; align-items:stretch; }
.direction-card { position:relative; min-height:680px; overflow:hidden; color:#fff; text-decoration:none; background:#111; }
.direction-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .8s cubic-bezier(.2,.7,.2,1); }
.direction-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.82)); }
.direction-card:hover img { transform:scale(1.045); }
.direction-card-copy { position:absolute; z-index:1; inset:auto 38px 38px; }
.direction-card-copy span,.catalog-card-copy > span { display:block; margin-bottom:12px; color:var(--orange); font-size:11px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.direction-card-copy h2 { max-width:720px; margin:0 0 16px; font-size:clamp(38px,5.4vw,78px); line-height:.94; }
.direction-print .direction-card-copy h2 { font-size:clamp(34px,3.8vw,58px); }
.direction-card-copy p { max-width:630px; color:rgba(255,255,255,.76); }
.direction-card-copy strong { display:inline-block; margin-top:14px; color:#fff; }
.direction-note { max-width:850px; margin:24px 0 0; color:var(--muted); font-size:13px; }
.featured-category-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.featured-category-grid a { position:relative; min-height:300px; overflow:hidden; color:#fff; }
.featured-category-grid img { width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.featured-category-grid a::after { content:""; position:absolute; inset:0; background:linear-gradient(transparent 40%,rgba(0,0,0,.78)); }
.featured-category-grid a:hover img { transform:scale(1.05); }
.featured-category-grid span { position:absolute; z-index:1; left:22px; bottom:20px; font-size:22px; font-weight:700; }
.compare-table { border-top:1px solid var(--line); }
.compare-row { display:grid; grid-template-columns:.6fr 1fr 1fr; gap:30px; padding:24px 0; border-bottom:1px solid var(--line); align-items:start; }
.compare-row > span { color:var(--muted); font-size:12px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.compare-row p { margin:0; }
.compare-head strong { font-size:20px; }
.printed-hero { background:linear-gradient(90deg,rgba(0,0,0,.86),rgba(0,0,0,.25)),url('images/digital-printing-concept.webp') center/cover; }
.handpainted-hero { min-height:76vh; background:linear-gradient(90deg,rgba(0,0,0,.88),rgba(0,0,0,.2)),url('media-pack/handpaint-20.jpg') center 44%/cover; }
.collection-directory { padding-bottom:30px; }
.collection-family { margin-bottom:72px; }
.collection-family .section-head { margin-bottom:22px; }
.collection-family h2 { margin:0; font-size:clamp(28px,3vw,46px); }
.collection-link-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.collection-link-grid a { min-height:116px; padding:24px; display:flex; flex-direction:column; justify-content:space-between; gap:14px; color:var(--ink); border-right:1px solid var(--line); border-bottom:1px solid var(--line); transition:background .25s,color .25s; }
.collection-link-grid a:hover { background:var(--ink); color:#fff; }
.collection-link-grid span { color:var(--muted); font-size:12px; }
.catalog-toolbar { position:sticky; top:78px; z-index:4; display:grid; grid-template-columns:1.35fr 1fr auto; gap:18px; align-items:end; margin:-30px 0 42px; padding:22px; background:rgba(246,245,242,.94); border:1px solid var(--line); backdrop-filter:blur(18px); }
.catalog-toolbar label { display:grid; gap:8px; }
.catalog-toolbar label span { color:var(--muted); font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.catalog-toolbar input,.catalog-toolbar select { width:100%; min-height:50px; padding:0 15px; border:1px solid var(--line); background:#fff; color:var(--ink); font:inherit; }
.catalog-toolbar strong { min-width:130px; padding-bottom:14px; text-align:right; }
.catalog-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:34px 18px; }
.catalog-card { min-width:0; }
.catalog-card-image { display:block; aspect-ratio:4/5; overflow:hidden; background:#ddd; }
.catalog-card-image img { width:100%; height:100%; object-fit:cover; transition:transform .65s cubic-bezier(.2,.7,.2,1); }
.catalog-card:hover .catalog-card-image img { transform:scale(1.04); }
.catalog-card-copy { padding:18px 2px 0; }
.catalog-card-copy h3 { margin:0 0 9px; font-size:17px; line-height:1.35; }
.catalog-card-copy h3 a { color:inherit; }
.catalog-card-copy p { margin:0 0 15px; color:var(--muted); font-size:12px; }
.catalog-reference-price { display:grid; gap:3px; margin:0 0 17px; padding:12px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.catalog-reference-price small { color:var(--muted); font-size:9px; letter-spacing:.06em; text-transform:uppercase; }
.catalog-reference-price strong { color:var(--ink); font-size:14px; }
.catalog-card .card-actions { align-items:center; justify-content:space-between; gap:10px; }
.catalog-card .add-project { border:0; background:none; color:var(--muted); font:700 10px/1 inherit; letter-spacing:.05em; text-transform:uppercase; cursor:pointer; }
.catalog-pagination { display:flex; justify-content:center; align-items:center; gap:22px; margin-top:55px; }
.catalog-pagination button { min-width:110px; min-height:44px; border:1px solid var(--ink); background:transparent; font-weight:700; cursor:pointer; }
.catalog-pagination button:disabled { opacity:.3; cursor:not-allowed; }
.product-detail-shell { padding:120px 0 90px; }
.breadcrumbs { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:34px; color:var(--muted); font-size:12px; }
.breadcrumbs a { color:inherit; }
.imported-product { display:grid; grid-template-columns:minmax(0,1.12fr) minmax(380px,.88fr); gap:64px; align-items:start; }
.imported-main-image { min-height:680px; background:#eee; }
.imported-main-image img { width:100%; height:100%; max-height:820px; object-fit:contain; }
.product-thumbs { display:grid; grid-template-columns:repeat(5,1fr); gap:9px; margin-top:10px; }
.product-thumb { aspect-ratio:1; padding:0; overflow:hidden; border:1px solid transparent; background:#eee; cursor:pointer; }
.product-thumb.active { border-color:var(--orange); }
.product-thumb img { width:100%; height:100%; object-fit:cover; }
.imported-product-copy { position:sticky; top:105px; }
.imported-product-copy h1 { margin:12px 0 10px; font-size:clamp(34px,4vw,62px); line-height:1.02; }
.product-code { color:var(--muted); font-size:12px; letter-spacing:.08em; text-transform:uppercase; }
.product-reference-price { display:grid; gap:6px; margin:18px 0 24px; padding:18px; border:1px solid var(--line); background:#fff; }
.product-reference-price span { color:var(--orange); font-size:10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.product-reference-price strong { font-size:25px; }
.product-reference-price small { color:var(--muted); font-size:10px; line-height:1.5; }
.spec-list { margin:30px 0; border-top:1px solid var(--line); }
.spec-list div { display:grid; grid-template-columns:125px 1fr; gap:16px; padding:12px 0; border-bottom:1px solid var(--line); }
.spec-list dt { color:var(--muted); font-size:12px; }
.spec-list dd { margin:0; font-weight:600; }
.spec-block { margin-top:25px; }
.spec-block h2 { margin:0 0 12px; font-size:16px; }
.spec-block > p { color:var(--muted); font-size:11px; }
.spec-chips { display:flex; flex-wrap:wrap; gap:8px; max-height:155px; overflow:auto; }
.spec-chips span { padding:8px 10px; border:1px solid var(--line); font-size:11px; }

/* Product-card alternate scene, configurator and persistent quote cart */
.catalog-card-image { position:relative; }
.catalog-card-image .catalog-card-primary,.catalog-card-image .catalog-card-hover { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.catalog-card-image .catalog-card-primary { z-index:1; }
.catalog-card-image .catalog-card-hover { z-index:2; opacity:0; transform:scale(1.02); transition:opacity .38s ease,transform .7s cubic-bezier(.2,.7,.2,1); }
.catalog-card-image:hover .catalog-card-hover.ready { opacity:1; transform:scale(1.055); }
.catalog-card-image:hover .catalog-card-primary { transform:none; }
body.modal-open { overflow:hidden; }
.inquiry-configurator { position:fixed; z-index:2700; inset:0; display:grid; place-items:center; padding:28px; opacity:0; visibility:hidden; transition:opacity .25s,visibility .25s; }
.inquiry-configurator.open { opacity:1; visibility:visible; }
.inquiry-configurator-backdrop { position:absolute; inset:0; background:rgba(3,3,5,.86); backdrop-filter:blur(18px); }
.inquiry-configurator-panel { position:relative; z-index:1; width:min(1120px,100%); max-height:calc(100dvh - 56px); overflow:auto; display:grid; grid-template-columns:minmax(320px,.82fr) minmax(440px,1.18fr); background:#0b0b0d; border:1px solid rgba(255,255,255,.16); box-shadow:0 60px 160px rgba(0,0,0,.65); color:#fff; }
.inquiry-close { position:absolute; z-index:3; top:14px; right:16px; width:44px; height:44px; border:1px solid rgba(255,255,255,.25); border-radius:50%; background:rgba(0,0,0,.45); color:#fff; font-size:25px; cursor:pointer; }
.inquiry-product-preview { min-height:650px; display:grid; grid-template-rows:1fr auto; background:#151518; }
.inquiry-product-canvas { position:relative; display:grid; place-items:center; margin:38px; padding:22px; background:#e8e5df; box-shadow:0 28px 70px rgba(0,0,0,.4); transition:padding .25s,background .25s,box-shadow .25s; }
.inquiry-product-canvas::after { content:""; position:absolute; inset:8px; pointer-events:none; border:0 solid transparent; transition:border .25s,box-shadow .25s; }
.inquiry-product-canvas[data-selected-finish="Black Frame"]::after { border-width:11px; border-color:#131313; box-shadow:inset 0 0 0 1px #555; }
.inquiry-product-canvas[data-selected-finish="Gold Frame"]::after { border-width:11px; border-color:#a77b2d; box-shadow:inset 0 0 0 1px #e5c977; }
.inquiry-product-canvas[data-selected-finish="Silver Frame"]::after { border-width:11px; border-color:#96989a; box-shadow:inset 0 0 0 1px #e7e7e7; }
.inquiry-product-canvas[data-selected-finish="Wood Frame"]::after { border-width:11px; border-color:#8e6742; box-shadow:inset 0 0 0 1px #c89c6b; }
.inquiry-product-canvas[data-selected-finish="White Frame"]::after { border-width:11px; border-color:#f7f7f4; box-shadow:inset 0 0 0 1px #cfcfc9; }
.inquiry-product-canvas > img { width:100%; height:100%; max-height:460px; object-fit:contain; }
.inquiry-product-preview > div:last-child { padding:28px; border-top:1px solid var(--line); }
.inquiry-product-preview span { color:var(--orange); font-size:10px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.inquiry-product-preview h2 { margin:8px 0 10px; font-size:24px; }
.inquiry-product-preview p { margin:0 0 8px; color:#fff; font-size:13px; line-height:1.5; }
.inquiry-product-preview small { color:var(--muted); font-size:11px; line-height:1.55; }
.inquiry-reference-price { display:grid; gap:4px; margin-top:18px; padding-top:16px; border-top:1px solid #343439; }
.inquiry-reference-price span { color:#a8a8ae; }
.inquiry-reference-price strong { color:#fff; font-size:22px; }
.inquiry-reference-price small { font-size:9px; }
.inquiry-config-form { padding:42px 38px 38px; }
.config-group { margin:0 0 28px; padding:0 0 25px; border:0; border-bottom:1px solid #303036; }
.config-group legend,.config-notes > span,.custom-size-field > span,.inquiry-upload > span { margin-bottom:10px; color:#f1f1f1; font-size:13px; font-weight:800; }
.config-help { margin:2px 0 14px; color:#8f8f96; font-size:11px; line-height:1.55; }
.size-option-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:7px; max-height:240px; padding-right:4px; overflow:auto; }
.size-choice input,.finish-choice input,.text-choice input,.design-source-grid input { position:absolute; opacity:0; pointer-events:none; }
.size-choice > span,.text-choice > span { display:flex; min-height:43px; align-items:center; padding:9px 11px; border:1px solid #39393f; background:#111115; color:#c9c9ce; cursor:pointer; transition:border-color .2s,background .2s,color .2s; }
.size-choice strong,.text-choice strong { font-size:10px; line-height:1.35; }
.size-choice input:checked + span,.text-choice input:checked + span { border-color:var(--orange); background:rgba(255,95,0,.11); color:#fff; }
.size-choice.custom > span { border-style:dashed; }
.custom-size-field,.inquiry-upload,.config-notes { display:flex; flex-direction:column; margin-top:14px; }
.finish-option-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:9px; }
.finish-choice > span { display:grid; gap:7px; padding:7px; border:1px solid #39393f; background:#111115; cursor:pointer; transition:border-color .2s,transform .2s; }
.finish-choice img { width:100%; aspect-ratio:1.55; object-fit:cover; background:#e7e4dd; }
.finish-choice strong { min-height:28px; color:#c9c9ce; font-size:10px; line-height:1.35; }
.finish-choice input:checked + span { border-color:var(--orange); transform:translateY(-2px); }
.finish-choice input:checked + span strong { color:#fff; }
.finish-explainer { display:flex; gap:10px; margin-top:12px; padding:12px; background:#151519; }
.finish-explainer strong { flex:0 0 100px; color:var(--orange); font-size:10px; }
.finish-explainer span { color:#9c9ca3; font-size:10px; line-height:1.5; }
.text-option-grid,.design-source-grid { display:flex; flex-wrap:wrap; gap:8px; }
.text-choice > span { min-height:38px; }
.compact-option-grid { display:grid; grid-template-columns:1fr 1fr 100px; gap:12px; }
.compact-option-grid label { display:flex; flex-direction:column; gap:7px; }
.compact-option-grid label > span { color:#a6a6ac; font-size:10px; }
.design-source-grid label > span { display:block; padding:12px 14px; border:1px solid #39393f; color:#ccc; cursor:pointer; font-size:11px; }
.design-source-grid input:checked + span { border-color:var(--orange); background:rgba(255,95,0,.11); color:#fff; }
.inquiry-config-form select,.inquiry-config-form input[type="number"],.inquiry-config-form input[type="text"],.inquiry-config-form input[type="file"],.inquiry-config-form textarea,.custom-size-field input { width:100%; min-height:46px; padding:11px; border:1px solid #35353a; background:#121216; color:#fff; font:inherit; }
.inquiry-config-form select option { color:#111; }
.config-notes textarea { min-height:110px; resize:vertical; }
.inquiry-upload small { color:var(--muted); font-size:10px; }
.inquiry-form-status { min-height:20px; margin:18px 0 0; color:var(--cyan); font-size:12px; }
.quote-cart-item { align-items:flex-start; }
.quote-cart-item > img { width:74px; height:88px; flex:0 0 auto; object-fit:cover; background:#eee; }
.quote-cart-item > div { flex:1; min-width:0; }
.quote-cart-item small { display:block; margin-top:6px; color:#77777d; font-size:10px; }
.project-drawer-foot .disabled { opacity:.35; pointer-events:none; }
.quote-cart-form-summary { margin:30px 0; padding:22px; border:1px solid #3a3a3e; background:rgba(255,255,255,.025); }
.quote-cart-form-summary h3 { margin:6px 0 18px; font-size:20px; }
.quote-cart-form-summary article { display:grid; grid-template-columns:58px 1fr; gap:14px; padding:12px 0; border-top:1px solid #303035; align-items:center; }
.quote-cart-form-summary article img { width:58px; height:68px; object-fit:cover; }
.quote-cart-form-summary article strong,.quote-cart-form-summary article span,.quote-cart-form-summary article small { display:block; }
.quote-cart-form-summary article span { margin-top:4px; color:#aaaab0; font-size:11px; }
.quote-cart-form-summary article small { margin-top:4px; color:#707077; font-size:10px; }

/* Original Artvista collection scenes used across launch pages */
.artvista-archive { overflow:hidden; background:#0b0b0c; color:#fff; }
.artvista-archive .section-head p { color:#929298; }
.artvista-archive-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; }
.artvista-archive-grid:has(.archive-art-card:nth-child(4)) { grid-template-columns:repeat(4,minmax(0,1fr)); }
.archive-art-card { position:relative; min-height:480px; display:flex; flex-direction:column; justify-content:flex-end; padding:24px; overflow:hidden; color:#fff; background:#151518; }
.archive-art-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 35%,rgba(0,0,0,.84)); }
.archive-art-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .8s cubic-bezier(.2,.7,.2,1),filter .5s; }
.archive-art-card:hover img { transform:scale(1.045); filter:saturate(1.08); }
.archive-art-card span,.archive-art-card strong,.archive-art-card small { position:relative; z-index:1; }
.archive-art-card span { margin-bottom:9px; color:var(--orange); font-size:9px; font-weight:800; letter-spacing:.11em; text-transform:uppercase; }
.archive-art-card strong { font-size:19px; line-height:1.28; }
.archive-art-card small { margin-top:13px; color:#c2c2c6; font-size:10px; }
.error-page { min-height:100dvh; display:grid; grid-template-columns:1.15fr .85fr; background:#0b0b0d; color:#fff; }
.error-page-art { min-height:620px; overflow:hidden; }
.error-page-art img { width:100%; height:100%; object-fit:cover; }
.error-page-copy { display:flex; flex-direction:column; justify-content:center; align-items:flex-start; padding:8vw; }
.error-page-copy .logo { margin-bottom:80px; color:#fff; }
.error-page-copy h1 { max-width:620px; margin:14px 0 22px; font-size:clamp(48px,6vw,96px); line-height:.92; }
.error-page-copy p { max-width:580px; color:#aaaab0; line-height:1.7; }

@media (max-width: 980px) {
  .direction-grid,.process-compare-two,.imported-product { grid-template-columns:1fr; }
  .direction-card { min-height:560px; }
  .direction-print { min-height:460px; }
  .featured-category-grid { grid-template-columns:repeat(2,1fr); }
  .collection-link-grid { grid-template-columns:repeat(2,1fr); }
  .catalog-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .catalog-toolbar { top:68px; grid-template-columns:1fr 1fr; }
  .catalog-toolbar strong { text-align:left; padding:0; }
  .imported-product-copy { position:static; }
  .inquiry-configurator-panel { grid-template-columns:1fr; }
  .inquiry-product-preview { min-height:0; grid-template-columns:220px 1fr; grid-template-rows:auto; }
  .inquiry-product-canvas { min-height:190px; margin:20px; padding:12px; }
  .inquiry-product-preview > div:last-child { border-top:0; border-left:1px solid var(--line); }
  .artvista-archive-grid,.artvista-archive-grid:has(.archive-art-card:nth-child(4)) { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width: 640px) {
  .direction-card { min-height:520px; }
  .direction-card-copy { inset:auto 22px 24px; }
  .featured-category-grid { grid-template-columns:1fr; }
  .featured-category-grid a { min-height:250px; }
  .compare-row { grid-template-columns:1fr; gap:8px; }
  .compare-head { display:none; }
  .collection-link-grid { grid-template-columns:1fr; }
  .catalog-toolbar { position:relative; top:auto; grid-template-columns:1fr; margin:-20px 0 28px; }
  .catalog-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:28px 10px; }
  .catalog-card-copy h3 { font-size:14px; }
  .catalog-card .card-actions { align-items:flex-start; flex-direction:column; }
  .product-detail-shell { padding-top:95px; }
  .imported-main-image { min-height:420px; }
  .product-thumbs { grid-template-columns:repeat(4,1fr); }
  .spec-list div { grid-template-columns:100px 1fr; }
  .inquiry-configurator { padding:0; }
  .inquiry-configurator-panel { width:100%; height:100dvh; max-height:none; border:0; }
  .inquiry-product-preview { grid-template-columns:110px 1fr; }
  .inquiry-product-canvas { min-height:128px; margin:10px; padding:6px; }
  .inquiry-product-preview > div:last-child { padding:18px 54px 18px 16px; }
  .inquiry-product-preview h2 { font-size:17px; }
  .inquiry-product-preview p { display:none; }
  .inquiry-config-form { padding:24px 18px 34px; }
  .size-option-grid { grid-template-columns:1fr; max-height:210px; }
  .finish-option-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .compact-option-grid { grid-template-columns:1fr; }
  .inquiry-config-form .actions { align-items:stretch; flex-direction:column; }
  .archive-art-card { min-height:360px; padding:18px; }
  .archive-art-card strong { font-size:15px; }
  .error-page { grid-template-columns:1fr; }
  .error-page-art { min-height:42dvh; }
  .error-page-copy { padding:48px 22px 70px; }
  .error-page-copy .logo { margin-bottom:44px; }
}
.showroom-ceiling { position: absolute; top: -31%; right: -5%; left: -5%; height: 58%; transform: rotateX(-69deg); transform-origin: bottom; background: repeating-linear-gradient(90deg,transparent 0 19.7%,rgba(255,255,255,.06) 20% 20.1%),linear-gradient(#17171a,#080809); box-shadow: inset 0 -70px 100px rgba(0,0,0,.72); }
.showroom-floor { position: absolute; z-index: 1; right: -18%; bottom: -43%; left: -18%; height: 75%; transform: rotateX(67deg); transform-origin: top; background: repeating-linear-gradient(90deg,transparent 0 12.4%,rgba(255,255,255,.04) 12.5%),repeating-linear-gradient(0deg,transparent 0 19.8%,rgba(255,255,255,.035) 20%),linear-gradient(#19191c,#050506 70%); box-shadow: inset 0 90px 100px rgba(0,0,0,.55); }
.showroom-vignette { position: absolute; z-index: 20; inset: 0; pointer-events: none; background: radial-gradient(ellipse at center,transparent 35%,rgba(0,0,0,.22) 66%,rgba(0,0,0,.78)); }
.showroom-world { --look-x:0deg; --look-y:0deg; --drag-y:0deg; position: absolute; z-index: 5; inset: 10% 0 12%; transform-style: preserve-3d; transform: rotateX(var(--look-x)) rotateY(calc(var(--look-y) + var(--drag-y))) translateZ(-70px); transition: transform .18s linear; }
.vr-gallery-room { position: absolute; inset: 0; transform-style: preserve-3d; opacity: 0; visibility: hidden; transform: translateZ(-420px) scale(.82); transition: opacity .55s,transform .8s cubic-bezier(.2,.8,.2,1),visibility 0s .8s; }
.vr-gallery-room.active { opacity: 1; visibility: visible; transform: translateZ(0) scale(1); transition-delay: 0s; }
.vr-gallery-wall { position: absolute; top: 3%; left: 50%; width: min(1780px,120vw); height: 76%; transform: translateX(-50%) translateZ(-300px); border: 1px solid rgba(255,255,255,.06); background: linear-gradient(90deg,#101012,#1a1a1d 50%,#101012); box-shadow: inset 0 0 120px rgba(0,0,0,.58),0 60px 90px rgba(0,0,0,.42); }
.vr-artwork { position: absolute; top: 10%; left: 50%; width: 230px; height: min(49vh,430px); padding: 10px; overflow: visible; border: 0; background: #050506; box-shadow: 0 42px 60px rgba(0,0,0,.55),0 0 0 1px rgba(255,255,255,.18); transform-style: preserve-3d; transform: translateX(calc(-50% + var(--art-x))) translateZ(var(--art-z)) rotateY(var(--art-ry)); cursor: zoom-in; opacity: 0; transition: transform .4s,box-shadow .4s,opacity .5s var(--delay); }
.vr-gallery-room.active .vr-artwork { opacity: 1; }
.vr-artwork:hover { transform: translateX(calc(-50% + var(--art-x))) translateZ(calc(var(--art-z) + 70px)) rotateY(var(--art-ry)) scale(1.035); box-shadow: 0 55px 90px rgba(0,0,0,.72),0 0 0 1px rgba(255,51,0,.7); }
.vr-artwork img { width: 100%; height: 100%; object-fit: cover; }
.vr-art-light { position: absolute; z-index: -1; top: -80px; left: 50%; width: 180%; height: 210px; transform: translateX(-50%) rotateX(70deg); background: radial-gradient(ellipse,rgba(255,255,255,.2),transparent 64%); pointer-events: none; }
.vr-art-label { position: absolute; top: calc(100% + 18px); left: 0; color: #aaa7aa; font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; white-space: nowrap; }
.showroom-meta { position: fixed; z-index: 30; bottom: 40px; left: 34px; max-width: 360px; pointer-events: none; }
.showroom-meta > span { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.showroom-meta h2 { margin: 8px 0; font-size: clamp(24px,3vw,44px); line-height: 1; letter-spacing: -.045em; }
.showroom-meta p { margin: 0; color: #8f8d92; font-size: 11px; line-height: 1.5; }
.showroom-nav { position: fixed; z-index: 35; right: 34px; bottom: 40px; display: flex; align-items: center; gap: 13px; }
.showroom-nav > button { width: 46px; height: 46px; color: #fff; border: 1px solid rgba(255,255,255,.2); background: rgba(5,5,6,.6); backdrop-filter: blur(10px); cursor: pointer; }
.showroom-nav > button:hover { border-color: var(--orange); color: var(--orange); }
.showroom-nav div { display: flex; gap: 7px; }
.showroom-nav div button { width: 22px; height: 3px; padding: 0; border: 0; background: #55555b; cursor: pointer; transition: width .25s,background .25s; }
.showroom-nav div button.active { width: 42px; background: var(--orange); }
.showroom-hint { position: fixed; z-index: 30; right: 34px; bottom: 99px; margin: 0; color: #6f6e73; font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.showroom-art-modal { position: fixed; z-index: 2500; inset: 0; padding: 7vh 7vw; display: grid; place-items: center; background: rgba(3,3,4,.9); backdrop-filter: blur(20px); opacity: 0; visibility: hidden; transition: .35s; }
.showroom-art-modal.open { opacity: 1; visibility: visible; }
.showroom-art-modal > button,.process-cinema > header button { position: absolute; z-index: 3; top: 24px; right: 28px; width: 52px; height: 52px; color: #fff; border: 1px solid rgba(255,255,255,.2); background: rgba(5,5,6,.6); font-size: 27px; cursor: pointer; }
.showroom-art-modal figure { width: min(1100px,100%); height: min(78vh,850px); margin: 0; display: grid; grid-template-columns: 1fr 300px; background: #0c0c0e; border: 1px solid rgba(255,255,255,.15); box-shadow: 0 50px 150px #000; }
.showroom-art-modal figure img { width: 100%; height: 100%; min-height: 0; object-fit: contain; background: #050506; }
.showroom-art-modal figcaption { padding: 34px; display: flex; flex-direction: column; justify-content: end; border-left: 1px solid var(--line); }
.showroom-art-modal figcaption span { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.showroom-art-modal figcaption strong { margin: 10px 0 28px; font-size: 30px; line-height: 1; }
.process-cinema { position: fixed; z-index: 2400; inset: 0; padding: 90px 5vw 70px; overflow: auto; background: #070708; opacity: 0; visibility: hidden; transform: translateY(30px); transition: .45s; }
.process-cinema.open { opacity: 1; visibility: visible; transform: none; }
.process-cinema > header { position: relative; max-width: 1500px; margin: 0 auto 38px; }
.process-cinema > header h2 { margin: 0; font-size: clamp(42px,7vw,96px); letter-spacing: -.06em; }
.process-film-grid { max-width: 1500px; margin: auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 32px 16px; }
.process-film { position: relative; }
.process-film video { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: #111; border: 1px solid #29292e; }
.process-film span { display: block; margin-top: 12px; color: var(--orange); font-size: 9px; letter-spacing: .14em; }
.process-film h3 { margin: 6px 0 0; font-size: 17px; }
.showroom-noscript { position: fixed; z-index: 5000; inset: 0; display: grid; place-items: center; margin: 0; background: #050506; }

@media (max-width:800px) {
  .showroom-intro-copy { width: calc(100% - 36px); }
  .showroom-intro-copy h1 { font-size: clamp(54px,18vw,82px); }
  .showroom-intro-copy p { font-size: 15px; }
  .showroom-topbar { height: 66px; padding: 0 14px; }
  .showroom-topbar .logo span:last-child { display: none; }
  .showroom-zone-nav { position:static; transform:none; }
  .showroom-zone-nav button { min-height:34px; padding:0 8px; font-size:7px; }
  .showroom-actions { gap: 5px; }
  .showroom-actions button,.showroom-actions a { min-height: 36px; padding: 0 9px; font-size: 7px; }
  .showroom-actions [data-fullscreen] { display:none; }
  .showroom-video-zone { inset:66px 0 0; padding:58px 18px 70px; }
  .showroom-video-heading { margin-bottom:55px; }
  .showroom-video-heading h2 { font-size:clamp(46px,15vw,72px); }
  .showroom-film-department { grid-template-columns:1fr; gap:22px; }
  .showroom-film-grid,.showroom-film-department.handpaint .showroom-film-grid { grid-template-columns:1fr; }
  .showroom-gallery-zone { inset:66px 0 0; }
  .showroom-world { inset: 10% 0 19%; transform: none; }
  .vr-gallery-room,.vr-gallery-room.active { inset: 4% 0 0; padding: 44px 15vw 70px; display: flex; gap: 20px; align-items: center; overflow-x: auto; scroll-snap-type: x mandatory; transform: none; }
  .vr-gallery-room:not(.active) { display: none; }
  .vr-gallery-wall { display: none; }
  .vr-artwork,.vr-artwork:hover { position: relative; top: auto; left: auto; flex: 0 0 68vw; width: 68vw; height: 48vh; transform: perspective(900px) rotateY(-4deg); scroll-snap-align: center; }
  .vr-artwork:nth-of-type(even),.vr-artwork:nth-of-type(even):hover { transform: perspective(900px) rotateY(4deg); }
  .showroom-meta { right: 18px; bottom: 96px; left: 18px; max-width: none; }
  .showroom-meta h2 { font-size: 26px; }
  .showroom-meta p { display: none; }
  .showroom-nav { right: 16px; bottom: 24px; left: 16px; justify-content: space-between; }
  .showroom-hint { display: none; }
  .showroom-art-modal { padding: 74px 14px 20px; }
  .showroom-art-modal figure { height: 78vh; grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  .showroom-art-modal figcaption { padding: 18px; border-top: 1px solid var(--line); border-left: 0; }
  .showroom-art-modal figcaption strong { margin: 6px 0 14px; font-size: 23px; }
  .process-cinema { padding: 80px 15px 50px; }
  .process-film-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion:reduce) {
  .showroom-ambient { animation: none; }
  .showroom-world,.vr-gallery-room,.vr-artwork,.showroom-intro { transition: none; }
}

/* Real-media immersive sections */
.hero-film .hero-bg { filter: saturate(.82) contrast(1.12); }
.hero-film::before { background: linear-gradient(90deg,rgba(5,5,6,.94) 0%,rgba(5,5,6,.62) 48%,rgba(5,5,6,.25)),linear-gradient(0deg,rgba(5,5,6,.8),transparent 48%); }
.home-showroom-teaser { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background: #080809; }
.home-showroom-teaser > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.45) contrast(1.12); }
.home-showroom-shade { position: absolute; inset: 0; background: radial-gradient(circle at 70% 42%,transparent 0 20%,rgba(6,6,7,.28) 48%,rgba(6,6,7,.94) 92%),linear-gradient(90deg,rgba(6,6,7,.9),transparent 70%); }
.home-showroom-copy { position: relative; z-index: 2; }
.home-showroom-copy h2 { max-width: 930px; margin: 0; font-size: clamp(56px,8vw,126px); line-height: .88; letter-spacing: -.07em; }
.home-showroom-copy h2 em { color: var(--orange); font-family: Georgia,serif; font-weight: 400; }
.home-showroom-copy p { max-width: 620px; color: #bbb8bb; font-size: 18px; line-height: 1.7; }
.home-showroom-coordinate { position: absolute; z-index: 2; right: 28px; bottom: 28px; color: rgba(255,255,255,.42); font-size: 8px; font-weight: 800; letter-spacing: .18em; }
.process-media { position: relative; overflow: hidden; aspect-ratio: 4/3; margin: -36px -36px 28px; background: #09090a; }
.process-media img,.process-media video { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.process-type:hover .process-media img,.process-type:hover .process-media video { transform: scale(1.045); }
.process-media > span { position: absolute; right: 10px; bottom: 10px; padding: 7px 9px; color: #fff; border: 1px solid rgba(255,255,255,.18); background: rgba(5,5,6,.72); backdrop-filter: blur(8px); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.route-balance { margin:22px 0 28px; padding:0; display:grid; gap:10px; list-style:none; }
.route-balance li { padding:12px 0; color:#aaaab0; border-top:1px solid rgba(255,255,255,.13); font-size:11px; line-height:1.55; }
.route-balance strong { display:block; margin-bottom:4px; color:var(--orange); font-size:9px; letter-spacing:.1em; text-transform:uppercase; }
.route-positioning { background:#111113; color:#fff; }
.route-print { background:#eceae5; color:var(--ink); }
.route-position-grid { display:grid; grid-template-columns:1fr 1fr; border:1px solid rgba(255,255,255,.16); }
.route-print .route-position-grid { border-color:var(--line); }
.route-position-grid article { min-height:260px; padding:42px; }
.route-position-grid article + article { border-left:1px solid rgba(255,255,255,.16); }
.route-print .route-position-grid article + article { border-color:var(--line); }
.route-position-grid article.tradeoff { background:rgba(255,255,255,.045); }
.route-print .route-position-grid article.tradeoff { background:#dedbd4; }
.route-position-grid span { color:var(--orange); font-size:9px; font-weight:800; letter-spacing:.13em; text-transform:uppercase; }
.route-position-grid h3 { margin:14px 0; font-size:clamp(25px,3vw,42px); line-height:1; }
.route-position-grid p { max-width:620px; color:#9a9aa0; line-height:1.65; }
.route-print .route-position-grid p { color:var(--muted); }

@media (max-width:680px) {
  .home-showroom-teaser { min-height: 820px; }
  .home-showroom-copy h2 { font-size: clamp(50px,16vw,75px); }
  .home-showroom-copy p { font-size: 15px; }
  .process-media { margin: -36px -36px 24px; }
  .route-position-grid { grid-template-columns:1fr; }
  .route-position-grid article { min-height:0; padding:28px 22px; }
  .route-position-grid article + article { border-top:1px solid rgba(255,255,255,.16); border-left:0; }
}

.real-process-hero::after { content:"Real Process Film"; position:absolute; z-index:4; right:18px; bottom:18px; padding:8px 10px; color:#fff; border:1px solid rgba(255,255,255,.18); background:rgba(5,5,6,.72); font-size:8px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.real-process-hero > video { filter: saturate(.75) contrast(1.12); }
.process-portrait { position: relative; min-height: 92svh; display: flex; align-items: center; overflow: hidden; background:#070708; }
.process-portrait > video { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:saturate(.78) contrast(1.08); }
.process-portrait-shade { position:absolute; inset:0; background:linear-gradient(90deg,rgba(6,6,7,.94),rgba(6,6,7,.48) 52%,rgba(6,6,7,.1)),linear-gradient(0deg,rgba(6,6,7,.75),transparent); }
.process-portrait-copy { position:relative; z-index:2; }
.process-portrait-copy h2 { max-width:900px; margin:0; font-size:clamp(52px,7vw,110px); line-height:.9; letter-spacing:-.065em; }
.process-portrait-copy p { max-width:590px; color:#b9b6ba; line-height:1.7; }
.evidence-carousel { display:grid; grid-auto-flow:column; grid-auto-columns:minmax(250px,1fr); gap:12px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:14px; }
.evidence-carousel figure { position:relative; min-height:370px; margin:0; overflow:hidden; border:1px solid var(--line); background:#111; scroll-snap-align:start; }
.evidence-carousel img { width:100%; height:100%; object-fit:cover; transition:transform .6s; }
.evidence-carousel figure:hover img { transform:scale(1.04); }
.evidence-carousel figcaption { position:absolute; right:10px; bottom:10px; left:10px; padding:11px; color:#fff; background:rgba(5,5,6,.74); backdrop-filter:blur(8px); font-size:9px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.process-film-strip { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:70px; }
.process-film-strip article { position:relative; }
.process-film-strip video { width:100%; aspect-ratio:4/3; object-fit:cover; border:1px solid var(--line); background:#111; }
.process-film-strip span { display:block; margin-top:13px; color:var(--orange); font-size:9px; letter-spacing:.14em; }
.process-film-strip h3 { margin:5px 0 0; font-size:20px; }
.contact-cinema { position:relative; min-height:72svh; display:flex; align-items:center; overflow:hidden; background:#080809; }
.contact-cinema > video { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:saturate(.7) contrast(1.12); }
.contact-cinema-shade { position:absolute; inset:0; background:linear-gradient(90deg,rgba(5,5,6,.94),rgba(5,5,6,.44) 55%,rgba(5,5,6,.12)),linear-gradient(0deg,rgba(5,5,6,.7),transparent); }
.contact-cinema-copy { position:relative; z-index:2; }
.contact-cinema-copy h2 { margin:0; font-size:clamp(52px,7vw,110px); line-height:.88; letter-spacing:-.065em; }
.contact-cinema-copy p { max-width:560px; color:#b8b5b8; line-height:1.7; }

@media (max-width:680px) {
  .process-portrait { min-height:760px; }
  .process-portrait-copy h2 { font-size:clamp(48px,15vw,72px); }
  .process-film-strip { grid-template-columns:1fr; }
  .evidence-carousel { grid-auto-columns:78vw; }
  .contact-cinema { min-height:700px; }
}
