@font-face {
  font-family: 'Inter';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('assets/fonts/inter-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('assets/fonts/inter-medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('assets/fonts/inter-bold.woff2') format('woff2');
}
@font-face {
  font-family: 'ABCWalterNeue';
  src: url('assets/fonts/ABCWalterNeue-Regular.woff2') format('woff2'),
       url('assets/fonts/ABCWalterNeue-Regular.woff') format('woff'),
       url('assets/fonts/ABCWalterNeue-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #fff;
  background-color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
}

.holding-panel,
.holding-content {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

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

a { color: inherit; }

button {
  font-family: inherit;
  cursor: pointer;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

main { display: block; }

/* ─────────────────────────────────────────────────────────
   Top panel — full-bleed photo, logo center, tagline bottom
   ───────────────────────────────────────────────────────── */
.holding-panel {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  background-color: #000;
  overflow: hidden;
  display: flex;
}

.holding-panel__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.holding-panel__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.holding-panel__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: clamp(40px, 6vh, 80px) 24px clamp(40px, 5vh, 60px);
  text-align: center;
  width: 100%;
}

.holding-panel__logo-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.holding-panel__logo {
  width: 100%;
  max-width: min(800px, 78vw);
  height: auto;
}

.holding-panel__tagline {
  margin: 0;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  /* ~14px @ 360w → ~32px @ 1920w */
  font-size: clamp(0.875rem, 0.5rem + 1.2vw, 2rem);
  letter-spacing: 0.45em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .holding-panel__logo {
    max-width: 75vw;
  }
  .holding-panel__tagline {
    letter-spacing: 0.36em;
  }
}

/* ─────────────────────────────────────────────────────────
   Bottom panel — text top-left, form bottom-left
   Font size scales with viewport so the body copy stays
   on the same 6 lines across desktop and mobile.
   ───────────────────────────────────────────────────────── */
.holding-content {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding-block: clamp(64px, 14vh, 160px) clamp(40px, 8vh, 96px);
  padding-inline: clamp(24px, 7vw, 120px);
  text-align: left;
}

.holding-content__text {
  width: 100%;
}

.holding-content__text p {
  margin: 0;
  font-family: 'ABCWalterNeue', 'Inter', sans-serif;
  font-weight: 400;
  /* Scales linearly: ~30px @ 360vw → ~80px @ 1440vw, capped */
  font-size: clamp(1.875rem, 1rem + 3.6vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: #fff;
  /* Width in em scales with font-size, so word-breaks track the design */
  max-width: 11.5em;
}

.holding-content__bottom {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 5vh, 60px);
  align-items: flex-start;
  width: 100%;
}

.holding-content__form-wrapper {
  width: 100%;
  max-width: clamp(320px, 42vw, 560px);
}

.holding-content__form {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  height: clamp(56px, 7vh, 72px);
}

.holding-content__email-input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 20px;
  height: 100%;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.1vw, 1.0625rem);
  color: #000;
  background: transparent;
}

.holding-content__email-input::placeholder { color: #707070; }

.holding-content__email-input:focus-visible {
  outline: 2px solid #000;
  outline-offset: -2px;
}

.holding-content__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 100%;
  border: 0;
  background: transparent;
  color: #707070;
  transition: color 150ms ease;
}

.holding-content__submit:hover:not(:disabled),
.holding-content__submit:focus-visible { color: #000; }

.holding-content__submit:disabled {
  cursor: progress;
  opacity: 0.5;
}

.holding-content__submit-icon {
  width: 22px;
  height: 22px;
}

/* Honeypot — hide visually and from assistive tech */
.holding-content__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.holding-content__success,
.holding-content__error {
  margin: 16px 0 0;
  font-size: 0.95rem;
  color: #fff;
}

/* Social icon — absolute-positioned so it doesn't push the form up */
.holding-footer__social {
  position: absolute;
  inset-block-end: clamp(16px, 2vw, 32px);
  inset-inline-end: clamp(16px, 2vw, 32px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  text-decoration: none;
  transition: opacity 150ms ease;
}

.holding-footer__social:hover,
.holding-footer__social:focus-visible { opacity: 0.7; }

@media (max-width: 600px) {
  .holding-content {
    padding-block: clamp(56px, 12vh, 120px) clamp(32px, 7vh, 80px);
    padding-inline: 24px;
  }
  .holding-content__form-wrapper {
    max-width: 100%;
  }
  .holding-footer__social {
    inset-block-end: 12px;
    inset-inline-end: 12px;
  }
}
