/* ==========================================================================
   OinkDrop — drop.css
   Generated-page styles: drop product pages (drops/<slug>.html) and project
   dev-log pages (projects/<slug>.html). Loaded after main.css + legal.css.
   legal.css supplies .page-banner / .breadcrumb / .page-title; main.css
   supplies buttons, header, footer. Landing-only helpers (.eyebrow,
   .section-title) are duplicated here because home.css is not loaded.
   ========================================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 193, 177, 0.55);
}
.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-bright);
  margin: 0;
}
.section-title em { font-style: italic; color: var(--accent); }

/* ==========================================================================
   Drop hero extras (inside .page-banner from legal.css)
   ========================================================================== */
.drop-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.drop-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201, 193, 177, 0.75);
}
.drop-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.drop-pill.status-available { border-color: rgba(255, 177, 98, 0.45); color: var(--accent); }
.drop-pill.status-coming-soon .dot { animation: pillPulse 2s ease-in-out infinite; }
@keyframes pillPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}
.drop-hero-tagline {
  margin-top: 20px;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  color: rgba(201, 193, 177, 0.85);
  max-width: 62ch;
}
.drop-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* ==========================================================================
   Marmoset viewer stage + scene carousel
   ========================================================================== */
.viewer-section {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 64px var(--pad) 30px;
}
.viewer-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.viewer-head .eyebrow { margin-bottom: 12px; }
.viewer-nav { display: flex; align-items: center; gap: 10px; }
.viewer-nav button {
  width: 46px; height: 46px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  color: var(--text-bright);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.viewer-nav button:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(201, 193, 177, 0.28);
  color: var(--accent);
}
.viewer-nav button:active { transform: scale(0.92); }
.viewer-nav svg { width: 18px; height: 18px; }

.viewer-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 64vh;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 30px 70px -34px rgba(0, 0, 0, 0.9);
}
.viewer-stage canvas { display: block; }

.viewer-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Placeholder for scenes with no .mview yet: dimmed drop art + message card */
.viewer-placeholder { position: absolute; inset: 0; }
.viewer-placeholder .placeholder-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
.viewer-placeholder .placeholder-msg {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(440px, calc(100% - 48px));
  padding: 26px 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(27, 38, 50, 0.92), rgba(20, 29, 38, 0.94));
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 60px -20px rgba(0, 0, 0, 0.8);
  text-align: center;
}
.placeholder-msg .ph-kicker {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.placeholder-msg .ph-title {
  font-family: var(--display);
  font-size: 21px;
  color: var(--text-bright);
  margin-bottom: 10px;
}
.placeholder-msg p {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(201, 193, 177, 0.7);
  margin: 0;
}

/* Scene pills under the stage */
.viewer-scenes {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.scene-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(201, 193, 177, 0.75);
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.scene-pill:hover { border-color: rgba(201, 193, 177, 0.3); color: var(--text-bright); }
.scene-pill.active {
  border-color: rgba(255, 177, 98, 0.55);
  background: rgba(255, 177, 98, 0.08);
  color: var(--accent);
}
.scene-pill .soon {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 2px 5px;
}
.viewer-caption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
  font-family: var(--display);
  min-height: 1.4em;
}

/* ==========================================================================
   Overview: long description + spec panel
   ========================================================================== */
.drop-overview {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 60px var(--pad) 30px;
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 48px;
  align-items: start;
}
.drop-about .eyebrow { margin-bottom: 12px; }
.drop-about .section-title { margin-bottom: 22px; }
.drop-about p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 18px;
  max-width: 62ch;
}

.spec-panel {
  padding: 26px 28px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(14px);
  box-shadow: var(--glass-line), 0 20px 50px -28px rgba(0, 0, 0, 0.8);
  position: sticky;
  top: 96px;
}
.spec-panel h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  color: var(--text-bright);
  margin: 0 0 14px;
}
.spec-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(201, 193, 177, 0.14);
  font-size: 13px;
}
.spec-row:last-child { border-bottom: none; }
.spec-row .k { color: var(--text-dim); letter-spacing: 0.04em; }
.spec-row .v { color: var(--text-bright); text-align: right; }

/* ==========================================================================
   What's inside
   ========================================================================== */
.drop-contents {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 50px var(--pad) 20px;
}
.drop-contents .eyebrow { margin-bottom: 12px; }
.drop-contents .section-title { margin-bottom: 28px; }
.contents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}
.content-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(12px);
  box-shadow: var(--glass-line);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.content-chip:hover { transform: translateY(-3px); border-color: rgba(201, 193, 177, 0.3); }
.content-chip .chip-label { font-size: 13.5px; color: var(--text-bright); }
.content-chip .chip-count {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.drop-gallery {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 50px var(--pad) 20px;
}
.drop-gallery .eyebrow { margin-bottom: 12px; }
.drop-gallery .section-title { margin-bottom: 28px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.gallery-grid figure { margin: 0; }
.gallery-grid img {
  display: block;
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px -26px rgba(0, 0, 0, 0.85);
}

/* ==========================================================================
   Bottom CTA band
   ========================================================================== */
.drop-cta {
  max-width: var(--shell);
  margin: 40px auto 0;
  padding: 80px var(--pad) 90px;
  text-align: center;
}
.drop-cta .section-title { margin-bottom: 16px; }
.drop-cta p {
  font-size: 15px;
  color: rgba(201, 193, 177, 0.7);
  margin: 0 auto 30px;
  max-width: 52ch;
}

/* ==========================================================================
   Project dev-log pages
   ========================================================================== */
.devlog {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px var(--pad) 90px;
}
.devlog .eyebrow { margin-bottom: 12px; }
.devlog .section-title { margin-bottom: 40px; }
.devlog-entry {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.devlog-date {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--accent);
  padding-top: 4px;
}
.devlog-body h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  color: var(--text-bright);
  margin: 0 0 12px;
}
.devlog-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 14px;
}
.devlog-empty {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-style: italic;
  font-family: var(--display);
  font-size: 17px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .drop-overview { grid-template-columns: 1fr; gap: 32px; }
  .spec-panel { position: static; }
}
@media (max-width: 640px) {
  .devlog-entry { grid-template-columns: 1fr; gap: 8px; }
  .viewer-stage { aspect-ratio: 4 / 3; }
}
