/* ═══════════════════════════════════════════════════════════════
   OPEN NORTH — BRAND SITE
   main.css — sistema visual herdado do Open North Music,
   estendido para um brand/lifestyle site editorial.
   ═══════════════════════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
img, svg { display: block; max-width: 100%; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
input { font: inherit; }
ul { list-style: none; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
}

.icon { width: 1em; height: 1em; }

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--sp-4);
}

@media (min-width: 1920px) { .container { max-width: 1680px; } }

/* ── TYPE HELPERS ── */
.eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--red-bright);
}
.section-light .eyebrow { color: var(--red); }

/* Grandes chamadas editoriais — Oswald é o protagonista tipográfico da V2 */
.display-title {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: 0.01em;
  color: var(--cream-light);
}
.section-light .display-title { color: var(--bg); }

/* Assinatura da marca — ÚNICA exceção reservada à Rye (hero + wordmark) */
.brand-signature {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: var(--cream-light);
}

.heading-title {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.08;
  color: var(--cream-light);
}
.section-light .heading-title { color: var(--bg); }

.body-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--cream-dim);
  letter-spacing: 0.01em;
}
.section-light .body-text { color: var(--section-light-muted); }

/* ── LINK / CTA ── */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-light);
  border-bottom: 1px solid var(--red);
  padding-bottom: 6px;
  transition: gap var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.link-arrow .icon { width: 15px; height: 15px; color: var(--red-bright); transition: transform var(--dur-fast) var(--ease); }
.link-arrow:hover { gap: 15px; color: var(--red-bright); }
.link-arrow:hover .icon { transform: translateX(5px); }
.section-light .link-arrow { color: var(--bg); }

/* Bússola — leve rotação no hover, movimento de "agulha se ajustando" */
.brand-lockup .icon-compass { transition: transform 0.5s var(--ease); }
.brand-lockup:hover .icon-compass { transform: rotate(12deg); }
@media (prefers-reduced-motion: reduce) { .brand-lockup:hover .icon-compass { transform: none; } }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 26px;
  border: 1px solid var(--cream-light);
  color: var(--cream-light);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.btn:hover { background: var(--cream-light); color: var(--bg); }
.btn .icon { width: 15px; height: 15px; }

.btn-solid {
  background: var(--red);
  border-color: var(--red);
  color: var(--cream-light);
}
.btn-solid:hover { background: var(--red-bright); border-color: var(--red-bright); color: var(--cream-light); }

.ext-indicator { width: 11px; height: 11px; margin-left: 5px; opacity: 0.7; vertical-align: 2px; }

/* ── SR-ONLY ── */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; left: var(--sp-3); top: -60px;
  background: var(--red); color: var(--cream-light);
  padding: 12px 20px; z-index: 999; font-family: var(--font-heading);
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: var(--sp-3); }

/* ═══════════════ HEADER ═══════════════ */
.site-header {
  position: sticky; top: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--sp-4);
  background: rgba(6,6,5,0.68);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: background var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease), padding var(--dur-base) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(6,6,5,0.90);
  border-bottom-color: var(--line);
  padding-block: 14px;
}

.brand-lockup { display: flex; align-items: center; gap: 12px; }
.brand-lockup .icon-compass { width: 34px; height: 34px; color: var(--cream-light); flex-shrink: 0; }
.brand-wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand-wordmark strong {
  font-family: var(--font-heading); font-weight: 600; font-size: 17px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-light);
}
.brand-wordmark span {
  font-family: var(--font-heading); font-size: 8.5px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--red-bright);
  margin-top: 4px;
}

.nav-primary { display: flex; gap: var(--sp-4); }
.nav-primary a {
  font-family: var(--font-heading); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream);
  padding-bottom: 3px; border-bottom: 1px solid transparent;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.nav-primary a:hover { color: var(--cream-light); border-color: var(--red); }

.header-actions { display: flex; align-items: center; gap: var(--sp-4); }
.lang-select {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-heading); font-size: 11px; letter-spacing: 0.14em;
  color: var(--cream); text-transform: uppercase;
}
.lang-select select {
  background: transparent; color: inherit; font: inherit; border: none; cursor: pointer;
}
.lang-select select option { background: var(--bg-mid); color: var(--cream); }
.icon-btn { display: inline-flex; color: var(--cream); transition: color var(--dur-fast) var(--ease); }
.icon-btn .icon { width: 20px; height: 20px; }
.icon-btn:hover { color: var(--red-bright); }
.menu-toggle { display: none; }

/* Menu mobile via <details>/<summary> nativo — funciona sem JavaScript */
.mobile-nav { position: relative; display: none; }
.mobile-nav summary { list-style: none; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary.icon-btn { width: 22px; height: 22px; cursor: pointer; }
.mobile-nav[open] summary .icon use { display: none; }
.mobile-nav[open] summary::after {
  content: ''; display: block; width: 20px; height: 20px;
  background: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><line x1="5" y1="5" x2="19" y2="19" stroke="black" stroke-width="1.6"/><line x1="19" y1="5" x2="5" y2="19" stroke="black" stroke-width="1.6"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><line x1="5" y1="5" x2="19" y2="19" stroke="black" stroke-width="1.6"/><line x1="19" y1="5" x2="5" y2="19" stroke="black" stroke-width="1.6"/></svg>') center/contain no-repeat;
}

/* Painel vive FORA do <details> (evita bug de clipping de altura de
   `position:fixed` dentro de <details> em engines recentes) e é
   revelado via :has() — continua funcional sem JavaScript. */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 600;
  background: var(--bg);
  flex-direction: column;
  padding: 24px var(--sp-4) var(--sp-5);
  overflow-y: auto;
}
body:has(details.mobile-nav[open]) .mobile-menu { display: flex; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu nav { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-8); }
.mobile-menu nav a {
  font-family: var(--font-heading); font-weight: 600; font-size: 30px; color: var(--cream-light);
  letter-spacing: 0.01em; text-transform: uppercase;
}
.mobile-menu-tagline {
  margin-top: auto; font-family: var(--font-heading); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--red-bright);
}
.mobile-menu-langs { display: flex; gap: var(--sp-3); margin-top: var(--sp-4); }
.mobile-menu-langs button {
  font-family: var(--font-heading); font-size: 12px; letter-spacing: 0.16em;
  color: var(--cream-dim); text-transform: uppercase;
}
.mobile-menu-langs button[aria-current="true"] { color: var(--cream-light); border-bottom: 1px solid var(--red); }

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 38%; will-change: transform; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  /* Tratamento mínimo — só o suficiente para o texto respirar; a foto é protagonista */
  background: linear-gradient(100deg, rgba(6,6,5,0.82) 0%, rgba(6,6,5,0.42) 34%, rgba(6,6,5,0.05) 56%, transparent 72%),
              linear-gradient(to top, rgba(6,6,5,0.70) 0%, transparent 30%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: var(--sp-8) var(--sp-4) var(--sp-7);
  max-width: 620px;
}
.hero-compass { width: 58px; height: 58px; color: var(--cream-light); margin-bottom: var(--sp-3); }
.hero-title { font-size: clamp(52px, 8vw, 108px); }
.hero-tagline-pt {
  font-family: var(--font-heading); font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--red-bright); font-size: clamp(18px, 2.2vw, 26px);
  margin-top: var(--sp-2);
}
.hero-tagline-en {
  font-family: var(--font-heading); font-weight: 300; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--cream-light); font-size: clamp(13px, 1.4vw, 16px);
  margin-top: 10px;
}
.hero-cta { margin-top: var(--sp-5); }

.scroll-indicator {
  position: absolute; right: var(--sp-4); bottom: var(--sp-6); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  writing-mode: vertical-rl;
  font-family: var(--font-heading); font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--cream-dim);
}
.scroll-indicator .icon { writing-mode: horizontal-tb; width: 12px; height: 12px; animation: scrollpulse 2.2s var(--ease) infinite; }
@keyframes scrollpulse {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .scroll-indicator .icon { animation: none; } }

/* ═══════════════ MANIFESTO ═══════════════ */
.manifesto {
  display: grid;
  grid-template-columns: minmax(320px, 46%) 1fr;
}
.manifesto-text {
  background: var(--section-light-bg);
  color: var(--section-light-text);
  padding: var(--sp-8) var(--sp-6);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.manifesto-title { font-size: clamp(34px, 3.6vw, 52px); margin: var(--sp-2) 0 var(--sp-3); }
.manifesto-rule { width: 56px; height: 3px; background: var(--red); margin-bottom: var(--sp-3); }
.manifesto-media { position: relative; overflow: hidden; min-height: 420px; }
.manifesto-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.12) contrast(1.05); }
.manifesto-badge {
  position: absolute; top: var(--sp-4); right: var(--sp-4);
  width: 108px; height: 108px;
}
.manifesto-badge .badge-ring { animation: spin 48s linear infinite; transform-origin: center; }
@media (prefers-reduced-motion: reduce) { .manifesto-badge .badge-ring { animation: none; } }
@keyframes spin { to { transform: rotate(360deg); } }
.manifesto-badge .badge-core { color: var(--red-bright); }
.manifesto-badge text {
  font-family: var(--font-heading); font-size: 7.6px; letter-spacing: 0.28em;
  fill: var(--cream-light);
}

/* ═══════════════ TWO PERSPECTIVES. SAME NORTH. ═══════════════ */
.perspectives { position: relative; overflow: hidden; padding: var(--sp-8) 0; }
.perspectives-media { position: absolute; inset: 0; z-index: 0; }
.perspectives-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.perspectives-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(6,6,5,0.80) 0%, rgba(6,6,5,0.88) 60%, rgba(6,6,5,0.95) 100%);
}
/* Sem foto dedicada — gradiente natural (petróleo/carvão), consistente com o
   tratamento já usado no território "Direção" quando não há asset apropriado. */
.perspectives--no-media {
  background: radial-gradient(ellipse at 50% 0%, var(--petrol) 0%, var(--bg) 65%);
}
.perspectives .container { position: relative; z-index: 1; }
.perspectives-intro { max-width: 640px; margin-inline: auto; text-align: center; }
.perspectives-eyebrow { display: block; text-align: center; }
.perspectives-title { font-size: clamp(30px, 3.6vw, 48px); margin: var(--sp-2) 0 var(--sp-3); text-align: center; }
.perspectives-intro .body-text { text-align: center; margin-inline: auto; max-width: 52ch; }
.perspectives-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5);
  max-width: 900px; margin: var(--sp-7) auto 0;
}
.perspective-block {
  text-align: center; padding: var(--sp-5) var(--sp-4); border: 1px solid var(--line-mid);
  transition: border-color var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.perspective-block:hover { border-color: var(--red); transform: translateY(-3px); }
.perspective-kicker { display: block; font-family: var(--font-heading); font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--cream-dim); }
.perspective-designer { display: block; font-family: var(--font-body); font-size: 16px; font-style: italic; color: var(--cream); margin-top: 8px; }
.perspective-name { display: block; font-family: var(--font-heading); font-weight: 700; font-size: clamp(22px, 2.6vw, 28px); letter-spacing: 0.03em; text-transform: uppercase; color: var(--cream-light); margin-top: 10px; }
.perspective-block .link-arrow { justify-content: center; margin-top: var(--sp-3); }
.perspectives-tagline {
  text-align: center; margin-top: var(--sp-7); font-family: var(--font-heading); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--red-bright); font-size: 13px;
}

/* ═══════════════ COLLECTION ═══════════════ */
.collection {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse at 50% -10%, rgba(20,49,61,0.5) 0%, transparent 60%),
    repeating-linear-gradient(135deg, rgba(46,110,134,0.035) 0px, rgba(46,110,134,0.035) 1px, transparent 1px, transparent 14px);
  padding: var(--sp-8) 0;
}
.collection-head {
  display: grid; grid-template-columns: minmax(240px, 340px) 1fr; gap: var(--sp-5);
  align-items: end; margin-bottom: var(--sp-6);
}
.collection-title { font-size: clamp(32px, 3.4vw, 46px); margin: var(--sp-2) 0 var(--sp-2); }
.collection-grid-wrap { position: relative; }
.collection-grid {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr);
  gap: var(--sp-3); overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: var(--sp-2); scrollbar-width: none;
}
.collection-grid::-webkit-scrollbar { display: none; }
.product-card { scroll-snap-align: start; }
.product-card figure {
  background: var(--bg-soft); aspect-ratio: 4/5; overflow: hidden;
  border: 1px solid var(--line);
}
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.product-card:hover img { transform: scale(1.035); }
.product-card figure a { display: block; width: 100%; height: 100%; }
.product-card .product-meta { margin-top: var(--sp-2); }
.product-num { font-family: var(--font-heading); font-size: 12px; letter-spacing: 0.06em; color: var(--cream-light); font-weight: 600; }
.product-sub { font-family: var(--font-heading); font-size: 11px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; margin-top: 4px; }
.product-price { font-family: var(--font-heading); font-size: 13px; color: var(--red-bright); margin-top: 6px; letter-spacing: 0.04em; }
.product-buy {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 10px;
  font-family: var(--font-heading); font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cream-light); border-bottom: 1px solid var(--red);
  padding-bottom: 4px; transition: gap var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.product-buy .icon { width: 12px; height: 12px; color: var(--red-bright); }
.product-buy:hover { gap: 12px; color: var(--red-bright); }
.product-buy--disabled {
  color: var(--muted); border-bottom-color: var(--line-mid); cursor: default; pointer-events: none;
}
.product-variants { margin-top: var(--sp-2); }
.product-variant {
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 10px;
  padding: 7px 0; border-top: 1px solid var(--line);
}
.product-variant:first-child { border-top: none; padding-top: 0; }
.product-variant-name {
  font-family: var(--font-heading); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cream-light);
}
.product-variant-price {
  font-family: var(--font-heading); font-size: 11px; color: var(--red-bright); white-space: nowrap;
}
.product-variant .product-buy { margin-top: 0; font-size: 10px; gap: 6px; }
.product-variant .product-buy .icon { width: 10px; height: 10px; }
.product-variant .product-buy:hover { gap: 9px; }
.product-status {
  display: inline-block; margin-top: 6px; font-family: var(--font-heading);
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--line-mid); padding: 2px 7px;
}
.carousel-next {
  position: absolute; top: 50%; right: -14px; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--red);
  display: flex; align-items: center; justify-content: center; color: var(--red-bright);
  background: var(--bg); flex-shrink: 0;
}

/* ═══════════════ TERRITORIES — TERRA · AR · FOGO ═══════════════ */
.territories { display: grid; grid-template-columns: repeat(3, 1fr); }
.territory {
  position: relative; min-height: 440px; display: flex; flex-direction: column;
  justify-content: flex-end; padding: var(--sp-5); overflow: hidden;
  border-right: 1px solid var(--line-mid);
  transition: transform var(--dur-base) var(--ease);
}
.territory:hover { transform: translateY(-3px); }
.territory:last-child { border-right: none; }
.territory-media { position: absolute; inset: 0; z-index: 0; }
.territory-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.territory:hover .territory-media img { transform: scale(1.03); }
.territory-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,5,0.88), rgba(6,6,5,0.22) 60%); }
/* Terra — sem foto ainda: profundidade em gradiente natural (não decorativo genérico) */
.territory--direction .territory-media { background: radial-gradient(ellipse at 30% 20%, #1c2b1c 0%, var(--petrol) 55%, var(--bg) 100%); }
.territory--direction .territory-media::after { background: linear-gradient(to top, rgba(6,6,5,0.75), rgba(6,6,5,0.1) 65%); }
/* Fogo — sem foto ainda: calor em gradiente, sem virar bloco laranja chapado */
.territory--fire .territory-media { background: radial-gradient(ellipse at 70% 75%, var(--rust) 0%, #241209 48%, var(--bg) 100%); }
.territory--fire .territory-media::after { background: linear-gradient(to top, rgba(6,6,5,0.65), rgba(6,6,5,0.1) 65%); }
.territory-icon { width: 34px; height: 34px; color: var(--red-bright); margin-bottom: var(--sp-3); position: relative; z-index: 1; transition: transform 0.6s var(--ease); }
.territory:hover .territory-icon { transform: rotate(8deg); }
.territory-icon.icon-compass { color: var(--cream-light); opacity: 0.9; }
.territory-title { position: relative; z-index: 1; font-size: clamp(24px, 2.4vw, 32px); }
.territory-kicker { position: relative; z-index: 1; font-family: var(--font-heading); font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; margin-top: 6px; }
.territory--direction .territory-kicker { color: #8FAE7C; }
.territory--air .territory-kicker { color: #7FB8CE; }
.territory--fire .territory-kicker { color: var(--red-bright); }
.territory .body-text { position: relative; z-index: 1; margin: var(--sp-2) 0 var(--sp-3); max-width: 30ch; }
.territory .link-arrow { position: relative; z-index: 1; }

/* ═══════════════ STORIES / ITALIAN ROUTE ═══════════════ */
.stories { background: var(--section-light-bg); color: var(--section-light-text); padding: var(--sp-8) 0; }
.stories-head { display: grid; grid-template-columns: minmax(240px, 320px) 1fr; gap: var(--sp-5); align-items: end; margin-bottom: var(--sp-6); }
.stories-title { font-size: clamp(30px, 3.2vw, 42px); margin: var(--sp-2) 0 var(--sp-2); color: var(--bg); }
.stories-period { font-family: var(--font-heading); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: var(--sp-2); display: block; }

.chapter-grid-wrap { position: relative; }
.chapter-grid {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 1fr);
  gap: var(--sp-3); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
}
.chapter-grid::-webkit-scrollbar { display: none; }
.chapter-card {
  scroll-snap-align: start; position: relative; aspect-ratio: 3/4;
  background: var(--bg); overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--sp-3);
}
.chapter-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.chapter-card:hover img { transform: scale(1.04); }
.chapter-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,5,0.85), rgba(6,6,5,0.08) 62%); }
/* Capítulos ainda sem fotografia (02/03/04) — tratamento editorial neutro,
   nunca um card vazio: textura + leve tom de território (terra/ar conforme o capítulo) */
.chapter-card--empty { background: linear-gradient(155deg, var(--bg-soft) 0%, var(--petrol) 130%); }
.chapter-card--empty::after { background: linear-gradient(to top, rgba(6,6,5,0.55), rgba(6,6,5,0.15) 70%); }
.chapter-card--empty .chapter-name::after {
  content: 'Aguardando a viagem'; display: block; margin-top: 6px;
  font-family: var(--font-heading); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream-dim); opacity: 0.75;
}
.chapter-num { position: relative; z-index: 1; font-family: var(--font-display); font-size: 40px; color: var(--red-bright); opacity: 0.9; line-height: 1; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.chapter-name { position: relative; z-index: 1; font-family: var(--font-heading); font-weight: 600; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream-light); margin-top: 8px; }
.chapter-sub { position: relative; z-index: 1; font-family: var(--font-heading); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-dim); margin-top: 4px; }
.chapter-status {
  position: absolute; z-index: 1; top: var(--sp-2); right: var(--sp-2);
  font-family: var(--font-heading); font-size: 8.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream-dim); border: 1px solid rgba(200,185,154,0.3); padding: 2px 6px;
}

/* ═══════════════ ROADS WE SHARE ═══════════════ */
.roads { background: var(--bg); padding: var(--sp-8) 0; }
.roads-head { display: grid; grid-template-columns: minmax(240px, 320px) 1fr; gap: var(--sp-5); align-items: end; margin-bottom: var(--sp-6); }
.roads-title { font-size: clamp(30px, 3.2vw, 42px); margin: var(--sp-2) 0 var(--sp-2); }
.roads-grid { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(190px, 1fr); gap: var(--sp-3); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.roads-grid::-webkit-scrollbar { display: none; }
.road-card {
  scroll-snap-align: start; aspect-ratio: 4/5; overflow: hidden;
  border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--sp-3); position: relative;
}
.road-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.road-card:hover img { transform: scale(1.04); }
.road-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,5,0.88), rgba(6,6,5,0.05) 58%); }
.road-card .icon-compass { position: relative; z-index: 1; margin-bottom: auto; width: 20px; height: 20px; color: rgba(226,212,181,0.55); }
.road-card .road-loc { position: relative; z-index: 1; font-family: var(--font-heading); font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream-light); text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.road-card .road-handle { position: relative; z-index: 1; font-family: var(--font-body); font-size: 14px; color: var(--cream-dim); margin-top: 3px; }
.road-card .road-tag {
  position: absolute; z-index: 1; top: var(--sp-3); right: var(--sp-3);
  font-family: var(--font-heading); font-size: 8px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream-dim); border: 1px solid rgba(226,212,181,0.35); padding: 2px 6px; background: rgba(6,6,5,0.4);
}

/* ═══════════════ NEWSLETTER ═══════════════ */
.newsletter {
  /* Carvão + petróleo — vermelho reservado ao CTA e ao label, não ao banho geral */
  background: linear-gradient(115deg, var(--bg) 0%, var(--petrol) 100%);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: var(--sp-6) 0;
}
.newsletter .container { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: var(--sp-5); }
.newsletter-icon { width: 52px; height: 52px; color: var(--red-bright); }
.newsletter-title { font-size: clamp(30px, 3.4vw, 46px); }
.newsletter-copy p { font-family: var(--font-body); color: var(--cream-dim); font-size: 15px; margin-top: 6px; max-width: 42ch; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  background: transparent; border: 1px solid var(--line-mid); border-right: none;
  color: var(--cream-light); padding: 14px 18px; min-width: 220px; font-size: 15px;
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form input:invalid:not(:placeholder-shown) { border-color: var(--red-bright); }
.newsletter-form button {
  background: var(--red); color: var(--cream-light); padding: 14px 22px;
  font-family: var(--font-heading); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; display: flex; align-items: center; gap: 8px;
  transition: background var(--dur-fast) var(--ease);
}
.newsletter-form button:hover { background: var(--red-bright); }
.newsletter-note { grid-column: 1 / -1; font-family: var(--font-heading); font-size: 10.5px; letter-spacing: 0.08em; color: var(--muted); margin-top: var(--sp-2); display: none; }
.newsletter-note.is-visible { display: block; }

/* ═══════════════ FOOTER ═══════════════ */
.site-footer { background: #030303; padding: var(--sp-7) 0 var(--sp-5); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(5, 1fr); gap: var(--sp-4); }
.footer-brand .brand-lockup { margin-bottom: var(--sp-2); }
.footer-tagline { font-family: var(--font-heading); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-dim); line-height: 1.8; }
.footer-col h3 { font-family: var(--font-heading); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-light); margin-bottom: var(--sp-3); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-family: var(--font-body); font-size: 15px; color: var(--muted); transition: color var(--dur-fast) var(--ease); }
.footer-col a:hover { color: var(--cream-light); }
.footer-bottom {
  margin-top: var(--sp-7); padding-top: var(--sp-4); border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--sp-2);
}
.footer-bottom p { font-family: var(--font-body); font-size: 13px; color: var(--muted); }

/* ═══════════════ REDIRECT (compatibilidade de rotas antigas) ═══════════════ */
.redirect-screen {
  min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: var(--sp-8) var(--sp-4); gap: var(--sp-3);
  background: radial-gradient(ellipse at 50% 30%, var(--petrol) 0%, var(--bg) 70%);
}
.redirect-screen .icon-compass { width: 40px; height: 40px; color: var(--cream-dim); margin-bottom: var(--sp-2); }
.redirect-screen p { font-family: var(--font-body); color: var(--cream-dim); font-size: 16px; }

/* ═══════════════ PAGE BAND (páginas internas) ═══════════════
   Direção "mediterrânea/costeira" nas páginas internas: fio de verde-musgo
   (presença mínima, ~5%, "green is presence, not palette") esfriando para
   petróleo e depois para o preto-base — nunca o marrom/vintage western que
   Rye + vermelho sozinhos produziam aqui antes. */
.page-band {
  padding: var(--sp-8) 0 var(--sp-7); border-bottom: 1px solid var(--line);
  background: linear-gradient(165deg, var(--moss) 0%, var(--petrol) 5%, var(--bg-mid) 40%, var(--bg) 100%);
}
.page-band .display-title { font-size: clamp(38px, 5vw, 64px); margin: var(--sp-2) 0 var(--sp-3); }
.page-band .body-text { max-width: 60ch; font-size: 18px; }
.page-note {
  display: inline-block; margin-top: var(--sp-4); font-family: var(--font-heading);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--line-mid); padding: 8px 14px;
}
.page-body {
  padding: var(--sp-7) 0;
  background: radial-gradient(ellipse at 50% -15%, rgba(20,49,61,0.4) 0%, transparent 55%), var(--bg);
}
/* Faixa editorial horizontal — reutilizável em Women/Routes/Sound/About.
   Fotografia como atmosfera, não como produto (ver EDITORIAL ≠ PRODUTO). */
.page-media { position: relative; overflow: hidden; aspect-ratio: 21 / 9; margin-bottom: var(--sp-2); }
.page-media img { width: 100%; height: 100%; object-fit: cover; }
.page-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,5,0.6) 0%, transparent 40%),
              linear-gradient(115deg, rgba(6,6,5,0.35) 0%, transparent 45%);
}
.page-media-caption {
  position: absolute; left: var(--sp-4); bottom: var(--sp-3); z-index: 1;
  font-family: var(--font-heading); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cream-dim);
}
@media (max-width: 900px) { .page-media { aspect-ratio: 4 / 3; } }
/* Fonte fotográfica naturalmente quente (ex.: origin.jpg, luz de estúdio) —
   resfria a leitura sem alterar o arquivo, evitando reintroduzir sépia. */
.page-media--cool img { filter: saturate(0.75) sepia(0.12) hue-rotate(155deg) brightness(0.95); }
.page-media--cool::after { background: linear-gradient(to top, rgba(6,6,5,0.65) 0%, rgba(20,49,61,0.3) 45%, rgba(20,49,61,0.15) 100%); }

/* Feature do Drop 001 na página /collections/ — uma imagem, não as três repetidas */
.collection-feature {
  display: grid; grid-template-columns: 220px 1fr; gap: var(--sp-4); align-items: center;
  padding: var(--sp-3) 0; border-bottom: 1px solid var(--line);
}
.collection-feature figure { aspect-ratio: 4/5; overflow: hidden; background: var(--bg-soft); }
.collection-feature img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px) { .collection-feature { grid-template-columns: 1fr; } .collection-feature figure { max-width: 160px; } }

.page-chapters { display: flex; flex-direction: column; gap: var(--sp-3); max-width: 760px; }
.page-chapter { display: grid; grid-template-columns: 64px 1fr auto; gap: var(--sp-3); align-items: baseline; padding: var(--sp-3) 0; border-bottom: 1px solid var(--line); }
.page-chapter-num { font-family: var(--font-heading); font-weight: 700; font-size: 22px; letter-spacing: 0.02em; color: var(--red-bright); }
.page-chapter-title { font-family: var(--font-heading); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--cream-light); }
.page-chapter-sub { font-family: var(--font-heading); font-size: 12px; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; margin-top: 3px; }
.page-chapter-status { font-family: var(--font-heading); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }

/* ═══════════════ SCROLL REVEAL ═══════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

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

/* Tablet (768px) */
@media (max-width: 1024px) {
  .nav-primary { display: none; }
  .mobile-nav { display: block; }
  .mobile-nav .menu-toggle { display: inline-flex; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-media { min-height: 320px; }
  .territories { grid-template-columns: 1fr; }
  .territory { border-right: none; border-bottom: 1px solid var(--line-mid); min-height: 320px; }
  .territory:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: var(--sp-5); }
  .footer-brand { grid-column: 1 / -1; }
  .newsletter .container { grid-template-columns: 1fr; text-align: left; }
  .newsletter-form { flex-wrap: wrap; }
}

/* Mobile (≤640px) */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .site-header { padding: 16px var(--sp-3); }
  .brand-wordmark strong { font-size: 14px; }
  .brand-lockup .icon-compass { width: 28px; height: 28px; }
  .hero { min-height: 100svh; }
  .hero-media img { object-position: 44% 32%; }
  .hero-content { padding: var(--sp-6) var(--sp-3) var(--sp-6); max-width: 100%; }
  .hero-title { font-size: clamp(44px, 15vw, 64px); }
  .scroll-indicator { display: none; }

  .collection-head, .stories-head, .roads-head { grid-template-columns: 1fr; gap: var(--sp-3); }
  .perspectives-grid { grid-template-columns: 1fr; gap: var(--sp-3); }
  .perspectives { padding: var(--sp-6) 0; }
  .collection, .stories, .roads { padding: var(--sp-6) 0; }
  .collection-grid, .chapter-grid, .roads-grid { padding-inline: var(--sp-3); margin-inline: calc(var(--sp-3) * -1); }
  .collection .container, .stories .container, .roads .container { padding-inline: var(--sp-3); }
  .carousel-next { display: none; }

  .manifesto-text { padding: var(--sp-6) var(--sp-3); }
  .manifesto-media { min-height: 280px; }
  .manifesto-badge { width: 76px; height: 76px; }

  .newsletter .container { padding-inline: var(--sp-3); }
  .newsletter-form { width: 100%; flex-direction: column; gap: 10px; }
  .newsletter-form input { border-right: 1px solid var(--line-mid); width: 100%; }
  .newsletter-form button { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .container { padding-inline: var(--sp-3); }
}

/* Wide desktop (≥1920px) fine-tune */
@media (min-width: 1920px) {
  .hero-title { font-size: 118px; }
}

/* No-JS fallback: reveal fica sempre visível (sem IntersectionObserver);
   o menu mobile continua funcional nativamente via <details>/<summary>. */
.no-js .reveal { opacity: 1; transform: none; }
.no-js .ext-indicator { display: none; }
