/* ============================================
   BRAZZ Timepieces — Master Stylesheet
   ============================================ */

/* --- Custom Properties --- */
:root {
  --bg-primary: #fafaf8;
  --bg-secondary: #f2f0ec;
  --bg-card: #ffffff;
  --bg-input: #f7f6f3;
  --text-primary: #1a1a18;
  --text-secondary: #4a4a46;
  --gold: #9a7d4a;
  --gold-dim: #7a6238;
  --steel: #888880;
  --border: #dddbd5;
  --font-heading: 'Syne', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  /* Legacy aliases */
  --white: var(--text-primary);
  --white-soft: var(--text-secondary);
  --font-serif: var(--font-heading);
  --font-sans: var(--font-body);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  letter-spacing: 0.015em;
  overflow-x: hidden;
  font-size: 16px;
}

/* Typography Utilities */
.outline-text {
  -webkit-text-stroke: 2px var(--text-primary);
  color: transparent !important;
}

@media (max-width: 768px) {
  .outline-text {
    -webkit-text-stroke: 1px var(--text-primary);
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* --- Preloader --- */
.preloader {
  display: none !important;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-primary);
  align-items: center;
  justify-content: center;
}

.preloader img {
  height: 60px;
  width: auto;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* --- Scroll Reveal (initial state — GSAP animates from this) --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
  transition: none !important;
  transition-delay: 0s !important;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

.hero-visual-reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  will-change: transform, opacity;
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  background-color: rgba(250, 250, 248, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  height: 60px;
  background-color: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  padding: 0 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.nav-brand img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.3s, transform 0.3s;
}

.nav-brand img:hover {
  opacity: 0.85;
  transform: scale(1.02);
}

.nav-end {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

.nav-icon {
  display: flex;
  align-items: center;
  color: var(--steel);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
  /* Slight alignment boost for underline */
}

.nav-icon:hover {
  color: var(--text-primary);
}

.nav-icon::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-icon:hover::after {
  width: 100%;
}

.nav-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(154, 125, 74, 0.05) 0%, transparent 60%);
  z-index: 0;
}

.hero-title-bg {
  position: absolute;
  top: 24%;
  left: 5%;
  z-index: 1;
}

.hero-title-bg h1 {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 11rem);
  font-weight: 800;
  line-height: 0.9;
  color: var(--text-primary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.hero-title-bg h1.outline {
  -webkit-text-stroke: 2px var(--text-primary);
  color: transparent;
  margin-left: 0;
}

.hero-visual {
  position: absolute;
  right: 12%;
  top: 3vh;
  height: 104vh;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  pointer-events: none;
}

.hero-watch-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(-30px 40px 60px rgba(0, 0, 0, 0.18));
  will-change: transform;
}

.hero-content {
  position: absolute;
  bottom: 5%;
  left: 5%;
  z-index: 3;
  max-width: 420px;
}

.hero-badge {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-sub strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bg-primary);
  background: var(--text-primary);
  padding: 1.05rem 2.4rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.4s, box-shadow 0.4s;
  will-change: transform;
}

.hero-cta:hover {
  background: var(--gold);
  box-shadow: 0 8px 36px rgba(154, 125, 74, 0.2);
}

.hero-cta svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: transform 0.3s;
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 3;
}

@media (max-height: 700px) {
  .scroll-indicator {
    display: none;
  }
}

.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--steel);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* --- Section Utility --- */
.section {
  padding: 8rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

/* --- Journey Section --- */
.journey {
  position: relative;
  overflow: hidden;
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.journey-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.02) saturate(0.95);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.journey-image:hover img {
  transform: scale(1.03);
}

.journey-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(154, 125, 74, 0.15);
  border-radius: 4px;
  pointer-events: none;
}

.journey-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.journey-text .highlight {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.6;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}

.journey-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.journey-stat h4 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.journey-stat span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
}

/* --- Trilogy / Collection --- */
.trilogy {
  text-align: center;
  padding-bottom: 3rem;
}

.trilogy-title {
  max-width: 900px !important;
  margin: 0 auto 1.5rem;
}

.trilogy-title span {
  display: block;
  white-space: nowrap;
}

.trilogy-title span:last-child {
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .trilogy-title span {
    white-space: normal;
  }
}

.trilogy-intro {
  color: var(--steel);
  max-width: 600px;
  margin: 0 auto 4rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── Trilogy Editorial ── */
.trilogy-editorial {
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.trilogy-item {
  display: block;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.trilogy-item:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.trilogy-item-inner {
  display: grid;
  grid-template-columns: 120px 1fr clamp(200px, 20vw, 300px) 150px;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.trilogy-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 700;
  line-height: 0.8;
  color: rgba(0, 0, 0, 0.04);
  align-self: flex-start;
  transition: color 0.4s ease;
}

.trilogy-item:hover .trilogy-num {
  color: rgba(154, 125, 74, 0.15);
  /* gold tinted */
}

.trilogy-item-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trilogy-item-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 8vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-primary, #2c2c28);
  margin: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.trilogy-item:hover .trilogy-item-name {
  transform: translateX(10px);
}

.trilogy-item-ref {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold, #9a7d4a);
  margin: 0;
}

.trilogy-item-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-secondary, #888880);
  margin: 0;
}

.trilogy-item-img {
  width: clamp(200px, 20vw, 300px);
  justify-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.trilogy-item-img img {
  max-width: 100%;
  max-height: 330px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.trilogy-item-img.blurred img {
  filter: blur(10px) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1)) !important;
  opacity: 0.8;
}

.trilogy-item:hover .trilogy-item-img {
  transform: scale(1.05) rotate(2deg);
}

.trilogy-item-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary, #2c2c28);
}

.trilogy-item-cta svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-primary, #2c2c28);
  transition: transform 0.4s ease;
}

.trilogy-item:hover .trilogy-item-cta svg {
  transform: translateX(8px);
}

/* Locked state */
.trilogy-locked {
  cursor: not-allowed;
  opacity: 0.6;
}

.trilogy-locked:hover {
  background-color: transparent;
}

.trilogy-locked:hover .trilogy-item-name {
  transform: none;
}

.trilogy-locked:hover .trilogy-item-img {
  transform: none;
}

.trilogy-item-img--locked {
  filter: grayscale(100%) blur(4px);
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 992px) {
  .trilogy-item-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "num"
      "img"
      "text"
      "cta";
    gap: 2rem;
    text-align: left;
  }

  .trilogy-num {
    grid-area: num;
  }

  .trilogy-item-img {
    grid-area: img;
    justify-self: center;
    width: 250px;
    margin-left: 0;
  }

  .trilogy-item-text {
    grid-area: text;
  }

  .trilogy-item-cta {
    grid-area: cta;
  }
}

/* --- Reservation / Atelier --- */
.atelier {
  text-align: center;
}

.atelier-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .atelier-wrapper {
    max-width: 100%;
    width: 100%;
  }
}

.atelier-desc {
  color: var(--steel);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.08);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group select {
  display: none;
}

/* ── Field error state ── */
.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08) !important;
}

.form-error-msg {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: #c0392b;
  margin-top: 0.45rem;
  padding-left: 0.1rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.form-group.has-error .form-error-msg {
  opacity: 1;
  transform: translateY(0);
}

/* Hide the default */

/* --- Custom Luxury Dropdown --- */
.custom-select-wrapper {
  position: relative;
  user-select: none;
}

.custom-select {
  position: relative;
  display: flex;
  flex-direction: column;
}

.custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.custom-select-trigger svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-select.open .custom-select-trigger {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.08);
}

.custom-select.open .custom-select-trigger svg {
  transform: rotate(180deg);
  stroke: var(--gold);
}

.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 5px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  overflow: hidden;
}

.custom-select.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-option {
  padding: 0.9rem 1.2rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.custom-option:hover {
  background: rgba(154, 125, 74, 0.06);
  color: var(--text-primary);
}

/* --- Locked Watch Card --- */
.watch-card.locked {
  cursor: not-allowed;
  opacity: 0.6;
}

.watch-card.locked:hover {
  transform: none;
}

.watch-card.locked:hover .watch-card-image img {
  transform: none;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

.watch-card.locked:hover .watch-card-body {
  transform: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--text-primary);
  border: 1px solid var(--text-primary);
  color: var(--bg-primary);
  font-size: 0.73rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 4px;
  margin-top: 0.5rem;
  transition: background 0.4s, color 0.4s, box-shadow 0.4s, border-color 0.4s;
  will-change: transform;
}

.btn-submit:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 4px 24px rgba(154, 125, 74, 0.2);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.show {
  display: block;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.form-success p {
  color: var(--steel);
  font-size: 0.95rem;
  line-height: 1.7;
}

.form-success .checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success .checkmark svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Section Divider (gold line that grows) --- */
.section-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-line.visible {
  width: 120px;
}

/* --- Footer --- */
.footer {
  text-align: center;
  padding: 4rem 2rem;
  border-top: 1px solid var(--border);
}

.footer p {
  font-size: 0.75rem;
  color: var(--steel);
  letter-spacing: 0.1em;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-title-bg h1 {
    font-size: clamp(4rem, 15vw, 8rem);
  }

  .hero-visual {
    right: 2%;
    height: 80vh;
    bottom: 0;
  }

  .hero-content {
    bottom: 8%;
    max-width: 380px;
  }

  .trilogy-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .journey-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .journey-image {
    max-height: 400px;
    aspect-ratio: 16/9;
  }

  /* ─── Navigation ─── */
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    /* fixed so it covers the full viewport */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw !important;
    height: 100vh !important;
    background-color: var(--bg-primary) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 7rem 2rem 3rem;
    /* top padding accounts for navbar height */
    gap: 1.8rem;
    z-index: 999;
    /* below navbar toggle (z-index 1001) but above page content */
    justify-content: flex-start;
    align-items: flex-start;
  }

  /* Instagram link inside the open mobile menu */
  .nav-links.open .nav-mobile-instagram {
    display: flex !important;
    /* override inline display:none */
    align-items: center;
    gap: 0.7rem;
    color: var(--steel);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
    width: 100%;
    text-decoration: none;
    transition: color 0.3s;
  }

  .nav-links.open .nav-mobile-instagram:hover {
    color: var(--text-primary);
  }

  .nav-links.open .nav-mobile-instagram svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* Always hide nav-end (desktop Instagram / right-side items) */
  .nav-end {
    display: none;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
    /* above the open menu overlay */
    position: relative;
  }

  /* Brand: absolutely centered in navbar */
  .nav-inner {
    position: relative;
  }

  .nav-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 1001;
  }

  .nav-brand img {
    height: 42px;
  }
}

@media (max-width: 768px) {

  .section {
    padding: 5rem 1.5rem;
  }

  /* ─── Hero: full mobile redesign ─── */
  /*
    On mobile the hero switches from an absolute-positioned composition
    to a normal flow layout that stacks vertically:
      1. Titles (top)
      2. Watch image (center, contained)
      3. Text + CTA (bottom)
  */
  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100svh;
    padding-top: 90px;
    overflow: hidden;
  }

  .hero-title-bg {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    padding: 0 0.5rem;
    z-index: 1;
    overflow: visible;
    text-align: center;
  }

  .hero-title-bg h1 {
    font-size: clamp(1.4rem, 9.1vw, 3rem);
    letter-spacing: -0.03em;
    line-height: 0.95;
    white-space: nowrap;
  }

  .hero-title-bg h1.outline {
    margin-left: 0;
    margin-top: 0.15rem;
  }

  /* Watch image: normal flow, centered, constrained */
  .hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    margin-top: -4rem; /* Brings watch up to overlap title and reach navbar */
    margin-bottom: 2rem; /* Space between watch and the paragraph below */
    opacity: 1;
  }

  .hero-watch-img {
    height: auto;
    width: 65%;
    max-width: 250px;
    filter: drop-shadow(-10px 20px 40px rgba(0, 0, 0, 0.16));
  }

  /* Text + CTA: normal flow below the watch */
  .hero-content {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 1.2rem 1.5rem 2.5rem;
    max-width: 100%;
    background: none;
    z-index: 3;
  }

  .hero-sub {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta {
    font-size: 0.65rem;
    padding: 0.85rem 1.8rem;
    width: 100%;
    justify-content: center;
  }

  /* ─── Misc ─── */
  .form-row {
    grid-template-columns: 1fr;
  }

  .journey-stats {
    gap: 2rem;
  }
}


/* --- Reduced Motion Fallback --- */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --- Removed Custom Cursor Override --- */

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-cursor .cursor-text {
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-size: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s, font-size 0.3s;
}

.custom-cursor.view-mode {
  width: 72px;
  height: 72px;
  background: var(--text-primary);
}

.custom-cursor.view-mode .cursor-text {
  font-size: 0.65rem;
  opacity: 1;
}

.custom-cursor.zoom-mode {
  width: 60px;
  height: 60px;
  background: transparent;
  border: 1px solid var(--gold);
}

.custom-cursor.zoom-mode::before,
.custom-cursor.zoom-mode::after {
  content: "";
  position: absolute;
  background: var(--gold);
}

.custom-cursor.zoom-mode::before {
  width: 12px;
  height: 1px;
}

.custom-cursor.zoom-mode::after {
  width: 1px;
  height: 12px;
}

/* ==========================================================================
   THE CALIBRE SECTION (HOMEPAGE REDESIGN UPGRADE)
   ========================================================================== */
.calibre {
  background: var(--bg-primary);
  padding: 4rem 2rem 8rem;
}

.calibre-header {
  max-width: 1400px;
  margin: 0 auto 3.5rem;
}

.calibre-header .calibre-description {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 1.5rem;
  max-width: 840px;
}

.calibre-body {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .calibre-body {
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
  }
}

.calibre-tech-column {
  display: flex;
  flex-direction: column;
}

.calibre-tech-column .calibre-tech-grid {
  margin-top: 0;
  margin-bottom: 2rem;
}

/* Movement Caseback Visual (Left Column) */
.calibre-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.atelier-visual-frame {
  position: relative;
  width: 100%;
  max-width: 580px;
  aspect-ratio: 16/10;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  background: var(--bg-secondary);
}

.atelier-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.atelier-visual-frame:hover .atelier-main-img {
  transform: scale(1.05);
}

.atelier-visual-caption {
  width: 100%;
  max-width: 580px;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  opacity: 0.85;
}

.atelier-caption-dot {
  width: 4px;
  height: 4px;
  background-color: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.atelier-caption-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-primary);
}

.atelier-caption-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.65rem;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Content & Typography (Right Column) */
.calibre-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calibre-description {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 1.5rem;
  max-width: 600px;
}

/* Technical Bento Grid */
.calibre-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 3rem 0;
}

.tech-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.8rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.tech-card:hover {
  background: var(--bg-secondary);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.tech-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--steel);
  font-weight: 600;
}

.tech-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.tech-detail {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-top: 0.2rem;
}

.calibre-atelier-note {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--steel);
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
  line-height: 1.5;
}

/* ==========================================================================
   HORIZONTAL SCROLL SHOWCASE (COLLECTION REDESIGN)
   ========================================================================== */
.horizontal-scroll-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background: var(--bg-primary);
}

.horizontal-track {
  display: flex;
  flex-wrap: nowrap;
  height: 100vh;
  width: 400vw;
  /* 4 slides * 100vw */
  will-change: transform;
}

.horizontal-slide {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

/* Slide 0: Intro */
.slide-intro {
  background: radial-gradient(circle at 80% 20%, var(--bg-secondary) 0%, var(--bg-primary) 70%);
  padding: 0 5%;
  justify-content: flex-start;
}

.slide-intro-content {
  max-width: 860px;
  z-index: 5;
  text-align: left;
}

.slide-main-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  line-height: 0.95;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: -2px;
  margin: 1.5rem 0;
  white-space: nowrap;
}

.slide-intro-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: 3rem;
}

/* Scroll down indicator */
.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.indicator-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.indicator-arrow {
  display: flex;
  align-items: center;
  animation: bounceRight 1.5s infinite alternate;
}

.indicator-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
}

@keyframes bounceRight {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(8px);
  }
}

/* Slide Background Massive Numbers */
.slide-bg-num {
  position: absolute;
  bottom: 0%;
  left: 3%;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: min(40vw, 420px);
  line-height: 0.8;
  color: rgba(0, 0, 0, 0.012);
  -webkit-text-stroke: 1.5px rgba(26, 26, 24, 0.04);
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

/* Slide Watch Layout Grid */
.slide-watch-grid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  z-index: 5;
}

@media (min-width: 992px) {
  .slide-watch-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
  }
}

/* Watch Image Showcase (Left) */
.watch-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.watch-img-container {
  position: relative;
  width: min(80vw, 360px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0) 70%);
}

.floating-watch {
  width: 85%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.15));
  animation: floatWatch 4s ease-in-out infinite;
  will-change: transform;
}

@keyframes floatWatch {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Watch Details Info (Right) */
.watch-info {
  display: flex;
  flex-direction: column;
}

.watch-ref {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.watch-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.95;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: -2px;
}

.watch-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0.5rem 0 1.5rem;
}

.watch-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.2rem;
  max-width: 500px;
}

/* Mini specifications parameter block */
.watch-mini-specs {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 3rem;
  max-width: 400px;
}

.mini-spec {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.mini-spec span:first-child {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

.mini-spec span:last-child {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Action Explore CTA Link */
.watch-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  position: relative;
  width: fit-content;
  padding-bottom: 4px;
}

.watch-explore-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}

.watch-explore-btn:hover::after {
  width: 100%;
}

.watch-explore-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  transition: transform 0.3s;
}

.watch-explore-btn:hover svg {
  transform: translateX(6px);
}

/* Specific themes for watch slides */
.watch-wayfarer {
  background: radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.8) 0%, var(--bg-primary) 60%);
}

.watch-dpt {
  background: radial-gradient(circle at 10% 80%, rgba(154, 125, 74, 0.03) 0%, var(--bg-primary) 60%);
}

.watch-rover {
  background: radial-gradient(circle at 10% 80%, rgba(136, 136, 128, 0.03) 0%, var(--bg-primary) 60%);
}

/* Embedded Footer at bottom of Rover */
.slide-footer-embedded {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 4rem;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  color: rgba(26, 26, 24, 0.35);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {

  /* ─── Collection page: disable GSAP horizontal scroll, go vertical ─── */

  /* Override the JS-set container styles */
  .horizontal-scroll-container {
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
    overflow-x: hidden !important;
  }

  /* Override the JS-set track styles — the GSAP transform will still be applied
     but we un-pin and reflow the slides vertically */
  .horizontal-track {
    display: block !important;
    /* vertical flow instead of flex row */
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    /* kill GSAP horizontal translate */
    will-change: auto !important;
  }

  /* Each slide becomes a full vertical section */
  .horizontal-slide {
    width: 100% !important;
    height: auto !important;
    min-height: 100svh;
    flex-shrink: unset;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 6rem;
    padding-bottom: 4rem;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
  }

  /* Intro slide */
  .slide-intro {
    padding: 6rem 1.5rem 3rem;
    align-items: flex-start;
    justify-content: center;
    min-height: 100svh;
    height: auto;
  }

  .slide-intro-content {
    max-width: 100%;
    overflow: hidden;
    z-index: 5;
  }

  /* Fix "THE TRILOGY" title overflow */
  .slide-main-title {
    font-size: clamp(3rem, 17vw, 5rem);
    letter-spacing: -1px;
    word-break: break-word;
    white-space: normal;
    line-height: 0.95;
  }

  .slide-intro-desc {
    font-size: 0.95rem;
    max-width: 100%;
  }

  /* Watch slides layout: image top, info below */
  .slide-watch-grid {
    width: 100%;
    display: flex !important;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1.5rem;
    align-items: flex-start;
  }

  .watch-visual {
    width: 100%;
    justify-content: center;
  }

  .watch-img-container {
    width: min(70vw, 260px);
    margin: 0 auto;
  }

  .watch-info {
    width: 100%;
    overflow: hidden;
  }

  /* Fix "WAYFARER" and other watch names from overflowing */
  .watch-name {
    font-size: clamp(1.5rem, 7.8vw, 3rem) !important;
    letter-spacing: -0.05em !important;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
  }

  .watch-desc {
    max-width: 100%;
  }

  .watch-mini-specs {
    max-width: 100%;
    margin-bottom: 1.8rem;
  }

  /* Big background numbers — scale down */
  .slide-bg-num {
    font-size: 40vw;
    bottom: -2%;
    left: 0;
    opacity: 0.6;
  }

  /* Hide embedded rover footer on mobile */
  .slide-footer-embedded {
    display: none;
  }
}

/* ============================================================
   STUDIO NOTES — Atelier Principles / Pillars
   ============================================================ */
.st-principles {
  padding: 8rem 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.st-principles-header {
  max-width: 1400px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.st-principles-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.st-principles-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.st-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.st-pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.8rem 2.2rem;
  border-radius: 4px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.st-pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.st-pillar-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.st-pillar-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
}

.st-pillar-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .st-principles {
    padding: 5rem 1.5rem;
  }

  .st-pillar-card {
    padding: 2rem 1.5rem;
  }
}

/* --- Closing CTA Section --- */
.closing-cta {
  text-align: center;
  border-top: 1px solid var(--border);
  padding: 10rem 2rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

/* Easter-egg plane flyby */
.cta-plane {
  position: absolute;
  left: 0;
  top: 45%;
  width: 92px;
  height: auto;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  will-change: transform, opacity;
  filter: saturate(0.85) drop-shadow(0 8px 14px rgba(26, 26, 24, 0.12));
}

@media (max-width: 768px) {
  .cta-plane {
    width: 64px;
  }
}

/* Disabled to bypass Brave Shields spoofing from hiding the plane
@media (prefers-reduced-motion: reduce) {
  .cta-plane {
    display: none;
  }
}
*/

.closing-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(154, 125, 74, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.closing-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.closing-cta .section-title {
  margin-bottom: 1.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -2px;
  line-height: 1;
}

.closing-cta-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 3.5rem;
}

.closing-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  align-items: center;
}

.closing-cta .watch-explore-btn {
  font-family: 'Space Grotesk', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 0.4rem;
  transition: gap 0.3s;
  cursor: pointer;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
}

.closing-cta .watch-explore-btn:hover {
  gap: 1.2rem;
}

.closing-cta-secondary {
  display: block;
  margin-top: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--steel);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.closing-cta-secondary:hover {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .closing-cta {
    padding: 6rem 1.5rem;
  }

  .closing-cta-buttons {
    flex-direction: column;
    gap: 1.5rem;
  }

  .closing-cta .hero-cta {
    width: 100%;
    justify-content: center;
  }
}