/* ============================================================
   LOGEUIL — Luxury Watch Brand
   Aesthetic: Ultra-dark, editorial, archival luxury
   Fonts: Cormorant Garamond (display) + Josefin Sans (body)
   ============================================================ */


/* ── Custom Properties ── */
:root {
  --bg:           #0b0a08;
  --bg-mid:       #100f0d;
  --text:         #e8e3d8;
  --text-muted:   #7a7469;
  --text-dim:     #4a4640;
  --gold:         #c0bdb8;
  --gold-light:   #e0dcd6;
  --gold-dim:     rgba(192, 189, 184, 0.15);
  --line:         rgba(192, 189, 184, 0.12);
  --font-display: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  --font-body:    'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
}

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

html {
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

#cursor {
  position: fixed;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

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

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

/* ── Grain Overlay ── */
.grain {
  position: fixed;
  inset: -200px;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grain-shift 0.5s steps(2) infinite;
}

@keyframes grain-shift {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-2px, 1px); }
  50%  { transform: translate(1px, -2px); }
  75%  { transform: translate(2px, 1px); }
  100% { transform: translate(-1px, 2px); }
}

/* ── Custom Cursor ── */

/* ── Loader ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-brand {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.6em;
  color: var(--text);
  text-transform: uppercase;
}

.loader-track {
  width: 200px;
  height: 1px;
  background: var(--text-dim);
  position: relative;
  overflow: hidden;
}

#loader-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.15s ease;
}

#loader-percent {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 700;
  padding: 2rem 3.5vw;
  mix-blend-mode: normal;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 3.5vw;
  right: 3.5vw;
  height: 1px;
  background: var(--line);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.45em;
  color: var(--text);
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-logo:hover { color: var(--gold-light); }

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-burger { display: none; }
.mobile-menu { display: none; }

.nav-links a {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color 0.3s;
}

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

/* ── Hero Standalone ── */
.hero-standalone {
  position: relative;
  width: 100%;
  height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8vw;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  max-width: 55vw;
}

.hero-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeSlideUp 1s ease 0.5s forwards;
}

.hero-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4.5rem, 10vw, 13rem);
  line-height: 0.92;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

.hero-word {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-word:nth-child(1) { animation-delay: 0.7s; }
.hero-word:nth-child(2) { animation-delay: 0.95s; }

.hero-heading .italic {
  font-style: italic;
  color: var(--gold);
}

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.85rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeSlideUp 1s ease 1.3s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 8vw;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 1s ease 1.8s forwards;
}

.scroll-hint-text {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.scroll-hint-line {
  width: 60px;
  height: 1px;
  background: var(--text-dim);
  position: relative;
  overflow: hidden;
}

.scroll-hint-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: lineSlide 2s ease-in-out 2s infinite;
}

@keyframes lineSlide {
  0%   { left: -100%; }
  50%  { left: 100%; }
  100% { left: 100%; }
}

.hero-brand-mark {
  position: absolute;
  right: -4vw;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(6rem, 14vw, 18rem);
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

/* ── Vertical gold line (hero) ── */
.hero-standalone::before {
  content: '';
  position: absolute;
  right: 40vw;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line) 30%, var(--line) 70%, transparent);
}

/* ── Canvas Wrap ── */
.canvas-wrap {
  position: fixed;
  inset: 0;
  z-index: 10;
  clip-path: circle(0% at 50% 50%);
  will-change: clip-path;
}

#canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Dark Overlay ── */
#dark-overlay {
  position: fixed;
  inset: 0;
  z-index: 15;
  background: rgba(8, 7, 5, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: none;
}

/* ── Marquee ── */
.marquee-wrap {
  position: fixed;
  bottom: 6vh;
  left: 0;
  right: 0;
  z-index: 20;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 11vw, 9rem);
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(185, 151, 91, 0.08);
  will-change: transform;
}

/* ── Scroll Container ── */
#scroll-container {
  position: relative;
  height: 900vh;
}

/* ── Scroll Sections ── */
.scroll-section {
  position: absolute;
  left: 0;
  right: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  z-index: 30;
  pointer-events: none;
}

.scroll-section.section-cta {
  pointer-events: auto;
}

/* Side alignment: text in outer 40% zones */
.align-left {
  padding-left: 5vw;
  padding-right: 55vw;
}

.align-right {
  padding-left: 55vw;
  padding-right: 5vw;
}

.align-left .section-inner,
.align-right .section-inner {
  max-width: 38vw;
}

/* ── Section Content ── */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  opacity: 0;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 6rem);
  line-height: 1.0;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
  opacity: 0;
}

.section-body {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  opacity: 0;
}

/* Gold accent line before section-label */
.section-inner::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

/* ── Stats Section ── */
.section-stats {
  z-index: 50;
  padding: 0 10vw;
  justify-content: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4vw;
  width: 100%;
  max-width: 1100px;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
}

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-suffix {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  align-self: flex-end;
  padding-bottom: 0.4rem;
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Thin gold line above each stat */
.stat::before {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin-bottom: 0.5rem;
}

/* ── CTA Section ── */
.section-cta .section-heading {
  font-size: clamp(3.5rem, 6vw, 7.5rem);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2.5rem;
  opacity: 0;
}

.cta-button {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--text);
  padding: 1.1rem 2.5rem;
  transition: background 0.3s, color 0.3s, letter-spacing 0.3s;
  width: fit-content;
}

.cta-button:hover {
  background: var(--gold-light);
  letter-spacing: 0.32em;
}

.cta-link {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color 0.3s;
  padding-left: 0.2rem;
}

.cta-link:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════
   HERITAGE PAGE
   ═══════════════════════════════════════════ */

#heritage-page {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: var(--bg);
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateY(100%);
  transition: transform 0.75s cubic-bezier(0.76, 0, 0.24, 1);
  visibility: hidden;
  padding-top: 88px; /* clear the fixed nav */
}

#heritage-page.open {
  transform: translateY(0);
  visibility: visible;
}

#heritage-close { display: none; }

/* ── Progress spine ── */
.hp-spine {
  position: fixed;
  left: 3vw;
  top: 50%;
  transform: translateY(-50%);
  height: 35vh;
  z-index: 650;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#heritage-page.open .hp-spine { opacity: 1; }

.hp-spine-track {
  position: relative;
  width: 1px;
  flex: 1;
  background: var(--text-dim);
}

.hp-spine-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--text-muted);
  transition: height 0.1s linear;
}

.hp-spine-year {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ── Chapters ── */
.hp-chapter {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 14vh 12vw 14vh 14vw;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

/* Alternate chapters push content right */
.hp-chapter--alt .hp-content {
  margin-left: auto;
}

.hp-chapter--intro {
  min-height: 90vh;
  padding-top: 8vh;
}

.hp-chapter--closing {
  background: var(--bg-mid);
}

/* ── Ghost year ── */
.hp-ghost {
  position: absolute;
  right: -2vw;
  bottom: -5vh;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(12rem, 28vw, 36rem);
  line-height: 0.85;
  color: var(--text);
  opacity: 0;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  transition: opacity 1.6s ease;
}

.hp-chapter--alt .hp-ghost { right: auto; left: -2vw; }
.hp-chapter--intro .hp-ghost { font-size: clamp(8rem, 20vw, 28rem); opacity: 0; }

.hp-chapter.hp-animated .hp-ghost { opacity: 0.03; }

/* ── Content ── */
.hp-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

/* ── Eyebrow ── */
.hp-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

/* ── Chapter meta ── */
.hp-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.hp-year-tag {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.hp-rule {
  flex: 0 0 40px;
  height: 1px;
  background: var(--text-dim);
}

.hp-chapter-name {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ── Headline ── */
.hp-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 6.5rem);
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
}

.hp-italic { font-style: italic; }

/* ── Word animation atoms ── */
.hp-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(55px);
  transition:
    opacity  0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 0.13s + 0.25s);
}

.hp-chapter.hp-animated .hp-word {
  opacity: 1;
  transform: translateY(0);
}

/* ── Reveal elements ── */
.hp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--d, 0.4s);
}

.hp-chapter.hp-animated .hp-reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ── Body text ── */
.hp-lead {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  line-height: 2.0;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.hp-body {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.85rem;
  line-height: 2.0;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.hp-body em { font-style: italic; color: var(--text); }

/* ── Scroll cue ── */
.hp-cue {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 1rem;
}

.hp-cue-line {
  width: 50px;
  height: 1px;
  background: var(--text-dim);
  position: relative;
  overflow: hidden;
}

.hp-cue-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--text-muted);
  transform: translateX(-100%);
  animation: cue-sweep 2s ease-in-out 1.5s infinite;
}

@keyframes cue-sweep {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ── Blockquote ── */
.hp-blockquote {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.hp-blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.8vw, 2.6rem);
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hp-blockquote cite {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  font-style: normal;
  text-transform: uppercase;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 5vh 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.45em;
  color: var(--text);
}

.footer-meta {
  display: flex;
  gap: 3rem;
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hp-chapter { padding: 12vh 8vw 12vh 8vw; }
  .hp-chapter--alt .hp-content { margin-left: 0; }
  .hp-ghost { font-size: 22vw; }
  .hp-spine { display: none; }
  .site-footer { flex-direction: column; gap: 2rem; text-align: center; }
  .footer-meta { flex-direction: column; gap: 0.8rem; align-items: center; }
}

/* ═══════════════════════════════════════════
   COLLECTION PAGE
   ═══════════════════════════════════════════ */

#collection-page {
  position: fixed;
  inset: 0;
  z-index: 603;
  background: var(--bg);
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 88px;
  display: none;
}

#collection-page.open {
  display: block;
  animation: cpSlideIn 0.75s cubic-bezier(0.76, 0, 0.24, 1) both;
}

/* ── Shared atoms ── */
.col-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(55px);
  transition:
    opacity  0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 0.14s + 0.3s);
}
#collection-page.open .col-word { opacity: 1; transform: translateY(0); }

.col-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: var(--d, 0.4s);
}
#collection-page.open .col-reveal { opacity: 1; transform: translateY(0); }

.col-italic { font-style: italic; }

/* ── Cinematic intro ── */
.col-intro {
  position: relative;
  min-height: calc(100vh - 88px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 8vw 10vh;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.col-intro-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 75% 40%, rgba(192,189,184,0.04) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 20% 70%, rgba(80,70,55,0.06) 0%, transparent 60%);
}

.col-intro-bg::before {
  content: 'LOGEUIL';
  position: absolute;
  right: -5vw;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(10rem, 22vw, 30rem);
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.018);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.col-intro-content {
  position: relative;
  z-index: 2;
  max-width: 70vw;
}

.col-intro-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.col-intro-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4.5rem, 9vw, 12rem);
  line-height: 0.95;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.col-intro-body {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.col-intro-cue {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.col-cue-line {
  width: 60px;
  height: 1px;
  background: var(--text-dim);
  position: relative;
  overflow: hidden;
}
.col-cue-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--text-muted);
  transform: translateX(-100%);
  animation: cue-sweep 2s ease-in-out 1.5s infinite;
}

.col-intro-index {
  position: absolute;
  right: 8vw;
  bottom: 10vh;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: right;
}
.col-intro-index span {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ── Watch sections ── */
.col-ws {
  display: grid;
  grid-template-columns: 62% 38%;
  min-height: 100vh;
  border-bottom: 1px solid var(--line);
}

.col-ws--alt {
  grid-template-columns: 38% 62%;
}

/* Stage: the watch image side */
.col-ws-stage {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 3vw;
}

.col-ws-stage--1 { background: linear-gradient(145deg, #0e0d0b 0%, #161410 50%, #0b0a08 100%); }
.col-ws-stage--2 { background: linear-gradient(145deg, #0c0c0a 0%, #141310 50%, #0b0a08 100%); }
.col-ws-stage--3 { background: linear-gradient(145deg, #0f0d0a 0%, #181512 50%, #0b0a08 100%); }

.col-ws-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,189,184,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.col-ws-img {
  position: relative;
  z-index: 2;
  width: 88%;
  max-height: 88vh;
  object-fit: contain;
  filter: drop-shadow(0 30px 80px rgba(0,0,0,0.7)) drop-shadow(0 0 40px rgba(192,189,184,0.04));
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
}

.col-ws:hover .col-ws-img {
  transform: scale(1.03) translateY(-1.5%);
  filter: drop-shadow(0 40px 100px rgba(0,0,0,0.65)) drop-shadow(0 0 60px rgba(192,189,184,0.07));
}

.col-ws-ghost {
  position: absolute;
  bottom: -4%;
  right: -2%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(8rem, 16vw, 22rem);
  line-height: 0.85;
  color: rgba(255,255,255,0.022);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  transition: color 0.6s ease;
}
.col-ws:hover .col-ws-ghost { color: rgba(255,255,255,0.042); }

/* Info side */
.col-ws-info {
  padding: 8vh 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  border-left: 1px solid var(--line);
}

.col-ws--alt .col-ws-info {
  border-left: none;
  border-right: 1px solid var(--line);
}

.col-ws-header {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.col-ws-ref {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.col-ws-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 4.5vw, 5.5rem);
  line-height: 1.0;
  color: var(--text);
  letter-spacing: -0.01em;
}

.col-ws-tagline {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.col-ws-desc {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.82rem;
  line-height: 2.0;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.col-ws-specs {
  display: flex;
  flex-direction: column;
}

.col-spec {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(192,189,184,0.06);
}
.col-spec:first-child { border-top: 1px solid rgba(192,189,184,0.06); }

.col-spec-label {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.col-spec-value {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-align: right;
}

.col-spec--prix .col-spec-label,
.col-spec--prix .col-spec-value {
  color: var(--text);
}

.col-ws-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  color: var(--text-muted);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.35s, gap 0.35s;
  padding-top: 0.5rem;
  width: fit-content;
}
.col-ws-cta:hover { color: var(--text); gap: 1.6rem; }
.col-ws-cta svg { flex-shrink: 0; transition: transform 0.35s; }
.col-ws-cta:hover svg { transform: translateX(4px); }

@media (max-width: 900px) {
  .col-intro-title { font-size: clamp(3.5rem, 12vw, 7rem); }
  .col-ws, .col-ws--alt { grid-template-columns: 1fr; min-height: auto; }
  .col-ws-stage { min-height: 60vw; }
  .col-ws-info { border-left: none; border-right: none; border-top: 1px solid var(--line); }
  .col-ws--alt .col-ws-info { border-right: none; }
  .col-ws--alt .col-ws-stage { order: -1; }
  .col-intro-index { display: none; }
}

/* ═══════════════════════════════════════════
   ATELIER PAGE
   ═══════════════════════════════════════════ */

#atelier-page {
  position: fixed;
  inset: 0;
  z-index: 602;
  background: var(--bg);
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 88px;
  display: none;
}

#atelier-page.open {
  display: block;
  animation: cpSlideIn 0.75s cubic-bezier(0.76, 0, 0.24, 1) both;
}

/* ── Shared atoms ── */
.at-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.at-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.at-section-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: var(--text-dim);
}

.at-rule {
  flex: 0 0 40px;
  height: 1px;
  background: var(--text-dim);
}

.at-section-name {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.at-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 4.5vw, 5.5rem);
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
}

.at-headline--center { text-align: center; }

.at-italic { font-style: italic; }

.at-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity  0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 0.13s + 0.25s);
}

#atelier-page.open .at-word {
  opacity: 1;
  transform: translateY(0);
}

.at-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0.4s);
}

#atelier-page.open .at-reveal {
  opacity: 1;
  transform: translateY(0);
}

.at-body {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.85rem;
  line-height: 2.0;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

/* ── Hero ── */
.at-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 88px);
  border-bottom: 1px solid var(--line);
}

.at-hero-visual {
  position: relative;
  background: var(--bg-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.at-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 40% 50%, rgba(192,189,184,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 70% 30%, rgba(100,90,75,0.06) 0%, transparent 60%);
}

.at-visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(192,189,184,0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.at-visual-ring--1 { width: 70%; padding-bottom: 70%; margin-top: -35%; margin-left: -35%; border-color: rgba(192,189,184,0.08); }
.at-visual-ring--2 { width: 50%; padding-bottom: 50%; margin-top: -25%; margin-left: -25%; }
.at-visual-ring--3 { width: 30%; padding-bottom: 30%; margin-top: -15%; margin-left: -15%; border-color: rgba(192,189,184,0.04); }
.at-visual-ring--lg {
  position: absolute;
  width: 100%;
  padding-bottom: 100%;
  top: 50%; left: 50%;
  margin-top: -50%; margin-left: -50%;
  border-radius: 50%;
  border: 1px solid rgba(192,189,184,0.05);
}

.at-visual-tick-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.at-dial-svg {
  width: min(65%, 320px);
  height: auto;
  opacity: 0.9;
}

.at-hero-content {
  padding: 8vh 8vw 8vh 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.at-hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 5.5vw, 6.5rem);
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
}

.at-hero-body {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  line-height: 2.0;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  max-width: 480px;
}

/* ── Generic section ── */
.at-section {
  border-bottom: 1px solid var(--line);
}

/* ── Split section ── */
.at-section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.at-visual {
  position: relative;
  overflow: hidden;
  background: var(--bg-mid);
}

.at-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8vh 6vw;
}

.at-img-frame {
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.at-img-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.at-img-art--bench {
  background: url('../workshop.png') center center / cover no-repeat;
}

/* Subtle dark gradient so caption stays readable over the photo */
.at-img-art--bench::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,10,8,0.65) 0%, transparent 50%);
}

.at-img-art--bench::after { content: none; }

.at-img-caption {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.at-text {
  padding: 10vh 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Process section ── */
.at-section--process {
  padding: 12vh 8vw;
}

.at-process-header {
  text-align: center;
  margin-bottom: 8vh;
}

.at-process-header .at-eyebrow {
  display: inline-block;
  margin-bottom: 2rem;
}

.at-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3vw;
}

.at-step {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.at-step-visual {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.2rem;
}

.at-step-visual--conception {
  background: linear-gradient(145deg, #0f0e0c 0%, #1a1710 60%, #0f0d09 100%);
}
.at-step-visual--conception::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 15%;
  right: 15%;
  bottom: 20%;
  border: 1px solid rgba(192,189,184,0.07);
  transform: rotate(15deg);
}
.at-step-visual--conception::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(192,189,184,0.12), transparent);
}

.at-step-visual--fabrication {
  background: linear-gradient(145deg, #100f0d 0%, #1c1a14 50%, #0e0c0a 100%);
}
.at-step-visual--fabrication::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 30%;
  width: 40%;
  aspect-ratio: 1;
  border: 1px solid rgba(192,189,184,0.08);
  border-radius: 50%;
}
.at-step-visual--fabrication::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 30%;
  width: 40%;
  aspect-ratio: 1;
  border: 1px solid rgba(192,189,184,0.04);
  border-radius: 50%;
  transform: scale(1.4) translate(10%, 10%);
}

.at-step-visual--finishing {
  background: linear-gradient(145deg, #0c0b0a 0%, #171511 60%, #0c0b09 100%);
}
.at-step-visual--finishing::before {
  content: '';
  position: absolute;
  inset: 15%;
  border-top: 1px solid rgba(192,189,184,0.09);
  border-left: 1px solid rgba(192,189,184,0.09);
  transform: rotate(-20deg);
}

.at-step-visual--assembly {
  background: linear-gradient(145deg, #0f0e0b 0%, #1b1914 50%, #100f0c 100%);
}
.at-step-visual--assembly::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 25%;
  right: 25%;
  bottom: 25%;
  border: 1px solid rgba(192,189,184,0.06);
  border-radius: 50%;
}
.at-step-visual--assembly::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  background: rgba(192,189,184,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.at-step-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(192,189,184,0.25);
  position: relative;
  z-index: 2;
}

.at-step-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.at-step-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--text);
}

.at-step-body {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.78rem;
  line-height: 1.85;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}

.at-step-stat {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  text-transform: uppercase;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

/* ── Standard section ── */
.at-section--standard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.at-standard-visual {
  position: relative;
  background: var(--bg-mid);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8vh 6vw;
}

.at-standard-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(100,85,65,0.08) 0%, transparent 70%);
}

.at-standard-quote {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

.at-standard-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.2vw, 2.2rem);
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.at-standard-quote cite {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  font-style: normal;
  text-transform: uppercase;
}

.at-standard-content {
  padding: 10vh 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.at-materials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  margin-top: 1rem;
}

.at-material {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.at-material-name {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.at-material-value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

/* ── People section ── */
.at-section--people {
  padding: 12vh 8vw;
}

.at-people-header {
  max-width: 640px;
  margin-bottom: 8vh;
}

.at-people-header .at-body {
  max-width: 560px;
}

.at-people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3vw;
}

.at-portrait {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.at-portrait-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
}

.at-portrait-img--1 {
  background:
    radial-gradient(ellipse 80% 60% at 40% 30%, rgba(100,85,65,0.12) 0%, transparent 60%),
    linear-gradient(170deg, #151310 0%, #0e0d0b 50%, #13110e 100%);
}
.at-portrait-img--1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(11,10,8,0.6), transparent);
}

.at-portrait-img--2 {
  background:
    radial-gradient(ellipse 60% 70% at 60% 40%, rgba(80,75,65,0.1) 0%, transparent 60%),
    linear-gradient(170deg, #121110 0%, #0f0e0c 50%, #111008 100%);
}
.at-portrait-img--2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(11,10,8,0.6), transparent);
}

.at-portrait-img--3 {
  background:
    radial-gradient(ellipse 70% 50% at 35% 45%, rgba(90,80,60,0.1) 0%, transparent 55%),
    linear-gradient(170deg, #141210 0%, #100f0d 50%, #141009 100%);
}
.at-portrait-img--3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(11,10,8,0.6), transparent);
}

/* Subtle grain on portrait images */
.at-portrait-img--1::before,
.at-portrait-img--2::before,
.at-portrait-img--3::before {
  content: '';
  position: absolute;
  inset: 0;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.04;
  z-index: 1;
}

.at-portrait-caption {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.at-portrait-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--text);
}

.at-portrait-role {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .at-hero { grid-template-columns: 1fr; }
  .at-hero-visual { min-height: 40vh; }
  .at-section--split { grid-template-columns: 1fr; }
  .at-process-grid { grid-template-columns: 1fr 1fr; gap: 4vw; }
  .at-section--standard { grid-template-columns: 1fr; }
  .at-people-grid { grid-template-columns: 1fr; }
  .at-materials { grid-template-columns: 1fr; }
  .at-section--process,
  .at-section--people { padding: 8vh 6vw; }
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════ */

#contact-page {
  position: fixed;
  inset: 0;
  z-index: 601;
  background: var(--bg);
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 88px;
  display: none;
}

#contact-page.open {
  display: block;
  animation: cpSlideIn 0.75s cubic-bezier(0.76, 0, 0.24, 1) both;
}

@keyframes cpSlideIn {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 88px);
}

.contact-col {
  padding: 10vh 7vw;
}

.contact-col--info {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.5vh;
}

.contact-col--map {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.contact-eyebrow {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.contact-entry {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-label {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.contact-value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.6rem);
  color: var(--text);
  line-height: 1.35;
  text-decoration: none;
}

.contact-value--link { transition: color 0.3s; }
.contact-value--link:hover { color: var(--text-muted); }

.contact-note {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.contact-map-label {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.contact-map-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  overflow: hidden;
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: invert(0.88) hue-rotate(180deg) saturate(0.25) brightness(0.85);
}

.contact-map-link {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-map-link:hover { color: var(--text); }

@media (max-width: 768px) {
  .contact-body { grid-template-columns: 1fr; }
  .contact-col--info { border-right: none; border-bottom: 1px solid var(--line); }
}

/* ── Animations ── */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  #scroll-container { height: 600vh; }

  .align-left,
  .align-right {
    padding: 3rem 6vw;
    align-items: flex-end;
  }

  .align-left .section-inner,
  .align-right .section-inner {
    max-width: 100%;
    background: rgba(11, 10, 8, 0.85);
    padding: 1.5rem;
    backdrop-filter: blur(8px);
  }

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

  .hero-standalone::before { display: none; }
  .hero-brand-mark { display: none; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: flex; }

  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .nav-burger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--text);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }

  .nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 690;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s;
  }

  .mobile-menu a:hover { color: var(--text); }

  .marquee-text { font-size: 14vw; }
}
