/* ============================================
   THE LUNAR ORBIT — Global Brand Website v2.0
   (주)더루나오빗 · 2026 Selenea Edition
   ============================================ */

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter','Noto Sans KR',system-ui,sans-serif;
  background: #050507; color: #ECECEC; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; word-break: keep-all;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
em { font-style: italic; }

:root {
  --bg-0: #050507;
  --bg-1: #0B0B10;
  --bg-2: #14141A;
  --bg-3: #1E1E26;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.18);
  --txt-0: #ECECEC;
  --txt-1: #B8B8C0;
  --txt-2: #76767E;
  --accent: #C9B8FF;
  --accent-2: #8A6FE8;
  --gold: #D2BE8C;
  --max: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --serif: 'Cormorant Garamond','Noto Serif KR',serif;
  --logo: 'Cinzel',serif;
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(5,5,7,0.55);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease, background 0.3s ease;
}
.nav.is-scrolled { padding: 12px var(--gutter); background: rgba(5,5,7,0.85); }
.nav__logo { font-family: var(--logo); font-weight: 700; font-size: 15px; letter-spacing: 0.22em; }
.nav__logo span { color: var(--accent); }
.nav__menu {
  display: flex; gap: 30px; list-style: none;
  font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
}
.nav__menu a { color: var(--txt-1); transition: color 0.2s ease; position: relative; padding: 4px 0; }
.nav__menu a:hover { color: var(--txt-0); }
.nav__menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--accent); transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav__menu a:hover::after { transform: scaleX(1); }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { width: 22px; height: 1.5px; background: var(--txt-0); transition: 0.3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative; height: 100vh; min-height: 720px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.55) saturate(1.05);
  z-index: 1;
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 2; opacity: 0.35;
  mix-blend-mode: screen;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 3;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(5,5,7,0.55) 60%, rgba(5,5,7,0.9) 100%),
    linear-gradient(180deg, rgba(5,5,7,0.4) 0%, transparent 30%, transparent 70%, rgba(5,5,7,0.85) 100%);
}
.hero__inner {
  position: relative; z-index: 4;
  max-width: 920px; padding: 0 var(--gutter); text-align: center;
}
.hero__kicker {
  display: inline-block; padding: 6px 16px;
  border: 1px solid rgba(201,184,255,0.4);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 36px;
  background: rgba(201,184,255,0.05);
}
.hero__title {
  font-family: var(--logo); font-weight: 500;
  font-size: clamp(44px, 8vw, 108px); line-height: 1.0;
  letter-spacing: 0.14em; margin-bottom: 28px;
  text-shadow: 0 6px 80px rgba(201,184,255,0.25);
}
.hero__title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); letter-spacing: 0.06em; }
.hero__sub {
  font-family: var(--serif); font-size: clamp(15px, 1.8vw, 19px);
  color: var(--txt-1); line-height: 1.8; margin-bottom: 44px;
}
.hero__sub span { display: block; margin-top: 8px; font-size: 0.78em; letter-spacing: 0.12em; color: var(--txt-2); text-transform: uppercase; font-family: 'Inter',sans-serif; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__sound {
  position: absolute; right: var(--gutter); bottom: 80px; z-index: 5;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line-strong);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--txt-1);
  backdrop-filter: blur(10px); transition: all 0.25s ease;
}
.hero__sound:hover { background: rgba(255,255,255,0.12); color: var(--txt-0); }
.hero__sound-icon { font-size: 14px; }
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 5;
  font-size: 10px; letter-spacing: 0.4em; color: var(--txt-2);
  writing-mode: vertical-rl; animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: translateX(-50%) translateY(0); } 50% { opacity: 0.9; transform: translateX(-50%) translateY(8px); } }

/* ============ BTN ============ */
.btn {
  display: inline-block; padding: 14px 32px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  transition: all 0.25s ease; cursor: pointer;
}
.btn--primary {
  background: var(--accent); color: #14141A;
  border: 1px solid var(--accent);
}
.btn--primary:hover { background: var(--txt-0); border-color: var(--txt-0); }
.btn--ghost {
  border: 1px solid var(--line-strong); color: var(--txt-0); background: transparent;
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ============ SECTION SHELL ============ */
.section {
  position: relative; padding: clamp(80px, 12vw, 140px) var(--gutter);
  max-width: var(--max); margin: 0 auto;
}
.section--alt { background: var(--bg-1); max-width: none; }
.section--alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section__head { text-align: center; margin-bottom: clamp(50px, 7vw, 90px); }
.section__no {
  display: inline-block; font-family: var(--logo); font-weight: 500;
  font-size: 11px; letter-spacing: 0.4em; color: var(--accent);
  margin-bottom: 18px;
}
.section__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 5.5vw, 64px); line-height: 1.1;
  letter-spacing: 0.04em; margin-bottom: 22px;
}
.section__title-sub {
  display: inline-block; margin-left: 10px;
  font-size: 0.45em; letter-spacing: 0.24em; color: var(--accent);
  text-transform: uppercase; font-family: 'Inter',sans-serif; vertical-align: middle;
}
.section__deck {
  font-family: var(--serif); font-size: clamp(15px, 1.7vw, 20px);
  color: var(--txt-1); line-height: 1.75; max-width: 720px; margin: 0 auto;
}

/* ============ BRAND ============ */
.brand-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-bottom: 100px;
}
.brand-card {
  padding: 44px 32px; background: var(--bg-2);
  border: 1px solid var(--line); border-top: 2px solid var(--accent);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.brand-card:hover { transform: translateY(-4px); border-color: var(--line-strong); border-top-color: var(--accent); }
.brand-card__no {
  font-family: var(--serif); font-size: 36px; color: var(--accent);
  margin-bottom: 16px; line-height: 1;
}
.brand-card h3 {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  margin-bottom: 16px; letter-spacing: 0.04em;
}
.brand-card p { color: var(--txt-1); font-size: 14.5px; line-height: 1.8; }

/* ============ TIMELINE (가문명 미공개) ============ */
.timeline { margin-bottom: 60px; }
.timeline__head { text-align: center; margin-bottom: 40px; }
.timeline__label {
  display: inline-block; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.timeline__title {
  font-family: var(--serif); font-size: clamp(22px, 3vw, 32px); font-weight: 400;
  letter-spacing: 0.02em; margin-bottom: 12px;
}
.timeline__sub { color: var(--txt-2); font-style: italic; font-family: var(--serif); font-size: 16px; }
.timeline__rail {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 8px; margin-top: 30px;
}
.ts {
  position: relative; padding: 22px 14px; text-align: center;
  background: var(--bg-2); border: 1px solid var(--line);
  border-top: 2px solid var(--bg-3);
  transition: transform 0.25s ease;
}
.ts:hover { transform: translateY(-3px); }
.ts__yr { font-family: var(--logo); font-size: 13px; color: var(--txt-2); letter-spacing: 0.18em; margin-bottom: 8px; }
.ts__no { font-family: var(--logo); font-size: 24px; font-weight: 700; color: var(--txt-0); margin-bottom: 10px; }
.ts__name { font-family: var(--serif); font-size: 13px; font-weight: 500; letter-spacing: 0.08em; margin-bottom: 6px; color: var(--txt-0); }
.ts__theme { font-size: 11px; color: var(--txt-2); margin-bottom: 10px; }
.ts__state { font-size: 10px; letter-spacing: 0.16em; color: var(--txt-2); text-transform: uppercase; }
.ts--open {
  border-top-color: var(--accent);
  background: linear-gradient(180deg, rgba(201,184,255,0.08) 0%, var(--bg-2) 60%);
}
.ts--open .ts__no { color: var(--accent); }
.ts--open .ts__name { color: var(--accent); }
.ts--open .ts__state { color: var(--accent); }
.ts--lock { opacity: 0.45; }
.ts--lock .ts__name { color: var(--txt-2); letter-spacing: 0.32em; }
.ts--finale { opacity: 0.6; }
.ts--finale .ts__name { color: var(--gold); letter-spacing: 0.14em; }

/* ============ MERCH TEASER ============ */
.merch-teaser {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding: 20px 28px; background: var(--bg-2);
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
}
.merch-teaser__label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
.merch-teaser__copy { color: var(--txt-1); flex: 1; font-size: 14.5px; }
.merch-teaser__link { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 2px; }

/* ============ STORY · MYTH ============ */
.myth {
  max-width: 880px; margin: 0 auto 60px;
  display: flex; flex-direction: column; gap: 50px;
}
.myth__chapter {
  position: relative; padding: 40px 36px;
  background: rgba(20,20,26,0.5);
  border-left: 2px solid var(--line-strong);
}
.myth__chapter--featured {
  border-left-color: var(--accent);
  background: linear-gradient(135deg, rgba(201,184,255,0.04) 0%, rgba(20,20,26,0.4) 80%);
  display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: start;
}
.myth__no {
  font-family: var(--logo); font-size: 11px; letter-spacing: 0.36em;
  color: var(--accent); margin-bottom: 14px; text-transform: uppercase;
}
.myth__chapter h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(24px, 3.2vw, 36px); line-height: 1.2;
  margin-bottom: 24px; letter-spacing: 0.02em;
}
.myth__body p {
  font-family: var(--serif); font-size: 16.5px; line-height: 1.95;
  color: var(--txt-1); margin-bottom: 16px;
}
.myth__body p:last-child { margin-bottom: 0; }
.myth__body strong { color: var(--accent); font-weight: 500; }
.myth__body em { color: var(--txt-0); font-style: italic; }
.myth__img {
  width: 240px; height: auto;
  border: 1px solid var(--line-strong);
  filter: brightness(0.85) saturate(0.9);
  grid-column: 2;
}
.myth__cont {
  text-align: center; font-family: var(--serif); font-style: italic;
  color: var(--txt-2); font-size: 14px; margin-bottom: 80px; letter-spacing: 0.04em;
}

/* ============ PYRAMID ============ */
.pyramid-section { margin: 80px auto 70px; max-width: 1100px; text-align: center; }
.pyramid-section__title {
  font-family: var(--serif); font-size: clamp(24px, 3.4vw, 36px); font-weight: 400;
  margin-bottom: 14px; letter-spacing: 0.02em;
}
.pyramid-section__sub { font-family: var(--serif); color: var(--txt-1); margin-bottom: 36px; font-size: 16px; line-height: 1.8; }
.pyramid-section__sub em { color: var(--accent); }
.pyramid-section__note { margin-top: 30px; font-size: 13.5px; color: var(--txt-2); }
.pyramid-section__note a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.pyramid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 14px; margin-top: 30px;
}
.tier {
  padding: 26px 18px; background: var(--bg-2);
  border: 1px solid var(--line); text-align: left;
  transition: all 0.25s ease;
}
.tier:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.tier__no { font-family: var(--logo); font-size: 10px; letter-spacing: 0.32em; color: var(--txt-2); margin-bottom: 14px; text-transform: uppercase; }
.tier h4 { font-family: var(--serif); font-weight: 500; font-size: 18px; margin-bottom: 10px; line-height: 1.3; }
.tier__meta { font-size: 12px; color: var(--txt-1); margin-bottom: 8px; }
.tier__for { font-size: 11.5px; color: var(--txt-2); font-style: italic; }
.tier--featured {
  background: linear-gradient(180deg, rgba(201,184,255,0.10) 0%, var(--bg-2) 100%);
  border: 1px solid var(--accent); transform: translateY(-8px);
}
.tier--featured .tier__no { color: var(--accent); }
.tier--featured:hover { transform: translateY(-12px); }
.tier--exec { border-top: 2px solid var(--gold); }
.tier--exec .tier__no { color: var(--gold); }

/* ============ FILM ============ */
.film { max-width: 1100px; margin: 0 auto; }
.film__meta { text-align: center; margin-bottom: 30px; }
.film__label { font-family: var(--logo); font-size: 11px; letter-spacing: 0.34em; color: var(--accent); margin-bottom: 14px; }
.film__title { font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 3.4vw, 38px); margin-bottom: 8px; letter-spacing: 0.02em; }
.film__sub { font-family: var(--serif); font-style: italic; color: var(--txt-1); font-size: 14px; }
.film__player {
  aspect-ratio: 16/9; background: #000; border: 1px solid var(--line-strong);
  box-shadow: 0 10px 70px rgba(0,0,0,0.6), 0 0 1px rgba(201,184,255,0.3);
  overflow: hidden;
}
.film__player video { width: 100%; height: 100%; display: block; }

/* ============ SHOW ============ */
.show-hero {
  display: grid; grid-template-columns: minmax(320px, 1fr) 1.4fr;
  gap: 50px; align-items: center; margin-bottom: 70px;
}
.show-hero__img { border: 1px solid var(--line-strong); filter: saturate(0.95); }
.show-hero__copy h3 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 3.6vw, 42px);
  margin-bottom: 18px; letter-spacing: 0.02em; line-height: 1.2;
}
.show-hero__copy > p { font-family: var(--serif); color: var(--txt-1); font-size: 17px; line-height: 1.85; margin-bottom: 28px; }
.show-hero__points { list-style: none; }
.show-hero__points li {
  padding: 12px 0; border-bottom: 1px solid var(--line);
  display: flex; gap: 12px; align-items: center;
  color: var(--txt-1); font-size: 15px;
}
.show-hero__points li:last-child { border-bottom: none; }
.show-hero__points span { color: var(--accent); font-size: 16px; }

.show-gallery {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px; margin-bottom: 80px;
}
.show-gallery figure {
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s ease;
}
.show-gallery figure:hover { transform: translateY(-3px); }
.show-gallery img {
  aspect-ratio: 1/1; object-fit: cover;
  transition: transform 0.6s ease, filter 0.3s ease;
  filter: brightness(0.9) saturate(0.95);
}
.show-gallery figure:hover img { transform: scale(1.04); filter: brightness(1) saturate(1); }
.show-gallery figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(5,5,7,0.92) 80%);
  font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--txt-0);
  letter-spacing: 0.04em;
}

.selenea-illust {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px; margin-top: 30px;
}
.selenea-illust figure {
  background: var(--bg-2); border: 1px solid var(--line);
  padding: 20px; display: flex; flex-direction: column; gap: 16px;
}
.selenea-illust img { aspect-ratio: 16/9; object-fit: cover; filter: brightness(0.95); }
.selenea-illust figcaption { font-family: var(--serif); color: var(--txt-1); font-size: 14.5px; line-height: 1.65; }
.selenea-illust figcaption strong { color: var(--accent); font-weight: 500; letter-spacing: 0.14em; font-family: var(--logo); display: block; margin-bottom: 4px; font-size: 13px; }

/* ============ TOUR ============ */
.section--tour { position: relative; overflow: hidden; }
.tour-grid {
  display: grid; grid-template-columns: 1.4fr repeat(2, 1fr); grid-template-rows: 1fr 1fr;
  gap: 14px; margin-bottom: 50px;
}
.tour-card {
  padding: 30px 26px; background: var(--bg-2);
  border: 1px solid var(--line); transition: transform 0.25s ease;
}
.tour-card:hover { transform: translateY(-3px); }
.tour-card--lead {
  grid-row: span 2; padding: 44px 36px;
  background: linear-gradient(135deg, rgba(201,184,255,0.06) 0%, var(--bg-2) 80%);
  border-top: 2px solid var(--accent);
}
.tour-card__yr { font-family: var(--logo); font-size: 12px; letter-spacing: 0.3em; color: var(--accent); margin-bottom: 14px; }
.tour-card--lead h3 { font-family: var(--serif); font-weight: 400; font-size: 30px; line-height: 1.15; margin-bottom: 18px; letter-spacing: 0.02em; }
.tour-card--lead p { color: var(--txt-1); font-size: 15px; line-height: 1.75; }
.tour-card span { display: inline-block; font-size: 20px; color: var(--accent); margin-bottom: 10px; }
.tour-card h4 { font-family: var(--serif); font-weight: 500; font-size: 18px; margin-bottom: 8px; }
.tour-card p { color: var(--txt-1); font-size: 13px; margin-bottom: 12px; line-height: 1.6; }
.tour-card em { font-size: 11px; color: var(--txt-2); letter-spacing: 0.18em; text-transform: uppercase; font-style: normal; }

.tour-cta {
  text-align: center; padding: 36px;
  border: 1px solid var(--line-strong); background: var(--bg-2);
}
.tour-cta p { color: var(--txt-1); font-family: var(--serif); font-size: 17px; margin-bottom: 20px; font-style: italic; }

/* ============ IMPACT (ESG) ============ */
.esg {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px; margin-bottom: 50px;
}
.esg__card {
  padding: 36px 30px; background: var(--bg-2);
  border: 1px solid var(--line); position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.esg__card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.esg__sym {
  position: absolute; top: 24px; right: 30px;
  font-family: var(--logo); font-size: 48px; font-weight: 700;
  color: rgba(201,184,255,0.12); line-height: 1;
}
.esg__card h3 { font-family: var(--serif); font-weight: 500; font-size: 21px; margin-bottom: 6px; letter-spacing: 0.02em; }
.esg__hd { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--accent); margin-bottom: 16px; }
.esg__card p:not(.esg__hd) { color: var(--txt-1); font-size: 14.5px; line-height: 1.78; }
.esg__card p strong { color: var(--txt-0); font-weight: 500; }
.esg__card--lead {
  background: linear-gradient(135deg, rgba(210,190,140,0.06) 0%, var(--bg-2) 80%);
  border-top: 2px solid var(--gold);
}
.esg__card--lead .esg__sym { color: rgba(210,190,140,0.18); }
.esg__card--lead .esg__hd { color: var(--gold); }

.partners {
  padding: 30px; background: var(--bg-1); border: 1px solid var(--line);
}
.partners__label { font-family: var(--logo); font-size: 11px; letter-spacing: 0.32em; color: var(--accent); margin-bottom: 22px; text-transform: uppercase; }
.partners__list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.partner {
  padding: 20px 22px; background: var(--bg-2);
  border: 1px solid var(--line);
  font-size: 14px; color: var(--txt-0); line-height: 1.6;
}
.partner em { display: block; margin-top: 8px; color: var(--txt-2); font-size: 12px; letter-spacing: 0.14em; font-style: italic; text-transform: uppercase; }
.partners__note { margin-top: 18px; font-size: 12px; color: var(--txt-2); font-style: italic; }

/* ============ PARTNERSHIP ============ */
.prt {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
}
.prt__card {
  padding: 38px 32px; background: var(--bg-2);
  border: 1px solid var(--line); position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.prt__card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.prt__no {
  font-family: var(--logo); font-size: 56px; font-weight: 700;
  color: rgba(201,184,255,0.18); line-height: 1; position: absolute; top: 22px; right: 28px;
}
.prt__card h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; margin-bottom: 14px; letter-spacing: 0.02em; }
.prt__card > p { color: var(--txt-1); font-size: 14.5px; line-height: 1.78; margin-bottom: 18px; }
.prt__card ul { list-style: none; padding-top: 14px; border-top: 1px solid var(--line); }
.prt__card li { padding: 6px 0; padding-left: 16px; position: relative; font-size: 13px; color: var(--txt-1); }
.prt__card li::before { content: '⊙'; position: absolute; left: 0; color: var(--accent); font-size: 11px; }
.prt__card--lead {
  background: linear-gradient(135deg, rgba(201,184,255,0.05) 0%, var(--bg-2) 80%);
  border-top: 2px solid var(--accent);
}
.prt__card--lead .prt__no { color: rgba(201,184,255,0.32); }

/* ============ CONTACT ============ */
.section--contact { padding-bottom: 80px; }
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px; margin-bottom: 30px;
}
.contact-card {
  padding: 32px 28px; background: var(--bg-2);
  border: 1px solid var(--line);
  transition: all 0.25s ease; cursor: pointer; display: block;
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--accent); background: rgba(201,184,255,0.04); }
.contact-card__no { font-family: var(--logo); font-size: 24px; color: var(--accent); margin-bottom: 14px; }
.contact-card h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; margin-bottom: 8px; letter-spacing: 0.02em; }
.contact-card p { color: var(--txt-1); font-size: 13.5px; margin-bottom: 18px; line-height: 1.6; }
.contact-card__mail { font-size: 12.5px; color: var(--accent); letter-spacing: 0.06em; border-bottom: 1px solid var(--accent); padding-bottom: 2px; }

.press-kit {
  padding: 24px 30px; background: var(--bg-1);
  border: 1px solid var(--line); border-left: 3px solid var(--gold);
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.press-kit > span { font-family: var(--logo); font-size: 11px; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; }
.press-kit p { flex: 1; color: var(--txt-1); font-size: 14px; }
.press-kit a { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* ============ FOOTER ============ */
.ft {
  padding: 70px var(--gutter) 50px;
  background: #020205; border-top: 1px solid var(--line);
  text-align: center;
}
.ft__top { margin-bottom: 36px; }
.ft__logo { font-family: var(--logo); font-weight: 700; font-size: 18px; letter-spacing: 0.24em; margin-bottom: 12px; }
.ft__logo span { color: var(--accent); }
.ft__tag { font-family: var(--serif); font-style: italic; color: var(--txt-1); font-size: 14px; letter-spacing: 0.06em; }
.ft__credit { padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.ft__credit p { color: var(--txt-1); font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase; }
.ft__quote { margin-top: 10px; font-family: var(--serif); font-style: italic; color: var(--accent); text-transform: none; letter-spacing: 0.04em; font-size: 15px; }
.ft__legal { font-size: 11px; color: var(--txt-2); letter-spacing: 0.14em; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .nav__menu { display: none; }
  .nav__menu.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(5,5,7,0.95); padding: 20px var(--gutter);
    border-bottom: 1px solid var(--line);
  }
  .nav__menu.is-open li { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav__menu.is-open li:last-child { border-bottom: none; }
  .nav__burger { display: flex; }

  .timeline__rail { grid-template-columns: repeat(4, 1fr); }
  .pyramid { grid-template-columns: repeat(2, 1fr); }
  .tour-grid { grid-template-columns: 1fr; }
  .tour-card--lead { grid-row: auto; }
  .show-hero { grid-template-columns: 1fr; }
  .myth__chapter--featured { grid-template-columns: 1fr; }
  .myth__img { width: 100%; max-width: 360px; margin: 0 auto; grid-column: 1; }
}
@media (max-width: 640px) {
  .hero { min-height: 600px; }
  .hero__cta .btn { padding: 12px 22px; font-size: 11px; }
  .hero__sound { bottom: 60px; right: 16px; padding: 8px 12px; }
  .timeline__rail { grid-template-columns: repeat(2, 1fr); }
  .pyramid { grid-template-columns: 1fr; }
  .show-gallery { grid-template-columns: repeat(2, 1fr); }
  .myth__chapter { padding: 28px 22px; }
  .myth__body p { font-size: 15.5px; }
}
