:root {
  --black: #07090d;
  --ink: #11161c;
  --steel: #1a2027;
  --white: #ffffff;
  --soft: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.16);
  --red: #cb1f3b;
  --red-hover: #ff5870;
  --menu-text: #ededed;
  --headline-skew: -16deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(64, 72, 82, 0.34), rgba(7, 9, 13, 0) 28rem),
    radial-gradient(circle at 86% 18%, rgba(203, 31, 59, 0.12), rgba(7, 9, 13, 0) 24rem),
    var(--black);
  font-family: Rajdhani, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

body.is-lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

button {
  cursor: pointer;
}

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 18px clamp(18px, 4vw, 62px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
}

.brand {
  display: block;
  width: clamp(210px, 20vw, 360px);
}

.brand-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.62));
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(237, 237, 237, 0.34);
  background: rgba(5, 7, 10, 0.42);
  color: var(--menu-text);
  font: inherit;
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: background 180ms ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

body.menu-open .menu-toggle span {
  background: transparent;
}

body.menu-open .menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav {
  display: flex;
  gap: clamp(16px, 2vw, 34px);
  font-family: Teko, Rajdhani, Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav a,
.header-mully,
.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  line-height: 1;
}

.nav a,
.header-cta {
  color: var(--menu-text);
}

.nav a {
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.16),
    0 0 18px rgba(255, 255, 255, 0.08);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.28),
    0 0 24px rgba(255, 255, 255, 0.14);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 18px);
}

.header-mully {
  position: relative;
  padding-left: 2.14em;
  color: transparent;
  background: linear-gradient(180deg, #ee2640 0%, #cb1f3b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Teko, Rajdhani, Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-mully::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.5em;
  aspect-ratio: 1.42;
  border-radius: 18% / 26%;
  background: linear-gradient(180deg, #ee2640 0%, #cb1f3b 100%);
  transform: translateY(-50%);
}

.header-mully::after {
  content: "";
  position: absolute;
  left: 0.76em;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 0.28em solid transparent;
  border-bottom: 0.28em solid transparent;
  border-left: 0.44em solid var(--white);
  transform: translate(-34%, -50%);
}

.header-mully:hover,
.header-mully:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  color: transparent;
  background: var(--red-hover);
  -webkit-background-clip: text;
  background-clip: text;
}

.header-mully:hover::before,
.header-mully:focus-visible::before {
  background: var(--red-hover);
}

.header-cta {
  min-width: 116px;
  padding: 10px 14px;
  border: 0;
  color: transparent;
  background: linear-gradient(180deg, #ee2640 0%, #cb1f3b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Teko, Rajdhani, Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.hero,
.cinema-frame {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 70%, rgba(203, 31, 59, 0.12), transparent 26rem),
    linear-gradient(135deg, #030405, #101820 52%, #050607);
}

.cinema-frame {
  min-height: auto;
  aspect-ratio: 3 / 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.38)),
    url("assets/profile-silhouette-airflow-v1.png") center / cover no-repeat;
}

.cinema-frame::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1371 848'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.24)' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M74 224 C266 206 376 164 560 176 C725 187 839 220 1030 206 C1152 197 1240 168 1320 178'/%3E%3Cpath d='M92 264 C308 245 414 210 588 224 C744 237 852 272 1036 258 C1162 249 1238 222 1310 231'/%3E%3Cpath d='M128 304 C326 290 462 258 628 270 C779 281 878 316 1047 302 C1178 291 1249 268 1304 276'/%3E%3Cpath d='M690 145 C815 135 916 150 1036 166 C1138 179 1217 171 1306 154' opacity='0.45'/%3E%3C/g%3E%3C/svg%3E") center top / 100% 100% no-repeat;
  opacity: 0;
  mix-blend-mode: screen;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
}

.cinema-frame img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scaleY(1.012);
  transform-origin: center;
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 64%, rgba(203, 31, 59, 0.18), rgba(203, 31, 59, 0) 24%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0) 48%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 6vw, 92px);
  bottom: calc(clamp(48px, 9vh, 104px) - 10px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Kanit, Rajdhani, Impact, sans-serif;
  font-weight: 800;
  font-style: oblique 12deg;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
  transform: skewX(var(--headline-skew));
  transform-origin: left center;
}

h1 {
  display: flex;
  align-items: flex-end;
  column-gap: clamp(10px, 1.2vw, 20px);
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  white-space: nowrap;
}

.hero-model {
  position: relative;
  top: 0.1em;
  display: inline-block;
}

.hero-wide {
  position: relative;
  top: 0.1em;
  display: inline-block;
  margin-right: clamp(28px, 4.2vw, 72px);
  color: transparent;
  background: linear-gradient(180deg, #ee2640 0%, #cb1f3b 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.text-accent {
  color: transparent;
  background: linear-gradient(180deg, #ee2640 0%, #cb1f3b 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.text-outline {
  color: transparent;
  background: none;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.46);
}

.hero-kit-stack {
  display: grid;
  gap: calc(0.03em + 10px);
  align-self: flex-end;
  transform: translate(-20px, calc(0.1em - 5px));
}

.hero-kit {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-family: Teko, Rajdhani, Arial, sans-serif;
  font-size: 0.27em;
  font-style: oblique 12deg;
  letter-spacing: clamp(0.9em, 1.5vw, 1.75em);
  line-height: 1;
  transform: skewX(var(--headline-skew));
  transform-origin: left center;
}

.hero-kit-custom {
  transform: skewX(var(--headline-skew));
}

h2 {
  font-size: clamp(2.7rem, 7.4vw, 7.8rem);
}

.lead {
  margin: 10px 0 0;
  color: var(--soft);
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.atelier {
  min-height: 100svh;
  display: grid;
  align-content: center;
  gap: clamp(8px, 1.1vw, 18px);
  padding: clamp(72px, 10vw, 150px) clamp(18px, 6vw, 92px);
  background: url("assets/unique-backgrounds/04-engine-build-edited-v3.png") 76% center / cover no-repeat;
}

.atelier-item {
  display: grid;
  grid-template-rows: auto clamp(22px, 2vw, 36px);
  gap: clamp(6px, 0.55vw, 10px);
  width: min(1180px, 100%);
  outline: 0;
  transition: transform 620ms cubic-bezier(0.2, 0.78, 0.2, 1);
  will-change: transform;
}

.atelier-word {
  font-family: Kanit, Rajdhani, Impact, sans-serif;
  font-size: clamp(2.35rem, 6.7vw, 6.8rem);
  font-weight: 800;
  font-style: oblique 12deg;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.72);
  transform: skewX(var(--headline-skew));
  transform-origin: left center;
}

.atelier-item:nth-child(3) .atelier-word {
  color: transparent;
  background: linear-gradient(180deg, #ee2640 0%, #cb1f3b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
}

.atelier-item:nth-child(2) .atelier-word {
  color: transparent;
  background: none;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.46);
  text-shadow: none;
}

.atelier-note {
  max-width: min(1020px, 90vw);
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.78);
  font-family: Teko, Rajdhani, Arial, sans-serif;
  font-size: clamp(1rem, 1.65vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
  opacity: 0;
  white-space: nowrap;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.82);
  transform: translateY(-8px) skewX(var(--headline-skew));
  transform-origin: left center;
  transition: opacity 360ms ease, transform 520ms ease;
}

.atelier-item:hover .atelier-note,
.atelier-item:focus-visible .atelier-note,
.atelier-item:focus-within .atelier-note {
  opacity: 1;
  transform: translateY(0) skewX(var(--headline-skew));
}

.atelier-item:hover ~ .atelier-item,
.atelier-item:focus-visible ~ .atelier-item,
.atelier-item:focus-within ~ .atelier-item {
  transform: translateY(clamp(18px, 2.4vw, 38px));
}

.atelier-item:hover ~ .atelier-item ~ .atelier-item,
.atelier-item:focus-visible ~ .atelier-item ~ .atelier-item,
.atelier-item:focus-within ~ .atelier-item ~ .atelier-item {
  transform: translateY(clamp(32px, 4.6vw, 72px));
}

.frame-caption {
  position: absolute;
  z-index: 2;
  left: 50%;
  right: auto;
  bottom: clamp(34px, 7vh, 86px);
  width: min(92vw, 1180px);
  text-align: center;
  transform: translateX(-50%);
}

.frame-caption strong {
  display: block;
  font-family: Kanit, Rajdhani, Impact, sans-serif;
  font-style: oblique 12deg;
  font-size: clamp(1.75rem, 4.05vw, 4.9rem);
  line-height: 0.94;
  text-transform: uppercase;
  white-space: nowrap;
  transform: skewX(var(--headline-skew));
  transform-origin: center;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  min-height: 100svh;
  margin-top: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 22rem),
    linear-gradient(135deg, #0a0d10, var(--ink) 44%, #050607);
}

.feature-copy {
  display: grid;
  align-content: center;
  padding: clamp(58px, 7vw, 100px) clamp(18px, 6vw, 92px);
}

.shape-title {
  display: grid;
  gap: 0.22em;
  line-height: 0.88;
}

.shape-title span {
  display: block;
}

.shape-title span:nth-child(2) {
  color: transparent;
  background: none;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.46);
}

.shape-title span:last-child {
  color: transparent;
  background: linear-gradient(180deg, #ee2640 0%, #cb1f3b 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.pan-photo {
  --pan: 50%;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  cursor: ew-resize;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.pan-photo img {
  position: absolute;
  inset: -34px 0 0;
  width: 100%;
  height: calc(100% + 34px);
  min-height: calc(100svh + 34px);
  object-fit: cover;
  object-position: var(--pan) 56%;
  filter: none;
  transform: scale(1.08);
  transition: object-position 0.12s linear, filter 0.25s ease;
}

.pan-photo:hover img {
  filter: none;
}

.gallery-section {
  padding: clamp(64px, 8vw, 120px) 16px 16px;
  background:
    linear-gradient(180deg, #080b0f, #111820 48%, #08090d);
}

.gallery-intro {
  max-width: 1120px;
  margin: 0 auto clamp(34px, 5vw, 72px);
  text-align: center;
}

.gallery-intro h2 {
  font-size: clamp(2rem, 4.8vw, 4.9rem);
  line-height: 1.18;
  transform: none;
}

.gallery-line {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
  transform: skewX(var(--headline-skew));
  transform-origin: center;
}

.gallery-line:nth-child(2) {
  transform: translateX(clamp(-54px, -3vw, -18px)) skewX(var(--headline-skew));
}

.keep-line {
  white-space: nowrap;
}

.gallery-intro p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: Teko, Rajdhani, Arial, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-height: auto;
}

.gallery figure {
  position: relative;
  min-height: clamp(320px, 42vw, 620px);
  margin: 0;
  overflow: hidden;
  background: #000;
}

.gallery figure.tall {
  transform: none;
}

.gallery a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03) brightness(0.9);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.06) brightness(0.98);
}

.gallery figcaption {
  display: none;
}

.gallery a > *,
.youtube-tile > *,
.mully-link > *,
.site-footer .back-top > * {
  pointer-events: none;
}

.sponsors-section {
  --sponsors-x: clamp(18px, 6vw, 92px);
  min-height: 100svh;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0;
  padding: 0 var(--sponsors-x) 0;
  background:
    radial-gradient(circle at 80% 68%, rgba(203, 31, 59, 0.14), transparent 24rem),
    radial-gradient(circle at 72% 28%, rgba(238, 38, 64, 0.14), transparent 24rem),
    radial-gradient(circle at 18% 70%, rgba(255, 255, 255, 0.06), transparent 20rem),
    linear-gradient(135deg, #050608, #121922 48%, #050608);
}

.sponsors-showcase h2 {
  position: absolute;
  z-index: 2;
  left: var(--sponsors-x);
  right: var(--sponsors-x);
  top: 84%;
  bottom: auto;
  max-width: 1120px;
  margin: 0 auto;
  font-size: clamp(2rem, 4.8vw, 4.9rem);
  line-height: 1.18;
  text-align: center;
  transform: translateY(-50%) skewX(var(--headline-skew));
  transform-origin: center;
}

.sponsors-showcase-logo {
  position: absolute;
  z-index: 3;
  left: clamp(22px, 4.5vw, 78px);
  top: calc(clamp(24px, 4vw, 70px) + 20px);
  width: min(390px, calc(23vw + 30px));
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.64));
}

.sponsors-showcase {
  position: relative;
  justify-self: stretch;
  width: auto;
  margin-inline: calc(var(--sponsors-x) * -1);
  overflow: hidden;
  background:
    linear-gradient(to bottom, #080a0e 0%, #080a0e 18%, rgba(8, 10, 14, 0) 30%);
}

.sponsors-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: none;
}

.sponsors-showcase-photo {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.98) contrast(1.03) brightness(1);
  transform: none;
}

.partners-panel {
  justify-self: stretch;
  width: auto;
  margin-inline: calc(var(--sponsors-x) * -1);
  display: grid;
  justify-items: center;
  gap: clamp(28px, 4vw, 58px);
  padding: clamp(44px, 6vw, 92px) clamp(18px, 6vw, 92px) clamp(86px, 8vw, 136px);
  background: transparent;
}

.partners-block {
  width: min(1280px, 100%);
  display: grid;
  gap: clamp(28px, 4vw, 58px);
}

.partners-block h3 {
  margin: 0;
  color: #fff;
  font-family: Kanit, Rajdhani, Impact, sans-serif;
  font-size: clamp(2rem, 4.8vw, 4.9rem);
  font-weight: 800;
  font-style: oblique 12deg;
  letter-spacing: 0;
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
  transform: skewX(var(--headline-skew));
  transform-origin: center;
}

.sponsor-grid {
  width: min(1280px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: clamp(28px, 4vw, 58px);
  column-gap: clamp(16px, 1.8vw, 28px);
}

.sponsor-grid span {
  height: clamp(128px, 12vw, 184px);
  display: grid;
  place-items: center;
  overflow: visible;
}

.sponsor-grid img {
  width: min(69%, 256px);
  height: 100%;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.06);
}

.sponsor-grid span:nth-child(n + 4) {
  transform: translateY(50px);
}

.motion {
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding: clamp(72px, 10vw, 150px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 78% 42%, rgba(203, 31, 59, 0.14), transparent 24rem),
    linear-gradient(135deg, #06080b, #141a20 48%, #060708);
}

.motion h2 {
  max-width: 1120px;
  margin-inline: auto;
  font-size: clamp(3.1rem, 8.4vw, 8.8rem);
  text-align: center;
  transform-origin: center;
}

.video-title {
  display: block;
  max-width: 1120px;
  margin: 0 auto;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  text-align: center;
  transform-origin: center;
  white-space: normal;
}

.video-page {
  align-content: start;
  padding-top: clamp(132px, 14vw, 220px);
}

.experimental-page {
  min-height: 100svh;
  padding: clamp(132px, 14vw, 220px) clamp(18px, 5vw, 72px) clamp(76px, 9vw, 132px);
  background:
    radial-gradient(circle at 72% 18%, rgba(203, 31, 59, 0.15), transparent 26rem),
    radial-gradient(circle at 12% 68%, rgba(255, 255, 255, 0.06), transparent 22rem),
    linear-gradient(135deg, #050608, #101721 48%, #050608);
}

.experimental-intro {
  max-width: 1120px;
  margin-inline: auto;
  text-align: center;
}

.experimental-intro h1 {
  display: block;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  text-align: center;
  transform-origin: center;
  white-space: normal;
}

.variant-showcase {
  display: grid;
  gap: clamp(18px, 2.6vw, 42px);
  margin-top: clamp(54px, 7vw, 110px);
}

.variant-card {
  position: relative;
  min-height: clamp(440px, 62vw, 780px);
  margin: 0;
  overflow: hidden;
  background: #000;
}

.variant-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.variant-card h2 {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 4vw, 62px);
  bottom: clamp(18px, 4vw, 58px);
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 7.6rem);
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.76);
}

.configurator-preview-page {
  min-height: 100svh;
  padding: clamp(132px, 14vw, 220px) clamp(18px, 4vw, 62px) clamp(76px, 9vw, 132px);
  background:
    radial-gradient(circle at 72% 14%, rgba(203, 31, 59, 0.16), transparent 24rem),
    radial-gradient(circle at 12% 54%, rgba(255, 255, 255, 0.06), transparent 22rem),
    linear-gradient(135deg, #050608, #121922 48%, #050608);
}

.configurator-intro {
  max-width: 1180px;
  margin: 0 auto clamp(42px, 6vw, 96px);
  text-align: center;
}

.configurator-intro h1 {
  display: block;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  text-align: center;
  transform-origin: center;
  white-space: normal;
}

.config-layout {
  position: relative;
  max-width: 1480px;
  margin: 0 auto clamp(34px, 5vw, 76px);
  display: grid;
  gap: 24px;
  min-height: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(203, 31, 59, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.config-layout-title {
  position: absolute;
  z-index: 4;
  left: clamp(18px, 3vw, 48px);
  top: clamp(16px, 2.6vw, 40px);
  font-family: Teko, Rajdhani, Arial, sans-serif;
  font-size: clamp(1.2rem, 2vw, 2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.config-main-photo,
.config-side-photos img {
  overflow: hidden;
  background: #000;
}

.config-main-photo a,
.config-side-photos a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: zoom-in;
}

.config-main-photo img,
.config-side-photos img {
  width: 100%;
  height: 100%;
  filter: saturate(0.94) contrast(1.04) brightness(0.86);
}

.config-main-photo img {
  object-fit: contain;
  object-position: center;
}

.config-side-photos img {
  object-fit: cover;
}

.config-side-photos {
  display: grid;
  gap: 16px;
}

.config-controls {
  display: grid;
  align-content: end;
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(22px, 3vw, 44px);
  background:
    radial-gradient(circle at 82% 20%, rgba(203, 31, 59, 0.18), transparent 14rem),
    rgba(5, 7, 10, 0.74);
}

.config-controls h2 {
  font-size: clamp(1.9rem, 4vw, 4.2rem);
  line-height: 0.95;
}

.swatch-grid,
.swatch-row {
  display: grid;
  gap: 10px;
}

.swatch-grid {
  grid-template-columns: repeat(5, 34px);
}

.swatch-grid.compact {
  grid-template-columns: repeat(5, 28px);
}

.swatch-row {
  grid-template-columns: repeat(10, minmax(24px, 42px));
}

.texture-row {
  grid-template-columns: repeat(3, minmax(30px, 42px));
  margin-top: 0;
}

.texture-row span {
  position: relative;
}

.texture-row span::after {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 9px);
  z-index: 3;
  padding: 5px 8px 4px;
  color: #ededed;
  background: rgba(3, 4, 5, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.36);
  content: attr(data-label);
  font-family: Teko, Rajdhani, Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translate(-50%, 5px);
  transition: opacity 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.texture-row span:hover::after,
.texture-row span:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.swatch-grid span,
.swatch-row span {
  display: block;
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 34%),
    radial-gradient(circle at 72% 82%, rgba(0, 0, 0, 0.28), transparent 46%),
    var(--swatch);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28), 0 12px 26px rgba(0, 0, 0, 0.28);
}

.swatch-row .swatch-carbon {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)),
    url("assets/fabric-preview/carbon-01.png?v=20260627-7") center / cover;
}

.swatch-row .swatch-carbon-kevlar {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 38%),
    url("assets/fabric-preview/carbon-kevlar-01.png?v=20260626-10") center / cover;
}

.swatch-row .swatch-kevlar {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 38%),
    url("assets/fabric-preview/kevlar-01.png?v=20260626-10") center / cover;
}

.swatch-row .swatch-innegra {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 38%),
    url("assets/fabric-preview/carbon-innegra-01.png?v=20260626-10") center / cover;
}

.surface-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.surface-list span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  font-family: Teko, Rajdhani, Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.surface-list.stacked {
  display: grid;
}

.surface-finish {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.surface-finish label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.surface-finish input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #030405;
}

.surface-finish span {
  color: rgba(255, 255, 255, 0.86);
  font-family: Teko, Rajdhani, Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.config-layout-01 {
  grid-template-columns: minmax(0, 3.12fr) minmax(260px, 1fr);
}

.config-layout-02 {
  grid-template-columns: minmax(0, 1fr);
}

.config-layout-02 .config-main-photo {
  min-height: clamp(460px, 52vw, 760px);
}

.config-layout-02 .config-controls {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 3vw, 52px);
  right: clamp(18px, 3vw, 52px);
  bottom: clamp(18px, 3vw, 52px);
  align-content: start;
}

.config-layout-02 .config-side-photos {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 3vw, 52px);
  top: clamp(78px, 8vw, 120px);
  width: min(34vw, 420px);
}

.config-layout-02 .config-side-photos img {
  height: clamp(130px, 14vw, 210px);
}

.config-layout-03 {
  grid-template-columns: minmax(0, 1fr);
}

.config-layout-03 .config-main-photo {
  min-height: clamp(520px, 58vw, 820px);
}

.config-layout-03 .floating {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 4vw, 72px);
  bottom: clamp(18px, 4vw, 72px);
  width: min(380px, 76vw);
}

.config-layout-03 .config-side-photos {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 4vw, 72px);
  bottom: clamp(18px, 4vw, 72px);
  width: min(360px, 34vw);
}

.config-layout-03 .config-side-photos img {
  height: clamp(120px, 13vw, 190px);
}

.config-layout-04 {
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1.14fr) minmax(220px, 0.46fr);
}

.refined-config .config-main-photo {
  min-height: 0;
  aspect-ratio: 1100 / 782;
}

.config-layout-01.refined-config .config-main-photo img {
  object-fit: cover;
  object-position: center center;
  transform: none;
  transform-origin: center;
}

.config-layout-01.refined-config .config-thumb-front {
  object-position: center center;
  transform: none;
}

.config-layout-01.refined-config .config-thumb-angle {
  object-position: center center;
  transform: none;
}

.config-layout-01.refined-config .config-thumb-rear {
  object-position: center center;
  transform: none;
}

.three-stack {
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
  height: 100%;
}

.three-stack img {
  min-height: 0;
}

.config-layout-01 .bottom-bar,
.refined-config .bottom-bar {
  grid-column: 1 / -1;
  align-content: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(190px, 0.24fr) minmax(220px, 0.3fr);
  align-items: start;
  column-gap: clamp(28px, 4vw, 76px);
}

.config-layout-01 .bottom-bar h2 {
  font-size: clamp(1.28rem, 2vw, 2.4rem);
}

.config-control-group {
  display: grid;
  align-items: start;
  gap: clamp(10px, 1.2vw, 18px);
}

.config-layout-01 .config-control-group {
  grid-template-columns: 1fr;
}

.config-layout-01 .finish-group {
  justify-self: end;
  width: min(320px, 100%);
  transform: translateX(clamp(0px, 1.2vw, 18px));
}

.config-layout-01 .texture-group {
  transform: translateX(-15px);
}

.youtube-gallery {
  display: grid;
  gap: clamp(10px, 1.2vw, 18px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: clamp(54px, 7vw, 110px);
  padding-inline: clamp(18px, 5vw, 76px);
  min-height: clamp(560px, 66vw, 860px);
}

.youtube-gallery-left {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(390px, 1.32fr) minmax(190px, 0.58fr);
}

.youtube-gallery-left .hero-tile {
  grid-column: span 2;
  grid-row: 1;
}

.youtube-gallery-left .feature-tile {
  grid-column: 3;
  grid-row: 1;
}

.youtube-tile {
  position: relative;
  display: block;
  min-height: 220px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  isolation: isolate;
}

.youtube-tile::after {
  content: none;
}

.youtube-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.08) brightness(0.78);
  transition: transform 600ms ease, filter 600ms ease;
}

.youtube-tile:hover img {
  transform: scale(1.04);
  filter: saturate(1.02) contrast(1.1) brightness(0.88);
}

.tile-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: clamp(86px, 10vw, 148px);
  aspect-ratio: 1.42;
  border-radius: 18% / 26%;
  background: linear-gradient(180deg, #ee2640 0%, #cb1f3b 100%);
  box-shadow: 0 20px 58px rgba(203, 31, 59, 0.42);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.youtube-tile:hover .tile-play {
  transform: translate(-50%, -50%) scale(1.06);
}

.tile-play::after {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: clamp(15px, 1.8vw, 24px) solid transparent;
  border-bottom: clamp(15px, 1.8vw, 24px) solid transparent;
  border-left: clamp(24px, 2.8vw, 38px) solid #fff;
  transform: translate(-38%, -50%);
}

.tile-play.small {
  width: clamp(54px, 5vw, 82px);
}

.tile-play.small::after {
  border-top-width: clamp(9px, 1.1vw, 14px);
  border-bottom-width: clamp(9px, 1.1vw, 14px);
  border-left-width: clamp(15px, 1.7vw, 23px);
}

.tile-copy {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 3vw, 44px);
  bottom: clamp(18px, 3vw, 44px);
  display: grid;
  gap: 2px;
  text-transform: uppercase;
}

.tile-copy small {
  color: rgba(255, 255, 255, 0.58);
  font-family: Teko, Rajdhani, Arial, sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.6rem);
  letter-spacing: 0.18em;
}

.tile-copy strong {
  font-family: Kanit, Rajdhani, Impact, sans-serif;
  font-size: clamp(1.55rem, 3.1vw, 4.1rem);
  font-style: oblique 12deg;
  line-height: 0.95;
  transform: skewX(var(--headline-skew));
  transform-origin: left center;
}

.youtube-tile:not(.hero-tile) .tile-copy strong {
  font-size: clamp(1.16rem, 1.85vw, 2.55rem);
  line-height: 1.02;
}

.mully-link-section {
  padding: 0 0 clamp(76px, 9vw, 132px);
  background: linear-gradient(135deg, #06080b, #101721 48%, #060708);
}

.mully-link {
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  padding: clamp(30px, 5vw, 72px) clamp(18px, 6vw, 92px);
  border: 0;
  background:
    radial-gradient(circle at 82% 42%, rgba(203, 31, 59, 0.22), transparent 18rem),
    rgba(255, 255, 255, 0.045);
}

.mully-youtube {
  position: relative;
  width: clamp(86px, 10vw, 144px);
  aspect-ratio: 1.42;
  border-radius: 18% / 26%;
  background: linear-gradient(180deg, #ee2640 0%, #cb1f3b 100%);
  box-shadow: 0 20px 58px rgba(203, 31, 59, 0.34);
}

.mully-youtube::after {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: clamp(15px, 1.8vw, 24px) solid transparent;
  border-bottom: clamp(15px, 1.8vw, 24px) solid transparent;
  border-left: clamp(24px, 2.8vw, 38px) solid #fff;
  transform: translate(-38%, -50%);
}

.mully-link small,
.mully-link strong {
  display: block;
  text-transform: uppercase;
}

.mully-link small {
  color: rgba(255, 255, 255, 0.58);
  font-family: Teko, Rajdhani, Arial, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.9rem);
  letter-spacing: 0.18em;
}

.mully-link strong {
  font-family: Kanit, Rajdhani, Impact, sans-serif;
  font-size: clamp(2.1rem, 5vw, 5.8rem);
  font-style: oblique 12deg;
  line-height: 0.95;
  transform: skewX(var(--headline-skew));
  transform-origin: left center;
}

.fabric-preview-page {
  min-height: 100svh;
  padding: clamp(132px, 14vw, 190px) clamp(18px, 5vw, 76px) clamp(88px, 9vw, 140px);
  background:
    radial-gradient(circle at 78% 18%, rgba(203, 31, 59, 0.18), transparent 22rem),
    radial-gradient(circle at 12% 52%, rgba(255, 255, 255, 0.055), transparent 24rem),
    linear-gradient(135deg, #050608, #121922 48%, #050608);
}

.fabric-preview-intro {
  margin-bottom: clamp(42px, 6vw, 84px);
}

.fabric-preview-intro h1,
.fabric-group h2 {
  margin: 0;
  font-family: Kanit, Rajdhani, Impact, sans-serif;
  font-style: oblique 12deg;
  line-height: 0.92;
  text-transform: uppercase;
  transform: skewX(var(--headline-skew));
  transform-origin: left center;
}

.fabric-preview-intro h1 {
  font-size: clamp(3.3rem, 9vw, 9.6rem);
}

.fabric-group {
  display: grid;
  gap: clamp(18px, 2.4vw, 34px);
  margin-top: clamp(44px, 6vw, 88px);
}

.fabric-group h2 {
  color: #ededed;
  font-size: clamp(1.8rem, 4vw, 4.5rem);
}

.fabric-grid {
  display: grid;
  --fabric-swatch-size: 42px;
  grid-template-columns: repeat(auto-fit, var(--fabric-swatch-size));
  gap: 12px 10px;
  align-items: start;
}

.fabric-grid-20 {
  grid-template-columns: repeat(auto-fit, minmax(var(--fabric-swatch-size), 1fr));
  max-width: 1180px;
}

.fabric-grid figure {
  display: grid;
  gap: 6px;
  margin: 0;
  width: var(--fabric-swatch-size);
}

.fabric-grid img {
  width: var(--fabric-swatch-size);
  height: var(--fabric-swatch-size);
  display: block;
  object-fit: cover;
  overflow: hidden;
  background: #030405;
  border: 1px solid rgba(255, 255, 255, 0.2);
  filter: saturate(1.02) contrast(1.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 26px rgba(0, 0, 0, 0.28);
}

.fabric-grid figcaption {
  color: rgba(237, 237, 237, 0.72);
  font-family: Teko, Rajdhani, Arial, sans-serif;
  font-size: 0.92rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
}

.curved-preview-page {
  min-height: 100svh;
  padding: clamp(132px, 14vw, 190px) clamp(18px, 5vw, 76px) clamp(88px, 9vw, 140px);
  background:
    radial-gradient(circle at 78% 18%, rgba(203, 31, 59, 0.18), transparent 22rem),
    radial-gradient(circle at 12% 52%, rgba(255, 255, 255, 0.055), transparent 24rem),
    linear-gradient(135deg, #050608, #121922 48%, #050608);
}

.curved-preview-intro {
  margin-bottom: clamp(38px, 5vw, 76px);
}

.curved-preview-intro h1 {
  margin: 0;
  font-family: Kanit, Rajdhani, Impact, sans-serif;
  font-size: clamp(3.3rem, 9vw, 9.6rem);
  font-style: oblique 12deg;
  line-height: 0.92;
  text-transform: uppercase;
  transform: skewX(var(--headline-skew));
  transform-origin: left center;
}

.curved-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 34px);
}

.curved-preview-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 74%, rgba(203, 31, 59, 0.16), transparent 22rem),
    linear-gradient(135deg, #050608, #121922 48%, #050608);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.36);
}

.curved-preview-card img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.98) contrast(1.03) brightness(1) drop-shadow(0 24px 40px rgba(0, 0, 0, 0.38));
}

.curved-preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, #080a0e 0%, #080a0e 18%, rgba(8, 10, 14, 0) 30%);
}

.curved-preview-number {
  position: absolute;
  z-index: 4;
  left: 14px;
  top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-family: Teko, Rajdhani, Arial, sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  letter-spacing: 0.1em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.curved-text-svg {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.curved-text-svg text {
  font-family: Kanit, Rajdhani, Impact, sans-serif;
  font-size: 94px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transform: skewX(var(--curve-text-skew, -8deg));
  transform-box: fill-box;
  transform-origin: center;
  paint-order: stroke fill;
  stroke: rgba(0, 0, 0, 0.52);
  stroke-width: 8px;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.58));
}

.story-page {
  min-height: 100svh;
  padding: clamp(132px, 14vw, 220px) 0 clamp(76px, 9vw, 132px);
  background:
    radial-gradient(circle at 76% 18%, rgba(203, 31, 59, 0.16), transparent 24rem),
    radial-gradient(circle at 18% 72%, rgba(255, 255, 255, 0.055), transparent 24rem),
    linear-gradient(135deg, #050608, #101721 48%, #050608);
}

.story-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  width: min(1440px, calc(100% - clamp(32px, 8vw, 128px)));
  margin: 0 auto clamp(24px, 4vw, 56px);
}

.story-hero h1 {
  margin: 0;
  font-family: Kanit, Rajdhani, Impact, sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  font-style: oblique 12deg;
  line-height: 0.9;
  text-transform: uppercase;
  transform: skewX(var(--headline-skew));
  transform-origin: left center;
  text-align: left;
  white-space: normal;
}

.story-hero a,
.story-card {
  display: block;
  overflow: hidden;
  background: #050608;
}

.story-hero img,
.story-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08) brightness(0.86);
  transition: transform 600ms ease, filter 600ms ease;
}

.story-hero a:hover img,
.story-card:hover img {
  transform: scale(1.035);
  filter: saturate(0.96) contrast(1.12) brightness(0.92);
}

.story-hero a {
  aspect-ratio: 16 / 9;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(28px, 5vw, 88px);
  align-items: start;
  width: min(1440px, calc(100% - clamp(32px, 8vw, 128px)));
  margin: 0 auto;
}

.story-copy {
  position: sticky;
  top: 118px;
  display: grid;
  gap: clamp(14px, 1.8vw, 22px);
}

.story-copy p {
  margin: 0;
  color: rgba(237, 237, 237, 0.76);
  font-size: clamp(1rem, 1.32vw, 1.32rem);
  line-height: 1.62;
}

.story-copy p:first-child,
.story-final {
  color: #ededed;
  font-family: Rajdhani, Arial, sans-serif;
  font-size: clamp(1.24rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.18;
  text-transform: uppercase;
}

.story-final {
  color: #ff5870;
  margin-top: clamp(10px, 1.8vw, 22px);
}

.story-gallery {
  display: grid;
  gap: clamp(30px, 4.2vw, 62px);
}

.story-gallery-section {
  display: grid;
  gap: clamp(10px, 1.3vw, 18px);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: clamp(210px, 24vw, 360px);
  grid-auto-flow: dense;
  gap: clamp(10px, 1.4vw, 18px);
}

.story-gallery-heading {
  justify-self: start;
  margin: 0;
  color: #ededed;
  font-family: Kanit, Rajdhani, Impact, sans-serif;
  font-size: clamp(1.28rem, 2vw, 2.4rem);
  font-style: oblique 12deg;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: skewX(var(--headline-skew));
  transform-origin: left center;
}

.story-card.tall {
  grid-row: span 2;
}

.story-card.wide {
  grid-column: span 2;
}

.skew-preview-01 {
  --curve-text-skew: -6deg;
}

.skew-preview-02 {
  --curve-text-skew: -10deg;
}

.skew-preview-03 {
  --curve-text-skew: -14deg;
}

.skew-preview-04 {
  --curve-text-skew: -18deg;
}

.skew-preview-05 {
  --curve-text-skew: -22deg;
}

.skew-preview-06 {
  --curve-text-skew: -26deg;
}

.curved-text-svg .curved-built {
  fill: #ededed;
}

.curved-text-svg .curved-stand {
  fill: #cb1f3b;
}

.conic-curved-text {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}

.conic-curved-text span {
  position: absolute;
  left: calc(var(--letter-x) * 1%);
  top: calc(var(--letter-y) * 1%);
  color: #ededed;
  font-family: Kanit, Rajdhani, Impact, sans-serif;
  font-size: clamp(1.9rem, 5.8vw, 5.8rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--letter-rotate) * 1deg))
    skewX(calc(var(--letter-skew) * 1deg));
  transform-origin: center center;
  -webkit-text-stroke: 0.08em rgba(0, 0, 0, 0.52);
  paint-order: stroke fill;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.58));
}

.conic-curved-text span.is-red {
  color: #cb1f3b;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 92px);
  color: var(--white);
  background: #000;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.54);
}

.site-footer .back-top {
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-footer .back-top:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
}

.site-footer .back-top img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: 0.58;
  filter: brightness(1.05);
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(10px, 2vw, 28px);
  padding: clamp(18px, 4vw, 56px);
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.video-lightbox {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 64px);
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.video-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-lightbox-frame {
  width: min(1180px, 94vw);
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.66);
}

.video-lightbox iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-lightbox-close {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  top: clamp(18px, 4vw, 44px);
  width: 46px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  margin: 0;
  min-width: 0;
}

.lightbox-frame img {
  width: 100%;
  max-height: 82svh;
  object-fit: contain;
}

.lightbox-frame figcaption {
  display: none;
}

.lightbox button {
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.lightbox button:hover {
  background: var(--red);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  aspect-ratio: 1;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  width: clamp(44px, 5vw, 64px);
  aspect-ratio: 1;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(8px, 1.6vw, 18px);
    padding-inline: clamp(14px, 3vw, 32px);
  }

  .nav {
    min-width: 0;
    justify-content: center;
    gap: clamp(8px, 1.6vw, 16px);
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    font-size: clamp(0.82rem, 1.6vw, 0.98rem);
    white-space: nowrap;
  }

  .brand {
    width: clamp(150px, 22vw, 220px);
  }

  .header-actions {
    gap: 8px;
  }

  .feature-band,
  .gallery,
  .config-layout,
  .config-layout-01,
  .config-layout-04 {
    grid-template-columns: 1fr;
  }

  .config-layout {
    min-height: auto;
  }

  .config-main-photo,
  .config-layout-02 .config-main-photo,
  .config-layout-03 .config-main-photo {
    min-height: clamp(280px, 58vw, 520px);
  }

  .config-layout-02 .config-controls,
  .config-layout-02 .config-side-photos,
  .config-layout-03 .floating,
  .config-layout-03 .config-side-photos {
    position: relative;
    inset: auto;
    width: auto;
  }

  .config-layout-01 .config-control-group {
    grid-template-columns: 1fr;
  }

  .config-layout-01 .bottom-bar,
  .refined-config .bottom-bar {
    grid-template-columns: 1fr;
  }

  .config-layout-01 .finish-group {
    justify-self: start;
    transform: none;
  }

  .swatch-row {
    grid-template-columns: repeat(auto-fit, minmax(24px, 34px));
  }

  .story-hero,
  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-copy {
    position: relative;
    top: auto;
  }

  .story-grid {
    grid-auto-rows: clamp(190px, 46vw, 330px);
  }

  .hero {
    min-height: clamp(440px, 64vw, 680px);
  }

  .hero-media {
    object-position: 52% center;
  }

  .atelier {
    min-height: clamp(430px, 64vw, 680px);
    background-position: 70% center;
  }

  .cinema-frame {
    min-height: auto;
    aspect-ratio: 3 / 2;
  }

  .feature-band {
    min-height: auto;
  }

  .feature-copy {
    min-height: auto;
    padding-block: clamp(46px, 7vw, 80px);
  }

  .pan-photo {
    min-height: auto;
    aspect-ratio: 16 / 9;
    clip-path: none;
  }

  .pan-photo img {
    inset: 0;
    height: 100%;
    min-height: 0;
    transform: scale(1.03);
    object-position: var(--pan) center;
  }

  .youtube-gallery,
  .youtube-gallery-left {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
  }

  .youtube-gallery-left .hero-tile {
    grid-column: auto;
    grid-row: auto;
  }

  .youtube-gallery-left .feature-tile {
    grid-column: auto;
    grid-row: auto;
  }

  .youtube-tile {
    min-height: clamp(260px, 72vw, 420px);
  }

  .gallery figure {
    min-height: clamp(280px, 58vw, 520px);
  }

  .fabric-grid {
    grid-template-columns: repeat(auto-fit, var(--fabric-swatch-size));
  }

  .curved-preview-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sponsor-grid span:nth-child(n + 4) {
    transform: translateY(28px);
  }

  .gallery figure.tall {
    transform: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 66px;
    padding: 12px 14px;
  }

  .brand {
    width: clamp(154px, 36vw, 210px);
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
    grid-column: 3;
  }

  .nav,
  .header-actions {
    position: absolute;
    left: 14px;
    right: 14px;
    display: grid;
    justify-items: start;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0ms linear 180ms;
  }

  .nav {
    top: calc(100% - 4px);
    justify-content: stretch;
    width: auto;
    padding: 14px 16px 8px;
    overflow: visible;
    background: rgba(5, 7, 10, 0.92);
    border: 1px solid rgba(237, 237, 237, 0.12);
    border-bottom: 0;
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
  }

  .header-actions {
    top: calc(100% + 226px);
    padding: 0 16px 14px;
    background: rgba(5, 7, 10, 0.92);
    border: 1px solid rgba(237, 237, 237, 0.12);
    border-top: 0;
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
  }

  .site-header.is-menu-closed .nav,
  .site-header.is-menu-closed .header-actions,
  .site-header.is-mobile-menu:not(.is-menu-open) .nav,
  .site-header.is-mobile-menu:not(.is-menu-open) .header-actions {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-8px) scaleY(0.98) !important;
    clip-path: inset(0 0 100% 0);
  }

  .site-header.is-menu-open .nav,
  .site-header.is-menu-open .header-actions,
  .site-header.is-mobile-menu.is-menu-open .nav,
  .site-header.is-mobile-menu.is-menu-open .header-actions {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scaleY(1) !important;
    clip-path: inset(0);
    transition-delay: 0ms;
  }

  .nav a,
  .header-mully,
  .header-cta {
    width: 100%;
    min-height: 42px;
    padding: 0;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.08rem;
    line-height: 1;
  }

  .header-mully {
    padding-left: 2.14em;
  }

  .header-cta {
    min-width: 0;
    border: 0;
    box-shadow: none;
  }

  .feature-copy {
    justify-items: center;
    text-align: center;
  }

  .shape-title {
    width: 100%;
    justify-items: center;
    text-align: center;
    transform: translateX(8px) skewX(var(--headline-skew));
    transform-origin: center;
  }
}

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

  .brand {
    width: 154px;
  }

  .nav {
    grid-column: auto;
    grid-row: auto;
  }

  .nav a {
    font-size: 1.08rem;
  }

  .fabric-grid {
    grid-template-columns: repeat(auto-fit, var(--fabric-swatch-size));
  }

  .story-page {
    padding-top: 106px;
  }

  .story-hero,
  .story-layout {
    width: calc(100% - 28px);
  }

  .story-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .story-card,
  .story-card.tall,
  .story-card.wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .header-cta {
    min-width: 0;
    padding: 0;
  }

  .header-actions {
    gap: 0;
  }

  .header-mully,
  .header-cta {
    font-size: 1.08rem;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 4rem);
    flex-wrap: wrap;
    white-space: normal;
  }

  .hero {
    min-height: clamp(360px, 78vw, 500px);
  }

  .hero-media {
    object-position: 57% center;
  }

  .hero-kit-stack {
    width: 100%;
    transform: translateY(0);
  }

  .hero-kit {
    letter-spacing: 0.74em;
    transform: skewX(var(--headline-skew));
  }

  .frame-caption strong {
    white-space: normal;
  }

  .hero-content {
    left: 14px;
    bottom: clamp(34px, 9vw, 62px);
  }

  .atelier,
  .motion {
    padding-left: 14px;
    padding-right: 14px;
  }

  .atelier {
    min-height: clamp(360px, 82vw, 520px);
    background-position: 72% center;
    background-size: auto 100%;
  }

  .atelier-word {
    font-size: clamp(2rem, 10vw, 3.4rem);
  }

  .atelier-note {
    max-width: 92vw;
    font-size: clamp(0.92rem, 4vw, 1.18rem);
    white-space: normal;
  }

  .cinema-frame {
    aspect-ratio: 3 / 2;
  }

  .frame-caption {
    bottom: clamp(18px, 6vw, 34px);
  }

  .feature-copy {
    padding: clamp(36px, 10vw, 58px) 14px;
    justify-items: center;
    text-align: center;
  }

  .shape-title {
    justify-items: center;
    text-align: center;
    transform-origin: center;
  }

  .pan-photo {
    aspect-ratio: 16 / 10;
  }

  .gallery figure {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .gallery-section {
    padding: 10px;
  }

  .gallery-intro h2 {
    font-size: clamp(1.58rem, 9.4vw, 3.25rem);
  }

  .keep-line {
    white-space: normal;
  }

  .gallery-line:nth-child(2) {
    transform: skewX(var(--headline-skew));
  }

  .configurator-preview-page {
    padding-left: 14px;
    padding-right: 14px;
  }

  .swatch-row {
    grid-template-columns: repeat(5, minmax(24px, 42px));
  }

  .sponsors-section {
    --sponsors-x: 14px;
  }

  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-grid span {
    height: 132px;
  }

  .sponsor-grid span:nth-child(n + 4) {
    transform: none;
  }

  .lightbox {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .lightbox-prev,
  .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}
