@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Sans:wght@400;500;600&display=swap");

:root {
  --ink: #12110f;
  --paper: #e7dfcf;
  --orange: #b9914f;
  --yellow: #f1dfb2;
  --line: rgba(18, 17, 15, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
}

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

.hero {
  background: #171612;
  color: var(--paper);
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.hero-image {
  background-color: #050708;
  background-image: url("assets/one-bundle-stone-landscape.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  inset: 0;
  position: absolute;
  filter: contrast(1.03) saturate(0.96);
}

.hero-image::after {
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.02) 0%, rgba(5, 7, 8, 0.08) 48%, rgba(5, 7, 8, 0.72) 100%),
    radial-gradient(circle at 72% 42%, rgba(185, 145, 79, 0.08), transparent 42%);
  content: "";
  inset: 0;
  opacity: 1;
  position: absolute;
}

.hero-wash {
  background:
    linear-gradient(90deg, transparent 0%, rgba(5, 7, 8, 0.08) 50%, rgba(5, 7, 8, 0.62) 100%);
  inset: 0;
  position: absolute;
}

.hero::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  content: "";
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
}

.hero-copy {
  left: 43%;
  position: absolute;
  right: 8vw;
  top: 50%;
  transform: translateY(-49%);
  z-index: 2;
}

.eyebrow,
.section-label,
.edition,
.scroll-cue {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--yellow);
  margin: 0 0 20px 0.7vw;
}

h1 {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(109px, 13vw, 247px);
  letter-spacing: -0.075em;
  line-height: 0.75;
  margin: 0;
  text-transform: uppercase;
}

h1 span {
  display: block;
  background: none;
  color: #e3e3e3;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.32));
  -webkit-text-fill-color: currentColor;
}

h1 span:first-child {
  color: #e3e3e3;
}

h1 span:last-child {
  color: #e3e3e3;
  margin-left: -0.035em;
}

.hero-intro {
  font-size: clamp(16px, 1.4vw, 23px);
  margin: 38px 0 0 0.8vw;
}

.scroll-cue {
  align-items: center;
  bottom: 28px;
  display: flex;
  gap: 14px;
  left: 32px;
  position: absolute;
  z-index: 3;
}

.scroll-cue span:last-child {
  font-size: 20px;
}

.edition {
  bottom: 32px;
  margin: 0;
  position: absolute;
  right: 32px;
  z-index: 3;
}

.section {
  padding: 100px 32px;
}

.manifesto {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 3fr;
}

.section-label {
  border-top: 1px solid var(--ink);
  margin: 0;
  padding-top: 12px;
}

.manifesto h2 {
  font-size: clamp(42px, 6.1vw, 98px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.97;
  margin: -10px 0 80px;
  max-width: 1100px;
}

.manifesto-copy {
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.45;
  max-width: 780px;
}

.manifesto-copy p {
  margin: 0 0 1.4em;
}

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

.manifesto-copy .closing-statement {
  font-weight: 600;
}

footer {
  align-items: center;
  background: var(--ink);
  border-top: 1px solid var(--line);
  color: var(--paper);
  display: flex;
  font-size: clamp(22px, 3vw, 48px);
  justify-content: space-between;
  letter-spacing: -0.035em;
  padding: 70px 32px;
}

.legal-links,
footer > a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-links {
  display: flex;
  gap: 28px;
}

.legal-links a,
footer > a {
  transition: opacity 180ms ease;
}

.legal-links a:hover,
footer > a:hover {
  opacity: 0.65;
}

.legal-page {
  min-height: 100svh;
  padding: 32px;
}

.legal-page header {
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 24px;
}

.legal-page main {
  max-width: 780px;
  padding: 100px 0;
}

.legal-page h1 {
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(54px, 8vw, 120px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-transform: none;
}

.legal-page p {
  font-size: 18px;
  line-height: 1.55;
  margin: 40px 0 0;
}

.legal-content {
  margin-top: 72px;
}

.legal-content section {
  margin-top: 48px;
}

.legal-content h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 8px;
}

.legal-content p {
  font-weight: 600;
  margin: 0;
}

.legal-content a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-page .privacy-main {
  max-width: 980px;
}

.privacy-content {
  margin-top: 72px;
}

.privacy-content h2 {
  border-top: 1px solid var(--line);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 88px 0 36px;
  padding-top: 20px;
}

.privacy-content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  margin: 40px 0 12px;
}

.privacy-content p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 22px;
}

.privacy-content a {
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 800px) {
  .hero {
    min-height: 680px;
  }

  .hero-image {
    background-position: center;
    inset: 0;
  }

  .hero-image::after {
    background: linear-gradient(0deg, rgba(5, 7, 8, 0.92) 0%, rgba(5, 7, 8, 0.08) 52%, transparent 76%);
    opacity: 1;
  }

  .hero-wash {
    background: linear-gradient(0deg, rgba(18, 17, 15, 0.92) 0%, transparent 62%);
  }

  .hero-copy {
    bottom: 105px;
    left: 20px;
    right: 20px;
    top: auto;
    transform: none;
  }

  .eyebrow {
    color: var(--yellow);
    margin-left: 3px;
  }

  h1 {
    font-size: clamp(85px, 29.9vw, 156px);
    line-height: 0.78;
  }

  .hero-intro {
    margin: 24px 0 0 4px;
  }

  .scroll-cue {
    bottom: 22px;
    left: 20px;
  }

  .edition {
    bottom: 26px;
    right: 20px;
  }

  .scroll-cue span:first-child {
    display: none;
  }

  .section {
    padding: 72px 20px;
  }

  .manifesto {
    display: block;
  }

  .manifesto .section-label {
    margin-bottom: 56px;
  }

  .manifesto h2 {
    margin-bottom: 56px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
    padding: 48px 20px;
  }

  .legal-page {
    padding: 20px;
  }

  .legal-page main {
    padding: 72px 0;
  }
}

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

  * {
    transition: none !important;
  }
}
