@font-face {
  font-family: "Heading Now 31-38";
  src: url("fonts/HeadingNow31-38-Bold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

@font-face {
  font-family: "Buongiorno Rastellino";
  src: url("fonts/BuongiornoRastellino-Regular.woff2") format("woff2");
  font-display: swap;
  font-style: italic;
  font-weight: 400;
}

:root {
  color-scheme: dark;
  --ink: #f8f3ea;
  --muted: rgba(248, 243, 234, 0.74);
  --line: rgba(248, 243, 234, 0.18);
  --night: #080807;
  --gold: #d8b46f;
  --stone: #e3d4be;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-hero-title: "Heading Now 31-38", "Arial Narrow", Impact, sans-serif;
  --font-hero-script: "Buongiorno Rastellino", "Brush Script MT", "Segoe Script", cursive;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

html {
  scroll-behavior: auto;
  background: var(--night);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: var(--font-body);
  letter-spacing: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 180, 111, 0.16), transparent 34rem),
    linear-gradient(180deg, #0b0a08 0%, #15120d 46%, #090807 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: calc(env(safe-area-inset-top) + 1rem) clamp(1rem, 4vw, 2.5rem) 1rem;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.44), transparent);
  pointer-events: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  pointer-events: auto;
}

.brand-logo {
  width: clamp(6.5rem, 14vw, 10rem);
  height: auto;
  object-fit: contain;
}

main {
  position: relative;
  z-index: 1;
}

.story-sitemap {
  position: fixed;
  top: 50%;
  right: clamp(0.85rem, 2.4vw, 2rem);
  z-index: 12;
  display: grid;
  gap: 0.52rem;
  transform: translateY(-50%);
}

.story-sitemap-item {
  display: grid;
  grid-template-columns: minmax(8rem, 14rem) 2.8rem;
  align-items: center;
  gap: 0.7rem;
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(248, 243, 234, 0.58);
  cursor: pointer;
  text-align: right;
  transition: color 180ms ease;
}

.story-sitemap-label {
  justify-self: end;
  max-width: 100%;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-shadow: 0 0.45rem 1.3rem rgba(0, 0, 0, 0.48);
}

.story-sitemap-bar {
  justify-self: end;
  width: 1.25rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(248, 243, 234, 0.5);
  box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.28);
  transition:
    width 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease;
}

.story-sitemap-item:hover,
.story-sitemap-item:focus-visible {
  color: rgba(248, 243, 234, 0.9);
}

.story-sitemap-item:hover .story-sitemap-bar,
.story-sitemap-item:focus-visible .story-sitemap-bar {
  width: 2rem;
  background: rgba(248, 243, 234, 0.86);
}

.story-sitemap-item.is-active {
  color: var(--gold);
}

.story-sitemap-item.is-active .story-sitemap-bar {
  width: 2.8rem;
  background: var(--gold);
  opacity: 1;
}

.story-sitemap-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 0.24rem;
}

.drone-scroll-hero {
  position: relative;
  min-height: 600vh;
  background: #050505;
}

.drone-scroll-hero__sticky {
  position: sticky;
  top: 0;
  z-index: 0;
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.28), rgba(8, 8, 7, 0.72)),
    #070706;
  contain: paint layout;
}

.drone-scroll-hero__video,
.drone-scroll-hero__overlay,
.grain {
  grid-area: 1 / 1;
}

.drone-scroll-hero__video {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: translateZ(0);
  transition: opacity 500ms ease;
  background: #050505;
}

.drone-scroll-hero__video.is-active.is-ready {
  opacity: 1;
}

.drone-scroll-hero__overlay {
  position: relative;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.03) 38%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.04) 48%, rgba(0, 0, 0, 0.2) 100%);
}

.grain {
  position: relative;
  z-index: 2;
  opacity: 0.06;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

.story-panel-stack {
  position: relative;
  z-index: 3;
  margin-top: -100vh;
  margin-top: -100dvh;
}

.story-panel-stack::after {
  content: "";
  display: block;
  height: 100vh;
  height: 100dvh;
}

.story-panel {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  align-content: start;
  justify-items: start;
  max-width: 54rem;
  padding: calc(env(safe-area-inset-top) + 7.2rem) clamp(8rem, 24vw, 18rem)
    calc(env(safe-area-inset-bottom) + 2.5rem) clamp(1.1rem, 5vw, 4rem);
  pointer-events: none;
}

.story-panel-copy {
  opacity: 0;
  transform: translate3d(0, 1.1rem, 0);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
  will-change: opacity, transform;
}

.story-panel.is-active .story-panel-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.story-panel-feature {
  max-width: none;
  justify-items: stretch;
  padding-top: calc(env(safe-area-inset-top) + clamp(6rem, 8vw, 7.6rem));
  padding-inline: clamp(1rem, 2vw, 1.6rem) clamp(10rem, 18vw, 18rem);
}

.story-panel-feature-copy {
  display: grid;
  justify-items: center;
  width: 100%;
  color: #fff;
  text-align: center;
}

.story-title-lockup {
  display: inline-flex;
  align-items: start;
  gap: clamp(0.12rem, 0.45vw, 0.46rem);
  justify-self: center;
  max-width: min(100%, 98rem);
}

.story-location-label {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-hero-title);
  font-size: clamp(1.18rem, 2.25vw, 2.35rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.78;
  text-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.22);
  text-transform: uppercase;
  transform: rotate(180deg);
  transform-origin: center;
  writing-mode: vertical-rl;
}

.story-feature-title {
  min-width: 0;
  max-width: min(100%, 96rem);
  margin: 0;
  color: #fff;
  font-family: var(--font-hero-title);
  font-size: clamp(3rem, 10.7vw, 10.6rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.78;
  text-transform: uppercase;
  text-shadow: 0 0.85rem 2.5rem rgba(0, 0, 0, 0.2);
  text-wrap: balance;
}

.story-title-line {
  display: inline;
}

.story-title-divider {
  display: block;
  width: min(40rem, 48vw);
  height: 2px;
  margin: clamp(1.4rem, 3.8vw, 3.2rem) 0 clamp(1rem, 2.6vw, 2.3rem);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0.5rem 1.8rem rgba(0, 0, 0, 0.25);
}

.story-subtitle {
  max-width: 32rem;
  margin: -0.15rem 0 0;
  color: var(--stone);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5.6vw, 2.6rem);
  line-height: 1.05;
}

.story-feature-subtitle {
  max-width: min(100%, 58rem);
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-hero-script);
  font-size: clamp(2rem, 6.1vw, 5.2rem);
  font-style: italic;
  font-weight: 400;
  font-synthesis: none;
  line-height: 0.95;
  text-shadow: 0 0.65rem 2rem rgba(0, 0, 0, 0.32);
}

.story-panel:not(.story-panel-feature) h2 {
  max-width: 11ch;
  margin: 0;
  color: #fff;
  text-shadow: 0 0.85rem 2.4rem rgba(0, 0, 0, 0.46);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  max-width: 11ch;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 11vw, 5.6rem);
  line-height: 0.93;
}

h3 {
  margin-bottom: 0.7rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

p {
  max-width: 38rem;
  color: var(--muted);
  font-size: clamp(1rem, 3.7vw, 1.2rem);
  line-height: 1.65;
}

.content-band,
.investment-panel,
.closing-scene {
  position: relative;
  z-index: 2;
  background: rgba(8, 8, 7, 0.94);
}

.content-band {
  padding: 5.5rem clamp(1.1rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

.content-band > h2,
.investment-panel h2,
.closing-scene h2 {
  max-width: 13ch;
}

.content-band > p {
  max-width: 48rem;
}

.investment-panel {
  display: grid;
  gap: 2rem;
  padding: 5rem clamp(1.1rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(216, 180, 111, 0.11), transparent 42%),
    rgba(8, 8, 7, 0.96);
}

.investment-panel p {
  font-size: 0.98rem;
}

@media (min-width: 700px) {
  .investment-panel,
  .closing-scene {
    grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.8fr);
    align-items: end;
  }
}

@media (min-width: 1040px) {
  .drone-scroll-hero__video {
    object-position: center 48%;
  }

  .story-panel {
    padding-left: 6vw;
  }

  .story-panel-feature {
    padding-left: 1.4vw;
  }

  .content-band,
  .investment-panel,
  .closing-scene {
    padding-inline: 6vw;
  }
}

@media (max-width: 699px) {
  .site-header {
    padding: calc(env(safe-area-inset-top) + 0.45rem) 0.45rem 0.75rem;
  }

  .brand-logo {
    width: clamp(4.8rem, 22vw, 6rem);
  }

  .story-sitemap {
    right: max(0.52rem, env(safe-area-inset-right));
    gap: 0.34rem;
  }

  .story-sitemap-item {
    grid-template-columns: minmax(0, 5.8rem) 1.9rem;
    gap: 0.4rem;
  }

  .story-sitemap-label {
    font-size: 0.5rem;
    letter-spacing: 0.04em;
    line-height: 1.15;
  }

  .story-sitemap-bar {
    width: 0.85rem;
  }

  .story-sitemap-item:hover .story-sitemap-bar,
  .story-sitemap-item:focus-visible .story-sitemap-bar {
    width: 1.35rem;
  }

  .story-sitemap-item.is-active .story-sitemap-bar {
    width: 1.9rem;
  }

  .drone-scroll-hero__video {
    object-position: center;
  }

  .grain {
    display: none;
  }

  .story-panel {
    padding:
      calc(env(safe-area-inset-top) + 6.25rem) clamp(7.8rem, 31vw, 9rem)
      calc(env(safe-area-inset-bottom) + 2.2rem) clamp(0.85rem, 3.8vw, 1.4rem);
  }

  .story-panel-feature {
    --mobile-title-size: clamp(1.65rem, 9.6vw, 2.6rem);
    --mobile-title-line-height: 0.8;

    padding-top: calc(env(safe-area-inset-top) + 6.25rem);
    padding-right: clamp(6.9rem, 29vw, 8.4rem);
  }

  .story-title-lockup {
    align-items: start;
    gap: 0.04rem;
    max-width: 100%;
  }

  .story-location-label {
    align-self: start;
    height: calc(var(--mobile-title-size) * var(--mobile-title-line-height));
    overflow: hidden;
    font-size: calc(var(--mobile-title-size) * 0.2);
    line-height: 1;
  }

  .story-feature-title {
    font-size: var(--mobile-title-size);
    line-height: var(--mobile-title-line-height);
    text-align: center;
  }

  .story-title-line {
    display: block;
  }

  .story-title-line-primary {
    white-space: nowrap;
  }

  .story-title-divider {
    width: min(13rem, 54vw);
    margin-block: 1.35rem 0.9rem;
  }

  .story-feature-subtitle {
    max-width: 100%;
    font-size: clamp(1.35rem, 6vw, 2.55rem);
  }

  .story-panel:not(.story-panel-feature) h2 {
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }
}

@media (max-width: 410px) {
  .brand-logo {
    width: clamp(4.65rem, 23vw, 5.7rem);
  }

  .story-sitemap {
    right: max(0.44rem, env(safe-area-inset-right));
  }

  .story-sitemap-item {
    grid-template-columns: minmax(0, 5rem) 1.7rem;
  }

  .story-panel {
    padding-right: clamp(6.9rem, 30vw, 8rem);
  }

  .story-panel-feature {
    --mobile-title-size: clamp(1.6rem, 9.4vw, 2.45rem);

    padding-top: calc(env(safe-area-inset-top) + 6.15rem);
  }
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 2.5rem clamp(1.1rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 4, 0.98);
}

.site-footer__kicker {
  margin: 0 0 0.6rem;
  color: rgba(248, 243, 234, 0.36);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer p {
  max-width: 64rem;
  margin: 0 0 0.5rem;
  color: rgba(248, 243, 234, 0.3);
  font-size: 0.72rem;
  line-height: 1.6;
}

.site-footer p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1040px) {
  .site-footer {
    padding-inline: 6vw;
  }
}

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

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

  .story-panel-copy {
    transform: none !important;
  }
}
