/* ==========================================================================
   SAfina - Y2K Editorial Lookbook & Dreamy Digital Collage Design System
   Aesthetic: Pinterest Scrapbook, Sky Clouds, Apple Notes, High Fashion Editorial
   ========================================================================== */

:root {
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-mono: 'Courier Prime', 'Courier New', monospace;
  
  --sky-blue: #b3d7f2;
  --sky-light: #e8f4fc;
  --cloud-white: #ffffff;
  --marker-yellow: #fff34d;
  --magenta-hot: #ff2d87;
  --magenta-dark: #c80058;
  --pink-light: #ffe6f2;
  --apple-note-bg: #fffcf0;
  --apple-note-border: #e6e2cb;
  --apple-note-yellow: #fde880;
  --acid-lime: #9fe800;
  --ink-black: #111111;
  --ink-gray: #4a4a4a;
  --border-subtle: rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--ink-black);
  background: var(--sky-light);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Typography Helpers */
.font-serif {
  font-family: var(--font-serif);
}

.font-mono {
  font-family: var(--font-mono);
}

/* Yellow Highlighter Marker Accent */
.highlight-yellow {
  background: var(--marker-yellow);
  padding: 0.1em 0.35em;
  display: inline-block;
  line-height: 1.1;
  transform: rotate(-1deg);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.highlight-blue {
  background: #a9d9ff;
  color: #003366;
  padding: 0.1em 0.3em;
  display: inline-block;
  font-size: 0.9em;
}

/* ==========================================================================
   1. FLOATING PILL NAVIGATION BAR
   ========================================================================== */
.nav-pill-wrapper {
  position: fixed;
  top: 16px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
  padding: 0 16px;
  pointer-events: none;
}

.nav-pill-bar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 6px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow-x: auto;
  max-width: 95vw;
}

.nav-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.nav-pill-item:hover {
  background: #fff;
  border-color: #000;
  transform: translateY(-1px);
}

.nav-pill-item.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.nav-pill-heart {
  background: var(--marker-yellow);
  color: #000;
  border-color: #000;
  cursor: pointer;
}

.nav-pill-heart:hover {
  background: #ffeb3b;
  transform: scale(1.05);
}

/* ==========================================================================
   MOBILE HAMBURGER NAVIGATION (DEFAULT: HIDDEN ON DESKTOP)
   ========================================================================== */
.nav-mobile-bar,
.nav-mobile-drawer,
.nav-mobile-backdrop {
  display: none;
}

@media (max-width: 768px) {
  /* Sembunyikan navigasi pill desktop di layar mobile */
  .nav-desktop {
    display: none !important;
  }

  /* Tampilkan Top Bar Mobile */
  .nav-mobile-bar {
    display: flex;
    pointer-events: auto;
    width: 100%;
    max-width: 440px;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 6px 8px 6px 14px;
    border-radius: 9999px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .nav-mobile-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--ink-black);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: -0.2px;
  }

  .nav-mobile-brand .brand-heart {
    color: var(--magenta-hot);
    font-size: 14px;
    animation: heartPulse 1.8s ease-in-out infinite;
  }

  .nav-mobile-actions {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .nav-mobile-heart {
    padding: 5px 11px;
    font-size: 11px;
    border-radius: 9999px;
  }

  /* Tombol Hamburger */
  .nav-burger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s;
  }

  .nav-burger-btn:hover {
    transform: scale(1.05);
  }

  .nav-burger-btn:active {
    transform: scale(0.95);
  }

  .burger-icon {
    position: relative;
    width: 15px;
    height: 11px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.2s ease;
    transform-origin: center;
  }

  /* Animasi Hamburger Morphing ke tanda X */
  .nav-burger-btn.is-active {
    background: var(--magenta-hot);
    border-color: var(--magenta-hot);
  }

  .nav-burger-btn.is-active .burger-line:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-burger-btn.is-active .burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-burger-btn.is-active .burger-line:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  /* Backdrop Overlay dengan Blur */
  .nav-mobile-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 30, 0.32);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
  }

  .nav-mobile-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Mobile Drawer Dropdown Card */
  .nav-mobile-drawer {
    display: block;
    position: fixed;
    top: 68px;
    left: 16px;
    right: 16px;
    max-width: 440px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    padding: 16px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.97);
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.25s;
    pointer-events: none;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
  }

  .nav-mobile-drawer.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 8px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
  }

  .nav-drawer-tag {
    font-size: 10px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
  }

  .nav-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .nav-drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #222;
    background: rgba(0, 0, 0, 0.025);
    border: 1px solid transparent;
    transition: all 0.18s ease;
  }

  .nav-drawer-link-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .drawer-link-icon {
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .drawer-link-num {
    font-family: var(--font-mono);
    font-size: 10px;
    color: #888;
    background: rgba(0, 0, 0, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
  }

  .drawer-link-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.2px;
  }

  .drawer-link-arrow {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #aaa;
    transition: transform 0.18s ease, color 0.18s ease;
  }

  .nav-drawer-link:hover {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateX(3px);
  }

  .nav-drawer-link:hover .drawer-link-arrow {
    color: #000;
    transform: translateX(2px);
  }

  .nav-drawer-link.active {
    background: #000;
    color: #fff;
    border-color: #000;
  }

  .nav-drawer-link.active .drawer-link-num {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
  }

  .nav-drawer-link.active .drawer-link-arrow {
    color: var(--marker-yellow);
  }

  .nav-drawer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    margin-top: 10px;
    border-top: 1px dashed rgba(0, 0, 0, 0.12);
  }

  .nav-drawer-love-btn {
    background: var(--marker-yellow);
    border: 1px solid #000;
    color: #000;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 9999px;
    cursor: pointer;
    transition: transform 0.18s ease;
  }

  .nav-drawer-love-btn:hover {
    transform: scale(1.05);
  }

  body.nav-drawer-open {
    overflow: hidden;
  }
}

@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* ==========================================================================
   2. HERO SECTION (Dreamy Clouds & Floating Collage)
   ========================================================================== */
.hero-editorial {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 20px 40px 20px;
  background: linear-gradient(180deg, #99cbee 0%, #cae3f7 50%, #f0f7fd 100%);
  overflow: hidden;
}

/* Cloud Backdrop Texture */
.hero-editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.85) 0%, transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.75) 0%, transparent 40%),
    radial-gradient(circle at 50% 85%, rgba(255, 255, 255, 0.95) 0%, transparent 55%);
  pointer-events: none;
}

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

.hero-headline {
  margin-bottom: 12px;
}

.hero-title-sans {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(48px, 9vw, 92px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #111;
  text-transform: lowercase;
}

.hero-title-serif {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(52px, 10vw, 100px);
  font-weight: 500;
  font-style: italic;
  line-height: 0.95;
  color: #111;
}

.hero-tagline {
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 500;
  color: #333;
  margin-top: 14px;
}

/* Floating Retro OS Windows & Polaroids in Hero */
.floating-element {
  position: absolute;
  z-index: 5;
  transition: transform 0.3s ease;
}

.floating-element:hover {
  transform: scale(1.04) !important;
  z-index: 20;
}

.os-window-card {
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.os-window-header {
  height: 20px;
  background: #f0f0f0;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  font-size: 9px;
  font-family: var(--font-mono);
  color: #555;
}

.os-window-dots {
  display: flex;
  gap: 3px;
}

.os-window-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bbb;
}

.polaroid-card {
  background: #fff;
  padding: 6px 6px 18px 6px;
  border-radius: 2px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.polaroid-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.polaroid-caption {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #555;
  text-align: center;
  margin-top: 6px;
}

.cursor-sticker {
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none;
  filter: drop-shadow(2px 3px 4px rgba(0,0,0,0.2));
  z-index: 15;
}

/* ==========================================================================
   3. SECTION: ASSESS THE STORY (Minimalist Shelves & Apple Notes)
   ========================================================================== */
.section-shelf {
  background: #ffffff;
  padding: 70px 24px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.shelf-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.shelves-display {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.shelf-tier {
  position: relative;
  border-bottom: 8px solid #ffffff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  padding-bottom: 4px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 12px;
  min-height: 90px;
  background: linear-gradient(180deg, transparent 60%, #f9f9f9 100%);
}

.shelf-tier::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 6px;
  background: #e2e2e2;
  border-radius: 0 0 2px 2px;
}

.shelf-item-img {
  height: 70px;
  max-width: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
  transition: transform 0.2s ease;
}

.shelf-item-img:hover {
  transform: translateY(-4px) scale(1.08);
}

.shelf-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-heading-editorial {
  font-family: var(--font-sans);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #111;
}

.section-heading-editorial em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

.editorial-text {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

/* Apple Notes Card Component */
.apple-note {
  background: var(--apple-note-bg);
  border: 1px solid var(--apple-note-border);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  position: relative;
}

.apple-note-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 6px;
  margin-bottom: 10px;
  font-size: 11px;
  color: #d89f00;
  font-weight: 600;
}

.apple-note-badge {
  background: var(--apple-note-yellow);
  padding: 2px 6px;
  border-radius: 4px;
  color: #664d00;
}

.apple-note-body {
  font-size: 13px;
  line-height: 1.5;
  color: #222;
}

/* ==========================================================================
   4. SECTION: CLEANSE THE AURA (3D Pink Pedestal & Memories Grid)
   ========================================================================== */
.section-pedestal {
  background: linear-gradient(180deg, #f0f7fd 0%, #c9e4fb 50%, #b0d6f7 100%);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.pedestal-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}

.pedestal-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* 3D Pedestal Podium Centerpiece */
.pedestal-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.pedestal-controls {
  position: absolute;
  top: 50%;
  width: 115%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}

.pedestal-btn {
  pointer-events: auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: grid;
  place-items: center;
  color: var(--magenta-hot);
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.pedestal-btn:hover {
  background: var(--magenta-hot);
  color: #fff;
  transform: scale(1.1);
}

.pedestal-photo-box {
  width: 220px;
  height: 290px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  border: 3px solid #fff;
  z-index: 2;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.pedestal-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pedestal-cylinder {
  width: 250px;
  height: 60px;
  background: radial-gradient(ellipse at center, #ff57a0 0%, #ff1a7a 50%, #c40058 100%);
  border-radius: 50%;
  margin-top: -30px;
  z-index: 1;
  box-shadow: 0 12px 28px rgba(255, 26, 122, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.6);
  border: 2px solid #ff7eb3;
}

/* Right Polaroid Grid */
.pedestal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.pink-frame-thumb {
  background: var(--pink-light);
  border: 2px solid #ff99cc;
  border-radius: 6px;
  overflow: hidden;
  height: 95px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.pink-frame-thumb:hover {
  transform: scale(1.05);
  border-color: var(--magenta-hot);
}

.pink-frame-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   5. SECTION: FIND YOUR FORMULA (Urban Wallpaper & Retro Desktop Icons)
   ========================================================================== */
.section-formula {
  position: relative;
  padding: 80px 24px;
  background: #332f2c url('https://images.pexels.com/photos/1036623/pexels-photo-1036623.jpeg') center/cover no-repeat;
  color: #fff;
}

.section-formula::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.formula-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

/* Scattered Retro Desktop Icons */
.desktop-icons-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.desktop-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #fff;
  padding: 6px;
  border-radius: 4px;
  transition: background 0.2s;
  cursor: pointer;
}

.desktop-icon-item:hover {
  background: rgba(0, 102, 204, 0.5);
}

.desktop-icon-thumb {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.desktop-icon-symbol {
  font-size: 36px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.desktop-icon-label {
  font-size: 10px;
  font-family: var(--font-sans);
  margin-top: 4px;
  text-shadow: 1px 1px 2px #000;
  max-width: 80px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Large Formula Note */
.formula-note-large {
  background: #ffffff;
  color: #111;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   6. SECTION: MANIFEST THE SERVE / DREAMS (Bucket Checklist & Sky)
   ========================================================================== */
.section-manifest {
  background: linear-gradient(180deg, #cae3f7 0%, #e2f0fb 60%, #f7fbff 100%);
  padding: 80px 24px;
}

.manifest-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.manifest-checklist {
  background: var(--apple-note-bg);
  border: 1px solid var(--apple-note-border);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.manifest-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  font-size: 13px;
  color: #222;
}

.manifest-check-item input[type="checkbox"] {
  accent-color: var(--magenta-hot);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.manifest-check-item.done span {
  text-decoration: line-through;
  color: #888;
}

/* ==========================================================================
   7. FOOTER: ACID LIME / BRAT GREEN BANNER
   ========================================================================== */
.acid-footer {
  background: var(--acid-lime);
  color: #000000;
  padding: 80px 24px 60px 24px;
  text-align: center;
}

.acid-footer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.acid-footer-headline {
  font-family: var(--font-sans);
  font-size: clamp(40px, 8vw, 76px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  margin-bottom: 24px;
}

.acid-footer-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.75);
}

/* ==========================================================================
   8. SUBPAGE WRAPPERS (Harmonized Look for About, Story, Album, etc.)
   ========================================================================== */
.subpage-hero {
  padding: 100px 20px 40px 20px;
  text-align: center;
  background: linear-gradient(180deg, #99cbee 0%, #cae3f7 100%);
}

.subpage-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px 80px 20px;
}

.editorial-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 24px;
  margin-bottom: 24px;
}

/* Particle Canvas */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999999;
}

/* Lightbox Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #fff;
  border-radius: 12px;
  max-width: 550px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}

/* Responsive Media Queries */
@media (max-width: 860px) {
  .shelf-container,
  .formula-container,
  .manifest-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pedestal-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pedestal-controls {
    width: 100%;
  }

  .pedestal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .pedestal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

