:root {
  --ink: #0c0c0b;
  --ink-soft: #161614;
  --paper: #f2efe8;
  --paper-2: #e9e4da;
  --muted: #aaa89f;
  --line-dark: rgba(255,255,255,.16);
  --line-light: rgba(12,12,11,.16);
  --accent: #c88c55;
  --accent-light: #efc69f;
  --container: min(1320px, calc(100vw - 48px));
  --radius: 24px;
  --ease: cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: white;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--accent); color: var(--ink); }
.container { width: var(--container); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 999; left: 16px; top: 16px; padding: 10px 14px; background: white; color: black; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.page-noise {
  position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: .035;
  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='.6'/%3E%3C/svg%3E");
}
.scroll-progress { position: fixed; z-index: 200; left: 0; right: 0; top: 0; height: 2px; }
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--accent-light); }

.site-header { position: fixed; z-index: 90; inset: 0 0 auto; transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease; border-bottom: 1px solid transparent; }
.site-header.is-scrolled { background: rgba(12,12,11,.82); backdrop-filter: blur(22px); border-color: rgba(255,255,255,.1); }
.header-inner { height: 90px; display: grid; grid-template-columns: 260px 1fr auto; align-items: center; gap: 36px; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.brand { width: 235px; }
.brand img { width: 100%; height: auto; }
.desktop-nav { justify-self: center; display: flex; gap: clamp(22px, 3vw, 46px); }
.desktop-nav a { position: relative; color: rgba(255,255,255,.75); font-size: 13px; font-weight: 650; letter-spacing: .04em; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: white; transition: right .3s var(--ease); }
.desktop-nav a:hover { color: white; }
.desktop-nav a:hover::after { right: 0; }
.menu-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 1px; background: white; margin: 7px auto; transition: transform .3s, opacity .3s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 89px 0 0; background: rgba(12,12,11,.98); padding: 38px 24px; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 18px 0; border-bottom: 1px solid var(--line-dark); font-size: clamp(30px, 9vw, 48px); font-weight: 650; letter-spacing: -.04em; }
.mobile-contact { display: grid; gap: 8px; margin-top: 34px; color: var(--muted); }
.mobile-login {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  max-width: 680px;
  margin: 26px auto 0;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  color: white;
  transition: border-color .25s ease, background .25s ease, transform .25s var(--ease);
}
.mobile-login:hover {
  transform: translateY(-2px);
  border-color: rgba(239,198,159,.52);
  background: rgba(239,198,159,.09);
}
.mobile-login-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--ink);
}
.mobile-login-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mobile-login strong,
.mobile-login small { display: block; }
.mobile-login strong { font-size: 14px; letter-spacing: .01em; }
.mobile-login small { margin-top: 3px; color: rgba(255,255,255,.48); font-size: 11px; }
.mobile-login-arrow { color: var(--accent-light); font-size: 15px; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 54px; padding: 0 24px; border-radius: 999px; font-size: 14px; font-weight: 700; letter-spacing: .01em; transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s; }
.button:hover { transform: translateY(-3px); }
.button-small { min-height: 44px; padding: 0 18px; font-size: 12px; }
.button-primary { background: var(--accent-light); color: var(--ink); }
.button-primary:hover { background: white; }
.button-light { background: white; color: var(--ink); }
.button-login {
  min-width: 128px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.055);
  color: white;
  backdrop-filter: blur(12px);
}
.button-login svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s var(--ease);
}
.button-login:hover {
  color: var(--ink);
  background: var(--accent-light);
  border-color: var(--accent-light);
}
.button-login:hover svg { transform: translateY(-1px) scale(1.05); }
.button-dark { background: var(--ink); color: white; }
.button-outline-light { border: 1px solid rgba(255,255,255,.35); color: white; }
.button-outline-light:hover { background: white; color: var(--ink); border-color: white; }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.45); padding-bottom: 4px; }
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translate(3px,-3px); }
.dark-link { color: var(--ink); border-color: rgba(12,12,11,.35); }

.eyebrow { margin: 0 0 24px; display: flex; align-items: center; gap: 12px; text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 750; color: rgba(255,255,255,.62); }
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
.eyebrow.dark { color: rgba(12,12,11,.58); }

.hero { position: relative; min-height: 100svh; overflow: hidden; padding-top: 90px; display: flex; flex-direction: column; background: radial-gradient(circle at 80% 20%, #25221f 0, transparent 33%), var(--ink); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow-one { width: 600px; height: 600px; right: -220px; top: 130px; background: radial-gradient(circle, rgba(200,140,85,.16), transparent 68%); }
.hero-glow-two { width: 500px; height: 500px; left: -300px; bottom: -230px; background: radial-gradient(circle, rgba(255,255,255,.05), transparent 70%); }
.hero-grid { position: relative; z-index: 2; flex: 1; display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 30px; padding-block: clamp(70px, 9vh, 120px) 70px; }
.hero-copy h1 { margin: 0; max-width: 790px; font-size: clamp(60px, 7.4vw, 128px); line-height: .86; letter-spacing: -.075em; font-weight: 720; }
.hero-copy h1 em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; color: var(--accent-light); }
.hero-intro { max-width: 600px; margin: 35px 0 0; color: rgba(255,255,255,.66); font-size: clamp(16px, 1.4vw, 20px); }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.hero-proof { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 650px; margin-top: 64px; padding-top: 26px; border-top: 1px solid var(--line-dark); }
.hero-proof div { display: grid; gap: 3px; }
.hero-proof strong { font-size: 13px; }
.hero-proof span { color: rgba(255,255,255,.45); font-size: 11px; }

.hero-visual { position: relative; min-height: min(650px, 66vw); perspective: 1600px; isolation: isolate; }
.panel-orbit { position: absolute; inset: 12% 0 0 12%; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; transform: rotateX(68deg) rotateZ(-12deg); }
.panel-orbit::before, .panel-orbit::after { content: ""; position: absolute; inset: 12%; border: 1px solid rgba(255,255,255,.06); border-radius: inherit; }
.panel-orbit::after { inset: 27%; }
.panel-stack { position: absolute; inset: 2% -4% 4% 0; transform-style: preserve-3d; transform: rotateX(58deg) rotateZ(-30deg); transition: transform .3s ease-out; }
.material-panel { position: absolute; width: 65%; aspect-ratio: 1.42; left: 18%; top: 15%; border-radius: 5px; background: linear-gradient(145deg,#c8b393,#6b5540); background-image: linear-gradient(rgba(0,0,0,.04),rgba(0,0,0,.04)),var(--panel-image); background-size: cover; background-position: center; border: 1px solid rgba(255,255,255,.55); box-shadow: -22px 30px 55px rgba(0,0,0,.45), inset 0 0 0 1px rgba(0,0,0,.25); transform-style: preserve-3d; }
.material-panel::after { content: ""; position: absolute; inset: auto 0 -13px; height: 13px; background: linear-gradient(180deg,#d2c5b1,#6f6354); transform-origin: top; transform: rotateX(-68deg); }
.material-panel span { position: absolute; left: 20px; bottom: 18px; padding: 8px 11px; background: rgba(12,12,11,.74); backdrop-filter: blur(10px); color: white; border-radius: 999px; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; opacity: 0; transition: opacity .25s; }
.material-panel:hover span { opacity: 1; }
.panel-one { transform: translateZ(175px); }
.panel-two { transform: translate3d(0,8%,118px); }
.panel-three { transform: translate3d(0,16%,61px); }
.panel-four { transform: translate3d(0,24%,4px); }
.hero-badge { position: absolute; right: 0; bottom: 7%; z-index: 8; width: 170px; aspect-ratio: 1; display: flex; flex-direction: column; justify-content: center; padding: 23px; background: var(--accent-light); color: var(--ink); border-radius: 50%; transform: rotate(8deg); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.hero-badge span { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.hero-badge strong { font-family: Georgia, serif; font-size: 26px; line-height: 1.05; font-weight: 500; }
.hero-badge small { margin-top: 10px; font-size: 9px; line-height: 1.3; }
.hero-marquee { overflow: hidden; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); color: rgba(255,255,255,.58); }
.hero-marquee > div { width: max-content; display: flex; align-items: center; gap: 26px; padding: 15px 0; animation: marquee 30s linear infinite; }
.hero-marquee span { text-transform: uppercase; font-size: 10px; letter-spacing: .2em; }
.hero-marquee i { width: 4px; height: 4px; border-radius: 50%; background: var(--accent-light); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding-block: clamp(95px, 12vw, 180px); }
.section-light { background: var(--paper); color: var(--ink); }
.section-heading h2, .collection-header h2, .manufacturing-copy h2, .cta-inner h2 { margin: 0; font-size: clamp(48px, 6vw, 96px); line-height: .94; letter-spacing: -.065em; font-weight: 650; }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; }
.intro-content { max-width: 650px; }
.intro-content p { color: rgba(12,12,11,.65); font-size: 17px; }
.intro-content .lead { margin-top: 0; color: var(--ink); font-size: clamp(24px, 2.4vw, 38px); line-height: 1.25; letter-spacing: -.035em; }
.intro-content .text-link { margin-top: 25px; }
.story-metrics { margin-top: clamp(80px,10vw,150px); display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.story-metrics article { padding: 34px 40px 38px 0; }
.story-metrics article + article { padding-left: 40px; border-left: 1px solid var(--line-light); }
.story-metrics span { font-size: 11px; letter-spacing: .12em; color: rgba(12,12,11,.45); }
.story-metrics strong { display: block; margin-top: 38px; font-size: 19px; }
.story-metrics p { margin: 6px 0 0; max-width: 300px; color: rgba(12,12,11,.55); font-size: 13px; }

.collections-section { background: var(--ink-soft); }
.collection-header { display: grid; grid-template-columns: 1fr 370px; align-items: end; gap: 50px; }
.collection-header > p { margin: 0 0 6px; color: rgba(255,255,255,.55); }
.collection-header > p strong { color: white; }
.decor-finder { margin-top: 60px; padding-bottom: 24px; display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; border-bottom: 1px solid var(--line-dark); }
.search-field { display: flex; align-items: center; gap: 14px; min-width: 0; }
.search-field svg { width: 21px; fill: none; stroke: rgba(255,255,255,.55); stroke-width: 1.7; }
.search-field input { width: 100%; border: 0; outline: 0; background: transparent; color: white; font-size: clamp(20px,2.2vw,31px); letter-spacing: -.025em; }
.search-field input::placeholder { color: rgba(255,255,255,.3); }
.search-field kbd { min-width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 6px; color: rgba(255,255,255,.4); font-size: 11px; }
.finder-meta { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.42); font-size: 12px; }
.finder-meta button { border: 0; background: none; cursor: pointer; color: var(--accent-light); }
.product-grid { margin-top: 38px; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.product-card { position: relative; min-width: 0; border: 0; padding: 0; text-align: left; background: #20201e; border-radius: 18px; overflow: hidden; cursor: pointer; color: white; transition: transform .35s var(--ease), background .35s; }
.product-card:hover { transform: translateY(-8px); background: #292926; }
.product-card-media { position: relative; aspect-ratio: .86; overflow: hidden; background: linear-gradient(145deg,#8f7b68,#37312d); }
.product-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.52), transparent 45%); }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.product-card:hover img { transform: scale(1.06); }
.product-index { position: absolute; z-index: 2; left: 18px; top: 18px; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(0,0,0,.15); backdrop-filter: blur(8px); font-size: 10px; }
.product-arrow { position: absolute; z-index: 2; right: 18px; bottom: 18px; width: 40px; height: 40px; display: grid; place-items: center; background: rgba(255,255,255,.92); color: var(--ink); border-radius: 50%; transition: transform .3s var(--ease); }
.product-card:hover .product-arrow { transform: rotate(45deg); }
.product-card-copy { padding: 20px 20px 22px; }
.product-card-copy h3 { margin: 0; font-size: 18px; letter-spacing: -.025em; }
.product-card-copy p { margin: 7px 0 0; color: rgba(255,255,255,.46); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
.product-empty { grid-column: 1/-1; padding: 80px 0; color: rgba(255,255,255,.55); text-align: center; }
.collection-footer { margin-top: 50px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.collection-footer p { max-width: 580px; color: rgba(255,255,255,.48); }

.manufacturing-section { position: relative; min-height: 1100px; background: #181410; overflow: clip; }
.manufacturing-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(200,140,85,.16), transparent 34%), linear-gradient(115deg,transparent 45%,rgba(255,255,255,.035) 45%,rgba(255,255,255,.035) 46%,transparent 46%); }
.manufacturing-sticky { position: sticky; top: 0; min-height: 100svh; display: grid; align-items: center; }
.manufacturing-grid { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: 8vw; align-items: center; }
.manufacturing-copy p:not(.eyebrow) { max-width: 530px; color: rgba(255,255,255,.56); font-size: 17px; margin: 32px 0; }
.process-card-wrap { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; align-items: stretch; }
.process-card { min-height: 460px; padding: 22px; display: flex; flex-direction: column; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.11); border-radius: 22px; backdrop-filter: blur(10px); }
.process-card:nth-child(2) { transform: translateY(60px); }
.process-card > span { margin-top: 24px; color: var(--accent-light); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.process-card h3 { margin: 18px 0 0; font-size: 25px; line-height: 1.1; letter-spacing: -.04em; }
.process-card p { margin: auto 0 0; color: rgba(255,255,255,.48); font-size: 13px; }
.process-visual { height: 190px; position: relative; display: grid; place-items: center; overflow: hidden; background: rgba(0,0,0,.22); border-radius: 15px; }
.press-top,.press-bottom { position: absolute; left: 22%; right: 22%; height: 32px; background: linear-gradient(#87847e,#383633); border-radius: 3px; }
.press-top { top: 35px; animation: press 3.2s ease-in-out infinite; }
.press-bottom { bottom: 35px; }
.press-panel { width: 65%; height: 12px; background: var(--accent-light); box-shadow: 0 0 35px rgba(239,198,159,.35); }
@keyframes press { 50% { transform: translateY(64px); } }
.temp-ring { width: 112px; height: 112px; display: grid; place-items: center; border: 1px solid rgba(239,198,159,.55); border-radius: 50%; box-shadow: inset 0 0 25px rgba(200,140,85,.12); animation: pulse 2.6s ease-in-out infinite; }
.temp-ring::before { content: ""; width: 70px; height: 70px; border: 6px solid transparent; border-top-color: var(--accent-light); border-right-color: var(--accent-light); border-radius: 50%; transform: rotate(25deg); }
.temp-ring span { position: absolute; font-size: 22px; }
@keyframes pulse { 50% { box-shadow: inset 0 0 35px rgba(200,140,85,.28),0 0 35px rgba(200,140,85,.18); } }
.quality-panel { width: 64%; height: 70%; background: linear-gradient(140deg,#c7ad86,#514335); transform: skewY(-6deg); box-shadow: 0 20px 30px rgba(0,0,0,.28); }
.scan-line { position: absolute; z-index: 2; left: 15%; right: 15%; height: 2px; background: #ffdfbe; box-shadow: 0 0 14px #ffdfbe; animation: scan 2.5s ease-in-out infinite; }
@keyframes scan { 0%,100% { top: 20%; } 50% { top: 78%; } }

.section-heading.split { display: grid; grid-template-columns: 1fr 420px; align-items: end; gap: 60px; }
.section-heading.split > p { margin: 0 0 8px; color: rgba(12,12,11,.56); }
.application-grid { margin-top: 75px; display: grid; grid-template-columns: repeat(12,1fr); gap: 18px; }
.application-card { position: relative; min-height: 390px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; background: #d9d0c1; border-radius: 22px; isolation: isolate; }
.application-card::before { content: ""; position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transition: transform .8s var(--ease); }
.application-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top,rgba(12,12,11,.82),rgba(12,12,11,.08) 60%); }
.application-card:hover::before { transform: scale(1.06); }
.app-one { grid-column: span 7; }
.app-two { grid-column: span 5; }
.app-three { grid-column: span 5; }
.app-four { grid-column: span 7; }
.app-one::before { background-image: url('../images/products/altamira-walnut.webp'); }
.app-two::before { background-image: url('../images/products/acadia-maple.webp'); }
.app-three::before { background-image: url('../images/products/firestone.webp'); }
.app-four::before { background-image: url('../images/products/greystone.webp'); }
.application-number { align-self: flex-end; width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: white; font-size: 10px; }
.application-card h3 { margin: 0; color: white; font-size: clamp(28px,3vw,48px); line-height: .95; letter-spacing: -.05em; }
.application-card p { max-width: 380px; margin: 12px 0 0; color: rgba(255,255,255,.65); }

.cta-section { position: relative; overflow: hidden; padding-block: clamp(110px,14vw,210px); background: var(--ink); }
.cta-texture { position: absolute; inset: -20%; opacity: .18; background-image: url('../images/products/alpha-oak.webp'); background-size: cover; filter: grayscale(1) contrast(1.2); transform: rotate(-7deg) scale(1.12); }
.cta-section::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center,rgba(12,12,11,.4),var(--ink) 75%); }
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-inner .eyebrow { justify-content: center; }
.cta-actions { margin-top: 45px; display: flex; justify-content: center; gap: 15px; }

.site-footer { padding: 78px 0 25px; background: #080807; border-top: 1px solid var(--line-dark); }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 50px; }
.footer-brand { width: 260px; }
.footer-top p { margin: 0 0 20px; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .15em; font-size: 10px; }
.footer-contact,.footer-address,.footer-nav { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-contact a,.footer-nav a,.footer-address address { color: rgba(255,255,255,.7); font-style: normal; font-size: 13px; }
.footer-contact a:hover,.footer-nav a:hover { color: white; }
.footer-bottom { margin-top: 75px; padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.35); font-size: 11px; }

.product-modal { width: min(980px, calc(100vw - 30px)); padding: 0; border: 0; border-radius: 24px; overflow: hidden; background: var(--paper); color: var(--ink); box-shadow: 0 30px 100px rgba(0,0,0,.6); }
.product-modal::backdrop { background: rgba(0,0,0,.72); backdrop-filter: blur(8px); }
.product-modal[open] { display: grid; grid-template-columns: 1.04fr .96fr; animation: modal-in .35s var(--ease); }
@keyframes modal-in { from { opacity: 0; transform: translateY(25px) scale(.98); } }
.modal-media { min-height: 560px; background: #ded6ca; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-content { padding: 55px 45px; display: flex; flex-direction: column; }
.modal-content h2 { margin: 0; font-size: clamp(42px,5vw,74px); line-height: .9; letter-spacing: -.06em; }
.modal-code { margin: 18px 0 28px; color: rgba(12,12,11,.5); letter-spacing: .1em; text-transform: uppercase; font-size: 11px; }
.modal-content > p:not(.eyebrow):not(.modal-code) { color: rgba(12,12,11,.6); }
.modal-actions { margin-top: auto; display: grid; align-items: start; gap: 22px; }
.modal-close { position: absolute; z-index: 2; right: 14px; top: 14px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(12,12,11,.85); color: white; font-size: 22px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: 220px 1fr auto; }
  .brand { width: 205px; }
  .desktop-nav { display: none; }
  .header-actions { justify-self: end; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .manufacturing-grid { grid-template-columns: 1fr; }
  .manufacturing-section { min-height: auto; }
  .manufacturing-sticky { position: relative; min-height: auto; }
  .process-card-wrap { margin-top: 50px; }
  .process-card:nth-child(2) { transform: none; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-nav { grid-column: 2; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 30px, 680px); }
  .header-inner { height: 74px; grid-template-columns: 1fr auto; }
  .site-header.is-scrolled { background: rgba(12,12,11,.94); }
  .brand { width: 190px; }
  .header-actions { display: none; }
  .mobile-menu { inset: 73px 0 0; }
  .hero { padding-top: 74px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-copy h1 { font-size: clamp(58px,17vw,96px); }
  .hero-visual { min-height: 560px; margin-top: 20px; }
  .hero-badge { width: 145px; right: 5%; bottom: 2%; }
  .intro-grid,.collection-header,.section-heading.split { grid-template-columns: 1fr; gap: 45px; }
  .story-metrics { grid-template-columns: 1fr; }
  .story-metrics article { padding: 26px 0; }
  .story-metrics article + article { padding-left: 0; border-left: 0; border-top: 1px solid var(--line-light); }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .decor-finder { grid-template-columns: 1fr; }
  .finder-meta { justify-content: space-between; }
  .process-card-wrap { grid-template-columns: 1fr; }
  .process-card { min-height: 390px; }
  .application-grid { grid-template-columns: 1fr; }
  .app-one,.app-two,.app-three,.app-four { grid-column: auto; }
  .application-card { min-height: 340px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .footer-nav { grid-column: auto; }
  .product-modal[open] { grid-template-columns: 1fr; }
  .modal-media { min-height: 320px; max-height: 42vh; }
  .modal-content { padding: 35px 24px; min-height: 430px; }
}

@media (max-width: 540px) {
  :root { --container: calc(100% - 24px); }
  .section { padding-block: 92px; }
  .brand { width: 172px; }
  .hero-grid { padding-top: 65px; }
  .hero-actions,.cta-actions,.collection-footer { align-items: stretch; flex-direction: column; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-proof { grid-template-columns: 1fr; gap: 14px; margin-top: 44px; }
  .hero-proof div { grid-template-columns: 95px 1fr; align-items: center; }
  .hero-visual { min-height: 440px; }
  .panel-stack { inset: 4% -30% 4% -12%; }
  .hero-badge { width: 128px; right: 0; }
  .hero-badge strong { font-size: 21px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card-media { aspect-ratio: 1.2; }
  .collection-footer { align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}



/* v2 — richer motion, resilient imagery, and W2A footer credit */
.hero { --pointer-x: 72%; --pointer-y: 28%; }
.hero-spotlight {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(520px circle at var(--pointer-x) var(--pointer-y), rgba(239,198,159,.13), transparent 65%);
  opacity: .9; transition: opacity .4s ease;
}
.hero-copy > * { opacity: 0; transform: translateY(24px); }
body.is-ready .hero-copy > * { animation: hero-copy-in .82s var(--ease) forwards; }
body.is-ready .hero-copy > *:nth-child(1) { animation-delay: .08s; }
body.is-ready .hero-copy > *:nth-child(2) { animation-delay: .16s; }
body.is-ready .hero-copy > *:nth-child(3) { animation-delay: .27s; }
body.is-ready .hero-copy > *:nth-child(4) { animation-delay: .38s; }
body.is-ready .hero-copy > *:nth-child(5) { animation-delay: .5s; }
@keyframes hero-copy-in { to { opacity: 1; transform: translateY(0); } }

.hero-visual { opacity: 0; transform: translateY(34px) scale(.97); }
body.is-ready .hero-visual { animation: hero-visual-in 1.1s .2s var(--ease) forwards; }
@keyframes hero-visual-in { to { opacity: 1; transform: translateY(0) scale(1); } }
.panel-stack { animation: stack-breathe 8s ease-in-out infinite; }
@keyframes stack-breathe {
  0%,100% { filter: drop-shadow(0 30px 38px rgba(0,0,0,.35)); }
  50% { filter: drop-shadow(0 43px 55px rgba(0,0,0,.5)); }
}
.panel-orbit { animation: orbit-drift 16s linear infinite; }
@keyframes orbit-drift { to { transform: rotateX(68deg) rotateZ(348deg); } }
.hero-badge { animation: badge-float 4.8s ease-in-out infinite; }
@keyframes badge-float { 0%,100% { translate: 0 0; rotate: 8deg; } 50% { translate: 0 -10px; rotate: 4deg; } }

.reveal { transition-delay: var(--reveal-delay, 0ms); }
.product-card { transform-style: preserve-3d; will-change: transform; }
.product-card.is-visible { transform: perspective(900px) translateY(0) rotateX(var(--card-rx,0deg)) rotateY(var(--card-ry,0deg)); }
.product-card:hover { transform: perspective(900px) translateY(-9px) rotateX(var(--card-rx,0deg)) rotateY(var(--card-ry,0deg)); }
.product-card-media { isolation: isolate; }
.product-card-media::before {
  content: ""; position: absolute; inset: -40%; z-index: 2; pointer-events: none;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.18) 50%, transparent 65%);
  transform: translateX(-70%) rotate(8deg); transition: transform .9s var(--ease);
}
.product-card:hover .product-card-media::before { transform: translateX(72%) rotate(8deg); }
.product-card img { opacity: 0; transform: scale(1.025); }
.product-card img.is-loaded { opacity: 1; transform: scale(1); }
.product-card:hover img.is-loaded { transform: scale(1.065); }
.product-card.is-image-fallback .product-card-media::after { background: linear-gradient(to top, rgba(0,0,0,.35), transparent 55%); }

.application-card { transition: transform .55s var(--ease), box-shadow .55s var(--ease); }
.application-card:hover { transform: translateY(-8px); box-shadow: 0 28px 70px rgba(38,28,19,.18); }
.application-number { transition: background .35s, color .35s, transform .35s var(--ease); }
.application-card:hover .application-number { background: white; color: var(--ink); transform: rotate(8deg); }

.site-footer { position: relative; overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; width: 520px; height: 520px; left: 50%; bottom: -470px;
  border-radius: 50%; background: radial-gradient(circle, rgba(239,198,159,.12), transparent 68%);
  transform: translateX(-50%); pointer-events: none;
}
.footer-bottom { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.footer-bottom > :last-child { justify-self: end; }
.footer-credit { display: inline-flex; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,.48); text-align: center; transition: color .25s ease; }
.footer-credit strong { color: rgba(255,255,255,.76); font-weight: 650; }
.footer-credit > span { transition: transform .25s var(--ease); }
.footer-credit:hover { color: white; }
.footer-credit:hover strong { color: var(--accent-light); }
.footer-credit:hover > span { transform: translate(3px,-3px); }
.footer-reveal { --reveal-delay: 100ms; }

.desktop-nav a.is-active { color: white; }
.desktop-nav a.is-active::after { right: 0; background: var(--accent-light); }

@media (max-width: 980px) {
  .footer-bottom { grid-template-columns: 1fr 1fr; }
  .footer-credit { grid-column: 1 / -1; grid-row: 1; justify-content: flex-start; text-align: left; }
  .footer-bottom > :last-child { justify-self: end; }
}
@media (max-width: 540px) {
  .footer-bottom { display: flex; align-items: flex-start; }
  .footer-credit { order: -1; justify-content: flex-start; text-align: left; line-height: 1.5; }
}



/* v3 — unmistakable, viewport-triggered motion */
body::after {
  content: "";
  position: fixed;
  z-index: 99;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.025) 48%, transparent 66%);
  transform: translateX(-110%);
  animation: page-light-sweep 1.35s .15s var(--ease) both;
}
@keyframes page-light-sweep { to { transform: translateX(110%); } }

.site-header .brand,
.site-header .desktop-nav,
.site-header .header-actions {
  opacity: 0;
  transform: translateY(-16px);
}
body.is-ready .site-header .brand,
body.is-ready .site-header .desktop-nav,
body.is-ready .site-header .header-actions {
  animation: header-drop .75s var(--ease) forwards;
}
body.is-ready .site-header .desktop-nav { animation-delay: .12s; }
body.is-ready .site-header .header-actions { animation-delay: .22s; }
@keyframes header-drop { to { opacity: 1; transform: translateY(0); } }

.hero-spotlight {
  background:
    radial-gradient(680px circle at var(--pointer-x) var(--pointer-y), rgba(239,198,159,.23), transparent 62%),
    radial-gradient(320px circle at calc(var(--pointer-x) - 10%) calc(var(--pointer-y) + 12%), rgba(255,255,255,.07), transparent 70%);
  mix-blend-mode: screen;
}
.hero-copy > * { transform: translateY(42px); filter: blur(7px); }
body.is-ready .hero-copy > * { animation-duration: .95s; }
@keyframes hero-copy-in {
  0% { opacity: 0; transform: translateY(42px); filter: blur(7px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
body.is-ready .hero-copy > *:nth-child(1) { animation-delay: .12s; }
body.is-ready .hero-copy > *:nth-child(2) { animation-delay: .24s; }
body.is-ready .hero-copy > *:nth-child(3) { animation-delay: .39s; }
body.is-ready .hero-copy > *:nth-child(4) { animation-delay: .54s; }
body.is-ready .hero-copy > *:nth-child(5) { animation-delay: .7s; }

.hero-copy h1 em {
  position: relative;
  display: inline-block;
}
.hero-copy h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.08em;
  height: 2px;
  background: var(--accent-light);
  transform: scaleX(0);
  transform-origin: left;
}
body.is-ready .hero-copy h1 em::after { animation: accent-line 1s 1.08s var(--ease) forwards; }
@keyframes accent-line { to { transform: scaleX(1); } }

.hero-visual { transform: translateY(58px) scale(.92) rotate(-1deg); filter: blur(5px); }
body.is-ready .hero-visual { animation-duration: 1.3s; animation-delay: .3s; }
@keyframes hero-visual-in {
  0% { opacity: 0; transform: translateY(58px) scale(.92) rotate(-1deg); filter: blur(5px); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0); filter: blur(0); }
}

.material-panel { will-change: transform; }
.panel-one { animation: panel-one-float 5.8s 1.25s ease-in-out infinite; }
.panel-two { animation: panel-two-float 6.4s 1.45s ease-in-out infinite; }
.panel-three { animation: panel-three-float 7s 1.65s ease-in-out infinite; }
.panel-four { animation: panel-four-float 7.6s 1.85s ease-in-out infinite; }
@keyframes panel-one-float {
  0%,100% { transform: translate3d(0,0,175px) rotateZ(0); }
  50% { transform: translate3d(2%,-4%,190px) rotateZ(.8deg); }
}
@keyframes panel-two-float {
  0%,100% { transform: translate3d(0,8%,118px) rotateZ(0); }
  50% { transform: translate3d(-1.5%,5%,132px) rotateZ(-.7deg); }
}
@keyframes panel-three-float {
  0%,100% { transform: translate3d(0,16%,61px) rotateZ(0); }
  50% { transform: translate3d(1%,13%,73px) rotateZ(.55deg); }
}
@keyframes panel-four-float {
  0%,100% { transform: translate3d(0,24%,4px) rotateZ(0); }
  50% { transform: translate3d(-1%,22%,12px) rotateZ(-.45deg); }
}
.material-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 28%, rgba(255,255,255,.24) 48%, transparent 68%);
  transform: translateX(-125%);
  animation: panel-sheen 6.5s ease-in-out infinite;
}
.panel-two::before { animation-delay: 1.3s; }
.panel-three::before { animation-delay: 2.4s; }
.panel-four::before { animation-delay: 3.6s; }
@keyframes panel-sheen { 0%,58%,100% { transform: translateX(-125%); } 78% { transform: translateX(125%); } }

.panel-orbit {
  border-color: rgba(239,198,159,.22);
  box-shadow: 0 0 70px rgba(200,140,85,.08);
  animation-duration: 11s;
}
.hero-badge {
  animation: badge-float 3.4s ease-in-out infinite;
  box-shadow: 0 24px 60px rgba(0,0,0,.48), 0 0 0 0 rgba(239,198,159,.28);
}
@keyframes badge-float {
  0%,100% { translate: 0 0; rotate: 8deg; box-shadow: 0 24px 60px rgba(0,0,0,.48), 0 0 0 0 rgba(239,198,159,.12); }
  50% { translate: 0 -16px; rotate: 2deg; box-shadow: 0 38px 70px rgba(0,0,0,.55), 0 0 0 12px rgba(239,198,159,0); }
}

.reveal {
  opacity: 0;
  transform: translateY(54px) scale(.985);
  filter: blur(4px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

.product-card { opacity: 0; transform: perspective(1000px) translateY(62px) scale(.94) rotateX(8deg); }
.product-card.is-visible {
  opacity: 1;
  transform: perspective(1000px) translateY(0) scale(1) rotateX(var(--card-rx,0deg)) rotateY(var(--card-ry,0deg));
}
.product-card:hover {
  transform: perspective(1000px) translateY(-13px) scale(1.015) rotateX(var(--card-rx,0deg)) rotateY(var(--card-ry,0deg));
  box-shadow: 0 30px 80px rgba(0,0,0,.34);
}
.product-card-media::before { background: linear-gradient(110deg, transparent 28%, rgba(255,255,255,.3) 50%, transparent 72%); }
[data-product-count] { display: inline-block; min-width: 4ch; color: var(--accent-light); transition: transform .4s var(--ease), text-shadow .4s ease; }
[data-product-count].count-complete { animation: count-pop .6s var(--ease); }
@keyframes count-pop { 50% { transform: scale(1.16); text-shadow: 0 0 22px rgba(239,198,159,.42); } }

.application-card.reveal { transform: translateY(64px) scale(.96); clip-path: inset(12% 0 0 0 round 22px); }
.application-card.reveal.is-visible { transform: translateY(0) scale(1); clip-path: inset(0 0 0 0 round 22px); }
.application-card::before { transform: scale(1.08); }
.application-card.is-visible::before { transform: scale(1); transition: transform 1.2s var(--ease); }
.application-card:hover::before { transform: scale(1.08); }

.desktop-nav a.is-active {
  color: var(--ink);
  background: var(--accent-light);
  border-radius: 999px;
  padding: 7px 12px;
  margin: -7px -12px;
}
.desktop-nav a.is-active::after { display: none; }

.footer-top > * { transition: transform .5s var(--ease), opacity .5s ease; }
.site-footer:hover .footer-top > * { transform: translateY(-3px); }
.footer-credit strong { position: relative; }
.footer-credit strong::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px; background: var(--accent-light);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.footer-credit:hover strong::after { transform: scaleX(1); }

html.motion-reduced *,
html.motion-reduced *::before,
html.motion-reduced *::after {
  animation: none !important;
  transition-duration: .01ms !important;
}
html.motion-reduced .reveal,
html.motion-reduced .hero-copy > *,
html.motion-reduced .hero-visual,
html.motion-reduced .site-header .brand,
html.motion-reduced .site-header .desktop-nav,
html.motion-reduced .site-header .header-actions,
html.motion-reduced .product-card {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}


/* v4 — cinematic exploded material stack + prominent W2A signature */
.hero-visual {
  min-height: min(690px, 68vw);
  perspective: 1900px;
  overflow: visible;
}
.visual-status {
  position: absolute;
  z-index: 12;
  top: 7%;
  right: 6%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.visual-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 0 0 rgba(239,198,159,.5);
  animation: visual-status-pulse 2s ease-out infinite;
}
@keyframes visual-status-pulse {
  70%,100% { box-shadow: 0 0 0 11px rgba(239,198,159,0); }
}
.panel-orbit {
  inset: 12% -2% 0 6%;
  opacity: .72;
  border-color: rgba(239,198,159,.18);
  box-shadow: 0 0 90px rgba(200,140,85,.09), inset 0 0 70px rgba(255,255,255,.018);
}
.panel-stage {
  position: absolute;
  inset: 5% -4% 1% -1%;
  perspective: 1800px;
  transform-style: preserve-3d;
}
.panel-stack {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(50deg) rotateZ(-25deg) translate3d(0,0,0);
  transform-origin: 50% 55%;
  transition: transform .32s ease-out;
  animation: stack-cinematic-drift 9s ease-in-out infinite;
}
@keyframes stack-cinematic-drift {
  0%,100% { filter: drop-shadow(-12px 35px 45px rgba(0,0,0,.36)); }
  50% { filter: drop-shadow(-18px 52px 65px rgba(0,0,0,.54)); }
}
.material-panel {
  --mx: 0px;
  --my: 0px;
  position: absolute;
  z-index: 1;
  width: 68%;
  aspect-ratio: 1.42;
  left: 18%;
  top: 22%;
  border: 0;
  border-radius: 11px;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition: transform 1.15s cubic-bezier(.16,.84,.18,1), opacity .9s ease, filter .8s ease;
  animation: none !important;
}
.material-panel::before,
.material-panel::after { display: none !important; }
.panel-stack.is-exploded .panel-one {
  z-index: 4;
  transform: translate3d(calc(-13% + var(--mx)), calc(-29% + var(--my)), 230px) rotateZ(-4.2deg);
}
.panel-stack.is-exploded .panel-two {
  z-index: 3;
  transform: translate3d(calc(14% + var(--mx)), calc(-4% + var(--my)), 145px) rotateZ(3.2deg);
}
.panel-stack.is-exploded .panel-three {
  z-index: 2;
  transform: translate3d(calc(-9% + var(--mx)), calc(22% + var(--my)), 70px) rotateZ(-2.4deg);
}
.panel-stack.is-exploded .panel-four {
  z-index: 1;
  transform: translate3d(calc(10% + var(--mx)), calc(49% + var(--my)), 0) rotateZ(2deg);
}
.panel-stack.is-stacked .panel-one {
  z-index: 4;
  transform: translate3d(calc(0% + var(--mx)), calc(-5% + var(--my)), 150px) rotateZ(-.6deg);
}
.panel-stack.is-stacked .panel-two {
  z-index: 3;
  transform: translate3d(calc(1.5% + var(--mx)), calc(2.5% + var(--my)), 102px) rotateZ(.4deg);
}
.panel-stack.is-stacked .panel-three {
  z-index: 2;
  transform: translate3d(calc(3% + var(--mx)), calc(10% + var(--my)), 54px) rotateZ(-.3deg);
}
.panel-stack.is-stacked .panel-four {
  z-index: 1;
  transform: translate3d(calc(4.5% + var(--mx)), calc(17.5% + var(--my)), 6px) rotateZ(.2deg);
}
.panel-float {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  animation: panel-organic-float 5.8s ease-in-out infinite;
}
.panel-two .panel-float { animation-delay: -.9s; animation-duration: 6.6s; }
.panel-three .panel-float { animation-delay: -1.8s; animation-duration: 7.2s; }
.panel-four .panel-float { animation-delay: -2.7s; animation-duration: 7.8s; }
@keyframes panel-organic-float {
  0%,100% { transform: translate3d(0,0,0) rotateX(0deg) rotateY(0deg); }
  35% { transform: translate3d(0,-7px,4px) rotateX(.7deg) rotateY(-.6deg); }
  68% { transform: translate3d(4px,2px,1px) rotateX(-.45deg) rotateY(.8deg); }
}
.panel-surface {
  position: absolute;
  inset: 0;
  overflow: visible;
  border-radius: 11px;
  background-color: #8e7862;
  background-image: var(--panel-image);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,.72);
  box-shadow:
    -30px 45px 58px rgba(0,0,0,.46),
    -9px 12px 20px rgba(0,0,0,.24),
    inset 0 0 0 1px rgba(15,12,10,.18),
    inset 0 1px 0 rgba(255,255,255,.44);
  filter: saturate(1.08) contrast(1.04) brightness(1.08);
  transform-style: preserve-3d;
  transition: filter .55s ease, box-shadow .55s ease, scale .55s var(--ease);
}
.panel-surface::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 26%, rgba(255,255,255,.34) 45%, rgba(255,255,255,.06) 55%, transparent 72%),
    linear-gradient(to bottom, rgba(255,255,255,.1), transparent 20%, transparent 78%, rgba(0,0,0,.16));
  background-size: 220% 100%, 100% 100%;
  background-position: -140% 0, 0 0;
  animation: v4-panel-sheen 6.7s ease-in-out infinite;
}
.panel-two .panel-surface::before { animation-delay: 1.25s; }
.panel-three .panel-surface::before { animation-delay: 2.5s; }
.panel-four .panel-surface::before { animation-delay: 3.75s; }
@keyframes v4-panel-sheen {
  0%,54%,100% { background-position: -140% 0, 0 0; }
  75% { background-position: 140% 0, 0 0; }
}
.panel-surface::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 3px;
  right: -2px;
  bottom: -18px;
  height: 19px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, #efe7db 0%, #8f8172 35%, #51483f 100%);
  border: 1px solid rgba(255,255,255,.22);
  transform-origin: top;
  transform: rotateX(-69deg);
  box-shadow: 0 13px 22px rgba(0,0,0,.3);
}
.material-panel:hover .panel-surface {
  scale: 1.025;
  filter: saturate(1.16) contrast(1.06) brightness(1.13);
  box-shadow: -38px 52px 72px rgba(0,0,0,.54), -10px 14px 25px rgba(0,0,0,.3), inset 0 0 0 1px rgba(15,12,10,.12);
}
.material-panel span { position: static; padding: 0; background: none; backdrop-filter: none; border-radius: 0; opacity: 1; }
.panel-number {
  position: absolute !important;
  z-index: 5;
  top: 18px;
  right: 19px;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50% !important;
  background: rgba(12,12,11,.28) !important;
  color: white;
  font-size: 9px !important;
  font-weight: 750;
  letter-spacing: .08em !important;
  backdrop-filter: blur(9px) !important;
  text-shadow: 0 1px 5px rgba(0,0,0,.4);
}
.panel-name {
  position: absolute !important;
  z-index: 5;
  left: 18px !important;
  bottom: 17px !important;
  max-width: calc(100% - 80px);
  padding: 8px 11px !important;
  border-radius: 999px !important;
  background: rgba(12,12,11,.74) !important;
  color: white;
  font-size: 9px !important;
  font-weight: 700;
  letter-spacing: .12em !important;
  text-transform: uppercase;
  opacity: .9 !important;
  backdrop-filter: blur(10px) !important;
}
body:not(.is-ready) .material-panel { opacity: 0; transition: none; }
body:not(.is-ready) .panel-one { transform: translate3d(-65%,-80%,300px) rotateZ(-18deg) scale(.62) !important; }
body:not(.is-ready) .panel-two { transform: translate3d(80%,-45%,180px) rotateZ(17deg) scale(.66) !important; }
body:not(.is-ready) .panel-three { transform: translate3d(-75%,65%,80px) rotateZ(-16deg) scale(.7) !important; }
body:not(.is-ready) .panel-four { transform: translate3d(75%,90%,0) rotateZ(14deg) scale(.74) !important; }
body.is-ready .panel-one { transition-delay: .48s; }
body.is-ready .panel-two { transition-delay: .62s; }
body.is-ready .panel-three { transition-delay: .76s; }
body.is-ready .panel-four { transition-delay: .9s; }
.stack-view-toggle {
  position: absolute;
  z-index: 15;
  left: 5%;
  bottom: 5%;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 13px 10px 11px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 14px;
  background: rgba(10,10,9,.64);
  color: white;
  backdrop-filter: blur(15px);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 16px 35px rgba(0,0,0,.2);
  transition: border-color .25s, background .25s, transform .25s var(--ease);
}
.stack-view-toggle:hover { transform: translateY(-3px); border-color: rgba(239,198,159,.52); background: rgba(18,16,14,.82); }
.stack-view-toggle > span:last-child { display: grid; gap: 1px; }
.stack-view-toggle strong { font-size: 10px; letter-spacing: .05em; }
.stack-view-toggle small { color: rgba(255,255,255,.47); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.stack-toggle-icon { position: relative; width: 28px; height: 26px; display: block; }
.stack-toggle-icon i {
  position: absolute;
  left: 4px;
  width: 21px;
  height: 9px;
  border: 1px solid rgba(239,198,159,.9);
  border-radius: 2px;
  transform: skewY(-18deg);
  transition: top .8s var(--ease), left .8s var(--ease);
}
.stack-toggle-icon i:nth-child(1) { top: 1px; }
.stack-toggle-icon i:nth-child(2) { top: 8px; left: 2px; }
.stack-toggle-icon i:nth-child(3) { top: 15px; left: 0; }
.stack-view-toggle[aria-pressed="false"] .stack-toggle-icon i:nth-child(1) { top: 5px; left: 4px; }
.stack-view-toggle[aria-pressed="false"] .stack-toggle-icon i:nth-child(2) { top: 8px; left: 4px; }
.stack-view-toggle[aria-pressed="false"] .stack-toggle-icon i:nth-child(3) { top: 11px; left: 4px; }
.hero-badge { right: -1%; bottom: 8%; z-index: 16; }

/* Make the website credit impossible to miss without overpowering the client brand. */
.site-footer { padding-bottom: 28px; }
.footer-signature {
  position: relative;
  z-index: 2;
  margin-top: 72px;
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 28px;
  overflow: hidden;
  border: 1px solid rgba(239,198,159,.22);
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 10%, rgba(239,198,159,.13), transparent 34%),
    linear-gradient(110deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}
.footer-signature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 26%, rgba(255,255,255,.07) 49%, transparent 72%);
  transform: translateX(-120%);
  animation: footer-signature-sheen 7s 1s ease-in-out infinite;
}
@keyframes footer-signature-sheen { 0%,58%,100% { transform: translateX(-120%); } 78% { transform: translateX(120%); } }
.footer-signature-copy { position: relative; display: grid; gap: 6px; }
.footer-signature-copy > span {
  color: rgba(255,255,255,.46);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.footer-signature-copy a { display: grid; gap: 2px; width: fit-content; }
.footer-signature-copy strong {
  color: white;
  font-size: clamp(19px, 2vw, 29px);
  line-height: 1.05;
  letter-spacing: -.035em;
  transition: color .25s ease;
}
.footer-signature-copy small { color: var(--accent-light); font-size: 10px; letter-spacing: .08em; }
.footer-signature-copy a:hover strong { color: var(--accent-light); }
.footer-signature-mark {
  position: relative;
  min-width: 132px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .06em;
  transition: transform .3s var(--ease), background .3s;
}
.footer-signature-mark:hover { transform: translateY(-4px); background: white; }
.footer-signature-mark span { transition: transform .3s var(--ease); }
.footer-signature-mark:hover span { transform: translate(3px,-3px); }
.footer-bottom {
  margin-top: 28px;
  display: flex;
  grid-template-columns: none;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1100px) {
  .panel-stage { inset: 7% -10% 3% -3%; }
  .panel-stack.is-exploded .panel-one { transform: translate3d(calc(-10% + var(--mx)), calc(-25% + var(--my)), 205px) rotateZ(-3.5deg); }
  .panel-stack.is-exploded .panel-two { transform: translate3d(calc(12% + var(--mx)), calc(-2% + var(--my)), 130px) rotateZ(2.8deg); }
  .panel-stack.is-exploded .panel-three { transform: translate3d(calc(-7% + var(--mx)), calc(21% + var(--my)), 62px) rotateZ(-2deg); }
  .panel-stack.is-exploded .panel-four { transform: translate3d(calc(8% + var(--mx)), calc(43% + var(--my)), 0) rotateZ(1.6deg); }
}
@media (max-width: 820px) {
  .hero-visual { min-height: 650px; }
  .visual-status { top: 2%; right: auto; left: 2%; }
  .panel-stage { inset: 4% -4% 8% -4%; }
  .panel-stack { transform: rotateX(52deg) rotateZ(-24deg) scale(.92); }
  .material-panel { width: 67%; left: 17%; top: 24%; }
  .stack-view-toggle { left: 2%; bottom: 2%; }
  .hero-badge { right: 2%; bottom: 1%; }
  .footer-signature { min-height: 105px; }
}
@media (max-width: 540px) {
  .hero-visual { min-height: 540px; margin-top: 32px; }
  .panel-stage { inset: 5% -25% 10% -20%; }
  .panel-stack { transform: rotateX(53deg) rotateZ(-25deg) scale(.78); }
  .panel-stack.is-exploded .panel-one { transform: translate3d(calc(-8% + var(--mx)), calc(-22% + var(--my)), 180px) rotateZ(-3deg); }
  .panel-stack.is-exploded .panel-two { transform: translate3d(calc(10% + var(--mx)), calc(-1% + var(--my)), 115px) rotateZ(2.4deg); }
  .panel-stack.is-exploded .panel-three { transform: translate3d(calc(-5% + var(--mx)), calc(19% + var(--my)), 55px) rotateZ(-1.7deg); }
  .panel-stack.is-exploded .panel-four { transform: translate3d(calc(7% + var(--mx)), calc(39% + var(--my)), 0) rotateZ(1.4deg); }
  .panel-name { font-size: 8px !important; }
  .visual-status { display: none; }
  .stack-view-toggle { left: 0; bottom: 0; scale: .92; transform-origin: left bottom; }
  .hero-badge { width: 122px; }
  .footer-signature { margin-top: 54px; flex-direction: column; align-items: stretch; padding: 22px; }
  .footer-signature-mark { width: 100%; }
  .footer-bottom { align-items: flex-start; }
}

html.motion-reduced .panel-float,
html.motion-reduced .panel-surface::before,
html.motion-reduced .visual-status i,
html.motion-reduced .footer-signature::before { animation: none !important; }

/* v5 — logo-inspired material stack, refined typography, compact production credit, and mobile navigation fixes */
.site-header { z-index: 300; }
.scroll-progress { z-index: 400; }

/* Refined display scale: still editorial, but less oversized. */
.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(54px, 6.25vw, 106px);
  line-height: .9;
  letter-spacing: -.068em;
}
.section-heading h2,
.collection-header h2,
.manufacturing-copy h2,
.cta-inner h2 {
  font-size: clamp(42px, 5vw, 80px);
  line-height: .97;
  letter-spacing: -.058em;
}
.application-card h3 { font-size: clamp(26px, 2.65vw, 42px); }

/* Four clearly different surfaces, echoing the four materials in the brand mark. */
.material-panel { width: 64%; left: 20%; }
.panel-texture {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  pointer-events: none;
  transform: translateZ(.1px) scale(1.002);
  filter: saturate(1.08) contrast(1.04);
}
.panel-surface {
  background-image: none !important;
  background-color: #8e7862;
}
.panel-surface-light { --edge-a: #f5f0e8; --edge-b: #b8aa99; --edge-c: #71675d; background: #e8e2d8; }
.panel-surface-wood  { --edge-a: #cda47e; --edge-b: #795438; --edge-c: #3d2b20; background: #765039; }
.panel-surface-dark  { --edge-a: #686868; --edge-b: #252525; --edge-c: #090909; background: #191919; }
.panel-surface-stone { --edge-a: #c8bca9; --edge-b: #827765; --edge-c: #494238; background: #817767; }
.panel-surface::after {
  background: linear-gradient(180deg, var(--edge-a, #efe7db) 0%, var(--edge-b, #8f8172) 38%, var(--edge-c, #51483f) 100%);
}
.panel-surface-dark .panel-number,
.panel-surface-dark .panel-name { border-color: rgba(255,255,255,.44); }
.panel-surface-light .panel-name,
.panel-surface-stone .panel-name { background: rgba(12,12,11,.7) !important; }

/* Keep the exploded composition closer to the stacked material icon. */
.panel-stack.is-exploded .panel-one {
  transform: translate3d(calc(-5% + var(--mx)), calc(-30% + var(--my)), 230px) rotateZ(-2.8deg);
}
.panel-stack.is-exploded .panel-two {
  transform: translate3d(calc(5% + var(--mx)), calc(-5% + var(--my)), 145px) rotateZ(2.2deg);
}
.panel-stack.is-exploded .panel-three {
  transform: translate3d(calc(-3% + var(--mx)), calc(21% + var(--my)), 70px) rotateZ(-1.7deg);
}
.panel-stack.is-exploded .panel-four {
  transform: translate3d(calc(4% + var(--mx)), calc(47% + var(--my)), 0) rotateZ(1.3deg);
}

/* California is already communicated in the content and footer; remove the floating seal. */
.hero-badge { display: none !important; }

/* Compact, professional production credit on the same baseline as the legal footer. */
.footer-signature { display: none !important; }
.footer-bottom {
  margin-top: 72px;
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255,255,255,.35);
  font-size: 11px;
}
.footer-production-credit {
  justify-self: center;
  color: rgba(255,255,255,.38);
  text-align: center;
  transition: color .25s ease;
}
.footer-production-credit strong {
  color: rgba(255,255,255,.58);
  font-weight: 600;
  transition: color .25s ease;
}
.footer-production-credit:hover,
.footer-production-credit:hover strong { color: var(--accent-light); }
.footer-origin { justify-self: end; }

/* Full, opaque mobile menu with a controlled editorial scale. */
.mobile-menu {
  z-index: 20;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #090908 !important;
  background-image:
    radial-gradient(circle at 88% 8%, rgba(239,198,159,.08), transparent 32%),
    linear-gradient(180deg, #0d0d0c, #080807) !important;
  box-shadow: 0 30px 80px rgba(0,0,0,.65);
  opacity: 1 !important;
  isolation: isolate;
}
.mobile-menu[hidden] { display: none !important; }
.mobile-menu nav { max-width: 680px; margin-inline: auto; }
.mobile-menu nav a {
  padding: 15px 0;
  font-size: clamp(22px, 5vw, 30px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -.025em;
}
.mobile-contact {
  max-width: 680px;
  margin: 28px auto 0;
  padding: 20px 0 28px;
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .panel-stack.is-exploded .panel-one { transform: translate3d(calc(-4% + var(--mx)), calc(-27% + var(--my)), 205px) rotateZ(-2.5deg); }
  .panel-stack.is-exploded .panel-two { transform: translate3d(calc(5% + var(--mx)), calc(-3% + var(--my)), 130px) rotateZ(2deg); }
  .panel-stack.is-exploded .panel-three { transform: translate3d(calc(-3% + var(--mx)), calc(21% + var(--my)), 62px) rotateZ(-1.5deg); }
  .panel-stack.is-exploded .panel-four { transform: translate3d(calc(4% + var(--mx)), calc(45% + var(--my)), 0) rotateZ(1.2deg); }
}

@media (max-width: 820px) {
  .hero-copy h1 { font-size: clamp(50px, 13vw, 72px); line-height: .92; }
  .section-heading h2,
  .collection-header h2,
  .manufacturing-copy h2,
  .cta-inner h2 { font-size: clamp(39px, 10vw, 58px); }
  .mobile-menu {
    inset: 73px 0 0;
    min-height: calc(100dvh - 73px);
    padding: 26px max(20px, calc((100vw - 680px) / 2)) 34px;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    text-align: center;
  }
  .footer-production-credit,
  .footer-origin { justify-self: center; }
  .footer-production-credit { order: 2; max-width: 520px; line-height: 1.55; }
  .footer-copyright { order: 1; }
  .footer-origin { order: 3; }
}

@media (max-width: 540px) {
  .hero-copy h1 { font-size: clamp(47px, 14.5vw, 64px); }
  .hero-intro { margin-top: 26px; font-size: 16px; }
  .hero-visual { min-height: 500px; }
  .panel-stage { inset: 7% -21% 12% -19%; }
  .panel-stack { transform: rotateX(53deg) rotateZ(-25deg) scale(.77); }
  .material-panel { width: 65%; left: 18%; }
  .panel-stack.is-exploded .panel-one { transform: translate3d(calc(-3% + var(--mx)), calc(-24% + var(--my)), 180px) rotateZ(-2.2deg); }
  .panel-stack.is-exploded .panel-two { transform: translate3d(calc(4% + var(--mx)), calc(-2% + var(--my)), 115px) rotateZ(1.8deg); }
  .panel-stack.is-exploded .panel-three { transform: translate3d(calc(-2% + var(--mx)), calc(20% + var(--my)), 55px) rotateZ(-1.3deg); }
  .panel-stack.is-exploded .panel-four { transform: translate3d(calc(3% + var(--mx)), calc(42% + var(--my)), 0) rotateZ(1deg); }
  .mobile-menu { padding-top: 20px; }
  .mobile-menu nav a { padding: 13px 0; font-size: clamp(21px, 7vw, 27px); }
  .footer-bottom { margin-top: 54px; }
}



/* v8 — secure account action */
@media (max-width: 1260px) and (min-width: 1101px) {
  .header-inner { grid-template-columns: 230px 1fr auto; gap: 24px; }
  .brand { width: 215px; }
  .desktop-nav { gap: clamp(18px, 2vw, 28px); }
  .header-actions { gap: 8px; }
  .button-login { min-width: 112px; padding-inline: 15px; }
  .header-cta { padding-inline: 16px; }
}

@media (max-width: 1100px) and (min-width: 821px) {
  .header-inner { grid-template-columns: 220px 1fr auto; gap: 16px; }
  .header-actions { gap: 8px; }
  .button-login { min-width: 112px; padding-inline: 14px; }
  .header-cta { padding-inline: 15px; }
}

/* v7 — restored product cards and tightened vertical rhythm */
.section {
  padding-block: clamp(72px, 6.5vw, 104px);
}

.intro-section {
  padding-bottom: clamp(66px, 5.5vw, 88px);
}

.story-metrics {
  margin-top: clamp(42px, 4vw, 62px);
}

.collections-section {
  padding-top: clamp(74px, 6vw, 96px);
  padding-bottom: clamp(62px, 5vw, 82px);
}

.decor-finder {
  margin-top: clamp(38px, 4vw, 52px);
}

.product-grid {
  margin-top: 32px;
}

.collection-footer {
  margin-top: 36px;
}

.manufacturing-section {
  min-height: 0;
  padding-block: clamp(72px, 6vw, 98px);
}

.manufacturing-sticky {
  position: relative;
  top: auto;
  min-height: 0;
  display: block;
}

.process-card:nth-child(2) {
  transform: translateY(28px);
}

.applications-section {
  padding-top: clamp(70px, 5.5vw, 92px);
  padding-bottom: clamp(74px, 6vw, 98px);
}

.application-grid {
  margin-top: clamp(46px, 5vw, 64px);
}

@media (max-width: 980px) {
  .manufacturing-section {
    padding-block: 74px;
  }

  .process-card:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 760px) {
  .section,
  .collections-section,
  .applications-section,
  .manufacturing-section {
    padding-block: 60px;
  }

  .story-metrics {
    margin-top: 42px;
  }

  .decor-finder {
    margin-top: 34px;
  }

  .product-grid {
    margin-top: 26px;
  }

  .collection-footer {
    margin-top: 30px;
  }

  .application-grid {
    margin-top: 38px;
  }
}

/* =========================================================
   v9 — questionnaire implementation + MVC-ready phase
   ========================================================= */
select, textarea { font: inherit; }

.header-inner-v9 { grid-template-columns: 205px minmax(0,1fr) auto; gap: 24px; }
.header-inner-v9 .brand { width: 195px; }
.desktop-nav-v9 { gap: clamp(14px, 1.45vw, 24px); }
.desktop-nav-v9 a { font-size: 11.5px; letter-spacing: .035em; white-space: nowrap; }
.hero-copy h1 { max-width: 810px; font-size: clamp(54px, 6.25vw, 108px); }
.hero-intro { max-width: 650px; }
.hero-actions { flex-wrap: wrap; gap: 14px; }
.hero-quick-links { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 18px; }
.hero-quick-links a { position: relative; color: rgba(255,255,255,.48); font-size: 11px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; transition: color .25s ease; }
.hero-quick-links a::after { content:""; position:absolute; left:0; right:100%; bottom:-4px; height:1px; background:var(--accent-light); transition:right .3s var(--ease); }
.hero-quick-links a:hover { color: white; }
.hero-quick-links a:hover::after { right: 0; }

.direct-section { position: relative; overflow: hidden; }
.direct-section::before { content:""; position:absolute; width:520px; height:520px; right:-280px; top:-220px; border-radius:50%; background:radial-gradient(circle,rgba(200,140,85,.14),transparent 68%); pointer-events:none; }
.direct-grid { margin-top: 52px; display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.direct-card { min-height: 250px; padding: 28px; border:1px solid rgba(12,12,11,.12); border-radius:20px; background:rgba(255,255,255,.22); display:flex; flex-direction:column; transition:transform .45s var(--ease), background .45s ease, border-color .45s ease; }
.direct-card:hover { transform: translateY(-8px); background:rgba(255,255,255,.64); border-color:rgba(12,12,11,.22); }
.direct-card > span { width:36px; height:36px; display:grid; place-items:center; border:1px solid rgba(12,12,11,.2); border-radius:50%; font-size:10px; }
.direct-card h3 { margin:auto 0 12px; max-width:240px; font-size:clamp(22px,2vw,32px); line-height:1; letter-spacing:-.045em; }
.direct-card p { margin:0; color:rgba(12,12,11,.58); font-size:13px; line-height:1.6; }

.collections-section .collection-header > p { max-width:430px; }
.product-card .product-card-copy p::after { content:" · availability on request"; opacity:.7; }

.application-grid-v9 { grid-template-columns: repeat(12,1fr); }
.application-grid-v9 .app-one { grid-column: span 7; }
.application-grid-v9 .app-two { grid-column: span 5; }
.application-grid-v9 .app-three { grid-column: span 4; }
.application-grid-v9 .app-four { grid-column: span 4; }
.application-grid-v9 .app-five { grid-column: span 4; }
.app-five::before { background-image:url('../images/products/altamira-walnut.webp'); background-position:62% center; }

.manufacturing-grid-v9 { min-height:0; align-items:start; }
.manufacturing-note { max-width:650px; margin-top:18px !important; color:rgba(255,255,255,.46) !important; font-size:13px !important; }
.supply-chain { margin:30px 0 8px; display:flex; align-items:center; flex-wrap:wrap; gap:10px; }
.supply-chain span { padding:10px 14px; border:1px solid rgba(255,255,255,.14); border-radius:999px; background:rgba(255,255,255,.04); color:rgba(255,255,255,.76); font-size:11px; letter-spacing:.04em; }
.supply-chain i { color:var(--accent-light); font-style:normal; }
.process-card-wrap-v9 { align-self:start; }
.process-card-wrap-v9 .process-card:nth-child(2) { transform:translateY(22px); }

.audience-section { position:relative; background:#11110f; overflow:hidden; }
.audience-section::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 12% 8%,rgba(200,140,85,.16),transparent 32%),radial-gradient(circle at 88% 80%,rgba(255,255,255,.05),transparent 34%); pointer-events:none; }
.audience-header { position:relative; z-index:1; }
.audience-header h2 { margin:0; font-size:clamp(48px,6vw,92px); line-height:.94; letter-spacing:-.065em; font-weight:650; }
.audience-grid { position:relative; z-index:1; margin-top:58px; display:grid; grid-template-columns:1.18fr .82fr; gap:18px; }
.audience-card { min-height:530px; padding:clamp(30px,4vw,52px); border:1px solid rgba(255,255,255,.13); border-radius:26px; background:rgba(255,255,255,.035); display:flex; flex-direction:column; overflow:hidden; transition:transform .5s var(--ease), border-color .4s ease, background .4s ease; }
.audience-card::before { content:""; position:absolute; pointer-events:none; }
.audience-card:hover { transform:translateY(-8px); border-color:rgba(239,198,159,.34); background:rgba(255,255,255,.055); }
.audience-primary { background:linear-gradient(145deg,rgba(200,140,85,.16),rgba(255,255,255,.03)); }
.audience-tag { width:fit-content; padding:7px 10px; border:1px solid rgba(255,255,255,.16); border-radius:999px; color:var(--accent-light); font-size:9px; text-transform:uppercase; letter-spacing:.14em; }
.audience-card h3 { margin:72px 0 20px; font-size:clamp(38px,4.2vw,68px); line-height:.92; letter-spacing:-.06em; }
.audience-card p { max-width:650px; margin:0; color:rgba(255,255,255,.58); }
.audience-card ul { margin:30px 0 36px; padding:0; list-style:none; display:grid; gap:10px; color:rgba(255,255,255,.72); font-size:12px; }
.audience-card li { display:flex; align-items:center; gap:9px; }
.audience-card li::before { content:""; width:5px; height:5px; border-radius:50%; background:var(--accent-light); }
.audience-card .text-link { margin-top:auto; width:fit-content; }

.gallery-heading { display:grid; grid-template-columns:1fr 430px; align-items:end; gap:50px; }
.gallery-heading h2 { margin:0; font-size:clamp(48px,6vw,92px); line-height:.94; letter-spacing:-.065em; font-weight:650; }
.gallery-heading > p { margin:0 0 4px; color:rgba(12,12,11,.58); }
.gallery-grid { margin-top:58px; display:grid; grid-template-columns:repeat(12,1fr); gap:16px; }
.gallery-card { position:relative; min-height:420px; padding:24px; overflow:hidden; border-radius:22px; background:#d8d1c7; display:flex; flex-direction:column; justify-content:flex-end; isolation:isolate; color:white; }
.gallery-card::after { content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(to top,rgba(10,10,9,.86),rgba(10,10,9,.06) 62%); }
.gallery-surface { position:absolute; inset:0; z-index:-2; background-image:var(--gallery-image); background-size:cover; background-position:center; transform:scale(1.03); transition:transform 1s var(--ease), filter 1s var(--ease); }
.gallery-card:hover .gallery-surface { transform:scale(1.1); filter:saturate(1.08) contrast(1.05); }
.gallery-card > span { width:fit-content; margin-bottom:auto; padding:7px 10px; border:1px solid rgba(255,255,255,.38); border-radius:999px; background:rgba(0,0,0,.13); backdrop-filter:blur(10px); font-size:9px; text-transform:uppercase; letter-spacing:.13em; }
.gallery-card h3 { margin:0; font-size:clamp(26px,2.5vw,40px); line-height:1; letter-spacing:-.045em; }
.gallery-card p { margin:9px 0 0; color:rgba(255,255,255,.62); font-size:11px; text-transform:uppercase; letter-spacing:.11em; }
.gallery-a { grid-column:span 7; }
.gallery-b { grid-column:span 5; }
.gallery-c,.gallery-d,.gallery-e { grid-column:span 4; min-height:340px; }

.story-v9 { padding-top:clamp(80px,7vw,110px); }
.founders-grid { margin-top:52px; display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid rgba(12,12,11,.16); border-bottom:1px solid rgba(12,12,11,.16); }
.founders-grid article { padding:28px 22px; display:grid; gap:8px; border-right:1px solid rgba(12,12,11,.16); }
.founders-grid article:last-child { border-right:0; }
.founders-grid span { color:rgba(12,12,11,.45); font-size:9px; text-transform:uppercase; letter-spacing:.14em; }
.founders-grid strong { font-size:clamp(20px,2vw,30px); letter-spacing:-.035em; }

.events-section { position:relative; background:#0d0d0c; }
.events-header { display:grid; grid-template-columns:1fr 370px; align-items:end; gap:50px; }
.events-header h2 { margin:0; font-size:clamp(48px,6vw,92px); line-height:.94; letter-spacing:-.065em; font-weight:650; }
.events-header > p { margin:0 0 6px; color:rgba(255,255,255,.48); }
.events-grid { margin-top:58px; display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.event-card { position:relative; min-height:480px; padding:32px; border-radius:24px; border:1px solid rgba(255,255,255,.13); background:linear-gradient(145deg,rgba(255,255,255,.045),rgba(200,140,85,.06)); display:flex; flex-direction:column; overflow:hidden; }
.event-card::before { content:""; position:absolute; width:300px; height:300px; right:-160px; top:-160px; border:1px solid rgba(239,198,159,.18); border-radius:50%; box-shadow:0 0 0 40px rgba(239,198,159,.025),0 0 0 80px rgba(239,198,159,.015); }
.event-status { position:relative; width:fit-content; padding:7px 10px; border-radius:999px; background:var(--accent-light); color:var(--ink); font-size:9px; font-weight:750; text-transform:uppercase; letter-spacing:.12em; }
.event-date { display:flex; align-items:flex-end; gap:14px; margin:55px 0 45px; }
.event-date strong { font-size:clamp(58px,6vw,94px); line-height:.78; letter-spacing:-.08em; font-weight:650; }
.event-date span { color:rgba(255,255,255,.46); font-size:11px; line-height:1.15; text-transform:uppercase; letter-spacing:.12em; }
.event-kicker { margin:0 0 10px; color:var(--accent-light) !important; font-size:10px !important; text-transform:uppercase; letter-spacing:.14em; }
.event-card h3 { margin:0; font-size:clamp(30px,3vw,44px); letter-spacing:-.045em; }
.event-card p { color:rgba(255,255,255,.48); }
.event-card .text-link { margin-top:auto; width:fit-content; }

.resources-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:70px; align-items:start; }
.resources-grid h2 { margin:0; font-size:clamp(44px,5vw,76px); line-height:.95; letter-spacing:-.06em; }
.resources-grid > div:first-child > p:last-child { max-width:620px; color:rgba(12,12,11,.58); }
.resource-list { border-top:1px solid rgba(12,12,11,.16); }
.resource-list article { min-height:100px; padding:22px 0; border-bottom:1px solid rgba(12,12,11,.16); display:grid; grid-template-columns:54px 1fr; align-items:center; gap:12px; }
.resource-list article > span { color:rgba(12,12,11,.35); font-size:10px; }
.resource-list article div { display:flex; align-items:center; justify-content:space-between; gap:18px; }
.resource-list strong { font-size:20px; letter-spacing:-.025em; }
.resource-list small { color:rgba(12,12,11,.45); font-size:10px; text-transform:uppercase; letter-spacing:.1em; text-align:right; }

.contact-section { position:relative; overflow:hidden; padding-block:clamp(90px,9vw,140px); background:#0b0b0a; }
.contact-section::after { content:""; position:absolute; inset:0; background:radial-gradient(circle at 25% 30%,rgba(200,140,85,.12),transparent 30%),linear-gradient(90deg,rgba(11,11,10,.88),rgba(11,11,10,.96)); }
.contact-section .cta-texture { opacity:.08; }
.contact-layout { position:relative; z-index:2; display:grid; grid-template-columns:.82fr 1.18fr; gap:clamp(44px,6vw,90px); align-items:start; }
.contact-copy h2 { margin:0; font-size:clamp(50px,6vw,94px); line-height:.93; letter-spacing:-.07em; }
.contact-copy > p:not(.eyebrow) { max-width:570px; color:rgba(255,255,255,.55); }
.contact-team { margin-top:46px; display:grid; gap:18px; }
.contact-team article { padding-top:16px; border-top:1px solid rgba(255,255,255,.13); display:grid; grid-template-columns:105px minmax(110px,.7fr) 1.2fr; align-items:center; gap:12px; }
.contact-team span { color:rgba(255,255,255,.34); font-size:9px; text-transform:uppercase; letter-spacing:.13em; }
.contact-team strong { font-size:13px; }
.contact-team a { color:rgba(255,255,255,.62); font-size:12px; word-break:break-word; }
.contact-team a:hover { color:var(--accent-light); }
.inquiry-form { padding:clamp(26px,3.5vw,44px); border:1px solid rgba(255,255,255,.13); border-radius:26px; background:rgba(255,255,255,.045); backdrop-filter:blur(18px); }
.form-row { margin-bottom:18px; display:grid; gap:16px; }
.form-row.two { grid-template-columns:1fr 1fr; }
.inquiry-form label { display:grid; gap:8px; color:rgba(255,255,255,.62); font-size:10px; text-transform:uppercase; letter-spacing:.11em; }
.inquiry-form input,.inquiry-form select,.inquiry-form textarea { width:100%; min-width:0; border:1px solid rgba(255,255,255,.15); border-radius:13px; background:rgba(0,0,0,.19); color:white; padding:14px 15px; outline:none; text-transform:none; letter-spacing:normal; font-size:14px; transition:border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.inquiry-form select { color-scheme:dark; }
.inquiry-form option { background:#181816; color:white; }
.inquiry-form textarea { resize:vertical; min-height:130px; }
.inquiry-form input:focus,.inquiry-form select:focus,.inquiry-form textarea:focus { border-color:var(--accent-light); background:rgba(0,0,0,.32); box-shadow:0 0 0 3px rgba(239,198,159,.08); }
.inquiry-form [aria-invalid="true"] { border-color:#e7a5a0; }
.honeypot { position:absolute !important; width:1px !important; height:1px !important; overflow:hidden !important; clip:rect(0 0 0 0) !important; }
.form-submit-row { margin-top:8px; display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.form-status { margin:0; color:rgba(255,255,255,.55); font-size:12px; max-width:420px; }
.form-status.is-success { color:#cfe8cf; }
.form-status.is-error { color:#f1b1aa; }

.footer-top-v9 { grid-template-columns:1.2fr 1fr 1fr 1fr; }
.footer-pending { color:rgba(255,255,255,.3); font-size:12px; }

.modal-actions { align-items:center; }

@media (max-width: 1320px) {
  .desktop-nav-v9 { gap:12px; }
  .desktop-nav-v9 a { font-size:10.5px; }
  .header-inner-v9 { grid-template-columns:180px minmax(0,1fr) auto; gap:16px; }
  .header-inner-v9 .brand { width:175px; }
  .button-login { min-width:auto; }
  .button-login span { display:none; }
}

@media (max-width: 1160px) {
  .desktop-nav-v9 { display:none; }
  .header-inner-v9 { grid-template-columns:220px 1fr auto; }
  .header-inner-v9 .brand { width:210px; }
  .menu-toggle { display:block; }
  .header-actions { justify-self:end; }
  .direct-grid { grid-template-columns:repeat(2,1fr); }
  .gallery-heading,.events-header { grid-template-columns:1fr 350px; }
}

@media (max-width: 980px) {
  .audience-grid,.resources-grid,.contact-layout { grid-template-columns:1fr; }
  .audience-card { min-height:460px; }
  .gallery-heading,.events-header { grid-template-columns:1fr; align-items:start; }
  .gallery-heading > p,.events-header > p { max-width:650px; }
  .gallery-a,.gallery-b,.gallery-c,.gallery-d,.gallery-e { grid-column:span 6; min-height:360px; }
  .events-grid { grid-template-columns:1fr; }
  .event-card { min-height:420px; }
  .contact-team article { grid-template-columns:95px 110px 1fr; }
}

@media (max-width: 820px) {
  .header-actions .button-login { display:none; }
  .header-actions .header-cta { display:none; }
  .header-inner-v9 { grid-template-columns:1fr auto; }
  .header-inner-v9 .brand { width:min(215px,58vw); }
  .hero-copy h1 { font-size:clamp(48px,13vw,76px); }
  .hero-actions { align-items:flex-start; }
  .hero-actions .button { width:auto; }
  .hero-proof { gap:14px; margin-top:46px; }
  .direct-grid { grid-template-columns:1fr; }
  .application-grid-v9 { grid-template-columns:1fr; }
  .application-grid-v9 .app-one,.application-grid-v9 .app-two,.application-grid-v9 .app-three,.application-grid-v9 .app-four,.application-grid-v9 .app-five { grid-column:auto; min-height:320px; }
  .process-card-wrap-v9 .process-card:nth-child(2) { transform:none; }
  .gallery-a,.gallery-b,.gallery-c,.gallery-d,.gallery-e { grid-column:span 12; min-height:330px; }
  .founders-grid { grid-template-columns:1fr; }
  .founders-grid article { border-right:0; border-bottom:1px solid rgba(12,12,11,.16); }
  .founders-grid article:last-child { border-bottom:0; }
  .form-row.two { grid-template-columns:1fr; }
  .footer-top-v9 { grid-template-columns:1fr 1fr; }
}

@media (max-width: 620px) {
  .hero { min-height:auto; }
  .hero-grid { padding-top:70px; }
  .hero-quick-links { gap:14px; }
  .hero-proof { grid-template-columns:1fr; }
  .hero-proof div { grid-template-columns:1fr 1fr; }
  .direct-card { min-height:220px; }
  .audience-card { min-height:0; }
  .audience-card h3 { margin-top:50px; }
  .resource-list article div { align-items:flex-start; flex-direction:column; gap:6px; }
  .resource-list small { text-align:left; }
  .contact-team article { grid-template-columns:1fr; gap:5px; }
  .contact-team span { margin-bottom:3px; }
  .footer-top-v9 { grid-template-columns:1fr; }
  .footer-bottom { grid-template-columns:1fr !important; text-align:center; justify-items:center; gap:9px; }
  .footer-origin { justify-self:center !important; }
  .footer-production-credit { justify-self:center; }
}

/* v9.1 — five factory-direct value pillars */
@media (min-width: 1161px) {
  .direct-grid { grid-template-columns: repeat(5,1fr); }
  .direct-card { padding: 24px; }
  .direct-card h3 { font-size: clamp(20px,1.7vw,28px); }
}

/* =========================================================
   V11 — application imagery, event visuals, shared-layout
   subpages, trade-show lead capture & AI material visualizer
   ========================================================= */

/* Application imagery mapped to real-use representative scenes */
.app-one::before { background-image:url('../images/applications/cabinets.webp?v=20') !important; background-position:center; }
.app-two::before { background-image:url('../images/applications/interior-design.webp?v=20') !important; background-position:center; }
.app-three::before { background-image:url('../images/applications/office.webp?v=20') !important; background-position:center; }
.app-four::before { background-image:url('../images/applications/showrooms.webp?v=20') !important; background-position:center; }
.app-five::before { background-image:url('../images/applications/closets.webp?v=20') !important; background-position:center; }
.application-card::after { background:linear-gradient(to top,rgba(10,10,9,.86),rgba(10,10,9,.1) 62%) !important; }

/* Representative application gallery */
.gallery-card { background:#bdb5aa; }
.gallery-surface { filter:saturate(.96) contrast(1.01); }
.gallery-card:hover .gallery-surface { filter:saturate(1.04) contrast(1.04); }

/* Trade show event cards with LOCAL project imagery */
.event-card-image { background-size:cover !important; background-position:center !important; isolation:isolate; }
.event-card-image::after { content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(180deg,rgba(8,8,8,.20) 0%,rgba(8,8,8,.42) 43%,rgba(8,8,8,.93) 100%); }
.event-card-image::before { z-index:0; }
.event-iwf { background-image:url('../images/events/iwf-atlanta-2026.webp') !important; }
.event-awfs { background-image:url('../images/events/awfs-fair-2027.webp') !important; }
.event-card-image > * { position:relative; z-index:2; }
.event-card-image .event-status { background:rgba(248,218,188,.94); backdrop-filter:blur(8px); }
.event-note { margin-top:18px; }
.event-note p { margin:0; color:rgba(255,255,255,.36); font-size:11px; }

/* Contact display requested formatting */
.contact-team-v11 article { grid-template-columns:88px 115px 1fr; align-items:start; }
.contact-lines { display:grid; gap:6px; min-width:0; }
.contact-lines a { display:block; width:fit-content; overflow-wrap:anywhere; }

/* Home AI preview */
.ai-teaser-section { position:relative; overflow:hidden; background:linear-gradient(180deg,#f5f1e9 0%,#ece5d9 100%); }
.ai-teaser-section::before { content:""; position:absolute; width:560px; height:560px; right:-180px; top:-240px; border-radius:50%; border:1px solid rgba(163,116,79,.15); box-shadow:0 0 0 65px rgba(163,116,79,.03),0 0 0 130px rgba(163,116,79,.018); }
.ai-teaser-grid { position:relative; z-index:2; display:grid; grid-template-columns:1fr .98fr; gap:60px; align-items:center; }
.ai-teaser-copy h2 { margin:0 0 24px; font-size:clamp(44px,5vw,78px); line-height:.95; letter-spacing:-.06em; }
.ai-teaser-copy > p:not(.eyebrow) { max-width:700px; color:rgba(12,12,11,.6); }
.ai-teaser-copy .button { margin-top:14px; }
.ai-console { position:relative; padding:28px; border-radius:28px; color:white; background:linear-gradient(145deg,#11110f,#2c241e); box-shadow:0 32px 80px rgba(32,24,18,.18); overflow:hidden; }
.ai-console::after { content:""; position:absolute; width:260px; height:260px; right:-90px; bottom:-100px; border-radius:50%; background:radial-gradient(circle,rgba(239,198,159,.18),rgba(239,198,159,0) 68%); }
.ai-console-top { position:relative; z-index:2; display:grid; grid-template-columns:auto 1fr; gap:4px 10px; align-items:center; padding-bottom:20px; border-bottom:1px solid rgba(255,255,255,.1); }
.ai-console-top small { grid-column:2; color:rgba(255,255,255,.42); }
.ai-live-dot { width:9px; height:9px; border-radius:50%; background:#efc69f; box-shadow:0 0 0 7px rgba(239,198,159,.08),0 0 22px rgba(239,198,159,.55); }
.ai-console-flow { position:relative; z-index:2; display:flex; flex-wrap:wrap; gap:10px; align-items:center; margin:22px 0; color:rgba(255,255,255,.54); font-size:10px; text-transform:uppercase; letter-spacing:.1em; }
.ai-console-flow i { color:#efc69f; font-style:normal; }
.ai-console-grid { position:relative; z-index:2; display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
.ai-console-grid article { min-height:100px; padding:17px; border:1px solid rgba(255,255,255,.09); background:rgba(255,255,255,.04); border-radius:18px; display:grid; align-content:end; }
.ai-console-grid strong { font-size:14px; }
.ai-console-grid small { margin-top:4px; color:rgba(255,255,255,.45); }

/* Shared inner page foundation */
.subpage-hero { position:relative; min-height:620px; padding:170px 0 90px; background:#0d0d0c; overflow:hidden; }
.subpage-hero::before { content:""; position:absolute; inset:-260px -170px auto auto; width:680px; height:680px; border-radius:50%; border:1px solid rgba(239,198,159,.16); box-shadow:0 0 0 58px rgba(239,198,159,.025),0 0 0 118px rgba(239,198,159,.014); }
.subpage-hero::after { content:""; position:absolute; left:-8%; bottom:-280px; width:700px; height:480px; background:radial-gradient(ellipse,rgba(146,105,71,.2),rgba(146,105,71,0) 70%); transform:rotate(-18deg); }
.subpage-hero-grid { position:relative; z-index:2; display:grid; grid-template-columns:1.05fr .95fr; gap:70px; align-items:center; }
.subpage-hero-copy h1 { margin:14px 0 24px; font-size:clamp(58px,7vw,108px); line-height:.88; letter-spacing:-.075em; }
.subpage-hero-copy h1 em { color:var(--accent-light); font-style:italic; font-weight:500; }
.subpage-hero-copy > p:not(.eyebrow) { max-width:780px; color:rgba(255,255,255,.6); font-size:clamp(17px,1.6vw,23px); line-height:1.55; }

/* Trade show page */
.trade-hero-panel { padding:28px; border:1px solid rgba(255,255,255,.1); border-radius:28px; background:rgba(255,255,255,.035); backdrop-filter:blur(12px); }
.trade-hero-panel > p { margin:0 0 14px; color:rgba(255,255,255,.38); font-size:10px; text-transform:uppercase; letter-spacing:.14em; }
.trade-role-chips { display:flex; flex-wrap:wrap; gap:8px; }
.trade-role-chips span { padding:9px 12px; border-radius:999px; border:1px solid rgba(255,255,255,.1); color:rgba(255,255,255,.76); background:rgba(255,255,255,.035); font-size:11px; }
.trade-flow { display:flex; flex-wrap:wrap; gap:9px; align-items:center; margin-top:28px; padding-top:20px; border-top:1px solid rgba(255,255,255,.08); color:rgba(255,255,255,.75); }
.trade-flow i { color:var(--accent-light); font-style:normal; }
.lead-form-section { background:#f2eee7; }
.lead-intro-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:70px; align-items:end; margin-bottom:46px; }
.lead-intro-grid h2 { margin:0; font-size:clamp(46px,5vw,78px); line-height:.94; letter-spacing:-.06em; }
.lead-intro-grid > p { margin:0 0 6px; color:rgba(12,12,11,.58); font-size:17px; }
.trade-lead-form { width:min(1180px,calc(100% - 48px)); margin:0 auto; display:grid; gap:16px; }
.form-section-card { padding:30px; border:1px solid rgba(12,12,11,.10); background:rgba(255,255,255,.70); border-radius:25px; box-shadow:0 20px 50px rgba(42,31,23,.045); }
.form-section-title { display:flex; gap:15px; align-items:center; padding-bottom:22px; margin-bottom:22px; border-bottom:1px solid rgba(12,12,11,.09); }
.form-section-title > span { width:38px; height:38px; display:grid; place-items:center; border-radius:50%; background:#11110f; color:#efc69f; font-size:10px; }
.form-section-title strong { display:block; font-size:18px; }
.form-section-title small { display:block; margin-top:3px; color:rgba(12,12,11,.45); }
.form-row.three { grid-template-columns:repeat(3,minmax(0,1fr)); }
.checkbox-fieldset { margin:0 0 20px; padding:0; border:0; display:flex; flex-wrap:wrap; gap:9px; }
.checkbox-fieldset legend { width:100%; margin-bottom:8px; font-size:12px; font-weight:700; }
.checkbox-fieldset label { cursor:pointer; }
.checkbox-fieldset input { position:absolute; opacity:0; }
.checkbox-fieldset span { display:block; padding:10px 13px; border:1px solid rgba(12,12,11,.12); border-radius:999px; background:#fff; color:rgba(12,12,11,.68); font-size:11px; transition:.2s ease; }
.checkbox-fieldset input:checked + span { background:#161513; border-color:#161513; color:#f3d0ae; }
.lead-submit { display:flex; align-items:center; justify-content:space-between; gap:30px; padding:26px 30px; border-radius:24px; background:#11110f; color:white; }
.lead-submit strong { font-size:18px; }
.lead-submit p { margin:4px 0 0; color:rgba(255,255,255,.44); font-size:12px; }
.trade-lead-form > .form-status { padding:0 4px; }

/* AI page */
.ai-page-hero { background:radial-gradient(circle at 78% 38%,rgba(104,76,57,.32),rgba(13,13,12,0) 30%),#0d0d0c; }
.ai-orbit { position:relative; width:min(520px,90vw); aspect-ratio:1; margin:auto; display:grid; place-items:center; }
.ai-core { position:relative; z-index:4; width:190px; height:190px; display:grid; place-items:center; align-content:center; text-align:center; border-radius:50%; background:radial-gradient(circle at 38% 30%,#5a4636,#151310 64%); border:1px solid rgba(239,198,159,.28); box-shadow:0 0 80px rgba(239,198,159,.12),inset 0 0 40px rgba(255,255,255,.04); }
.ai-core span { color:#efc69f; font-size:11px; letter-spacing:.18em; }
.ai-core strong { margin-top:6px; font-size:26px; line-height:.94; }
.ai-orbit > i { position:absolute; border-radius:50%; border:1px solid rgba(239,198,159,.17); animation:aiSpin 18s linear infinite; }
.ai-orbit .orbit-one { inset:14%; }
.ai-orbit .orbit-two { inset:4%; animation-duration:29s; animation-direction:reverse; }
.ai-orbit .orbit-three { inset:26%; animation-duration:12s; }
.ai-orbit .node { position:absolute; z-index:5; padding:8px 11px; border-radius:999px; background:#181613; border:1px solid rgba(239,198,159,.18); color:rgba(255,255,255,.62); font-size:10px; text-transform:uppercase; letter-spacing:.11em; }
.ai-orbit .n1 { top:10%; left:16%; }.ai-orbit .n2 { top:24%; right:5%; }.ai-orbit .n3 { bottom:16%; right:10%; }.ai-orbit .n4 { bottom:8%; left:13%; }
@keyframes aiSpin { to { transform:rotate(360deg); } }
.ai-workflow-section { background:#f4f0e8; }
.ai-workflow-header h2 { margin:0; font-size:clamp(48px,6vw,88px); letter-spacing:-.065em; line-height:.93; }
.ai-workflow-grid { margin-top:54px; display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(12,12,11,.12); border:1px solid rgba(12,12,11,.12); }
.ai-workflow-grid article { min-height:310px; padding:28px; background:#f4f0e8; display:flex; flex-direction:column; }
.ai-workflow-grid article > span { color:rgba(12,12,11,.28); font-size:10px; }
.ai-workflow-grid h3 { margin:auto 0 10px; font-size:36px; letter-spacing:-.05em; }
.ai-workflow-grid p { margin:0; color:rgba(12,12,11,.54); }
.ai-intake-section { background:#0d0d0c; }
.ai-intake-grid { display:grid; grid-template-columns:.82fr 1.18fr; gap:60px; align-items:start; }
.ai-intake-copy { position:sticky; top:140px; }
.ai-intake-copy h2 { margin:12px 0 18px; font-size:clamp(48px,5.8vw,86px); line-height:.92; letter-spacing:-.065em; }
.ai-intake-copy > p:not(.eyebrow) { color:rgba(255,255,255,.55); }
.ai-safety-note { margin-top:34px; padding:22px; border:1px solid rgba(255,255,255,.1); border-radius:20px; background:rgba(255,255,255,.03); }
.ai-safety-note strong { color:#efc69f; }
.ai-safety-note p { margin:8px 0 0; color:rgba(255,255,255,.46); font-size:12px; }
.ai-visualizer-form { position:relative; padding:30px; border:1px solid rgba(255,255,255,.09); border-radius:28px; background:linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.018)); }
.ai-visualizer-form label { color:rgba(255,255,255,.62); }
.ai-visualizer-form input,.ai-visualizer-form select,.ai-visualizer-form textarea { color:white; border-color:rgba(255,255,255,.14); background:rgba(255,255,255,.04); }
.ai-visualizer-form select { color-scheme:dark; }
.ai-visualizer-form select option { color:#fff; background:#151412; }
.ai-form-status { display:flex; align-items:center; gap:9px; margin-bottom:22px; padding-bottom:18px; border-bottom:1px solid rgba(255,255,255,.08); color:rgba(255,255,255,.65); font-size:11px; text-transform:uppercase; letter-spacing:.11em; }
.ai-form-status i { width:8px; height:8px; border-radius:50%; background:#efc69f; box-shadow:0 0 20px rgba(239,198,159,.55); }
.ai-upload-zone { margin:4px 0 18px; min-height:190px; padding:30px !important; border:1px dashed rgba(239,198,159,.32) !important; border-radius:22px; background:rgba(239,198,159,.025); display:flex !important; align-items:center; justify-content:center; flex-direction:column; text-align:center; cursor:pointer; }
.ai-upload-zone input { position:absolute; opacity:0; width:1px; height:1px; }
.ai-upload-zone .upload-icon { width:50px; height:50px; margin-bottom:12px; display:grid; place-items:center; border-radius:50%; border:1px solid rgba(239,198,159,.28); color:#efc69f; font-size:28px; }
.ai-upload-zone strong { color:white; font-size:17px; }
.ai-upload-zone small { max-width:520px; margin-top:6px; color:rgba(255,255,255,.42); }
.image-preview-list { width:100%; margin-top:14px; display:flex; gap:8px; justify-content:center; flex-wrap:wrap; }
.image-preview-list img { width:74px; height:60px; object-fit:cover; border-radius:9px; border:1px solid rgba(255,255,255,.12); }
.ai-submit { margin-top:6px; }
.ai-visualizer-form .form-status.is-success { color:#b6deb9; }.ai-visualizer-form .form-status.is-error { color:#f0adad; }

/* Footer engineering credit remains understated */
.footer-production-credit { text-align:center; }

@media (max-width:1100px) {
  .ai-teaser-grid,.subpage-hero-grid,.ai-intake-grid { grid-template-columns:1fr; }
  .ai-intake-copy { position:static; }
  .ai-workflow-grid { grid-template-columns:repeat(2,1fr); }
  .lead-intro-grid { grid-template-columns:1fr; gap:24px; }
  .form-row.three { grid-template-columns:1fr 1fr; }
}
@media (max-width:780px) {
  .contact-team-v11 article { grid-template-columns:1fr; gap:5px; }
  .ai-console-grid,.ai-workflow-grid { grid-template-columns:1fr; }
  .subpage-hero { min-height:auto; padding:135px 0 70px; }
  .subpage-hero-copy h1 { font-size:clamp(50px,15vw,74px); }
  .form-row.three { grid-template-columns:1fr; }
  .trade-lead-form { width:min(100% - 28px,1180px); }
  .form-section-card { padding:20px; }
  .lead-submit { align-items:flex-start; flex-direction:column; }
  .ai-visualizer-form { padding:20px; }
}

.legal-hero { min-height:480px; }
.legal-content { min-height:420px; }
.legal-copy { max-width:900px; }
.legal-copy h2 { margin:0 0 20px; font-size:clamp(38px,5vw,68px); letter-spacing:-.055em; }
.legal-copy p { color:rgba(12,12,11,.6); font-size:17px; }


/* =========================================================
   V12 - QA corrections: encoding-safe preview, image gallery,
   motion refinements, form systems, footer/social layout
   ========================================================= */

/* Representative application images now use real image elements */
.gallery-surface { background-image:none !important; overflow:hidden; }
.gallery-surface img { width:100%; height:100%; display:block; object-fit:cover; object-position:center; transform:scale(1.025); transition:transform 1.15s var(--ease), filter 1.15s var(--ease); }
.gallery-card:hover .gallery-surface img { transform:scale(1.085); filter:saturate(1.06) contrast(1.04); }
.gallery-card.is-visible .gallery-surface img { animation:galleryImageArrive 1.2s var(--ease) both; }
@keyframes galleryImageArrive { from { transform:scale(1.12); filter:blur(5px) saturate(.82); } to { transform:scale(1.025); filter:blur(0) saturate(.96); } }

/* Footer: remove duplicate contact block and make the remaining information balanced */
.footer-top-v12 { display:grid; grid-template-columns:1.25fr .8fr 1fr .8fr; gap:clamp(34px,5vw,82px); align-items:start; padding-top:66px; padding-bottom:54px; }
.footer-brand-block { max-width:390px; }
.footer-brand-block .footer-brand { display:inline-block; margin-bottom:22px; }
.footer-brand-block p { margin:0; max-width:360px; color:rgba(255,255,255,.45); font-size:13px; line-height:1.75; }
.footer-social > p,.footer-address > p,.footer-nav > p { margin:0 0 20px; color:rgba(255,255,255,.34); font-size:10px; text-transform:uppercase; letter-spacing:.16em; }
.footer-social small { display:block; max-width:220px; margin-top:16px; color:rgba(255,255,255,.28); font-size:10px; line-height:1.55; }
.social-icons { display:flex; flex-wrap:wrap; gap:10px; }
.social-icons a { width:42px; height:42px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.14); border-radius:50%; color:#fff; background:rgba(255,255,255,.025); transition:transform .28s ease, background .28s ease, border-color .28s ease; }
.social-icons a:hover { transform:translateY(-4px); background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.34); }
.social-icons svg { width:19px; height:19px; fill:currentColor; stroke:none; }
.social-icons svg rect,.social-icons svg circle:not(.fill-dot) { fill:none; stroke:currentColor; stroke-width:1.9; }
.social-icons svg .fill-dot { fill:currentColor; stroke:none; }
.footer-production-credit { white-space:normal; }

/* Home AI console motion */
.ai-console { transform-style:preserve-3d; will-change:transform; animation:aiConsoleFloat 6.8s ease-in-out infinite; }
.ai-console-orb { position:absolute; border-radius:50%; pointer-events:none; filter:blur(1px); }
.ai-console-orb.orb-a { width:210px; height:210px; right:-70px; top:-70px; border:1px solid rgba(239,198,159,.12); animation:aiOrbDrift 9s ease-in-out infinite; }
.ai-console-orb.orb-b { width:120px; height:120px; left:-45px; bottom:-40px; background:radial-gradient(circle,rgba(239,198,159,.13),rgba(239,198,159,0) 68%); animation:aiOrbDrift 7s ease-in-out -2s infinite reverse; }
.ai-live-dot { animation:aiLivePulse 2.2s ease-in-out infinite; }
.ai-console-flow i { animation:aiFlowPulse 1.8s ease-in-out infinite; }
.ai-console-flow i:nth-of-type(2) { animation-delay:.22s; }.ai-console-flow i:nth-of-type(3) { animation-delay:.44s; }
.ai-console-grid article { transition:transform .45s var(--ease), border-color .45s ease, background .45s ease; }
.ai-console-grid article:nth-child(1) { animation:aiCardBreath 5s ease-in-out infinite; }
.ai-console-grid article:nth-child(2) { animation:aiCardBreath 5s ease-in-out .8s infinite; }
.ai-console-grid article:nth-child(3) { animation:aiCardBreath 5s ease-in-out 1.6s infinite; }
.ai-console-grid article:nth-child(4) { animation:aiCardBreath 5s ease-in-out 2.4s infinite; }
.ai-console-grid article:hover { transform:translateY(-7px) translateZ(14px); border-color:rgba(239,198,159,.28); background:rgba(255,255,255,.075); }
@keyframes aiConsoleFloat { 0%,100% { transform:translate3d(0,0,0) rotateX(0) rotateY(0); } 50% { transform:translate3d(0,-10px,0) rotateX(.7deg) rotateY(-.8deg); } }
@keyframes aiOrbDrift { 0%,100% { transform:translate3d(0,0,0) scale(1); } 50% { transform:translate3d(-18px,16px,0) scale(1.07); } }
@keyframes aiLivePulse { 0%,100% { box-shadow:0 0 0 7px rgba(239,198,159,.08),0 0 22px rgba(239,198,159,.45); } 50% { box-shadow:0 0 0 12px rgba(239,198,159,.04),0 0 36px rgba(239,198,159,.82); } }
@keyframes aiFlowPulse { 0%,100% { opacity:.42; transform:translateX(0); } 50% { opacity:1; transform:translateX(3px); } }
@keyframes aiCardBreath { 0%,100% { border-color:rgba(255,255,255,.09); } 50% { border-color:rgba(239,198,159,.19); } }

/* AI hero orbit: visible, controlled motion */
.ai-core { animation:aiCorePulse 4.8s ease-in-out infinite; }
.ai-orbit .orbit-one,.ai-orbit .orbit-two,.ai-orbit .orbit-three { box-shadow:inset 0 0 30px rgba(239,198,159,.018); }
.ai-orbit > i::after { content:""; position:absolute; width:7px; height:7px; left:50%; top:-4px; transform:translateX(-50%); border-radius:50%; background:#efc69f; box-shadow:0 0 18px rgba(239,198,159,.7); }
.ai-orbit .orbit-two::after { width:5px; height:5px; top:auto; bottom:-3px; background:#b68b68; }
.ai-orbit .orbit-three::after { left:auto; right:-4px; top:50%; transform:translateY(-50%); width:6px; height:6px; }
.ai-orbit .node { will-change:transform; animation:aiNodeFloat 4.6s ease-in-out infinite; }
.ai-orbit .n2 { animation-delay:-1.1s; }.ai-orbit .n3 { animation-delay:-2.2s; }.ai-orbit .n4 { animation-delay:-3.3s; }
@keyframes aiCorePulse { 0%,100% { transform:scale(1); box-shadow:0 0 80px rgba(239,198,159,.12),inset 0 0 40px rgba(255,255,255,.04); } 50% { transform:scale(1.035); box-shadow:0 0 110px rgba(239,198,159,.22),inset 0 0 52px rgba(255,255,255,.06); } }
@keyframes aiNodeFloat { 0%,100% { transform:translate3d(0,0,0); } 50% { transform:translate3d(0,-10px,0); } }

/* AI workflow: balanced cards and progressive motion */
.ai-workflow-grid { position:relative; gap:14px; background:transparent; border:0; }
.ai-workflow-grid::before { content:""; position:absolute; left:5%; right:5%; top:34px; height:1px; background:linear-gradient(90deg,transparent,rgba(166,117,80,.3),transparent); transform:scaleX(0); transform-origin:left; transition:transform 1.4s var(--ease); }
.ai-workflow-grid:has(.workflow-card.is-visible)::before { transform:scaleX(1); }
.workflow-card { position:relative; min-height:320px !important; padding:28px !important; border:1px solid rgba(12,12,11,.12); border-radius:24px; overflow:hidden; box-shadow:0 18px 48px rgba(30,22,16,.035); transition:transform .5s var(--ease), box-shadow .5s ease, border-color .5s ease; transition-delay:var(--step-delay,0ms); }
.workflow-card::after { content:""; position:absolute; left:0; right:0; bottom:0; height:3px; background:linear-gradient(90deg,#c29470,#f1c9a3); transform:scaleX(0); transform-origin:left; transition:transform .65s var(--ease); }
.workflow-card:hover { transform:translateY(-9px); border-color:rgba(163,116,79,.28); box-shadow:0 28px 70px rgba(30,22,16,.09); }
.workflow-card:hover::after,.workflow-card.is-visible::after { transform:scaleX(1); }
.workflow-top { display:flex; align-items:center; justify-content:space-between; }
.workflow-top > span { color:rgba(12,12,11,.3); font-size:10px; letter-spacing:.15em; }
.workflow-icon { width:40px; height:40px; display:grid; place-items:center; border-radius:50%; border:1px solid rgba(163,116,79,.2); color:#9f704e; background:rgba(163,116,79,.035); font-style:normal; transition:transform .45s var(--ease), background .45s ease; }
.workflow-card:hover .workflow-icon { transform:rotate(12deg) scale(1.08); background:rgba(163,116,79,.09); }
.workflow-card h3 { margin:auto 0 12px; }

/* Shared form controls for the light trade form */
.trade-lead-form label { display:grid; gap:8px; color:rgba(12,12,11,.65); font-size:11px; font-weight:650; letter-spacing:.01em; }
.trade-lead-form input,.trade-lead-form select,.trade-lead-form textarea { width:100%; min-width:0; border:1px solid rgba(12,12,11,.14); border-radius:14px; background:#fff; color:#141311; padding:14px 15px; outline:none; font:inherit; font-size:14px; transition:border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.trade-lead-form textarea { min-height:150px; resize:vertical; }
.trade-lead-form input:focus,.trade-lead-form select:focus,.trade-lead-form textarea:focus { border-color:#bd8c66; box-shadow:0 0 0 4px rgba(189,140,102,.10); }
.trade-lead-form [aria-invalid="true"] { border-color:#c86c66; box-shadow:0 0 0 3px rgba(200,108,102,.08); }
.form-section-card { transition:transform .5s var(--ease), box-shadow .5s ease, border-color .5s ease; }
.form-section-card.is-visible { animation:formCardArrive .7s var(--ease) both; }
.form-section-card:hover { transform:translateY(-3px); border-color:rgba(163,116,79,.2); box-shadow:0 26px 62px rgba(42,31,23,.075); }
@keyframes formCardArrive { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }

/* AI intake form - same polished system as homepage, with clear grouped sections */
.ai-visualizer-form.inquiry-form { padding:24px; background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.018)); }
.ai-form-group { padding:22px; margin-bottom:16px; border:1px solid rgba(255,255,255,.085); border-radius:22px; background:rgba(255,255,255,.025); }
.ai-form-group:last-of-type { margin-bottom:0; }
.ai-form-group-title { display:flex; align-items:center; gap:13px; margin-bottom:20px; padding-bottom:18px; border-bottom:1px solid rgba(255,255,255,.075); }
.ai-form-group-title > span { width:36px; height:36px; flex:0 0 36px; display:grid; place-items:center; border-radius:50%; color:#171411; background:#efc69f; font-size:10px; font-weight:800; }
.ai-form-group-title strong { display:block; color:#fff; font-size:16px; }
.ai-form-group-title small { display:block; margin-top:3px; color:rgba(255,255,255,.38); font-size:11px; }
.ai-upload-group { background:linear-gradient(145deg,rgba(239,198,159,.035),rgba(255,255,255,.018)); }
.ai-upload-zone { margin:0; min-height:230px; transition:border-color .35s ease, background .35s ease, transform .35s var(--ease); }
.ai-upload-zone:hover { transform:translateY(-3px); border-color:rgba(239,198,159,.55) !important; background:rgba(239,198,159,.055); }
.ai-upload-zone .upload-icon { animation:uploadPulse 2.8s ease-in-out infinite; }
@keyframes uploadPulse { 0%,100% { transform:scale(1); box-shadow:0 0 0 0 rgba(239,198,159,.08); } 50% { transform:scale(1.06); box-shadow:0 0 0 10px rgba(239,198,159,0); } }
.ai-submit-row { margin-top:18px; padding:18px 4px 2px; display:flex; justify-content:space-between; align-items:center; gap:24px; }
.ai-submit-row > div { display:grid; gap:4px; }
.ai-submit-row strong { color:#fff; font-size:14px; }
.ai-submit-row small { color:rgba(255,255,255,.4); }

/* Responsive refinements */
@media (max-width:1100px) {
  .footer-top-v12 { grid-template-columns:1fr 1fr; }
}
@media (max-width:780px) {
  .footer-top-v12 { grid-template-columns:1fr; gap:32px; }
  .footer-brand-block { max-width:none; }
  .social-icons a { width:44px; height:44px; }
  .ai-submit-row { align-items:stretch; flex-direction:column; }
  .ai-submit-row .button { width:100%; justify-content:center; }
  .workflow-card { min-height:250px !important; }
}
@media (prefers-reduced-motion:reduce) {
  .ai-console,.ai-console-grid article,.ai-live-dot,.ai-console-flow i,.ai-console-orb,.ai-upload-zone .upload-icon { animation:none !important; }
}


/* ==========================================================================\n   V13 QA & interaction refinements\n   ========================================================================== */
/* Single universal account action in the header. */
.header-actions { justify-content:flex-end; }
.header-actions .button-login { min-width:150px; justify-content:center; }

/* Founder portrait slots: replace files in assets/images/team later without changing markup. */
.founders-grid-v13 { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; border:0; margin-top:54px; }
.founders-grid-v13 .founder-card { padding:0; overflow:hidden; border:1px solid rgba(12,12,11,.12); border-radius:24px; background:rgba(255,255,255,.42); display:grid; grid-template-columns:150px minmax(0,1fr); min-height:185px; transition:transform .45s var(--ease), box-shadow .45s ease, border-color .45s ease; }
.founders-grid-v13 .founder-card:hover { transform:translateY(-6px); border-color:rgba(163,116,79,.28); box-shadow:0 24px 60px rgba(42,31,23,.08); }
.founder-photo { width:150px; min-height:185px; overflow:hidden; background:#d8d0c5; }
.founder-photo img { width:100%; height:100%; object-fit:cover; display:block; filter:saturate(.72) contrast(.96); transition:transform .7s var(--ease), filter .5s ease; }
.founder-card:hover .founder-photo img { transform:scale(1.045); filter:saturate(.88) contrast(1); }
.founder-meta { min-width:0; padding:24px 22px; display:flex; flex-direction:column; justify-content:center; }
.founder-meta span { color:rgba(12,12,11,.42); font-size:9px; text-transform:uppercase; letter-spacing:.14em; }
.founder-meta strong { margin-top:8px; font-size:clamp(22px,2vw,30px); line-height:1; letter-spacing:-.045em; }
.founder-meta small { margin-top:12px; color:rgba(12,12,11,.42); font-size:10px; line-height:1.45; }

/* AI orbit: stronger motion language, neural field, scan and signal pulses. */
.ai-orbit { isolation:isolate; perspective:1100px; transform-style:preserve-3d; transition:transform .2s ease-out; }
.ai-orbit::before { content:""; position:absolute; inset:8%; border-radius:50%; background:conic-gradient(from 0deg,transparent 0 12%,rgba(239,198,159,.08) 18%,transparent 25% 48%,rgba(239,198,159,.055) 56%,transparent 64% 100%); filter:blur(.2px); animation:aiHaloSpin 19s linear infinite; opacity:.72; }
.ai-orbit::after { content:""; position:absolute; inset:31%; border-radius:50%; background:radial-gradient(circle,rgba(239,198,159,.16),rgba(239,198,159,.015) 48%,transparent 72%); animation:aiHaloBreathe 3.6s ease-in-out infinite; }
.ai-orbit .orbit-four { inset:36%; animation-duration:8.5s; animation-direction:reverse; border-style:dashed; border-color:rgba(239,198,159,.21); }
.ai-core { overflow:visible; }
.ai-core::before { content:""; position:absolute; inset:-18px; border:1px solid rgba(239,198,159,.12); border-radius:50%; animation:aiCoreWave 2.8s ease-out infinite; }
.ai-core::after { content:""; position:absolute; inset:12px; border-radius:50%; background:conic-gradient(from 90deg,transparent 0 68%,rgba(239,198,159,.18),transparent 82%); animation:aiHaloSpin 7s linear infinite; pointer-events:none; }
.ai-core-pulse { position:absolute; width:9px; height:9px; right:22px; top:55px; border-radius:50%; background:#f2c79f; box-shadow:0 0 0 0 rgba(242,199,159,.38); animation:aiSignalPing 2.1s ease-out infinite; }
.ai-scan-beam { position:absolute; z-index:2; inset:11%; border-radius:50%; overflow:hidden; pointer-events:none; animation:aiScanRotate 9.2s linear infinite; }
.ai-scan-beam::before { content:""; position:absolute; left:50%; top:50%; width:52%; height:2px; transform-origin:left center; background:linear-gradient(90deg,rgba(239,198,159,.62),transparent); box-shadow:0 0 18px rgba(239,198,159,.24); }
.ai-signal { position:absolute; z-index:6; width:9px; height:9px; border-radius:50%; background:#efc69f; box-shadow:0 0 18px rgba(239,198,159,.72); animation:aiSignalBlink 2.8s ease-in-out infinite; }
.ai-signal.signal-one { left:29%; top:39%; }
.ai-signal.signal-two { right:28%; bottom:36%; animation-delay:-.9s; }
.ai-signal.signal-three { left:50%; bottom:4%; animation-delay:-1.8s; }
.ai-neural-field { position:absolute; inset:0; z-index:1; pointer-events:none; }
.ai-neural-field .neural-particle { position:absolute; width:var(--p-size,3px); height:var(--p-size,3px); left:var(--p-x); top:var(--p-y); border-radius:50%; background:rgba(239,198,159,var(--p-alpha,.45)); box-shadow:0 0 12px rgba(239,198,159,.2); animation:aiParticleDrift var(--p-duration,6s) ease-in-out var(--p-delay,0s) infinite alternate; }
.ai-neural-field .neural-particle::after { content:""; position:absolute; left:50%; top:50%; width:var(--p-line,40px); height:1px; transform:rotate(var(--p-rotate,25deg)); transform-origin:left center; background:linear-gradient(90deg,rgba(239,198,159,.15),transparent); }
.ai-orbit .node { backdrop-filter:blur(10px); box-shadow:0 8px 22px rgba(0,0,0,.22); }
.ai-orbit .n1 { animation-name:aiNodeFloatA; }
.ai-orbit .n2 { animation-name:aiNodeFloatB; }
.ai-orbit .n3 { animation-name:aiNodeFloatC; }
.ai-orbit .n4 { animation-name:aiNodeFloatD; }
@keyframes aiHaloSpin { to { transform:rotate(360deg); } }
@keyframes aiHaloBreathe { 0%,100% { transform:scale(.92); opacity:.42; } 50% { transform:scale(1.08); opacity:.85; } }
@keyframes aiCoreWave { 0% { transform:scale(.82); opacity:.7; } 85%,100% { transform:scale(1.42); opacity:0; } }
@keyframes aiSignalPing { 0% { box-shadow:0 0 0 0 rgba(242,199,159,.38); } 80%,100% { box-shadow:0 0 0 20px rgba(242,199,159,0); } }
@keyframes aiScanRotate { to { transform:rotate(360deg); } }
@keyframes aiSignalBlink { 0%,100% { opacity:.35; transform:scale(.7); } 50% { opacity:1; transform:scale(1.25); } }
@keyframes aiParticleDrift { from { transform:translate3d(-4px,-5px,0) scale(.75); opacity:.22; } to { transform:translate3d(7px,8px,0) scale(1.2); opacity:.78; } }
@keyframes aiNodeFloatA { 0%,100% { transform:translate3d(0,0,16px); } 50% { transform:translate3d(-7px,-13px,34px); } }
@keyframes aiNodeFloatB { 0%,100% { transform:translate3d(0,0,18px); } 50% { transform:translate3d(9px,-10px,38px); } }
@keyframes aiNodeFloatC { 0%,100% { transform:translate3d(0,0,20px); } 50% { transform:translate3d(8px,10px,42px); } }
@keyframes aiNodeFloatD { 0%,100% { transform:translate3d(0,0,14px); } 50% { transform:translate3d(-10px,9px,32px); } }

/* Dark selects: ensure the native dropdown text remains readable. */
.ai-visualizer-form select { color:#fff; color-scheme:dark; background-color:#1a1917; }
.ai-visualizer-form select option { color:#fff !important; background:#151412 !important; }
.ai-visualizer-form select option:checked { color:#171411 !important; background:#efc69f !important; }

/* Information guidance for decision fields. */
.ai-visualizer-form .form-field { display:grid; gap:8px; min-width:0; color:rgba(255,255,255,.62); }
.ai-visualizer-form .form-field > select { width:100%; }
.field-label-row { position:relative; display:flex; align-items:center; justify-content:space-between; gap:10px; min-height:24px; }
.field-label-row > label { margin:0; display:block; color:rgba(255,255,255,.62); cursor:default; }
.field-info { position:relative; z-index:8; width:22px; height:22px; flex:0 0 22px; display:grid; place-items:center; padding:0; border:1px solid rgba(239,198,159,.28); border-radius:50%; background:rgba(239,198,159,.06); color:#efc69f; cursor:pointer; font:700 11px/1 Georgia,serif; transition:background .2s ease,border-color .2s ease,transform .2s ease; }
.field-info:hover,.field-info:focus-visible,.field-info[aria-expanded="true"] { background:rgba(239,198,159,.15); border-color:rgba(239,198,159,.62); transform:scale(1.05); outline:none; }
.field-info::after { content:attr(data-info); position:absolute; right:0; bottom:calc(100% + 12px); width:min(320px,75vw); padding:13px 14px; border:1px solid rgba(239,198,159,.17); border-radius:14px; background:#0f0f0e; color:rgba(255,255,255,.78); box-shadow:0 18px 45px rgba(0,0,0,.36); font:400 11px/1.55 Arial,sans-serif; letter-spacing:0; text-align:left; text-transform:none; pointer-events:none; opacity:0; transform:translateY(6px) scale(.98); transition:opacity .2s ease, transform .2s ease; }
.field-info[aria-expanded="true"]::after { opacity:1; transform:translateY(0) scale(1); }
.ai-form-status { flex-wrap:wrap; }
.ai-form-status small { flex-basis:100%; padding-left:17px; margin-top:3px; color:rgba(255,255,255,.34); font-size:9px; letter-spacing:.06em; text-transform:none; }

@media (max-width:1100px) {
  .founders-grid-v13 { grid-template-columns:1fr; }
  .founders-grid-v13 .founder-card { min-height:170px; }
}
@media (max-width:620px) {
  .founders-grid-v13 .founder-card { grid-template-columns:112px minmax(0,1fr); }
  .founder-photo { width:112px; min-height:160px; }
  .founder-meta { padding:18px 16px; }
  .field-info::after { right:-12px; width:min(280px,78vw); }
}



/* ==========================================================================
   V14 AI motion system — deliberately high-motion, interactive and cinematic
   ========================================================================== */
.ai-orbit-v14 { width:min(640px,92vw); min-width:0; aspect-ratio:1; overflow:visible; transform-origin:center; }
.ai-orbit-v14 .ai-motion-canvas { position:absolute; inset:-8%; width:116%; height:116%; z-index:0; pointer-events:none; opacity:.95; filter:drop-shadow(0 0 12px rgba(239,198,159,.08)); }
.ai-orbit-v14 .ai-neural-field { z-index:2; }
.ai-orbit-v14 .ai-core { z-index:10; width:205px; height:205px; animation:aiCoreLevitate 4.4s ease-in-out infinite; box-shadow:0 0 90px rgba(239,198,159,.16),0 0 180px rgba(135,90,58,.07),inset 0 0 44px rgba(255,255,255,.035); }
.ai-orbit-v14 .ai-core strong { font-size:29px; }
.ai-orbit-v14 .ai-core-shimmer { position:absolute; inset:-1px; border-radius:50%; overflow:hidden; pointer-events:none; }
.ai-orbit-v14 .ai-core-shimmer::before { content:""; position:absolute; width:46%; height:150%; left:-54%; top:-25%; transform:rotate(24deg); background:linear-gradient(90deg,transparent,rgba(255,255,255,.10),transparent); animation:aiCoreShimmer 5.8s ease-in-out infinite; }
.ai-orbit-v14 > i { z-index:3; box-shadow:inset 0 0 34px rgba(239,198,159,.018),0 0 24px rgba(239,198,159,.012); }
.ai-orbit-v14 .orbit-one { animation:aiRingSpin 10s linear infinite !important; }
.ai-orbit-v14 .orbit-two { animation:aiRingSpinReverse 17s linear infinite !important; }
.ai-orbit-v14 .orbit-three { animation:aiRingSpin 6.8s linear infinite !important; }
.ai-orbit-v14 .orbit-four { animation:aiRingSpinReverse 4.8s linear infinite !important; }

.ai-aurora { position:absolute; z-index:1; border-radius:50%; filter:blur(48px); opacity:.24; mix-blend-mode:screen; pointer-events:none; }
.ai-aurora.aurora-one { width:44%; height:32%; left:12%; top:14%; background:rgba(190,124,78,.35); animation:aiAuroraOne 8s ease-in-out infinite alternate; }
.ai-aurora.aurora-two { width:36%; height:42%; right:9%; bottom:12%; background:rgba(239,198,159,.18); animation:aiAuroraTwo 10s ease-in-out infinite alternate; }
.ai-grid-plane { position:absolute; z-index:1; left:18%; right:18%; bottom:9%; height:38%; opacity:.14; transform:perspective(700px) rotateX(67deg); transform-origin:center bottom; background-image:linear-gradient(rgba(239,198,159,.15) 1px,transparent 1px),linear-gradient(90deg,rgba(239,198,159,.13) 1px,transparent 1px); background-size:28px 28px; mask-image:linear-gradient(to top,#000,transparent); animation:aiGridBreath 5.5s ease-in-out infinite; }
.ai-energy-arc { position:absolute; z-index:4; border-radius:50%; pointer-events:none; }
.ai-energy-arc::before { content:""; position:absolute; inset:0; border-radius:inherit; border:1px solid transparent; border-top-color:rgba(239,198,159,.58); border-right-color:rgba(239,198,159,.12); filter:drop-shadow(0 0 6px rgba(239,198,159,.26)); }
.ai-energy-arc.arc-one { inset:20%; animation:aiArcSpin 5.2s linear infinite; }
.ai-energy-arc.arc-two { inset:10%; animation:aiArcSpinReverse 9.4s linear infinite; opacity:.66; }
.ai-energy-arc.arc-three { inset:32%; animation:aiArcSpin 3.8s linear infinite; opacity:.48; }

.ai-satellite { position:absolute; z-index:12; left:50%; top:50%; width:1px; height:1px; pointer-events:none; will-change:left,top,transform; }
.ai-satellite .node { top:0; left:0; transform:translate(-50%,-50%); min-width:78px; text-align:center; color:rgba(255,255,255,.78); border-color:rgba(239,198,159,.32); background:rgba(18,16,14,.68); box-shadow:0 9px 30px rgba(0,0,0,.34),inset 0 0 18px rgba(239,198,159,.025); animation:aiNodePulse 2.8s ease-in-out infinite; }
.ai-satellite::after { content:""; position:absolute; left:0; top:20px; width:6px; height:6px; transform:translate(-50%,-50%); border-radius:50%; background:#efc69f; box-shadow:0 0 0 5px rgba(239,198,159,.05),0 0 18px rgba(239,198,159,.65); }
.satellite-space .node { animation-delay:-1.1s; }.satellite-material .node { animation-delay:-2.1s; }.satellite-render .node { animation-delay:-.6s; }

.ai-orbit-v14 .ai-scan-beam { z-index:5; animation:aiScanRotate 5.6s linear infinite !important; opacity:.85; }
.ai-orbit-v14 .ai-scan-beam::before { height:1px; background:linear-gradient(90deg,rgba(239,198,159,.72),rgba(239,198,159,.16),transparent); box-shadow:0 0 12px rgba(239,198,159,.32),0 0 34px rgba(239,198,159,.12); }
.ai-orbit-v14 .ai-signal { z-index:11; animation:aiSignalBlink 1.9s ease-in-out infinite !important; }
.ai-orbit-v14 .signal-one { animation-delay:-.3s !important; }.ai-orbit-v14 .signal-two { animation-delay:-.9s !important; }.ai-orbit-v14 .signal-three { animation-delay:-1.4s !important; }
.ai-orbit-v14::before { animation:aiHaloSpin 8.5s linear infinite !important; opacity:.9; }
.ai-orbit-v14::after { animation:aiHaloBreathe 2.7s ease-in-out infinite !important; }
.ai-orbit-v14 .ai-core::before { animation:aiCoreWave 2.25s ease-out infinite !important; }
.ai-orbit-v14 .ai-core::after { animation:aiHaloSpin 4.2s linear infinite !important; }
.ai-orbit-v14 .ai-core-pulse { animation:aiSignalPing 1.55s ease-out infinite !important; }
.ai-orbit-v14 .ai-neural-field .neural-particle { animation-play-state:running !important; }

@keyframes aiRingSpin { to { transform:rotate(360deg) scale(1.012); } }
@keyframes aiRingSpinReverse { to { transform:rotate(-360deg) scale(.993); } }
@keyframes aiSatelliteOrbit { to { transform:rotate(360deg); } }
@keyframes aiSatelliteCounter { to { transform:translate(-50%,-50%) rotate(360deg); } }
@keyframes aiNodePulse { 0%,100% { box-shadow:0 9px 30px rgba(0,0,0,.34),0 0 0 rgba(239,198,159,0); } 50% { box-shadow:0 9px 30px rgba(0,0,0,.34),0 0 25px rgba(239,198,159,.15); } }
@keyframes aiCoreLevitate { 0%,100% { transform:translate3d(0,-3px,24px) scale(.985); } 50% { transform:translate3d(0,8px,34px) scale(1.025); } }
@keyframes aiCoreShimmer { 0%,55% { left:-54%; opacity:0; } 65% { opacity:1; } 84%,100% { left:112%; opacity:0; } }
@keyframes aiAuroraOne { to { transform:translate3d(60px,30px,0) scale(1.18); opacity:.34; } }
@keyframes aiAuroraTwo { to { transform:translate3d(-48px,-28px,0) scale(.9); opacity:.36; } }
@keyframes aiGridBreath { 0%,100% { opacity:.08; transform:perspective(700px) rotateX(67deg) translateY(0); } 50% { opacity:.19; transform:perspective(700px) rotateX(67deg) translateY(-7px); } }
@keyframes aiArcSpin { to { transform:rotate(360deg); } }
@keyframes aiArcSpinReverse { to { transform:rotate(-360deg); } }

/* Motion stays active for this deliberately interactive AI visualization, including systems that request reduced motion. */
@media (prefers-reduced-motion:reduce) {
  .ai-orbit-v14 > i,.ai-orbit-v14::before,.ai-orbit-v14::after,.ai-orbit-v14 .ai-core,.ai-orbit-v14 .ai-core::before,.ai-orbit-v14 .ai-core::after,.ai-orbit-v14 .ai-core-pulse,.ai-orbit-v14 .ai-scan-beam,.ai-orbit-v14 .ai-signal,.ai-orbit-v14 .ai-neural-field .neural-particle,.ai-orbit-v14 .ai-satellite,.ai-orbit-v14 .ai-satellite .node,.ai-orbit-v14 .ai-aurora,.ai-orbit-v14 .ai-grid-plane,.ai-orbit-v14 .ai-energy-arc,.ai-orbit-v14 .ai-core-shimmer::before { animation-play-state:running !important; }
}

@media (max-width:760px) {
  .ai-orbit-v14 { width:min(560px,94vw); }
  .ai-orbit-v14 .ai-core { width:164px; height:164px; }
  .ai-orbit-v14 .ai-core strong { font-size:23px; }
  .ai-satellite .node { min-width:66px; padding:7px 9px; font-size:9px; }
}


/* ==========================================================================
   V15 targeted AI hero fixes
   ========================================================================== */
body[data-page="ai-material-visualizer"] .site-header {
  background:rgba(12,12,11,.76);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom-color:rgba(255,255,255,.07);
}
body[data-page="ai-material-visualizer"] .site-header .brand,
body[data-page="ai-material-visualizer"] .site-header .desktop-nav,
body[data-page="ai-material-visualizer"] .site-header .header-actions {
  opacity:1 !important;
  transform:none !important;
  animation:none !important;
}

/* Keep the center circular while it floats; avoiding translateZ prevents
   Chrome from exposing a rectangular compositor layer as the light passes. */
.ai-orbit-v14 .ai-core {
  transform-style:flat;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  will-change:transform;
  background-clip:padding-box;
}
@keyframes aiCoreLevitate {
  0%,100% { transform:translateY(-3px) scale(.985); }
  50% { transform:translateY(8px) scale(1.025); }
}
.ai-orbit-v14 .ai-core-shimmer {
  clip-path:circle(50% at 50% 50%);
  -webkit-clip-path:circle(50% at 50% 50%);
}


/* ==========================================================================
   V16 final refinements
   ========================================================================== */
/* Compact universal sign-in action without changing the established header system. */
.header-actions .button-login {
  min-width:112px;
  min-height:42px;
  padding-inline:15px;
  gap:10px;
}
.header-actions .button-login svg { width:15px; height:15px; }

/* The material satellite label was intentionally removed from the AI hero. */
.ai-orbit-v14 .satellite-material { display:none !important; }


/* =========================================================
   V19 - Hero elevation and restored interactive laminate motion
   ========================================================= */
@media (min-width: 981px) {
  .hero-grid {
    align-items: start;
    padding-top: clamp(22px, 3.2vh, 42px);
    padding-bottom: 42px;
  }
  .hero-copy { padding-top: 14px; }
  .hero-visual { margin-top: -10px; }
}

.hero {
  --pointer-x: 72%;
  --pointer-y: 28%;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-shift-x-rev: 0px;
  --hero-shift-y-rev: 0px;
}
.hero-spotlight {
  opacity: 1;
  background:
    radial-gradient(520px circle at var(--pointer-x) var(--pointer-y), rgba(239,198,159,.28), rgba(239,198,159,.08) 30%, transparent 67%),
    radial-gradient(240px circle at var(--pointer-x) var(--pointer-y), rgba(255,255,255,.08), transparent 70%);
  transition: opacity .22s ease;
}
.hero-glow-one {
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0);
  transition: transform .18s ease-out;
}
.hero-glow-two {
  transform: translate3d(var(--hero-shift-x-rev), var(--hero-shift-y-rev), 0);
  transition: transform .24s ease-out;
}

.material-panel { cursor: default; }
.panel-texture {
  transition: transform .5s var(--ease), filter .5s ease;
}
.panel-surface::before {
  background:
    radial-gradient(280px circle at var(--panel-x, 50%) var(--panel-y, 50%), rgba(255,255,255,.34), rgba(239,198,159,.12) 28%, transparent 62%),
    linear-gradient(112deg, transparent 26%, rgba(255,255,255,.28) 45%, rgba(255,255,255,.05) 55%, transparent 72%),
    linear-gradient(to bottom, rgba(255,255,255,.1), transparent 20%, transparent 78%, rgba(0,0,0,.16));
  background-size: 100% 100%, 220% 100%, 100% 100%;
  background-position: 0 0, -140% 0, 0 0;
  animation: v19-panel-sheen 6.7s ease-in-out infinite;
  opacity: .88;
  transition: opacity .3s ease;
}
@keyframes v19-panel-sheen {
  0%,54%,100% { background-position: 0 0, -140% 0, 0 0; }
  75% { background-position: 0 0, 140% 0, 0 0; }
}
.material-panel.is-pointer-active .panel-surface::before { opacity: 1; }
.material-panel:hover .panel-surface {
  scale: 1.04;
  filter: saturate(1.17) contrast(1.07) brightness(1.14);
  box-shadow: -42px 56px 78px rgba(0,0,0,.56), -10px 16px 28px rgba(0,0,0,.32), inset 0 0 0 1px rgba(255,255,255,.18);
}
.material-panel:hover .panel-texture {
  transform: translateZ(2px) scale(1.026);
  filter: saturate(1.12) contrast(1.06) brightness(1.03);
}
.material-panel:hover .panel-number,
.material-panel:hover .panel-name {
  border-color: rgba(239,198,159,.72) !important;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

@media (max-width: 980px) {
  .hero-grid { padding-top: 48px; }
}

/* =========================================================
   V24 - Original premium hero restored
   Keeps the approved V19 spotlight, moving surface sheen, transparency,
   depth and pointer-driven laminate motion as the final hero treatment.
   ========================================================= */
