:root {
  --ink: #121518;
  --gold: #c6a96b;
  --paper: #f2eee6;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  background: var(--ink);
  scroll-behavior: auto;
}
body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}
button {
  font: inherit;
}
.loader {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  background: #18130f;
  transition:
    opacity 0.45s,
    visibility 0.45s;
}
.loader.ready {
  opacity: 0;
  visibility: hidden;
}
.loader-inner {
  width: min(72vw, 320px);
  text-align: center;
}
.loader-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border: 1px solid #ffffff4d;
  display: grid;
  place-items: center;
  font: 500 1.25rem "Playfair Display";
  color: var(--gold);
}
.loader p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.loader-track {
  height: 1px;
  margin-top: 15px;
  background: #ffffff26;
  overflow: hidden;
}
.loader-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
  transition: width 0.18s;
}
.journey {
  height: 1800vh;
  position: relative;
}
.stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: var(--ink);
}
#film {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  will-change: transform;
}
.wash {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #100b08a8, transparent 49%, #100b0822),
    linear-gradient(0deg, #100b08a6, transparent 42%, #100b0833);
}
.grain {
  position: absolute;
  z-index: 3;
  inset: -40%;
  opacity: 0.055;
  pointer-events: none;
  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='.88' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
  animation: grain 0.22s steps(2) infinite;
}
@keyframes grain {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(-2%, 3%);
  }
  100% {
    transform: translate(3%, -1%);
  }
}
.topbar {
  position: absolute;
  z-index: 6;
  top: 0;
  left: 0;
  right: 0;
  padding: 24px clamp(20px, 4vw, 58px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(#120d09b8, transparent);
  transition: opacity 0.35s;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  line-height: 1.15;
}
.brand small {
  display: block;
  color: var(--gold);
  font-size: 0.69rem;
  letter-spacing: 0.18em;
  margin-top: 4px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid #ffffff59;
  display: grid;
  place-items: center;
  font: 500 1rem "Playfair Display";
  color: var(--gold);
}
.copy {
  position: absolute;
  z-index: 5;
  left: clamp(25px, 7vw, 105px);
  bottom: clamp(75px, 13vh, 130px);
  max-width: min(760px, 78vw);
  text-shadow: 0 3px 28px #000c;
  transition:
    opacity 0.32s,
    transform 0.32s,
    filter 0.32s;
}
.copy.swap {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(8px);
}
.eyebrow {
  margin: 0 0 15px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow:before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 0 11px 3px 0;
}
h1,
.end-reveal h2,
.final-card h2 {
  font: 500 clamp(3.6rem, 8vw, 7.6rem)/0.89 "Playfair Display";
  letter-spacing: -0.052em;
  margin: 0;
}
h1 i,
.end-reveal h2 i {
  font-weight: 500;
}
.subline {
  font: 300 clamp(1rem, 1.5vw, 1.2rem)/1.5 "DM Sans";
  margin: 24px 0 0;
  letter-spacing: 0.02em;
}
.progress {
  position: absolute;
  z-index: 6;
  right: clamp(14px, 3vw, 40px);
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  justify-items: center;
  gap: 12px;
}
.counter {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}
.counter.muted {
  opacity: 0.48;
}
.dots {
  display: grid;
  gap: 8px;
}
.dots i {
  display: block;
  width: 2px;
  height: 10px;
  background: #ffffff48;
  border-radius: 3px;
  transition:
    height 0.25s,
    background 0.25s;
}
.dots i.active {
  height: 30px;
  background: var(--gold);
}
.scroll-note {
  position: absolute;
  z-index: 6;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 13px;
}
.scroll-note:before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}
.end-reveal {
  position: absolute;
  z-index: 7;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  background: radial-gradient(circle at center, #5238178f, #130d09f5 68%);
  opacity: 0;
  pointer-events: none;
}
.end-reveal h2 {
  font-size: clamp(3.6rem, 9vw, 8.2rem);
}
.end-reveal > div > p:last-child {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 25px;
}
.finale {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 90px 24px;
  background:
    linear-gradient(#130d09a8, #130d09f2),
    url("finale.jpg") center/cover;
}
.final-card {
  width: min(960px, 100%);
  padding: clamp(28px, 5vw, 62px);
  background: #160f0bdb;
  border: 1px solid #ffffff33;
  backdrop-filter: blur(18px);
}
.final-card h2 {
  font-size: clamp(3rem, 6vw, 6rem);
}
.property-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #ffffff2b;
  margin: 36px 0;
}
.property-grid div {
  background: #18110eeb;
  padding: 18px;
}
.property-grid span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.62;
}
.property-grid strong {
  display: block;
  margin-top: 7px;
  font-weight: 400;
}
.property-note {
  margin: 30px 0 0;
  font-size: 0.88rem;
  opacity: 0.78;
}
.disclaimer {
  font-size: 0.78rem;
  opacity: 0.55;
}
.replay {
  margin-top: 28px;
  border: 0;
  background: none;
  color: var(--gold);
  padding: 0;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
}
.agent {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid #ffffff2b;
}
.agent span,
.agent small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.62;
}
.agent strong {
  display: block;
  margin: 7px 0 5px;
  font: 500 1.6rem "Playfair Display";
}
.agent-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.agent-links a {
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #c6a96b66;
  padding-bottom: 4px;
}
@media (max-width: 720px) {
  .journey {
    height: 1600vh;
  }
  .topbar {
    padding: 15px 16px;
  }
  .brand {
    font-size: 0.62rem;
    gap: 9px;
  }
  .brand small {
    font-size: 0.54rem;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 0.82rem;
  }
  .copy {
    left: 18px;
    right: 48px;
    bottom: 72px;
    max-width: 78vw;
  }
  .copy .eyebrow {
    margin-bottom: 10px;
    font-size: 0.58rem;
    letter-spacing: 0.17em;
  }
  .copy .eyebrow:before {
    width: 22px;
    margin-right: 8px;
  }
  h1 {
    font-size: clamp(2.15rem, 10.5vw, 3.25rem);
    line-height: 0.94;
    letter-spacing: -0.045em;
  }
  .subline {
    max-width: 18rem;
    margin-top: 14px;
    font-size: 0.8rem;
    line-height: 1.4;
  }
  .progress {
    right: 9px;
  }
  .counter {
    font-size: 0.56rem;
  }
  .dots {
    gap: 6px;
  }
  .dots i.active {
    height: 21px;
  }
  .scroll-note {
    bottom: 18px;
    font-size: 0.54rem;
  }
  .scroll-note:before {
    width: 28px;
  }
  .end-reveal h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }
  .end-reveal > div > p:last-child {
    font-size: 0.68rem;
    line-height: 1.5;
  }
  .wash {
    background: linear-gradient(0deg, #100b08b8, transparent 51%, #100b082d);
  }
  .finale {
    padding: 58px 16px;
  }
  .final-card {
    padding: 25px 19px;
  }
  .final-card h2 {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
  }
  .final-card > .eyebrow {
    font-size: 0.58rem;
  }
  .property-grid {
    grid-template-columns: 1fr 1fr;
    margin: 26px 0;
  }
  .property-grid div {
    padding: 14px 12px;
  }
  .property-grid span {
    font-size: 0.56rem;
  }
  .property-grid strong {
    font-size: 0.86rem;
  }
  .property-note {
    font-size: 0.72rem;
    line-height: 1.5;
  }
  .disclaimer {
    font-size: 0.68rem;
    line-height: 1.45;
  }
  .replay {
    margin-top: 24px;
    font-size: 0.62rem;
  }
  .agent {
    display: block;
    margin-top: 27px;
    padding-top: 20px;
  }
  .agent strong {
    font-size: 1.35rem;
  }
  .agent small {
    font-size: 0.55rem;
    line-height: 1.5;
  }
  .agent-links {
    justify-content: flex-start;
    margin-top: 17px;
    gap: 14px;
  }
  .agent-links a {
    font-size: 0.62rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .grain {
    animation: none;
  }
  .copy,
  .dots i {
    transition: none;
  }
  .journey {
    height: 1200vh;
  }
}
