:root {
  --charcoal: #0b0d0c;
  --charcoal-soft: #121513;
  --ivory: #eee8dd;
  --paper: #dcd2c2;
  --forest: #17382f;
  --gold: #a89168;
  --ink: #171a18;
  --muted-dark: rgba(23, 26, 24, 0.62);
  --muted-light: rgba(238, 232, 221, 0.62);
  --line-dark: rgba(23, 26, 24, 0.16);
  --line-light: rgba(238, 232, 221, 0.16);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --container: min(1240px, calc(100vw - 6rem));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--charcoal);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--charcoal);
  color: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  background: var(--ivory);
  color: var(--ink);
  transform: translateY(-180%);
  transition: transform 200ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1.3rem;
  overflow: hidden;
  background: #080a09;
  transition: opacity 1.1s var(--ease), visibility 1.1s var(--ease);
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__weave {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(238, 232, 221, 0.04) 14px 15px),
    repeating-linear-gradient(0deg, transparent 0 14px, rgba(238, 232, 221, 0.03) 14px 15px);
  animation: weave 1.8s var(--ease) forwards;
}

.loader__logo {
  position: relative;
  width: min(28rem, 72vw);
  opacity: 0;
  transform: translateY(1rem);
  animation: loaderLogo 1.1s 450ms var(--ease) forwards;
}

.loader__caption {
  position: relative;
  color: var(--muted-light);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: loaderLogo 1s 750ms var(--ease) forwards;
}

.page-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 70;
  width: 100%;
  height: 2px;
  background: rgba(238, 232, 221, 0.06);
}

.page-progress__bar {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
}

.chapter-marker {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(238, 232, 221, 0.72);
  mix-blend-mode: difference;
  pointer-events: none;
}

.chapter-marker__number,
.chapter-marker__label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.chapter-marker__line {
  width: 2rem;
  height: 1px;
  background: currentColor;
}

.act {
  position: relative;
}

.kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.act-heading {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(7rem, 12vw, 11rem) 0 clamp(4rem, 7vw, 6rem);
  color: var(--ivory);
}

.act-heading--dark {
  color: var(--ink);
}

.act-heading h2 {
  max-width: 13ch;
  margin: 1.1rem 0 1.4rem;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.87;
}

.act-heading > p:last-child {
  max-width: 38rem;
  margin: 0;
  color: currentColor;
  opacity: 0.68;
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-media {
  clip-path: inset(9% 0 9% 0);
  opacity: 0;
  transform: scale(0.98);
  transition: clip-path 1.3s var(--ease), opacity 1.1s var(--ease), transform 1.3s var(--ease);
}

.reveal-media.is-visible {
  clip-path: inset(0);
  opacity: 1;
  transform: scale(1);
}

/* Opening */
.hero {
  min-height: 100svh;
  overflow: hidden;
  background: #060807;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 2.4s 2.9s ease, transform 8s 2.7s ease;
}

body.is-ready .hero__media {
  opacity: 0.46;
  transform: scale(1.015);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.7) contrast(1.05);
}

.hero__shade {
  background: linear-gradient(90deg, rgba(6, 8, 7, 0.94) 0%, rgba(6, 8, 7, 0.62) 52%, rgba(6, 8, 7, 0.32) 100%);
}

.hero__logo-wrap {
  position: absolute;
  top: 2.1rem;
  left: 3rem;
  z-index: 2;
  opacity: 0;
  transition: opacity 1.2s 5.2s ease;
}

body.is-ready .hero__logo-wrap {
  opacity: 1;
}

.hero__logo-wrap img {
  width: clamp(9rem, 14vw, 13rem);
}

.hero__sequence {
  position: relative;
  z-index: 2;
  width: var(--container);
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero__line {
  position: absolute;
  max-width: 13ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.8rem, 8vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  opacity: 0;
  transform: translateY(1rem);
}

body.is-ready .hero__line--one {
  animation: heroPhrase 1.2s 0.4s var(--ease) forwards, heroExit 1s 2.25s var(--ease) forwards;
}

body.is-ready .hero__line--two {
  animation: heroPhrase 1.2s 2.65s var(--ease) forwards, heroExit 1s 4.55s var(--ease) forwards;
}

body.is-ready .hero__line--three {
  max-width: 15ch;
  animation: heroPhrase 1.2s 4.95s var(--ease) forwards, heroExit 1s 7.1s var(--ease) forwards;
}

body.is-ready .hero__line--four {
  max-width: 10ch;
  font-size: clamp(4.5rem, 10vw, 10rem);
  animation: heroPhrase 1.6s 7.55s var(--ease) forwards;
}

.hero__foot {
  position: absolute;
  inset: auto 3rem 2rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(238, 232, 221, 0.55);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 1s 9s ease;
}

body.is-ready .hero__foot {
  opacity: 1;
}

/* Manifesto */
.manifesto {
  min-height: 115svh;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #151411 url("assets/facility-weaving.webp") center / cover no-repeat;
  color: #f4efe6;
}

.manifesto::before,
.manifesto::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.manifesto::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 8, 0.82) 0%, rgba(8, 9, 8, 0.46) 48%, rgba(8, 9, 8, 0.7) 100%),
    linear-gradient(180deg, rgba(8, 9, 8, 0.2) 0%, rgba(8, 9, 8, 0.7) 100%);
}

.manifesto::after {
  z-index: -1;
  opacity: 0.11;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.manifesto__inner {
  width: var(--container);
  position: relative;
  z-index: 1;
}

.manifesto .kicker {
  color: #c9aa77;
}

.manifesto__line {
  max-width: 14ch;
  margin: 2rem 0 0;
  font-family: var(--display);
  font-size: clamp(3.8rem, 8vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 34px rgba(0, 0, 0, 0.44);
}

.manifesto__line--accent {
  margin-left: auto;
  color: #e7d3ad;
}

/* Story */
.story {
  padding-bottom: 0;
  background: var(--charcoal);
  color: var(--ivory);
}

.story__layout {
  position: relative;
  width: 100%;
  margin: 0;
}

.story__visual {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: #111411;
}

.story__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.04) 0%, rgba(7, 9, 8, 0.12) 48%, rgba(7, 9, 8, 0.72) 100%),
    linear-gradient(180deg, rgba(7, 9, 8, 0.02), rgba(7, 9, 8, 0.22));
  pointer-events: none;
}

.story__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  filter: saturate(0.82) contrast(1.03);
  transition: opacity 1.2s ease, transform 1.8s var(--ease);
}

.story__image.is-active {
  opacity: 1;
  transform: scale(1);
}

.story__visual-caption {
  position: absolute;
  left: 3rem;
  bottom: 2rem;
  z-index: 3;
  color: rgba(238, 232, 221, 0.65);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story__beats {
  position: relative;
  z-index: 4;
  margin-top: -100svh;
  padding-bottom: 0;
}

.story-beat {
  width: var(--container);
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  color: var(--ivory);
  opacity: 0.18;
  transition: opacity 700ms ease;
}

.story-beat.is-active {
  opacity: 1;
}

.story-beat__mobile-media {
  display: none;
}

.story-beat__copy {
  width: min(42rem, 48vw);
  padding: clamp(2.1rem, 3.6vw, 3.75rem);
  border-left: 2px solid rgba(190, 162, 109, 0.9);
  background: linear-gradient(135deg, rgba(8, 10, 9, 0.92), rgba(8, 10, 9, 0.76));
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.story-beat__copy > span {
  color: var(--gold);
  font-size: clamp(0.72rem, 0.75vw, 0.82rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.story-beat__copy h3 {
  max-width: 9ch;
  margin: 1rem 0 1.45rem;
  font-family: var(--display);
  font-size: clamp(4.25rem, 6vw, 7rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.32);
}

.story-beat__copy p {
  width: 100%;
  max-width: 34rem;
  margin: 0;
}

.story-beat__lead {
  color: rgba(248, 244, 236, 0.94);
  font-size: clamp(1.08rem, 1.25vw, 1.32rem);
  line-height: 1.55;
}

.story-beat__detail {
  margin-top: 1.35rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(238, 232, 221, 0.2);
  color: rgba(238, 232, 221, 0.7);
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  line-height: 1.7;
}

/* Facility proof */
.facility-proof {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 10vw, 11rem) 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 4%, rgba(255, 255, 255, 0.58), transparent 32%),
    linear-gradient(145deg, #ded7ca 0%, #cfc5b5 100%);
}

.facility-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 7.8vw, rgba(31, 30, 26, 0.12) 7.85vw);
}

.facility-proof__intro,
.facility-proof__hero,
.facility-proof__grid {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin-inline: auto;
}

.facility-proof__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.82fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.facility-proof__title .kicker {
  color: #796948;
}

.facility-proof__title h2 {
  max-width: 10ch;
  margin: 1.25rem 0 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 7.8vw, 9rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.045em;
}

.facility-proof__title em {
  color: #5f563f;
  font-weight: 400;
}

.facility-proof__statement {
  padding-bottom: 0.25rem;
}

.facility-proof__statement > p:first-child {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.2vw, 2.45rem);
  line-height: 1.12;
}

.facility-proof__statement > p:nth-child(2) {
  max-width: 35rem;
  margin: 1.4rem 0 0;
  color: rgba(27, 28, 25, 0.72);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.7;
}

.facility-proof__capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.25rem;
  border-top: 1px solid rgba(27, 28, 25, 0.32);
}

.facility-proof__capabilities span {
  padding: 0.9rem 0.75rem 0.9rem 0;
  border-bottom: 1px solid rgba(27, 28, 25, 0.22);
  color: rgba(27, 28, 25, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.facility-proof__hero {
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: #24231f;
}

.facility-proof__hero::after,
.facility-proof__card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(8, 9, 8, 0.76) 100%);
}

.facility-proof__hero img,
.facility-proof__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease), filter 1.2s ease;
}

.facility-proof__hero:hover img,
.facility-proof__card:hover img {
  transform: scale(1.025);
  filter: contrast(1.04);
}

.facility-proof__hero figcaption,
.facility-proof__card figcaption {
  position: absolute;
  right: clamp(1.25rem, 2.5vw, 2.5rem);
  bottom: clamp(1.25rem, 2.5vw, 2.5rem);
  left: clamp(1.25rem, 2.5vw, 2.5rem);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--ivory);
}

.facility-proof__hero figcaption span,
.facility-proof__card figcaption span {
  color: rgba(238, 232, 221, 0.68);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.facility-proof__hero figcaption strong {
  max-width: 15ch;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  text-align: right;
}

.facility-proof__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.5vw, 1.5rem);
  margin-top: clamp(0.8rem, 1.5vw, 1.5rem);
}

.facility-proof__card {
  position: relative;
  grid-column: span 5;
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
  background: #24231f;
}

.facility-proof__card--wide {
  grid-column: span 7;
}

.facility-proof__card--full {
  grid-column: 1 / -1;
  aspect-ratio: 2.2 / 1;
}

.facility-proof__card figcaption {
  display: block;
}

.facility-proof__card figcaption strong {
  display: block;
  max-width: 22ch;
  margin-top: 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2.25rem);
  font-weight: 400;
  line-height: 1.05;
}

/* Act III */
.materials {
  padding-bottom: 8rem;
  background: var(--charcoal);
}

.material-spread {
  width: var(--container);
  min-height: 88vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  border-top: 1px solid var(--line-light);
}

.material-spread--image-left {
  grid-template-columns: 0.75fr 1.25fr;
}

.material-spread__media {
  position: relative;
  height: auto;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #161815;
}

.material-spread__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
}

.material-spread__media > span {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.5rem 0.7rem;
  background: rgba(11, 13, 12, 0.7);
  color: var(--ivory);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.material-spread__copy > span {
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.material-spread__copy h3 {
  max-width: 9ch;
  margin: 1.2rem 0 1.4rem;
  font-family: var(--display);
  font-size: clamp(3.6rem, 6vw, 6.8rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.035em;
}

.material-spread__copy p {
  max-width: 30rem;
  margin: 0;
  color: var(--muted-light);
  line-height: 1.8;
}

/* Signature room */
.signature {
  background: #070908;
  color: #f2ede4;
}

.signature__track {
  height: 720vh;
}

.signature__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.signature__heading {
  position: absolute;
  top: clamp(1.5rem, 4vh, 3.25rem);
  left: clamp(1.5rem, 4vw, 4.5rem);
  z-index: 30;
  max-width: 34rem;
  transition: opacity 700ms var(--ease), transform 900ms var(--ease);
}

.signature__heading h2 {
  margin: 0.7rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.1vw, 5rem);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.035em;
  text-shadow: 0 3px 32px rgba(0, 0, 0, 0.3);
}

.signature.is-final .signature__heading,
.signature.is-final .signature__status,
.signature.is-final .signature__materials,
.signature.is-final .signature__rail {
  opacity: 0;
  transform: translateY(-0.75rem);
}

.signature-room {
  --room-progress: 0;
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: #b8ac9a;
}

.signature-room__frames,
.signature-room__frame,
.signature-room__shade,
.signature-room__grain,
.signature-room__edge {
  position: absolute;
  inset: 0;
}

.signature-room__frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  opacity: 0;
  transform: scale(1.025);
  will-change: opacity, transform;
}

.signature-room__frame:first-child {
  opacity: 1;
}

.signature-room__shade {
  z-index: 10;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 7, 6, 0.58) 0%, transparent 31%),
    linear-gradient(0deg, rgba(6, 7, 6, 0.62) 0%, transparent 28%),
    linear-gradient(90deg, rgba(6, 7, 6, 0.12), transparent 38%, rgba(6, 7, 6, 0.06));
  transition: background 900ms var(--ease), opacity 900ms var(--ease);
}

.signature.is-final .signature-room__shade {
  background: rgba(5, 6, 5, 0.53);
}

.signature-room__grain {
  z-index: 11;
  pointer-events: none;
  opacity: 0.13;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.signature-room__edge {
  z-index: 12;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(245, 239, 229, 0.11);
}

.signature__status {
  position: absolute;
  left: clamp(1.5rem, 4vw, 4.5rem);
  bottom: clamp(1.5rem, 4vh, 3.25rem);
  z-index: 30;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: opacity 700ms var(--ease), transform 900ms var(--ease);
}

.signature__status span {
  color: var(--gold);
  padding-top: 0.24rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

.signature__status small {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(244, 239, 230, 0.56);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.signature__status p {
  margin: 0;
  max-width: 34rem;
  color: rgba(248, 244, 236, 0.94);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.55vw, 1.65rem);
  line-height: 1.15;
}

.signature__materials {
  position: absolute;
  right: clamp(2.8rem, 6vw, 6.5rem);
  bottom: clamp(1.7rem, 4.3vh, 3.5rem);
  z-index: 30;
  display: flex;
  gap: 1.4rem;
  color: rgba(248, 244, 236, 0.62);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: opacity 700ms var(--ease), transform 900ms var(--ease);
}

.signature__materials span + span::before {
  content: "/";
  margin-right: 1.4rem;
  color: var(--gold);
}

.signature__rail {
  position: absolute;
  top: 50%;
  right: clamp(1rem, 2vw, 2rem);
  z-index: 30;
  width: 1px;
  height: min(46vh, 26rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(248, 244, 236, 0.24);
  transform: translateY(-50%);
  transition: opacity 700ms var(--ease);
}

.signature__rail > span {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px;
  height: calc(var(--room-progress) * 100%);
  background: var(--gold);
}

.signature__rail i {
  position: relative;
  left: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(248, 244, 236, 0.72);
}

.signature__final-copy {
  position: absolute;
  z-index: 40;
  inset: 0;
  display: grid;
  place-content: center;
  padding: 2rem;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}

.signature__final-copy.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.signature__final-copy p,
.signature__final-copy strong {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7.2vw, 8.5rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.signature__final-copy strong {
  color: #f7f1e6;
}

.signature__final-copy > span {
  margin-top: 2rem;
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* Material library */
.library {
  padding-bottom: clamp(7rem, 12vw, 12rem);
  background: var(--paper);
  color: var(--ink);
}

.library__grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.swatch-card {
  min-height: 34rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background 500ms ease;
}

.swatch-card:hover {
  background: rgba(255, 255, 255, 0.34);
}

.swatch-card > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: rgba(23, 26, 24, 0.06);
  filter: saturate(0.88);
  transition: transform 900ms var(--ease);
}

.swatch-card:hover > img {
  transform: scale(0.97);
}

.swatch-card div {
  padding: 2rem 0.35rem 0.4rem;
}

.swatch-card span {
  color: var(--muted-dark);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.swatch-card h3 {
  margin: 0.7rem 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 0.95;
}

.swatch-card p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.65;
}

.text-link {
  width: var(--container);
  margin: 3rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1rem;
}

/* Operations */
.operations {
  position: relative;
  padding-bottom: clamp(7rem, 10vw, 10rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 5%, rgba(168, 145, 104, 0.12), transparent 30%),
    var(--forest);
}

.operations::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(238, 232, 221, 0.34), transparent);
}

.operations .act-heading {
  position: relative;
  z-index: 1;
}

.operations__gallery {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  columns: 2;
  column-gap: clamp(1rem, 1.8vw, 1.8rem);
}

.operations__image {
  margin: 0 0 clamp(1rem, 1.8vw, 1.8rem);
  break-inside: avoid;
}

.operations__image--wide {
  margin-top: 0;
}

.operations__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: rgba(11, 13, 12, 0.2);
}

.operations__image figcaption {
  padding-top: 0.8rem;
  color: rgba(238, 232, 221, 0.72);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.operations__flow {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 6rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.operations__flow span {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 2.3rem);
}

.operations__flow i {
  flex: 1;
  height: 1px;
  background: rgba(238, 232, 221, 0.24);
}

/* Trust */
.trust {
  padding-bottom: clamp(7rem, 9vw, 9rem);
  background: var(--ivory);
  color: var(--ink);
}

.trust__list {
  width: var(--container);
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
}

.trust-row {
  display: grid;
  grid-template-columns: 4rem 1fr minmax(18rem, 0.65fr);
  gap: 2rem;
  align-items: center;
  min-height: 8.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line-dark);
  transition: min-height 600ms var(--ease), padding 600ms var(--ease), color 400ms ease;
}

.trust-row:hover,
.trust-row:focus {
  min-height: 11rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background: var(--forest);
  color: var(--ivory);
  outline: none;
}

.trust-row > span {
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.trust-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 4rem);
  font-weight: 500;
  line-height: 0.95;
}

.trust-row p {
  margin: 0;
  color: currentColor;
  opacity: 0.62;
  line-height: 1.65;
}

/* Experience centres */
.centres {
  padding-bottom: 10rem;
  background: var(--charcoal-soft);
}

.centre-selector {
  width: var(--container);
  margin: 0 auto 2rem;
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line-light);
}

.centre-selector__button {
  padding: 1rem 1.4rem;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted-light);
  cursor: pointer;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.centre-selector__button.is-active {
  border-bottom-color: var(--gold);
  color: var(--ivory);
}

.centre-panels {
  width: var(--container);
  margin: 0 auto;
}

.centre-panel {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1.5rem;
  animation: panelIn 900ms var(--ease) both;
}

.centre-panel--featured {
  display: block;
}

.centre-panel__facade-spread {
  position: relative;
  left: 50%;
  width: 100vw;
  height: auto;
  min-height: 0;
  margin: 0 0 4rem -50vw;
  overflow: hidden;
  background: #111412;
}

.centre-panel__facade-spread::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(6, 8, 7, 0.76));
  pointer-events: none;
}

.centre-panel__facade-spread img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.centre-panel__facade-spread figcaption {
  position: absolute;
  z-index: 2;
  left: max(1.5rem, calc((100vw - 1240px) / 2));
  right: max(1.5rem, calc((100vw - 1240px) / 2));
  bottom: clamp(2rem, 6vw, 5rem);
}

.centre-panel__facade-spread figcaption span {
  color: rgba(238, 232, 221, 0.68);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.centre-panel__facade-spread figcaption h3 {
  max-width: 10ch;
  margin: 0.8rem 0 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 7rem);
  font-weight: 500;
  line-height: 0.88;
}

.centre-panel__content {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1.5rem;
}

.centre-panel__plan {
  min-height: 40rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  color: var(--ink);
}

.centre-panel__plan > span {
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.centre-panel__plan > p {
  margin: auto 0 0;
  color: var(--muted-dark);
  line-height: 1.7;
}

.floorplan {
  position: relative;
  flex: 1;
  margin: 2rem 0;
  border: 1px solid var(--line-dark);
}

.floorplan__room {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  color: var(--muted-dark);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 400ms ease, color 400ms ease;
}

.floorplan__room:hover {
  background: var(--forest);
  color: var(--ivory);
}

.floorplan__room--one { inset: 5% 52% 48% 5%; }
.floorplan__room--two { inset: 5% 5% 48% 48%; }
.floorplan__room--three { inset: 52% 60% 5% 5%; }
.floorplan__room--four { inset: 52% 5% 5% 40%; }

.centre-panel__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.centre-panel__gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #090b0a;
}

.centre-panel__gallery img:first-child {
  grid-column: 1 / -1;
  max-height: 68vh;
}

.centre-panel__gallery--two {
  grid-template-columns: 1.25fr 0.75fr;
}

.centre-panel__gallery--hyderabad img:first-child {
  grid-column: auto;
  max-height: none;
}

.centre-panel__gallery--two img:first-child {
  grid-column: auto;
  max-height: none;
}

/* Applications */
.applications {
  padding-bottom: 12rem;
  background: var(--paper);
  color: var(--ink);
}

.applications__stack {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 8rem;
}

.application-frame {
  width: 86%;
  margin: 0;
}

.application-frame--offset {
  margin-left: auto;
}

.application-frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.86);
}

.application-frame figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  color: var(--muted-dark);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* People */
.people {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  background: var(--forest);
}

.people__image {
  min-height: 100svh;
  padding: 2rem 0 2rem 2rem;
}

.people__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.people__copy {
  padding: clamp(3rem, 7vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.people__copy h2 {
  margin: 1.2rem 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(3.4rem, 6vw, 6.8rem);
  font-weight: 500;
  line-height: 0.9;
}

.people__copy > p:last-child {
  margin: 0;
  color: var(--muted-light);
  line-height: 1.8;
}

/* Closing */
.closing {
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: #060807;
  text-align: center;
}

.closing__inner {
  width: var(--container);
  display: grid;
  justify-items: center;
}

.closing h2 {
  margin: 1.4rem 0 3rem;
  font-family: var(--display);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.82;
}

.closing__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.button {
  min-width: 12rem;
  padding: 0.95rem 1.4rem;
  border: 1px solid rgba(238, 232, 221, 0.3);
  color: var(--ivory);
  font-size: 0.62rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition: background 350ms ease, color 350ms ease;
}

.button:hover,
.button:focus,
.button--light {
  background: var(--ivory);
  color: var(--ink);
}

.closing__logo {
  width: min(18rem, 60vw);
  margin-top: 5rem;
}

@keyframes weave {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes loaderLogo {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroPhrase {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroExit {
  to { opacity: 0; transform: translateY(-1rem); }
}

@keyframes panelIn {
  from { opacity: 0; transform: translateX(1.5rem); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1000px) {
  :root {
    --container: min(100vw - 3rem, 100%);
  }

  .story__layout,
  .material-spread,
  .material-spread--image-left,
  .centre-panel,
  .centre-panel__content,
  .people {
    grid-template-columns: 1fr;
  }

  .story__visual {
    position: sticky;
    top: 0;
    height: 100svh;
  }

  .story-beat {
    min-height: 100svh;
  }

  .story-beat__copy {
    width: min(38rem, 58vw);
  }

  .facility-proof__intro {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .facility-proof__title h2 {
    max-width: 11ch;
  }

  .facility-proof__statement {
    max-width: 40rem;
  }

  .facility-proof__card,
  .facility-proof__card--wide {
    grid-column: span 6;
  }

  .material-spread {
    padding: 5rem 0;
  }

  .material-spread--image-left .material-spread__media {
    order: 2;
  }

  .material-spread__media {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .signature__materials {
    max-width: 24rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

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

  .trust-row {
    grid-template-columns: 3rem 1fr;
  }

  .trust-row p {
    grid-column: 2;
  }

  .centre-panel__plan {
    min-height: 32rem;
  }

  .centre-panel__facade-spread {
    height: auto;
    min-height: 0;
  }

  .people__image {
    min-height: 62vh;
    padding: 1.5rem 1.5rem 0;
  }
}

@media (max-width: 700px) {
  :root {
    --container: min(100vw - 1.5rem, 100%);
  }

  .chapter-marker {
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .chapter-marker__label,
  .chapter-marker__line {
    display: none;
  }

  .hero__logo-wrap {
    top: 1.25rem;
    left: 1rem;
  }

  .hero__logo-wrap img {
    width: 9rem;
  }

  .hero__sequence {
    padding: 0 1.1rem 6.25rem;
    justify-content: flex-end;
  }

  .hero__line {
    max-width: 11ch;
    font-size: clamp(2.8rem, 13vw, 4.1rem);
    line-height: 0.94;
  }

  .hero__line--four {
    font-size: clamp(3.2rem, 14vw, 4.6rem) !important;
  }

  .hero__media img {
    object-position: 68% center;
  }

  .hero__foot {
    inset: auto 1rem 1rem;
  }

  .hero__foot span:first-child {
    display: none;
  }

  .manifesto {
    min-height: 100svh;
    place-items: end start;
    padding: 5.5rem 0 4.5rem;
    background-position: 58% center;
  }

  .manifesto::before {
    background:
      linear-gradient(180deg, rgba(8, 9, 8, 0.32) 0%, rgba(8, 9, 8, 0.9) 76%),
      linear-gradient(90deg, rgba(8, 9, 8, 0.74), rgba(8, 9, 8, 0.2));
  }

  .manifesto__inner {
    padding-inline: 0.35rem;
  }

  .manifesto__line {
    max-width: 11ch;
    margin-top: 1.35rem;
    font-size: clamp(2.9rem, 12.5vw, 4.25rem);
    line-height: 0.94;
  }

  .manifesto__line--accent {
    margin-left: 0;
  }

  .act-heading {
    padding: 5.5rem 0 3.5rem;
  }

  .act-heading h2 {
    max-width: 11ch;
    font-size: clamp(3rem, 13.5vw, 4.35rem);
    line-height: 0.92;
  }

  .act-heading > p:last-child {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .story {
    padding-bottom: 0;
  }

  .story__visual {
    display: none;
  }

  .story__beats {
    margin-top: 0;
  }

  .story-beat {
    width: 100%;
    min-height: auto;
    padding: 0 0 4.5rem;
    display: block;
    opacity: 1;
  }

  .story-beat__mobile-media {
    width: 100%;
    margin: 0;
    display: block;
    overflow: hidden;
    background: #111411;
  }

  .story-beat__mobile-media img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .story-beat__copy {
    width: 100%;
    padding: 2rem 1.25rem 0;
    border-left: 0;
    border-top: 1px solid rgba(190, 162, 109, 0.82);
    background: var(--charcoal);
    box-shadow: none;
    backdrop-filter: none;
  }

  .story-beat__copy h3 {
    margin: 0.8rem 0 1.1rem;
    font-size: clamp(3.1rem, 13vw, 4.4rem);
  }

  .story-beat__lead {
    font-size: 1rem;
  }

  .story-beat__detail {
    margin-top: 1rem !important;
    padding-top: 0.9rem;
    font-size: 0.88rem;
  }

  .facility-proof {
    padding: 6rem 0;
  }

  .facility-proof__intro {
    gap: 2.25rem;
    margin-bottom: 3rem;
  }

  .facility-proof__title h2 {
    font-size: clamp(3.6rem, 16vw, 5.4rem);
  }

  .facility-proof__capabilities {
    grid-template-columns: 1fr;
  }

  .facility-proof__hero {
    aspect-ratio: auto;
    overflow: visible;
  }

  .facility-proof__hero figcaption,
  .facility-proof__card figcaption {
    position: relative;
    inset: auto;
    display: block;
    padding: 1rem 0 2.5rem;
    color: var(--ink);
  }

  .facility-proof__hero::after,
  .facility-proof__card::after {
    display: none;
  }

  .facility-proof__hero img,
  .facility-proof__card img {
    height: auto;
    object-fit: contain;
  }

  .facility-proof__hero figcaption span,
  .facility-proof__card figcaption span {
    color: rgba(23, 26, 24, 0.58);
  }

  .facility-proof__hero figcaption strong {
    display: block;
    margin-top: 0.6rem;
    text-align: left;
  }

  .facility-proof__card,
  .facility-proof__card--wide {
    grid-column: 1 / -1;
    aspect-ratio: auto;
    overflow: visible;
    background: transparent;
  }

  .facility-proof__card--full {
    aspect-ratio: auto;
  }

  .material-spread {
    min-height: auto;
  }

  .material-spread__media {
    height: auto;
  }

  .signature__track {
    height: 620vh;
  }

  .signature__heading {
    top: 1.1rem;
    right: 2.2rem;
    left: 1.1rem;
  }

  .signature__heading h2 {
    margin-top: 0.55rem;
    max-width: 9ch;
    font-size: clamp(2rem, 8.5vw, 2.9rem);
  }

  .signature-room__frame {
    object-position: 64% center;
  }

  .signature-room__frame[data-room-frame="0"],
  .signature-room__frame[data-room-frame="1"],
  .signature-room__frame[data-room-frame="2"] {
    object-position: 58% center;
  }

  .signature-room__shade {
    background:
      linear-gradient(180deg, rgba(6, 7, 6, 0.62) 0%, transparent 29%),
      linear-gradient(0deg, rgba(6, 7, 6, 0.86) 0%, transparent 45%);
  }

  .signature__status {
    left: 1.1rem;
    right: 2.15rem;
    bottom: 1.1rem;
    gap: 0.85rem;
    padding: 1rem 1rem 1rem 0;
    border-top: 1px solid rgba(238, 232, 221, 0.26);
  }

  .signature__status p {
    max-width: 24rem;
    font-size: clamp(1.05rem, 4.7vw, 1.35rem);
  }

  .signature__materials {
    display: none;
  }

  .signature__rail {
    right: 0.85rem;
    height: 40vh;
  }

  .signature__final-copy p,
  .signature__final-copy strong {
    font-size: clamp(2.9rem, 13vw, 4.4rem);
    line-height: 0.93;
  }

  .signature__final-copy > span {
    margin-top: 1.4rem;
    font-size: 0.54rem;
  }

  .library__grid {
    grid-template-columns: 1fr;
  }

  .swatch-card {
    min-height: 30rem;
  }

  .operations__gallery,
  .centre-panel__gallery,
  .centre-panel__gallery--two {
    grid-template-columns: 1fr;
  }

  .operations__gallery {
    columns: 1;
  }

  .operations__image,
  .operations__image--wide {
    margin-top: 1rem;
  }

  .operations__image img,
  .operations__image--wide img {
    height: auto;
  }

  .operations__flow {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 3.5rem;
  }

  .operations__flow i {
    width: 1px;
    height: 1.6rem;
    flex: none;
  }

  .trust-row {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
    min-height: auto;
    padding: 1.65rem 0;
  }

  .trust-row:hover,
  .trust-row:focus {
    min-height: auto;
    padding: 1.65rem 0;
    background: transparent;
    color: var(--ink);
  }

  .trust-row h3 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .trust-row p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .centre-panel__gallery img,
  .centre-panel__gallery img:first-child,
  .centre-panel__gallery--two img {
    grid-row: auto;
    grid-column: auto;
    height: auto;
    max-height: none;
  }

  .centre-panel__facade-spread {
    height: auto;
    min-height: 0;
    margin-bottom: 2rem;
  }

  .application-frame {
    width: 100%;
  }

  .application-frame figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .people__image {
    min-height: 52vh;
    padding: 1rem 1rem 0;
  }

  .people__copy {
    padding: 5rem 1.25rem;
  }

  .closing__actions {
    width: 100%;
    flex-direction: column;
  }

  .closing__inner {
    padding: 5rem 0;
  }

  .closing h2 {
    margin: 1.25rem 0 2.5rem;
    font-size: clamp(3.2rem, 14vw, 4.8rem);
    line-height: 0.9;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__line--one,
  .hero__line--two,
  .hero__line--three {
    display: none;
  }

  .hero__line--four,
  .hero__media,
  .hero__logo-wrap,
  .hero__foot {
    opacity: 1 !important;
    transform: none !important;
  }
}
