@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Inter:wght@300;400;500&family=Playfair+Display:ital,wght@1,400;1,700&display=swap');

/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
:root {
  --black:  #071527;
  --ink:    #0c1d35;
  --ink2:   #102240;
  --ink3:   #162d54;
  --line:   #1f3d6a;
  --fog:    #f2ede0;
  --fog2:   #e8e2d4;
  --fog3:   #d4cdb8;
  --mist:   #3c3428;
  --white:  #faf6ea;
  --red:    #f6b22e;
  --amber:  #f6b22e;
  --surface:#102240;
  --accent: #f6b22e;
  --border: rgba(255,255,255,0.09);
  --text:   #faf6ea;
  --text-muted: rgba(250,246,234,0.70);
  --r:      4px;

  --f-head: 'Oswald', sans-serif;
  --f-body: 'Inter', sans-serif;
  --f-data: 'Courier New', monospace;
  --f-serif:'Playfair Display', serif;

  --ease:   cubic-bezier(0.25, 1, 0.5, 1);
  --ease2:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════════════════════════
   BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--f-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }


/* ═══════════════════════════════════════
   SCROLL PROGRESS
═══════════════════════════════════════ */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--red);
  z-index: 1002;
  transition: width 0.08s linear;
}

/* ═══════════════════════════════════════
   PRELOADER
═══════════════════════════════════════ */
.preloader {
  position: fixed; inset: 0;
  z-index: 9998;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s var(--ease2), visibility 0.7s;
}
.preloader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.pl-inner { text-align: center; }
.pl-logo {
  font-family: var(--f-head);
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(245,245,247,0.9);
  overflow: hidden;
  margin-bottom: 20px;
}
.pl-logo span { display: block; }
.pl-line { width: 100px; height: 1px; background: var(--line); margin: 0 auto; overflow: hidden; }
.pl-fill { height: 100%; width: 0; background: var(--red); animation: plFill 1s var(--ease2) 0.2s forwards; }
@keyframes plFill { to { width: 100%; } }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 36px;
  background: rgba(0,0,0,0);
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.dark {
  background: rgba(7,21,39,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  margin-right: auto;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
}
.nav-logo strong { font-weight: 700; display: block; }
.nav-logo span {
  font-family: var(--f-body);
  font-size: 0.64rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(245,245,247,0.90);
  text-transform: none;
}
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  height: 70px;
}
.nav-links li { height: 100%; display: flex; align-items: stretch; }
.nav-links a {
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-family: var(--f-head);
  font-size: 1.0rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250,246,234,0.88);
  border-bottom: 1.5px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: rgba(250,246,234,0.95); }
.nav-links a.active { color: var(--white); border-bottom-color: var(--accent); }
.nav-lang {
  display: flex; align-items: center; gap: 2px;
  padding-left: 12px; margin-left: 6px;
  border-left: 1px solid var(--line); height: 100%;
}
.nav-lang a { border-bottom: none; padding: 5px 10px; font-size: 0.82rem; border-radius: 4px; transition: background 0.15s; }
.nav-lang a:hover { background: rgba(255,255,255,0.09); color: var(--white); }
.nav-lang .lang-active { background: rgba(246,178,46,0.14); color: var(--accent) !important; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  padding: 8px; margin-left: 10px;
}
.nav-burger span { display: block; width: 20px; height: 1.5px; background: var(--white); transition: all 0.2s; }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════
   SECTION 1 — INTRO
═══════════════════════════════════════ */
.intro {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  padding-top: 70px;
}

/* background photo */
.intro-bg { position: absolute; inset: 0; z-index: 0; }
.intro-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  filter: brightness(0.55) saturate(0.70);
  transform: scale(1.05);
  animation: introZoom 12s ease forwards;
}
@keyframes introZoom { to { transform: scale(1); } }
.intro-bg-fade {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.22) 60%,
    transparent 100%
  );
}

/* content */
.intro-body {
  position: relative; z-index: 2;
  padding: 0 clamp(24px, 5vw, 120px);
  max-width: 900px;
}
.intro-eyebrow {
  display: block;
  font-family: var(--f-head);
  font-size: 0.74rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease2) 1.3s forwards;
}
.intro-h1 {
  display: flex;
  flex-direction: column;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(60px, 10vw, 148px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.intro-h1 span {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: lineUp 0.9s var(--ease2) forwards;
}
.intro-h1 span:nth-child(1) { animation-delay: 1.4s; }
.intro-h1 span:nth-child(2) { animation-delay: 1.55s; }
.intro-h1 span:nth-child(3) { animation-delay: 1.7s; }
.intro-h1 .accent { color: var(--red); }

.intro-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  font-weight: 300;
  color: rgba(245,245,247,0.92);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 460px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease2) 1.95s forwards;
}

.intro-scroll-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-head);
  font-size: 0.80rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245,245,247,0.88);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease2) 2.1s forwards;
  transition: color 0.2s;
}
.intro-scroll-cta:hover { color: rgba(245,245,247,0.98); }
.intro-scroll-cta svg { animation: bounce 1.6s ease-in-out 2.5s infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

/* bottom stats bar */
.intro-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.istat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.istat:last-child { border-right: none; }
.istat b {
  font-family: var(--f-data);
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  display: block;
}
.istat s {
  text-decoration: none;
  font-family: var(--f-head);
  font-size: 0.68rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245,245,247,0.90);
  margin-top: 4px;
  display: block;
}
.istat-sep { width: 1px; background: rgba(255,255,255,0.06); }

/* keyframes */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes lineUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════
   SECTION 2 — SHOWCASE (sticky + scroll)
═══════════════════════════════════════ */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
}

/* sticky left */
.showcase-stage {
  position: sticky;
  top: 70px;
  height: calc(100svh - 70px);
  overflow: hidden;
}
.showcase-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.75) saturate(0.85);
  transition: opacity 0.5s var(--ease2);
}
.showcase-photo.fade { opacity: 0; }
.showcase-photo-label {
  position: absolute;
  bottom: 60px; left: 24px;
  font-family: var(--f-data);
  font-size: 0.78rem;
  color: rgba(245,245,247,0.92);
  background: rgba(0,0,0,0.5);
  padding: 4px 10px;
  border-left: 2px solid var(--red);
  transition: opacity 0.3s;
}
.showcase-dots {
  position: absolute;
  bottom: 24px; left: 24px;
  display: flex; gap: 8px;
}
.dot {
  width: 24px; height: 2px;
  background: rgba(245,245,247,0.2);
  transition: background 0.3s, width 0.3s;
  display: block;
}
.dot.active { background: var(--red); width: 40px; }

/* scrollable right panels */
.showcase-panels { /* natural height */ }
.showcase-panel {
  min-height: calc(100svh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 80px;
  border-bottom: 1px solid var(--line);
}
.showcase-panel:last-child { border-bottom: none; }
.sp-num {
  font-family: var(--f-data);
  font-size: 0.84rem;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}
.sp-tag {
  font-family: var(--f-head);
  font-size: 0.72rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(245,245,247,0.85);
  margin-bottom: 16px;
  display: block;
}
.sp-name {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 20px;
}
.sp-desc {
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(245,245,247,0.92);
  line-height: 1.85;
  max-width: 380px;
  margin-bottom: 32px;
}
.sp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-head);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245,245,247,0.90);
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(245,245,247,0.45);
  transition: color 0.2s, border-color 0.2s;
}
.sp-link:hover { color: var(--white); border-color: var(--white); }
.sp-link span { transition: transform 0.2s; }
.sp-link:hover span { transform: translateX(4px); }

/* ═══════════════════════════════════════
   SECTION 3 — QUOTE
═══════════════════════════════════════ */
.quote-section {
  background: var(--black);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 32px;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red) 30%, transparent 70%);
}
.qs-inner { max-width: 860px; text-align: center; }
.qs-label {
  display: block;
  font-family: var(--f-head);
  font-size: 0.72rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--amber);
  margin-bottom: 36px;
}
.qs-text {
  font-family: var(--f-serif);
  font-size: clamp(1.2rem, 2.3vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(245,245,247,0.96);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   SECTION 4 — STORY (sticky scroll)
═══════════════════════════════════════ */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink2);
}
.story-sticky {
  position: sticky;
  top: 70px;
  height: calc(100svh - 70px);
  overflow: hidden;
}
.story-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.68) saturate(0.8);
  transform: scale(1.06);
  transition: transform 0.1s linear;
  will-change: transform;
}
.story-chapters { /* natural height */ }
.story-chapter {
  min-height: calc(100svh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 72px;
  border-bottom: 1px solid var(--line);
}
.story-chapter:last-child { border-bottom: none; }
.sc-tag {
  display: block;
  font-family: var(--f-data);
  font-size: 0.78rem;
  color: var(--red);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.sc-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  text-transform: uppercase;
  line-height: 0.96;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.sc-body {
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(245,245,247,0.92);
  line-height: 1.88;
  max-width: 380px;
  margin-bottom: 28px;
}
.sc-cta {
  font-family: var(--f-head);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245,245,247,0.85);
  border-bottom: 1px solid rgba(245,245,247,0.40);
  padding-bottom: 3px;
  display: inline-block;
  transition: color 0.2s, border-color 0.2s;
}
.sc-cta:hover { color: var(--white); border-color: var(--white); }

/* ═══════════════════════════════════════
   SECTION 5 — FLY (fullscreen CTA)
═══════════════════════════════════════ */
.fly {
  background: var(--red);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
}
.fly-inner { text-align: center; max-width: 700px; }
.fly-tag {
  display: block;
  font-family: var(--f-head);
  font-size: 0.56rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(12,29,53,0.60);
  margin-bottom: 20px;
}
.fly-h2 {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 5rem);
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: #0c1d35;
  margin-bottom: 20px;
}
.fly-p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(12,29,53,0.72);
  line-height: 1.75;
  margin-bottom: 40px;
}
.fly-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-red {
  font-family: var(--f-head);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 14px 32px;
  background: #0c1d35;
  color: var(--red);
  border: 1.5px solid #0c1d35;
  transition: background 0.15s, color 0.15s;
  display: inline-block;
}
.btn-red:hover { background: transparent; color: #0c1d35; border-color: #0c1d35; }
.btn-clear {
  font-family: var(--f-head);
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 14px 32px;
  background: transparent;
  color: rgba(12,29,53,0.65);
  border: 1.5px solid rgba(12,29,53,0.3);
  transition: color 0.15s, border-color 0.15s;
  display: inline-block;
}
.btn-clear:hover { color: #0c1d35; border-color: rgba(12,29,53,0.7); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 64px 0 0;
}
.ft-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.ft-brand strong {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}
.ft-brand p { font-size: 0.8rem; color: rgba(245,245,247,0.88); line-height: 1.78; }
.ft-logo-img { width: 220px; display: block; margin-bottom: 20px; border-radius: 4px; opacity: 0.9; }
@media (max-width: 560px) { .ft-logo-img { width: 80%; } }
.ft-col h4 {
  font-family: var(--f-head);
  font-size: 0.68rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--amber);
  margin-bottom: 14px;
}
.ft-col ul { list-style: none; }
.ft-col li + li { margin-top: 9px; }
.ft-col a { font-size: 0.92rem; color: rgba(245,245,247,0.82); transition: color 0.15s; }
.ft-col a:hover { color: var(--white); }
.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 12px;
  flex-wrap: wrap;
}
.ft-bottom p {
  font-family: var(--f-head);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245,245,247,0.68);
}

/* ═══════════════════════════════════════
   INNER PAGE HERO
═══════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 130px 0 72px;
  background: var(--black);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 70px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--red) 0%, transparent 60%);
  z-index: 2;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.45) saturate(0.60);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-head);
  font-size: 0.70rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block; width: 16px; height: 1px;
  background: var(--amber);
}
.page-hero .section-label { color: var(--amber); }
.section-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
}
.divider { width: 28px; height: 1.5px; background: var(--red); margin: 18px 0; }
.lead {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.82;
  color: rgba(245,245,247,0.92);
}

/* ═══════════════════════════════════════
   INNER PAGE CONTENT
═══════════════════════════════════════ */
.section { padding: 88px 0; background: var(--fog); color: var(--ink); }
.section.dark-bg { background: var(--ink2); color: var(--white); }
.section .section-title { color: var(--ink); }
.section.dark-bg .section-title { color: var(--white); }
.section .section-label { color: var(--ink2); }
.section .section-label::before { background: var(--red); }
.section.dark-bg .section-label { color: var(--amber); }
.section.dark-bg .section-label::before { background: var(--amber); }
.section.dark-bg .lead { color: rgba(245,245,247,0.92); }
.section .lead { color: var(--mist); }
.section .card-tag { color: var(--ink2); }
.band { background: var(--ink2); color: var(--white); }
.band .section-title { color: var(--white); }
.band .lead { color: rgba(245,245,247,0.92); }
.section.band .section-label,
aside .section-label { color: var(--amber); }
.section.band .section-label::before,
aside .section-label::before { background: var(--amber); }
.section.band .card-tag { color: var(--amber); }
.band .prose { color: rgba(245,245,247,0.90); }
.band .prose strong { color: var(--white); }
aside .tl-text { color: rgba(245,245,247,0.80); }
aside .timeline::before { background: var(--line); }

/* two-col */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col > * { min-width: 0; }

/* history article layout */
.history-layout,
.history-layout-narrow {
  display: grid;
  gap: 72px;
  align-items: start;
}
.history-layout { grid-template-columns: 2fr 1fr; }
.history-layout-narrow { grid-template-columns: 3fr 1fr; }
.history-layout > *,
.history-layout-narrow > * { min-width: 0; }

/* inline article figure */
.prose figure { margin: 32px 0 36px; }
.prose figcaption {
  font-family: var(--f-data);
  font-size: 0.75rem;
  color: var(--mist);
  margin-top: 8px;
}
.col-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* prose */
.prose { font-size: 1.05rem; line-height: 1.9; color: var(--ink); }
.section .prose strong { color: var(--ink); }
.section.band .prose strong { color: var(--white); }
.section table td, .section table th { color: var(--ink); }
.band .prose .blockquote {
  background: rgba(255,255,255,0.07);
  border-left-color: var(--amber);
}
.band .prose .blockquote p { color: rgba(245,245,247,0.90); font-style: italic; }
.band .prose .blockquote cite { color: rgba(245,245,247,0.52); }
.prose p + p { margin-top: 1.2em; }
.blockquote {
  border-left: 3px solid var(--ink3);
  padding: 14px 22px;
  margin: 28px 0;
  background: var(--fog2);
}
.blockquote p { font-style: italic; font-size: 0.975rem; }
.blockquote cite {
  display: block; margin-top: 8px;
  font-size: 0.66rem; font-style: normal; color: var(--mist);
  font-family: var(--f-head); text-transform: uppercase; letter-spacing: 0.14em;
}

/* timeline */
.timeline { position: relative; padding-left: 24px; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px; background: var(--fog3);
}
.tl-item { position: relative; padding: 0 0 32px 24px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute; left: -3px; top: 5px;
  width: 7px; height: 7px; background: var(--red); border-radius: 50%;
}
.tl-year { font-family: var(--f-data); font-size: 0.82rem; color: var(--red); margin-bottom: 4px; }
.tl-text { font-size: 1rem; color: var(--mist); line-height: 1.65; }

/* specs */
.specs-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--fog3); }
.specs-grid-3 > div { background: var(--fog); }
.specs-grid-3 table td { font-family: var(--f-data); font-size: 0.84rem; }

/* cards */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--fog3); }
.card { background: var(--fog); transition: background 0.18s; }
.card:hover { background: var(--fog2); }
.card-body { padding: 30px; }
.card-tag {
  display: inline-block;
  font-family: var(--f-head); font-size: 0.70rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.24em; color: var(--red); margin-bottom: 10px;
}
.card-title {
  font-family: var(--f-head); font-weight: 600; font-size: 1.15rem;
  text-transform: uppercase; color: var(--ink); margin-bottom: 10px; line-height: 1.2;
}
.card-desc { font-size: 1rem; color: var(--mist); line-height: 1.78; }

/* news */
.news-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; flex-wrap: wrap; }
.news-date { font-family: var(--f-data); font-size: 0.82rem; color: var(--mist); }
.news-title {
  font-family: var(--f-head); font-size: clamp(1.1rem, 2vw, 1.6rem); font-weight: 700;
  text-transform: uppercase; color: var(--ink); margin-bottom: 16px; line-height: 1.1;
}
.news-body p { font-size: 1.02rem; color: var(--mist); line-height: 1.82; }
.news-body p + p { margin-top: 1em; }
.news-hr { border: none; border-top: 1px solid var(--fog3); margin: 48px 0; }

/* doc list */
.doc-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 18px;
  background: var(--fog2); border: 1px solid var(--fog3); border-radius: var(--r);
  color: var(--ink); transition: background 0.15s;
}
.doc-row:hover { background: var(--fog3); }
.doc-icon {
  font-family: var(--f-data); font-size: 0.68rem; font-weight: 700;
  color: var(--white); background: var(--ink2);
  padding: 4px 8px; flex-shrink: 0; border-radius: 2px; margin-top: 2px;
}
.doc-info { flex: 1; }
.doc-info strong { display: block; font-size: 0.95rem; color: var(--ink); margin-bottom: 3px; }
.doc-info span { font-size: 0.85rem; color: var(--mist); line-height: 1.5; }
.doc-size { font-family: var(--f-data); font-size: 0.75rem; color: var(--mist); flex-shrink: 0; align-self: center; }

/* footer inside pages */
.footer .container,
.footer-grid { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.footer { background: var(--ink); border-top: 1px solid var(--line); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.footer-brand strong { font-family: var(--f-head); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.8rem; color: rgba(245,245,247,0.88); line-height: 1.78; }
.footer-col h4 { font-family: var(--f-head); font-size: 0.68rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.26em; color: var(--amber); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li + li { margin-top: 9px; }
.footer-col a { font-size: 0.92rem; color: rgba(245,245,247,0.82); transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; gap: 12px; flex-wrap: wrap; }
.footer-bottom p { font-family: var(--f-head); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(245,245,247,0.60); }

/* reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease2), transform 0.65s var(--ease2); }
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   MOBILE NAV
═══════════════════════════════════════ */
@media (max-width: 1040px) {
  .nav { padding: 0 20px; }
  .nav-logo { padding-top: 14px; }
  #nav { align-items: flex-start; padding-top: 14px; }
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(7,21,39,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column; align-items: flex-start;
    height: auto; padding: 12px 20px 28px; gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease2);
    border-top: 1px solid var(--line);
    overflow-y: auto;
    max-height: calc(100svh - 70px);
  }
  .nav-links.open { transform: none; }
  .nav-links li { height: auto; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links a { height: auto; padding: 14px 0; font-size: 0.95rem; border-bottom: none; color: rgba(245,245,247,0.88); }
  .nav-links a.active { color: var(--white); }
  li.nav-lang { border-bottom: none; }
  .nav-lang {
    border-left: none; padding: 16px 0 4px; width: 100%;
    margin: 4px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  }
  .nav-lang a {
    padding: 12px 0; font-size: 0.9rem; text-align: center;
    border: 1px solid var(--line); border-radius: 6px; background: none;
  }
  .nav-lang .lang-active {
    border-color: var(--accent); color: var(--accent) !important;
    background: rgba(246,178,46,0.10);
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 860px) {
  .showcase { grid-template-columns: 1fr; }
  .showcase-stage { display: none; }
  .showcase-panel { padding: 64px 24px; min-height: auto; border-bottom: 1px solid var(--line); background: var(--ink2); }
  .showcase-panel:nth-child(even) { background: var(--ink); }
  .story { grid-template-columns: 1fr; }
  .story-sticky { display: none; }
  .story-chapter { padding: 64px 24px; min-height: auto; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .history-layout,
  .history-layout-narrow { grid-template-columns: 1fr; gap: 32px; }
  .cards-grid { grid-template-columns: 1fr; }
  .specs-grid-3 { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .intro-stats { display: none; }
  .section { padding: 64px 0; }
}
@media (max-width: 560px) {
  .ft-grid { grid-template-columns: 1fr; }
  .intro-body { padding: 0 20px; }
  .fly-h2 { font-size: clamp(2rem, 10vw, 3.5rem); }
  .intro-h1 { font-size: clamp(52px, 15vw, 80px); }
}

/* ═══════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════ */
.skip-link {
  position: absolute; top: -100%; left: 0;
  background: var(--accent); color: var(--ink);
  padding: 8px 18px; z-index: 10000;
  font-size: 0.85rem; font-weight: 600;
  text-decoration: none; border-radius: 0 0 6px 0;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ═══════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════ */
.back-to-top {
  position: fixed; bottom: 28px; right: 24px;
  width: 44px; height: 44px;
  background: var(--accent); color: var(--ink);
  border: none; border-radius: 50%;
  font-size: 1.1rem; font-weight: 700;
  cursor: pointer; z-index: 800;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.28);
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-2px); }

/* ═══════════════════════════════════════
   YOUTUBE FACADE (GDPR)
═══════════════════════════════════════ */
.yt-facade {
  position: relative; background: #000;
  border-radius: var(--r); overflow: hidden;
  cursor: pointer; border: 1px solid var(--border);
}
.yt-facade img { width: 100%; display: block; opacity: 0.85; transition: opacity 0.2s; }
.yt-facade:hover img { opacity: 0.70; }
.yt-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 64px; height: 64px;
  background: rgba(220,30,30,0.92);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.yt-facade:hover .yt-play { background: #cc0000; transform: translate(-50%,-50%) scale(1.08); }
.yt-play svg { width: 28px; height: 28px; fill: #fff; margin-left: 4px; }
.yt-notice {
  padding: 10px 14px; margin: 0;
  font-size: 0.78rem; color: var(--text-muted);
  background: var(--surface); border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--r);
  font-family: var(--f-head);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn-outline {
  background: transparent;
  color: var(--amber);
  border-color: var(--amber);
}
.btn-outline:hover { background: var(--amber); color: var(--ink); }

/* ═══════════════════════════════════════
   SERIES NAVIGATION (Tiger Moth dwuczęściowa seria)
═══════════════════════════════════════ */
.series-nav {
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.series-nav-label {
  font-family: var(--f-head);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.series-nav-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}
.series-nav-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.series-nav-link {
  flex: 1;
  min-width: 200px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: block;
}
a.series-nav-link:hover {
  border-color: var(--amber);
  background: var(--ink2);
}
.series-nav-link.current {
  border-color: rgba(246,178,46,0.35);
  opacity: 0.6;
  pointer-events: none;
}
.series-nav-num {
  font-family: var(--f-data);
  font-size: 0.72rem;
  color: var(--amber);
  margin-bottom: 6px;
}
.series-nav-title {
  font-family: var(--f-head);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}
.series-nav-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ═══════════════════════════════════════
   GALLERY SLIDER
═══════════════════════════════════════ */
.gslider-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.gslider {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: grab;
  user-select: none;
}
.gslider.is-dragging { cursor: grabbing; }
.gslider-track {
  display: flex;
  height: 100%;
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.gslider.is-dragging .gslider-track { transition: none; }
.gslider-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}
.gslider-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
.gslider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(7,21,39,0.72);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
  user-select: none;
}
.gslider-btn:hover { background: rgba(7,21,39,0.95); }
.gslider-prev { left: 14px; }
.gslider-next { right: 14px; }
.gslider-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0 0;
}
.gslider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.gslider-dot.active {
  background: var(--accent);
  transform: scale(1.35);
}
@media (max-width: 560px) {
  .gslider-btn { width: 40px; height: 40px; font-size: 1.3rem; }
  .gslider-prev { left: 8px; }
  .gslider-next { right: 8px; }
}
.yt-notice a { color: var(--accent); }
