/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9f5f2;
  color: #1a1a1a;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }

/* =============================================
   SCROLLBAR
============================================= */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f9f5f2; }
::-webkit-scrollbar-thumb { background: #c8c4c0; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #5a5a5a; }

/* =============================================
   NAV
============================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(249, 245, 242, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 44px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.28em;
  color: #1a1a1a;
  user-select: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links button {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #666;
  transition: color 0.2s;
}
.nav-links button:hover { color: #1a1a1a; }
.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-bag-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  transition: background 0.2s;
  position: relative;
}
.nav-bag-btn:hover { background: rgba(0,0,0,0.06); }

.bag-count {
  position: absolute;
  top: 3px; right: 3px;
  width: 16px; height: 16px;
  background: #1a1a1a;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.nav-explore-btn {
  background: #1a1a1a;
  color: #fff;
  padding: 10px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
}
.nav-explore-btn:hover { background: #333; transform: scale(0.97); }

/* =============================================
   HERO
============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 64px;
  background: #f9f5f2;
}

/* Giant low-opacity SPIDER watermark */
.hero-spider-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(120px, 22vw, 280px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  opacity: 0.10;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 60px 24px 80px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Product / lifestyle image */
.hero-product-wrap {
  width: clamp(280px, 38vw, 520px);
  margin: 0 auto 44px;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.22));
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.1s;
}
.hero-product-wrap img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 2vw, 20px);
  color: #555;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeIn 0.7s ease forwards 0.55s;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.6s ease forwards 0.75s;
}


.btn-primary {
  background: #1a1a1a;
  color: #fff;
  padding: 16px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}
.btn-primary:hover { background: #333; transform: scale(0.97); }

.btn-outline {
  background: rgba(255,255,255,0.42);
  color: #1a1a1a;
  border: 1.5px solid #1a1a1a;
  padding: 16px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.15s;
}
.btn-outline:hover { background: rgba(255,255,255,0.75); transform: scale(0.97); }

.play-icon {
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid #1a1a1a;
}

/* =============================================
   HERITAGE
============================================= */
#heritage {
  padding: 120px 44px;
  max-width: 1280px;
  margin: 0 auto;
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.heritage-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #6b7dd8;
  margin-bottom: 18px;
}

.heritage-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.heritage-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.78;
  max-width: 460px;
}
.heritage-desc a { color: #6b7dd8; text-decoration: underline; text-underline-offset: 2px; }

.heritage-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.09);
}

.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
}

/* IMAGE SLOT #2 — Heritage backpack */
.heritage-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  background: #c8c2bc;
}
.heritage-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1s ease;
}
.heritage-img-wrap:hover img { transform: scale(1.03); }

/* =============================================
   COMPOSITION
============================================= */
#composition {
  background: #f2ede9;
  padding: 120px 44px;
  position: relative;
  overflow: hidden;
}
.composition-inner { max-width: 1280px; margin: 0 auto; }

.composition-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 20px;
  flex-wrap: wrap;
}

.composition-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #6b7dd8;
  margin-bottom: 12px;
}

.composition-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.materials-pill {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: #555;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.composition-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 22px;
  align-items: start;
}

/* Composition main image */
.composition-main-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.09);
  display: flex;
  flex-direction: column;
  background: #1a1a1a;
}
.composition-main-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(20%);
  transition: filter 0.8s ease, transform 0.8s ease;
}
.composition-main-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.composition-caption {
  background: #fff;
  padding: 26px 30px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.caption-num {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: #6b7dd8;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.caption-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.caption-desc {
  font-size: 12px;
  color: #777;
  line-height: 1.7;
}
.caption-desc a { color: #6b7dd8; }

.composition-side-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 18px rgba(0,0,0,0.04);
}
.side-card-icon {
  width: 44px; height: 44px;
  background: #f2ede9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(0,0,0,0.07);
}
.side-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.side-card-desc {
  font-size: 12px;
  color: #777;
  line-height: 1.72;
}
.side-card-desc a { color: #6b7dd8; }

/* =============================================
   SERIES / BENTO GRID
============================================= */
#series {
  padding: 120px 44px;
  max-width: 1280px;
  margin: 0 auto;
}

.series-header {
  text-align: center;
  margin-bottom: 60px;
}
.series-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #6b7dd8;
  margin-bottom: 12px;
}
.series-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.series-subtitle {
  font-size: 14px;
  color: #999;
}

/* Bento layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 460px);
  gap: 18px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* IMAGE SLOT #4 — Alpha-01 */
.bento-alpha {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background: #24201c;  /* placeholder */
}

/* IMAGE SLOT #5 — City S-0 */
.bento-city {
  grid-column: 3 / 5;
  grid-row: 1 / 2;
  background: #1e1c1a;  /* placeholder */
}

/* IMAGE SLOT #6 — Lunar Edition */
.bento-lunar {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  background: #14110e;
}

/* IMAGE SLOT #7 — Spectre-X */
.bento-spectre {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
  background: #151413;
}

.bento-card .bento-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
}
.bento-card:hover .bento-img { transform: scale(1.06); }

/* Custom sizing for Lunar Edition & Spectre-X to fix zoomed-in feel */
.bento-lunar .bento-img,
.bento-spectre .bento-img {
  transform: scale(0.82);
  transform-origin: center center;
}
.bento-lunar:hover .bento-img,
.bento-spectre:hover .bento-img {
  transform: scale(0.88);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.4) 45%,
    transparent 100%
  );
  pointer-events: none;
}

.bento-lunar .bento-overlay,
.bento-spectre .bento-overlay {
  background: 
    linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.5) 100%),
    radial-gradient(circle at center, transparent 38%, rgba(0,0,0,0.88) 95%);
}

.bento-info {
  position: relative;
  z-index: 10;
  color: #fff;
  padding: 24px 28px;
}
.bento-alpha .bento-info { padding: 40px 44px; }

.bento-series-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #9aa0e8;
  margin-bottom: 8px;
}

.bento-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.bento-name-xl { font-size: 38px; margin-bottom: 12px; }
.bento-name-md { font-size: 26px; }
.bento-name-sm { font-size: 17px; }

.bento-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  max-width: 300px;
}
.bento-alpha .bento-tagline { max-width: 340px; margin-bottom: 20px; }

/* Alpha-01 Color Swatches */
.alpha-color-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.color-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.color-label strong {
  color: #fff;
  font-weight: 700;
}
.color-swatches {
  display: flex;
  align-items: center;
  gap: 12px;
}
.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.color-swatch::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  transition: border-color 0.2s ease;
}
.color-swatch:hover::after {
  border-color: rgba(255,255,255,0.6);
}
.color-swatch.active::after {
  border-color: #fff;
}
.color-swatch.active {
  transform: scale(1.08);
  border-color: #fff;
}
#alphaImg, #cityImg {
  transition: opacity 0.25s ease, transform 0.75s ease;
}
.bento-city .bento-tagline { margin-bottom: 18px; }

.bento-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bento-price {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  display: block;
}
.bento-price-lg { font-size: 18px; }
.bento-price-md { font-size: 15px; }
.bento-price-sm { font-size: 11px; margin-bottom: 12px; }

.add-bag-btn {
  background: #fff;
  color: #1a1a1a;
  padding: 11px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.add-bag-btn:hover { background: #1a1a1a; color: #fff; transform: scale(0.97); }
.add-bag-sm { padding: 8px 12px; font-size: 8px; }

/* =============================================
   FEATURES
============================================= */
#features {
  background: #f2ede9;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 96px 44px;
}
.features-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
}
.feature-icon {
  width: 48px; height: 48px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.65;
  font-weight: 500;
}

/* =============================================
   LIFESTYLE
============================================= */
#lifestyle {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* IMAGE SLOT #8 — Lifestyle background */
.lifestyle-bg {
  position: absolute;
  inset: 0;
  background: #8a8078;   /* placeholder */
}
.lifestyle-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.lifestyle-tint {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(1.5px);
  z-index: 1;
}

.lifestyle-content {
  position: relative;
  z-index: 10;
  padding: 0 44px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.lifestyle-card {
  background: rgba(255,255,255,0.91);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 44px 48px;
  max-width: 430px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.lifestyle-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #6b7dd8;
  margin-bottom: 12px;
}
.lifestyle-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.lifestyle-text { font-size: 13px; color: #777; line-height: 1.75; }

/* =============================================
   TESTIMONIAL
============================================= */
#testimonial {
  background: #f2ede9;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 100px 44px;
}
.testimonial-inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: 'Montserrat', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: #5a5a5a;
  margin-bottom: -8px;
}
.quote-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 2.8vw, 30px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.quote-author-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.quote-author-role {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: #999;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =============================================
   CTA
============================================= */
#cta {
  background: #fff;
  padding: 100px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(107, 125, 216, 0.03);
  pointer-events: none;
}
.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
}
.cta-btn {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  padding: 20px 56px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  margin-bottom: 28px;
  border: none;
  cursor: pointer;
}
.cta-btn:hover { background: #333; transform: scale(0.97); }
.cta-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7dd8;
}

/* =============================================
   FOOTER
============================================= */
footer {
  background: #f2ede9;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 80px 44px 44px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.28em;
  color: #666;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 32px;
}
.footer-links button {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
  transition: color 0.2s;
}
.footer-links button:hover { color: #1a1a1a; }
.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #bbb;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
  width: 100%;
  text-align: center;
}

/* =============================================
   CONCIERGE WIDGET
============================================= */
.concierge-wrap {
  position: fixed !important;
  bottom: 28px !important;
  right: 28px !important;
  z-index: 200 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 12px !important;
}
.concierge-pill {
  background: #1a1a1a;
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap !important;
}
.sparkle { color: #9aa0e8; font-size: 13px; }
.concierge-dismiss {
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  padding: 0 0 0 4px;
  transition: color 0.2s;
}
.concierge-dismiss:hover { color: #fff; }

.concierge-btn {
  width: 52px; height: 52px;
  background: #1a1a1a;
  border-radius: 50%;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  flex-shrink: 0 !important;
}
.concierge-btn:hover { transform: scale(1.08); background: #333; }

/* =============================================
   CHAT PANEL
============================================= */
.chat-panel {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 199;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.chat-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.chat-header {
  background: #1a1a1a;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-avatar {
  width: 32px; height: 32px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.chat-header-text { flex: 1; }
.chat-header-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
}
.chat-header-status { font-size: 10px; color: rgba(255,255,255,0.55); }
.chat-header-close {
  color: rgba(255,255,255,0.55);
  font-size: 18px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.chat-header-close:hover { color: #fff; }
.chat-body {
  padding: 18px 20px;
  height: 220px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.5;
}
.chat-msg.agent {
  background: #f2ede9;
  color: #1a1a1a;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-msg.user {
  background: #1a1a1a;
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-footer {
  padding: 12px 16px;
  border-top: 1px solid rgba(0,0,0,0.07);
  display: flex;
  gap: 8px;
}
.chat-input {
  flex: 1;
  background: #f2ede9;
  border: none;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #1a1a1a;
  outline: none;
}
.chat-input::placeholder { color: #aaa; }
.chat-send {
  background: #1a1a1a;
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  letter-spacing: 0.05em;
}
.chat-send:hover { background: #333; }

/* =============================================
   BAG DRAWER
============================================= */
.bag-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.44);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.bag-overlay.open { opacity: 1; pointer-events: all; }

.bag-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 380px;
  background: #fff;
  z-index: 151;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.bag-drawer.open { transform: translateX(0); }

.bag-drawer-header {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bag-drawer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.bag-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2ede9;
  font-size: 18px;
  cursor: pointer;
  border: none;
  color: #1a1a1a;
  transition: background 0.2s;
}
.bag-close:hover { background: #e5e0db; }

.bag-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #bbb;
  gap: 12px;
}
.bag-empty p { font-size: 13px; }

.bag-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bag-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: #f9f5f2;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.06);
}
.bag-item-thumb {
  width: 64px; height: 64px;
  border-radius: 8px;
  background: #2a2520;
  flex-shrink: 0;
}
.bag-item-info { flex: 1; min-width: 0; }
.bag-item-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
}
.bag-item-price {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #666;
}
.bag-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.qty-btn {
  width: 22px; height: 22px;
  background: #e5e0db;
  border-radius: 4px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-weight: 700;
  transition: background 0.2s;
}
.qty-btn:hover { background: #d5d0cb; }
.qty-val {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}
.remove-item {
  background: none;
  border: none;
  color: #bbb;
  font-size: 18px;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.2s;
}
.remove-item:hover { color: #888; }

.bag-footer {
  padding: 20px 28px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.bag-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.bag-total-label { font-size: 13px; color: #999; }
.bag-total-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
}
.bag-checkout {
  width: 100%;
  background: #1a1a1a;
  color: #fff;
  padding: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.bag-checkout:hover { background: #333; }

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* =============================================
   HAMBURGER BUTTON
============================================= */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(0,0,0,0.06); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
/* X animation when active */
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   MOBILE NAV DRAWER
============================================= */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

.mobile-nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 88vw);
  background: #f9f5f2;
  z-index: 301;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: max(28px, env(safe-area-inset-top, 28px)) max(28px, env(safe-area-inset-right, 28px)) max(40px, env(safe-area-inset-bottom, 40px)) max(28px, env(safe-area-inset-left, 28px));
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav-drawer.open { transform: translateX(0); }

.mobile-nav-close {
  align-self: flex-end;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.mobile-nav-close:hover { background: rgba(0,0,0,0.13); }

.mobile-nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.3em;
  color: #1a1a1a;
  margin-bottom: 36px;
  text-align: center;
  width: 100%;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.mobile-nav-links button {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #333;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
  padding: 18px 12px;
  min-height: 52px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: color 0.2s, background 0.2s;
  border-radius: 6px;
}
.mobile-nav-links button:hover,
.mobile-nav-links button:active {
  color: #1a1a1a;
  background: rgba(0,0,0,0.04);
}

.mobile-nav-cta {
  background: #1a1a1a;
  color: #fff;
  padding: 16px 24px;
  min-height: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 28px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.mobile-nav-cta:hover { background: #333; transform: scale(0.98); }

/* =============================================
   RESPONSIVE & MOBILE OPTIMIZATION
============================================= */

/* ── Large Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-explore-btn { display: none; }

  #heritage    { padding: 80px 32px; }
  #series      { padding: 80px 32px; }
  #features    { padding: 80px 32px; }
  #composition { padding: 80px 32px; }
  #film-section { padding: 80px 32px; }
  #testimonial { padding: 80px 32px; }
  #cta         { padding: 80px 32px; }
  footer       { padding: 60px 32px 36px; }
  .lifestyle-content { padding: 0 32px; }

  .heritage-grid { grid-template-columns: 1fr; gap: 48px; }
  .heritage-text { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .heritage-desc { max-width: 600px; margin: 0 auto; text-align: center; }
  .heritage-stats { justify-content: center; width: 100%; max-width: 500px; }

  .composition-grid { grid-template-columns: 1fr; gap: 36px; }
  .composition-header { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .materials-pill { margin: 0 auto; white-space: normal; text-align: center; }
  .composition-main-card img { height: 360px; aspect-ratio: 16 / 10; }

  .features-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; text-align: center; }
  .feature-icon { margin-left: auto; margin-right: auto; }

  .film-title { font-size: 38px; }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 16px;
  }
  .bento-alpha  { grid-column: 1 / -1; grid-row: auto; min-height: 400px; }
  .bento-city   { grid-column: 1 / -1; grid-row: auto; min-height: 320px; }
  .bento-lunar  { grid-column: 1 / 2;  grid-row: auto; min-height: 300px; }
  .bento-spectre{ grid-column: 2 / 3;  grid-row: auto; min-height: 300px; }

  .concierge-pill {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .concierge-wrap {
    bottom: max(20px, env(safe-area-inset-bottom, 20px)) !important;
    right: max(20px, env(safe-area-inset-right, 20px)) !important;
    gap: 0 !important;
  }
}

/* ── Medium Tablet / Large Mobile (≤768px) ── */
@media (max-width: 768px) {
  .nav-inner {
    padding-left: max(20px, env(safe-area-inset-left, 20px));
    padding-right: max(20px, env(safe-area-inset-right, 20px));
  }

  .hero-content { padding: 36px 20px 60px; width: 100%; }
  .hero-product-wrap { width: clamp(220px, 78vw, 360px); margin-bottom: 32px; }
  .hero-subtitle { font-size: 15px; text-align: center; }
  .hero-spider-watermark { font-size: clamp(64px, 18vw, 200px); }

  #heritage    { padding: 64px 20px; }
  #series      { padding: 64px 20px; }
  #features    { padding: 64px 20px; }
  #composition { padding: 64px 20px; }
  #film-section { padding: 64px 20px; }
  #testimonial { padding: 64px 20px; }
  #cta         { padding: 64px 20px; }
  footer       { padding: 48px 20px calc(32px + env(safe-area-inset-bottom, 0px)); }
  .composition-inner  { padding: 0; }
  .lifestyle-content  { padding: 0 20px; }

  /* Centered Headers on Mobile */
  .heritage-text { text-align: center; align-items: center; }
  .heritage-label { text-align: center; }
  .heritage-title { font-size: 30px; text-align: center; }
  .heritage-desc  { text-align: center; max-width: 100%; }
  .heritage-stats { justify-content: center; text-align: center; width: 100%; }
  .stat-value { text-align: center; }
  .stat-label { text-align: center; }

  .composition-header { text-align: center; align-items: center; }
  .composition-label  { text-align: center; }
  .composition-title  { font-size: 28px; text-align: center; }
  .composition-caption { text-align: center; }
  .caption-num, .caption-title, .caption-desc { text-align: center; }

  .composition-side-card { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .side-card-icon { margin-left: auto; margin-right: auto; }
  .side-card-title, .side-card-desc { text-align: center; }

  .composition-main-card img { height: 260px; aspect-ratio: 16 / 10; }

  .bento-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    height: auto !important;
    gap: 16px !important;
  }
  .bento-alpha, .bento-city, .bento-lunar, .bento-spectre {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    min-height: 320px !important;
  }
  .bento-alpha { min-height: 380px !important; }
  .bento-name-xl { font-size: 28px; }
  .bento-alpha .bento-info { padding: 28px 22px; text-align: left; }
  .bento-info { padding: 24px 20px; }

  .color-swatches { gap: 14px; }
  .color-swatch { width: 32px; height: 32px; }

  .features-inner { grid-template-columns: 1fr 1fr; gap: 24px; text-align: center; }
  .feature-icon { margin-left: auto; margin-right: auto; }

  #lifestyle { height: auto; min-height: 55vh; padding: 0; }
  .lifestyle-card    { max-width: 100%; padding: 32px 24px; text-align: center; }
  .lifestyle-heading { font-size: 26px; text-align: center; }
  .lifestyle-tag, .lifestyle-text { text-align: center; }

  .quote-text { font-size: 18px; line-height: 1.5; text-align: center; }
  .quote-mark { font-size: 54px; text-align: center; }

  .cta-title { font-size: 28px; text-align: center; }
  .cta-btn   { padding: 16px 36px; text-align: center; }

  .film-title     { font-size: 30px; text-align: center; }
  .film-subtitle  { font-size: 15px; text-align: center; }
  .film-player-wrap { width: 100%; max-width: 380px; border-radius: 18px; }

  .bag-drawer {
    width: 100%;
    padding-top: max(16px, env(safe-area-inset-top, 16px));
    padding-bottom: max(20px, env(safe-area-inset-bottom, 20px));
  }
  .qty-btn { width: 32px; height: 32px; font-size: 16px; }

  .chat-panel {
    left: max(12px, env(safe-area-inset-left, 12px)) !important;
    right: max(12px, env(safe-area-inset-right, 12px)) !important;
    width: auto !important;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px)) !important;
    max-height: calc(75dvh - env(safe-area-inset-bottom, 0px)) !important;
    display: flex;
    flex-direction: column;
  }
  .chat-body { flex: 1; min-height: 160px; max-height: 280px; }
  .chat-input { font-size: 16px !important; }

  .concierge-pill {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .concierge-wrap {
    bottom: max(20px, env(safe-area-inset-bottom, 20px)) !important;
    right: max(20px, env(safe-area-inset-right, 20px)) !important;
    gap: 0 !important;
  }
  .concierge-btn  { width: 50px !important; height: 50px !important; }

  .waitlist-modal-overlay {
    padding: max(16px, env(safe-area-inset-top, 16px)) max(16px, env(safe-area-inset-right, 16px)) max(16px, env(safe-area-inset-bottom, 16px)) max(16px, env(safe-area-inset-left, 16px));
    align-items: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .waitlist-modal-box {
    padding: 36px 24px;
    max-height: calc(88dvh - 32px);
    overflow-y: auto;
    margin: auto;
  }
  .waitlist-title { font-size: 22px; text-align: center; }
  .waitlist-input { font-size: 16px !important; }
}

/* ── Small Mobile (≤480px) ── */
@media (max-width: 480px) {
  .nav-logo { font-size: 15px; }

  .hero-content { padding: 28px 16px 48px; }
  .hero-product-wrap { width: clamp(200px, 85vw, 320px); margin-bottom: 24px; }
  .hero-subtitle { font-size: 14px; margin-bottom: 32px; }
  .hero-buttons { width: 100%; flex-direction: column; gap: 10px; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; padding: 16px 24px; font-size: 10px; min-height: 48px; }

  .heritage-title { font-size: 26px; text-align: center; }
  .heritage-stats { grid-template-columns: 1fr 1fr; gap: 16px; text-align: center; }
  .stat-value { font-size: 24px; text-align: center; }
  .stat-label { font-size: 9px; text-align: center; }

  .composition-title { font-size: 24px; text-align: center; }
  .composition-main-card img { height: 230px; }

  .features-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }

  .bento-alpha { min-height: 350px !important; }
  .bento-city, .bento-lunar, .bento-spectre { min-height: 260px !important; }
  .bento-name-xl { font-size: 24px; }

  .lifestyle-card    { padding: 24px 18px; text-align: center; }
  .lifestyle-heading { font-size: 22px; text-align: center; }

  .quote-text { font-size: 16px; text-align: center; }

  .cta-title { font-size: 24px; text-align: center; }
  .cta-btn   { padding: 16px 28px; width: 100%; text-align: center; }

  .film-title { font-size: 26px; text-align: center; }
  .film-player-wrap { border-radius: 14px; width: 100%; }
  .film-subtitle { font-size: 14px; text-align: center; }

  #film-section { padding: 48px 16px; }
  #series { padding: 48px 16px; }
  .series-title { font-size: 28px; text-align: center; }
  .series-subtitle { text-align: center; }

  .footer-inner { gap: 24px; text-align: center; }
  .footer-links { text-align: center; justify-content: center; }

  .waitlist-modal-box { padding: 28px 20px; border-radius: 16px; }
  .waitlist-title { font-size: 20px; text-align: center; }
  .token-code { font-size: 18px; }
}

/* ── Extra Small / compact phones (≤360px) ── */
@media (max-width: 360px) {
  .nav-inner  { padding: 0 12px; }
  .nav-logo   { font-size: 13px; letter-spacing: 0.2em; }
  .nav-bag-btn { width: 34px; height: 34px; }

  .hero-content { padding: 24px 12px 40px; }
  .hero-product-wrap { width: 92vw; margin-bottom: 20px; }
  .hero-subtitle { font-size: 13px; }
  .btn-primary { padding: 14px 20px; font-size: 9px; }

  #heritage { padding: 40px 12px; }
  .heritage-title  { font-size: 22px; text-align: center; }
  .heritage-desc   { font-size: 13px; text-align: center; }
  .stat-value      { font-size: 20px; text-align: center; }
  .stat-label      { font-size: 8px; text-align: center; }
  .heritage-stats  { gap: 10px; }

  #composition { padding: 40px 12px; }
  .composition-title { font-size: 22px; text-align: center; }
  .composition-main-card img { height: 200px; }
  .composition-caption { padding: 16px 14px; text-align: center; }
  .side-card-title { font-size: 16px; text-align: center; }
  .composition-side-card { padding: 20px 14px; text-align: center; }

  #series { padding: 36px 12px; }
  .series-title { font-size: 22px; text-align: center; }
  .bento-alpha { min-height: 290px !important; }
  .bento-city, .bento-lunar, .bento-spectre { min-height: 230px !important; }
  .bento-name-xl { font-size: 20px; }
  .bento-name-md { font-size: 18px; }
  .bento-info { padding: 16px 14px; }
  .bento-alpha .bento-info { padding: 18px 16px; }

  #features { padding: 40px 12px; }
  .features-inner { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .feature-title  { font-size: 14px; text-align: center; }
  .feature-desc   { font-size: 12px; text-align: center; }

  #lifestyle { min-height: 50vh; }
  .lifestyle-card    { padding: 18px 14px; text-align: center; }
  .lifestyle-heading { font-size: 18px; text-align: center; }
  .lifestyle-text    { font-size: 12px; text-align: center; }
  .lifestyle-tag     { font-size: 9px; text-align: center; }

  #testimonial { padding: 40px 12px; }
  .quote-text  { font-size: 14px; text-align: center; }
  .quote-mark  { font-size: 38px; text-align: center; }

  #cta { padding: 40px 12px; }
  .cta-title { font-size: 18px; text-align: center; }
  .cta-btn   { padding: 12px 18px; font-size: 9px; text-align: center; }
  .cta-note  { font-size: 8px; text-align: center; }

  #film-section  { padding: 36px 12px; }
  .film-title    { font-size: 22px; text-align: center; }
  .film-subtitle { font-size: 13px; text-align: center; }

  footer { padding: 36px 12px 24px; }
  .footer-logo   { font-size: 18px; text-align: center; }
  .footer-links  { gap: 6px 16px; text-align: center; }
  .footer-links button { font-size: 9px; }
  .footer-copy   { font-size: 8px; text-align: center; }

  .waitlist-modal-box  { padding: 20px 12px; border-radius: 14px; }
  .waitlist-title      { font-size: 18px; text-align: center; }
  .waitlist-subtitle   { font-size: 12px; margin-bottom: 20px; text-align: center; }
  .waitlist-badge      { font-size: 8px; padding: 4px 10px; }
  .token-code          { font-size: 16px; }
  .waitlist-input      { padding: 12px 14px; font-size: 14px; }
  .waitlist-submit-btn    { padding: 14px 16px; font-size: 10px; }
  .waitlist-disclaimer { font-size: 9px; text-align: center; }
}

/* ── Touch device hover reset ── */
@media (hover: none) and (pointer: coarse) {
  .bento-card:hover .bento-img { transform: none; }
  .heritage-img-wrap:hover img { transform: none; }
  .composition-main-card:hover img { filter: grayscale(20%); transform: none; }
  .bento-lunar .bento-img,
  .bento-spectre .bento-img { transform: scale(0.82); }
  .bento-lunar:hover .bento-img,
  .bento-spectre:hover .bento-img { transform: scale(0.82); }
}

/* ── Landscape mobile ── */
@media (max-height: 500px) and (orientation: landscape) {
  #hero { min-height: auto; padding: 80px 20px 40px; }
  .hero-content { padding: 20px 20px 32px; }
  .hero-product-wrap { width: clamp(180px, 40vw, 300px); margin-bottom: 20px; }
  .hero-spider-watermark { font-size: clamp(60px, 16vw, 140px); }
  #lifestyle { min-height: 80vh; }
  .waitlist-modal-overlay { align-items: flex-start; }
  .waitlist-modal-box { margin-top: 10px; margin-bottom: 10px; }
}

/* =============================================
   FILM SECTION
============================================= */
#film-section {
  padding: 120px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.film-header {
  text-align: center;
  margin-bottom: 56px;
}
.film-label {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 12px;
}
.film-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #111;
  margin-bottom: 16px;
}
.film-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.film-player-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #000;
  display: flex;
  justify-content: center;
}
.film-inline-player {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  object-fit: cover;
}

/* =============================================
   VIDEO WATERMARK COVER OVERLAY (TOP-RIGHT NON-BLOCKING)
============================================= */
.video-watermark-cover {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  z-index: 5;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 130px;
  justify-content: center;
}
.cover-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e63946;
  box-shadow: 0 0 8px #e63946;
  display: inline-block;
}

/* =============================================
   PRIORITY ACCESS WAITLIST MODAL
============================================= */
.waitlist-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(20px, env(safe-area-inset-top, 20px)) max(16px, env(safe-area-inset-right, 16px)) max(20px, env(safe-area-inset-bottom, 20px)) max(16px, env(safe-area-inset-left, 16px));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.waitlist-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.waitlist-modal-box {
  background: #11100f;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 44px 36px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: #fff;
  text-align: center;
  margin: auto;
  max-height: calc(90dvh - 32px);
  overflow-y: auto;
}
.waitlist-modal-overlay.active .waitlist-modal-box {
  transform: translateY(0);
}
.waitlist-close-btn {
  position: absolute;
  top: 16px; right: 16px;
  background: transparent;
  border: none;
  color: #888;
  font-size: 28px;
  cursor: pointer;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
  z-index: 10;
}
.waitlist-close-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.waitlist-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #d4af37;
  margin-bottom: 24px;
}
.waitlist-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #fff;
  text-align: center;
}
.waitlist-subtitle {
  font-size: 14px;
  color: #a09c98;
  line-height: 1.6;
  margin-bottom: 28px;
  text-align: center;
}
.waitlist-input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.waitlist-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 16px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 16px !important;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
  width: 100%;
}
.waitlist-input::placeholder { color: #666; }
.waitlist-input:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.waitlist-submit-btn {
  background: #fff;
  color: #11100f;
  border: none;
  border-radius: 10px;
  padding: 16px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
  min-height: 48px;
}
.waitlist-submit-btn:hover { background: #e0e0e0; transform: scale(0.98); }
.waitlist-disclaimer { font-size: 11px; color: #666; line-height: 1.5; text-align: center; }
.waitlist-success-icon {
  font-size: 48px;
  color: #d4af37;
  margin-bottom: 16px;
  animation: pulseSparkle 2s infinite;
}
@keyframes pulseSparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}
.waitlist-token-box {
  background: rgba(212, 175, 55, 0.08);
  border: 1px dashed rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  padding: 18px;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.token-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #a09c98;
  text-align: center;
}
.token-code {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #d4af37;
  letter-spacing: 0.1em;
  text-align: center;
}
.waitlist-done-btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-top: 10px;
  width: 100%;
}
.waitlist-done-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
