/* =========================================================================
   moejione.com — Editorial Luxury Theme
   Author: Cowork redesign 2026
   ------------------------------------------------------------------------
   1.  Tokens + reset
   2.  Typography system
   3.  Layout primitives (.wrap, .section, grid)
   4.  Header + nav + drawer
   5.  Hero
   6.  Marquee
   7.  About
   8.  Reel
   9.  Music
   10. Ventures
   11. Press
   12. Journal
   13. Contact
   14. Footer
   15. Reveal animations + utilities
   16. Responsive breakpoints
   ========================================================================= */

/* ---------- 1. Tokens + reset ---------- */
:root {
  /* palette */
  --ink:           #0A0908;
  --ink-2:         #141210;
  --ink-3:         #1C1A17;
  --cream:         #F4EFE6;
  --paper:         #FAF7F1;
  --gold:          #C9A84C;
  --gold-soft:     #D4B96A;
  --gold-deep:     #8C7430;
  --rust:          #A14A2A;
  --line-dark:     rgba(244, 239, 230, 0.10);
  --line-cream:    rgba(10, 9, 8, 0.10);
  --muted-dark:    #8A857B;
  --muted-light:   #6B6660;

  /* type */
  --serif:  "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:   "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono:   "JetBrains Mono", "SF Mono", ui-monospace, Menlo, monospace;

  /* spacing scale (1 = 4px) */
  --s-1: .25rem; --s-2: .5rem; --s-3: .75rem; --s-4: 1rem;
  --s-5: 1.5rem; --s-6: 2rem;  --s-7: 3rem;   --s-8: 4rem;
  --s-9: 6rem;   --s-10: 8rem; --s-11: 12rem;

  /* layout */
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --max:    1440px;
  --header-h: 76px;

  /* motion */
  --ease:    cubic-bezier(.22, .7, .15, 1);
  --ease-in: cubic-bezier(.55, 0, .85, .35);
  --t-fast:  220ms;
  --t-med:   480ms;
  --t-slow:  780ms;

  /* default scheme = dark */
  --bg: var(--ink);
  --fg: var(--cream);
  --muted: var(--muted-dark);
  --line: var(--line-dark);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--fg);
  font-family: var(--sans);
  font-size: 17px; line-height: 1.6;
  font-feature-settings: "ss01", "ss02", "kern", "liga";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--gold); color: var(--ink); }

/* skip link */
.skip {
  position: fixed; top: -40px; left: 12px; z-index: 1000;
  background: var(--gold); color: var(--ink); padding: 10px 14px;
  border-radius: 4px; font-weight: 600;
}
.skip:focus { top: 12px; }

/* ---------- 2. Typography ---------- */
.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: .92;
  font-variation-settings: "opsz" 144;
}
.display { font-size: clamp(4.5rem, 14vw, 13.5rem); }
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "wght" 350;
}
.display--md { font-size: clamp(2.5rem, 6.5vw, 5rem); line-height: 1; }
.display--md em { color: var(--gold); }

.eyebrow {
  font-family: var(--mono);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow--dark { color: var(--muted-light); }

.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201,168,76,.6);
  animation: pulse 2.4s var(--ease) infinite;
}
.dot--ink { background: var(--ink); animation: none; }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,168,76,.6); }
  70%  { box-shadow: 0 0 0 14px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--fg);
  max-width: 52ch;
  opacity: .9;
}
.caption {
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: var(--s-4);
}
.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.4;
  color: var(--ink);
  border-left: 2px solid var(--gold);
  padding-left: var(--s-5);
  max-width: 56ch;
}

/* ---------- 3. Layout primitives ---------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  position: relative;
  padding-block: clamp(5rem, 11vw, 9rem);
  isolation: isolate;
}
.section--cream { background: var(--cream); color: var(--ink); --muted: var(--muted-light); --line: var(--line-cream); }
.section--dark  { background: var(--ink);   color: var(--cream); --muted: var(--muted-dark);  --line: var(--line-dark); }
.section--ink   { background: #050504;       color: var(--cream); --muted: var(--muted-dark);  --line: var(--line-dark); }

.section__head { max-width: 56ch; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head .display { margin-block: var(--s-4); }
.section__lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 52ch;
  margin-top: var(--s-4);
}
.section--cream .section__lede { color: var(--muted-light); }
.section__head--center .section__lede { margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500; font-size: .92rem;
  letter-spacing: .02em;
  transition: transform var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--ink);
}
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--fg);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--block { width: 100%; padding-block: 18px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono);
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  transition: gap var(--t-fast) var(--ease), color var(--t-fast);
  margin-top: var(--s-6);
}
.link-arrow:hover { gap: .9rem; color: var(--gold-soft); }
.link-arrow--center { display: flex; width: max-content; margin: var(--s-8) auto 0; }

/* ---------- 4. Header / nav / drawer ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  height: var(--header-h); z-index: 100;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  background: rgba(10, 9, 8, .55);
  border-bottom: 1px solid transparent;
  transition: background var(--t-med) var(--ease), border-color var(--t-med);
}
.site-header.is-scrolled {
  background: rgba(10, 9, 8, .80);
  border-color: var(--line-dark);
}
.site-header .wrap {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5);
}
.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.brand__mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 4px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1rem;
}
.brand__word { font-weight: 500; }
.brand--lg { font-size: 1.75rem; }
.brand--lg .brand__mark { width: 44px; height: 44px; font-size: 1.3rem; }

.nav {
  display: flex; gap: clamp(1rem, 2.5vw, 2.25rem);
  font-size: .92rem;
  color: var(--cream);
}
.nav a {
  position: relative; padding: 6px 0;
  color: var(--cream); opacity: .85;
  transition: opacity var(--t-fast), color var(--t-fast);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.nav a:hover { opacity: 1; color: var(--gold); }
.nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  width: 22px; height: 1.5px; background: var(--cream);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: var(--header-h) 0 0 0;
  background: var(--ink);
  z-index: 90;
  padding: var(--s-7) var(--gutter);
  display: flex; flex-direction: column; justify-content: space-between;
  transform: translateY(-100%);
  transition: transform var(--t-med) var(--ease);
}
.drawer[hidden] { display: none; }
.drawer.is-open { transform: translateY(0); }
.drawer nav { display: flex; flex-direction: column; gap: var(--s-5); }
.drawer nav a {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3.5rem);
  letter-spacing: -.02em;
  line-height: 1;
}
.drawer__cta { color: var(--gold); }
.drawer__meta {
  font-family: var(--mono); font-size: .75rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted-dark);
}

/* ---------- 5. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-h) + clamp(2rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 80% 30%, rgba(201,168,76,.18), transparent 70%),
    radial-gradient(50% 60% at 10% 90%, rgba(161,74,42,.12), transparent 70%),
    linear-gradient(180deg, #050504 0%, var(--ink) 60%);
}
.hero__glow {
  position: absolute; inset: -10%;
  background: radial-gradient(40% 40% at 50% 60%, rgba(201,168,76,.10), transparent 70%);
  filter: blur(40px);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translate3d(-3%, -2%, 0) scale(1); }
  100% { transform: translate3d(3%, 4%, 0) scale(1.05); }
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.18'/></svg>");
  opacity: .25;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: end;
  min-height: calc(100vh - var(--header-h) - 8rem);
}

.display__line { display: block; }
.display__line--italic {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  padding-left: clamp(2rem, 8vw, 6rem);
}

.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: var(--cream);
  opacity: .82;
  max-width: 48ch;
  margin-top: var(--s-5);
}

.hero__actions {
  display: flex; gap: var(--s-4); flex-wrap: wrap;
  margin-top: var(--s-6);
}

.now-playing {
  display: inline-flex; align-items: center; gap: var(--s-4);
  margin-top: var(--s-7);
  padding: 12px 18px;
  background: rgba(244, 239, 230, .04);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  width: max-content;
  max-width: 100%;
}
.now-playing__bars {
  display: inline-flex; align-items: end; gap: 3px; height: 16px;
}
.now-playing__bars i {
  width: 2px; background: var(--gold); border-radius: 1px;
  animation: bars 1.2s ease-in-out infinite;
}
.now-playing__bars i:nth-child(1) { height: 60%; animation-delay: -0.4s; }
.now-playing__bars i:nth-child(2) { height: 100%; animation-delay: -0.2s; }
.now-playing__bars i:nth-child(3) { height: 70%; animation-delay: -0.6s; }
.now-playing__bars i:nth-child(4) { height: 90%; }
@keyframes bars {
  0%, 100% { transform: scaleY(.4); }
  50%      { transform: scaleY(1); }
}
.now-playing__label {
  display: block;
  font-family: var(--mono); font-size: .7rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-dark);
}
.now-playing__track { display: block; font-size: .92rem; color: var(--cream); }
.now-playing__link {
  margin-left: var(--s-3);
  width: 32px; height: 32px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.now-playing__link:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.hero__scroll {
  position: absolute; right: var(--gutter); bottom: var(--s-6);
  display: flex; align-items: center; gap: var(--s-3);
  font-family: var(--mono);
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted-dark);
}
.hero__scroll-line {
  display: block; width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--muted-dark), transparent);
  position: relative;
}
.hero__scroll-line::after {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 30%;
  background: var(--gold);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(220%); opacity: 0; }
}

/* ---------- 6. Marquee ---------- */
.marquee {
  background: var(--gold);
  color: var(--ink);
  border-block: 1px solid var(--gold-deep);
  overflow: hidden;
  padding: 1rem 0;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: var(--s-6);
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 400; font-style: italic;
  animation: marquee 38s linear infinite;
}
.marquee__dot { font-size: .8em; color: rgba(10,9,8,.5); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- 7. About ---------- */
.about {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.about__portrait { position: sticky; top: calc(var(--header-h) + 2rem); }
.about__portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #2a241c 0%, #14110d 100%);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(10,9,8,.35);
}
.about__portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.about__portrait-fallback {
  position: absolute; inset: 0;
  display: none; place-items: center;
  font-family: var(--serif); font-style: italic;
  color: var(--gold); font-size: 1.5rem;
}
.about__portrait-frame.is-empty .about__portrait-fallback { display: grid; }

.about__copy { display: flex; flex-direction: column; gap: var(--s-5); }
.about__copy .display { margin-block: var(--s-2); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px solid var(--line-cream);
}
.stats li { display: flex; flex-direction: column; gap: 4px; }
.stats b {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  letter-spacing: -.02em;
}
.stats span {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted-light);
}

/* ---------- 8. Reel ---------- */
.reel__player {
  margin-top: var(--s-7);
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(140deg, #1a1612 0%, #0a0908 100%);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.6);
}
.reel__poster {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid; place-items: center;
  background:
    radial-gradient(60% 70% at 50% 50%, rgba(201,168,76,.18), transparent 70%),
    linear-gradient(180deg, #1a1612, #0a0908);
}
.reel__poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel__play {
  position: relative; z-index: 2;
  width: clamp(80px, 10vw, 120px); aspect-ratio: 1;
  color: var(--gold);
  transition: transform var(--t-fast) var(--ease), color var(--t-fast);
}
.reel__play:hover { transform: scale(1.05); color: var(--gold-soft); }
.reel__caption {
  position: absolute; bottom: 16px; left: 18px;
  font-family: var(--mono);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream); opacity: .8;
}

.credits {
  margin-top: var(--s-7);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.credits li {
  display: flex; align-items: baseline; gap: var(--s-3);
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: .98rem;
  color: var(--muted-dark);
}
.credits li:nth-child(odd)  { padding-right: var(--s-5); border-right: 1px solid var(--line-dark); }
.credits li:nth-child(even) { padding-left: var(--s-5); }
.credits span {
  font-family: var(--serif); font-style: italic;
  font-size: 1.15rem; color: var(--cream);
  flex: 0 0 auto;
}

/* ---------- 9. Music ---------- */
.music__inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.music__art { display: flex; flex-direction: column; gap: var(--s-5); }
.music__cover {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(70% 60% at 30% 30%, rgba(201,168,76,.35), transparent 60%),
    linear-gradient(140deg, #2a241c, #0d0b09);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(10,9,8,.35);
}
.music__cover img { width: 100%; height: 100%; object-fit: cover; }
.music__cover-fallback {
  position: absolute; inset: 0;
  display: none; place-items: center;
  font-family: var(--serif); font-style: italic;
  font-size: 1.5rem; color: var(--gold);
}
.music__cover.is-empty .music__cover-fallback { display: grid; }

.music__platforms {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border: 1px solid var(--line-cream);
  border-radius: 4px;
  overflow: hidden;
}
.music__platforms a {
  padding: 14px;
  text-align: center;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  border-right: 1px solid var(--line-cream);
  border-bottom: 1px solid var(--line-cream);
  transition: background var(--t-fast), color var(--t-fast);
}
.music__platforms a:nth-child(2n)         { border-right: 0; }
.music__platforms a:nth-last-child(-n+2)  { border-bottom: 0; }
.music__platforms a:hover { background: var(--ink); color: var(--gold); }

.music__copy { display: flex; flex-direction: column; gap: var(--s-5); }
.music__copy .display { margin-block: var(--s-2); }

.tracks {
  margin-top: var(--s-3);
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line-cream);
}
.tracks li {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--line-cream);
  transition: padding-left var(--t-fast) var(--ease);
}
.tracks li:hover { padding-left: var(--s-3); }
.tracks__num {
  font-family: var(--mono); font-size: .8rem;
  letter-spacing: .12em; color: var(--muted-light);
}
.tracks__name {
  font-family: var(--serif); font-size: 1.4rem; line-height: 1.1;
  letter-spacing: -.01em;
}
.tracks__time {
  font-family: var(--mono); font-size: .8rem;
  color: var(--muted-light);
}
.tracks__play {
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .8rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.tracks__play:hover { background: var(--ink); color: var(--gold); }

/* ---------- 10. Ventures ---------- */
.ventures__grid {
  margin-top: var(--s-7);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line-dark); /* line color shows between cards */
}
.venture {
  grid-column: span 2;
  background: var(--ink);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex; flex-direction: column; gap: var(--s-3);
  min-height: 280px;
  transition: background var(--t-med) var(--ease), transform var(--t-med);
  position: relative;
}
.venture:hover { background: var(--ink-2); }
.venture--feature {
  grid-column: span 6;
  background: linear-gradient(120deg, #1a1612 0%, #0a0908 60%);
  flex-direction: row; align-items: end; flex-wrap: wrap;
  min-height: 220px;
  gap: var(--s-5);
}
.venture--feature::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 70% at 80% 50%, rgba(201,168,76,.20), transparent 70%);
  pointer-events: none;
}
.venture--feature > * { position: relative; }
.venture--feature .venture__name { font-size: clamp(2rem, 5vw, 3.5rem); flex: 1 1 60%; }
.venture--feature .venture__line { flex: 1 1 30%; max-width: 38ch; }

.venture__tag {
  font-family: var(--mono); font-size: .68rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted-dark);
}
.venture__tag--gold { color: var(--gold); }
.venture__name {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  letter-spacing: -.01em;
  margin-top: var(--s-2);
}
.venture__line {
  color: var(--muted-dark); font-size: .98rem;
  flex: 1;
}
.venture__link {
  font-family: var(--mono); font-size: .75rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: var(--s-4);
  transition: gap var(--t-fast) var(--ease);
}
.venture__link:hover { gap: .8rem; }

/* ---------- 11. Press ---------- */
.press { padding-block: clamp(3rem, 6vw, 5rem); }
.press__label { display: block; text-align: center; margin-bottom: var(--s-6); }
.press__logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
}
.press__logos li {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  letter-spacing: .08em;
  color: var(--ink);
  opacity: .55;
  transition: opacity var(--t-fast);
  padding-block: var(--s-3);
}
.press__logos li:hover { opacity: 1; }

/* ---------- 12. Journal ---------- */
.journal__grid {
  margin-top: var(--s-7);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.post {
  display: flex; flex-direction: column; gap: var(--s-3);
  padding: var(--s-6) var(--s-5);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: var(--ink-2);
  transition: transform var(--t-med) var(--ease), border-color var(--t-med), background var(--t-med);
}
.post:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: var(--ink-3);
}
.post__meta {
  font-family: var(--mono); font-size: .7rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-dark);
}
.post__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  letter-spacing: -.01em;
  line-height: 1.2;
}
.post__excerpt { color: var(--muted-dark); font-size: .96rem; flex: 1; }
.post__more {
  font-family: var(--mono); font-size: .75rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold);
  margin-top: var(--s-3);
}

/* ---------- 13. Contact ---------- */
.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact__title { margin-block: var(--s-4); }
.contact__lede {
  color: var(--muted-dark);
  font-size: 1.05rem;
  max-width: 40ch;
}
.contact__direct {
  margin-top: var(--s-7);
  border-top: 1px solid var(--line-dark);
}
.contact__direct li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: .98rem;
}
.contact__direct span:first-child {
  font-family: var(--mono); font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-dark);
  align-self: center;
}
.contact__direct a { color: var(--gold); }
.contact__direct a:hover { color: var(--gold-soft); }

.contact__social {
  display: flex; flex-wrap: wrap; gap: 0;
  margin-top: var(--s-6);
}
.contact__social li { padding: 0; }
.contact__social a {
  display: inline-flex; align-items: center;
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
  padding: 6px 14px 6px 0;
  margin-right: var(--s-3);
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.contact__social a:hover { color: var(--gold); border-color: var(--gold); }

.contact__form {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex; flex-direction: column; gap: var(--s-4);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-dark);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  padding: 12px 0;
  color: var(--cream);
  font: inherit;
  transition: border-color var(--t-fast);
}
.field select { background: var(--ink-2); padding-right: 24px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 120px; }
.form__note {
  font-family: var(--mono); font-size: .78rem;
  color: var(--gold);
  min-height: 1em;
}

/* ---------- 14. Footer ---------- */
.site-footer {
  background: #050504;
  color: var(--cream);
  padding-block: clamp(3rem, 6vw, 5rem) var(--s-5);
  border-top: 1px solid var(--line-dark);
}
.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: var(--s-6);
  align-items: end;
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--line-dark);
}
.site-footer__tag {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--muted-dark);
  text-align: right;
  max-width: 36ch;
  margin-left: auto;
}
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  padding-block: var(--s-7);
}
.footer-h {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-4);
}
.site-footer__cols ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__cols a {
  color: var(--muted-dark);
  transition: color var(--t-fast);
}
.site-footer__cols a:hover { color: var(--cream); }

.site-footer__base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-3);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

/* ---------- 15. Reveal animations + utilities ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track,
  .hero__glow,
  .now-playing__bars i,
  .dot,
  .hero__scroll-line::after { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- 16. Responsive ---------- */
@media (max-width: 960px) {
  .nav, .site-header .btn { display: none; }
  .nav-toggle { display: flex; }

  .about,
  .music__inner,
  .contact__inner,
  .site-footer__top { grid-template-columns: 1fr; }
  .about__portrait { position: static; max-width: 420px; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .credits { grid-template-columns: 1fr; }
  .credits li:nth-child(odd) { padding-right: 0; border-right: 0; }
  .credits li:nth-child(even) { padding-left: 0; }

  .ventures__grid { grid-template-columns: repeat(2, 1fr); }
  .venture { grid-column: span 1; }
  .venture--feature { grid-column: span 2; flex-direction: column; align-items: start; }
  .venture--feature .venture__name { font-size: clamp(1.75rem, 6vw, 2.5rem); }

  .press__logos { grid-template-columns: repeat(3, 1fr); }
  .journal__grid { grid-template-columns: 1fr; }

  .site-footer__cols { grid-template-columns: repeat(2, 1fr); }
  .site-footer__tag { text-align: left; margin-left: 0; }
}

@media (max-width: 560px) {
  .display__line--italic { padding-left: 0; }
  .hero__scroll { display: none; }
  .ventures__grid { grid-template-columns: 1fr; }
  .venture, .venture--feature { grid-column: span 1; min-height: 220px; }
  .press__logos { grid-template-columns: repeat(2, 1fr); }
  .site-footer__cols { grid-template-columns: 1fr; }

  .tracks li { grid-template-columns: auto 1fr auto; }
  .tracks__time { display: none; }
}
