@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

:root {
  --motion-control: 280ms;
  --motion-inspect: 600ms;
  --motion-story: 1800ms;
  --ease-watch: cubic-bezier(.16, 1, .3, 1);
  --ease-mechanical: cubic-bezier(.22, .72, .2, 1);
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("assets/fonts/jost-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("assets/fonts/jost-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--color-ground);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-body);
  background: var(--color-ground);
  font-family: var(--font-sans), sans-serif;
  font-size: var(--text-body);
  font-weight: var(--font-weight-light);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 5px;
}

::selection {
  color: var(--color-inverse);
  background: var(--color-accent);
}

.site-shell {
  width: 100%;
  max-width: var(--container-page);
  margin: 0 auto;
  background: var(--color-ground);
  overflow: clip;
}

.site-header {
  width: 100%;
  height: 119px;
  color: var(--color-body-strong);
  background: var(--color-ground);
}

.nav-top {
  height: 80px;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 320px 1fr 320px;
  align-items: center;
}

.nav-utility {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: var(--text-label-sm);
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--tracking-button);
  line-height: 16px;
  text-transform: uppercase;
}

.nav-utility--right {
  justify-content: flex-end;
}

.nav-utility .is-subtle {
  color: var(--color-faint);
}

.nav-utility a {
  transition: color 180ms ease;
}

.motion-toggle {
  padding: 0;
  border: 0;
  color: var(--color-faint);
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
  cursor: pointer;
  transition: color 180ms ease;
}

.motion-toggle:hover,
.motion-toggle[aria-pressed="true"] {
  color: var(--color-accent);
}

.motion-toggle:disabled {
  cursor: default;
  opacity: .68;
}

.nav-utility a:hover {
  color: var(--color-accent);
}

.wordmark {
  justify-self: center;
  padding-left: .42em;
  color: var(--color-ink);
  font-family: var(--font-display), serif;
  font-size: 30px;
  font-weight: var(--font-weight-light);
  letter-spacing: var(--tracking-wordmark);
  line-height: 36px;
  text-transform: uppercase;
}

.nav-links {
  height: 39px;
  border-bottom: var(--spacing-hairline) solid var(--color-line);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
}

.nav-links a {
  height: 39px;
  padding-top: 2px;
  font-size: var(--text-label);
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--tracking-label);
  line-height: 16px;
  text-transform: uppercase;
  transition: color 180ms ease;
}

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

.nav-links .nav-links__new {
  color: var(--color-accent);
}

.compact-nav {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 50%;
  width: min(100%, var(--container-page));
  height: 56px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(22, 26, 24, .12);
  color: var(--color-body-strong);
  background: rgba(237, 233, 226, .94);
  box-shadow: 0 8px 28px rgba(22, 26, 24, .06);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -110%);
  transition: opacity var(--motion-control) ease, transform var(--motion-control) var(--ease-watch);
}

.compact-nav > a,
.compact-nav__actions > a,
.compact-nav .motion-toggle {
  font-size: 10px;
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--tracking-button);
  line-height: 14px;
  text-transform: uppercase;
}

.compact-nav__wordmark {
  padding-left: .42em;
  color: var(--color-ink);
  font-family: var(--font-display), serif;
  font-size: 20px !important;
  font-weight: var(--font-weight-light) !important;
  letter-spacing: var(--tracking-wordmark) !important;
}

.compact-nav__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.compact-nav__progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  overflow: hidden;
}

.compact-nav__progress i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--color-accent);
  will-change: width;
}

body.has-compact-nav .compact-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.hero {
  min-height: 742px;
  display: grid;
  grid-template-columns: 760px 680px;
  color: var(--color-inverse);
  background: linear-gradient(135deg, #1E2321 0%, var(--color-ink) 46%, #0E110F 100%);
}

.hero__copy {
  min-width: 0;
  padding: 188px 0 0 96px;
}

.motion-enabled .hero__copy > *,
.motion-enabled .hero__object {
  opacity: 0;
  transform: translateY(16px);
}

.motion-enabled.motion-ready .hero__copy > *,
.motion-enabled.motion-ready .hero__object {
  animation: hero-reveal 780ms var(--ease-watch) forwards;
}

.motion-enabled.motion-ready .hero__copy > :nth-child(1) { animation-delay: 80ms; }
.motion-enabled.motion-ready .hero__copy > :nth-child(2) { animation-delay: 160ms; }
.motion-enabled.motion-ready .hero__copy > :nth-child(3) { animation-delay: 280ms; }
.motion-enabled.motion-ready .hero__copy > :nth-child(4) { animation-delay: 400ms; }
.motion-enabled.motion-ready .hero__object { animation-delay: 220ms; }

.eyebrow {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-muted);
  font-size: var(--text-label-sm);
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--tracking-wide);
  line-height: 16px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  flex: 0 0 44px;
  background: var(--color-accent);
}

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

.hero h1 {
  margin: 32px 0 26px;
  color: var(--color-inverse);
  font-family: var(--font-display), serif;
  font-size: var(--text-display);
  font-weight: var(--font-weight-light);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-display);
}

.hero__summary {
  margin: 0;
  color: var(--color-inverse-muted);
  font-size: var(--text-body-lg);
  font-weight: var(--font-weight-light);
  line-height: var(--leading-body);
}

.hero__actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.button {
  min-height: 50px;
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-none);
  font-size: var(--text-label);
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--tracking-button);
  line-height: 16px;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button--accent {
  width: 256px;
  color: var(--color-inverse);
  background: var(--color-accent);
}

.button--accent:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: transparent;
}

.button--ink {
  min-width: 221px;
  color: var(--color-inverse);
  background: var(--color-ink);
}

.button--ink:hover {
  color: var(--color-ink);
  border-color: var(--color-ink);
  background: transparent;
}

.text-link {
  width: max-content;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-accent);
  color: var(--color-body-strong);
  font-size: var(--text-label);
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--tracking-label);
  line-height: 16px;
  text-transform: uppercase;
}

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

.hero__object {
  min-width: 0;
  display: grid;
  place-items: center;
}

.hero__object img {
  width: 560px;
}

.hero-watch {
  position: relative;
  width: 560px;
  max-width: 100%;
}

.hero-watch svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-watch__hour,
.hero-watch__minute,
.hero-watch__second {
  transform-origin: 280px 280px;
  stroke-linecap: round;
}

.hero-watch__hour {
  stroke: #E4E8E2;
  stroke-width: 7;
}

.hero-watch__minute {
  stroke: #E4E8E2;
  stroke-width: 5;
}

.hero-watch__second {
  stroke: var(--color-accent);
  stroke-width: 2;
  animation: hero-seconds 60s linear infinite;
}

.hero-watch__glint {
  position: absolute;
  top: 68px;
  left: 68px;
  width: 424px;
  height: 424px;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
}

.hero-watch__glint::after {
  content: "";
  position: absolute;
  top: -15%;
  bottom: -15%;
  left: -42%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .16), transparent);
  filter: blur(4px);
  opacity: 0;
  transform: skewX(-14deg);
}

.motion-ready .hero-watch__glint::after {
  animation: crystal-glint 1100ms 1050ms var(--ease-watch) both;
}

.collection {
  min-height: 950px;
  padding: 112px 96px 116px;
  background: var(--color-ground);
}

.collection__head {
  min-height: 94px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-label {
  margin: 0 0 18px;
  color: var(--color-muted);
  font-size: var(--text-label-sm);
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--tracking-wide);
  line-height: 16px;
  text-transform: uppercase;
}

.collection h2,
.movement h2,
.boutique h2 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display), serif;
  font-weight: var(--font-weight-light);
  letter-spacing: var(--tracking-tight);
}

.collection h2 {
  font-size: var(--text-h1);
  line-height: var(--leading-h1);
}

.collection__head > .text-link {
  margin-bottom: 8px;
}

.model-row {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-gutter);
}

.model-card {
  min-width: 0;
}

.model-card__plate {
  position: relative;
  height: 456px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.model-card__plate--ivory {
  background: linear-gradient(160deg, #DCD6CB 0%, var(--color-stone) 58%, #B7AFA2 100%);
}

.model-card__plate--slate {
  background: linear-gradient(160deg, #4A524E 0%, var(--color-slate) 60%, #232925 100%);
}

.model-card__plate--rose {
  background: linear-gradient(160deg, #E2D4C6 0%, var(--color-rose) 58%, #B79C85 100%);
}

.model-card__plate img {
  width: 188px;
  position: relative;
  z-index: 1;
  transition: transform var(--motion-inspect) var(--ease-watch), filter var(--motion-inspect) ease;
}

.model-card__plate::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .11) 49%, transparent 63%);
  opacity: 0;
  transform: translateX(-28%);
  transition: opacity 360ms ease, transform var(--motion-inspect) var(--ease-watch);
  pointer-events: none;
}

.model-card__second-hand {
  position: absolute;
  z-index: 2;
  top: calc(50% - 62px);
  left: calc(50% - 1px);
  width: 2px;
  height: 67px;
  border-radius: 2px;
  background: var(--color-accent);
  opacity: 0;
  transform-origin: 50% calc(100% - 5px);
  pointer-events: none;
}

.model-card__second-hand--light {
  background: var(--color-accent-soft);
}

.model-card:hover .model-card__plate img,
.model-card:focus-within .model-card__plate img,
.model-card.is-inspecting .model-card__plate img {
  transform: scale(1.065);
  filter: contrast(1.015);
}

.model-card:hover .model-card__plate::after,
.model-card:focus-within .model-card__plate::after,
.model-card.is-inspecting .model-card__plate::after {
  opacity: 1;
  transform: translateX(28%);
}

.model-card:hover .model-card__second-hand,
.model-card:focus-within .model-card__second-hand,
.model-card.is-inspecting .model-card__second-hand {
  opacity: 1;
  animation: product-seconds 60s linear infinite;
}

.model-card__meta {
  position: relative;
  padding-top: 22px;
}

.model-card__meta h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display), serif;
  font-size: var(--text-title);
  font-weight: var(--font-weight-regular);
  line-height: var(--leading-title);
}

.model-card__meta p {
  margin: 4px 0 0;
  color: var(--color-muted);
  font-size: var(--text-meta);
  font-weight: var(--font-weight-light);
  letter-spacing: var(--tracking-meta);
  line-height: 26px;
}

.model-card__meta strong {
  display: block;
  margin-top: 6px;
  color: var(--color-body-strong);
  font-size: var(--text-price);
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--tracking-meta);
  line-height: 20px;
}

.model-card__action {
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--color-accent);
  color: var(--color-body-strong);
  font-size: 11px;
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--tracking-label);
  line-height: 16px;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(7px);
  transition: opacity 360ms ease, transform 480ms var(--ease-watch);
}

.model-card:hover .model-card__action,
.model-card:focus-within .model-card__action,
.model-card.is-inspecting .model-card__action {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.motion-prepared .collection__head,
.motion-prepared .model-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 720ms ease, transform 720ms var(--ease-watch);
}

.motion-prepared .collection.is-visible .collection__head,
.motion-prepared .collection.is-visible .model-card {
  opacity: 1;
  transform: none;
}

.motion-prepared .collection.is-visible .model-card:nth-child(1) { transition-delay: 100ms; }
.motion-prepared .collection.is-visible .model-card:nth-child(2) { transition-delay: 190ms; }
.motion-prepared .collection.is-visible .model-card:nth-child(3) { transition-delay: 280ms; }

.movement {
  min-height: 640px;
  display: grid;
  grid-template-columns: 704px 736px;
}

.movement__plate {
  min-width: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #CFC7B9 0%, #B6AC9C 55%, #9A8F7E 100%);
}

.movement__plate img {
  width: 420px;
}

.calibre-motion {
  width: 420px;
  max-width: 100%;
  height: auto;
  overflow: visible;
}

.calibre-motion__rotor {
  transform-origin: 210px 210px;
}

.calibre-motion__gear--a { transform-origin: 210px 150px; }
.calibre-motion__gear--b { transform-origin: 150px 262px; }
.calibre-motion__transfer {
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
}

.calibre-motion__pulse {
  transform-origin: 210px 210px;
}

.movement.is-visible .calibre-motion__rotor {
  animation: rotor-swing 1500ms var(--ease-mechanical) both;
}

.movement.is-visible .calibre-motion__gear--a {
  animation: gear-forward 1600ms 650ms ease-out both;
}

.movement.is-visible .calibre-motion__gear--b {
  animation: gear-reverse 1500ms 820ms ease-out both;
}

.movement.is-visible .calibre-motion__transfer {
  animation: energy-transfer 1550ms 760ms ease-out forwards;
}

.movement.is-visible .calibre-motion__escapement {
  animation: escapement-pulse 700ms 2150ms ease-in-out 2;
  transform-origin: 286px 272px;
}

.movement.is-visible .calibre-motion__pulse {
  animation: centre-pulse 620ms 2380ms ease-out 2;
}

.motion-prepared .movement__copy > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 650ms ease, transform 760ms var(--ease-watch);
}

.motion-prepared .movement.is-visible .movement__copy > * {
  opacity: 1;
  transform: none;
}

.motion-prepared .movement.is-visible .movement__copy > :nth-child(1) { transition-delay: 520ms; }
.motion-prepared .movement.is-visible .movement__copy > :nth-child(2) { transition-delay: 760ms; }
.motion-prepared .movement.is-visible .movement__copy > :nth-child(3) { transition-delay: 1040ms; }
.motion-prepared .movement.is-visible .movement__copy > :nth-child(4) { transition-delay: 1380ms; }

.movement__copy {
  min-width: 0;
  padding: 166px 96px 0;
  background: var(--color-surface);
}

.movement h2 {
  max-width: 544px;
  margin-top: 26px;
  font-size: var(--text-h2);
  line-height: var(--leading-h2);
}

.movement__copy > p:not(.eyebrow) {
  max-width: 544px;
  margin: 28px 0 22px;
  color: var(--color-body);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.specifications {
  min-height: 270px;
  padding: 88px 96px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--color-ink);
}

.specification {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.specification__instrument {
  position: absolute;
  top: 2px;
  left: 128px;
  width: 64px;
  height: 64px;
  color: var(--color-accent-soft);
  opacity: .52;
  pointer-events: none;
}

.component-cloud i {
  position: absolute;
  left: 29px;
  top: 29px;
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0;
}

.component-cloud i:nth-child(1) { --x: -25px; --y: -22px; --d: 0ms; }
.component-cloud i:nth-child(2) { --x: 0px; --y: -29px; --d: 70ms; }
.component-cloud i:nth-child(3) { --x: 25px; --y: -21px; --d: 140ms; }
.component-cloud i:nth-child(4) { --x: 30px; --y: 4px; --d: 210ms; }
.component-cloud i:nth-child(5) { --x: 20px; --y: 26px; --d: 280ms; }
.component-cloud i:nth-child(6) { --x: -4px; --y: 29px; --d: 350ms; }
.component-cloud i:nth-child(7) { --x: -27px; --y: 19px; --d: 420ms; }
.component-cloud i:nth-child(8) { --x: -31px; --y: -5px; --d: 490ms; }
.component-cloud i:nth-child(9) { --x: 0px; --y: 0px; --d: 560ms; }

.reserve-ring circle {
  fill: none;
  stroke: rgba(159, 181, 171, .24);
  stroke-width: 2;
}

.reserve-ring__fill {
  stroke: currentColor !important;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 32px 32px;
}

.precision-dial {
  border: 1px solid rgba(159, 181, 171, .28);
  border-radius: 50%;
}

.precision-dial::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-top: 1px solid currentColor;
  border-radius: 50%;
}

.precision-dial i {
  position: absolute;
  top: 10px;
  left: 31px;
  width: 1px;
  height: 23px;
  background: currentColor;
  transform: rotate(-42deg);
  transform-origin: 50% 22px;
}

.depth-gauge {
  border-right: 1px solid rgba(159, 181, 171, .22);
}

.depth-gauge::before,
.depth-gauge::after {
  content: "";
  position: absolute;
  right: 0;
  width: 18px;
  border-top: 1px solid currentColor;
}

.depth-gauge::before { top: 12px; }
.depth-gauge::after { bottom: 12px; }

.depth-gauge i {
  position: absolute;
  top: 6px;
  right: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0;
}

.specifications.is-visible .component-cloud i {
  animation: components-converge 1150ms var(--d) var(--ease-watch) forwards;
}

.specifications.is-visible .reserve-ring__fill {
  animation: reserve-fill 1700ms 260ms var(--ease-watch) forwards;
}

.specifications.is-visible .precision-dial i {
  animation: precision-settle 1600ms 360ms var(--ease-mechanical) forwards;
}

.specifications.is-visible .depth-gauge i {
  animation: depth-descend 1550ms 460ms var(--ease-watch) forwards;
}

.motion-prepared .specification {
  opacity: 0;
  transform: translateY(12px);
}

.motion-prepared .specifications.is-visible .specification {
  animation: specification-reveal 620ms var(--ease-watch) forwards;
}

.motion-prepared .specifications.is-visible .specification:nth-child(2) { animation-delay: 90ms; }
.motion-prepared .specifications.is-visible .specification:nth-child(3) { animation-delay: 180ms; }
.motion-prepared .specifications.is-visible .specification:nth-child(4) { animation-delay: 270ms; }

.specification strong {
  color: var(--color-inverse);
  font-family: var(--font-display), serif;
  font-size: var(--text-stat);
  font-weight: var(--font-weight-light);
  line-height: 66px;
}

.specification span {
  color: var(--color-accent-soft);
  font-size: var(--text-label-sm);
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--tracking-caps);
  line-height: 16px;
  text-transform: uppercase;
}

.site-footer {
  min-height: 737px;
  padding: 72px 96px 28px;
  background: var(--color-ground);
}

.boutique {
  position: relative;
  min-height: 257px;
  padding-top: 12px;
  border-bottom: 1px solid var(--color-line);
  text-align: center;
  overflow: hidden;
}

.boutique::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 48% 78% at 50% 47%, rgba(237, 233, 226, 0) 0%, rgba(22, 26, 24, .025) 52%, rgba(22, 26, 24, .14) 100%);
  opacity: 0;
  pointer-events: none;
}

.boutique__content {
  position: relative;
  z-index: 1;
}

.boutique.is-visible::before {
  animation: boutique-room var(--motion-story) var(--ease-watch) forwards;
}

.motion-prepared .boutique h2,
.motion-prepared .boutique p,
.motion-prepared .boutique .button {
  opacity: 0;
  transform: translateY(10px);
}

.motion-prepared .boutique.is-visible h2,
.motion-prepared .boutique.is-visible p,
.motion-prepared .boutique.is-visible .button {
  animation: boutique-copy 760ms var(--ease-watch) forwards;
}

.motion-prepared .boutique.is-visible h2 { animation-delay: 300ms; }
.motion-prepared .boutique.is-visible p { animation-delay: 760ms; }
.motion-prepared .boutique.is-visible .button { animation-delay: 1320ms; }

@keyframes hero-reveal {
  to { opacity: 1; transform: none; }
}

@keyframes hero-seconds {
  from { transform: rotate(var(--second-angle, 0deg)); }
  to { transform: rotate(calc(var(--second-angle, 0deg) + 360deg)); }
}

@keyframes crystal-glint {
  0% { left: -42%; opacity: 0; }
  22% { opacity: .65; }
  75% { opacity: .4; }
  100% { left: 118%; opacity: 0; }
}

@keyframes product-seconds {
  to { transform: rotate(360deg); }
}

@keyframes rotor-swing {
  0% { transform: rotate(-12deg); }
  58% { transform: rotate(104deg); }
  78% { transform: rotate(82deg); }
  100% { transform: rotate(91deg); }
}

@keyframes gear-forward { to { transform: rotate(148deg); } }
@keyframes gear-reverse { to { transform: rotate(-196deg); } }
@keyframes energy-transfer { to { stroke-dashoffset: 0; } }

@keyframes escapement-pulse {
  50% { opacity: .55; transform: scale(1.045); }
}

@keyframes centre-pulse {
  50% { opacity: .5; transform: scale(1.65); }
}

@keyframes components-converge {
  from { opacity: 0; transform: translate(calc(var(--x) * 1.7), calc(var(--y) * 1.7)) scale(.6); }
  to { opacity: .9; transform: translate(var(--x), var(--y)) scale(1); }
}

@keyframes reserve-fill { to { stroke-dashoffset: 47; } }

@keyframes precision-settle {
  0% { transform: rotate(-42deg); }
  58% { transform: rotate(9deg); }
  76% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}

@keyframes depth-descend {
  0% { top: 6px; opacity: 0; }
  20% { opacity: 1; }
  100% { top: 51px; opacity: 1; }
}

@keyframes specification-reveal {
  to { opacity: 1; transform: none; }
}

@keyframes boutique-room { to { opacity: 1; } }

@keyframes boutique-copy {
  to { opacity: 1; transform: none; }
}

.motion-paused *,
.motion-paused *::before,
.motion-paused *::after,
.motion-page-hidden *,
.motion-page-hidden *::before,
.motion-page-hidden *::after {
  animation-play-state: paused !important;
}

.boutique h2 {
  font-size: var(--text-h3);
  line-height: 50px;
}

.boutique p {
  margin: 16px 0 24px;
  color: var(--color-muted);
  font-size: var(--text-meta);
  letter-spacing: .02em;
  line-height: 26px;
}

.footer-directory {
  min-height: 260px;
  padding-top: 62px;
  display: grid;
  grid-template-columns: 260px repeat(3, 249px);
  justify-content: space-between;
  gap: 24px;
}

.footer-brand h2 {
  margin: 0 0 18px;
  color: var(--color-ink);
  font-family: var(--font-display), serif;
  font-size: 22px;
  font-weight: var(--font-weight-light);
  letter-spacing: var(--tracking-wordmark);
  line-height: 28px;
  text-transform: uppercase;
}

.footer-brand p,
.footer-column p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-meta);
  line-height: 26px;
}

.footer-column h3 {
  margin: 0 0 16px;
  color: var(--color-body-strong);
  font-size: var(--text-label-sm);
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--tracking-caps);
  line-height: 16px;
  text-transform: uppercase;
}

.footer-legal {
  min-height: 53px;
  padding-top: 28px;
  border-top: 1px solid var(--color-line);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.footer-legal p {
  margin: 0;
  color: var(--color-faint);
  font-size: var(--text-label-sm);
  font-weight: var(--font-weight-light);
  letter-spacing: .08em;
  line-height: 16px;
}

.footer-legal p:last-child {
  display: flex;
  gap: 32px;
}

@media (max-width: 1100px) {
  .nav-top {
    grid-template-columns: 1fr auto 1fr;
    padding-inline: 32px;
  }

  .nav-utility {
    width: auto;
  }

  .nav-links {
    gap: 28px;
  }

  .hero {
    grid-template-columns: 1.05fr .95fr;
  }

  .hero__copy {
    padding-left: 64px;
  }

  .hero h1 {
    font-size: 76px;
    line-height: 74px;
  }

  .hero__object img {
    width: min(500px, 92%);
  }

  .hero-watch {
    width: min(500px, 92%);
  }

  .collection,
  .specifications,
  .site-footer {
    padding-inline: 64px;
  }

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

  .movement__copy {
    padding-inline: 64px;
  }

  .footer-directory {
    grid-template-columns: 1.15fr repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .site-header {
    height: auto;
  }

  .nav-top {
    position: relative;
    height: 76px;
    grid-template-columns: 1fr;
  }

  .nav-utility {
    display: none;
  }

  .nav-utility--right {
    position: absolute;
    right: 24px;
    display: block;
  }

  .nav-utility--right > :not(.motion-toggle) {
    display: none;
  }

  .compact-nav {
    padding-inline: 24px;
  }

  .wordmark {
    grid-column: 1;
  }

  .nav-links {
    height: auto;
    min-height: 48px;
    padding: 0 24px;
    gap: 24px;
    overflow-x: auto;
    justify-content: flex-start;
    align-items: center;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    height: auto;
    padding: 0;
    flex: 0 0 auto;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 56px;
  }

  .hero__copy {
    padding: 86px 48px 46px;
  }

  .hero h1 {
    font-size: clamp(62px, 12vw, 82px);
    line-height: .94;
  }

  .hero__object img {
    width: min(520px, 78vw);
  }

  .hero-watch {
    width: min(520px, 78vw);
  }

  .collection {
    padding: 88px 48px 96px;
  }

  .collection__head {
    align-items: flex-start;
  }

  .collection h2 {
    max-width: 520px;
    font-size: 48px;
    line-height: 52px;
  }

  .model-row {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .model-card__plate {
    height: min(520px, 75vw);
  }

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

  .movement__plate {
    min-height: 560px;
  }

  .movement__copy {
    min-height: 520px;
    padding: 112px 64px;
  }

  .specifications {
    padding: 72px 48px;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px 32px;
  }

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

  .footer-directory {
    grid-template-columns: 1fr 1fr;
    gap: 48px 32px;
  }
}

@media (max-width: 520px) {
  .nav-top {
    padding-inline: 16px;
  }

  .nav-utility--right {
    right: 16px;
  }

  .nav-utility--right .motion-toggle {
    font-size: 9px;
  }

  .compact-nav {
    height: 52px;
    padding-inline: 16px;
    grid-template-columns: 1fr auto 1fr;
  }

  .compact-nav__actions {
    gap: 14px;
  }

  .compact-nav .motion-toggle {
    display: none;
  }

  .compact-nav > a,
  .compact-nav__actions > a {
    font-size: 9px;
  }

  .compact-nav__wordmark {
    font-size: 17px !important;
  }

  .wordmark {
    padding-left: .32em;
    font-size: 23px;
    letter-spacing: .32em;
  }

  .hero__copy {
    padding: 72px 24px 42px;
  }

  .hero h1 {
    font-size: 56px;
    line-height: 54px;
  }

  .hero__summary br {
    display: none;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .button--accent {
    width: 100%;
  }

  .collection {
    padding: 72px 24px 84px;
  }

  .collection__head {
    gap: 28px;
    flex-direction: column;
  }

  .collection h2 {
    font-size: 42px;
    line-height: 46px;
  }

  .model-card__plate {
    height: 88vw;
  }

  .movement__plate {
    min-height: 420px;
  }

  .movement__plate img {
    width: 82%;
  }

  .calibre-motion {
    width: 82%;
  }

  .movement__copy {
    min-height: 500px;
    padding: 88px 24px;
  }

  .movement h2 {
    font-size: 44px;
    line-height: 48px;
  }

  .specifications {
    padding: 64px 24px;
    grid-template-columns: 1fr 1fr;
    gap: 48px 20px;
  }

  .specification strong {
    font-size: 52px;
    line-height: 56px;
  }

  .specification__instrument {
    top: -2px;
    right: 0;
    left: auto;
    width: 54px;
    height: 54px;
  }

  .specification span {
    font-size: 10px;
  }

  .site-footer {
    padding: 64px 24px 28px;
  }

  .boutique {
    min-height: 300px;
  }

  .boutique h2 {
    font-size: 38px;
    line-height: 42px;
  }

  .footer-directory {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 54px;
  }

  .footer-legal,
  .footer-legal p:last-child {
    flex-direction: column;
  }

  .footer-legal p:last-child {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .motion-enabled .hero__copy > *,
  .motion-enabled .hero__object,
  .motion-prepared .collection__head,
  .motion-prepared .model-card,
  .motion-prepared .movement__copy > *,
  .motion-prepared .specification,
  .motion-prepared .boutique h2,
  .motion-prepared .boutique p,
  .motion-prepared .boutique .button {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .hero-watch__second,
  .hero-watch__glint::after,
  .model-card__second-hand,
  .calibre-motion *,
  .specification__instrument *,
  .boutique::before {
    animation: none !important;
  }
}
