@font-face {
  font-family: Manrope;
  src: url("../fonts/manrope-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url("../fonts/manrope-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url("../fonts/manrope-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url("../fonts/manrope-semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url("../fonts/manrope-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --bg: #07080a;
  --bg-raised: #0c0d10;
  --surface: #111318;
  --border: rgba(255, 255, 255, .075);
  --border-md: rgba(255, 255, 255, .14);
  --gold: #c3a261;
  --gold-dim: rgba(195, 162, 97, .18);
  --gold-line: rgba(195, 162, 97, .42);
  --text: #f3f0e9;
  --text-2: #b7b2a7;
  --text-3: #777065;
  --font: Manrope, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
}

a {
  color: inherit;
}

em {
  color: var(--gold);
  font-style: normal;
}

#cvs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .65;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

.section-wrap {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  overflow: visible;
}

.section-pad {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding: 5.5rem 1rem 2rem;
}

.s-label,
.ph-label {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
}

.s-label,
.ph-label,
.cta-label {
  color: var(--gold);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.s-label::before,
.ph-label::before {
  content: "";
  width: 32px;
  height: 1px;
  flex-shrink: 0;
  background: var(--gold-line);
}

.s-title,
.ph-title,
.cta-title {
  font-size: clamp(2rem, 10vw, 3.1rem);
  font-weight: 300;
  line-height: 1.06;
}

.btn-outline {
  padding: .78rem 1.35rem;
  border: 1px solid var(--border-md);
  color: var(--text);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .3s;
}

.btn-outline:hover {
  border-color: var(--gold-line);
  color: var(--gold);
}

.btn-text,
.link-subtle,
.fbtn,
.filter-label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-text {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--text-2);
  transition: color .3s;
}

.btn-text svg,
.link-subtle svg {
  transition: transform .3s;
}

.btn-text:hover,
.link-subtle:hover {
  color: var(--gold);
}

.btn-text:hover svg,
.link-subtle:hover svg {
  transform: translateX(4px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollDrop {
  0% {
    top: -50%;
  }

  100% {
    top: 150%;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
