:root {
  --bg: #070707;
  --panel: #111;
  --panel-2: #171717;
  --text: #f6f3ee;
  --muted: rgba(246,243,238,.68);
  --line: rgba(246,243,238,.16);
  --line-strong: rgba(246,243,238,.34);
  --red: #e30620;
  --red-2: #ff263b;
  --pad: clamp(18px, 4vw, 68px);
}

* { box-sizing: border-box; }

main,
section,
.config-shell,
.ceiling-configurator,
.canvas-stage,
.config-controls,
.section-heading,
.project-rail,
.contact-form {
  min-width: 0;
}

.timeline-track,
.print-showcase,
.led-board,
.details-grid,
.room-grid,
.area-map,
.material-samples,
.decision-board,
.copy-options-grid,
.cookie-banner,
.privacy-shell {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  min-width: 320px;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 1px, transparent 1px 4px);
  opacity: .24;
}

button,
input,
textarea { font: inherit; }

button {
  color: inherit;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(227,6,32,.18), transparent 28%),
    #070707;
  transition: opacity .55s ease, visibility .55s ease;
}

body.is-loaded .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-card {
  width: min(320px, calc(100vw - 48px));
  display: grid;
  gap: 18px;
  text-align: center;
}

.loader-logo {
  color: #fff;
  font-size: 26px;
  font-weight: 950;
  text-transform: uppercase;
}

.loader-card i {
  position: relative;
  height: 3px;
  overflow: hidden;
  background: rgba(255,255,255,.14);
}

.loader-card i::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  background: var(--red);
  box-shadow: 0 0 24px rgba(227,6,32,.85);
  animation: loaderLine 1.05s ease-in-out infinite;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease;
}

.reveal-ready [data-reveal].reveal-soft { transform: translateY(18px); }
.reveal-ready [data-reveal].reveal-side { transform: translateX(-22px); }
.reveal-ready [data-reveal].reveal-scale { transform: translateY(16px) scale(.985); filter: saturate(.85); }
.reveal-ready [data-reveal].reveal-clean { transform: translateY(12px); }

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px var(--pad);
  border-bottom: 1px solid transparent;
  transition: background .22s ease, border-color .22s ease;
}

.site-header.is-solid {
  border-color: var(--line);
  background: rgba(7,7,7,.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: clamp(158px, 14.6vw, 232px);
  height: auto;
  max-height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.34));
  transition: transform .25s ease, filter .25s ease;
}

.brand:hover .brand-logo {
  transform: translateY(-1px);
  filter: drop-shadow(0 12px 24px rgba(227,6,32,.24));
}

.brand-icon {
  position: relative;
  width: 44px;
  height: 44px;
  border: 2px solid var(--text);
  background: #101010;
}

.brand-icon::before,
.brand-icon::after,
.brand-icon i,
.brand-icon b {
  content: "";
  position: absolute;
  background: var(--text);
}

.brand-icon::before {
  left: 10px;
  right: 10px;
  top: 9px;
  height: 3px;
}

.brand-icon::after {
  left: 12px;
  right: 12px;
  bottom: 9px;
  height: 3px;
}

.brand-icon i {
  left: 13px;
  top: 15px;
  width: 3px;
  height: 18px;
  transform: skewX(-16deg);
}

.brand-icon b {
  right: 13px;
  top: 15px;
  width: 3px;
  height: 18px;
  transform: skewX(16deg);
}

.brand strong {
  display: block;
  color: var(--red-2);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--text);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header nav {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(246,243,238,.7);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-header nav a {
  position: relative;
  padding: 10px 0;
  transition: color .22s ease, transform .22s ease;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
  box-shadow: 0 0 14px rgba(227,6,32,.7);
}

.site-header nav a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.site-header nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  padding: 4px;
  background: rgba(255,255,255,.04);
}

.lang-switch button {
  min-width: 36px;
  min-height: 32px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.lang-switch button.active {
  background: var(--red);
  color: #fff;
}

.lang-switch button:hover {
  color: #fff;
  transform: translateY(-1px);
}

.header-phone {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  padding: 0 16px;
  background: rgba(255,255,255,.04);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  transition: border-color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease;
}

.header-phone:hover {
  border-color: var(--red);
  background: rgba(227,6,32,.13);
  box-shadow: 0 0 26px rgba(227,6,32,.16);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  padding: 118px var(--pad) 82px;
  overflow: hidden;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-media img {
  object-fit: cover;
  filter: brightness(.64) saturate(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 38%, rgba(227,6,32,.18), transparent 28%),
    linear-gradient(90deg, rgba(7,7,7,.92), rgba(7,7,7,.58) 45%, rgba(7,7,7,.3)),
    linear-gradient(180deg, rgba(7,7,7,.08), rgba(7,7,7,.9) 92%, var(--bg));
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-composition {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(260px, 420px);
  gap: clamp(24px, 7vw, 120px);
  align-items: end;
}

.hero-single {
  grid-template-columns: minmax(0, 860px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(48px, 6.1vw, 92px);
  line-height: .96;
  text-transform: uppercase;
}

h1 em {
  display: block;
  color: var(--red-2);
  font-style: normal;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.03;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-btn,
.secondary-btn,
.contact-form button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  padding: 0 22px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.primary-btn,
.contact-form button {
  background: var(--red);
  box-shadow: 0 0 32px rgba(227,6,32,.28);
}

.secondary-btn {
  background: rgba(255,255,255,.04);
}

.primary-btn:hover,
.secondary-btn:hover,
.contact-form button:hover,
.config-price-btn:hover {
  transform: translateY(-2px);
  border-color: #ff4052;
  box-shadow: 0 16px 42px rgba(227,6,32,.28);
}

.secondary-btn:hover {
  background: rgba(227,6,32,.13);
}

.config-section {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 66px var(--pad) 26px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #070707, #101010);
}

.config-shell {
  display: grid;
  gap: 12px;
}

.config-heading {
  position: relative;
  display: block;
  border-left: 3px solid var(--red);
  padding: 4px 0 4px 18px;
  background: transparent;
}

.config-heading::after {
  display: none;
}

.config-heading h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 42px);
}

.ceiling-configurator {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(352px, 410px);
  gap: 12px;
  height: clamp(620px, calc(100svh - 114px), 790px);
  min-height: 600px;
}

.canvas-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #101010;
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
}

#ceilingCanvas {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  aspect-ratio: 1180 / 720;
  min-height: 0;
  display: block;
}

.config-summary {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.config-summary span {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid var(--line);
  background: rgba(7,7,7,.74);
  font-size: 11px;
  font-weight: 900;
}

.config-controls {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-width: 0;
  display: grid;
  gap: 5px;
  align-content: start;
  padding: 6px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(27,27,27,.92), rgba(8,8,8,.94));
  backdrop-filter: blur(18px);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--red) rgba(255,255,255,.12);
}

.config-copy {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  padding: 7px;
}

.config-copy h3 {
  margin-bottom: 3px;
  color: #fff;
  font-size: 14px;
  line-height: 1.05;
}

.config-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.28;
}

.control-group {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.018)), rgba(14,14,14,.9);
  padding: 6px;
  min-width: 0;
  overflow: hidden;
}

.control-group h3 {
  margin-bottom: 5px;
  color: rgba(246,243,238,.86);
  font-size: 10.5px;
  font-weight: 900;
  text-transform: uppercase;
}

.segmented,
.quick-swatches {
  display: grid;
  gap: 5px;
}

.segmented {
  grid-template-columns: repeat(2, 1fr);
}

.segmented.two {
  grid-template-columns: repeat(4, 1fr);
}

.segmented.three {
  grid-template-columns: repeat(3, 1fr);
}

.segmented.four {
  grid-template-columns: repeat(4, 1fr);
}

.segmented button {
  min-height: 31px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  color: var(--text);
  font-size: 10.5px;
  font-weight: 900;
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.segmented button:hover,
.quick-swatches button:hover {
  border-color: rgba(255,255,255,.52);
  background: rgba(255,255,255,.09);
  transform: translateY(-1px);
}

.segmented button.active,
.quick-swatches button.active {
  border-color: var(--red);
  box-shadow: 0 0 22px rgba(227,6,32,.2);
}

.finish-control {
  margin-top: 5px;
}

.palette-control {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
}

.palette-control input {
  width: 42px;
  height: 32px;
  border: 1px solid var(--line-strong);
  padding: 4px;
  background:
    conic-gradient(from 90deg, #ff004c, #ffb000, #ffff00, #00e676, #00b0ff, #7c4dff, #ff004c);
  cursor: pointer;
  box-shadow: inset 0 0 0 4px rgba(0,0,0,.24), 0 0 18px rgba(255,255,255,.08);
}

.palette-control input::-webkit-color-swatch-wrapper { padding: 4px; }
.palette-control input::-webkit-color-swatch { border: 1px solid rgba(255,255,255,.7); }

.palette-control span {
  min-height: 32px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  padding: 0 9px;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-swatches {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5px;
}

.quick-swatches button {
  width: 100%;
  min-width: 0;
  min-height: 25px;
  border: 1px solid var(--line);
  background: var(--swatch);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.count-controls {
  display: grid;
  gap: 4px;
  margin-top: 5px;
}

.count-controls label {
  display: grid;
  grid-template-columns: minmax(82px, auto) 1fr 24px;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.count-controls b {
  display: grid;
  place-items: center;
  min-height: 24px;
  border: 1px solid var(--line);
  color: #fff;
}

.range-line {
  display: grid;
  gap: 5px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 900;
  text-transform: uppercase;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--red);
}

.config-price-btn {
  grid-column: 1 / -1;
  min-height: 42px;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 0 28px rgba(227,6,32,.28);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.showcase-section,
.projects-section,
.about-section,
.partners-section,
.copy-options-section,
.contact-section {
  padding: clamp(70px, 8vw, 118px) var(--pad);
  scroll-margin-top: 92px;
  border-top: 1px solid var(--line);
  background: #080808;
}

.showcase-section {
  position: relative;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 18%, rgba(227,6,32,.32), transparent 26%),
    linear-gradient(135deg, #28060a, #120708 54%, #080808);
}

.light-block {
  background: #d9d6cf;
  color: #111;
}

.light-block .eyebrow,
.light-block .section-heading > span {
  color: var(--red);
}

.light-block p {
  color: rgba(0,0,0,.66);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(290px, .86fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(227,6,32,.34), transparent 28%),
    radial-gradient(circle at 10% 100%, rgba(255,255,255,.08), transparent 30%),
    linear-gradient(135deg, #2c070b, #130708 58%, #080808);
}

.about-copy {
  display: grid;
  gap: 14px;
}

.about-copy > span {
  color: var(--red-2);
  font-size: 13px;
  font-weight: 950;
}

.about-copy h2 {
  max-width: 690px;
  color: #fff;
  font-size: clamp(30px, 3.55vw, 52px);
  line-height: 1.02;
}

.about-copy p {
  max-width: 660px;
  color: rgba(255,255,255,.72);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.about-stats b {
  min-height: 96px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.13);
  padding: 16px;
  background: rgba(255,255,255,.055);
  color: #fff;
}

.about-stats span {
  color: var(--red);
  font-size: 25px;
  font-weight: 950;
}

.about-stats small {
  color: rgba(255,255,255,.65);
  font-size: 12px;
  line-height: 1.35;
}

.certificate-wall {
  display: grid;
  grid-template-columns: .86fr 1fr;
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 12px;
}

.certificate-wall article {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.18);
  background: #151515;
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

.certificate-wall article:first-child {
  grid-row: span 2;
}

.certificate-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.03);
}

.certificate-wall strong {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(5,5,5,.74);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 780px);
  gap: 0;
  align-items: start;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  margin-bottom: 10px;
  letter-spacing: .08em;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 12px;
}

.section-heading p {
  max-width: 680px;
}

.split-proof {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: center;
}

.split-proof .section-heading {
  display: block;
  margin-bottom: 0;
}

.before-after-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
}

.before-after-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-visual {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--split));
}

.after-visual img {
  filter: contrast(1.08) brightness(.76) saturate(1.08);
}

.after-ceiling,
.after-led-svg {
  position: absolute;
  pointer-events: none;
}

.after-ceiling {
  left: 0;
  right: 0;
  top: 0;
  height: 43.5%;
  background:
    radial-gradient(circle at 51% 20%, rgba(255,255,255,.2), transparent 26%),
    radial-gradient(circle at 50% 72%, rgba(255,203,132,.18), transparent 48%),
    linear-gradient(180deg, rgba(17,17,17,.88), rgba(57,55,51,.72)),
    linear-gradient(90deg, rgba(227,6,32,.1), rgba(255,255,255,.12) 46%, rgba(255,203,132,.18));
  clip-path: polygon(0 0, 100% 0, 100% 56%, 78.5% 100%, 28.5% 100%, 0 56%);
  mix-blend-mode: multiply;
}

.after-led-svg {
  left: 0;
  right: 0;
  top: 0;
  height: 43.5%;
  filter:
    drop-shadow(0 0 8px rgba(255,255,255,.9))
    drop-shadow(0 0 20px rgba(255,203,132,.88))
    drop-shadow(0 0 52px rgba(255,203,132,.45));
  overflow: visible;
}

.after-led-svg path {
  fill: none;
  stroke: rgba(255,238,214,.98);
  stroke-width: 10;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.after-led-svg .inner {
  stroke: rgba(255,203,132,.9);
  stroke-width: 6;
  opacity: .52;
}

.before-after-card button {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 56px;
  border: 0;
  background: linear-gradient(90deg, transparent 48%, #fff 49% 51%, transparent 52%);
  transform: translateX(-50%);
}

.before-after-card button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(7,7,7,.72);
  transform: translate(-50%, -50%);
}

.before-label,
.after-label {
  position: absolute;
  top: 18px;
  padding: 10px 12px;
  background: rgba(7,7,7,.75);
  font-size: 12px;
  font-weight: 900;
}

.before-label { left: 18px; }
.after-label { right: 18px; background: var(--red); }

.row-heading {
  max-width: 1040px;
}

.projects-section .section-heading {
  margin-bottom: 22px;
}

.projects-section .section-heading h2 {
  max-width: 680px;
  font-size: clamp(30px, 3.4vw, 54px);
}

.projects-section .section-heading p {
  max-width: 520px;
  font-size: 15px;
}

.project-rail article::after {
  display: none;
}

.project-slider {
  position: relative;
}

.project-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-flow: column dense;
  grid-template-rows: repeat(2, minmax(210px, 28vh));
  grid-auto-columns: clamp(250px, 24vw, 370px);
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: none;
  padding-bottom: 16px;
  scrollbar-width: none;
  scrollbar-color: var(--red) rgba(255,255,255,.14);
  will-change: scroll-position;
}

.project-rail::-webkit-scrollbar {
  display: none;
}

.project-rail.is-autoscrolling {
  scroll-snap-type: none;
}

.project-rail article:nth-child(4n + 1),
.project-rail article:nth-child(4n + 4) {
  grid-row: span 2;
}

.project-rail article:nth-child(6n + 2) {
  grid-column: span 2;
}

.rail-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line-strong);
  background: rgba(7,7,7,.78);
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.rail-btn::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.rail-btn.prev {
  left: -18px;
}

.rail-btn.prev::before {
  transform: rotate(-135deg);
}

.rail-btn.next {
  right: -18px;
}

.rail-btn.next::before {
  transform: rotate(45deg);
}

.rail-btn:hover {
  border-color: var(--red);
  background: rgba(227,6,32,.8);
}

.project-rail article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
  min-height: 250px;
  scroll-snap-align: none;
  cursor: zoom-in;
}

.project-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .34s ease, filter .34s ease;
}

.project-rail article:hover img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.03);
}

.project-rail b {
  display: none;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(0,0,0,0);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease, background-color .28s ease;
}

.gallery-lightbox.is-open {
  background: rgba(0,0,0,.78);
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox button {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: zoom-out;
}

.gallery-lightbox img {
  position: relative;
  z-index: 1;
  max-width: min(1160px, 92vw);
  max-height: 82svh;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,.2);
  background: #111;
  box-shadow: 0 30px 100px rgba(0,0,0,.58);
  transform: scale(.96) translateY(10px);
  transition: transform .32s ease;
}

.gallery-lightbox.is-open img {
  transform: scale(1) translateY(0);
}

.gallery-lightbox span {
  position: fixed;
  z-index: 2;
  left: 50%;
  bottom: clamp(18px, 4vw, 46px);
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,.2);
  padding: 12px 16px;
  background: rgba(8,8,8,.76);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.gallery-lightbox span:empty {
  display: none;
}

.scope-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.scope-board article {
  position: relative;
  min-height: 320px;
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid rgba(0,0,0,.16);
  padding: clamp(22px, 3vw, 36px);
  background:
    linear-gradient(160deg, rgba(255,255,255,.96), rgba(255,255,255,.78)),
    radial-gradient(circle at 100% 0, rgba(227,6,32,.16), transparent 34%);
  overflow: hidden;
}

.scope-board article::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(227,6,32,.42);
  transform: rotate(45deg);
}

.scope-board span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.scope-board h3 {
  color: #111;
  max-width: 86%;
  font-size: clamp(27px, 2.55vw, 38px);
  line-height: 1.04;
}

.scope-board ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(0,0,0,.72);
  font-size: 15px;
  font-weight: 800;
}

.scope-board li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  margin-right: 8px;
  vertical-align: middle;
  background: var(--red);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(380px, 1.08fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 0;
}

.contact-section .contact-copy > .eyebrow {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: .96;
  letter-spacing: 0;
  text-transform: none;
}

.contact-copy > span {
  color: var(--red-2);
  font-size: 13px;
  font-weight: 900;
}

.contact-points,
.company-card {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  border: 1px solid var(--line);
  padding: 20px;
  background: rgba(255,255,255,.035);
}

.contact-points b,
.company-card b {
  color: #fff;
}

.company-card p {
  margin: 0;
}

.contact-points span,
.company-card span,
.company-card a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.company-card {
  position: relative;
  gap: 12px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(227,6,32,.14), transparent 42%),
    rgba(255,255,255,.045);
  overflow: hidden;
}

.company-name {
  max-width: 560px;
  color: #fff;
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 950;
  line-height: 1.35;
}

.company-row {
  display: grid;
  grid-template-columns: minmax(118px, max-content) minmax(0, 1fr);
  align-items: baseline;
  gap: 10px;
}

.company-row b {
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.company-row span,
.company-row a {
  min-width: 0;
  overflow-wrap: anywhere;
}

.company-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(227,6,32,.38);
  transform: rotate(45deg);
}

.company-card a:hover {
  color: #fff;
}

.map-card {
  min-height: 360px;
  margin-top: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #080808;
  box-shadow: 0 24px 76px rgba(0,0,0,.42);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: saturate(.82) contrast(1.18) brightness(.72);
}

.contact-form-wrap {
  display: grid;
  align-self: start;
  gap: 16px;
}

.form-intro {
  margin: 0;
  border: 1px solid rgba(255,255,255,.12);
  padding: clamp(18px, 2.2vw, 24px);
  background:
    linear-gradient(135deg, rgba(227,6,32,.12), transparent 44%),
    rgba(255,255,255,.035);
  color: rgba(246,243,238,.76);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 750;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: start;
  gap: 16px;
  border: 1px solid var(--line);
  padding: clamp(18px, 2vw, 26px);
  background:
    radial-gradient(circle at 100% 0, rgba(227,6,32,.12), transparent 28%),
    #111;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  min-width: 0;
}

.contact-form label span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form .wide { grid-column: 1 / -1; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.42);
  color: var(--text);
  padding: 15px 14px;
  outline: none;
}

.file {
  position: relative;
  overflow: hidden;
  min-height: 120px;
  place-items: center;
  border: 1px dashed var(--line-strong);
  cursor: pointer;
  text-align: center;
}

.file input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 14px;
}

.timeline-section,
.print-ceiling-section,
.led-engine-section,
.details-craft-section {
  padding: clamp(76px, 8vw, 126px) var(--pad);
  scroll-margin-top: 92px;
  border-top: 1px solid var(--line);
}

.timeline-section {
  background:
    linear-gradient(90deg, rgba(227,6,32,.12), transparent 24%),
    linear-gradient(180deg, #090909, #141414);
}

.path-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px) 0 0 / 25% 100%,
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02)),
    #101010;
  overflow: hidden;
}

.path-flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 78px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(255,255,255,.6), var(--red));
  box-shadow: 0 0 28px rgba(227,6,32,.28);
}

.path-flow article {
  position: relative;
  min-height: 340px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  border-left: 1px solid var(--line);
  overflow: hidden;
}

.path-flow article:first-child {
  border-left: 0;
}

.path-flow article::before {
  content: "";
  position: absolute;
  left: clamp(22px, 3vw, 34px);
  top: 56px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--red);
  background: #080808;
  box-shadow: 0 0 0 12px rgba(227,6,32,.08), 0 0 34px rgba(227,6,32,.22);
  transform: rotate(45deg);
}

.path-flow article::after {
  content: "";
  position: absolute;
  inset: auto -24px -80px auto;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255,255,255,.08);
  transform: rotate(22deg);
}

.path-flow b {
  position: absolute;
  left: clamp(30px, 3vw, 42px);
  top: 67px;
  z-index: 1;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.path-flow h3 {
  max-width: 260px;
  color: #fff;
  font-size: clamp(25px, 2.7vw, 42px);
  line-height: .98;
}

.path-flow p {
  max-width: 310px;
  color: var(--muted);
}

.timeline-variants {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.process-lane {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  overflow: hidden;
}

.process-lane article {
  position: relative;
  min-height: 112px;
  padding: 20px;
}

.process-lane b {
  color: var(--red-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.process-lane span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.process-lane-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.process-lane-cards article {
  background:
    radial-gradient(circle at 100% 0, rgba(227,6,32,.16), transparent 30%),
    #101010;
}

.process-lane-cards b {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  background: #080808;
}

.process-lane-cards span {
  color: #fff;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 950;
  line-height: 1.05;
}

.process-lane-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background:
    linear-gradient(90deg, transparent 0 10%, rgba(227,6,32,.55) 10% 90%, transparent 90%) 0 45px / 100% 2px no-repeat,
    rgba(255,255,255,.035);
}

.process-lane-line article::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 20px;
  width: 22px;
  height: 22px;
  border: 1px solid var(--red);
  background: #0b0b0b;
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(227,6,32,.28);
}

.process-lane-line article {
  padding-top: 70px;
}

.process-lane-split {
  display: grid;
  grid-template-columns: .9fr 1.2fr .9fr;
}

.process-lane-split article {
  min-height: 170px;
  display: grid;
  align-content: end;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,.34)),
    radial-gradient(circle at 50% 0, rgba(255,255,255,.08), transparent 42%);
}

.process-lane-split article:first-child {
  border-left: 0;
}

.process-lane-split article:nth-child(2) {
  min-height: 210px;
  background:
    linear-gradient(180deg, rgba(227,6,32,.22), rgba(0,0,0,.22)),
    #121212;
}

.process-lane-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: process;
}

.process-lane-steps article {
  min-height: 150px;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), transparent 54%),
    #0d0d0d;
}

.process-lane-steps article:first-child {
  border-left: 0;
}

.process-lane-steps b {
  font-size: 46px;
  line-height: 1;
  color: rgba(255,255,255,.16);
}

.process-lane-steps span {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.journey-options {
  display: grid;
  gap: 16px;
}

.journey-strip {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  padding: 16px;
  background:
    linear-gradient(90deg, rgba(227,6,32,.14), transparent 22%),
    #0d0d0d;
}

.journey-strip span {
  color: #fff;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.journey-strip i {
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(255,255,255,.22));
  box-shadow: 0 0 20px rgba(227,6,32,.28);
}

.journey-blueprint {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr 1.1fr;
  min-height: 330px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    #101010;
}

.journey-blueprint article {
  position: relative;
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 290px;
  padding: clamp(20px, 3vw, 34px);
  border-left: 1px solid var(--line);
  overflow: hidden;
}

.journey-blueprint article:first-child {
  border-left: 0;
}

.journey-blueprint article:nth-child(even) {
  align-content: start;
}

.journey-blueprint article::before {
  content: "";
  position: absolute;
  inset: 22px auto auto 22px;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(227,6,32,.48);
  transform: rotate(45deg);
}

.journey-blueprint b {
  color: var(--red-2);
  font-size: 13px;
  font-weight: 950;
}

.journey-blueprint h3 {
  color: #fff;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1;
}

.journey-blueprint p {
  color: var(--muted);
}

.journey-split {
  display: grid;
  grid-template-columns: .9fr 1.2fr .9fr;
  gap: 12px;
}

.journey-split div {
  min-height: 190px;
  display: grid;
  align-content: end;
  gap: 12px;
  border: 1px solid var(--line);
  padding: 24px;
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,.34)),
    radial-gradient(circle at 0 0, rgba(255,255,255,.08), transparent 34%),
    #101010;
}

.journey-split div:nth-child(2) {
  min-height: 230px;
  background:
    linear-gradient(160deg, rgba(227,6,32,.22), transparent 48%),
    #151515;
}

.journey-split b,
.journey-final strong {
  color: #fff;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1;
}

.journey-split span,
.journey-final span,
.journey-final p {
  color: var(--muted);
}

.journey-check {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: #0c0c0c;
}

.journey-check p {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 12px;
  margin: 0;
  padding: 22px;
  border-left: 1px solid var(--line);
}

.journey-check p:first-child {
  border-left: 0;
}

.journey-check b {
  color: var(--red-2);
  font-size: 12px;
}

.journey-check span {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.journey-final {
  min-height: 210px;
  display: grid;
  align-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 44px);
  background:
    radial-gradient(circle at 80% 20%, rgba(227,6,32,.22), transparent 26%),
    linear-gradient(90deg, rgba(255,255,255,.08), transparent 52%),
    #111;
}

.journey-final p {
  max-width: 860px;
}

.process-board {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr) minmax(280px, .8fr);
  gap: 14px;
  min-height: 560px;
}

.process-board-main,
.process-board-steps,
.process-board-visual {
  border: 1px solid var(--line);
  background: #101010;
  overflow: hidden;
}

.process-board-main {
  position: relative;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(26px, 4vw, 44px);
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.18), transparent 14%),
    radial-gradient(circle at 80% 18%, rgba(227,6,32,.42), transparent 34%),
    linear-gradient(180deg, #3a070d, #120708);
}

.process-board-main::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255,255,255,.12);
  pointer-events: none;
}

.process-board-main > span {
  color: rgba(255,255,255,.16);
  font-size: clamp(86px, 10vw, 160px);
  font-weight: 950;
  line-height: .78;
}

.process-board-main h3,
.process-board-steps h3 {
  color: #fff;
  font-size: clamp(27px, 3vw, 48px);
  line-height: .98;
}

.process-board-main p,
.process-board-steps p {
  color: rgba(255,255,255,.72);
}

.process-board-steps {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 0 1px, transparent 1px) 0 0 / 72px 72px,
    #0d0d0d;
}

.process-board-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-content: center;
  padding: clamp(20px, 3vw, 34px);
  border-top: 1px solid var(--line);
}

.process-board-steps article:first-child {
  border-top: 0;
}

.process-board-steps b {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  color: var(--red-2);
  background: #080808;
  font-weight: 950;
}

.process-board-steps h3,
.process-board-steps p {
  grid-column: 2;
}

.process-board-steps h3 {
  margin-top: -66px;
  max-width: 420px;
}

.process-board-steps p {
  max-width: 560px;
  margin-top: 10px;
}

.process-board-visual {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 420px;
  background: #080808;
}

.process-board-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.62) contrast(1.08) saturate(.92);
}

.process-board-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(0,0,0,.82)),
    radial-gradient(circle at 82% 10%, rgba(227,6,32,.24), transparent 28%);
}

.process-board-visual div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 18px;
  border: 1px solid rgba(255,255,255,.18);
  padding: 18px;
  background: rgba(8,8,8,.72);
  backdrop-filter: blur(14px);
}

.process-board-visual b {
  color: #fff;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1;
}

.process-board-visual span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-premium {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid rgba(255,255,255,.12);
  padding: clamp(26px, 3.8vw, 54px);
  padding-top: clamp(82px, 8vw, 112px);
  background:
    radial-gradient(circle at 12% 8%, rgba(227,6,32,.2), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    #0b0b0b;
  overflow: hidden;
}

.timeline-premium::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.07);
  pointer-events: none;
}

.timeline-progress {
  position: absolute;
  z-index: 2;
  left: clamp(34px, 4vw, 70px);
  right: clamp(34px, 4vw, 70px);
  top: clamp(34px, 4vw, 58px);
  height: 3px;
  overflow: hidden;
  background: rgba(255,255,255,.1);
}

.timeline-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 36%;
  background: linear-gradient(90deg, transparent, var(--red), rgba(255,255,255,.88), var(--red), transparent);
  box-shadow: 0 0 30px rgba(227,6,32,.45);
  animation: timelineLoading 4.8s ease-in-out infinite;
}

@keyframes timelineLoading {
  0% { transform: translateX(-110%); }
  50% { transform: translateX(220%); }
  100% { transform: translateX(-110%); }
}

.timeline-card {
  position: relative;
  z-index: 1;
  min-height: 286px;
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid rgba(255,255,255,.12);
  padding: clamp(20px, 2vw, 28px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.076), rgba(255,255,255,.022)),
    linear-gradient(135deg, rgba(227,6,32,.08), transparent 48%),
    #101010;
  box-shadow: 0 18px 58px rgba(0,0,0,.26);
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -68px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: #0b0b0b;
  box-shadow: 0 0 0 10px rgba(227,6,32,.1), 0 0 30px rgba(227,6,32,.34);
  transform: translateX(-50%);
}

.timeline-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -48px;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(227,6,32,.9), transparent);
  transform: translateX(-50%);
}

.timeline-card strong {
  width: max-content;
  border: 1px solid rgba(227,6,32,.42);
  padding: 8px 10px;
  background: rgba(227,6,32,.08);
  color: var(--red-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.timeline-card h3 {
  max-width: 330px;
  color: #fff;
  font-size: clamp(23px, 1.75vw, 32px);
  line-height: 1.02;
}

.timeline-card p {
  max-width: 360px;
  margin: 0;
  color: rgba(246,243,238,.7);
}

.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.timeline-track::before {
  content: "";
  position: absolute;
  inset: 34px 8% auto;
  height: 70%;
  border: 1px solid rgba(227,6,32,.32);
  border-radius: 50%;
  box-shadow: 0 0 48px rgba(227,6,32,.16);
}

.timeline-track article {
  position: relative;
  min-height: 290px;
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid var(--line);
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02)),
    #111;
  overflow: hidden;
}

.timeline-track article:nth-child(2),
.timeline-track article:nth-child(5) {
  transform: translateY(34px);
}

.timeline-track article::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(227,6,32,.45);
  transform: rotate(45deg);
}

.timeline-track b,
.led-board b {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  background: #070707;
  color: var(--red-2);
  font-weight: 950;
}

.timeline-track h3,
.led-board h3,
.details-grid h3 {
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1.04;
}

.print-ceiling-section {
  display: grid;
  grid-template-columns: minmax(280px, .76fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 78px);
  align-items: center;
}

.print-copy > span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.print-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.print-tags b {
  border: 1px solid rgba(0,0,0,.18);
  padding: 12px 14px;
  background: rgba(255,255,255,.62);
  color: #111;
  font-size: 12px;
  text-transform: uppercase;
}

.print-showcase {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 12px;
}

.print-tile {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.16);
  background: #111;
}

.print-tile:first-child {
  grid-row: span 2;
}

.print-tile::before,
.print-tile::after {
  content: "";
  position: absolute;
  inset: 0;
}

.print-tile::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.34)),
    var(--tile);
  background-size: cover;
  background-position: center;
}

.print-tile::after {
  inset: 20px;
  border: 3px solid rgba(255,255,255,.82);
  border-radius: 42%;
  box-shadow: 0 0 42px rgba(255,255,255,.22);
}

.print-tile span {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 16px;
  border: 1px solid rgba(255,255,255,.25);
  padding: 12px 14px;
  background: rgba(7,7,7,.72);
  color: #fff;
  font-weight: 900;
}

.sky { --tile: linear-gradient(135deg, #9ac8ff, #eef7ff 45%, #7eb2e6); }
.leaves { --tile: url("/images/samantha-white.jpg"); }
.brand-print { --tile: linear-gradient(135deg, #080808, #1e1e1e 58%, #e30620); }
.gallery-print { --tile: url("/images/bau-logo-wall.jpg"); }

.led-engine-section {
  background:
    linear-gradient(90deg, rgba(7,7,7,.96), rgba(7,7,7,.78)),
    url("/images/bau-config-line.jpg") center / cover;
}

.led-board {
  display: grid;
  grid-template-columns: 1.1fr repeat(2, minmax(220px, 1fr));
  gap: 12px;
}

.led-visual {
  position: relative;
  grid-row: span 2;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,203,132,.18), rgba(255,255,255,.04), rgba(39,168,255,.18)),
    #111;
}

.led-visual i {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 7px;
  border-radius: 99px;
  background: linear-gradient(90deg, #ffcb84, #fff2da, #b9e6ff);
  box-shadow: 0 0 28px rgba(255,255,255,.55), 0 0 64px rgba(227,6,32,.22);
  animation: pulseLight 1.4s ease-in-out infinite alternate;
}

.led-visual i:nth-child(1) { top: 28%; }
.led-visual i:nth-child(2) { top: 50%; transform: rotate(-7deg); }
.led-visual i:nth-child(3) { top: 72%; transform: rotate(6deg); }

.led-visual span {
  position: absolute;
  bottom: 24px;
  color: #fff;
  font-weight: 900;
}

.led-visual span:nth-of-type(1) { left: 10%; }
.led-visual span:nth-of-type(2) { left: 45%; }
.led-visual span:nth-of-type(3) { right: 10%; }

.led-board article {
  min-height: 210px;
  border: 1px solid var(--line);
  padding: 22px;
  background: rgba(12,12,12,.84);
  backdrop-filter: blur(12px);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.details-grid article {
  border: 1px solid rgba(0,0,0,.16);
  background: rgba(255,255,255,.62);
  overflow: hidden;
}

.details-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(.95) contrast(1.04);
}

.details-grid h3,
.details-grid p {
  padding-inline: 18px;
}

.details-grid h3 {
  margin-top: 18px;
  color: #111;
}

.details-grid p {
  padding-bottom: 20px;
  font-size: 15px;
}

.idea-block {
  padding: clamp(76px, 8vw, 126px) var(--pad);
  scroll-margin-top: 92px;
  border-top: 1px solid var(--line);
  background: #080808;
}

.idea-block span,
.idea-copy > span,
.problem-copy > span,
.commercial-section span,
.bathroom-copy > span,
.renovation-section span {
  color: var(--red-2);
  font-size: 13px;
  font-weight: 900;
}

.idea-copy {
  max-width: 780px;
}

.area-section,
.problem-section,
.commercial-section,
.bathroom-section,
.decision-section,
.renovation-section,
.trust-section {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: center;
}

.area-map {
  min-height: 420px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(227,6,32,.22), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.06) 1px, transparent 1px),
    #111;
  background-size: auto, 44px 44px, 44px 44px, auto;
}

.area-map b,
.problem-list b,
.care-strip b,
.bathroom-cards b,
.trust-numbers b {
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  padding: 14px;
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.area-map b:first-child {
  grid-row: span 2;
  background: var(--red);
  color: #fff;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.room-grid article {
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.16);
  background: rgba(255,255,255,.68);
}

.room-grid img,
.problem-visual img,
.commercial-section img,
.renovation-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-grid img {
  height: 260px;
}

.room-grid h3,
.room-grid p {
  padding-inline: 18px;
}

.room-grid h3 {
  margin-top: 18px;
  color: #111;
}

.room-grid p {
  padding-bottom: 20px;
  font-size: 15px;
}

.problem-visual,
.commercial-section picture,
.renovation-section img {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.problem-list,
.care-strip,
.bathroom-cards,
.trust-numbers,
.material-samples {
  display: grid;
  gap: 10px;
}

.problem-list {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 22px;
}

.material-choice-section {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: clamp(24px, 5vw, 78px);
  align-items: end;
}

.material-samples {
  grid-template-columns: repeat(5, 1fr);
}

.material-samples i {
  min-height: 280px;
  display: flex;
  align-items: end;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.16);
  padding: 16px;
  color: #111;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.material-samples i:nth-child(1) { background: #fff; }
.material-samples i:nth-child(2) { background: linear-gradient(135deg, #fff, #8a8a8a); }
.material-samples i:nth-child(3) { background: linear-gradient(135deg, #050505, #595959); color: #fff; }
.material-samples i:nth-child(4) { background: var(--red); color: #fff; }
.material-samples i:nth-child(5) { background: url("/images/samantha-white.jpg") center / cover; color: #fff; }

.commercial-section {
  background:
    linear-gradient(90deg, rgba(7,7,7,.96), rgba(7,7,7,.72)),
    #111;
}

.care-strip {
  grid-template-columns: repeat(5, 1fr);
}

.care-strip b {
  min-height: 120px;
  color: #111;
}

.bathroom-section {
  background:
    linear-gradient(90deg, rgba(7,7,7,.92), rgba(7,7,7,.62)),
    url("/images/bau-config-white.jpg") center / cover;
}

.bathroom-cards {
  grid-template-columns: repeat(3, 1fr);
}

.bathroom-cards b {
  min-height: 190px;
  background: rgba(7,7,7,.78);
  color: #fff;
  backdrop-filter: blur(10px);
}

.decision-section {
  grid-template-columns: 1fr .78fr;
}

.decision-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.decision-board article {
  min-height: 310px;
  border: 1px solid rgba(0,0,0,.16);
  padding: 22px;
  background: rgba(255,255,255,.68);
}

.decision-board span {
  color: var(--red);
}

.decision-board h3 {
  color: #111;
  font-size: clamp(27px, 3vw, 42px);
}

.renovation-section {
  grid-template-columns: .78fr 1fr;
}

.trust-section {
  grid-template-columns: 1fr .86fr;
}

.trust-numbers {
  grid-template-columns: repeat(2, 1fr);
}

.trust-numbers b {
  min-height: 170px;
  color: #111;
  background: rgba(255,255,255,.72);
}

.partners-section {
  overflow: hidden;
  padding-block: clamp(26px, 4vw, 46px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(227,6,32,.12), transparent 28%),
    #0a0a0a;
}

.copy-options-section {
  padding: clamp(62px, 7vw, 104px) var(--pad);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 0, rgba(227,6,32,.18), transparent 34%),
    linear-gradient(180deg, #111, #080808);
}

.copy-options-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.copy-options-grid article {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
    #101010;
}

.copy-options-grid b {
  color: var(--red-2);
  font-size: 12px;
  font-weight: 950;
}

.copy-options-grid h3 {
  max-width: 310px;
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.04;
}

.copy-options-grid p {
  margin: 0;
  color: rgba(246,243,238,.64);
  font-size: 13px;
  line-height: 1.5;
}

.partner-strip {
  width: max-content;
  min-width: 100%;
  display: flex;
  gap: 12px;
  will-change: transform;
}

.partner-strip a {
  width: clamp(160px, 17vw, 260px);
  min-height: 104px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0, rgba(227,6,32,.18), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    #111;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.partner-strip img {
  max-width: 74%;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.28));
}

.partner-strip a:hover {
  transform: translateY(-4px);
  border-color: rgba(227,6,32,.48);
  background:
    radial-gradient(circle at 50% 0, rgba(227,6,32,.24), transparent 38%),
    #161616;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px var(--pad);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer > div {
  display: grid;
  gap: 8px;
}

.footer > div:nth-child(2) {
  justify-items: center;
}

.footer > div:nth-child(3) {
  justify-items: end;
}

.creator-link {
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.footer-logo {
  width: 132px;
  height: auto;
  opacity: .9;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.28));
}

.footer a,
.footer span {
  font-size: 11px;
}

.cookie-banner {
  position: fixed;
  z-index: 120;
  left: var(--pad);
  right: var(--pad);
  bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line-strong);
  padding: 16px;
  background: rgba(12,12,12,.92);
  color: #fff;
  box-shadow: 0 20px 70px rgba(0,0,0,.42);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  color: var(--red-2);
  font-weight: 950;
  text-transform: uppercase;
}

.cookie-banner p {
  margin: 0;
  font-size: 13px;
}

.cookie-banner a {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cookie-banner button {
  min-height: 44px;
  border: 1px solid var(--red);
  padding: 0 18px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.privacy-page {
  min-height: 100svh;
  padding: 132px var(--pad) 82px;
  background:
    radial-gradient(circle at 85% 16%, rgba(227,6,32,.16), transparent 24%),
    linear-gradient(180deg, #080808, #111);
}

.privacy-shell {
  max-width: 980px;
  display: grid;
  gap: 18px;
  margin: 0 auto;
  text-align: center;
}

.privacy-shell h1 {
  justify-self: center;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(42px, 6vw, 82px);
}

.legal-card {
  border: 1px solid var(--line);
  padding: clamp(22px, 4vw, 42px);
  background: rgba(255,255,255,.045);
  text-align: left;
}

.legal-card h2 {
  margin-top: 28px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

@keyframes pulseLight {
  0% { opacity: .72; transform: scale(.985); }
  100% { opacity: 1; transform: scale(1.015); }
}

@keyframes loaderLine {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(260%); }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-header nav { display: none; }
  .header-actions { justify-self: end; }

  .config-heading,
  .ceiling-configurator,
  .contact-section,
  .about-section,
  .process-board,
  .hero-composition,
  .print-ceiling-section,
  .led-board,
  .area-section,
  .problem-section,
  .commercial-section,
  .bathroom-section,
  .decision-section,
  .renovation-section,
  .trust-section,
  .material-choice-section,
  .split-proof {
    grid-template-columns: 1fr;
  }

  .ceiling-configurator {
    height: auto;
    min-height: auto;
    gap: 12px;
  }

  .config-controls {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .process-board {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .timeline-premium {
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .timeline-premium::before {
    inset: 18px;
    width: auto;
    height: auto;
    border: 1px solid rgba(255,255,255,.07);
    background: none;
  }

  .timeline-card-a,
  .timeline-card-b,
  .timeline-card-c,
  .timeline-card-d,
  .timeline-card-e {
    grid-column: auto;
    grid-row: auto;
    align-self: stretch;
  }

  .timeline-card::before,
  .timeline-card::after {
    display: none;
  }

  .process-board-steps {
    grid-template-rows: none;
  }

  .details-grid,
  .room-grid,
  .path-flow,
  .process-lane-cards,
  .process-lane-steps,
  .process-lane-line,
  .process-lane-split,
  .journey-blueprint,
  .journey-split,
  .journey-check,
  .copy-options-grid,
  .partner-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .path-flow::before {
    display: none;
  }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 128px; }

  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 18px;
  }

  .brand strong { font-size: 18px; }

  .header-actions {
    justify-self: stretch;
    justify-content: space-between;
  }

  .header-phone {
    min-height: 38px;
    padding: 0 10px;
    font-size: 11px;
  }

  .hero {
    min-height: 94svh;
    padding: 150px 18px 72px;
  }

  .hero-actions,
  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .config-section {
    min-height: auto;
    padding: 78px 18px;
  }

  .config-controls,
  .section-heading,
  .contact-form,
  .footer {
    grid-template-columns: 1fr;
  }

  .company-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading p {
    grid-column: auto;
  }

  .project-rail {
    grid-template-rows: repeat(2, 210px);
    grid-auto-columns: minmax(230px, 78vw);
    gap: 10px;
  }

  .rail-btn {
    width: 46px;
    height: 46px;
  }

  .rail-btn.prev { left: -6px; }
  .rail-btn.next { right: -6px; }

  .project-rail article {
    min-height: 210px;
  }

  .canvas-stage {
    min-height: 300px;
  }

  #ceilingCanvas {
    min-height: 0;
  }

  .config-summary {
    position: static;
    grid-template-columns: 1fr;
    margin: 0;
    padding: 10px;
    background: #101010;
  }

  .segmented.three,
  .segmented.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-section,
  .projects-section,
  .about-section,
  .contact-section,
  .timeline-section,
  .partners-section,
  .copy-options-section,
  .print-ceiling-section,
  .led-engine-section,
  .details-craft-section,
  .idea-block {
    padding: 72px 18px;
  }

  .process-board {
    gap: 10px;
  }

  .process-board-main {
    min-height: 360px;
    padding: 28px;
  }

  .process-board-main > span {
    font-size: clamp(70px, 24vw, 118px);
  }

  .process-board-steps article {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    padding: 22px;
  }

  .process-board-steps b {
    width: 46px;
    height: 46px;
  }

  .process-board-steps h3,
  .process-board-steps p {
    grid-column: 2;
  }

  .process-board-steps h3 {
    margin-top: -56px;
    font-size: clamp(23px, 8vw, 34px);
  }

  .process-board-visual {
    min-height: 320px;
  }

  .before-after-card {
    min-height: 420px;
  }

  .before-after-card button {
    width: 46px;
  }

  .count-controls label {
    grid-template-columns: 1fr;
  }

  .count-controls b {
    width: 42px;
    justify-self: end;
  }

  .timeline-track,
  .timeline-premium,
  .path-flow,
  .process-lane-cards,
  .process-lane-line,
  .process-lane-split,
  .process-lane-steps,
  .journey-blueprint,
  .journey-split,
  .journey-check,
  .copy-options-grid,
  .about-stats,
  .certificate-wall,
  .print-showcase,
  .led-board,
  .details-grid,
  .room-grid,
  .area-map,
  .problem-list,
  .material-samples,
  .care-strip,
  .bathroom-cards,
  .decision-board,
  .trust-numbers,
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .partner-strip {
    animation-duration: 34s;
  }

  .partner-strip a {
    width: clamp(170px, 62vw, 250px);
    min-height: 112px;
  }

  .journey-strip {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .journey-strip i {
    width: 1px;
    height: 22px;
    margin-left: 8px;
  }

  .journey-blueprint article,
  .journey-check p {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .journey-blueprint article:first-child,
  .journey-check p:first-child {
    border-top: 0;
  }

  .count-controls label {
    grid-template-columns: 1fr 1fr 28px;
  }

  .certificate-wall article:first-child {
    grid-row: auto;
  }

  .path-flow {
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02)), #101010;
  }

  .path-flow article {
    min-height: 250px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .path-flow article:first-child {
    border-top: 0;
  }

  .timeline-track::before {
    left: 30px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }

  .timeline-track article {
    min-height: 230px;
    padding-left: 82px;
  }

  .timeline-premium {
    padding: 18px;
    gap: 12px;
  }

  .timeline-card {
    min-height: 210px;
  }

  .timeline-track article:nth-child(2),
  .timeline-track article:nth-child(5) {
    transform: none;
  }

  .print-tile:first-child {
    grid-row: auto;
  }

  .led-visual {
    grid-row: auto;
    min-height: 320px;
  }

  .cookie-banner {
    left: 18px;
    right: 18px;
    align-items: stretch;
  }

  .before-after-card {
    min-height: 440px;
  }

  .decision-board article {
    min-height: 310px;
  }

  .footer {
    display: grid;
  }

  .footer > div,
  .footer > div:nth-child(2),
  .footer > div:nth-child(3) {
    justify-items: start;
  }
}

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

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
