:root {
  --navy: #0F1D35;
  --white: #FFFFFF;
  --soft-white: rgba(255,255,255,.78);
  --muted: rgba(255,255,255,.52);
  --line: rgba(255,255,255,.20);
}

* { box-sizing: border-box; }
html, body { width: 100%; height: 100%; }
body {
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  font-family: "Assistant", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.page-shell {
  width: 100%;
  height: 100svh;
  min-height: 600px;
  padding: clamp(22px, 2.5vw, 42px) clamp(24px, 4vw, 72px) clamp(18px, 2vw, 30px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  position: relative;
  isolation: isolate;
}

.page-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 49.94%, rgba(255,255,255,.06) 50%, transparent 50.06%);
  z-index: -1;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  opacity: 0;
  transform: translateY(-10px);
  animation: reveal .9s .1s ease forwards;
}

.wordmark {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 1.45vw, 25px);
  letter-spacing: .36em;
  white-space: nowrap;
}

.header-note,
.rumours-label,
.site-footer,
.signup-form input,
.signup-form button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
}

.header-note,
.site-footer { color: var(--muted); }
.rumours-label { color: rgba(255,255,255,.72); }

.main-layout {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(300px, .88fr) minmax(0, 1.22fr);
  gap: clamp(58px, 7vw, 132px);
  padding: clamp(36px, 5.5vh, 78px) 0 clamp(22px, 3vh, 40px);
}

.story {
  min-height: 0;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: clamp(8px, 1.4vw, 24px);
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 1s .45s ease forwards;
}


.story-copy {
  width: min(100%, 585px);
  margin: 0 auto;
  font-weight: 300;
  font-size: clamp(15px, 1.06vw, 20px);
  line-height: 1.38;
  color: var(--soft-white);
  position: relative;
  z-index: 1;
}
.story-copy p { margin: 0 0 1.05em; }
.story-copy .statement {
  margin: 1.35em 0;
  font-size: clamp(22px, 1.75vw, 31px);
  line-height: 1.08;
  font-weight: 400;
  color: var(--white);
}
.story-copy .signoff {
  margin-bottom: 0;
  font-weight: 400;
  color: var(--white);
}

.rumours {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 1s .8s ease forwards;
}

.rumours-label { margin: 0; }

.carousel {
  min-height: 0;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(28px, 4vh, 52px) clamp(18px, 2vw, 30px);
}

.quote-mark {
  position: absolute;
  font-family: "marion", "Marion", Georgia, serif;
  font-size: clamp(118px, 12vw, 230px);
  line-height: 1;
  color: rgba(255,255,255,.20);
  z-index: -1;
  transition: transform 1s cubic-bezier(.2,.7,.2,1), opacity 1s ease;
}
.quote-open { left: 0; top: 6%; }
.quote-close { right: 1%; bottom: -4%; }
.carousel.is-changing .quote-open { transform: translate(-4px, -6px) rotate(-2deg); opacity: .30; }
.carousel.is-changing .quote-close { transform: translate(4px, 6px) rotate(2deg); opacity: .30; }

.slide {
  grid-area: 1 / 1;
  margin: 0;
  max-width: 900px;
  font-family: "marion", "Marion", Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5.25vw, 98px);
  line-height: .96;
  font-weight: 400;
  letter-spacing: -.035em;
  color: var(--white);
  opacity: 0;
  transform: translateY(48px) rotate(.6deg);
  filter: blur(12px);
  clip-path: inset(0 0 100% 0);
  transition: opacity .7s ease, transform 1s cubic-bezier(.2,.72,.2,1), filter .8s ease, clip-path 1s cubic-bezier(.2,.72,.2,1);
  pointer-events: none;
}
.slide.is-active {
  opacity: 1;
  transform: translateY(0) rotate(0);
  filter: blur(0);
  clip-path: inset(0 0 0 0);
}
.slide.is-leaving {
  opacity: 0;
  transform: translateY(-38px) rotate(-.45deg);
  filter: blur(8px);
  clip-path: inset(100% 0 0 0);
}

.signup {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(360px, .9fr);
  gap: clamp(36px, 6vw, 112px);
  align-items: end;
  padding: clamp(18px, 2.5vh, 28px) 0 clamp(16px, 2vh, 24px);
  border-top: 1px solid var(--line);
  opacity: 0;
  animation: reveal 1s 1.05s ease forwards;
}
.signup-copy {
  max-width: 720px;
  margin: 0;
  font-size: clamp(18px, 1.45vw, 26px);
  line-height: 1.15;
  font-weight: 400;
}

.signup-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  column-gap: 24px;
}
.field-wrap { position: relative; }
.signup-form input {
  width: 100%;
  min-width: 0;
  padding: 12px 0 13px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
}
.signup-form input::placeholder { color: rgba(255,255,255,.46); }
.field-wrap::after,
.field-line {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
}
.field-wrap::after { background: rgba(255,255,255,.38); }
.field-line {
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
  z-index: 1;
}
.field-wrap:focus-within .field-line { transform: scaleX(1); }

.signup-form button {
  padding: 12px 0 13px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  white-space: nowrap;
}
.signup-form button span {
  display: inline-block;
  transition: transform .25s ease;
}
.signup-form button:hover span { transform: translateX(6px); }
.form-message {
  grid-column: 1 / -1;
  margin: 7px 0 0;
  min-height: 14px;
  font-size: 11px;
  color: rgba(255,255,255,.62);
}

.site-footer {
  padding-top: 14px;
  gap: 24px;
  opacity: 0;
  animation: reveal .8s 1.2s ease forwards;
}
.site-footer a { transition: color .2s ease; }
.site-footer a:hover { color: var(--white); }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 980px) {
  .page-shell { min-height: 560px; }
  .main-layout { grid-template-columns: .95fr 1.05fr; gap: 38px; }
  .story-copy { font-size: 14px; }
  .story-copy .statement { font-size: 20px; }
  .slide { font-size: clamp(36px, 5.6vw, 62px); }
  .signup { grid-template-columns: 1fr 1fr; gap: 32px; }
  .signup-copy { font-size: 17px; }
}

@media (max-width: 700px) {
  html, body { height: auto; min-height: 100%; }
  body { overflow-y: auto; overflow-x: hidden; }

  .page-shell {
    height: auto;
    min-height: 100svh;
    padding: 24px 20px 18px;
    display: block;
  }

  .page-shell::after { display: none; }
  .header-note { display: none; }
  .wordmark { font-size: 22px; letter-spacing: .30em; }

  .main-layout {
    display: block;
    padding: 42px 0 34px;
  }

  .story {
    display: block;
    padding-left: 0;
  }

  .story-copy {
    width: 100%;
    max-width: none;
    margin: 0;
    columns: 1;
    font-size: 18px;
    line-height: 1.46;
  }

  .story-copy p { margin: 0 0 1.15em; }
  .story-copy .statement {
    margin: 1.4em 0;
    font-size: 30px;
    line-height: 1.08;
  }

  .rumours {
    display: block;
    margin-top: 48px;
  }

  .rumours-label {
    display: block;
    margin-bottom: 18px;
    font-size: 11px;
  }

  .carousel {
    min-height: 320px;
    padding: 34px 16px 28px;
    overflow: hidden;
  }

  .slide {
    max-width: 100%;
    font-size: clamp(46px, 13vw, 68px);
    line-height: .96;
  }

  .quote-mark { font-size: 128px; }
  .quote-open { top: 0; }
  .quote-close { bottom: -10px; }

  .signup {
    display: block;
    margin-top: 18px;
    padding: 28px 0 24px;
  }

  .signup-copy {
    max-width: none;
    margin-bottom: 24px;
    font-size: 22px;
    line-height: 1.18;
  }

  .signup-form {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .signup-form input,
  .signup-form button {
    font-size: 11px;
    letter-spacing: .14em;
  }

  .signup-form button {
    justify-self: start;
    padding-top: 6px;
  }

  .site-footer {
    margin-top: 28px;
    padding-top: 18px;
    font-size: 9px;
  }
}

@media (max-height: 720px) and (min-width: 701px) {
  .page-shell { padding-top: 20px; padding-bottom: 16px; }
  .main-layout { padding-top: 28px; padding-bottom: 18px; }
  .story-copy { font-size: 14px; line-height: 1.3; }
  .story-copy .statement { font-size: 21px; margin: 1em 0; }
  .slide { font-size: clamp(40px, 4.8vw, 76px); }
  .signup { padding-top: 14px; padding-bottom: 12px; }
  .signup-copy { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
