/* ========================================================================
   NOAHTICKS — Luxury Watch Brand Design System
   ======================================================================== */

/* === IMPORTS === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Cinzel:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* === CSS CUSTOM PROPERTIES === */
:root {
  /* Brand Colors */
  --black: #0A0A0A;
  --off-white: #F5F0EB;
  --crimson: #C0392B;
  --crimson-dark: #8B1A10;

  /* Accent Colors */
  --electric-blue: #2E86DE;
  --rose-gold: #B76E79;
  --emerald: #2ECC71;
  --champagne: #D4A853;
  --pearl: #E8DFD0;
  --navy-deep: #0A1628;

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Cinzel', serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --section-pad: clamp(60px, 10vh, 120px);
  --side-pad: clamp(20px, 5vw, 80px);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  overflow-x: hidden;
}

/* Hide default scrollbar for Lenis */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-body);
  color: var(--off-white);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* === TEXTURE OVERLAYS === */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* === MICRO-DOT GRID TEXTURE === */
.micro-dot-bg {
  background-image: radial-gradient(circle, rgba(245,240,235,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* === BRUSHED METAL TEXTURE FOR CARDS === */
.brushed-metal {
  position: relative;
}
.brushed-metal::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(245,240,235,0.07) 2px,
    rgba(245,240,235,0.07) 3px
  );
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* === SECTION BASE === */
section {
  position: relative;
  overflow: hidden;
}

/* === HEADER & LOGO === */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: clamp(20px, 4vh, 40px) var(--side-pad);
  z-index: 10;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.logo-container {
  width: clamp(300px, 45vw, 450px);
  mix-blend-mode: screen; /* Removes the black background */
  opacity: 0;
  animation: fadeInDown 1s var(--ease-smooth) 0.5s forwards;
  filter: contrast(1.2); /* Helps ensure dark grays mask completely if not pure black */
}

.logo-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  pointer-events: auto;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================================================
   1. HERO SECTION
   ======================================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: flex-end; /* Align to bottom */
  justify-content: center;
  overflow: hidden;
  padding-bottom: clamp(60px, 10vh, 120px); /* Space from bottom edge */
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Animated gradient fallback when no video */
.hero-video-fallback {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(192,57,43,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(46,134,222,0.1) 0%, transparent 50%),
    linear-gradient(180deg, #0A0A0A 0%, #111 50%, #0A0A0A 100%);
  animation: heroGradient 8s ease-in-out infinite alternate;
}

@keyframes heroGradient {
  0% { opacity: 1; }
  50% { opacity: 0.8; }
  100% { opacity: 1; }
}

/* Animated gears SVG overlay for hero */
.hero-gears {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.08;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-gears svg {
  width: 600px;
  height: 600px;
}

.gear-rotate {
  transform-origin: center;
  animation: gearSpin 20s linear infinite;
}

.gear-rotate-reverse {
  transform-origin: center;
  animation: gearSpin 15s linear infinite reverse;
}

@keyframes gearSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* grain filter on hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  padding: 0 var(--side-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 6rem);
  letter-spacing: 0.3em;
  color: var(--off-white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: letterReveal 0.6s var(--ease-smooth) forwards;
}

@keyframes letterReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-line {
  width: 0;
  height: 2px;
  background: var(--crimson);
  margin: 0.5rem auto 1.5rem;
  animation: lineExpand 1.2s var(--ease-smooth) 1.5s forwards;
}

@keyframes lineExpand {
  to { width: 200px; }
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-white);
  text-shadow: 0 4px 12px rgba(0,0,0,0.8);
  opacity: 0;
  margin-bottom: 2rem;
  animation: fadeIn 1s var(--ease-smooth) 2s forwards;
}

.hero-cta {
  opacity: 0;
  animation: fadeIn 1s var(--ease-smooth) 2.5s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-smooth), visibility 0.4s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #111;
  border: 1px solid rgba(192, 57, 43, 0.3);
  padding: clamp(30px, 5vw, 60px);
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-smooth);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--off-white);
  font-size: 2rem;
  font-weight: 300;
  opacity: 0.5;
  transition: opacity 0.3s, color 0.3s;
}

.modal-close:hover {
  opacity: 1;
  color: var(--crimson);
}

.modal-content h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
  color: var(--off-white);
}

.modal-content p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 2rem;
}

.quote-form .form-group {
  margin-bottom: 1.5rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  background: rgba(245, 240, 235, 0.05);
  border: 1px solid rgba(245, 240, 235, 0.1);
  padding: 12px 16px;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--crimson);
  background: rgba(245, 240, 235, 0.08);
}

.quote-form select option {
  background: var(--black);
  color: var(--off-white);
}

.submit-quote {
  width: 100%;
  margin-top: 1rem;
}

.scroll-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(245,240,235,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-ring::after {
  content: '';
  width: 3px;
  height: 8px;
  background: var(--crimson);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(4px); }
}

/* ========================================================================
   2. MANIFESTO
   ======================================================================== */
.manifesto {
  position: relative;
  padding: var(--section-pad) var(--side-pad);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}

.manifesto-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.manifesto-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  text-align: center;
  letter-spacing: 0.05em;
  max-width: 900px;
  color: var(--off-white);
}

.manifesto-text .typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--crimson);
  margin-left: 4px;
  animation: blink 0.8s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ========================================================================
   3. SIGNATURE COLLECTIONS — Horizontal Scroll Gallery
   ======================================================================== */
.collections-wrapper {
  position: relative;
  overflow: hidden;
}

.collections-track {
  display: flex;
  width: 300vw;
}

.collection-card {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.collection-card-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 2;
  padding: 10vh var(--side-pad);
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1440px;
}

/* Layout modifiers */
.align-bottom-center {
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.align-left-center {
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.collection-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at center, transparent 0%, transparent 60%, var(--black) 100%);
}

.collection-watch-img {
  width: clamp(250px, 35vw, 450px);
  height: clamp(250px, 35vw, 450px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* SVG watch placeholder */
.watch-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.watch-placeholder svg {
  width: 80%;
  height: 80%;
}

.collection-name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 3rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-white);
}

.collection-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0.1em;
  opacity: 0.7;
  color: var(--off-white);
}

/* ========================================================================
   4. SEQUENCE SCROLLYTELLING INFO
   ======================================================================== */
.sequence-info {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  width: clamp(300px, 35vw, 450px);
  opacity: 0;
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
  pointer-events: none;
  z-index: 10;
  background: rgba(10, 10, 10, 0.4);
  padding: 2.5rem;
  border-left: 3px solid var(--crimson);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sequence-info.active {
  opacity: 1;
  transform: translateY(-50%) translateX(20px);
}

@media (max-width: 768px) {
  .sequence-info {
    top: auto;
    bottom: 15%;
    left: 50%;
    transform: translate(-50%, 10px);
    width: 90%;
    text-align: center;
    border-left: none;
    border-top: 3px solid var(--crimson);
    padding: 1.5rem;
  }
  .sequence-info.active {
    transform: translate(-50%, 0);
  }
}

.seq-tag {
  font-family: var(--font-body);
  color: var(--crimson);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.seq-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--off-white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.seq-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: rgba(245, 240, 235, 0.7);
  line-height: 1.6;
}

/* ========================================================================
   5. FEATURED CAROUSEL
   ======================================================================== */
.featured-carousel {
  position: relative;
  background: var(--black);
  padding: 8vh var(--side-pad); /* Reduced padding */
  overflow: hidden;
}

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  height: 55vh;
  min-height: 400px;
}

.carousel-info-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  height: 100%;
}

.carousel-subtitle {
  font-family: var(--font-body);
  color: var(--crimson);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.carousel-text-items {
  position: relative;
  height: 180px; 
  margin-bottom: 3rem;
}

.carousel-text-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}

.carousel-text-item.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.carousel-text-item h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--off-white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.carousel-text-item p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: rgba(245,240,235,0.7);
  line-height: 1.6;
  max-width: 85%;
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.carousel-btn {
  background: transparent;
  border: 1px solid rgba(245,240,235,0.2);
  color: var(--off-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

.carousel-btn:hover {
  background: rgba(245,240,235,0.1);
  border-color: var(--gold);
}

.carousel-indicators {
  display: flex;
  gap: 10px;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245,240,235,0.2);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.indicator.active {
  background: var(--gold);
  transform: scale(1.3);
}

.carousel-image-panel {
  flex: 1.2;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  max-width: 100%;
  max-height: 90%; /* Reduced from 140% */
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
  /* Removed drop shadow */
  pointer-events: none;
  image-rendering: -webkit-optimize-contrast;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  backface-visibility: hidden;
}

@media (max-width: 1024px) {
  .featured-carousel {
    padding: 4vh var(--side-pad);
  }
  .carousel-container {
    flex-direction: column;
    height: auto;
    gap: 1rem;
    min-height: auto;
  }
  .carousel-info-panel {
    flex: none;
    align-items: center;
    text-align: center;
    order: 2; /* Move text below on mobile */
    width: 100%;
  }
  .carousel-text-items {
    width: 100%;
    height: 150px;
    margin-bottom: 2rem;
  }
  .carousel-text-item p {
    max-width: 95%;
    margin: 0 auto;
    font-size: 1rem;
  }
  .carousel-text-item h2 {
    font-size: 2.2rem;
  }
  .carousel-subtitle {
    margin-bottom: 1.5rem;
  }
  .carousel-image-panel {
    flex: none;
    width: 100%;
    height: 350px;
    order: 1; /* Move images above text on mobile */
  }
  .carousel-img {
    max-height: 80%;
  }
}

/* ========================================================================
   6. VIDEO INTERLUDE
   ======================================================================== */
.video-interlude {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-interlude-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 40% 40%, rgba(192,57,43,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 60% 60%, rgba(46,134,222,0.06) 0%, transparent 60%),
    var(--black);
  animation: interludeShift 12s ease-in-out infinite alternate;
}

@keyframes interludeShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.video-interlude-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.video-interlude-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 var(--side-pad);
}

.video-interlude-content p {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2.5rem);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.video-interlude-content p.visible {
  opacity: 1;
  transform: translateY(0);
}

.video-interlude-content p:last-child {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: clamp(1.8rem, 5vw, 4rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--crimson);
}

.blur-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 100%);
  z-index: 1;
}

/* ========================================================================
   7. FEATURED PIECE — Hero Product Spotlight
   ======================================================================== */
.featured {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--section-pad) var(--side-pad);
  background: var(--black);
  position: relative;
}

.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(183,110,121,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.featured-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.featured-info {
  position: relative;
  z-index: 1;
}

.featured-label {
  font-family: var(--font-heading);
  font-size: clamp(0.6rem, 1vw, 0.8rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 1rem;
}

.featured-info h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.spec-list li {
  padding: clamp(12px, 1.5vh, 18px) 0;
  border-bottom: 1px solid rgba(245,240,235,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.spec-list li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--crimson);
  transition: width 0.8s var(--ease-smooth);
}

.spec-list li.visible::after {
  width: 100%;
}

.spec-label {
  font-family: var(--font-heading);
  font-size: clamp(0.6rem, 0.9vw, 0.75rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}

.spec-value {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  font-weight: 300;
}

.cta-btn {
  display: inline-block;
  padding: clamp(14px, 1.5vh, 18px) clamp(32px, 4vw, 50px);
  border: 1px solid var(--crimson);
  background: transparent;
  color: var(--off-white);
  font-family: var(--font-heading);
  font-size: clamp(0.65rem, 0.9vw, 0.8rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease-smooth);
  z-index: 1;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--crimson);
  transition: left 0.4s var(--ease-smooth);
  z-index: -1;
}

.cta-btn:hover::before {
  left: 0;
}

.cta-btn:hover {
  color: #fff;
}

.featured-watch {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-watch-inner {
  width: clamp(280px, 35vw, 480px);
  height: clamp(280px, 35vw, 480px);
  animation: floatWatch 4s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-watch-inner svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 60px rgba(183,110,121,0.3));
}

@keyframes floatWatch {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ========================================================================
   8. THE ATELIER
   ======================================================================== */
.atelier {
  position: relative;
  padding: 15vh var(--side-pad);
  overflow: hidden;
  background: var(--black);
  color: var(--off-white);
}

.atelier-background {
  position: absolute;
  inset: -15% -5%;
  z-index: 0;
  pointer-events: none;
}

.atelier-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(2.0) translateZ(0);
  opacity: 0.15;
  filter: grayscale(100%) contrast(1.3);
  backface-visibility: hidden;
}

.atelier-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--black) 0%, transparent 25%, transparent 75%, var(--black) 100%);
}

.atelier-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15vh;
}

.atelier-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 4rem;
  text-align: center;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.process-row {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212,168,83,0.15);
}

.process-row:last-child {
  border-bottom: none;
}

.p-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--crimson);
  opacity: 0.8;
  line-height: 1;
}

.p-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.p-text p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: rgba(245,240,235,0.7);
  line-height: 1.6;
}

.atelier-quote {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.atelier-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--off-white);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.atelier-quote cite {
  font-family: var(--font-heading);
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.atelier-quote cite::before {
  content: '⌚ ';
}

.atelier-cta {
  text-align: center;
  padding: 8vh 4vw;
  background: rgba(10,10,10,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245,240,235,0.05);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.atelier-cta h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.atelier-cta p {
  font-family: var(--font-body);
  color: rgba(245,240,235,0.6);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .process-row {
    flex-direction: column;
    gap: 1rem;
  }
}

.shimmer-btn {
  display: inline-block;
  padding: clamp(16px, 2vh, 22px) clamp(40px, 5vw, 60px);
  border: 1px solid var(--crimson);
  background: transparent;
  color: var(--off-white);
  font-family: var(--font-heading);
  font-size: clamp(0.65rem, 0.9vw, 0.8rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.5s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth);
  z-index: 1;
}

.shimmer-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(192,57,43,0.3), var(--crimson), rgba(192,57,43,0.3), transparent);
  transition: left 0.6s var(--ease-smooth);
  z-index: -1;
}

.shimmer-btn:hover::before {
  left: -50%;
}

.shimmer-btn:hover {
  color: #fff;
  box-shadow: 0 0 40px rgba(192,57,43,0.3);
}

/* ========================================================================
   11. INSTAGRAM STRIP
   ======================================================================== */
.instagram {
  padding: clamp(40px, 5vh, 60px) 0;
  background: var(--black);
}

.insta-header {
  text-align: center;
  margin-bottom: clamp(20px, 3vh, 30px);
}

.insta-header p {
  font-family: var(--font-heading);
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.insta-header a {
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.3s;
}

.insta-header a:hover {
  color: var(--crimson);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.insta-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: #0A0A0A;
  display: block; /* For anchor tags */
}

.insta-item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.4s var(--ease-smooth);
}

.insta-item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: grayscale(80%) contrast(1.2);
  transition: transform 0.8s var(--ease-smooth), filter 0.8s var(--ease-smooth), opacity 0.8s var(--ease-smooth);
}

.insta-item:hover .insta-item-inner img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1);
  opacity: 1;
}

.insta-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(192,57,43,0.3);
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
  z-index: 1;
}

.insta-item:hover::after {
  opacity: 1;
}

.insta-item:hover .insta-item-inner {
  filter: saturate(0);
}

.insta-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
  font-size: 1.5rem;
}

.insta-item:hover .insta-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ========================================================================
   12. FOOTER
   ======================================================================== */
.site-footer {
  border-top: 1px solid var(--crimson);
  padding: clamp(50px, 6vh, 80px) var(--side-pad) clamp(20px, 3vh, 30px);
  background: var(--black);
}

.footer-logo {
  text-align: center;
  margin-bottom: clamp(30px, 4vh, 50px);
}

.footer-logo span {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  max-width: 800px;
  margin: 0 auto clamp(30px, 4vh, 50px);
  text-align: center;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: clamp(0.6rem, 0.8vw, 0.7rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--crimson);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  font-weight: 300;
  opacity: 0.5;
  transition: opacity 0.3s, color 0.3s;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--crimson);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 0;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245,240,235,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}

.footer-social a:hover {
  border-color: var(--crimson);
  background: rgba(192,57,43,0.1);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: var(--off-white);
}

.footer-bottom {
  text-align: center;
  padding-top: clamp(20px, 3vh, 30px);
  border-top: 1px solid rgba(245,240,235,0.05);
  margin-top: clamp(20px, 3vh, 30px);
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: clamp(0.65rem, 0.8vw, 0.75rem);
  font-weight: 300;
  opacity: 0.3;
  letter-spacing: 0.05em;
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (max-width: 1024px) {
  .featured-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .featured-watch {
    order: -1;
  }
  .spec-list li {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    letter-spacing: 0.2em;
  }
  .collection-card[data-accent="green"],
  .collection-card[data-accent="crimson"] {
    background-position: 70% center;
  }
  .collection-card[data-accent="green"] .collection-card-inner,
  .collection-card[data-accent="crimson"] .collection-card-inner {
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding-bottom: 5vh;
  }
  .collection-card[data-accent="green"] .collection-name,
  .collection-card[data-accent="crimson"] .collection-name,
  .collection-card[data-accent="green"] .collection-tagline,
  .collection-card[data-accent="crimson"] .collection-tagline {
    color: #ffffff;
    opacity: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.8);
  }
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
