/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Variables ── */
:root {
  --black: #080808;
  --white: #f0ece2;
  --white-dim: rgba(240, 236, 226, 0.72);
  --white-faint: rgba(240, 236, 226, 0.38);
  --gold: #b89a62;
  --gold-bright: #d4b87a;
}

/* ── Base ── */
html, body {
  background: var(--black);
  color: var(--white);
  font-family: 'Cormorant Garamond', Georgia, serif;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 100;
}

/* Gold top line */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0.7;
  z-index: 50;
}

/* Vignette */
.vignette {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
  z-index: 10;
}

/* ── Nav ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 38px 60px 0;
  opacity: 1;
}

.wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
  text-transform: none;
}

.wordmark-hidden { visibility: hidden; pointer-events: none; }

.wordmark:hover { color: var(--gold-bright); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 236, 226, 0.65);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

/* ── Page header (index) ── */
.page-header {
  padding: 160px 60px 0;
  max-width: 900px;
  opacity: 0;
  animation: rise 1.2s ease forwards;
  animation-delay: 0.3s;
}

.page-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.page-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
}

.page-title em {
  font-style: italic;
  color: var(--white-dim);
}

.page-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 300;
  font-style: italic;
  color: var(--white-dim);
  margin-top: 16px;
  max-width: 560px;
  line-height: 1.65;
}

/* ── Letters list ── */
.letters-section {
  padding: 60px 60px 0;
  opacity: 0;
  animation: rise 1s ease forwards;
  animation-delay: 0.5s;
}

.letter-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 40px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid rgba(232, 228, 220, 0.07);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.3s;
}

.letter-item:first-child { border-top: 1px solid rgba(232, 228, 220, 0.07); }
.letter-item:hover { border-bottom-color: rgba(156, 131, 84, 0.3); }
.letter-item:hover .letter-title { color: var(--white); }

.letter-date {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(240, 236, 226, 0.5);
}

.letter-title {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 300;
  color: rgba(240, 236, 226, 0.88);
  line-height: 1.3;
  transition: color 0.3s;
}

.letter-title em { font-style: italic; }

.letter-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 1;
  white-space: nowrap;
}

.letter-empty {
  padding: 60px 0;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--white-faint);
}

/* ── Pagination ── */
.pagination {
  padding: 40px 60px;
  display: flex;
  gap: 20px;
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pagination a {
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.pagination a:hover { color: var(--white); }

/* ── Subscribe block ── */
.subscribe-section {
  padding: 80px 60px;
  opacity: 0;
  animation: rise 1s ease forwards;
  animation-delay: 0.8s;
}

.subscribe-inner {
  border: 1px solid rgba(156, 131, 84, 0.2);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sub-heading {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 12px;
}

.sub-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.65;
}

.sub-body em { font-style: italic; color: var(--gold-bright); }

.sub-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sub-form-inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  margin-top: 20px;
}

.sub-input {
  background: rgba(232, 228, 220, 0.05);
  border: 1px solid rgba(232, 228, 220, 0.15);
  padding: 14px 20px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.sub-form-inline .sub-input { width: auto; flex: 1; min-width: 200px; }

.sub-input::placeholder { color: var(--white-faint); }
.sub-input:focus { border-color: rgba(156, 131, 84, 0.5); }

.sub-btn {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  border: none;
  padding: 14px 32px;
  cursor: pointer;
  transition: background 0.3s;
  align-self: flex-start;
  white-space: nowrap;
}

.sub-btn:hover { background: var(--gold-bright); }

.sub-note {
  font-family: 'Geist Mono', monospace;
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--white-faint);
}

/* ── Post page ── */
.post-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 60px 0;
  opacity: 0;
  animation: rise 1.2s ease forwards;
  animation-delay: 0.3s;
}

.post-header {
  margin-bottom: 60px;
}

.post-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.post-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.post-date {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.16em;
  color: var(--white-faint);
}

.post-image {
  margin-bottom: 60px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.post-image img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0.9;
}

/* ── Post body typography ── */
.gh-content {
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--white-dim);
}

.gh-content p { margin-bottom: 28px; }
.gh-content p:first-child { color: var(--white); font-size: clamp(20px, 2vw, 24px); }

.gh-content h2 {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 300;
  color: var(--white);
  margin: 56px 0 24px;
  line-height: 1.2;
}

.gh-content h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  color: var(--white);
  margin: 40px 0 16px;
  font-style: italic;
}

.gh-content strong {
  font-weight: 400;
  color: var(--white);
}

.gh-content em {
  font-style: italic;
  color: var(--gold-bright);
}

.gh-content a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(156, 131, 84, 0.4);
  transition: border-color 0.3s;
}

.gh-content a:hover { border-color: var(--gold-bright); }

.gh-content blockquote {
  border-left: 1px solid var(--gold);
  padding-left: 28px;
  margin: 40px 0;
  font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic;
  color: var(--white-dim);
}

.gh-content hr {
  border: none;
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 56px 0;
}

.gh-content img {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px 0;
  opacity: 0.85;
}

/* Ghost card width classes — required */
.kg-width-wide {
  width: 85vw;
  max-width: 1200px;
  margin-left: calc(50% - 42.5vw);
}

.kg-width-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.kg-width-wide img,
.kg-width-full img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.85;
}

.gh-content figcaption {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--white-faint);
  margin-top: -28px;
  margin-bottom: 40px;
}

.gh-content ul, .gh-content ol {
  padding-left: 24px;
  margin-bottom: 28px;
}

.gh-content li {
  margin-bottom: 8px;
}

/* ── Post footer ── */
.post-footer {
  margin-top: 80px;
  padding: 60px 0 80px;
  border-top: 1px solid rgba(232, 228, 220, 0.07);
}

.post-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.back-link {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
  padding-top: 6px;
}

.back-link:hover { color: var(--white); }

.post-subscribe { max-width: 400px; }
.post-subscribe-text {
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: var(--white-dim);
  margin-bottom: 16px;
}

/* ── Footer ── */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 180px 36px 60px;
  opacity: 1;
}

.footer-left {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-faint);
}

.footer-right { display: flex; gap: 24px; }

.footer-right a {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-faint);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-right a:hover { color: var(--white-dim); }

/* ── Ghost Portal button override ── */
div[data-ghost-portal] iframe,
.gh-portal-triggerbtn-wrapper iframe {
  color-scheme: normal;
}

#ghost-portal-root div[data-testid="portal-trigger-button"],
.gh-portal-triggerbtn-container {
  background: var(--gold) !important;
}

/* Targets the rendered button via attribute injection */
[data-ghost="root"] .gh-portal-triggerbtn {
  background: var(--gold) !important;
}

/* ── Animations ── */
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 860px) {
  nav { padding: 20px 24px 0; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 8px; letter-spacing: 0.14em; }
  .wordmark { font-size: 16px; }
  .page-header, .letters-section, .subscribe-section, footer, .pagination { padding-left: 24px; padding-right: 24px; }
  .letter-item { grid-template-columns: 1fr auto; gap: 12px; }
  .letter-date { display: none; }
  .subscribe-inner { grid-template-columns: 1fr; padding: 28px 24px; }
  .post-container { padding: 80px 24px 0; }
  .post-footer-inner { flex-direction: column; gap: 32px; }
  .sub-form-inline { flex-direction: column; }
  .sub-form-inline .sub-input { width: 100%; }
}

@media (max-width: 480px) {
  nav { flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px 24px 0; }
  .wordmark { font-size: 16px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 8px; letter-spacing: 0.14em; }
  .home-roles { letter-spacing: 0.2em; font-size: 8px; }
  .seasons-row { grid-template-columns: repeat(2, 1fr); }
  .universe-cta-inner { gap: 32px; }
  .cta-btn { width: 100%; text-align: center; }
  .contact-inner { gap: 32px; }
  footer { padding: 0 24px 28px 24px; flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-right { gap: 16px; }
}

/* ══════════════════════════════════════
   HOMEPAGE — FILM POSTER
══════════════════════════════════════ */

.is-home body {
  overflow: hidden;
  height: 100vh;
}

.home-page {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 80px);
}

.home-page .home-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
  text-align: center;
}

.home-page footer {
  padding: 0 60px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.home-stage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
  position: relative;
  text-align: center;
}

.home-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
  animation: rise 1.4s ease forwards;
  animation-delay: 0.3s;
}

.home-roles {
  font-family: 'Geist Mono', monospace;
  font-size: clamp(8px, 1vw, 10px);
  font-weight: 300;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(240,236,226,0.45);
  margin-bottom: 24px;
}

.home-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(72px, 14vw, 140px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 0;
}

.home-underline {
  width: min(480px, 90vw);
  height: 1px;
  background: var(--gold);
  opacity: 0.9;
  margin: 20px 0 24px;
}

.home-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.12em;
  color: var(--white-dim);
  margin: 0;
}

.home-rule {
  width: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  margin: 52px 0;
  animation: widen-rule 1s ease forwards;
  animation-delay: 0.9s;
}

@keyframes widen-rule {
  from { width: 0; opacity: 0; }
  to   { width: 48px; opacity: 0.5; }
}

.home-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-dim);
  max-width: 520px;
  margin-bottom: 64px;
  opacity: 0;
  animation: rise 1.2s ease forwards;
  animation-delay: 1s;
}

.home-doors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 680px;
  opacity: 0;
  animation: rise 1.2s ease forwards;
  animation-delay: 1.3s;
}

.door {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 28px;
  background: rgba(232, 228, 220, 0.03);
  border: 1px solid rgba(232, 228, 220, 0.07);
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
}

.door:hover {
  background: rgba(156, 131, 84, 0.07);
  border-color: rgba(156, 131, 84, 0.25);
}

.door:hover .door-label { color: var(--white); }
.door:hover .door-arrow { opacity: 1; transform: translateX(4px); }

.door-label {
  font-size: 18px;
  font-weight: 300;
  color: rgba(240, 236, 226, 0.88);
  transition: color 0.3s;
}

.door-sub {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--white-faint);
  line-height: 1.5;
}

.door-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 14px;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

.home-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: rise 1s ease forwards;
  animation-delay: 2s;
}

.home-scroll-hint span {
  font-family: 'Geist Mono', monospace;
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-faint);
  writing-mode: vertical-rl;
}

.home-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white-faint), transparent);
}

/* Recent letters on homepage */
.home-recent {
  padding: 0 60px 100px;
  max-width: 820px;
  opacity: 0;
  animation: rise 1s ease forwards;
  animation-delay: 1.6s;
}

.home-recent-label {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-recent-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.2;
  max-width: 300px;
}

.home-recent-item {
  display: flex;
  gap: 32px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(232, 228, 220, 0.06);
  text-decoration: none;
  transition: border-color 0.3s;
}

.home-recent-item:first-of-type { border-top: 1px solid rgba(232, 228, 220, 0.06); }
.home-recent-item:hover { border-bottom-color: rgba(156, 131, 84, 0.2); }
.home-recent-item:hover .home-recent-title { color: var(--white); }

.home-recent-date {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--white-faint);
  white-space: nowrap;
  min-width: 100px;
}

.home-recent-title {
  font-size: 17px;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.3;
  transition: color 0.3s;
}

.home-recent-all {
  display: inline-block;
  margin-top: 24px;
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-faint);
  text-decoration: none;
  transition: color 0.3s;
}

.home-recent-all:hover { color: var(--white-dim); }

/* ══════════════════════════════════════
   WORK PAGE
══════════════════════════════════════ */

.work-section { padding: 60px 60px 0; }

.work-section-label {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.work-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.2;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}

.work-grid-three { grid-template-columns: 1fr 1fr 1fr; }

.work-item {
  position: relative;
  aspect-ratio: 16/9;
  background: rgba(232, 228, 220, 0.03);
  border: 1px solid rgba(232, 228, 220, 0.06);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: border-color 0.4s;
}

.work-grid-three .work-item { aspect-ratio: 3/4; }

.work-item:hover { border-color: rgba(156, 131, 84, 0.2); }

.work-item-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  opacity: 0.6;
}

.work-item:hover .work-item-bg { transform: scale(1.03); }

.work-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, transparent 60%);
  z-index: 1;
  transition: opacity 0.4s;
}

.work-item:hover::before { opacity: 0.6; }

.work-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  z-index: 2;
}

.work-item-label {
  font-family: 'Geist Mono', monospace;
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.work-item-title {
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}

.work-item-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--white-dim);
  margin-top: 4px;
  font-style: italic;
}

/* ══════════════════════════════════════
   UNIVERSE PAGE
══════════════════════════════════════ */

.universe-hero {
  padding: 140px 60px 0;
  max-width: 900px;
  opacity: 0;
  animation: rise 1.2s ease forwards;
  animation-delay: 0.3s;
}

.hero-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero-title {
  font-size: clamp(44px, 6.5vw, 86px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

.hero-title em { font-style: italic; color: var(--white-dim); }

.hero-body {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--white-dim);
  max-width: 640px;
}

.universe-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 80px 60px;
}

.season-block {
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  opacity: 0;
  animation: rise 1s ease forwards;
  animation-delay: 0.6s;
}

.season-meta { position: sticky; top: 80px; }

.season-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.season-name {
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.season-name em {
  font-style: italic;
  color: var(--gold-bright);
  display: block;
  font-size: 0.6em;
}

.season-place {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.16em;
  color: var(--white-dim);
  margin-top: 24px;
}

.season-details { padding-top: 8px; }

.detail-block { margin-bottom: 48px; }

.detail-label {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 12px;
}

.detail-text {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-dim);
}

.detail-text strong { font-weight: 400; color: var(--white); }

.arc-item {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.arc-num {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.6;
  padding-top: 3px;
  min-width: 20px;
}

.arc-text {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--white-dim);
}

.scope-section {
  padding: 80px 60px;
  border-top: 1px solid rgba(156, 131, 84, 0.12);
  margin-top: 80px;
  opacity: 0;
  animation: rise 1s ease forwards;
  animation-delay: 0.9s;
}

.scope-label {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.seasons-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.season-card {
  padding: 18px 14px;
  background: rgba(232, 228, 220, 0.02);
  border: 1px solid rgba(232, 228, 220, 0.05);
}

.active-card {
  background: rgba(156, 131, 84, 0.07);
  border-color: rgba(156, 131, 84, 0.25);
}

.sc-num {
  font-family: 'Geist Mono', monospace;
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 8px;
}

.sc-name {
  font-size: 14px;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.3;
}

.sc-active { color: var(--white); }

.sc-place {
  font-size: 11px;
  font-weight: 300;
  font-style: italic;
  color: var(--white-faint);
  margin-top: 4px;
}

.universe-cta {
  padding: 80px 60px;
  opacity: 0;
  animation: rise 1s ease forwards;
  animation-delay: 1.1s;
}

.universe-cta-inner {
  border-top: 1px solid rgba(156, 131, 84, 0.18);
  padding-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  flex-wrap: wrap;
}

.universe-cta-heading {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 12px;
}

.universe-cta-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 14px 32px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s;
  flex-shrink: 0;
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

.cta-btn:hover { background: var(--gold-bright); }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */

.about-grid {
  padding: 140px 60px 0;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  opacity: 0;
  animation: rise 1.2s ease forwards;
  animation-delay: 0.3s;
}

.portrait {
  width: 100%;
  aspect-ratio: 3/4;
  background: rgba(232, 228, 220, 0.04);
  border: 1px solid rgba(232, 228, 220, 0.08);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
}

.portrait::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(156, 131, 84, 0.12);
}

.portrait-name {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Geist Mono', monospace;
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-faint);
  white-space: nowrap;
}

.about-body p {
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--white-dim);
  margin-bottom: 28px;
}

.about-body p:first-child {
  font-size: clamp(19px, 1.9vw, 24px);
  color: var(--white);
}

.about-body p strong { font-weight: 400; color: var(--white); }
.about-body p em { font-style: italic; color: var(--gold-bright); }

.about-obsessions {
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(232, 228, 220, 0.07);
}

.obs-label {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 20px;
}

.obs-list { display: flex; flex-direction: column; gap: 12px; }

.obs-item { display: flex; gap: 16px; align-items: baseline; }

.obs-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  margin-top: 9px;
}

.obs-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.55;
}

.contact-section {
  padding: 80px 60px;
  opacity: 0;
  animation: rise 1s ease forwards;
  animation-delay: 0.6s;
}

.contact-inner {
  border-top: 1px solid rgba(156, 131, 84, 0.15);
  padding-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-heading {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.65;
}

.contact-links { display: flex; flex-direction: column; gap: 0; }

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(232, 228, 220, 0.07);
  transition: border-color 0.3s;
}

.contact-link:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-link:hover { border-bottom-color: rgba(156, 131, 84, 0.2); }
.contact-link:hover .contact-link-value { color: var(--white); }

.contact-link-label {
  font-family: 'Geist Mono', monospace;
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.contact-link-value {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 300;
  color: var(--white-dim);
  transition: color 0.3s;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 960px) {
  .home-stage, .home-recent { padding-left: 24px; padding-right: 24px; }
  .work-section { padding-left: 24px; padding-right: 24px; }
  .work-grid, .work-grid-three { grid-template-columns: 1fr; }
  .universe-hero, .season-block, .scope-section, .universe-cta { padding-left: 24px; padding-right: 24px; }
  .universe-rule { margin-left: 24px; margin-right: 24px; }
  .season-block { grid-template-columns: 1fr; gap: 48px; }
  .season-meta { position: static; }
  .seasons-row { grid-template-columns: repeat(3, 1fr); }
  .universe-cta-inner { flex-direction: column; align-items: flex-start; }
  .about-grid, .contact-section { padding-left: 24px; padding-right: 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .portrait { max-width: 260px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}
