/* ============================================================
 * <rdgmatos /> — styles.css
 * ============================================================
 * Folha de estilos completa do site. Organizada por seções:
 *
 *   1. Variáveis de marca (paleta Distant Light)
 *   2. Reset e base (body, scroll)
 *   3. Topbar / navegação / seletor de idioma
 *   4. Hero (pôster cinematográfico SotC + monograma)
 *   5. Capítulos (mark, título, body)
 *   6. Catálogo (cenas cinematográficas)
 *   7. Colaborações (cards compactos)
 *   8. Princípios (quadrante)
 *   9. Contato + Footer
 *  10. Scroll reveal + animações
 *  11. Responsivo
 * ============================================================ */

:root {
  --void:   #1A1814;
  --stone:  #2F2A24;
  --bistre: #5C5247;
  --dust:   #9E9384;
  --sand:   #D4C9B8;
  --mist:   #E8E3D8;
  --bone:   #F2EEE5;
  --glow:   #7BB8B8;
  --glow-dk:#5A9090;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bone);
  color: var(--stone);
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(123, 184, 184, 0.06), transparent 70%),
    linear-gradient(to bottom, var(--bone) 0%, var(--mist) 40%, var(--sand) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(47, 42, 36, 0.06) 1px, transparent 0);
  background-size: 14px 14px;
  z-index: 1;
  opacity: 0.7;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 30% at 50% 40%, rgba(242, 238, 229, 0.4), transparent 70%);
  z-index: 2;
}

.layer { position: relative; z-index: 10; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Jura', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--bistre);
  text-transform: uppercase;
  backdrop-filter: blur(8px) saturate(120%);
  background: linear-gradient(to bottom, rgba(242, 238, 229, 0.85), rgba(242, 238, 229, 0));
}
.topbar .mark {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--stone);
}
.topbar .mark .tag { color: var(--glow-dk); }

.topbar-right {
  display: flex;
  gap: 32px;
  align-items: center;
}
.topbar nav {
  display: flex;
  gap: 32px;
}
.topbar nav a {
  color: var(--bistre);
  text-decoration: none;
  position: relative;
  transition: color 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.topbar nav a:hover { color: var(--stone); }
.topbar nav a::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--glow-dk);
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.topbar nav a:hover::before {
  width: 24px;
  left: calc(50% - 12px);
}

/* SELETOR DE IDIOMA */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 32px;
  border-left: 1px solid var(--dust);
}
.lang-btn {
  background: none;
  border: none;
  color: var(--bistre);
  font-family: 'Jura', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.4s;
  text-decoration: none;
}
.lang-btn:hover { color: var(--stone); }
.lang-btn.active {
  color: var(--glow-dk);
  font-weight: 500;
}
.lang-divider {
  color: var(--dust);
  font-size: 11px;
  user-select: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  text-align: center;
}

/* PÔSTER cinematográfico — ocupa a hero inteira */
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  object-fit: cover;
}
/* sol pulsa suavemente */
.poster-sun { animation: posterSunBreath 12s ease-in-out infinite; transform-origin: 780px 340px; }
@keyframes posterSunBreath {
  0%, 100% { opacity: 0.92; }
  50%      { opacity: 1; }
}
/* god rays cintilam */
.poster-rays { mix-blend-mode: soft-light; animation: posterRayShimmer 16s ease-in-out infinite; }
@keyframes posterRayShimmer {
  0%, 100% { opacity: 0.24; }
  50%      { opacity: 0.4; }
}
/* pássaros derivam lentamente */
.poster-birds { animation: posterBirds 80s linear infinite; }
@keyframes posterBirds {
  0%   { transform: translateX(0); opacity: 0.4; }
  50%  { opacity: 0.4; }
  100% { transform: translateX(700px); opacity: 0; }
}

/* PARTÍCULAS — poeira flutuando */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  background: rgba(255, 250, 240, 0.9);
  border-radius: 50%;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-90vh) translateX(40px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero-prelude {
  font-family: 'Jura', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 64px;
  opacity: 0;
  animation: appearSlow 1.6s 0.2s forwards;
  text-shadow:
    0 0 12px var(--bone),
    0 0 16px var(--bone),
    0 0 24px rgba(242, 238, 229, 0.7);
}
.hero-prelude .glow-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--glow);
  margin: 0 16px;
  vertical-align: middle;
  box-shadow: 0 0 12px var(--glow);
  animation: breathe 4s ease-in-out infinite;
}

@keyframes appearSlow {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes breathe {
  0%, 100% { opacity: 0.6; box-shadow: 0 0 8px var(--glow); }
  50%      { opacity: 1;   box-shadow: 0 0 18px var(--glow); }
}

.hero-monogram-wrap {
  position: relative;
  display: inline-block;
  padding: 60px;
}
.hero-monogram-wrap::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(123, 184, 184, 0.20), transparent 70%);
  z-index: -1;
  animation: haloBreath 8s ease-in-out infinite;
}
@keyframes haloBreath {
  0%, 100% { transform: scale(1);    opacity: 0.7; }
  50%      { transform: scale(1.08); opacity: 1;   }
}

.hero-monogram {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: clamp(48px, 10vw, 132px);
  letter-spacing: -0.04em;
  line-height: 1;
  opacity: 0;
  animation: appearSlow 2s 0.6s forwards;
  white-space: nowrap;
}
.hero-monogram .tag {
  color: var(--glow-dk);
  transition: color 1.2s, text-shadow 1.2s;
}
.hero-monogram .name { color: var(--stone); }
.hero-monogram:hover .tag {
  color: var(--glow);
  text-shadow: 0 0 24px var(--glow);
}

.hero-tagline {
  font-family: 'Italiana', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--stone);
  margin: 24px 0 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: appearSlow 2s 1.2s forwards;
  text-shadow:
    0 0 20px var(--bone),
    0 0 24px var(--bone),
    0 0 36px rgba(242, 238, 229, 0.7);
}

.hero-divider {
  width: 32px;
  height: 1px;
  background: var(--glow-dk);
  margin: 24px auto;
  opacity: 0;
  animation: appearSlow 2s 1.4s forwards;
}

.hero-coda {
  font-family: 'Jura', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0;
  animation: appearSlow 2s 1.6s forwards;
  /* halo claro que abre espaço atrás do texto sobre o cenário */
  text-shadow:
    0 0 12px var(--bone),
    0 0 12px var(--bone),
    0 0 20px var(--bone),
    0 0 28px rgba(242, 238, 229, 0.8);
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-family: 'Jura', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  opacity: 0;
  animation: appearSlow 2s 2s forwards;
  text-shadow:
    0 0 12px var(--bone),
    0 0 12px var(--bone),
    0 0 20px var(--bone),
    0 0 28px rgba(242, 238, 229, 0.8);
}
.scroll-hint::after {
  content: "↓";
  display: block;
  margin-top: 12px;
  font-size: 14px;
  animation: bobDown 3s ease-in-out infinite;
  color: var(--glow-dk);
}
@keyframes bobDown {
  0%, 100% { transform: translateY(0);  opacity: 0.6; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
section.chapter {
  padding: 140px 40px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.chapter-mark {
  font-family: 'Jura', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--bistre);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.chapter-mark::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--glow-dk);
}
.chapter-mark .num { color: var(--stone); font-weight: 500; }

.chapter-title {
  font-family: 'Italiana', serif;
  font-size: clamp(40px, 6vw, 88px);
  color: var(--stone);
  margin-bottom: 60px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 12ch;
}
.chapter-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--glow-dk);
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto-body {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  line-height: 1.85;
  color: var(--stone);
  max-width: 640px;
}
.manifesto-body p { margin-bottom: 28px; }
.manifesto-body p:first-of-type::first-letter {
  font-family: 'Italiana', serif;
  font-size: 4em;
  float: left;
  line-height: 0.9;
  margin: 8px 12px 0 -2px;
  color: var(--glow-dk);
}
.manifesto-body em {
  font-style: italic;
  color: var(--bistre);
}

/* ============================================================
   CATÁLOGO — galeria narrativa cinematográfica
   ============================================================ */
.catalog { margin-top: 40px; }

.catalog-scene {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 480px;
  padding: 100px 0;
  border-top: 1px solid var(--dust);
  border-bottom: 1px solid var(--dust);
  text-decoration: none;
  color: inherit;
  position: relative;
}

/* PALCO — agora abriga a logo do produto */
.scene-stage {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg,
    rgba(232, 227, 216, 0.5) 0%,
    rgba(212, 201, 184, 0.3) 100%);
  border: 1px solid var(--dust);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.8s;
}
.catalog-scene:hover .scene-stage {
  border-color: var(--glow-dk);
}

.scene-stage::before, .scene-stage::after {
  content: "";
  position: absolute;
  width: 24px; height: 24px;
  opacity: 0.5;
  transition: opacity 0.8s, border-color 0.8s;
}
.scene-stage::before {
  top: 16px; left: 16px;
  border-top: 1px solid var(--bistre);
  border-left: 1px solid var(--bistre);
}
.scene-stage::after {
  bottom: 16px; right: 16px;
  border-bottom: 1px solid var(--bistre);
  border-right: 1px solid var(--bistre);
}
.catalog-scene:hover .scene-stage::before,
.catalog-scene:hover .scene-stage::after {
  border-color: var(--glow-dk);
  opacity: 1;
}

.scene-label {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: 'Jura', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bistre);
  z-index: 5;
}

/* Numeral romano gigante atrás */
.scene-bignum {
  position: absolute;
  font-family: 'Italiana', serif;
  font-size: 320px;
  color: var(--dust);
  opacity: 0.18;
  line-height: 0.85;
  user-select: none;
  pointer-events: none;
  transition: color 1s, opacity 1s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.catalog-scene:hover .scene-bignum {
  color: var(--glow-dk);
  opacity: 0.22;
}

/* LOGO DO PRODUTO — substitui o glifo SVG genérico */
.scene-product-logo {
  position: relative;
  z-index: 5;
  max-width: 60%;
  max-height: 60%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s;
  filter: drop-shadow(0 4px 20px rgba(47, 42, 36, 0.08));
}
.catalog-scene:hover .scene-product-logo {
  transform: scale(1.04);
  filter: drop-shadow(0 6px 28px rgba(90, 144, 144, 0.15));
}

/* TEXTO ao lado */
.scene-text { padding: 0 20px; }

.scene-roman {
  font-family: 'Italiana', serif;
  font-size: 18px;
  color: var(--glow-dk);
  letter-spacing: 0.3em;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.scene-roman::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--glow-dk);
}
.scene-name {
  font-family: 'Italiana', serif;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--stone);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  font-weight: 400;
  transition: color 0.8s;
}
.catalog-scene:hover .scene-name { color: var(--glow-dk); }

.scene-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--bistre);
  margin-bottom: 28px;
  line-height: 1.4;
}
.scene-desc {
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--bistre);
  margin-bottom: 32px;
}
.scene-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--dust);
  flex-wrap: wrap;
}
.scene-meta-item {
  font-family: 'Jura', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bistre);
}
.scene-meta-item strong {
  display: block;
  font-weight: 500;
  color: var(--stone);
  margin-top: 4px;
  font-family: 'Libre Baskerville', serif;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
}
.scene-meta-item.live strong {
  color: var(--glow-dk);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.scene-meta-item.live strong::before {
  content: "○";
  animation: breathe 3s ease-in-out infinite;
}
.scene-cta {
  font-family: 'Jura', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--glow-dk);
  transition: gap 0.6s, color 0.6s;
}
.catalog-scene:hover .scene-cta {
  gap: 20px;
  color: var(--glow-dk);
}

/* nota sob o catálogo */
.catalog-note {
  margin-top: 60px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--bistre);
  line-height: 1.5;
}
.catalog-note .glow-line {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--glow-dk);
  margin: 24px auto 0;
}

/* ============================================================
   COLABORAÇÕES — cards bem compactos, discretos
   ============================================================ */
.collabs-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--bistre);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.collabs-intro em {
  color: var(--glow-dk);
  font-style: italic;
}

/* grid 3-colunas compacto */
.collabs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
  max-width: 1000px;
}

/* card compacto: logo + nome empilhados, role/grego no canto */
.collab-card {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--dust);
  background: rgba(232, 227, 216, 0.18);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.5s, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.5s;
}
.collab-card:hover {
  border-color: var(--glow-dk);
  transform: translateX(3px);
  background: rgba(232, 227, 216, 0.32);
}

/* logo pequena à esquerda */
.collab-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.5s, transform 0.5s;
}
.collab-card:hover .collab-logo {
  opacity: 1;
  transform: scale(1.05);
}

/* corpo central: nome + domínio */
.collab-body {
  min-width: 0;
  overflow: hidden;
}
.collab-name {
  font-family: 'Italiana', serif;
  font-size: 18px;
  color: var(--stone);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 2px 0;
  letter-spacing: -0.01em;
  transition: color 0.5s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.collab-card:hover .collab-name { color: var(--glow-dk); }

.collab-domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--bistre);
  margin: 0;
  letter-spacing: 0;
  opacity: 0.75;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* só o grego à direita; role só na intro do capítulo agora */
.collab-meta {
  display: flex;
  align-items: center;
}
.collab-greek {
  font-family: 'Italiana', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--dust);
  line-height: 1;
  transition: color 0.5s;
}
.collab-card:hover .collab-greek {
  color: var(--glow-dk);
}

/* card "em aberto" — placeholder pra próxima colaboração */
.collab-empty {
  border-style: dashed;
  background: transparent;
  cursor: default;
  opacity: 0.55;
}
.collab-empty:hover {
  border-color: var(--dust);
  transform: none;
  background: transparent;
}
.collab-empty-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bistre);
}
.collab-name-empty {
  font-style: italic;
  color: var(--bistre);
}
.collab-empty:hover .collab-name { color: var(--bistre); }
.collab-empty:hover .collab-greek { color: var(--dust); }

/* mobile: empilha vertical */
@media (max-width: 768px) {
  .collabs-grid { grid-template-columns: 1fr; gap: 10px; }
  .collab-name { font-size: 17px; }
}
/* tablet: 2 colunas */
@media (min-width: 769px) and (max-width: 1100px) {
  .collabs-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PRINCÍPIOS
   ============================================================ */
.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 60px;
  margin-top: 40px;
}
.principle { position: relative; }
.principle-num {
  font-family: 'Italiana', serif;
  font-size: 48px;
  color: var(--glow-dk);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 400;
}
.principle-title {
  font-family: 'Italiana', serif;
  font-size: 28px;
  color: var(--stone);
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 400;
}
.principle-body {
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--bistre);
}

/* ============================================================
   CONTATO
   ============================================================ */
.contact {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 40px;
  position: relative;
  z-index: 10;
}
.contact-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(32px, 5vw, 60px);
  color: var(--stone);
  margin-bottom: 16px;
  line-height: 1.3;
  max-width: 900px;
  font-weight: 400;
}
.contact-quote em { color: var(--glow-dk); }
.contact-divider {
  width: 24px;
  height: 1px;
  background: var(--glow-dk);
  margin: 48px 0;
  box-shadow: 0 0 8px var(--glow);
}
.contact-eyebrow {
  font-family: 'Jura', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bistre);
  margin-bottom: 24px;
}
.contact-cta {
  font-family: 'Italiana', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--stone);
  text-decoration: none;
  position: relative;
  transition: color 0.6s;
  padding: 0 8px;
}
.contact-cta::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--glow-dk);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.contact-cta:hover { color: var(--glow-dk); }
.contact-cta:hover::after { transform: scaleX(1); }

.contact-channels {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  flex-wrap: wrap;
  justify-content: center;
}
.channel {
  font-family: 'Jura', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bistre);
  text-decoration: none;
  transition: color 0.6s;
  position: relative;
}
.channel::before {
  content: "·";
  color: var(--dust);
  margin-right: 16px;
}
.channel:first-child::before { display: none; }
.channel:hover { color: var(--stone); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 40px;
  border-top: 1px solid var(--dust);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Jura', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bistre);
  max-width: 1280px;
  margin: 80px auto 0;
  position: relative;
  z-index: 10;
}
footer .mark {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--stone);
}
footer .mark .tag { color: var(--glow-dk); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.2s ease-out, transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .topbar { padding: 16px 20px; font-size: 9px; }
  .topbar nav { display: none; }
  .lang-switch { padding-left: 0; border-left: none; }
  section.chapter { padding: 80px 20px; }
  .hero { padding: 0 20px; }
  .hero-monogram-wrap { padding: 30px; }
  .manifesto-body { font-size: 17px; }
  .catalog-scene {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 0;
    min-height: auto;
  }
  .scene-bignum { font-size: 200px; }
  .scene-name { font-size: 36px; }
  .scene-sub { font-size: 20px; }
  .scene-meta { gap: 20px; }
  .principles { grid-template-columns: 1fr; gap: 60px; }
  footer { flex-direction: column; gap: 16px; padding: 32px 20px; text-align: center; }
}
