@charset "UTF-8";

/* ==========================================================================
   ANGELIYASAT // NOCTURNE SANCTUARY — NOCTURNE ARCHIVE STYLES
   ========================================================================== */

:root {
  --bg-pitch: #040307;
  --bg-obsidian: #07060c;
  --bg-card: rgba(14, 13, 22, 0.72);
  --bg-card-hover: rgba(22, 20, 34, 0.88);
  
  --silver-100: #ffffff;
  --silver-200: #e5e9f4;
  --silver-400: #a2aabf;
  --silver-600: #596175;
  
  --periwinkle-light: #d8e0ff;
  --periwinkle-main: #9fb3ff;
  --periwinkle-deep: #5e72e4;
  --periwinkle-glow: rgba(159, 179, 255, 0.28);
  
  --amethyst-subtle: rgba(168, 85, 247, 0.14);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(159, 179, 255, 0.35);
  
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-script: "Great Vibes", cursive;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  
  --container-max: 1440px;
  --pad-x: clamp(1.25rem, 5vw, 4rem);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-pitch);
  color: var(--silver-200);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  scrollbar-width: thin;
  scrollbar-color: var(--periwinkle-main) var(--bg-pitch);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  background: radial-gradient(circle at 50% -10%, #151226 0%, #07060c 45%, #040307 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

main {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

img, video {
  display: block;
  width: 100%;
  height: auto;
}

::selection {
  background: var(--periwinkle-main);
  color: #040307;
}

/* --------------------------------------------------------------------------
   Background Canvases & Visual Effects
   -------------------------------------------------------------------------- */
.stardust-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

.film-grain {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

.celestial-glow {
  position: fixed;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle, rgba(159, 179, 255, 0.09) 0%, rgba(94, 114, 228, 0.04) 45%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  filter: blur(40px);
}

/* --------------------------------------------------------------------------
   Header Navigation
   -------------------------------------------------------------------------- */
.sanctuary-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--pad-x);
  background: rgba(7, 6, 12, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition-smooth);
}

.sanctuary-header.is-scrolled {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background: rgba(4, 3, 7, 0.88);
  border-bottom-color: rgba(159, 179, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo__svg {
  width: 2.2rem;
  height: 2.2rem;
  filter: drop-shadow(0 0 12px rgba(159, 179, 255, 0.4));
  transition: transform 0.4s ease;
}

.brand-logo:hover .brand-logo__svg {
  transform: scale(1.08) rotate(5deg);
}

.brand-logo__text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--silver-100);
}

.brand-edition {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  color: var(--periwinkle-main);
  opacity: 0.9;
}

.sanctuary-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.sanctuary-nav a {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--silver-400);
  text-transform: uppercase;
  transition: color 0.3s ease;
  padding: 0.4rem 0;
}

.sanctuary-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--periwinkle-main);
  box-shadow: 0 0 8px var(--periwinkle-main);
  transition: width 0.3s ease;
}

.sanctuary-nav a:hover {
  color: var(--silver-100);
}

.sanctuary-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Audio Waveform Toggle */
.audio-toggle {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 2rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--silver-400);
  transition: all 0.3s ease;
}

.audio-toggle:hover {
  border-color: var(--border-highlight);
  color: var(--silver-100);
  background: rgba(159, 179, 255, 0.08);
}

.audio-toggle.is-playing {
  border-color: var(--periwinkle-main);
  color: var(--periwinkle-light);
  box-shadow: 0 0 16px rgba(159, 179, 255, 0.2);
}

.audio-waves {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.audio-waves i {
  display: block;
  width: 2px;
  height: 4px;
  background: currentColor;
  border-radius: 1px;
  transition: height 0.2s ease;
}

.audio-toggle.is-playing .audio-waves i:nth-child(1) { animation: wave 0.8s ease-in-out infinite alternate; }
.audio-toggle.is-playing .audio-waves i:nth-child(2) { animation: wave 1.1s ease-in-out 0.2s infinite alternate; }
.audio-toggle.is-playing .audio-waves i:nth-child(3) { animation: wave 0.9s ease-in-out 0.4s infinite alternate; }
.audio-toggle.is-playing .audio-waves i:nth-child(4) { animation: wave 1.2s ease-in-out 0.1s infinite alternate; }

@keyframes wave {
  0% { height: 3px; }
  100% { height: 12px; }
}

/* Language Switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 2rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--silver-400);
  transition: all 0.3s ease;
}

.lang-switch:hover {
  border-color: var(--border-highlight);
  color: var(--silver-100);
}

.lang-active {
  color: var(--periwinkle-main);
  font-weight: 700;
}

.lang-divider {
  opacity: 0.4;
}

/* Classic Codex Link */
.classic-mode-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--silver-600);
  transition: all 0.3s ease;
}

.classic-mode-link:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--silver-200);
}

/* --------------------------------------------------------------------------
   HERO PORTAL SECTION
   -------------------------------------------------------------------------- */
.hero-portal {
  position: relative;
  min-height: 100vh;
  padding: clamp(6.5rem, 12vh, 9rem) var(--pad-x) 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-backdrop-aura {
  position: absolute;
  top: 15%;
  left: 20%;
  width: 50vw;
  height: 50vh;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 114, 228, 0.12) 0%, rgba(168, 85, 247, 0.06) 40%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 6rem);
}

.hero-editorial {
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0.9rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 2rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--silver-400);
  width: fit-content;
}

.hero-badge__dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.hero-badge__coord {
  color: var(--silver-600);
  padding-left: 0.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.hero-title__arch {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  color: var(--periwinkle-light);
  line-height: 1;
  margin-bottom: 0.2rem;
  text-shadow: 0 0 24px rgba(159, 179, 255, 0.35);
}

.hero-title__name {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7.5vw, 6.8rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.92;
  color: var(--silver-100);
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 30%, #cbd5ff 70%, #8ca0d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title__sub {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--silver-400);
  text-transform: uppercase;
  margin-top: 0.85rem;
}

.hero-philosophy {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.75;
  color: var(--silver-400);
  max-width: 36rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

/* Main Luxury Sanctuary Button */
.btn-sanctuary {
  position: relative;
  display: inline-flex;
  padding: 0.95rem 2rem;
  border-radius: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #040307;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #c7d2fe 60%, #9fb3ff);
  box-shadow: 0 0 25px rgba(159, 179, 255, 0.35), inset 0 1px 1px #ffffff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-sanctuary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(159, 179, 255, 0.55), inset 0 1px 1px #ffffff;
}

.btn-sanctuary__content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-arrow {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn-sanctuary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-oracle-quick {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.6rem;
  border-radius: 2.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-200);
  transition: all 0.3s ease;
}

.btn-oracle-quick:hover {
  background: rgba(159, 179, 255, 0.08);
  border-color: var(--border-highlight);
  color: var(--silver-100);
  transform: translateY(-2px);
}

.oracle-star {
  color: var(--periwinkle-main);
  animation: pulse-dot 2.5s infinite ease-in-out;
}

.hero-meta-strip {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--silver-600);
  margin-bottom: 0.25rem;
}

.meta-val {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--silver-200);
  font-weight: 600;
}

/* Hero Monolith Video */
.hero-monolith {
  position: relative;
}

.monolith-frame {
  position: relative;
  border-radius: 1.25rem;
  padding: 0.75rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(159, 179, 255, 0.1) 100%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(159, 179, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.monolith-glass {
  position: relative;
  aspect-ratio: 9 / 14;
  border-radius: 0.85rem;
  overflow: hidden;
  background: #000000;
}

.monolith-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
  transition: opacity 0.4s ease, transform 0.6s ease;
}

.monolith-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 40%, rgba(4, 3, 7, 0.65) 100%);
}

.monolith-scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.25) 51%);
  background-size: 100% 4px;
  opacity: 0.35;
}

.monolith-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0.5rem 0.25rem;
}

.monolith-indicator {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.monolith-pulse {
  width: 6px;
  height: 6px;
  background: var(--periwinkle-main);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--periwinkle-main);
  animation: pulse-dot 1.8s infinite;
}

.monolith-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--silver-200);
}

.monolith-switcher {
  display: flex;
  gap: 0.4rem;
}

.mono-tab {
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--silver-400);
  transition: all 0.25s ease;
}

.mono-tab:hover {
  border-color: var(--border-highlight);
  color: var(--silver-100);
}

.mono-tab.is-active {
  background: var(--periwinkle-main);
  border-color: var(--periwinkle-main);
  color: #040307;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(159, 179, 255, 0.4);
}

/* Marquee Ticker */
.nocturne-ticker {
  margin-top: 4rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(14, 13, 22, 0.4);
  backdrop-filter: blur(10px);
}

.nocturne-ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-roll 32s linear infinite;
  white-space: nowrap;
}

.nocturne-ticker__track span {
  padding: 0.75rem 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  color: var(--silver-400);
}

@keyframes ticker-roll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   SECTION HEADINGS & COMMONS
   -------------------------------------------------------------------------- */
.section-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.section-glyph {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  color: var(--periwinkle-main);
  margin-bottom: 0.5rem;
}

.section-title {
  display: flex;
  flex-direction: column;
}

.title-serif {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--silver-100);
  text-transform: uppercase;
}

.title-sans {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--periwinkle-light);
  line-height: 0.9;
  text-shadow: 0 0 16px rgba(159, 179, 255, 0.25);
}

.section-summary {
  max-width: 28rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--silver-400);
  font-weight: 300;
}

.section-title-wrap--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 3rem;
}

/* --------------------------------------------------------------------------
   SECTION 01: LOOKBOOK & 3D TILT CARDS
   -------------------------------------------------------------------------- */
.lookbook-section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 6rem var(--pad-x);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.8rem;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: var(--silver-400);
  transition: all 0.3s ease;
}

.filter-chip .chip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--silver-600);
  transition: background 0.3s ease;
}

.filter-chip:hover {
  border-color: var(--border-highlight);
  color: var(--silver-100);
  background: rgba(159, 179, 255, 0.05);
}

.filter-chip.is-active {
  background: rgba(159, 179, 255, 0.15);
  border-color: var(--periwinkle-main);
  color: var(--silver-100);
  box-shadow: 0 0 16px rgba(159, 179, 255, 0.18);
}

.filter-chip.is-active .chip-dot {
  background: var(--periwinkle-main);
  box-shadow: 0 0 6px var(--periwinkle-main);
}

.filter-chip small {
  opacity: 0.6;
}

/* Lookbook Grid */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
  perspective: 1200px;
}

.tilt-card {
  position: relative;
  border-radius: 1rem;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, opacity 0.4s ease;
  will-change: transform;
}

.tilt-card.is-hidden {
  display: none;
}

.tilt-card__inner {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.tilt-card:hover .tilt-card__inner {
  border-color: rgba(159, 179, 255, 0.35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(159, 179, 255, 0.15);
}

.tilt-card--highlight .tilt-card__inner {
  border-color: rgba(159, 179, 255, 0.25);
  background: linear-gradient(160deg, rgba(28, 25, 45, 0.8) 0%, rgba(14, 13, 22, 0.85) 100%);
}

.tilt-card__sheen {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  mix-blend-mode: screen;
}

.tilt-card:hover .tilt-card__sheen {
  opacity: 1;
}

.tilt-card__img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #020204;
}

.tilt-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.tilt-card:hover .tilt-card__img-wrap img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.05);
}

.tilt-card__badges {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  right: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 4;
}

.badge-cat {
  padding: 0.25rem 0.65rem;
  border-radius: 1rem;
  background: rgba(4, 3, 7, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  color: var(--silver-200);
}

.badge-cat--relic {
  background: rgba(94, 114, 228, 0.4);
  border-color: var(--periwinkle-main);
  color: var(--silver-100);
  box-shadow: 0 0 10px rgba(159, 179, 255, 0.3);
}

.badge-num {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--silver-400);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.tilt-card__footer {
  padding: 1.1rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 9, 16, 0.95);
}

.card-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--silver-100);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.card-loc {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--silver-400);
}

/* --------------------------------------------------------------------------
   SECTION 02: MOTION CRYPT / VIDEO VAULT
   -------------------------------------------------------------------------- */
.motion-vault-section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 6rem var(--pad-x);
}

.motion-theater {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

.cinema-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #000000;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(159, 179, 255, 0.08);
}

.cinema-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cinema-glass-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 40%, rgba(4, 3, 7, 0.5) 100%);
}

.cinema-letterbox-top,
.cinema-letterbox-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 6%;
  background: #000000;
  z-index: 2;
  pointer-events: none;
}

.cinema-letterbox-top { top: 0; }
.cinema-letterbox-bottom { bottom: 0; }

.cinema-hud {
  position: absolute;
  bottom: 8%;
  left: 5%;
  right: 5%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 3;
  pointer-events: none;
}

.cinema-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 1rem;
  background: rgba(4, 3, 7, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--silver-200);
}

.hud-rec {
  width: 7px;
  height: 7px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 10px #ef4444;
  animation: pulse-dot 1.2s infinite ease-in-out;
}

.cinema-scene-info {
  text-align: right;
}

.scene-code {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--periwinkle-main);
  display: block;
  margin-bottom: 0.2rem;
}

.scene-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--silver-100);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Cinema Rail */
.cinema-rail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rail-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem;
  border-radius: 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
  text-align: left;
}

.rail-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-highlight);
  transform: translateX(4px);
}

.rail-card.is-active {
  background: rgba(159, 179, 255, 0.1);
  border-color: var(--periwinkle-main);
  box-shadow: 0 0 20px rgba(159, 179, 255, 0.15);
}

.rail-card__thumb {
  width: 70px;
  height: 70px;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  background: #000;
}

.rail-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rail-card__info {
  display: flex;
  flex-direction: column;
}

.rail-code {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--periwinkle-main);
  margin-bottom: 0.2rem;
}

.rail-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--silver-100);
  margin-bottom: 0.25rem;
}

.rail-card small {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--silver-600);
}

/* --------------------------------------------------------------------------
   SECTION 03: THE ANGELIC ORACLE
   -------------------------------------------------------------------------- */
.oracle-section {
  position: relative;
  padding: 7rem var(--pad-x);
  overflow: hidden;
}

.oracle-ambient-back {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 179, 255, 0.08) 0%, rgba(94, 114, 228, 0.03) 45%, transparent 70%);
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
}

.oracle-container {
  max-width: 900px;
  margin: 0 auto;
}

.oracle-altar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}

.oracle-sigil-pedestal {
  position: relative;
  width: clamp(220px, 30vw, 290px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
  transition: transform 0.4s ease;
}

.oracle-sigil-pedestal:hover {
  transform: scale(1.05);
}

.sigil-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 50px rgba(159, 179, 255, 0.35), 0 0 100px rgba(94, 114, 228, 0.2);
  border: 2px solid rgba(203, 213, 255, 0.4);
  position: relative;
  z-index: 2;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.oracle-sigil-pedestal:hover .sigil-disc {
  box-shadow: 0 0 70px rgba(159, 179, 255, 0.6), 0 0 130px rgba(94, 114, 228, 0.4);
  border-color: #ffffff;
}

.sigil-glow-ring {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 1px dashed rgba(159, 179, 255, 0.35);
  animation: rotate-ring 30s linear infinite;
}

.sigil-particles-ring {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px solid rgba(159, 179, 255, 0.15);
  animation: rotate-ring 45s linear infinite reverse;
}

@keyframes rotate-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.sigil-action-hint {
  position: absolute;
  bottom: -2.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  color: var(--periwinkle-main);
  z-index: 3;
}

.hint-pulse {
  animation: pulse-dot 1.5s infinite;
}

/* Oracle Card */
.oracle-card {
  position: relative;
  width: 100%;
  border-radius: 1.5rem;
  background: linear-gradient(170deg, rgba(22, 20, 36, 0.92) 0%, rgba(11, 10, 18, 0.95) 100%);
  border: 1px solid rgba(159, 179, 255, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(159, 179, 255, 0.1);
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: transform 0.4s ease;
}

.oracle-card__body {
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.oracle-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.oracle-number {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  color: var(--periwinkle-main);
}

.oracle-badge {
  padding: 0.25rem 0.65rem;
  border-radius: 1rem;
  background: rgba(159, 179, 255, 0.12);
  border: 1px solid rgba(159, 179, 255, 0.3);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: var(--silver-100);
}

.oracle-verse {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3.2vw, 2.2rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: var(--silver-100);
  max-width: 44rem;
  margin-bottom: 2.2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.oracle-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.author-mark {
  color: var(--periwinkle-main);
  letter-spacing: 0.3em;
}

.author-name {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--silver-600);
}

.oracle-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-oracle-action {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.6rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-200);
  transition: all 0.3s ease;
}

.btn-oracle-action:hover {
  border-color: var(--border-highlight);
  background: rgba(159, 179, 255, 0.12);
  color: var(--silver-100);
}

.btn-oracle-action--copy:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------------------------------
   SECTION 04: NOCTURNE PORTALS
   -------------------------------------------------------------------------- */
.portals-section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 6rem var(--pad-x);
}

.portals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portal-card {
  position: relative;
  border-radius: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.portal-card:hover {
  border-color: var(--border-highlight);
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(159, 179, 255, 0.15);
}

.portal-glass {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.portal-index {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--periwinkle-main);
}

.portal-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--silver-100);
}

.portal-network {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--silver-600);
  display: block;
  margin-bottom: 0.35rem;
}

.portal-handle {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--silver-100);
  margin-bottom: 0.85rem;
}

.portal-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--silver-400);
  font-weight: 300;
  margin-bottom: 2.2rem;
  flex-grow: 1;
}

.portal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.portal-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-200);
  transition: color 0.3s ease;
}

.portal-link:hover {
  color: var(--periwinkle-main);
}

.portal-link__arrow {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.portal-link:hover .portal-link__arrow {
  transform: translate(2px, -2px);
}

.portal-copy {
  padding: 0.35rem 0.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--silver-400);
  transition: all 0.25s ease;
}

.portal-copy:hover {
  background: rgba(159, 179, 255, 0.1);
  border-color: var(--border-highlight);
  color: var(--silver-100);
}

/* --------------------------------------------------------------------------
   SANCTUARY FOOTER
   -------------------------------------------------------------------------- */
.sanctuary-footer {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 4rem var(--pad-x) 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top-ornament {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  color: var(--periwinkle-main);
}

.ornament-line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159, 179, 255, 0.35), transparent);
}

.ornament-cross {
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  opacity: 0.8;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-titles {
  display: flex;
  flex-direction: column;
}

.f-name {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--silver-100);
}

.f-sub {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  color: var(--periwinkle-main);
}

.footer-motto {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--silver-400);
  line-height: 1.6;
}

.footer-motto small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-style: normal;
  color: var(--silver-600);
  margin-top: 0.35rem;
}

.footer-status-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

.status-k {
  color: var(--silver-600);
  letter-spacing: 0.16em;
}

.status-v {
  color: var(--silver-200);
  letter-spacing: 0.12em;
}

.status-v--live {
  color: #10b981;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--silver-600);
}

.footer-up-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--silver-400);
  letter-spacing: 0.18em;
  transition: color 0.3s ease;
}

.footer-up-btn:hover {
  color: var(--periwinkle-main);
}

.up-arrow {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.footer-up-btn:hover .up-arrow {
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   LUXURY LIGHTBOX MODAL
   -------------------------------------------------------------------------- */
.sanctuary-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.sanctuary-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 7, 0.92);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.lightbox-container {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-viewport {
  position: relative;
  max-height: 72vh;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(159, 179, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-img {
  max-height: 72vh;
  width: auto;
  max-width: 85vw;
  object-fit: contain;
}

.lightbox-info {
  margin-top: 1.5rem;
  text-align: center;
  max-width: 38rem;
}

.lightbox-meta-top {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  margin-bottom: 0.4rem;
}

.lightbox-cat {
  color: var(--periwinkle-main);
}

.lightbox-counter {
  color: var(--silver-600);
}

.lightbox-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--silver-100);
  margin-bottom: 0.4rem;
}

.lightbox-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--silver-400);
  font-weight: 300;
}

.lightbox-close {
  position: absolute;
  top: -3.5rem;
  right: 0;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--silver-100);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: all 0.25s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: rgba(4, 3, 7, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--silver-100);
  display: grid;
  place-items: center;
  font-size: 2rem;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.lightbox-nav:hover {
  background: rgba(159, 179, 255, 0.2);
  border-color: var(--periwinkle-main);
}

.lightbox-nav--prev { left: -4.5rem; }
.lightbox-nav--next { right: -4.5rem; }

/* Toast */
.sanctuary-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  padding: 0.75rem 1.4rem;
  border-radius: 2rem;
  background: rgba(14, 13, 22, 0.95);
  border: 1px solid var(--periwinkle-main);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(159, 179, 255, 0.25);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--silver-100);
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.sanctuary-toast.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   RESPONSIVE MEDIA QUERIES (TABLETS & DESKTOPS)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .hero-monolith {
    max-width: 380px;
    margin: 0 auto;
  }
  
  .motion-theater {
    grid-template-columns: 1fr;
  }
  
  .cinema-rail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   RESPONSIVE MEDIA QUERIES (MOBILE SCREENS < 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --pad-x: 1rem;
  }

  /* Header */
  .sanctuary-header {
    padding: 0.65rem var(--pad-x);
  }
  .sanctuary-nav {
    display: none;
  }
  .brand-logo {
    gap: 0.5rem;
  }
  .brand-logo__svg {
    width: 1.75rem;
    height: 1.75rem;
  }
  .brand-name {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
  }
  .brand-edition {
    font-size: 0.48rem;
    letter-spacing: 0.16em;
  }
  .header-actions {
    gap: 0.4rem;
  }
  .audio-toggle {
    padding: 0.35rem 0.55rem;
    font-size: 0.55rem;
  }
  .lang-switch {
    padding: 0.35rem 0.5rem;
    font-size: 0.58rem;
  }
  .classic-mode-link {
    padding: 0.35rem 0.55rem;
    font-size: 0.55rem;
  }

  /* Hero Section */
  .hero-portal {
    padding: 4.8rem var(--pad-x) 2rem;
    min-height: auto;
    overflow: hidden;
  }
  .hero-badge {
    margin-bottom: 1rem;
    font-size: 0.55rem;
    padding: 0.25rem 0.65rem;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  .hero-badge__coord {
    display: none;
  }
  .hero-title__arch {
    font-size: clamp(1.35rem, 6.5vw, 2.1rem);
    letter-spacing: 0.18em;
  }
  .hero-title__name {
    font-size: clamp(1.85rem, 8.5vw, 3.2rem);
    letter-spacing: 0.02em;
    line-height: 1;
    word-break: normal;
  }
  .hero-title__sub {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    margin-top: 0.45rem;
    line-height: 1.4;
  }
  .hero-philosophy {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
    margin-bottom: 2rem;
  }
  .btn-sanctuary,
  .btn-oracle-quick {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.2rem;
    font-size: 0.68rem;
  }
  .hero-meta-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding-top: 1.25rem;
    width: 100%;
  }
  .meta-item {
    padding: 0.55rem 0.35rem;
    text-align: center;
  }
  .meta-item:last-child {
    grid-column: auto;
  }
  .meta-label {
    font-size: 0.45rem;
    letter-spacing: 0.08em;
  }
  .meta-value {
    font-size: 0.65rem;
    letter-spacing: 0.04em;
  }
  .hero-monolith {
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
  }
  .nocturne-ticker {
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
  }

  /* Section Commons */
  .section-top-bar {
    margin-bottom: 1.5rem;
    gap: 0.75rem;
  }
  .section-glyph {
    font-size: 0.52rem;
    letter-spacing: 0.16em;
  }
  .title-serif {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }
  .title-sans {
    font-size: clamp(1.3rem, 5.5vw, 1.9rem);
  }
  .section-summary {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  /* Lookbook & Filter — Svelte 2-Column Mobile Luxury Lookbook */
  .lookbook-section {
    padding: 3rem var(--pad-x);
  }
  .filter-bar {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.6rem;
    margin-bottom: 1.5rem;
    gap: 0.45rem;
    scrollbar-width: none;
  }
  .filter-bar::-webkit-scrollbar {
    display: none;
  }
  .filter-chip {
    flex-shrink: 0;
    padding: 0.4rem 0.8rem;
    font-size: 0.58rem;
  }
  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    perspective: none;
  }
  .tilt-card {
    transform: none !important;
    perspective: none !important;
    will-change: auto;
  }
  .tilt-card__inner {
    border-radius: 0.75rem;
  }
  .tilt-card__sheen {
    display: none !important;
  }
  .tilt-card__img-wrap {
    aspect-ratio: 3 / 4;
  }
  .tilt-card__badges {
    top: 0.45rem;
    left: 0.45rem;
    right: 0.45rem;
  }
  .badge-cat {
    padding: 0.15rem 0.4rem;
    font-size: 0.45rem;
    letter-spacing: 0.08em;
  }
  .badge-num {
    font-size: 0.48rem;
    letter-spacing: 0.08em;
  }
  .tilt-card__footer {
    padding: 0.55rem 0.65rem 0.65rem;
  }
  .card-name {
    font-size: 0.88rem;
    line-height: 1.25;
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .card-loc {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Motion Vault (Cinema) */
  .motion-vault-section {
    padding: 3rem var(--pad-x);
  }
  .cinema-screen {
    aspect-ratio: 9 / 14;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 1.25rem;
    border-radius: 0.85rem;
  }
  .cinema-hud {
    bottom: 5%;
    left: 4%;
    right: 4%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .cinema-scene-info {
    text-align: left;
  }
  .scene-title {
    font-size: 1.05rem;
  }
  .cinema-rail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
  .rail-card {
    padding: 0.5rem;
    border-radius: 0.65rem;
    gap: 0.55rem;
  }
  .rail-card__thumb {
    width: 44px;
    height: 44px;
    border-radius: 0.4rem;
    flex-shrink: 0;
  }
  .rail-title {
    font-size: 0.68rem;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* The Angelic Oracle */
  .oracle-section {
    padding: 3.5rem var(--pad-x);
  }
  .oracle-altar {
    gap: 2rem;
  }
  .oracle-sigil-pedestal {
    width: min(180px, 50vw);
  }
  .oracle-card {
    border-radius: 1rem;
  }
  .oracle-card__body {
    padding: 1.5rem 1.1rem;
  }
  .oracle-card__header {
    margin-bottom: 1rem;
  }
  .oracle-verse {
    font-size: clamp(1.05rem, 4.8vw, 1.45rem);
    line-height: 1.45;
    margin-bottom: 1.25rem;
  }
  .oracle-author {
    margin-bottom: 1.5rem;
  }
  .oracle-actions {
    width: 100%;
    flex-direction: column;
    gap: 0.65rem;
  }
  .btn-oracle-action {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.2rem;
    font-size: 0.65rem;
  }

  /* Portals */
  .portals-section {
    padding: 3rem var(--pad-x);
  }
  .portals-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .portal-glass {
    padding: 1.25rem;
  }
  .portal-header {
    margin-bottom: 1rem;
  }
  .portal-handle {
    font-size: 1.25rem;
  }
  .portal-desc {
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
  }

  /* Footer */
  .sanctuary-footer {
    padding: 2.5rem var(--pad-x) 1.75rem;
  }
  .footer-top-ornament {
    margin-bottom: 2rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 2rem;
  }
  .footer-status-card {
    padding: 1rem;
  }
  .status-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 0.85rem;
    text-align: center;
  }

  /* Lightbox */
  .lightbox-container {
    width: 94vw;
    max-width: 440px;
    max-height: 90vh;
    padding: 0.75rem;
  }
  .lightbox-viewport {
    max-height: 50vh;
  }
  .lightbox-img {
    max-height: 50vh;
    max-width: 100%;
    object-fit: contain;
  }
  .lightbox-info {
    margin-top: 0.75rem;
    padding: 0 0.25rem;
  }
  .lightbox-title {
    font-size: 1.15rem;
  }
  .lightbox-desc {
    font-size: 0.74rem;
    line-height: 1.4;
  }
  .lightbox-nav {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.1rem;
  }
  .lightbox-nav--prev { left: 0.25rem; }
  .lightbox-nav--next { right: 0.25rem; }
  .lightbox-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 50%;
  }
}

/* --------------------------------------------------------------------------
   TOUCH DEVICES: PREVENT 3D TRANSFORMS AND JITTER
   -------------------------------------------------------------------------- */
@media (hover: none) and (pointer: coarse) {
  .tilt-card {
    transform: none !important;
    perspective: none !important;
  }
  .tilt-card:hover .tilt-card__inner {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    border-color: var(--border-subtle) !important;
  }
  .tilt-card:hover .tilt-card__img-wrap img {
    transform: none !important;
  }
  .tilt-card__sheen {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   RESPONSIVE MEDIA QUERIES (TINY PHONES < 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .brand-edition {
    display: none;
  }
  .audio-toggle .audio-label {
    display: none;
  }
  .audio-toggle {
    padding: 0.45rem 0.55rem;
    border-radius: 50%;
  }
  .classic-mode-link .classic-text {
    display: none;
  }
  .classic-mode-link {
    padding: 0.45rem 0.6rem;
    border-radius: 50%;
  }
  .lookbook-grid {
    gap: 0.5rem;
  }
  .tilt-card__footer {
    padding: 0.45rem 0.55rem;
  }
  .card-name {
    font-size: 0.8rem;
  }
  .cinema-rail {
    grid-template-columns: 1fr;
  }
}
