/* ============================================
   SOVA — Design System & Styles
   ============================================ */

:root {
  --void: #08080A;
  --carbon: #111114;
  --gunmetal: #1A1A1F;
  --platinum: #E8E6E1;
  --silver: #9A978F;
  --gold: #C9A96E;

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'DM Sans', Helvetica, Arial, sans-serif;
  --ff-mono: 'JetBrains Mono', 'Courier New', monospace;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background: var(--void);
  color: var(--platinum);
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  cursor: none;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: none;
}

/* ---- Typography ---- */
.label {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--silver);
}

.spec {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--silver);
  opacity: 0.7;
}

h1, h2, h3 {
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 1.1;
}

h2 {
  font-size: clamp(32px, 5vw, 64px);
  color: var(--platinum);
}

h3 {
  font-family: var(--ff-serif);
  font-size: 24px;
  font-weight: 400;
}

/* ============================================
   Custom Cursor
   ============================================ */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, opacity 0.3s ease;
}

.cursor-hover .cursor-dot {
  transform: translate(-50%, -50%) scale(0.5);
}

.cursor-hover .cursor-ring {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0.5;
}

@media (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
  body {
    cursor: auto;
  }
  a, button, .magnetic {
    cursor: pointer;
  }
}

/* ============================================
   Loading Screen
   ============================================ */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loading-brand {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 10px;
  color: var(--platinum);
}

.loading-bar {
  width: 200px;
  height: 1px;
  background: var(--gunmetal);
  position: relative;
  overflow: hidden;
}

.loading-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--gold);
}

.loading-percent {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 300;
  color: var(--silver);
  letter-spacing: 2px;
}

/* ============================================
   Intro Overlay
   ============================================ */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.intro-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 1px;
  width: 0;
  background: var(--gold);
  opacity: 0.2;
}

.intro-line-clone {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 0;
  background: var(--gold);
  opacity: 0.2;
}

.intro-line-top {
  top: 50%;
}

.intro-line-bottom {
  top: 50%;
}

.intro-gap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 0;
  background: #0D0D10;
  opacity: 0;
}

.intro-watch-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(280px, 35vw, 500px);
  opacity: 0;
  z-index: 2;
}

.intro-watch-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
}

.intro-watch {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.intro-brand {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-serif);
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 400;
  color: var(--platinum);
  opacity: 0;
  z-index: 1;
  display: flex;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.intro-brand span {
  display: inline-block;
  clip-path: inset(50% 0);
}

.intro-tagline {
  position: absolute;
  bottom: calc(50% - 200px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--gold);
  opacity: 0;
  z-index: 3;
  white-space: nowrap;
}

.intro-subtitle {
  position: absolute;
  top: calc(50% - 200px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--silver);
  opacity: 0;
  z-index: 3;
  white-space: nowrap;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--void);
  overflow: hidden;
  display: flex;
  align-items: center;
  opacity: 0;
}

.hero.active {
  opacity: 1;
}

.hero-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 0 0 55%;
  max-width: 55%;
  position: relative;
  z-index: 2;
}

.hero-label {
  display: block;
  margin-bottom: 24px;
  opacity: 0;
}

.hero-headline {
  font-size: clamp(40px, 7vw, 80px);
  color: var(--platinum);
  margin-bottom: 28px;
}

.hero-headline .word {
  display: inline-block;
  opacity: 0;
}

.hero-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--silver);
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  opacity: 0;
}

.hero-watch-wrap {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-watch-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-watch {
  width: 90%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  will-change: transform;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 16px 36px;
  border-radius: 0;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  position: relative;
  will-change: transform;
}

.btn span {
  position: relative;
  z-index: 1;
}

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

.btn-primary:hover {
  background: #d4b478;
}

.btn-secondary {
  background: transparent;
  color: var(--platinum);
  border: 1px solid rgba(232, 230, 225, 0.2);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---- Scroll Indicator ---- */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
}

.scroll-line-wrap {
  position: relative;
  width: 1px;
  height: 50px;
  overflow: hidden;
}

.scroll-line {
  position: absolute;
  inset: 0;
  background: rgba(232, 230, 225, 0.15);
}

.scroll-dot-anim {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.scroll-text {
  font-family: var(--ff-sans);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--silver);
  opacity: 0.5;
}

/* ============================================
   Showcase Section (Scroll-Driven)
   ============================================ */
.showcase {
  position: relative;
  height: 400vh;
  background: var(--void);
}

.showcase-pin {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.showcase-watch-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 30vw, 450px);
  height: clamp(300px, 30vw, 450px);
  z-index: 2;
}

.showcase-watch-glow {
  position: absolute;
  inset: -60%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  opacity: 0;
  transition: none;
}

.showcase-img.active {
  opacity: 1;
}

.showcase-text-block {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 380px;
  opacity: 0;
  z-index: 3;
}

.showcase-text-block.left {
  left: 8%;
}

.showcase-text-block.right {
  right: 8%;
  text-align: right;
}

.showcase-text-block .label {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
}

.showcase-text-block h2 {
  font-size: clamp(24px, 3vw, 40px);
  margin-bottom: 16px;
}

.showcase-text-block p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--silver);
  margin-bottom: 16px;
}

.showcase-text-block .spec {
  display: block;
}

/* ============================================
   Gallery Section (Horizontal Scroll)
   ============================================ */
.gallery-section {
  position: relative;
  overflow: hidden;
  background: var(--void);
}

.gallery-track {
  display: flex;
  width: 500vw;
  will-change: transform;
}

.gallery-panel {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gallery-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.gallery-info {
  position: absolute;
  bottom: 60px;
  left: 60px;
}

.gallery-info .label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
}

.gallery-info h3 {
  font-size: 28px;
  color: var(--platinum);
}

.gallery-divider {
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--gold);
  opacity: 0.15;
}

/* ---- CSS Art: Dial ---- */
.css-dial {
  position: relative;
  width: clamp(250px, 30vw, 400px);
  height: clamp(250px, 30vw, 400px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #3a3a40 0%, #1a1a1f 50%, #0d0d10 100%);
  box-shadow:
    0 0 0 2px rgba(201, 169, 110, 0.15),
    0 0 60px rgba(201, 169, 110, 0.03),
    inset 0 0 80px rgba(0, 0, 0, 0.6);
}

.dial-face {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #2a2a2f 0%, #151518 60%, #0a0a0d 100%);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.dial-marker {
  position: absolute;
  top: 6%;
  left: 50%;
  width: 2px;
  height: 8%;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 169, 110, 0.3));
  transform-origin: 50% 570%;
  transform: translateX(-50%) rotate(var(--r));
}

.dial-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.4);
}

.dial-hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  background: linear-gradient(to top, var(--gold), var(--platinum));
}

.dial-hand-hr {
  width: 2.5px;
  height: 22%;
  transform: translateX(-50%) rotate(-30deg);
  border-radius: 1px;
}

.dial-hand-min {
  width: 1.5px;
  height: 32%;
  transform: translateX(-50%) rotate(60deg);
  border-radius: 1px;
}

/* ---- CSS Art: Crown ---- */
.css-crown {
  position: relative;
  width: clamp(100px, 12vw, 160px);
  height: clamp(140px, 18vw, 220px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.crown-body {
  width: 100%;
  height: 70%;
  background: linear-gradient(135deg, #4a4538 0%, #2a2620 30%, #C9A96E 50%, #2a2620 70%, #4a4538 100%);
  border-radius: 50% 50% 45% 45% / 10% 10% 8% 8%;
  box-shadow:
    0 0 30px rgba(201, 169, 110, 0.1),
    inset 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.crown-grip {
  width: 108%;
  height: 30%;
  margin-top: -2px;
  background: repeating-linear-gradient(
    90deg,
    #2a2620 0px,
    #2a2620 3px,
    #C9A96E 3px,
    #C9A96E 4px,
    #2a2620 4px,
    #2a2620 7px
  );
  border-radius: 0 0 40% 40% / 0 0 30% 30%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.crown-logo {
  position: absolute;
  top: 28%;
  font-family: var(--ff-serif);
  font-size: clamp(20px, 3vw, 32px);
  color: var(--gold);
  opacity: 0.6;
  text-shadow: 0 0 10px rgba(201, 169, 110, 0.3);
}

/* ---- CSS Art: Clasp ---- */
.css-clasp {
  position: relative;
  width: clamp(180px, 20vw, 280px);
  height: clamp(100px, 12vw, 160px);
}

.clasp-wing {
  position: absolute;
  left: 10%;
  width: 80%;
  height: 38%;
  background: linear-gradient(135deg, #3a3530 0%, #C9A96E 45%, #3a3530 100%);
  border-radius: 4px;
}

.clasp-wing-top {
  top: 8%;
  box-shadow: 0 -2px 15px rgba(201, 169, 110, 0.1);
}

.clasp-wing-bottom {
  bottom: 8%;
  box-shadow: 0 2px 15px rgba(201, 169, 110, 0.1);
}

.clasp-hinge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  height: 20%;
  background: linear-gradient(90deg, #1a1a1f, #C9A96E, #1a1a1f);
  border-radius: 2px;
}

.clasp-lock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8%;
  height: 40%;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.5;
}

/* ---- CSS Art: SuperLuminova ---- */
.css-lume {
  position: relative;
  width: clamp(250px, 30vw, 400px);
  height: clamp(250px, 30vw, 400px);
  border-radius: 50%;
  background: #050507;
  overflow: hidden;
}

.lume-ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(100, 200, 120, 0.08);
}

.lume-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #8BF0A0;
  border-radius: 50%;
  box-shadow:
    0 0 8px #8BF0A0,
    0 0 20px rgba(139, 240, 160, 0.5),
    0 0 40px rgba(139, 240, 160, 0.2);
  transform-origin: 0 0;
  transform: rotate(var(--angle)) translateY(calc(clamp(250px, 30vw, 400px) * -0.38)) translate(-50%, -50%);
}

.lume-hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  background: #8BF0A0;
  border-radius: 1px;
  box-shadow: 0 0 6px rgba(139, 240, 160, 0.5);
}

.lume-hand-hr {
  width: 3px;
  height: 20%;
  transform: translateX(-50%) rotate(-60deg);
}

.lume-hand-min {
  width: 2px;
  height: 30%;
  transform: translateX(-50%) rotate(30deg);
}

/* ---- CSS Art: Movement ---- */
.css-movement {
  position: relative;
  width: clamp(280px, 30vw, 420px);
  height: clamp(280px, 30vw, 420px);
}

.mvmt-plate {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(201, 169, 110, 0.03) 0deg,
      transparent 2deg,
      transparent 10deg
    ),
    radial-gradient(circle at 40% 40%, #2c2820 0%, #1a1815 60%, #0d0c0a 100%);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
}

.mvmt-gear {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.2);
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(201, 169, 110, 0.05) 0deg,
      transparent 5deg,
      transparent 15deg
    );
}

.mvmt-gear-1 {
  top: 20%;
  left: 25%;
  width: 35%;
  height: 35%;
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.05);
}

.mvmt-gear-2 {
  top: 50%;
  left: 50%;
  width: 25%;
  height: 25%;
}

.mvmt-gear-3 {
  top: 15%;
  right: 20%;
  width: 20%;
  height: 20%;
}

.mvmt-bridge {
  position: absolute;
  top: 35%;
  left: 20%;
  width: 60%;
  height: 15%;
  background: linear-gradient(
    180deg,
    rgba(201, 169, 110, 0.15) 0%,
    rgba(201, 169, 110, 0.05) 50%,
    rgba(201, 169, 110, 0.15) 100%
  );
  border-radius: 4px;
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.mvmt-jewel {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #d4456a 0%, #8b1a3a 100%);
  box-shadow: 0 0 6px rgba(212, 69, 106, 0.4);
}

.mvmt-jewel-1 {
  top: 32%;
  left: 40%;
}

.mvmt-jewel-2 {
  top: 58%;
  left: 60%;
}

.mvmt-screw {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a6080, #2a3a50);
  box-shadow: 0 0 4px rgba(74, 96, 128, 0.3);
}

.mvmt-screw::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 1px;
  background: rgba(74, 96, 128, 0.5);
  transform: translateY(-50%);
}

.mvmt-screw-1 { top: 22%; left: 30%; }
.mvmt-screw-2 { top: 65%; right: 28%; }
.mvmt-screw-3 { bottom: 22%; left: 45%; }

/* ============================================
   Collection Section
   ============================================ */
.collection {
  padding: 140px 60px;
  background: var(--void);
}

.collection-header {
  text-align: center;
  margin-bottom: 80px;
}

.collection-header .label {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.collection-card {
  background: var(--carbon);
  padding: 40px 30px;
  transition: opacity 0.5s ease;
  position: relative;
  overflow: hidden;
}

.collection-grid:hover .collection-card:not(:hover) {
  opacity: 0.6;
}

.card-image-wrap {
  position: relative;
  margin-bottom: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.card-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.collection-card:hover .card-glow {
  opacity: 1;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover .card-image-wrap img {
  transform: scale(1.08);
}

.collection-card[data-variant="silver"] .card-image-wrap img {
  filter: grayscale(0.15) brightness(1.05) contrast(1.05);
}

.collection-card[data-variant="gold"] .card-image-wrap img {
  filter: sepia(0.12) saturate(1.15) brightness(0.97);
}

.card-info h3 {
  font-family: var(--ff-serif);
  font-size: 24px;
  margin-bottom: 6px;
}

.card-info p {
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
  margin-bottom: 12px;
}

.card-price {
  display: block;
  font-family: var(--ff-mono);
  font-size: 16px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 16px;
}

.card-link {
  font-family: var(--ff-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.card-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.card-link:hover::after {
  width: 100%;
}

/* ============================================
   Heritage Section
   ============================================ */
.heritage {
  padding: 160px 60px;
  background: var(--carbon);
}

.heritage-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: center;
}

.heritage-label {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
}

.heritage-headline {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 32px;
  font-style: italic;
}

.heritage-p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--silver);
  margin-bottom: 20px;
  max-width: 540px;
}

.heritage-image-wrap {
  position: relative;
}

.heritage-image-border {
  position: absolute;
  top: -12px;
  left: -12px;
  bottom: 12px;
  width: 1px;
  background: var(--gold);
  opacity: 0.3;
}

.heritage-image {
  position: relative;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  aspect-ratio: 2/3;
}

.heritage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  padding: 160px 60px;
  background: var(--void);
  text-align: center;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-label {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
}

.contact-headline {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 24px;
}

.contact-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--silver);
  margin-bottom: 40px;
}

.contact .btn {
  margin-bottom: 60px;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-item .label {
  font-size: 9px;
  letter-spacing: 4px;
}

.contact-item span:last-child {
  font-size: 14px;
  font-weight: 300;
  color: var(--platinum);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 60px;
  background: var(--void);
}

.footer-line {
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0.1;
  margin-bottom: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  font-family: var(--ff-serif);
  font-size: 32px;
  color: var(--platinum);
  letter-spacing: 0.1em;
}

.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--silver);
  transition: color 0.3s ease;
}

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

.footer-social {
  display: flex;
  gap: 24px;
}

.footer-social a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--silver);
  transition: color 0.3s ease;
}

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

.footer-copy {
  font-size: 11px;
  font-weight: 300;
  color: var(--silver);
  opacity: 0.5;
  letter-spacing: 1px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 120px 40px 80px;
  }

  .hero-text {
    flex: none;
    max-width: 100%;
  }

  .hero-body {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-watch-wrap {
    flex: none;
    max-width: 60%;
  }

  .showcase-text-block {
    max-width: 280px;
  }

  .showcase-text-block.left {
    left: 4%;
  }

  .showcase-text-block.right {
    right: 4%;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .heritage-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 100px 24px 60px;
  }

  .hero-headline {
    font-size: clamp(32px, 8vw, 52px);
  }

  .hero-watch-wrap {
    max-width: 80%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .showcase {
    height: auto;
    padding: 80px 24px;
  }

  .showcase-pin {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .showcase-watch-container {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 20px;
  }

  .showcase-text-block {
    position: relative;
    top: auto;
    left: auto !important;
    right: auto !important;
    transform: none;
    max-width: 100%;
    opacity: 1;
    text-align: center;
  }

  .showcase-text-block.right {
    text-align: center;
  }

  .gallery-section {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-track {
    width: auto;
    flex-direction: column;
  }

  .gallery-panel {
    width: 100vw;
    height: auto;
    min-height: 80vh;
  }

  .collection {
    padding: 80px 24px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .heritage {
    padding: 80px 24px;
  }

  .contact {
    padding: 80px 24px;
  }

  .contact-details {
    flex-direction: column;
    gap: 24px;
  }

  .gallery-info {
    bottom: 40px;
    left: 40px;
  }

  .footer {
    padding: 40px 24px;
  }

  .footer-nav {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 14px 28px;
    font-size: 11px;
  }

  .intro-tagline,
  .intro-subtitle {
    font-size: 8px;
    letter-spacing: 4px;
  }
}
