/* ═══ THIS IS GLAMOUR — TOUR/LANDER CSS ═══ */
/* Extracted from index.html lander design — v2026.04.11 */

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

:root {
  --bg: #0A0A0A;
  --bg-alt: #0E0E0E;
  --card: #131313;
  --card-hover: #1A1A1A;
  --accent: #C4868E;
  --accent-hover: #D69BA2;
  --accent-glow: rgba(196,134,142,0.20);
  --accent-soft: rgba(196,134,142,0.08);
  --white: #F5F1ED;
  --text: #D0CBC7;
  --text-mid: #A8A29E;
  --text-muted: #807A77;
  --border: #252525;
  --border-light: #333333;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}
::selection { background: var(--accent); color: var(--bg); }

@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes slideLeft { from { opacity:0; transform:translateX(-40px); } to { opacity:1; transform:translateX(0); } }
@keyframes heroFade { 0%,100% { opacity:0; } 8%,33% { opacity:1; } 42% { opacity:0; } }
@keyframes heroTextFade { 0%,8% { opacity:0; } 8%,33% { opacity:1; } 42% { opacity:0; } }
@keyframes countPulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

/* ═══ NAV ═══ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 1.2rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(10,10,10,0.5);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: all 0.4s;
}
nav.scrolled { background: rgba(10,10,10,0.95); padding: 0.8rem 4rem; border-bottom-color: var(--border); }
.nav-logo { font-family: var(--font-display); font-size: 1.7rem; font-weight: 300; color: var(--white); text-decoration: none; letter-spacing: 3px; text-transform: uppercase; }
.nav-logo em { font-style: italic; font-weight: 600; color: var(--accent); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a { font-size: 0.78rem; color: var(--text-mid); text-decoration: none; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.3s; position: relative; }
.nav-links a:hover { color: var(--white); }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:1px; background:var(--accent); transition:width 0.3s; }
.nav-links a:hover::after { width:100%; }
.btn-join {
  background: #FFFFFF; color: #0A0A0A !important;
  padding: 1rem 2.8rem; font-size: 0.78rem; font-weight: 700;
  text-decoration: none; text-transform: uppercase; letter-spacing: 2px;
  border: none; cursor: pointer; transition: all 0.3s;
  display: inline-block; font-family: var(--font-body);
  box-shadow: 0 4px 16px rgba(255,255,255,0.15);
}
.btn-join:hover { background: var(--accent); color: #FFFFFF !important; box-shadow: 0 8px 24px var(--accent-glow); }
.btn-join::after { display: none !important; }

/* ═══ HERO ═══ */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-slides { position: absolute; inset: 0; z-index: 1; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  animation: heroFade 18s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide img, .hero-slide video { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.hero-slide::after {
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.5) 35%, rgba(10,10,10,0.15) 55%, transparent 100%),
    linear-gradient(to top, var(--bg) 0%, rgba(10,10,10,0.5) 25%, transparent 55%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 5rem 6rem; max-width: 750px;
  animation: slideLeft 1s ease-out 0.3s both;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 0.8rem;
  color: var(--accent); font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 4px; margin-bottom: 1.5rem;
}
.hero-label::before { content:''; width:30px; height:1px; background:var(--accent); }
.hero-label-text { position: relative; display: inline-block; min-height: 1.2em; }
.hero-title {
  font-family: var(--font-display);
  font-size: 7rem; font-weight: 300; font-style: italic;
  line-height: 1; color: var(--white); margin-bottom: 1.2rem;
  letter-spacing: -3px;
  position: relative; min-height: 7rem;
}
.hero-sub {
  font-size: 1.15rem; color: var(--text); line-height: 1.9;
  margin-bottom: 3rem; max-width: 480px; font-weight: 400;
  position: relative; min-height: 5em;
}
.hero-buttons { display: flex; gap: 1.2rem; margin-bottom: 3rem; }
.btn-hero {
  padding: 1.2rem 4rem; font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  cursor: pointer; transition: all 0.4s;
  font-family: var(--font-body); text-decoration: none; display: inline-block;
}
.btn-primary {
  background: var(--accent); color: #FFFFFF; border: 2px solid var(--accent);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.btn-primary:hover { background: transparent; color: var(--accent); box-shadow: 0 0 40px var(--accent-glow); }
.btn-ghost {
  background: transparent; border: 1px solid rgba(242,237,232,0.2); color: var(--white);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.04); }
.hero-stats { display: flex; gap: 3rem; }
.hero-stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-top: 0.3rem; font-weight: 400; }

/* ═══ PROOF BAR ═══ */
.proof-bar {
  padding: 2rem 4rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(19,19,19,0.5);
}
.proof-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap;
}
.proof-item { font-size: 0.8rem; color: var(--text-mid); text-transform: uppercase; letter-spacing: 2px; font-weight: 400; }
.proof-item strong { color: var(--white); font-weight: 600; }

/* ═══ COUNTDOWN ═══ */
.countdown-section {
  padding: 4rem; position: relative; overflow: hidden;
}
.countdown-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: 12px; overflow: hidden;
  background: var(--card);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.countdown-video {
  position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer;
}
.countdown-video video {
  width: 100%; height: 100%; object-fit: cover;
}
.countdown-video .play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.15); transition: background 0.3s;
}
.countdown-video:hover .play-overlay { background: rgba(0,0,0,0.05); }
.countdown-video .play-circle {
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8); display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; backdrop-filter: blur(4px); background: rgba(255,255,255,0.08);
}
.countdown-video:hover .play-circle { border-color: var(--accent); transform: scale(1.08); }
.countdown-video .play-circle::after {
  content: ''; width: 0; height: 0;
  border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 16px solid rgba(255,255,255,0.9);
  margin-left: 3px;
}
.countdown-video .video-duration {
  position: absolute; bottom: 1rem; right: 1rem;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  padding: 0.3rem 0.7rem; border-radius: 4px;
  font-size: 0.72rem; color: var(--white); font-weight: 500; letter-spacing: 1px;
}
.countdown-content {
  position: relative; z-index: 1; padding: 3rem 2.5rem;
  display: flex; flex-direction: column; justify-content: center; text-align: left;
  background: linear-gradient(135deg, rgba(19,19,19,0.97) 0%, rgba(25,30,28,0.95) 100%);
}
.countdown-label { font-size: 0.78rem; color: var(--text-mid); text-transform: uppercase; letter-spacing: 5px; font-weight: 600; margin-bottom: 1.8rem; }
.countdown-timer { display: flex; gap: 2rem; margin-bottom: 2rem; }
.countdown-unit { text-align: center; }
.countdown-num { font-family: var(--font-display); font-size: 4.2rem; font-weight: 300; color: var(--white); line-height: 1; letter-spacing: -2px; min-width: 70px; }
.countdown-num .colon { color: var(--accent); opacity: 0.5; animation: countPulse 1s infinite; }
.countdown-word { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 3px; margin-top: 0.5rem; font-weight: 500; }
.colon-after { color: var(--accent); opacity: 0.5; animation: countPulse 1s infinite; font-size: 2.5rem; line-height: 1; padding-top: 0.3rem; }
.countdown-date { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; font-style: italic; color: var(--accent); letter-spacing: 1px; margin-bottom: 1.2rem; }
.countdown-model { font-family: var(--font-display); font-size: 2.6rem; font-weight: 300; font-style: italic; color: var(--white); margin-bottom: 0.3rem; line-height: 1.1; }
.countdown-set { font-size: 0.85rem; color: var(--text-mid); font-weight: 400; }

/* ═══ LATEST — EDITORIAL GRID ═══ */
.section-label { color: var(--accent); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 5px; margin-bottom: 0.8rem; display: inline-flex; align-items: center; gap: 1rem; }
.section-label::after { content:''; width:50px; height:1px; background:var(--accent); opacity:0.4; }
.section-title { font-family: var(--font-display); font-size: 3.2rem; font-weight: 400; color: var(--white); letter-spacing: -0.5px; }

.latest { padding: 5rem 0 0; max-width: 100%; }
.latest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}
.latest-text-cell {
  background: var(--bg);
  padding: 3.5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.latest-text-cell .section-label { margin-bottom: 1rem; }
.latest-text-cell .section-title {
  font-size: 2.8rem; line-height: 1.1; margin-bottom: 1.5rem;
}
.latest-cta {
  display: inline-block; background: var(--accent); color: #FFFFFF;
  padding: 1rem 2.5rem; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  text-decoration: none; font-family: var(--font-body);
  transition: all 0.3s; align-self: flex-start;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.latest-cta:hover { background: var(--accent-hover); box-shadow: 0 0 30px var(--accent-glow); }

/* Scene cards */
.scene-card {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 16/10;
}
.scene-card a { display: block; width: 100%; height: 100%; text-decoration: none; color: transparent; }
.scene-poster {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1), opacity 0.4s;
  z-index: 1;
}
.scene-video {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  opacity: 0; z-index: 0;
  transition: opacity 0.4s;
}
.scene-card:hover .scene-poster { opacity: 0; transform: scale(1.03); }
.scene-card:hover .scene-video { opacity: 1; }
.scene-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 3rem 1.5rem 1.2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  z-index: 3;
}
.scene-featuring {
  font-size: 0.62rem; color: var(--text-mid);
  text-transform: uppercase; letter-spacing: 2.5px; font-weight: 600;
  margin-bottom: 0.2rem;
}
.scene-name {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600; color: var(--white);
  text-transform: uppercase; letter-spacing: 1px;
}

/* ═══ VIDEO SHOWCASE ═══ */
.video-showcase {
  padding: 6rem 4rem;
  background: linear-gradient(to bottom, var(--bg), #0F0B0C, var(--bg));
  position: relative;
}
.video-showcase::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(to right, transparent, var(--accent-soft), var(--border), var(--accent-soft), transparent);
}
.video-inner { max-width: 1440px; margin: 0 auto; }
.video-header { text-align: center; margin-bottom: 3.5rem; }
.video-subtitle { font-size: 1.02rem; color: var(--text); font-weight: 400; margin-top: 0.5rem; }
.video-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 1.2rem; }
.video-card {
  position: relative; overflow: hidden; cursor: pointer; background: #111;
  min-height: 220px; display: block; text-decoration: none; color: inherit;
}
.video-card:first-child { grid-row: span 2; }
.video-card video, .video-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.video-card:hover video, .video-card:hover img { transform: scale(1.05); }
.video-card::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.8));
  pointer-events:none;
}
.play-btn {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:64px; height:64px; border:2px solid rgba(255,255,255,0.25);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  z-index:3; transition:all 0.4s; backdrop-filter:blur(4px); background:rgba(0,0,0,0.2);
}
.play-btn::after {
  content:''; display:block; width:0; height:0;
  border-style:solid; border-width:10px 0 10px 16px;
  border-color:transparent transparent transparent rgba(255,255,255,0.8);
  margin-left:4px;
}
.video-card:hover .play-btn {
  border-color: var(--accent); background: rgba(196,134,142,0.15);
  transform: translate(-50%,-50%) scale(1.1);
}
.video-card-info { position:absolute; bottom:0; left:0; right:0; padding:1.5rem; z-index:3; }
.video-card-name { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; color: var(--white); font-weight: 500; }
.video-card:first-child .video-card-name { font-size: 1.8rem; }
.video-card-dur {
  font-size: 0.72rem; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 1.5px; margin-top: 0.2rem;
}

/* ═══ DEVICE SECTION ═══ */
.device-section {
  padding: 7rem 4rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.device-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: center;
}
.device-eyebrow {
  font-size: 0.78rem; color: var(--accent);
  text-transform: uppercase; letter-spacing: 4px; font-weight: 600;
  margin-bottom: 1.5rem;
  display: inline-flex; align-items: center; gap: 0.8rem;
}
.device-eyebrow::before { content:''; width:24px; height:1px; background:var(--accent); }
.device-title {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.1; margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.device-desc {
  font-size: 1.05rem; color: var(--text); line-height: 1.9;
  font-weight: 400; margin-bottom: 2.5rem; max-width: 460px;
}
.device-features { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2.5rem; }
.device-feature { display: flex; align-items: center; gap: 1rem; font-size: 0.95rem; color: var(--text); font-weight: 400; }
.device-feature-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.device-mockups {
  position: relative; display: flex; justify-content: center;
  align-items: center;
}
.phone-mock {
  width: 320px; border-radius: 40px; overflow: hidden;
  border: 8px solid #222; background: #000;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8);
  position: relative; z-index: 2;
}
.phone-notch { width: 150px; height: 28px; background: #000; border-radius: 0 0 20px 20px; margin: 0 auto; position: relative; z-index: 3; }
.phone-screen {
  position: relative; aspect-ratio: 9/16; background: #000; overflow: hidden;
}
.phone-screen video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0;
  transition: opacity 0.8s ease;
}
.phone-screen video.active { opacity: 1; }
.phone-bar {
  padding: 0.8rem; text-align: center; background: #111;
  font-size: 0.55rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 2px; font-weight: 400;
}
.phone-dots {
  display: flex; justify-content: center; gap: 6px; margin-top: 1rem;
}
.phone-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--border-light);
  transition: all 0.3s; cursor: pointer;
}
.phone-dot.active { background: var(--accent); transform: scale(1.3); }

/* ═══ COLLECTIONS ═══ */
.collections { padding: 6rem 4rem; max-width: 1440px; margin: 0 auto; }
.collections-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3rem; }
.coll-card { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 3/4; display: block; text-decoration: none; color: inherit; }
.coll-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.coll-card:hover img { transform: scale(1.08); }
.coll-inner {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(transparent 50%, rgba(10,10,10,0.95));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem; text-align: center; transition: all 0.4s;
}
.coll-name { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; font-style: italic; color: var(--white); margin-bottom: 0.3rem; }
.coll-count { font-size: 0.75rem; color: var(--text-mid); text-transform: uppercase; letter-spacing: 2px; font-weight: 500; }
.coll-line { width: 40px; height: 1px; background: var(--accent); margin: 0.8rem auto 0; opacity: 0; transition: opacity 0.4s; }
.coll-card:hover .coll-line { opacity: 1; }

/* ═══ FINAL CTA ═══ */
.final-cta {
  position: relative; min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 4rem;
}
.final-cta-bg { position: absolute; inset: 0; z-index: 1; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4); }
.final-cta-content { position: relative; z-index: 2; text-align: center; max-width: 750px; }
.final-cta-title {
  font-family: var(--font-display);
  font-size: 5.5rem; font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.1;
  margin-bottom: 1.5rem; letter-spacing: -2px;
}
.final-cta-price {
  font-family: var(--font-display); font-size: 4.5rem; font-weight: 300;
  color: var(--accent); line-height: 1; margin-bottom: 0.4rem;
  letter-spacing: -1px;
}
.final-cta-price-note {
  font-size: 1rem; color: rgba(255,255,255,0.6); text-transform: uppercase;
  letter-spacing: 3px; margin-bottom: 2rem;
}
.final-cta-sub { font-size: 1.15rem; color: var(--white); line-height: 1.9; margin-bottom: 2.5rem; font-weight: 400; }
.final-cta .btn-join { padding: 1.3rem 4rem; font-size: 0.82rem; }

/* ═══ FOOTER ═══ */
footer {
  padding: 4rem; text-align: center;
  border-top: 1px solid var(--border);
  background: rgba(10,10,10,0.8);
}
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--white); margin-bottom: 0.3rem; }
.footer-tag { font-size: 0.85rem; color: var(--text-mid); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem; font-weight: 500; }
.footer-links { display: flex; gap: 2rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; color: var(--text-mid); text-decoration: none; transition: color 0.3s; font-weight: 400; }
.footer-links a:hover { color: var(--white); }
.footer-legal { font-size: 0.75rem; color: var(--text-muted); line-height: 1.8; font-weight: 400; }

/* ═══ SCROLL REVEAL ═══ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.23,1,0.32,1), transform 0.8s cubic-bezier(0.23,1,0.32,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══ MOBILE CTA ═══ */
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 999; padding: 1rem 2rem;
  background: rgba(10,10,10,0.98);
  border-top: 1px solid var(--border);
}
.mobile-cta a {
  display: block; text-align: center;
  background: var(--accent); color: #FFFFFF;
  padding: 0.9rem 2rem; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  text-decoration: none; cursor: pointer;
  font-family: var(--font-body); border-radius: 4px;
}

/* Hamburger */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; z-index: 1001;
  flex-direction: column; justify-content: space-between; padding: 0;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px; background: var(--white);
  transition: all 0.3s; border-radius: 1px;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

/* ═══ TOUR LISTING PAGES ═══ */
.tour-listing {
  padding: 7rem 4rem 4rem;
  max-width: 1440px; margin: 0 auto;
}
.tour-listing-header {
  text-align: center; margin-bottom: 3rem;
}
.tour-listing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.tour-content-card {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 16/10; display: block; text-decoration: none; background: #111;
}
.tour-content-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.tour-content-card:hover img { transform: scale(1.05); }
.tour-content-card::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.8));
  pointer-events:none;
}
.tour-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem; z-index: 3;
}
.tour-card-title {
  font-family: var(--font-display); font-size: 1.2rem; font-style: italic;
  color: var(--white); font-weight: 500;
}
.tour-card-meta {
  font-size: 0.72rem; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 1.5px; margin-top: 0.2rem;
}
.tour-model-card {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 3/4; display: block; text-decoration: none;
}
.tour-model-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.tour-model-card:hover img { transform: scale(1.08); }
.tour-model-info {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(transparent 50%, rgba(10,10,10,0.95));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem; text-align: center;
}
.tour-model-name {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 400;
  font-style: italic; color: var(--white);
}
.tour-model-count {
  font-size: 0.72rem; color: var(--text-mid); text-transform: uppercase;
  letter-spacing: 2px; margin-top: 0.3rem;
}
.tour-join-prompt {
  text-align: center; padding: 4rem 2rem;
  background: var(--card); margin-top: 3rem;
  border: 1px solid var(--border);
}
.tour-join-prompt h3 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 300;
  font-style: italic; color: var(--white); margin-bottom: 1rem;
}
.tour-join-prompt p {
  color: var(--text-mid); margin-bottom: 1.5rem; font-size: 0.95rem;
}
.tour-pagination {
  display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem;
}
.tour-pagination a {
  padding: 0.6rem 1rem; background: var(--card); border: 1px solid var(--border);
  color: var(--text-mid); text-decoration: none; font-size: 0.82rem;
  transition: all 0.3s;
}
.tour-pagination a:hover, .tour-pagination a.active {
  border-color: var(--accent); color: var(--white);
}

/* ═══ TABLET ═══ */
@media (max-width: 1024px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 70px; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .device-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .device-text { display: flex; flex-direction: column; align-items: center; }
  .device-desc { max-width: 100%; }
  .device-features { align-items: center; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-card:first-child { grid-row: span 1; }
  .latest-grid { grid-template-columns: 1fr 1fr; }
  .latest-text-cell { padding: 2.5rem 3rem; }
  .latest-text-cell .section-title { font-size: 2.2rem; }
  .scene-card { aspect-ratio: 16/10; }
  .hero-content { padding: 0 3rem 5rem; }
  .hero-title { font-size: 5rem; min-height: 7rem; }
  .tour-listing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══ MOBILE ═══ */
@media (max-width: 640px) {
  nav { padding: 0.8rem 1.2rem; }
  nav.scrolled { padding: 0.6rem 1.2rem; }
  .nav-logo { font-size: 1.2rem; letter-spacing: 2px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.97); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2rem; z-index: 1000;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; letter-spacing: 3px; }
  .nav-links .btn-join { padding: 1rem 3rem; font-size: 0.82rem; margin-top: 1rem; }

  .hero { min-height: 85vh; }
  .hero-slide img, .hero-slide video { object-position: center 20%; }
  .hero-slide::after {
    background:
      linear-gradient(to top, var(--bg) 0%, rgba(10,10,10,0.7) 40%, rgba(10,10,10,0.2) 70%, transparent 100%) !important;
  }
  .hero-content { padding: 0 1.5rem 3rem; max-width: 100%; }
  .hero-label { font-size: 0.68rem; letter-spacing: 3px; margin-bottom: 1rem; }
  .hero-title { font-size: 3.2rem; min-height: 5rem; letter-spacing: -1.5px; }
  .hero-sub { font-size: 0.95rem; line-height: 1.7; margin-bottom: 2rem; min-height: 5em; }
  .hero-buttons { flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
  .btn-hero { padding: 1rem 2rem; font-size: 0.75rem; text-align: center; width: 100%; }
  .hero-stats { gap: 2rem; }
  .hero-stat-num { font-size: 1.8rem; }
  .hero-stat-label { font-size: 0.55rem; }

  .countdown-section { padding: 1.5rem 0.5rem; }
  .countdown-inner { grid-template-columns: 1fr; }
  .countdown-video { aspect-ratio: 16/9; max-height: 300px; }
  .countdown-content { padding: 1.5rem 1rem; text-align: center; }
  .countdown-timer { justify-content: center; gap: 0.6rem; flex-wrap: nowrap; }
  .countdown-num { font-size: 2rem; min-width: 38px; letter-spacing: -1px; }
  .countdown-word { font-size: 0.5rem; letter-spacing: 2px; }
  .countdown-label { font-size: 0.7rem; letter-spacing: 3px; margin-bottom: 1.2rem; }
  .countdown-date { font-size: 1.05rem; }
  .countdown-model { font-size: 1.6rem; }
  .countdown-set { font-size: 0.78rem; }
  .colon-after { font-size: 1.6rem; }

  .latest { padding: 3rem 0 0; }
  .latest-grid { grid-template-columns: 1fr; gap: 3px; }
  .latest-text-cell { padding: 2rem 1.5rem; text-align: center; }
  .latest-text-cell .section-title { font-size: 2rem; }
  .latest-cta { align-self: center; padding: 0.9rem 2rem; font-size: 0.72rem; }
  .scene-card { aspect-ratio: 16/9; }
  .scene-name { font-size: 1rem; }
  .scene-featuring { font-size: 0.55rem; }

  .video-showcase { padding: 3rem 1.5rem; }
  .video-grid { grid-template-columns: 1fr; gap: 1rem; }
  .video-card:first-child { grid-row: span 1; }
  .section-title { font-size: 1.8rem; }
  .video-subtitle { font-size: 0.85rem; }

  .device-section { padding: 3rem 1.5rem; }
  .device-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .device-text { display: flex; flex-direction: column; align-items: center; }
  .device-title { font-size: 2rem; }
  .device-desc { font-size: 0.95rem; max-width: 100%; }
  .device-features { align-items: flex-start; text-align: left; }
  .device-mockups { min-height: auto; }
  .phone-mock { width: 260px; }

  .collections { padding: 3rem 1.5rem; }
  .collections-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 2rem; }
  .coll-card { aspect-ratio: 3/4; }
  .coll-name { font-size: 0.9rem; }
  .coll-count { font-size: 0.6rem; }

  .final-cta { padding: 5rem 1.5rem; }
  .final-cta-title { font-size: 2rem; margin-bottom: 1rem; }
  .final-cta-price { font-size: 3.2rem; margin-bottom: 0.3rem; }
  .final-cta-price-note { font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 1.5rem; }
  .final-cta-sub { font-size: 0.95rem; margin-bottom: 2rem; }
  .final-cta .btn-join { padding: 1.1rem 3rem; font-size: 0.78rem; }

  footer { padding: 2.5rem 1.5rem; }
  .footer-links { gap: 1rem; }
  .footer-legal { font-size: 0.65rem; }

  .mobile-cta { padding: 0.8rem 1.5rem; }
  .mobile-cta a { padding: 0.8rem 1.5rem; font-size: 0.72rem; }

  .tour-listing { padding: 6rem 1.5rem 3rem; }
  .tour-listing-grid { grid-template-columns: 1fr; }
}
