:root {
  color-scheme: dark;
  --bg: #050505;
  --text: #ffffff;
  --muted: #8a8a8a;
  --line: rgba(255, 255, 255, 0.14);
  --cyan: #65e7ef;
  --rose: #ff6f9f;
  --gold: #f7d36c;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 1.55;
}

body::after {
  content: "";
  position: fixed;
  z-index: 20;
  right: 0;
  bottom: 0;
  left: 0;
  height: 24vh;
  pointer-events: none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.48));
  mask-image: linear-gradient(180deg, transparent, black 42%);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 42%);
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 24px;
  left: clamp(20px, 4vw, 52px);
  right: clamp(20px, 4vw, 52px);
}

.top-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(12px, 1vw, 14px);
}

.top-nav a {
  border-bottom: 0;
  transition: color 160ms ease;
}

.top-nav a:hover {
  color: var(--text);
}

.header-kicker {
  margin: 0;
  color: var(--muted);
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.page {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  width: min(840px, 100%);
  margin: 0 auto;
  min-height: 82svh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 42px 0 20px;
  text-align: center;
}

.kicker {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 4px;
  font-size: clamp(48px, 10vw, 104px);
  font-weight: 400;
  font-variant: normal;
  line-height: 0.9;
  letter-spacing: 0;
}

.painting-stage {
  width: min(76vw, 640px);
  margin: 0;
}

.painting-stage img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 2px;
  filter: saturate(0.92) contrast(1.04);
  object-fit: cover;
}

.listen-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.bottom-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 32px);
  margin-top: 46px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(14px, 1.3vw, 17px);
}

.bottom-nav a {
  transition: color 160ms ease;
}

.bottom-nav a:hover {
  color: var(--text);
}

.listen-links a {
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.listen-links a:hover {
  color: var(--text);
  border-color: currentColor;
}

.copy-note {
  min-height: 20px;
  margin: -8px 0 0;
  color: var(--cyan);
  font-size: 13px;
}

.page-section {
  min-height: 100svh;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 56px 0 26vh;
  border-top: 1px solid var(--line);
}

#mission {
  align-content: start;
  justify-items: center;
  padding-top: 36px;
}

#mission h1,
#mission .section-copy {
  width: min(76vw, 640px);
}

.page-section h1 {
  font-size: clamp(36px, 5.6vw, 62px);
}

h2 {
  max-width: 100%;
  margin-bottom: 0;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 400;
  font-variant: normal;
  line-height: 0.94;
  letter-spacing: 0;
}

.section-copy {
  width: 100%;
  max-width: none;
}

.section-copy p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.35vw, 18px);
  text-align: justify;
  text-justify: inter-word;
}

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

.end-mark {
  display: block;
  width: 64px;
  height: auto;
  margin: 84px auto 0;
  opacity: 0.86;
}

.section-copy a,
.listen-links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.signup-form {
  width: min(620px, 100%);
}

.signup-form label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.signup-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

input,
button {
  min-height: 46px;
  border: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font: inherit;
  font-size: 18px;
  box-shadow:
    inset 0 0 30px rgba(255, 255, 255, 0.018),
    0 0 22px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(8px);
}

input {
  width: 100%;
  padding: 0 14px;
}

button {
  min-height: auto;
  padding: 0 0 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.78);
  transition: color 160ms ease, border-color 160ms ease;
}

button:hover {
  color: var(--text);
  border-color: currentColor;
}

input:focus {
  background: rgba(255, 255, 255, 0.065);
  outline: 0;
}

button:focus {
  outline: 0;
  color: var(--text);
  border-color: currentColor;
}

.people-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 1.6vw, 22px);
}

.people-list a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  transition: color 160ms ease, border-color 160ms ease;
}

.people-list a:hover {
  color: var(--text);
  border-color: currentColor;
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 32px, var(--max));
  }

  .bottom-nav {
    gap: 18px;
  }

  .hero,
  .page-section {
    min-height: 100svh;
  }

  .section-copy p {
    text-align: left;
  }

  .signup-row {
    flex-direction: column;
  }

  .painting-stage {
    width: min(88vw, 420px);
  }

  .listen-links {
    gap: 12px;
  }
}
