/* The Watchmaker's Atelier: site styles
   Dark stage while the watch is on screen; cream once it leaves.
   Palette and type follow watchmakersatelier.com: cream #f9f7eb ground, dark-brown #502200
   headings and buttons, brown #836247 body copy, Bodoni Moda headings, DM Sans everything else.
   The stage keeps a dark ground so the steel reads, but it is the brand brown taken almost to
   black rather than a neutral charcoal. */

:root {
  --bg: #150c06;
  --bg-2: #24140a;
  --ink: #f9f7eb;
  --muted: #bfae9c;
  --line: rgba(249, 247, 235, .14);
  --accent: #c9a27e;      /* light brown: labels on the dark stage */
  --accent-2: #e9d9c2;    /* italic accent words on the dark stage */
  --brown: #502200;
  --brown-2: #836247;

  --ivory: #f9f7eb;
  --ivory-2: #f0ede7;
  --ivory-ink: #502200;
  --ivory-muted: #836247;
  --ivory-line: rgba(80, 34, 0, .14);

  --serif: 'Bodoni Moda', 'Bodoni 72', Didot, 'Times New Roman', serif;
  --sans: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --wrap: min(1180px, 92vw);
  --ease: cubic-bezier(.2, .7, .2, 1);

  /* the engine-turned lattice printed around the WOSTEP certificates, redrawn as two crossing
     waves: at full strength it is the rule across the credentials section, and a tenth of that
     is the ground the certificates sit on -- any more and the wallpaper competes with them */
  --guilloche: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='32'%20height='16'%20viewBox='0%200%2032%2016'%3E%3Cg%20fill='none'%20stroke='%23502200'%20stroke-width='.7'%20opacity='.45'%3E%3Cpath%20d='M0%208q8-8%2016%200t16%200'/%3E%3Cpath%20d='M0%208q8%208%2016%200t16%200'/%3E%3C/g%3E%3C/svg%3E");
  --guilloche-faint: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='32'%20height='16'%20viewBox='0%200%2032%2016'%3E%3Cg%20fill='none'%20stroke='%23502200'%20stroke-width='.6'%20opacity='.1'%3E%3Cpath%20d='M0%208q8-8%2016%200t16%200'/%3E%3Cpath%20d='M0%208q8%208%2016%200t16%200'/%3E%3C/g%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 15.5px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a, button, summary { -webkit-tap-highlight-color: transparent; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: 0; }

/* brand mark: the client's cream logo used as a mask, so it takes the text colour of wherever it
   sits -- cream on the dark stage, dark brown once the nav is over the cream sections */
.logo {
  display: block;
  aspect-ratio: 963 / 167;
  background: currentColor;
  -webkit-mask: url('../assets/brand/logo.png') no-repeat center / contain;
          mask: url('../assets/brand/logo.png') no-repeat center / contain;
}
.wrap { width: var(--wrap); margin-inline: auto; }

.eyebrow {
  font: 500 12px/1 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------------------------------------------------------------- 3D stage */
#stage-canvas,
.stage-glow {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.stage-glow {
  background:
    radial-gradient(60% 55% at 70% 48%, rgba(96, 62, 38, .5), transparent 70%),
    radial-gradient(90% 80% at 50% 100%, rgba(12, 12, 14, 0) 0%, var(--bg) 100%);
  opacity: 1;
}
#stage-canvas { opacity: 1; transition: opacity .6s var(--ease); }
body.stage-off #stage-canvas, body.stage-off .stage-glow { opacity: 0; }

.stage-fallback {
  position: fixed; inset: 0; z-index: 0; display: none;
  align-items: center; justify-content: center; pointer-events: none;
}
.stage-fallback img { width: min(70vh, 90vw); opacity: .9; }
body.is-fallback .stage-fallback { display: flex; }
body.is-fallback #stage-canvas { display: none; }

#stage { position: relative; z-index: 1; }

/* ---------------------------------------------------------------- loader */
#loader {
  position: fixed; inset: 0; z-index: 50;
  display: grid; place-items: center;
  background: var(--bg);
  transition: opacity .7s var(--ease), visibility 0s .7s;
}
#loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; width: min(320px, 80vw); }
.loader__mark { width: min(300px, 76vw); margin: 0 auto 28px; color: var(--ink); }
.loader__track { height: 1px; background: var(--line); overflow: hidden; }
.loader__bar { height: 100%; width: 0; background: var(--accent); transition: width .25s linear; }
.loader__msg { margin-top: 12px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ---------------------------------------------------------------- nav */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 4vw;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(21, 12, 6, .66);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-color: var(--line);
}
body.on-ivory .nav.is-scrolled {
  background: rgba(249, 247, 235, .8);
  border-color: var(--ivory-line);
  color: var(--ivory-ink);
}
.nav__brand { display: block; color: inherit; }
.nav__brand .logo { height: 40px; }
.nav__links { display: flex; gap: 28px; font-size: 14px; font-weight: 500; letter-spacing: .02em; }
.nav__links a { opacity: .78; transition: opacity .2s; }
.nav__links a:hover { opacity: 1; }
/* My Watches signs a client in rather than opening a section, so it carries a person mark (an inline
   <svg class="nav__icon"> in each page's nav) and a hairline in the gap before it sets it a little apart.
   The mark sits on the text with vertical-align, not a flex row: a flex-centred label drops 2px whenever
   another link's active underline makes the bar taller. */
.nav__account { position: relative; }
.nav__account::before { content: ''; position: absolute; left: -14px; top: 2px; height: 15px; border-left: 1px solid currentColor; opacity: .32; }
.nav__icon { width: 16px; height: 16px; margin-right: 6px; vertical-align: -3px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 0;
  font: 500 13px/1 var(--sans); letter-spacing: .115em; text-transform: uppercase;
  border: 1.5px solid currentColor;
  transition: transform .25s var(--ease), background .25s, border-color .25s, color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--solid { background: var(--ink); color: var(--brown); border-color: var(--ink); }
.btn--solid:hover { background: #fff; border-color: #fff; }
button.btn--ghost { background: transparent; }   /* a <button> keeps the browser's grey fill otherwise */
.btn--ghost:hover { background: rgba(249, 247, 235, .08); }
body.on-ivory .nav .btn--ghost:hover { background: rgba(80, 34, 0, .06); }
.btn__arrow { transition: transform .25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ---------------------------------------------------------------- hero */
.hero {
  position: relative; z-index: 1;      /* its own stacking context, so the phone scrim (::after) can sit under the copy */
  min-height: 100vh; min-height: 100svh;
  display: grid; align-content: center;
  padding: 16vh 0;                 /* symmetric, so the headline centres on the viewport; the bottom band holds the strip */
}
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 32px; align-items: end; }
.hero h1 {
  font-size: clamp(36px, 5.6vw, 84px);
  line-height: 1.04;
  margin: 0 0 26px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.hero__lede { max-width: 34rem; font-size: clamp(16px, 1.25vw, 19px); color: var(--muted); }
.hero__strip {
  position: absolute; left: 0; right: 0; bottom: 8vh;
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.hero__strip b { color: var(--ink); font-weight: 500; }
/* press logos: single-colour ivory cut-outs so they sit in the palette instead of shouting */
.press { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; }
.press__label { margin-right: 4px; }
.press img { display: block; width: auto; height: 30px; opacity: .85; transition: opacity .25s; }
.press img:hover { opacity: 1; }
.press img.press__cna { height: 36px; }      /* tall mark with small wordmark under it */
.press img.press__onefm { height: 38px; }    /* two-line stacked wordmark */

.scroll-hint {
  position: fixed; right: 4vw; bottom: 28px; z-index: 5;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
  writing-mode: vertical-rl; transform: rotate(180deg);
  transition: opacity .4s;
}
.scroll-hint::after {
  content: ''; display: block; width: 1px; height: 54px; margin: 0 auto 12px;
  background: linear-gradient(to top, var(--accent), transparent);
}
body.is-scrolled .scroll-hint { opacity: 0; }

/* ---------------------------------------------------------------- chapters */
.chapter { position: relative; min-height: 100vh; min-height: 100svh; display: grid; align-items: center; padding: 10vh 0; }
.chapter__inner { max-width: 31rem; }
.chapter h2 { font-size: clamp(34px, 4.2vw, 60px); line-height: 1.06; margin: 16px 0 20px; }
.chapter p { color: var(--muted); font-size: clamp(15px, 1.15vw, 18px); max-width: 30rem; }
.chapter .fact { margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; gap: 34px; }
.chapter .fact b { display: block; font: 500 26px/1 var(--serif); color: var(--ink); margin-bottom: 6px; }
.chapter .fact span { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ---------------------------------------------------------------- services */
.services { position: relative; min-height: 140vh; padding: 12vh 0 16vh; display: grid; align-content: center; }
.services__head { max-width: 40rem; margin-bottom: 44px; }
.services__head h2 { font-size: clamp(34px, 4vw, 56px); line-height: 1.04; margin: 14px 0 14px; }
.services__head p { color: var(--muted); max-width: 32rem; }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.card {
  position: relative;
  padding: 26px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(36, 20, 10, .6);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  transition: transform .4s var(--ease), border-color .4s, background .4s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(201, 162, 126, .5); background: rgba(44, 26, 14, .75); }
.card__n { font: 500 12px/1 var(--sans); letter-spacing: .16em; color: var(--accent); }
.card h3 { font-size: 22px; line-height: 1.15; margin: 18px 0 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.card p { color: var(--muted); font-size: 14.5px; }
.card__meta { margin-top: 20px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.card__meta::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.card--wide { grid-column: span 2; }
.card--wide h3 { font-size: 26px; }

/* ---------------------------------------------------------------- ivory sections */
.sect { position: relative; z-index: 2; background: var(--ivory); color: var(--ivory-ink); padding: 14vh 0; }
.sect + .sect { border-top: 1px solid var(--ivory-line); }
.sect h2 { font-size: clamp(34px, 4.2vw, 60px); line-height: 1.06; margin: 16px 0 22px; }
.sect h3 { color: var(--brown-2); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.sect p { color: var(--ivory-muted); }
.sect .btn { color: var(--brown); }
.sect .btn--solid { background: var(--brown); color: var(--ivory); border-color: var(--brown); }
.sect .btn--solid:hover { background: #3b1900; border-color: #3b1900; }
.sect--dark { background: var(--bg-2); color: var(--ink); border-top: 0 !important; }
.sect--dark p { color: var(--muted); }
.sect--dark .btn { color: var(--ink); }
.sect--dark .btn--solid { background: var(--ink); color: var(--brown); border-color: var(--ink); }
.sect--dark .btn--solid:hover { background: #fff; border-color: #fff; }

.two { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(28px, 6vw, 96px); align-items: start; }
.two > * { min-width: 0; }
.lede { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; }

.tiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.tile { padding: 26px; border: 1px solid var(--ivory-line); border-radius: 4px; background: rgba(255, 255, 255, .5); }
.sect--dark .tile { border-color: var(--line); background: rgba(255, 255, 255, .03); }
.tile h3 { font-size: 22px; line-height: 1.2; margin: 12px 0 10px; }
.tile p { font-size: 15px; }
.tile .card__n { color: var(--brown-2); }
.sect--dark .tile .card__n { color: var(--accent); }

.values { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 44px; }
.value { padding-top: 18px; border-top: 1px solid var(--ivory-line); }
.value h3 { font-size: 20px; margin: 8px 0 8px; }
.value p { font-size: 14.5px; }

/* brands strip: a slow, continuous marquee of wordmarks (or logo cut-outs once files exist) */
.sect--brands { padding: 9vh 0 8vh; }
.brands__head { margin-bottom: 34px; }
.brands__head p:not(.eyebrow) { margin-top: 12px; max-width: 40rem; }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: flex; align-items: center; width: max-content;
  margin: 0; padding: 0; list-style: none;
  animation: marquee var(--marquee-duration, 150s) linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track li { flex: none; padding-right: clamp(44px, 5vw, 76px); }   /* spacing lives on the item so -50% lands exactly on the seam */
.brand { display: block; font: 500 clamp(24px, 2.2vw, 31px)/1 var(--serif); color: var(--brown); white-space: nowrap; }
.brand.has-logo {
  /* the mask image itself is set inline on the span (a url() inside a custom property would be
     resolved against this stylesheet in Chrome); --ar and --h come from the same inline style */
  font-size: 0; height: calc(var(--h, 36px) * var(--logo-scale, 1)); width: calc(var(--h, 36px) * var(--ar, 3) * var(--logo-scale, 1));
  background: currentColor;
  -webkit-mask-repeat: no-repeat; -webkit-mask-position: center; -webkit-mask-size: contain;
          mask-repeat: no-repeat;         mask-position: center;         mask-size: contain;
}
.brands__note { margin-top: 30px; font-size: 14px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee { -webkit-mask-image: none; mask-image: none; width: var(--wrap); margin-inline: auto; }
  .marquee__track { animation: none; width: auto; flex-wrap: wrap; row-gap: 16px; }
  .marquee__track li[aria-hidden] { display: none; }
}

/* faq */
.faq { display: grid; gap: 0; border-top: 1px solid var(--ivory-line); }
.faq details { border-bottom: 1px solid var(--ivory-line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; align-items: baseline;
  padding: 20px 0; font: 500 clamp(19px, 1.6vw, 24px)/1.3 var(--serif);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font: 300 26px/1 var(--sans); color: var(--brown-2); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 0 22px; max-width: 46rem; font-size: 15.5px; }

/* contact */
.contact__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 40px; }
.contact__item { padding: 22px 0 0; border-top: 1px solid var(--line); }
.contact__item .card__n { color: var(--accent); }
.contact__item b { display: block; font: 500 24px/1.2 var(--serif); margin: 10px 0 6px; color: var(--ink); }
.contact__item p { font-size: 14px; }
.contact__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
/* stacked list once the storefront photo takes the other column */
.contact__grid--list { grid-template-columns: 1fr; gap: 0; margin-top: 34px; }
.contact__grid--list .contact__item { padding: 16px 0 14px; }
.contact__grid--list .contact__item b { font-size: 22px; margin: 8px 0 4px; }

/* footer: logo + social links, Explore / Legal lists and the address, then a base line. The same markup
   is on every page (hrefs differ by ../); the socials are the atelier's own accounts, as linked from
   watchmakersatelier.com, and the label above them is the client's own wording. */
.foot { position: relative; z-index: 2; background: var(--bg); color: var(--muted); padding: 72px 0 0; border-top: 1px solid var(--line); font-size: 14px; line-height: 1.55; }
.foot__grid { display: grid; grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, .8fr)) minmax(0, 1.1fr); gap: 44px clamp(24px, 4vw, 64px); align-items: start; }
.foot__brand { display: grid; justify-items: start; }
.foot .logo { height: 44px; max-width: 100%; color: var(--ink); opacity: .9; }
.foot__label { margin: 0 0 20px; font: 500 11px/1.4 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }
.foot__brand .foot__label { margin: 36px 0 14px; }
.foot__social { display: flex; gap: 12px; }
.foot__social a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--brown); transition: background .25s, transform .25s var(--ease); }
.foot__social a:hover { background: #fff; transform: translateY(-2px); }
.foot__social svg { width: 20px; height: 20px; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.foot__col a { transition: color .2s; }
.foot__col a:hover, .foot__col a[aria-current="page"] { color: var(--ink); }
.foot__contact li { display: grid; grid-template-columns: 16px minmax(0, 1fr); gap: 12px; align-items: start; }
.foot__contact svg { width: 16px; height: 16px; margin-top: 3px; fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.foot__contact a { overflow-wrap: anywhere; }
.foot__base { display: flex; flex-wrap: wrap; gap: 6px 30px; justify-content: space-between; margin-top: 64px; padding: 22px 0 30px; border-top: 1px solid var(--line); font-size: 12.5px; opacity: .85; }
@media (max-width: 980px) {
  .foot__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .foot__brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .foot { padding-top: 56px; }
  .foot__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 24px; }
  .foot__col:last-child { grid-column: 1 / -1; }
  .foot .logo { height: 38px; }
  .foot__base { margin-top: 48px; }
}


/* ---------------------------------------------------------------- photos
   Every <figure class="photo"> is a slot for a real photograph. Drop a file at the <img src> path
   (assets/photos/README.md lists them) and it fills the frame -- object-fit: cover, so any size or
   ratio works; set --focus on the figure to move the crop (e.g. style="--focus: 50% 20%" keeps the
   top). No caption over the picture (removed 2026-09-16). While the file is missing the figure carries
   .is-empty (js/atelier.js keeps it in sync with the image's load state) and draws a labelled
   placeholder from its data-label / data-spec attributes instead of a broken image. */
.photo {
  position: relative; margin: 0; overflow: hidden;
  border-radius: 4px;
  background: var(--ivory-2);
  aspect-ratio: var(--ar, 4 / 5);
}
.photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: var(--focus, 50% 50%);
}
.photo--tall { --ar: 4 / 5; }
.photo--wide { --ar: 3 / 2; }
.photo--square { --ar: 1; }

.photo.is-empty {
  border: 1px solid var(--ivory-line);
  background:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='28'%20height='28'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23836247'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Crect%20x='3'%20y='3'%20width='18'%20height='18'%20rx='1'/%3E%3Ccircle%20cx='8.5'%20cy='8.5'%20r='1.5'/%3E%3Cpath%20d='M21%2015l-5-5L5%2021'/%3E%3C/svg%3E") no-repeat center calc(50% - 58px) / 28px,
    repeating-linear-gradient(135deg, rgba(80, 34, 0, .045) 0 1px, transparent 1px 12px),
    var(--ivory-2);
}
.photo.is-empty img { visibility: hidden; }
.photo.is-empty::before, .photo.is-empty::after {
  position: absolute; left: 6%; width: 88%; top: 50%; text-align: center;
}
.photo.is-empty::before {
  content: attr(data-label);
  transform: translateY(-100%);
  font: italic 500 clamp(19px, 1.8vw, 25px)/1.25 var(--serif); color: var(--brown-2);
}
.photo.is-empty::after {
  content: 'Photo · ' attr(data-spec);
  transform: translateY(8px);
  font: 500 10.5px/1.6 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--ivory-muted); opacity: .75;
}
.sect--dark .photo { background: rgba(255, 255, 255, .04); }
.sect--dark .photo.is-empty {
  border-color: var(--line);
  background:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='28'%20height='28'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23c9a27e'%20stroke-width='1.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Crect%20x='3'%20y='3'%20width='18'%20height='18'%20rx='1'/%3E%3Ccircle%20cx='8.5'%20cy='8.5'%20r='1.5'/%3E%3Cpath%20d='M21%2015l-5-5L5%2021'/%3E%3C/svg%3E") no-repeat center calc(50% - 58px) / 28px,
    repeating-linear-gradient(135deg, rgba(249, 247, 235, .05) 0 1px, transparent 1px 12px),
    rgba(255, 255, 255, .03);
}
.sect--dark .photo.is-empty::before { color: var(--accent-2); }
.sect--dark .photo.is-empty::after { color: var(--muted); }

/* copy beside one tall photo (Club & Cafe, Contact) */
.two--photo { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); align-items: center; }
.two--photo > .photo:first-child { order: -1; }
.two--photo .tiles { margin-top: 34px; }
.tiles--stack { grid-template-columns: 1fr; }

/* Straps: the copy beside two stacks of photographs. One stack is a 4:5 over a 1:1, the other a
   1:1 over a 4:5, so the two come out the same height. They are separate columns rather than one
   grid, or shared row heights would leave a gap under the square in each stack. */
.two--straps { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: center; }
.two--straps .tiles { margin-top: 34px; }
.straps__photos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.straps__col { display: grid; gap: 14px; align-content: start; }
.straps__more { margin-top: 28px; }

/* Inside the atelier: a mosaic of square cells -- one 2x2, two 1x1, one 2x1 */
.sect--gallery .gallery__head { margin-bottom: 38px; }
.mosaic {
  --cell: calc((var(--wrap) - 3 * 14px) / 4);
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: var(--cell); gap: 14px;
}
.mosaic .photo { aspect-ratio: auto; height: 100%; }
.mosaic__a { grid-column: span 2; grid-row: span 2; }
.mosaic__d { grid-column: span 2; }

.team__bench { margin-top: 16px; font-size: 15.5px; }
.team__bench b { color: var(--ivory-ink); font-weight: 500; }

/* Team: a wide workshop photo and a portrait, column ratio chosen so 3:2 and 4:5 come out the same height */
.team__photos { display: grid; grid-template-columns: minmax(0, 1.875fr) minmax(0, 1fr); gap: 14px; margin-top: 48px; }

/* ---------------------------------------------------------------- credentials
   A block at the foot of Team, not a section of its own: these are the three people's papers, so
   they belong under the people. One shelf per person -- the name on the left, that person's
   certificates on the right as plates, four to a row on a desktop so the plates line up down the
   whole block however many a shelf holds. A plate is the flattened photograph of the certificate (assets/credentials/) laid on the
   page rather than cropped into a frame -- object-fit: contain, since the set is a mix of portrait
   and landscape sheets and a chopped-off certificate would be a strange thing to show. Clicking
   one opens <dialog class="cert">, filled from the card itself by js/credentials.js.
   The guilloche is the engine-turned lattice printed around the WOSTEP sheets, redrawn as two
   crossing waves and used as the section's rule and as the plate's ground while the image loads. */
.creds-block .guilloche {
  height: 16px; margin: 76px 0 40px;              /* the rule is what separates it from the values above */
  background: var(--guilloche) repeat-x center / auto 16px;
  opacity: .5;
}
.creds__head { max-width: 62ch; margin-bottom: 42px; }
.creds__head h3 {
  margin: 14px 0 14px;
  font-size: clamp(26px, 2.7vw, 40px); line-height: 1.08;
  text-transform: none; letter-spacing: 0; color: var(--ivory-ink); font-weight: 500;
}
.creds__head p:not(.eyebrow) { font-size: clamp(16px, 1.2vw, 19px); line-height: 1.55; }

.creds { display: grid; gap: 46px; }
.cred-shelf { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 3.2fr); gap: clamp(20px, 4vw, 56px); align-items: start; }
.cred-shelf + .cred-shelf { border-top: 1px solid var(--ivory-line); padding-top: 46px; }
.cred-shelf__who h4 { margin: 0; font: 500 26px/1.1 var(--serif); color: var(--ivory-ink); }
.cred-shelf__who p {
  margin-top: 8px; font: 500 11px/1.6 var(--sans);
  letter-spacing: .16em; text-transform: uppercase; color: var(--brown-2);
}
.cred-shelf__list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; margin: 0; padding: 0; list-style: none; }

.cred {
  display: block; width: 100%; text-align: left; padding: 0; border: 0; background: none;
  color: inherit; font: inherit; cursor: pointer;
}
.cred__plate {
  display: block; aspect-ratio: 3 / 4; margin-bottom: 14px; padding: 7%;
  border: 1px solid var(--ivory-line); border-radius: 3px;
  background: var(--guilloche-faint) repeat center / 26px 13px, #fffdf6;
  box-shadow: 0 1px 0 rgba(80, 34, 0, .05);
  transition: box-shadow .5s var(--ease), transform .5s var(--ease), border-color .5s var(--ease);
}
.cred__plate img {
  width: 100%; height: 100%; display: block; object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(80, 34, 0, .16));
}
.cred:hover .cred__plate, .cred:focus-visible .cred__plate {
  transform: translateY(-3px);
  border-color: rgba(80, 34, 0, .3);
  box-shadow: 0 10px 26px rgba(80, 34, 0, .13);
}
.cred:focus-visible { outline: none; }
.cred:focus-visible .cred__plate { outline: 2px solid var(--brown); outline-offset: 3px; }
.cred__issuer {
  display: block; min-height: 3em;                /* two lines, so the titles line up across a row */
  font: 500 10px/1.5 var(--sans);
  letter-spacing: .14em; text-transform: uppercase; color: var(--brown-2);
}
.cred__title { display: block; margin: 5px 0 5px; font: 500 19px/1.2 var(--serif); color: var(--ivory-ink); }
.cred__detail { display: block; font-size: 13.5px; line-height: 1.5; color: var(--ivory-muted); }

/* one certificate, full size */
.cert {
  position: relative;
  width: min(1020px, 92vw); max-height: 92vh; padding: 0; overflow: auto;
  border: 1px solid var(--ivory-line); border-radius: 4px;
  background: var(--ivory); color: var(--ivory-ink);
}
.cert::backdrop { background: rgba(21, 12, 6, .62); }
.cert__inner { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 0; }
.cert__sheet {
  display: flex; align-items: center; justify-content: center; padding: clamp(18px, 3vw, 34px);
  background: var(--guilloche-faint) repeat center / 32px 16px, #fffdf6;
  border-right: 1px solid var(--ivory-line);
}
.cert__sheet img {
  max-width: 100%; max-height: 74vh; display: block;
  filter: drop-shadow(0 4px 18px rgba(80, 34, 0, .2));
}
.cert__body { padding: clamp(22px, 3vw, 40px); align-self: center; }
.cert__body h2 { font-size: clamp(26px, 3vw, 38px); line-height: 1.08; margin: 14px 0 16px; }
.cert__detail { font-size: 16px; line-height: 1.55; }
.cert__more { margin-top: 14px; font-size: 14px; color: var(--ivory-muted); }
.cert__close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  padding: 7px 13px; cursor: pointer;
  border: 1px solid var(--ivory-line); border-radius: 2px; background: rgba(249, 247, 235, .9);
  color: var(--ivory-ink); font: 500 10.5px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase;
}
.cert__close:hover { background: var(--brown); color: var(--ivory); border-color: var(--brown); }

/* ---------------------------------------------------------------- reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .btn { transition: none; }
}

/* ---------------------------------------------------------------- responsive */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card--wide { grid-column: span 2; }
  .values, .contact__grid { grid-template-columns: 1fr; }
  .two { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: 1fr; }
  .two--photo > .photo { --ar: 4 / 3; }       /* stacked under the copy, a landscape crop keeps the page short */
  .two--photo > .photo:first-child { order: 0; }
  .straps__photos .photo { --ar: 1; }        /* under the copy, four squares keep the block short */
  .mosaic { --cell: calc((var(--wrap) - 14px) / 2); grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team__photos { grid-template-columns: 1fr; }
  .team__photos .photo--tall { --ar: 4 / 3; }
  .cred-shelf { grid-template-columns: 1fr; gap: 24px; }
  .cred-shelf__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cert__inner { grid-template-columns: 1fr; }
  .cert__sheet { border-right: 0; border-bottom: 1px solid var(--ivory-line); }
  .cert__sheet img { max-height: 54vh; }
}
@media (max-width: 860px) {
  .nav__brand .logo { height: 32px; }
  .scroll-hint { display: none; }

  /* Phones: js/atelier.js lifts the watch into the upper half of the screen (`lift`) and the copy
     sits in the lower half over a scrim, so a bracelet link never runs through a headline. */
  .hero { align-content: end; padding: 0 0 6vh; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__strip { position: static; margin-top: 6vh; padding-top: 16px; gap: 8px 20px; font-size: 11px; }
  .press { gap: 10px 14px; }
  .press img { height: 26px; }
  .press img.press__cna { height: 31px; }
  .press img.press__onefm { height: 33px; }
  .chapter { align-items: end; padding-bottom: 11vh; }
  .chapter__inner { max-width: 100%; }
  .hero::after, .chapter::after, .services::before {
    content: ''; position: absolute; left: -4vw; right: -4vw; z-index: -1; pointer-events: none;
  }
  .hero::after, .chapter::after {
    bottom: 0; height: 68%;
    background: linear-gradient(to top, rgba(21, 12, 6, .96) 0%, rgba(21, 12, 6, .86) 40%, rgba(21, 12, 6, 0) 100%);
  }
  .services::before {                   /* the services copy is at the top of its section */
    top: 0; height: 46vh;
    background: linear-gradient(to bottom, rgba(21, 12, 6, .94) 0%, rgba(21, 12, 6, .75) 50%, rgba(21, 12, 6, 0) 100%);
  }
  .cards { grid-template-columns: 1fr; }
  .card--wide { grid-column: auto; }
  /* Backdrop blur over a canvas that repaints every frame is the most expensive thing a phone GPU
     is asked to do on this page, so the cards and the bar go (nearly) opaque instead. */
  .card, .card:hover { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(30, 17, 9, .86); transform: none; }
  .nav.is-scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(21, 12, 6, .92); }
  body.on-ivory .nav.is-scrolled { background: rgba(249, 247, 235, .94); }
  .stage-glow { background: radial-gradient(70% 45% at 50% 34%, rgba(96, 62, 38, .5), transparent 70%), var(--bg); }
  .brand { font-size: 22px; --logo-scale: .8; }
  .marquee__track li { padding-right: 40px; }
  .cred-shelf__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .cred__title { font-size: 17px; }
  .cred__detail { font-size: 12.5px; }
  .cert { width: 96vw; }
}

/* ---------------------------------------------------------------- current page, "more" links, mobile menu
   Shared by index.html and the sub-pages (projects/, shop/). js/chrome.js drives the states. */
.nav__links a.is-active { opacity: 1; border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.nav__cta { display: none; }                      /* the CTA inside the links only shows in the mobile panel */
.more-link {
  display: inline-flex; align-items: center; gap: 10px; padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font: 500 12px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: inherit;
}
.more-link:hover .btn__arrow { transform: translateX(3px); }
.services__more { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 16px 34px; }
.faq + .more-link, p + .more-link { margin-top: 22px; }
.nav__toggle {
  display: none; align-items: center; gap: 10px;
  margin: -14px 0; padding: 14px 0 14px 16px;      /* a 40px-tall thumb target; the extra margin keeps the bar height */
  background: none; border: 0; color: inherit; cursor: pointer;
  font: 500 12px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase;
}
.nav__toggle::after { content: ''; width: 18px; height: 9px; border-top: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; }
body.nav-open { overflow: hidden; }
/* The bar collapses to the Menu button below 1220px, well above the phone breakpoint: the logo, eight
   links and the consultation button needed a ~1211px viewport side by side (measured 2026-09-13, with
   Shop; the six left after the Blog and Process links went on 2026-09-16 are narrower still; with My Watches
   and its person mark, 2026-09-17, the links clear the logo and the button by 31px each side at 1221px), and
   squeezed any narrower the links wrap onto two lines. js/chrome.js closes an open panel
   when the window grows past the same width. */
@media (max-width: 1220px) {
  .nav__links { display: none; }
  .nav > .btn { display: none; }
  .nav__toggle { display: inline-flex; }
  /* while open the bar drops its blur and background so the panel can be fixed to the viewport
     (backdrop-filter would make the nav the panel's containing block) */
  .nav.is-open, body.on-ivory .nav.is-open { background: transparent; border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; justify-content: center; justify-content: safe center; gap: 22px;
    position: fixed; inset: 0; z-index: -1; overflow-y: auto;       /* short windows scroll the list instead of clipping it */
    padding: 96px 8vw 64px; background: var(--bg);
    font: 500 clamp(24px, min(7.5vw, 4.6vh), 38px)/1.1 var(--serif); letter-spacing: 0;
  }
  body.on-ivory .nav.is-open .nav__links { background: var(--ivory); color: var(--ivory-ink); }
  .nav.is-open .nav__links a { opacity: 1; }
  .nav.is-open .nav__links a.is-active { border: 0; padding: 0; color: var(--accent-2); }
  body.on-ivory .nav.is-open .nav__links a.is-active { color: var(--brown-2); }
  .nav.is-open .nav__cta { display: inline-flex; align-self: flex-start; margin-top: 18px; font: 500 13px/1 var(--sans); letter-spacing: .115em; }
  .nav__account::before { content: none; }                  /* no divider in the one-column list */
  .nav.is-open .nav__icon { width: 1em; height: 1em; margin-right: .3em; vertical-align: -.1em; stroke-width: 1.3; }
}
