/* ============================================================
   RLT — Crown The Streets
   ============================================================ */

:root {
  --ink: #0A0A0A;
  --bone: #F5EFE3;
  --blood: #B0140C;
  --blood-deep: #7A0E08;
  --smoke: #161616;
  --smoke-2: #1F1F1F;
  --ash: #9A9A9A;
  --line: rgba(255,255,255,.10);
  --line-dark: rgba(0,0,0,.10);
  --white: #FDFDFD;

  --f-display: "Anton", "Arial Black", sans-serif;
  --f-sub: "Bebas Neue", "Anton", sans-serif;
  --f-frak: "UnifrakturCook", "UnifrakturMaguntia", serif;
  --f-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "Menlo", monospace;

  --maxw: 1320px;
  --pad: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--blood); color: var(--white); }

/* shared bits ------------------------------------------------ */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ash);
  text-transform: uppercase;
  display: inline-block;
}
.eyebrow--light { color: rgba(255,255,255,.7); }
.eyebrow--dark  { color: rgba(10,10,10,.55); }
.mono { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.05em; }
.frak { font-family: var(--f-frak); font-weight: 700; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--f-sub);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn i { font-style: normal; }
.btn--ghost { color: var(--white); background: transparent; }
.btn--ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.4); }
.btn--solid { color: var(--ink); background: var(--white); border-color: var(--white); }
.btn--solid:hover { background: var(--blood); color: var(--white); border-color: var(--blood); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--f-sub);
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap .2s ease, color .2s ease;
}
.link-arrow:hover { gap: 18px; color: var(--blood); }

.section-head {
  padding: clamp(60px, 9vw, 120px) var(--pad) clamp(28px, 4vw, 56px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.section-head--center { text-align: center; }
.section-head__h2 {
  font-family: var(--f-display);
  font-size: clamp(48px, 8vw, 112px);
  line-height: .9;
  letter-spacing: -.02em;
  margin: 10px 0 14px;
  text-transform: uppercase;
}
.section-head__sub { color: var(--ash); max-width: 540px; }
.section-head--center .section-head__sub { margin: 0 auto; }
.section-head__sub em { font-style: normal; color: var(--blood); font-weight: 600; }

/* ===== 5.1 marquee ========================================== */
.marquee {
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 60;
}
.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 36s linear infinite;
  font-family: var(--f-sub);
  font-size: 13px;
  letter-spacing: .25em;
  padding-left: 48px;
}
.marquee__track i {
  color: var(--blood);
  font-style: normal;
  margin: 0 4px;
}
@keyframes scroll { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ===== 5.2 nav ============================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px var(--pad);
  background: transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: .12em;
}
.nav__logo img { width: 38px; height: 38px; }
.nav__logo span { display: none; }
.nav__links {
  display: flex;
  gap: clamp(16px, 2.6vw, 36px);
  justify-content: center;
  font-family: var(--f-sub);
  font-size: 16px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav__links a {
  opacity: .8;
  position: relative;
  transition: opacity .2s ease;
}
.nav__links a:hover { opacity: 1; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--blood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-sub);
  font-size: 15px;
  letter-spacing: .12em;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.nav__cta:hover { background: var(--blood); border-color: var(--blood); color: var(--white); }

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav { grid-template-columns: 1fr auto; }
}

/* ===== 5.3 hero ============================================= */
.hero {
  position: relative;
  height: clamp(640px, 100vh, 1000px);
  margin-top: -1px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.35) 0%, rgba(10,10,10,0) 30%, rgba(10,10,10,0) 60%, rgba(10,10,10,.85) 100%),
    linear-gradient(90deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,0) 50%);
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero__stat {
  position: absolute;
  top: 26px;
  right: var(--pad);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .25em;
  color: rgba(255,255,255,.75);
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero__inner {
  position: absolute;
  left: var(--pad);
  bottom: clamp(40px, 7vw, 88px);
  max-width: 920px;
}
.hero__eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .25em;
  color: rgba(255,255,255,.75);
  margin-bottom: 14px;
}
.hero__h1 {
  font-family: var(--f-display);
  font-size: clamp(64px, 14vw, 220px);
  line-height: .82;
  letter-spacing: -.025em;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.hero__sub {
  font-family: var(--f-sub);
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin: 0 0 28px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.6);
}
.hero__scroll span { line-height: 1.6; }
.hero__scroll i {
  display: block;
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.8), rgba(255,255,255,0));
  animation: drip 2.2s ease-in-out infinite;
}
@keyframes drip {
  0% { transform: scaleY(.2); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(.2); transform-origin: bottom; }
}
@media (max-width: 720px) {
  .hero__scroll { display: none; }
  .hero__stat { top: 18px; font-size: 10px; padding: 5px 10px; }
}

/* ===== 5.4 manifesto ======================================== */
.manifesto {
  background: var(--bone);
  color: var(--ink);
  padding: clamp(60px, 9vw, 120px) var(--pad);
}
.manifesto__wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
}
.manifesto__block h3 {
  font-family: var(--f-frak);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  margin: 0 0 16px;
  color: var(--blood);
}
.manifesto__quote {
  font-family: var(--f-sub);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: .02em;
  margin: 0 0 8px;
  color: var(--ink);
  text-transform: uppercase;
}
.manifesto__en {
  font-style: italic;
  color: rgba(10,10,10,.55);
  font-size: 14px;
  margin: 0;
}
@media (max-width: 820px) {
  .manifesto__wrap { grid-template-columns: 1fr; }
}

/* ===== 5.5 featured drop ==================================== */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--ink);
}
.feature__left {
  padding: clamp(60px, 9vw, 120px) var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.feature__left .eyebrow { color: var(--blood); margin-bottom: 12px; }
.feature__h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: .95;
  letter-spacing: -.02em;
  margin: 0 0 36px;
  text-transform: uppercase;
}
.feature__h2 em {
  font-family: var(--f-frak);
  font-style: normal;
  color: var(--blood);
  text-transform: lowercase;
  font-size: .9em;
}
.feature__list { list-style: none; margin: 0 0 32px; padding: 0; }
.feature__list li {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-family: var(--f-sub);
  font-size: 19px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.feature__list li:last-child { border-bottom: 1px solid var(--line); }
.feature__list .mono { color: var(--ash); }
.feature__total { background: rgba(176,20,12,.08); margin-top: 6px; }
.feature__total span:nth-child(2) { color: var(--blood); }
.feature__right { position: relative; min-height: 600px; }
.feature__right img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
@media (max-width: 980px) {
  .feature { grid-template-columns: 1fr; }
  .feature__left { border-right: none; border-bottom: 1px solid var(--line); }
  .feature__right { min-height: 520px; }
}

/* ===== 5.6 drops archive ==================================== */
.drops { background: var(--ink); }
.drops__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.drop {
  position: relative;
  background: var(--smoke);
  overflow: hidden;
  aspect-ratio: 3/4;
  transition: background .3s ease;
}
.drop img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .3s ease;
  filter: brightness(.78) saturate(.95);
}
.drop:hover img { transform: scale(1.06); filter: brightness(.9) saturate(1); }
.drop__meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.85) 100%);
  z-index: 1;
}
.drop__meta .mono { color: rgba(255,255,255,.7); font-size: 11px; }
.drop__meta .frak {
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1;
  color: var(--white);
}
.drop__cta {
  font-family: var(--f-sub);
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.drop:hover .drop__cta { opacity: 1; transform: translateY(0); }
.drop--feature::before {
  content: "NOW";
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  padding: 5px 10px;
  background: var(--blood);
  color: var(--white);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  border-radius: 999px;
}
@media (max-width: 980px) {
  .drops__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .drops__grid { grid-template-columns: 1fr; }
  .drop { aspect-ratio: 4/5; }
}

/* ===== 5.7 lookbook ========================================= */
.look { background: var(--ink); padding-bottom: clamp(60px, 9vw, 120px); }
.look__row {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 0;
  align-items: stretch;
  border-top: 1px solid var(--line);
}
.look__row img {
  width: 100%;
  height: clamp(420px, 70vh, 760px);
  object-fit: cover;
}
.look__row aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 56px);
  border-left: 1px solid var(--line);
}
.look__row aside .mono {
  color: var(--blood);
  margin-bottom: 12px;
}
.look__row aside p {
  font-family: var(--f-sub);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.look__row--reverse { grid-template-columns: .6fr 1.4fr; }
.look__row--reverse img { order: 2; }
.look__row--reverse aside { order: 1; border-left: none; border-right: 1px solid var(--line); }
@media (max-width: 820px) {
  .look__row, .look__row--reverse { grid-template-columns: 1fr; }
  .look__row aside { border-left: none; border-top: 1px solid var(--line); }
  .look__row--reverse img { order: 0; }
  .look__row--reverse aside { order: 1; border-right: none; }
}

/* ===== 5.8 Sourced in Luanda ================================ */
.luanda {
  background: var(--bone);
  color: var(--ink);
  padding: clamp(60px, 9vw, 120px) var(--pad);
  text-align: center;
}
.luanda__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 4px;
  max-width: var(--maxw);
  margin: 0 auto clamp(40px, 5vw, 80px);
}
.luanda__grid img {
  width: 100%;
  height: clamp(280px, 38vw, 520px);
  object-fit: cover;
  filter: contrast(1.02) saturate(1.05);
}
.luanda__quote {
  font-family: var(--f-frak);
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1;
  margin: 0 0 8px;
  color: var(--ink);
}
.luanda__sub {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(10,10,10,.55);
  margin: 0;
}
@media (max-width: 820px) {
  .luanda__grid { grid-template-columns: 1fr; }
}

/* ===== 5.9 The Tape ========================================= */
.tape {
  background: var(--ink);
  color: var(--white);
  padding: clamp(60px, 9vw, 120px) var(--pad);
  text-align: center;
}
.tape__h2 {
  font-family: var(--f-display);
  font-size: clamp(48px, 8vw, 112px);
  line-height: .9;
  letter-spacing: -.02em;
  margin: 14px 0 36px;
  text-transform: uppercase;
}
.tape video {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid var(--line);
}
.tape__caption {
  color: var(--ash);
  margin-top: 22px;
  font-family: var(--f-sub);
  font-size: 16px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tape__caption em { color: var(--blood); font-style: normal; }

/* ===== 5.10 newsletter ====================================== */
.droplist {
  background: var(--bone);
  color: var(--ink);
  padding: clamp(80px, 12vw, 160px) var(--pad);
  text-align: center;
}
.droplist__wrap { max-width: 820px; margin: 0 auto; }
.droplist__h2 {
  font-family: var(--f-display);
  font-size: clamp(56px, 10vw, 144px);
  line-height: .88;
  letter-spacing: -.025em;
  margin: 18px 0 18px;
  text-transform: uppercase;
}
.droplist__sub {
  color: rgba(10,10,10,.7);
  font-size: 17px;
  max-width: 460px;
  margin: 0 auto 32px;
}
.droplist__form {
  display: flex;
  gap: 8px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(10,10,10,.15);
  border-radius: 999px;
  padding: 6px;
}
.droplist__form input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 14px 18px;
  font-family: var(--f-body);
  font-size: 16px;
  outline: none;
  color: var(--ink);
}
.droplist__form input::placeholder { color: rgba(10,10,10,.4); }
.droplist__form button {
  border: 0;
  background: var(--ink);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--f-sub);
  font-size: 15px;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .25s ease;
}
.droplist__form button:hover { background: var(--blood); }
.droplist__success {
  margin-top: 24px;
  color: var(--blood);
  font-family: var(--f-sub);
  font-size: 18px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ===== 5.11 footer ========================================== */
.foot {
  background: var(--ink);
  color: var(--white);
  padding: clamp(60px, 8vw, 96px) var(--pad) 0;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.foot__cols {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding-bottom: 64px;
  position: relative;
  z-index: 2;
}
.foot__col h4 {
  font-family: var(--f-sub);
  font-size: 14px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ash);
  margin: 0 0 18px;
  font-weight: 400;
}
.foot__col a {
  display: block;
  padding: 7px 0;
  color: var(--white);
  font-size: 15px;
  opacity: .85;
  transition: opacity .2s ease, transform .2s ease, color .2s ease;
}
.foot__col a:hover { opacity: 1; color: var(--blood); transform: translateX(4px); }
.foot__col--brand .foot__logo { width: 56px; height: 56px; margin-bottom: 18px; }
.foot__tag {
  font-family: var(--f-sub);
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 18px;
  line-height: 1.6;
}
.foot__addr {
  color: var(--ash);
  font-size: 14px;
  margin: 0;
  line-height: 1.7;
}
.foot__bar {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  position: relative;
  z-index: 2;
}
.foot__bar a {
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.3);
  transition: color .2s ease, border-color .2s ease;
}
.foot__bar a:hover { color: var(--blood); border-color: var(--blood); }
.foot__mega {
  position: absolute;
  left: 50%;
  bottom: -3vw;
  transform: translateX(-50%);
  font-family: var(--f-display);
  font-size: clamp(160px, 28vw, 460px);
  letter-spacing: -.04em;
  line-height: .85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.08);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
@media (max-width: 820px) {
  .foot__cols { grid-template-columns: 1fr 1fr; }
  .foot__col--brand { grid-column: 1 / -1; }
}

/* reduced motion --------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
