@font-face {
  font-family: Manrope;
  src: url('/assets/Manrope-Light.ttf') format('truetype');
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --black: #0a0b0c;
  --white: #f2f3f4;
}

*, *::before, *::after { box-sizing: border-box; }
html { background: var(--black); }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Manrope, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--black) url('/assets/architecture-clean-2x.webp') center center / cover no-repeat;
}

.scene::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 11, 12, .27) 0%, rgba(10, 11, 12, .11) 31%, transparent 60%);
}

.light-spill {
  position: absolute;
  z-index: 1;
  width: 27vw;
  height: 58vh;
  border-radius: 50%;
  filter: blur(48px);
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: opacity, transform;
}

.light-spill-one {
  top: 21%;
  left: 51%;
  background: radial-gradient(ellipse, rgba(231, 227, 215, .14), rgba(165, 178, 191, .04) 43%, transparent 70%);
  animation: ambient-one 16s ease-in-out infinite alternate;
}

.light-spill-two {
  top: 15%;
  left: 69%;
  background: radial-gradient(ellipse, rgba(224, 229, 231, .12), rgba(152, 164, 177, .04) 47%, transparent 73%);
  animation: ambient-two 21s ease-in-out infinite alternate;
}

.brand-header {
  position: absolute;
  z-index: 2;
  top: clamp(29px, 5.3vh, 55px);
  left: clamp(25px, 3.6vw, 70px);
  line-height: 0;
}

.brand-header img { display: block; width: clamp(90px, 6.25vw, 118px); height: auto; }

.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0 clamp(25px, 3.6vw, 70px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: -1.2vh;
}

.hero h1 {
  max-width: 69vw;
  margin: 0;
  color: var(--white);
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(42px, 3.35vw, 68px);
  font-weight: 300;
  line-height: 1.19;
  letter-spacing: -.028em;
  text-wrap: balance;
  text-shadow: 0 1px 20px rgba(0, 0, 0, .33);
}

.hero-meta {
  margin: 22px 0 0;
  color: #a8adb2;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: .14em;
}

@keyframes ambient-one {
  0% { opacity: .19; transform: translate3d(-6%, 1%, 0) scale(.95); }
  48% { opacity: .49; transform: translate3d(4%, -3%, 0) scale(1.08); }
  100% { opacity: .23; transform: translate3d(-2%, 4%, 0) scale(.98); }
}

@keyframes ambient-two {
  0% { opacity: .44; transform: translate3d(4%, 0, 0) scale(1.02); }
  55% { opacity: .16; transform: translate3d(-6%, 5%, 0) scale(.93); }
  100% { opacity: .41; transform: translate3d(2%, -2%, 0) scale(1.08); }
}

@media (max-width: 800px) {
  .scene { background-position: 69% center; }
  .scene::after { background: linear-gradient(90deg, rgba(10, 11, 12, .78), rgba(10, 11, 12, .45) 53%, rgba(10, 11, 12, .13)); }
  .light-spill { width: 55vw; top: 25%; }
  .light-spill-one { left: 32%; }
  .light-spill-two { left: 68%; }
  .brand-header { top: 33px; }
  .hero-copy { margin-top: -4vh; }
  .hero h1 {
    max-width: min(570px, 92vw);
    font-size: clamp(39px, 8.5vw, 59px);
    line-height: 1.2;
    letter-spacing: -.037em;
  }
}

@media (max-width: 420px) {
  .brand-header img { width: 94px; }
  .hero h1 { max-width: 310px; font-size: clamp(38px, 10vw, 46px); }
}

@media (prefers-reduced-motion: reduce) {
  .light-spill { animation: none; opacity: .28; }
}
