:root {
  --ink: #14110d;
  --charcoal: #0b0c0c;
  --charcoal-soft: #141413;
  --paper: #f4eee2;
  --paper-deep: #e7ddca;
  --muted: #6c655a;
  --line: rgba(20, 17, 13, 0.16);
  --line-light: rgba(255, 255, 255, 0.14);
  --white: #ffffff;
  --burgundy: #851827;
  --burgundy-dark: #66111c;
  --brass: #b08d57;
  --brass-soft: #cda86d;
  --steel: #b9b6ae;
  --radius: 4px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  --shadow-soft: 0 18px 48px rgba(28, 18, 8, 0.14);
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body: "Jost", "Helvetica Neue", Arial, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
  letter-spacing: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brass);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: var(--brass-soft);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  min-height: 84px;
  padding: 0 clamp(20px, 4.6vw, 56px);
  color: var(--white);
  background: rgba(11, 12, 12, 0.66);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(18px);
  transition: background 280ms ease, min-height 280ms ease;
}

.site-header[data-elevated="true"] {
  min-height: 72px;
  background: rgba(11, 12, 12, 0.95);
}

.brand {
  display: inline-flex;
  width: 82px;
  min-height: 64px;
  align-items: center;
  justify-content: flex-start;
}

.monogram {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 70px;
  color: var(--burgundy);
  font-family: var(--display);
  font-size: 88px;
  font-weight: 600;
  line-height: 0.8;
}

.monogram-f,
.monogram-r {
  position: absolute;
  top: 0;
  display: block;
}

.monogram-f {
  left: 0;
}

.monogram-r {
  left: 21px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.4vw, 46px);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  transition: color 180ms ease;
}

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

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--brass-soft);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-action {
  justify-self: end;
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease,
    transform 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--burgundy);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--burgundy-dark);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  align-items: stretch;
  overflow: hidden;
  padding-top: 84px;
  background:
    radial-gradient(circle at 18% 12%, rgba(176, 141, 87, 0.12), transparent 46%),
    var(--charcoal);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 660px;
  padding: clamp(64px, 10vw, 132px) clamp(26px, 5vw, 76px);
}

h1 {
  max-width: 600px;
  font-size: clamp(58px, 8.6vw, 108px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.01em;
}

.hero-lede {
  max-width: 460px;
  margin: 28px 0 40px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(22px, 4vw, 52px);
  margin: clamp(40px, 6vw, 64px) 0 0;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
}

.hero-stats div {
  display: grid;
  gap: 6px;
}

.hero-stats dt {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.1;
}

.hero-media {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  animation: heroFloat 18s ease-in-out infinite alternate;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(100deg, rgba(11, 12, 12, 0.55) 0%, transparent 34%);
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
}

@keyframes heroFloat {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.6%, -1.4%, 0);
  }
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 26px;
  height: 44px;
  place-items: start center;
  padding-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--brass-soft);
  animation: scrollPulse 1.7s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
}

/* ---------- Film ---------- */
.film {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(420px, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line-light);
}

.film-copy {
  max-width: 520px;
}

.film-copy h2 {
  max-width: 480px;
  font-size: clamp(40px, 5.8vw, 70px);
  line-height: 1.02;
}

.film-copy p {
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.6;
}

.dial-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dial-control {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}

.dial-control:hover,
.dial-control:focus-visible,
.dial-control.is-active {
  border-color: rgba(205, 168, 109, 0.6);
  background: rgba(205, 168, 109, 0.12);
  color: var(--white);
}

.dial-swatch {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
}

.dial-white {
  background: #f5f0e7;
}
.dial-blue {
  background: #123453;
}
.dial-slate {
  background: #4a4741;
}
.dial-black {
  background: #090909;
}

.film-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: var(--shadow);
}

.film-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #050505;
}

.film-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.film-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    radial-gradient(rgba(0, 0, 0, 0.3) 1px, transparent 1px);
  background-size: 3px 3px, 4px 4px;
  background-position: 0 0, 1px 2px;
}

.film-frame::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 50% 46%, transparent 52%, rgba(0, 0, 0, 0.5) 100%);
}

.film-mark {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 22px;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
}

.film-mark .monogram {
  width: 36px;
  height: 44px;
  font-size: 54px;
  color: var(--brass-soft);
}

.film-mark .monogram-r {
  left: 13px;
}

.film-timecode {
  position: absolute;
  z-index: 3;
  top: 26px;
  right: 22px;
  padding: 6px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  letter-spacing: 0.2em;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(6px);
}

.film-progress {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.16);
}

.film-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--brass-soft);
  transition: width 200ms linear;
}

.film-toggle {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 18px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

@keyframes filmProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* ---------- Collection ---------- */
.collection {
  padding: clamp(72px, 9vw, 116px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 50% -4%, rgba(255, 255, 255, 0.85), transparent 44%),
    var(--paper);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 60px);
  text-align: center;
}

.section-heading h2,
.panel-copy h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
}

.section-heading p,
.panel-copy p {
  margin: 16px auto 0;
  max-width: 540px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.watch-grid {
  display: grid;
  max-width: 1360px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
  margin: 0 auto;
}

.watch-card {
  outline: none;
  transition: transform 200ms ease;
}

.watch-card:hover {
  transform: translateY(-4px);
}

.watch-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--paper-deep), #d8cbb2);
  transition: box-shadow 220ms ease;
}

.watch-card:focus-visible .watch-image,
.watch-card:hover .watch-image,
.watch-card.is-selected .watch-image {
  box-shadow: 0 0 0 1px rgba(133, 24, 39, 0.4), var(--shadow-soft);
}

.watch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.watch-ref {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  color: #2a2620;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  background: rgba(244, 238, 226, 0.86);
  backdrop-filter: blur(4px);
}

.watch-card.is-selected .watch-ref {
  color: var(--white);
  background: rgba(133, 24, 39, 0.92);
}

.watch-card-copy {
  padding: 22px 4px 0;
  text-align: center;
}

.watch-card-copy h3 {
  font-size: clamp(25px, 2.6vw, 32px);
  line-height: 1.1;
}

.watch-card-copy p {
  margin: 10px auto 14px;
  max-width: 230px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.watch-card-copy strong {
  display: block;
  margin-bottom: 18px;
  color: #423c35;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.link-button,
.text-link,
.footer-button {
  position: relative;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.link-button::after,
.text-link::after,
.footer-button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--burgundy);
  transform-origin: left;
  transition: transform 200ms ease;
}

.link-button:hover::after,
.link-button:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after,
.footer-button:hover::after,
.footer-button:focus-visible::after {
  transform: scaleX(0.7);
}

.section-dark .text-link::after {
  background: var(--brass-soft);
}

/* ---------- Showcase / In Detail ---------- */
.showcase {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 80% 0%, rgba(176, 141, 87, 0.1), transparent 40%),
    var(--paper-deep);
}

.model-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto clamp(34px, 4vw, 52px);
}

.model-tab {
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.model-tab:hover {
  border-color: var(--burgundy);
}

.model-tab.is-active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.showcase-layout {
  display: grid;
  max-width: 1200px;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  margin: 0 auto;
}

.showcase-visual {
  position: sticky;
  top: 104px;
}

.showcase-stage {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, #efe6d4, #d6c8ad 70%, #cabb9c);
  box-shadow: var(--shadow);
}

.showcase-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    object-position 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(20, 17, 13, 0.62);
  backdrop-filter: blur(8px);
}

.showcase-tag-ref {
  color: var(--brass-soft);
}

.angle-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.angle-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-deep);
  padding: 0;
}

.angle-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.angle-thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 2px solid transparent;
  transition: border-color 200ms ease;
}

.angle-thumb.is-active::after {
  border-color: var(--burgundy);
}

.angle-thumb-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 4px;
  color: var(--white);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  background: rgba(20, 17, 13, 0.58);
}

.showcase-disclaimer {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.showcase-detail {
  padding-top: 4px;
}

.showcase-eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.showcase-detail h3 {
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.02;
}

.showcase-tagline {
  margin: 12px 0 0;
  color: #3a342c;
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic;
  line-height: 1.3;
}

.showcase-price {
  margin: 22px 0 0;
  color: var(--burgundy);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.showcase-desc {
  margin: 22px 0 0;
  max-width: 480px;
  color: #45403a;
  font-size: 16px;
  line-height: 1.7;
}

.spec-block {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.spec-title {
  margin: 0 0 18px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
}

.spec-row {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.spec-row:nth-child(odd) {
  padding-right: 18px;
}

.spec-row dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.spec-row dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 34px;
}

/* ---------- Calibre ---------- */
.calibre {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 0.9fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding: clamp(76px, 9vw, 124px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line-light);
  background:
    radial-gradient(circle at 78% 50%, rgba(176, 141, 87, 0.14), transparent 52%),
    var(--charcoal);
}

.calibre-copy {
  max-width: 540px;
}

.calibre-copy h2 {
  font-size: clamp(40px, 5.6vw, 66px);
  line-height: 1.02;
}

.calibre-copy p {
  margin: 22px 0 36px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.65;
}

.calibre-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.calibre-stats div {
  display: grid;
  gap: 8px;
  padding: 22px 20px;
  background: var(--charcoal);
}

.calibre-stats dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.calibre-stats dd {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1;
  color: var(--brass-soft);
}

.calibre-stats dd span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.calibre-stage {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.movement {
  width: min(100%, 420px);
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

.gear-barrel {
  animation: spin 22s linear infinite;
}

.gear-center {
  animation: spin 8s linear infinite reverse;
}

.balance {
  animation: oscillate 1.6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.calibre-caption {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes oscillate {
  0%,
  100% {
    transform: rotate(-26deg);
  }
  50% {
    transform: rotate(26deg);
  }
}

/* ---------- Atelier ---------- */
.atelier {
  display: grid;
  min-height: 540px;
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.22fr);
  overflow: hidden;
  border-top: 1px solid var(--line-light);
}

.atelier-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  padding: clamp(64px, 9vw, 96px) clamp(26px, 5vw, 72px);
}

.atelier-copy h2 {
  max-width: 520px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
}

.atelier-copy p {
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.65;
}

.atelier-media {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

.atelier-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 64%;
  transition: transform 1.2s ease;
}

.atelier-media:hover img {
  transform: scale(1.05);
}

/* ---------- Craft figures ---------- */
.craft {
  padding: clamp(56px, 7vw, 88px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.craft-grid {
  display: grid;
  max-width: 1100px;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.craft-grid li {
  display: grid;
  gap: 12px;
  padding-left: 22px;
  border-left: 1px solid var(--brass);
}

.craft-figure {
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 500;
  line-height: 0.9;
  color: var(--ink);
}

.craft-label {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

/* ---------- Split: Journal + Visit ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  padding: clamp(56px, 7vw, 92px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.journal-panel,
.visit-panel {
  padding: 0 clamp(24px, 5vw, 72px) 0 8px;
}

.visit-panel {
  border-left: 1px solid var(--line);
  padding-right: 0;
  padding-left: clamp(24px, 5vw, 72px);
}

.panel-copy h2 {
  font-size: clamp(34px, 4.4vw, 52px);
}

.small-media,
.salon-scene {
  width: 100%;
  height: clamp(170px, 19vw, 240px);
  margin: 24px 0 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-deep);
}

.small-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
}

.journal-panel h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
}

.dark-link {
  color: var(--ink);
}

.salon-scene {
  position: relative;
  background:
    linear-gradient(90deg, rgba(116, 93, 68, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(208, 194, 170, 0.58)),
    var(--paper);
}

.salon-scene::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 28%, rgba(30, 30, 30, 0.13) 28% 28.4%, transparent 28.4% 100%),
    linear-gradient(90deg, transparent 0 50%, rgba(30, 30, 30, 0.13) 50% 50.4%, transparent 50.4% 100%),
    linear-gradient(90deg, transparent 0 72%, rgba(30, 30, 30, 0.13) 72% 72.4%, transparent 72.4% 100%);
}

.display-case {
  position: absolute;
  right: 10%;
  bottom: 21%;
  width: 34%;
  height: 44%;
  border: 1px solid rgba(22, 22, 22, 0.32);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 55px rgba(45, 29, 16, 0.16);
}

.display-case::before {
  position: absolute;
  right: 10%;
  bottom: -18%;
  left: 10%;
  height: 18%;
  content: "";
  background: #4e3425;
}

.watch-plinth {
  position: absolute;
  right: 18%;
  bottom: 43%;
  width: 12%;
  height: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, #f5eee2 0 35%, #b48a58 36% 62%, #31261f 63% 100%);
}

.window-line {
  position: absolute;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgba(40, 35, 30, 0.18);
}

.window-one {
  left: 28%;
}
.window-two {
  left: 50%;
}

/* ---------- Footer ---------- */
.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 0.6fr));
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(52px, 6vw, 74px) clamp(20px, 5vw, 72px) 26px;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer h2,
.site-footer h3,
.site-footer p {
  margin: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  line-height: 1;
}

.footer-logo .monogram {
  width: 44px;
  height: 52px;
  flex: 0 0 auto;
  font-size: 64px;
}

.footer-logo .monogram-r {
  left: 16px;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a,
.footer-button {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.55;
}

.footer-button {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
}

.footer-button::after {
  background: var(--brass-soft);
}

.site-footer a {
  display: table;
  margin: 8px 0;
  transition: color 180ms ease;
}

.site-footer > div > a:hover {
  color: var(--white);
}

.footer-brand p {
  max-width: 310px;
  margin-top: 22px;
}

.footer-bottom {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr auto auto auto;
  gap: 26px;
  align-items: center;
  margin-top: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.footer-bottom span,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* ---------- Booking dialog ---------- */
.booking-dialog {
  width: min(560px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  background: transparent;
}

.booking-dialog::backdrop {
  background: rgba(5, 5, 5, 0.66);
  backdrop-filter: blur(6px);
}

.booking-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(30px, 5vw, 46px);
  border: 1px solid rgba(176, 141, 87, 0.4);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.booking-card .eyebrow {
  margin: 0;
}

.booking-card h2 {
  max-width: 380px;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.05;
}

.booking-card p,
.booking-output {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.booking-card label {
  display: grid;
  gap: 8px;
  color: #38342f;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-card input,
.booking-card select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
}

.booking-card input:focus,
.booking-card select:focus {
  outline: none;
  border-color: var(--burgundy);
}

.booking-output:not(:empty) {
  padding: 12px 14px;
  color: #2f4a2f;
  background: rgba(118, 152, 118, 0.16);
  border-left: 2px solid #5d7d5d;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .showcase-layout {
    grid-template-columns: 1fr;
  }

  .showcase-visual {
    position: static;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    row-gap: 14px;
    min-height: 104px;
    padding-block: 16px;
  }

  .site-header[data-elevated="true"] {
    min-height: 104px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-between;
    gap: 14px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 116px;
  }

  .hero-copy {
    max-width: none;
    padding-bottom: 40px;
  }

  .hero-media {
    min-height: 440px;
  }

  .scroll-cue {
    display: none;
  }

  .film,
  .calibre,
  .atelier,
  .split,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .craft-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }

  .calibre-stage {
    order: -1;
  }

  .atelier-copy {
    max-width: none;
  }

  .visit-panel {
    margin-top: 38px;
    padding-top: 38px;
    padding-left: 8px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 96px;
    grid-template-columns: 1fr;
  }

  .brand {
    width: 62px;
    min-height: 50px;
  }

  .brand .monogram {
    width: 44px;
    height: 52px;
    font-size: 64px;
  }

  .brand .monogram-r {
    left: 16px;
  }

  .header-action {
    display: none;
  }

  .nav-links {
    grid-column: auto;
    overflow-x: auto;
    justify-content: start;
    padding-bottom: 2px;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-media {
    min-height: 360px;
  }

  .watch-grid {
    grid-template-columns: 1fr;
  }

  .watch-card {
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .spec-row:nth-child(odd) {
    padding-right: 0;
  }

  .craft-grid {
    grid-template-columns: 1fr;
  }

  .collection,
  .split,
  .showcase {
    padding-inline: 18px;
  }

  .site-footer {
    padding-inline: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Content pages (legal & journal) ---------- */
.doc-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -6%, rgba(255, 255, 255, 0.9), transparent 46%),
    var(--paper);
}

.doc {
  max-width: 768px;
  margin: 0 auto;
  padding: clamp(132px, 18vh, 208px) clamp(20px, 5vw, 48px) clamp(72px, 9vw, 120px);
}

.doc h1 {
  margin-top: 8px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.03;
}

.doc-meta {
  margin: 18px 0 44px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.doc-lede {
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.6;
  color: #2c2820;
}

.doc h2 {
  margin: 52px 0 14px;
  font-size: clamp(26px, 3vw, 34px);
}

.doc h3 {
  margin: 32px 0 10px;
  font-size: 21px;
}

.doc p,
.doc li {
  color: #3a352d;
  font-size: 17px;
  line-height: 1.75;
}

.doc p {
  margin: 0 0 18px;
}

.doc ul {
  margin: 0 0 18px;
  padding-left: 1.25em;
}

.doc li {
  margin-bottom: 8px;
}

.doc a.inline-link {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 200ms ease;
}

.doc a.inline-link:hover,
.doc a.inline-link:focus-visible {
  color: var(--burgundy-dark);
}

.doc-divider {
  margin: 56px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.doc-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doc-back:hover,
.doc-back:focus-visible {
  color: var(--burgundy-dark);
}

/* Journal index */
.journal-entry {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.journal-entry:first-of-type {
  border-top: 0;
}

.journal-entry .entry-meta {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.journal-entry h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 32px);
}

.journal-entry p {
  margin: 0 0 14px;
}

.doc-header[data-elevated="true"] {
  position: fixed;
}
