﻿:root {
  --ink: #070707;
  --paper: #f0eee9;
  --muted: #98958d;
  --line: rgba(240, 238, 233, 0.2);
  --accent: #d6ff00;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  background: var(--accent);
  color: var(--ink);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  padding: 30px 42px;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  animation: enter-header 700ms cubic-bezier(.22, 1, .36, 1) both;
}

.wordmark {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
}

.brand-symbol-site {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(240, 238, 233, 0.42);
  border-radius: 34%;
  background: radial-gradient(circle at 50% 45%, rgba(240, 238, 233, 0.055), transparent 72%);
  color: #cecbc4;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 1;
}

.brand-type {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.site-header nav {
  display: flex;
  gap: 34px;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.site-header nav a {
  position: relative;
  padding-bottom: 5px;
}

.site-header nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--paper);
  content: "";
  transition: width 180ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  width: 100%;
}

.edition {
  justify-self: end;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  padding: 154px 42px 58px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent 0 24.9%, rgba(255,255,255,.035) 25%, transparent 25.1% 74.9%, rgba(255,255,255,.035) 75%, transparent 75.1%),
    radial-gradient(circle at 78% 24%, #262626 0, #101010 27%, var(--ink) 58%);
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.012) 4px);
  content: "";
}

.hero-brand-texture {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.08;
  clip-path: inset(0 0 50% 0);
  filter: grayscale(1) contrast(1.15);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
}

.eyebrow,
.section-index {
  margin: 0;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.hero h1 {
  max-width: 1080px;
  margin: 18px 0 0;
  text-transform: uppercase;
  font-size: clamp(70px, 10.5vw, 168px);
  font-weight: 700;
  letter-spacing: -0.085em;
  line-height: 0.76;
  animation: enter-up 900ms 280ms cubic-bezier(.22, 1, .36, 1) both;
}

.hero h1 span {
  display: block;
  margin-left: 10.5vw;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.91em;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.075em;
  text-transform: none;
}

.hero-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 64px;
  padding-left: 25%;
  animation: enter-up 800ms 480ms cubic-bezier(.22, 1, .36, 1) both;
}

.hero-bottom > p {
  max-width: 400px;
  margin: 0;
  color: #bdbab3;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
}

.round-link {
  display: flex;
  width: 102px;
  height: 102px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid #6e6c67;
  border-radius: 50%;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.round-link:hover,
.round-link:focus-visible {
  background: var(--paper);
  color: var(--ink);
  transform: rotate(-4deg);
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  top: 13%;
  right: 7%;
  display: grid;
  width: min(35vw, 490px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  animation: enter-orbit 1100ms 100ms cubic-bezier(.22, 1, .36, 1) both;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  content: "";
}

.hero-orbit::before { inset: 11%; }
.hero-orbit::after { inset: 25%; }

.orbit-monogram {
  position: relative;
  z-index: 2;
  display: grid;
  width: 34%;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(240, 238, 233, 0.36);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 43%, rgba(240, 238, 233, 0.075), transparent 68%);
  box-shadow:
    0 0 0 9px rgba(240, 238, 233, 0.022),
    inset 0 0 24px rgba(240, 238, 233, 0.025);
  color: #d0cdc6;
  font-size: clamp(48px, 5vw, 82px);
  font-weight: 500;
  letter-spacing: -0.1em;
  text-indent: -0.07em;
  line-height: 1;
  opacity: 0.84;
}

.orbit-copy {
  position: absolute;
  inset: 0;
  animation: orbit 28s linear infinite;
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.orbit-copy span {
  position: absolute;
  padding: 3px 7px 2px;
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.78);
  box-shadow: 0 0 12px rgba(15, 15, 15, 0.92);
  white-space: nowrap;
}

.orbit-copy span:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-copy span:nth-child(2) {
  top: 75%;
  left: 93.3%;
  transform: translate(-50%, -50%) rotate(-60deg);
}

.orbit-copy span:nth-child(3) {
  top: 75%;
  left: 6.7%;
  transform: translate(-50%, -50%) rotate(60deg);
}

@keyframes orbit { to { transform: rotate(360deg); } }

@keyframes enter-header {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes enter-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes enter-orbit {
  from { opacity: 0; transform: scale(.94) rotate(-3deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes reveal-scroll {
  from { opacity: .08; transform: translateY(38px) scale(.992); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@supports (animation-timeline: view()) {
  .statement-copy,
  .statement-meta,
  .section-heading,
  .release,
  .manifesto-kicker,
  .manifesto-copy {
    animation-name: reveal-scroll;
    animation-duration: 1ms;
    animation-fill-mode: both;
    animation-timing-function: linear;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
  }
}

.scroll-note {
  position: absolute;
  z-index: 3;
  bottom: 58px;
  left: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  animation: enter-up 700ms 680ms cubic-bezier(.22, 1, .36, 1) both;
}

.hero .eyebrow {
  animation: enter-up 700ms 180ms cubic-bezier(.22, 1, .36, 1) both;
}

.scroll-note i {
  display: block;
  width: 1px;
  height: 54px;
  background: var(--muted);
}

.statement {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 32px;
  padding: 150px 42px;
  border-bottom: 1px solid var(--line);
}

.statement-copy {
  max-width: 1060px;
  margin: 0;
  font-size: clamp(42px, 6vw, 90px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.statement-copy span {
  display: block;
  color: #55534f;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
}

.statement-meta {
  grid-column: 2;
  display: flex;
  max-width: 720px;
  justify-content: space-between;
  margin-top: 44px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: 0.17em;
  color: var(--muted);
}

.catalogue {
  padding: 126px 42px 150px;
  background: var(--paper);
  color: var(--ink);
}

.catalogue .section-index,
.catalogue .section-heading > p:last-child {
  color: #6f6c66;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(60px, 8.7vw, 132px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.section-heading > p:last-child {
  max-width: 200px;
  justify-self: end;
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: start;
}

.release:nth-child(1) { grid-column: 1 / 6; }
.release:nth-child(2) { grid-column: 7 / 10; margin-top: 150px; }
.release:nth-child(3) { grid-column: 10 / 13; margin-top: 36px; }

.release-art {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  background: #101010;
  color: var(--paper);
}

.release-link {
  display: block;
}

.channel-shot {
  aspect-ratio: 16 / 9;
  background-color: #0a0a0a;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: grayscale(1) contrast(1.04);
  transition: filter 240ms ease, transform 240ms ease;
}

.channel-shot::before,
.channel-shot::after {
  display: none;
}

.shot-one { background-image: url("/cover-ground.webp"); }
.shot-two { background-image: url("/cover-prove.webp"); }
.shot-three { background-image: url("/cover-outgrow.webp"); }

.release-link:hover .channel-shot,
.release-link:focus-visible .channel-shot {
  filter: grayscale(1) contrast(1.1) brightness(1.08);
  transform: translateY(-4px);
}

.release-link:focus-visible {
  outline: 1px solid #34332f;
  outline-offset: 7px;
}

.watch-note {
  position: absolute;
  z-index: 3;
  right: 17px;
  bottom: 15px;
  padding: 7px 9px;
  background: rgba(7, 7, 7, 0.74);
  color: var(--paper);
  font-size: 7px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.release-art::before,
.release-art::after {
  position: absolute;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  content: "";
}

.tone-one::before { width: 73%; height: 73%; }
.tone-one::after { width: 42%; height: 42%; box-shadow: 0 0 60px rgba(255,255,255,.2); }
.tone-two { background: linear-gradient(135deg, #050505 50%, #dedbd3 50%); }
.tone-two::before { width: 140%; height: 50%; transform: rotate(-45deg); }
.tone-two::after { width: 28%; height: 28%; background: #0b0b0b; }
.tone-three { background: radial-gradient(circle at 50% 72%, #dad7cf 0 2%, #343434 3%, #0b0b0b 46%); }
.tone-three::before { width: 63%; height: 63%; }
.tone-three::after { width: 88%; height: 88%; border-style: dashed; }

.release-code,
.release-number {
  position: absolute;
  z-index: 2;
  top: 17px;
  font-size: 8px;
  letter-spacing: 0.15em;
}

.release-code { left: 17px; }
.release-number { right: 17px; }

.art-monogram {
  position: relative;
  z-index: 2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8vw, 138px);
  font-style: italic;
  letter-spacing: -0.1em;
}

.release-info {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 13px;
  border-top: 1px solid #aaa69e;
}

.release-info h3,
.release-info p { margin: 0; }
.release-info h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.release-info p { color: #6f6c66; font-size: 8px; text-transform: uppercase; letter-spacing: 0.1em; text-align: right; }

.manifesto {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 32px;
  padding: 150px 42px;
  border-bottom: 1px solid var(--line);
}

.manifesto-kicker {
  display: flex;
  min-height: 450px;
  flex-direction: column;
  justify-content: space-between;
}

.manifesto-kicker > span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
}

.manifesto-copy h2 {
  max-width: 1000px;
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(54px, 7.4vw, 112px);
  letter-spacing: -0.08em;
  line-height: 0.88;
}

.manifesto-copy h2 span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
}

.manifesto-copy > p {
  max-width: 480px;
  margin: 80px 0 0 34%;
  color: #aaa7a0;
  font-size: 16px;
  line-height: 1.6;
}

.contact {
  padding: 130px 42px 80px;
}

.contact h2 {
  margin: 25px 0 80px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(68px, 10vw, 150px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.social-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.social-row > a,
.social-row > span {
  display: flex;
  justify-content: space-between;
  padding: 20px 18px 20px 0;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.13em;
}

.social-row > :is(a, span) + :is(a, span) {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.social-row > a {
  transition: background 180ms ease, color 180ms ease, padding 180ms ease;
}

.social-row > a:hover,
.social-row > a:focus-visible {
  padding-left: 14px;
  background: var(--paper);
  color: var(--ink);
  outline: 0;
}

.coming-soon {
  color: #74716b;
}

.social-row small {
  color: var(--muted);
  font-size: 7px;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  padding: 76px 42px 34px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

footer p { margin: 0; }
footer p:nth-child(2) { justify-self: center; }
footer p:last-child { justify-self: end; }
.footer-mark { color: var(--paper); }
.footer-mark .brand-symbol-site { width: 34px; height: 34px; font-size: 21px; }

@media (max-width: 800px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 22px 18px;
  }

  .site-header nav { gap: 18px; }
  .edition { display: none; }
  .hero { min-height: 860px; padding: 134px 18px 34px; }
  .hero-brand-texture { opacity: .045; clip-path: inset(0 0 64% 0); }
  .hero h1 { font-size: clamp(61px, 19vw, 106px); line-height: 0.8; }
  .hero h1 span { margin-left: 0; }
  .hero-orbit { top: 19%; right: -1%; width: 88vw; opacity: .68; }
  .hero-bottom { align-items: start; margin-top: 70px; padding-left: 0; }
  .hero-bottom > p { max-width: 62%; font-size: 13px; }
  .round-link { width: 84px; height: 84px; padding: 14px; }
  .scroll-note { display: none; }

  .statement,
  .manifesto {
    grid-template-columns: 1fr;
    padding: 100px 18px;
  }

  .statement-copy { font-size: clamp(41px, 12vw, 66px); }
  .statement-meta { grid-column: 1; gap: 14px; overflow: hidden; }

  .catalogue { padding: 96px 18px 110px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading h2 { font-size: 21vw; }
  .section-heading > p:last-child { justify-self: start; }
  .release-grid { grid-template-columns: 1fr 1fr; gap: 26px 12px; }
  .release:nth-child(1) { grid-column: 1 / 3; }
  .release:nth-child(2),
  .release:nth-child(3) { grid-column: auto; margin-top: 0; }
  .release-info { display: block; }
  .release-info p { margin-top: 5px; text-align: left; }

  .manifesto-kicker { min-height: auto; flex-direction: row; }
  .manifesto-copy h2 { font-size: clamp(52px, 15vw, 82px); }
  .manifesto-copy > p { margin: 55px 0 0 18%; font-size: 14px; }
  .contact { padding: 100px 18px 60px; }
  .contact h2 { margin-bottom: 55px; font-size: 20vw; }
  .social-row { grid-template-columns: 1fr; }
  .social-row > :is(a, span) + :is(a, span) { padding-left: 0; border-left: 0; }
  .social-row > a:hover,
  .social-row > a:focus-visible { padding-left: 12px; }
  footer { grid-template-columns: 1fr 1fr; gap: 46px 10px; padding: 60px 18px 28px; }
  footer p:nth-child(2) { display: none; }
}

@media (max-width: 370px) {
  .site-header { padding: 20px 14px; }
  .site-header nav { gap: 12px; font-size: 8px; }
  .site-header .wordmark { gap: 7px; }
  .site-header .brand-type { font-size: 16px; }
  .site-header .brand-symbol-site { width: 24px; height: 24px; font-size: 15px; }
  .hero { padding-right: 14px; padding-left: 14px; }
  .hero .eyebrow { font-size: 8px; letter-spacing: .18em; }
  .hero-bottom > p { max-width: 64%; font-size: 12px; }
  .release-grid { grid-template-columns: 1fr; gap: 32px; }
  .release:nth-child(1),
  .release:nth-child(2),
  .release:nth-child(3) { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orbit-copy,
  .site-header,
  .hero-orbit,
  .hero .eyebrow,
  .hero h1,
  .hero-bottom,
  .scroll-note,
  .statement-copy,
  .statement-meta,
  .section-heading,
  .release,
  .manifesto-kicker,
  .manifesto-copy { animation: none; }
}

