:root {
  /* Ultra-Premium Dark Mode Variables */
  --bg-primary: #050505; /* Deeper black */
  --bg-secondary: #0a0a0a;
  --text-primary: #f2f2f2;
  --text-secondary: #999999;
  
  --color-gold: #e2e4e6; /* changed to silver/platinum */
  --color-gold-hover: #ffffff; /* changed to pure white */
  --color-green: #2a2a2a; /* changed to dark grey */
  
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --transition-fast: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --theme-transition: background-color 1s ease, color 1s ease;
}

/* Removed light theme variables to enforce strict dark monochrome palette */

/* Base Resets & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: var(--theme-transition);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom, thin elegant scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
}

/* Typography Overhaul - Editorial Style */
h1, h2, h3, h4, .logo, .footer-logo, .large-bg-text {
  font-family: var(--font-heading);
  font-weight: 400;
}

/* Loader Curtain */
/* ==========================================================================
   CINEMATIC INTRO LOADER
   ========================================================================== */
.preloader-counter {
  position: fixed;
  bottom: 5vh;
  right: 5vw;
  font-family: var(--font-body);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  color: var(--color-gold);
  z-index: 10000;
  display: flex;
  align-items: flex-end;
}

.preloader-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  background-color: transparent;
}

.mask-svg {
  width: 100vw;
  height: 100vh;
  transform-origin: center center;
}

/* Utilities */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4vw; /* Responsive side padding */
}

.container-narrow {
  max-width: 1200px;
}

.section-padding {
  padding: 15vmax 0; /* Massive padding for extreme editorial breathing room */
}

.text-center { text-align: center; }
.mt-5 { margin-top: 5rem; }
.mt-10 { margin-top: 10rem; }
.mb-4 { margin-bottom: 4rem; }

.dark-bg {
  background-color: var(--bg-secondary);
  transition: var(--theme-transition);
}

.gold-accent {
  color: var(--color-gold);
}

/* Button Refinement */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition-fast);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.primary-btn {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--color-gold);
  border-radius: 50px; /* Pill shape for luxury */
}

.primary-btn:hover {
  background-color: var(--color-gold);
  color: var(--bg-primary);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 2.5rem 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: var(--transition-fast);
}

.navbar.scrolled {
  background-color: var(--bg-primary);
  padding: 1.5rem 4vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}.logo {
  font-size: 1.5rem;
  letter-spacing: 0.4rem;
  color: var(--color-gold);
}

.navbar nav ul {
  display: flex;
  list-style: none;
  gap: 4vw;
  align-items: center;
}

.navbar nav a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
  color: var(--text-primary);
}

.navbar nav a:hover {
  color: var(--color-gold);
}

/* Theme Toggle Button */
.theme-btn {
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.theme-btn:hover { color: var(--color-gold); }
.theme-btn svg { width: 18px; height: 18px; }
.theme-btn .moon-icon { display: none; }
body.light-theme .theme-btn .moon-icon { display: block; }
body.light-theme .theme-btn .sun-icon { display: none; }

/* Pinning Setup */
.hero-cinematic {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Hide default mobile video play button */
.hero-bg::-webkit-media-controls-start-playback-button,
.hero-bg::-webkit-media-controls-panel,
.hero-bg::-webkit-media-controls {
  display: none !important;
  -webkit-appearance: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent; /* GSAP will darken this */
  background: radial-gradient(circle, rgba(0,0,0,0.1) 20%, var(--super-black) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Hide content initially to prevent flash on refresh — GSAP reveals these */
.stagger-title .line-inner,
.hero-subtitle {
  opacity: 0;
}
.navbar > * {
  opacity: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: 10vh;
}

.stagger-title {
  font-size: clamp(4rem, 12vw, 12rem); /* Even more massive typography */
  line-height: 0.85;
  letter-spacing: -3px;
  display: flex;
  flex-direction: column;
}

.line-wrap {
  overflow: hidden; /* For staggered reveal */
  display: block;
}

.line {
  display: block;
  transform: translateY(110%); /* Hidden initially */
}

.hero-subtitle {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: var(--text-secondary);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: var(--font-body);
}



/* 2. Editorial Intro */
.editorial-intro {
  position: relative;
  z-index: 20; /* Ensure it stays above hero when wiping */
  background: var(--bg-color); /* Need solid background for the wipe */
}

.relative-container {
  position: relative;
}

.large-bg-text {
  position: absolute;
  top: -10%;
  left: -20%;
  font-size: 30vw;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

body.light-theme .large-bg-text { color: rgba(0, 0, 0, 0.03); }

.intro-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin-left: auto; /* Push to right */
  padding-right: 2rem;
}

.editorial-heading {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  margin-bottom: 3rem;
  letter-spacing: -1px;
}

.editorial-body {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 300;
}

.editorial-body.light { color: #f2f2f2; }

/* ==========================================================================
   4. CRAFTSMANSHIP / FEATURES
   ========================================================================== */
.craftsmanship-features {
  background-color: var(--super-black);
  padding: 15vh 0;
}

.feature-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10vw;
  margin-bottom: 25vh;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-block.right-aligned {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
  max-width: 500px;
}

.sub-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.body-text {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.3vw, 1.4rem);
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
}

.feature-img-wrapper {
  flex: 1.2;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8);
  aspect-ratio: 3/3.5;
}

.feature-img-wrapper img {
  width: 100%;
  height: 115%; /* slightly oversized for GSAP scrub parallax */
  object-fit: cover;
  transform: translateY(-8%);
}

/* ==========================================================================
   5. FULL BLEED VISUAL BREAK
   ========================================================================== */
.visual-break {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.visual-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.visual-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5,5,5,0.4);
  z-index: 2;
}

.visual-quote {
  position: relative;
  z-index: 3;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-align: center;
  text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

/* ==========================================================================
   6. PREMIUM GALLERY
   ========================================================================== */
.premium-gallery {
  padding: 20vh 0;
  background-color: var(--super-black);
}

.section-title.centered {
  text-align: center;
  margin-bottom: 15vh;
}

.gallery-wrapper {
  display: flex;
  gap: 5vw;
}

.gallery-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.gallery-card.featured {
  flex: 2;
  aspect-ratio: 3/4;
}

.gallery-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5vw;
}

.gallery-card.supporting {
  aspect-ratio: 1/1;
}

.card-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 120%; /* for scrub effect */
  object-fit: cover;
  transform: scale(1.15) translateY(10%);
  transition: opacity 0.5s ease;
}

/* ==========================================================================
   7. HERITAGE STORY
   ========================================================================== */
.heritage-story {
  position: relative;
  height: 120vh; /* Extra height for deep parallax */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.heritage-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-image: url('assets/rolex_heritage.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.heritage-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(5,5,5,1) 100%);
  z-index: 2;
}

.heritage-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  color: #ffffff;
  line-height: 1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.heritage-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  text-align: center;
}

.heritage-text {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.8;
  color: #f2f2f2;
  font-weight: 300;
}

/* ==========================================================================
   8. FINAL CALL TO ACTION
   ========================================================================== */
.final-cta {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center bottom;
  z-index: 1;
  transform: scale(1.1); /* Subtle zoom */
  /* Remove image and use JS if needed, or inline HTML */
}

.cta-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, var(--super-black) 0%, transparent 100%);
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.1em;
}

.cta-button {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--color-gold);
  padding: 1.5rem 4rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.cta-button:hover {
  background: var(--color-gold);
  color: var(--super-black);
}

/* Minimal Footer */
.footer-minimal {
  padding: 4rem 0;
  background-color: var(--bg-primary);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-size: 1.2rem;
  letter-spacing: 4px;
}

.footer-legal p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Base Initial States for JS Animation */
.fade-up-element {
  opacity: 0;
  transform: translateY(40px);
}

/* ==========================================================================
   3. THREE.JS STORYTELLING SECTION
   ========================================================================== */
.three-story-section {
  position: relative;
  width: 100%;
  /* The height will be determined by the content (phases) but we give it a min height */
  min-height: 100vh;
  background-color: var(--super-black);
}

.three-canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

/* We'll use GSAP pin to keep canvas-container fixed while viewing phases */

.three-phases-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 100vh; /* Start first phase after one full screen of just watch */
  padding-bottom: 50vh; /* Space at the end */
}

.phase-panel {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10vw;
  /* Alternating left/right alignment via CSS child selectors or classes */
}

/* Let's align phases alternating */
.phase-panel:nth-child(odd) {
  align-items: flex-start;
  text-align: left;
}
.phase-panel:nth-child(even) {
  align-items: flex-end;
  text-align: right;
}

.phase-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 600px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 0 40px rgba(0,0,0,0.6);
}

.phase-desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.5rem);
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0,0,0,0.8);
}

/* ==========================================================================
   4. INTERACTIVE 3D NAVIGATION
   ========================================================================== */
[class="3d-nav-sidebar"] {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  height: 50vh;
  display: flex;
  align-items: center;
}

[class="3d-nav-sidebar"] ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--text-secondary);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0;
  outline: none;
}

.nav-dot:hover, .nav-dot.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: scale(1.2);
}

/* ==========================================================================
   5. CRAFTSMANSHIP / MACRO GALLERY
   ========================================================================== */

/* ==========================================================================
   RESPONSIVE OVERRIDES — ALL SCREENS: Watches → TVs
   ========================================================================== */

/* ── 4K / TV Screens (≥ 3000px) ── */
@media (min-width: 3000px) {
  :root {
    font-size: 24px;
  }

  .container {
    max-width: 2800px;
  }

  .stagger-title {
    font-size: clamp(8rem, 10vw, 18rem);
  }

  .hero-subtitle {
    font-size: 2rem;
    letter-spacing: 6px;
  }

  .navbar {
    padding: 3.5rem 4vw;
  }

  .logo img {
    width: 200px;
    height: auto;
  }

  .phase-title {
    font-size: clamp(4rem, 5vw, 8rem);
    max-width: 900px;
  }

  .phase-desc {
    font-size: clamp(1.4rem, 1.5vw, 2.5rem);
    max-width: 750px;
  }

  .phase-panel {
    padding: 0 8vw;
  }

  .sub-title {
    font-size: clamp(3.5rem, 4vw, 6rem);
  }

  .body-text {
    font-size: clamp(1.4rem, 1.5vw, 2rem);
  }

  .feature-text {
    max-width: 800px;
  }

  .heritage-title {
    font-size: clamp(6rem, 8vw, 14rem);
  }

  .heritage-text {
    font-size: clamp(1.6rem, 2vw, 2.8rem);
  }

  .heritage-content {
    max-width: 1400px;
  }

  .footer-logo {
    font-size: 2rem;
    letter-spacing: 6px;
  }

  .footer-legal p {
    font-size: 1.2rem;
  }

  .footer-minimal {
    padding: 6rem 0;
  }

  .preloader-counter {
    font-size: clamp(5rem, 6vw, 10rem);
  }
}

/* ── Large Desktop (≥ 2000px) ── */
@media (min-width: 2000px) and (max-width: 2999px) {
  :root {
    font-size: 20px;
  }

  .container {
    max-width: 2200px;
  }

  .logo img {
    width: 160px;
    height: auto;
  }

  .phase-title {
    font-size: clamp(3.5rem, 5vw, 7rem);
    max-width: 800px;
  }

  .phase-desc {
    font-size: clamp(1.2rem, 1.3vw, 2rem);
    max-width: 650px;
  }

  .heritage-content {
    max-width: 1200px;
  }

  .feature-text {
    max-width: 650px;
  }

  .footer-logo {
    font-size: 1.6rem;
  }

  .footer-legal p {
    font-size: 1rem;
  }
}

/* ── Standard Desktop (1200px – 1999px) — base styles handle this ── */

/* ── Small Laptop / Large Tablet (≤ 1200px) ── */
@media (max-width: 1200px) {
  .feature-block {
    gap: 6vw;
  }

  .feature-text {
    max-width: 400px;
  }
}

/* ── Tablet & Below (≤ 1000px) ── */
@media (max-width: 1000px) {
  .hero-canvas-container {
    width: 250%;
    left: -75%;
  }

  .gallery-wrapper {
    flex-direction: column;
    gap: 10vh;
  }

  .feature-block,
  .feature-block.right-aligned {
    flex-direction: column;
    gap: 3vh;
    margin-bottom: 10vh;
  }

  .feature-text {
    max-width: 100%;
    text-align: center;
    order: 1;
  }

  .feature-img-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    aspect-ratio: 16/10;
    order: 2;
  }

  .feature-img-wrapper img {
    height: 100%;
    transform: translateY(0);
  }

  .sub-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }

  .phase-panel {
    padding: 0 6vw;
  }

  .phase-title {
    font-size: clamp(2rem, 6vw, 4rem);
    max-width: 100%;
  }

  .phase-desc {
    max-width: 100%;
  }

  .heritage-story {
    height: 100vh;
  }

  .heritage-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
  }

  .heritage-content {
    max-width: 90%;
    padding: 0 4vw;
  }

  .footer-grid {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .navbar nav ul {
    gap: 2vw;
    font-size: 0.7rem;
  }

  .craftsmanship-features {
    padding: 10vh 0;
  }
}

/* ── Large Phone (≤ 768px) ── */
@media (max-width: 768px) {
  .navbar {
    padding: 1.5rem 4vw;
  }

  .logo img {
    width: 90px;
    height: auto;
  }

  .stagger-title {
    font-size: clamp(2.5rem, 12vw, 6rem);
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
    padding: 0 2vw;
  }

  .hero-content {
    margin-top: 5vh;
  }

  .three-phases-container {
    padding-top: 60vh;
    padding-bottom: 30vh;
  }

  .phase-panel {
    min-height: 70vh;
    padding: 2rem 5vw;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0.7) 70%, transparent 100%);
    border-radius: 8px;
  }

  .phase-panel:nth-child(odd),
  .phase-panel:nth-child(even) {
    align-items: center;
    text-align: center;
  }

  .phase-title {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }

  .phase-desc {
    font-size: clamp(0.85rem, 3vw, 1.1rem);
  }

  .feature-block {
    margin-bottom: 12vh;
  }

  .feature-img-wrapper {
    max-width: 100%;
    aspect-ratio: 3/2;
  }

  .heritage-story {
    height: 80vh;
  }

  .heritage-title {
    font-size: clamp(2rem, 8vw, 4rem);
  }

  .heritage-text {
    font-size: clamp(0.95rem, 3vw, 1.3rem);
  }

  .footer-minimal {
    padding: 3rem 0;
  }

  .footer-logo {
    font-size: 1rem;
    letter-spacing: 3px;
  }

  .footer-legal p {
    font-size: 0.7rem;
  }

  .preloader-counter {
    font-size: clamp(2rem, 8vw, 4rem);
  }

  .section-padding {
    padding: 10vmax 0;
  }

  .craftsmanship-features {
    padding: 8vh 0;
  }
}

/* ── Small Phone (≤ 480px) ── */
@media (max-width: 480px) {
  .container {
    padding: 0 5vw;
  }

  .stagger-title {
    font-size: clamp(2rem, 11vw, 4rem);
    letter-spacing: 0px;
  }

  .hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-top: 1.5rem;
    padding: 0 3vw;
  }

  .hero-content {
    margin-top: 0;
  }

  .phase-panel {
    min-height: 60vh;
    padding: 0 4vw;
  }

  .phase-title {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
  }

  .phase-desc {
    font-size: clamp(0.8rem, 3.5vw, 1rem);
  }

  .three-phases-container {
    padding-top: 50vh;
    padding-bottom: 20vh;
  }

  .feature-block {
    margin-bottom: 10vh;
    gap: 3vh;
  }

  .sub-title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .body-text {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
    line-height: 1.7;
  }

  .feature-img-wrapper {
    aspect-ratio: 1/1;
  }

  .heritage-story {
    height: 70vh;
  }

  .heritage-title {
    font-size: clamp(1.6rem, 8vw, 3rem);
    margin-bottom: 1rem;
  }

  .heritage-text {
    font-size: clamp(0.8rem, 3.5vw, 1rem);
    line-height: 1.6;
  }

  .heritage-content {
    max-width: 95%;
  }

  .navbar {
    padding: 1rem 4vw;
  }

  .logo img {
    width: 75px;
    height: auto;
  }

  .craftsmanship-features {
    padding: 6vh 0;
  }
}

/* ── Very Small / Watch (≤ 320px) ── */
@media (max-width: 320px) {
  :root {
    font-size: 13px;
  }

  .container {
    padding: 0 3vw;
  }

  .stagger-title {
    font-size: clamp(1.4rem, 11vw, 2.5rem);
    line-height: 0.9;
  }

  .hero-subtitle {
    font-size: 0.6rem;
    letter-spacing: 1px;
    margin-top: 1rem;
  }

  .hero-content {
    margin-top: -5vh;
    padding: 0 2vw;
  }

  .navbar {
    padding: 0.6rem 3vw;
  }

  .logo img {
    width: 55px;
    height: auto;
  }

  .phase-panel {
    min-height: 50vh;
    padding: 0 3vw;
  }

  .phase-title {
    font-size: clamp(1.2rem, 7vw, 2rem);
  }

  .phase-desc {
    font-size: clamp(0.65rem, 3.5vw, 0.85rem);
  }

  .three-phases-container {
    padding-top: 40vh;
    padding-bottom: 15vh;
  }

  .sub-title {
    font-size: clamp(1.2rem, 7vw, 2rem);
    margin-bottom: 0.75rem;
  }

  .body-text {
    font-size: clamp(0.7rem, 3.5vw, 0.85rem);
  }

  .feature-block {
    margin-bottom: 8vh;
    gap: 2vh;
  }

  .feature-img-wrapper {
    aspect-ratio: 1/1;
  }

  .heritage-story {
    height: 60vh;
  }

  .heritage-title {
    font-size: clamp(1.2rem, 9vw, 2rem);
    margin-bottom: 0.5rem;
  }

  .heritage-text {
    font-size: clamp(0.65rem, 3.5vw, 0.85rem);
    line-height: 1.5;
  }

  .heritage-content {
    max-width: 98%;
    padding: 0 2vw;
  }

  .footer-minimal {
    padding: 2rem 0;
  }

  .footer-logo {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .footer-legal p {
    font-size: 0.55rem;
  }

  .preloader-counter {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }

  .craftsmanship-features {
    padding: 4vh 0;
  }

  .section-padding {
    padding: 8vmax 0;
  }
}

/* ── Ultra-Small / Tiny Watch (≤ 200px) ── */
@media (max-width: 200px) {
  :root {
    font-size: 10px;
  }

  .stagger-title {
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0;
  }

  .hero-subtitle {
    font-size: 0.45rem;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
  }

  .hero-content {
    margin-top: -10vh;
  }

  .navbar {
    padding: 0.3rem 2vw;
  }

  .logo img {
    width: 35px;
    height: auto;
  }

  .phase-panel {
    min-height: 100%;
    padding: 2vh 2vw;
  }

  .phase-title {
    font-size: 0.9rem;
  }

  .phase-desc {
    font-size: 0.5rem;
  }

  .three-phases-container {
    padding-top: 30vh;
    padding-bottom: 10vh;
  }

  .heritage-title {
    font-size: 0.9rem;
  }

  .heritage-text {
    font-size: 0.5rem;
  }

  .sub-title {
    font-size: 0.9rem;
  }

  .body-text {
    font-size: 0.5rem;
  }

  .footer-logo {
    font-size: 0.6rem;
  }

  .footer-legal p {
    font-size: 0.4rem;
  }
}

/* ── Landscape Phone Fix ── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-content {
    margin-top: 0;
  }

  .stagger-title {
    font-size: clamp(1.5rem, 8vh, 4rem);
  }

  .hero-subtitle {
    font-size: 0.7rem;
    margin-top: 0.5rem;
  }

  .phase-panel {
    min-height: 100vh;
  }

  .heritage-story {
    height: 100vh;
  }
}

/* ==========================================================================
   LENIS SMOOTH SCROLL
   ========================================================================== */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
body {
  cursor: none;
}

a,
button {
  cursor: none;
}

.cursor-dot {
  position: fixed;
  width: 24px;
  height: 24px;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='75 45 55 60' fill='%23ffffff'%3E%3Cpath d='M122.393 58.438a3.08 3.08 0 0 0-3.08 3.08c0 1.072.525 2.012 1.355 2.564l-10.445 22.417 2.182-29.851a3.082 3.082 0 0 0-.26-6.153 3.08 3.08 0 0 0-3.08 3.08c0 1.339.854 2.456 2.049 2.881l-7.168 29.146L100.4 53.45a3.042 3.042 0 0 0 2.27-2.949 3.08 3.08 0 0 0-6.16 0c0 1.537 1.134 2.777 2.607 3.008l-2.858 31.324-8.306-28.286a3.057 3.057 0 0 0 1.649-2.715 3.08 3.08 0 1 0-3.08 3.08c.044 0 .092-.004.135-.006l3.58 29.594-12.063-21.533a3.08 3.08 0 1 0-1.246.586L87.034 95.85c2.306 7.046 22.802 7.174 25.876 0l9.127-31.291c.127.016.223.038.354.038a3.08 3.08 0 0 0 .002-6.159zM99.719 99.09c-5.223 0-9.457-1.574-9.457-3.516s4.234-2.854 9.457-2.854c5.223 0 8.902.912 8.902 2.854s-3.68 3.516-8.902 3.516z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.3));
  transition: width 0.3s ease, height 0.3s ease, filter 0.3s ease;
}

.cursor-dot.cursor-hover-dot {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}

.cursor-outline {
  position: fixed;
  width: 28px;
  height: 28px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.cursor-outline.cursor-hover {
  transform: translate(-50%, -50%) scale(1.8);
  background: rgba(255, 255, 255, 0.1);
}

.cursor-outline.cursor-text {
  transform: translate(-50%, -50%) scale(2.5);
  background: rgba(255, 255, 255, 0.05);
}

@media (hover: none) {
  body {
    cursor: auto;
  }

  a,
  button {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}

/* ==========================================================================
   FILM GRAIN OVERLAY
   ========================================================================== */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.03;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23grain)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
}

/* ==========================================================================
   SCROLL PROGRESS BAR
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, #888, #fff);
  z-index: 10001;
  transition: none;
}

/* ==========================================================================
   INFINITE MARQUEE
   ========================================================================== */
.marquee-section {
  padding: 4vh 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}

.marquee-track span {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding: 0 3vw;
}

.marquee-track span::before {
  content: '·';
  padding-right: 3vw;
  color: rgba(255, 255, 255, 0.15);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   FULLSCREEN NAVIGATION OVERLAY
   ========================================================================== */
.nav-toggle {
  position: fixed;
  top: 2.5rem;
  right: 4vw;
  z-index: 200;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-toggle span {
  width: 28px;
  height: 1.5px;
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.nav-toggle.active span:first-child {
  transform: rotate(45deg) translateY(3.75px);
}

.nav-toggle.active span:last-child {
  transform: rotate(-45deg) translateY(-3.75px);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at calc(100% - 4vw - 20px) 3.5rem);
  transition: clip-path 0.8s cubic-bezier(0.7, 0, 0.3, 1);
  pointer-events: none;
}

.nav-overlay.active {
  clip-path: circle(150% at calc(100% - 4vw - 20px) 3.5rem);
  pointer-events: all;
}

.nav-overlay ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.nav-overlay li {
  overflow: hidden;
}

.nav-overlay a {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.3;
  transition: color 0.3s;
  transform: translateY(110%);
}

.nav-overlay a:hover {
  color: var(--color-gold);
}

.nav-overlay.active a {
  transform: translateY(0);
  transition: color 0.3s, transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}

.nav-overlay li:nth-child(1) a {
  transition-delay: 0.1s;
}

.nav-overlay li:nth-child(2) a {
  transition-delay: 0.15s;
}

.nav-overlay li:nth-child(3) a {
  transition-delay: 0.2s;
}

.nav-overlay li:nth-child(4) a {
  transition-delay: 0.25s;
}

.nav-overlay li:nth-child(5) a {
  transition-delay: 0.3s;
}

/* ==========================================================================
   IMAGE CLIP-PATH REVEAL INITIAL STATE
   ========================================================================== */
.reveal-image {
  clip-path: inset(0 100% 0 0);
  transition: none;
}

/* ==========================================================================
   FOOTER EXPANSION
   ========================================================================== */
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 2rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--text-secondary);
  transition: color 0.3s;
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-social a:hover {
  color: var(--text-primary);
}

.footer-nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.footer-social {
  justify-content: flex-end;
}

.footer-nav a {
  color: var(--text-secondary);
  transition: color 0.3s;
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-nav a:hover {
  color: var(--text-primary);
}

.footer-legal {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-social {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
