:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #0a0a0a;
  --muted: #666666;
  --line: #e5e5e5;
  --soft: #f4f4f4;
  --radius: 8px;
  --header-height: 72px;
}

@font-face {
  font-family: "Sidney Hayden";
  src: url("Sidney Hayden.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: block;
  font-family: "Sidney Hayden", Georgia, serif;
  font-size: 35px;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}

.desktop-nav {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  display: flex;
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--muted);
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  color: var(--ink);
}

.menu-toggle {
  grid-column: 1;
  grid-row: 1;
  display: none;
  justify-self: start;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-height) auto 0 0;
  z-index: 19;
  display: none;
  width: min(82vw, 360px);
  padding: 24px;
  border-right: 1px solid var(--line);
  background: var(--bg);
  box-shadow: 24px 0 48px rgba(10, 10, 10, 0.08);
  transform: translateX(-100%);
  transition: transform 260ms ease;
}

.mobile-nav a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: #000000;
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18) 54%, rgba(0, 0, 0, 0.04)),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.34));
  content: "";
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: calc(100svh - var(--header-height));
  min-height: 560px;
  object-fit: contain;
  object-position: center center;
  background: #000000;
}

.hero-copy {
  position: absolute;
  z-index: 1;
  left: clamp(20px, 6vw, 76px);
  bottom: clamp(28px, 5vw, 64px);
  width: min(640px, calc(100% - 40px));
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.4;
}

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

h1 {
  margin-bottom: 6px;
  font-size: clamp(28px, 4.2vw, 50px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 0.95;
  font-weight: 400;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  font-weight: 400;
}

.hero-copy p:not(.eyebrow),
.access-copy p:not(.eyebrow),
.brand-section p:not(.eyebrow) {
  max-width: 36rem;
  color: #303030;
  font-size: 16px;
  line-height: 1.6;
}

.hero-copy p:not(.eyebrow) {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 600;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 700;
}

.hero-copy h1 {
  max-width: 560px;
  margin-bottom: 16px;
  color: #ffffff;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(40px, 5.4vw, 70px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.hero-copy .button {
  min-height: 34px;
  padding: 0 14px;
  border-color: #ffffff;
  background: #ffffff;
  color: var(--ink);
  font-size: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.dark,
.button.full {
  background: var(--ink);
  color: var(--surface);
}

.button.full {
  width: 100%;
}

.section {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 4vw, 48px);
}

.page-hero {
  padding: clamp(64px, 10vw, 132px) clamp(18px, 4vw, 48px) clamp(44px, 7vw, 88px);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(42px, 8vw, 104px);
  line-height: 0.92;
}

.page-hero p:not(.eyebrow),
.page-newsletter p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.access-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.access-copy h1 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.92;
}

.access-copy p {
  max-width: 360px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.dark-access {
  min-height: 0;
  padding-top: clamp(44px, 7vw, 84px);
  padding-bottom: clamp(44px, 7vw, 84px);
  border-bottom: 0;
  background: var(--ink);
  color: var(--surface);
}

.dark-access .access-copy p {
  color: #d6d6d6;
}

.dark-access .access-panel {
  border-color: #2a2a2a;
  background: #111111;
}

.dark-access input {
  border-color: #333333;
  background: #050505;
  color: var(--surface);
}

.dark-access input::placeholder {
  color: #8a8a8a;
}

.dark-access .button.dark,
.dark-access .button.full {
  border-color: var(--surface);
  background: var(--surface);
  color: var(--ink);
}

.dark-access .drop-reveal {
  border-top-color: #2a2a2a;
}

.access-panel {
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid var(--line);
  background: var(--surface);
}

.dark-access .access-panel {
  padding: clamp(16px, 3vw, 28px);
}

.access-panel label {
  color: var(--muted);
}

.access-panel input {
  border-color: var(--line);
  background: var(--soft);
  color: var(--ink);
}

.release-label,
.access-message {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.release-label {
  text-transform: uppercase;
}

.access-message {
  min-height: 23px;
  margin: 14px 0 0;
}

.access-message.is-error {
  color: #9f1d1d;
}

.drop-reveal {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.drop-reveal[hidden] {
  display: none;
}

.drop-reveal span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
}

.drop-reveal strong {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  font-weight: 400;
}

.release-window {
  gap: 8px;
}

.release-window strong {
  font-size: clamp(36px, 5vw, 58px);
}

.brand-section {
  display: grid;
  grid-template-columns: minmax(180px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.brand-section img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: clamp(18px, 4vw, 44px);
  border: 1px solid var(--line);
  background: var(--surface);
}

.story-section {
  display: grid;
  justify-items: center;
  padding-block: clamp(56px, 8vw, 104px);
  text-align: center;
}

.story-copy {
  max-width: 760px;
}

.story-section h1 {
  margin-bottom: clamp(38px, 6vw, 72px);
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
}

.story-copy p {
  margin-bottom: clamp(28px, 4vw, 42px);
  color: #303030;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
}

.story-copy p:last-child {
  margin-bottom: 0;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: clamp(24px, 4vw, 52px);
  align-items: end;
  padding: clamp(48px, 8vw, 88px) clamp(18px, 4vw, 48px);
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: var(--surface);
}

.dark-body {
  background: var(--ink);
  color: var(--surface);
}

.newsletter .eyebrow {
  color: #b8b8b8;
}

.newsletter h1,
.newsletter h2 {
  max-width: 760px;
}

.page-newsletter {
  min-height: 0;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.page-newsletter h1 {
  margin-bottom: 12px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.92;
  font-weight: 400;
}

.newsletter.page-newsletter p:not(.eyebrow) {
  color: #d6d6d6;
}

label {
  display: block;
  margin-bottom: 10px;
  color: #d6d6d6;
  text-transform: uppercase;
  font-size: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

input {
  min-width: 0;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #555;
  border-radius: 999px;
  background: #161616;
  color: var(--surface);
}

.newsletter .button.dark {
  border-color: var(--surface);
  background: var(--surface);
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(140px, 1fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
  padding: clamp(34px, 6vw, 64px) clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-logo {
  font-family: "Sidney Hayden", Georgia, serif;
  font-size: 42px;
  line-height: 0.9;
  color: var(--ink);
  text-transform: none;
}

.footer-brand p {
  max-width: 260px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  transition: opacity 180ms ease, transform 180ms ease;
}

.social-links img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-links a:hover {
  opacity: 0.74;
  transform: translateY(-1px);
}

.footer-copy {
  justify-items: end;
  justify-self: end;
}

@media (max-width: 860px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    grid-template-columns: 42px 1fr 42px;
    min-height: var(--header-height);
  }

  .brand {
    font-size: 30px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    display: block;
  }

  .menu-open .mobile-nav {
    transform: translateX(0);
  }

  .hero {
    display: flex;
    min-height: calc(100svh - var(--header-height));
    flex-direction: column;
    justify-content: space-between;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.82) 78%);
  }

  .hero-image {
    height: auto;
    min-height: 0;
    max-height: 54svh;
    aspect-ratio: 1;
    object-position: center center;
  }

  .hero-copy {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    padding: 0 24px 42px;
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 300px;
    margin-bottom: 0;
    font-size: 13px;
  }

  .access-section,
  .brand-section,
  .newsletter,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .access-section {
    align-items: start;
  }

  .dark-access,
  .page-newsletter {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .brand-section img {
    max-width: 280px;
  }

  .site-footer,
  .footer-brand {
    justify-items: center;
    text-align: center;
  }

  .footer-copy {
    justify-self: center;
  }

  .social-links {
    justify-content: center;
  }

}

@media (max-width: 520px) {
  .hero-image {
    max-height: 50svh;
    object-position: center center;
  }

  .hero-copy {
    padding: 0 24px 36px;
  }

  .hero-copy h1 {
    max-width: 360px;
    margin-bottom: 14px;
    font-size: clamp(32px, 9.4vw, 44px);
    line-height: 1.02;
  }

  h2 {
    font-size: 38px;
  }

  .access-panel .form-row,
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row .button {
    width: 100%;
  }

}
