/* ==========================================================================
   Zeus 3D — landing page
   DM Sans for headings and body, DM Mono for buttons and eyebrows.
   Black / white / grey. Desktop-first.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --ink:        #0a0a0a;
  --ink-soft:   #3d3d3d;
  --muted:      #7a7a7a;
  --muted-dark: #a2a2a2;
  --surface:    #ffffff;
  --surface-2:  #fafafa;
  --img-bg:     #efefef;
  --line:       #ececec;
  --line-2:     #dcdcdc;
  --dark:       #0a0a0a;
  --paper:      #fbfaf8;   /* merch page ground */
  --plate:      #0d0d0f;   /* the one ground every product stands on */
  --muted-2:    #a8a8a8;

  --font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --fs-hero:    clamp(2rem, 3.95vw, 3.5rem);       /*  32 → 56 */
  --fs-display: clamp(1.75rem, 3.4vw, 3rem);       /*  28 → 48 */
  --fs-lead:    clamp(.875rem, 1.05vw, .9375rem);  /*  14 → 15 */
  --fs-body:    .9375rem;                          /*  15 */
  --fs-nav:     .875rem;                           /*  14 */
  --fs-btn:     .875rem;                           /*  14 */
  --fs-btn-sm:  .8125rem;                          /*  13 */
  --fs-eyebrow: .6875rem;                          /*  11 */
  --fs-mail:    clamp(1.125rem, 1.6vw, 1.5rem);    /*  18 → 24 */

  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-8: 32px; --s-10: 40px; --s-12: 48px;

  --container:   1296px;
  --gutter:      72px;
  --nav-h:       88px;
  --section-gap: clamp(64px, 7vw, 104px);
  --head-gap:    clamp(32px, 3.6vw, 52px);
  --grid-gap:    var(--s-6);

  --r-btn: 6px; --r-card: 10px; --r-pill: 999px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --slide-dur: 6s;
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, p, figure, ul, ol, hr { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { display: block; max-width: 100%; border-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; }
summary::-webkit-details-marker { display: none; }
svg { display: block; }

::selection { background: var(--ink); color: #fff; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.cta :focus-visible, .hero :focus-visible, .site-footer :focus-visible { outline-color: #fff; }

.u-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 50%; top: 0;
  translate: -50% -120%;
  z-index: 200;
  padding: var(--s-3) var(--s-5);
  background: var(--ink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: var(--fs-btn-sm);
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: translate .25s var(--ease);
}
.skip-link:focus-visible { translate: -50% 0; }

.container {
  width: min(var(--container), 100% - (var(--gutter) * 2));
  margin-inline: auto;
}
.section { margin-top: var(--section-gap); }

/* --------------------------------------------------------------------------
   3. Type
   -------------------------------------------------------------------------- */
.display {
  font-family: var(--font-sans);
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.025em;
}

/* the pill eyebrow — same treatment on white and on black */
.eyebrow {
  display: inline-block;
  padding: 6px 13px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.eyebrow--invert { border-color: transparent; }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 15px var(--s-6);
  background: var(--ink);
  border: 0;
  border-radius: var(--r-btn);
  color: #fff;
  font-family: var(--font-mono);
  font-size: var(--fs-btn);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease);
}
.btn:hover  { background: #2b2b2b; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn__icon  { width: 18px; height: 18px; flex: none; }

.btn--sm { padding: 12px var(--s-5); font-size: var(--fs-btn-sm); }

.btn--invert { background: var(--surface); color: var(--ink); }
.btn--invert:hover { background: #e6e6e6; }

/* outlined pill, used in the footer on black */
.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--r-pill);
  color: #fff;
  padding: 12px var(--s-6);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.btn--ghost:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .55); }

/* --------------------------------------------------------------------------
   5. Navbar
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 1px 0 var(--line), 0 10px 26px -22px rgba(0, 0, 0, .5); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  min-height: var(--nav-h);
  padding-block: var(--s-4);
}
.nav__brand { width: 58px; flex: none; }
.nav__brand img { width: 100%; height: auto; }

.nav__links { display: flex; align-items: center; gap: var(--s-8); }
.nav__links a {
  position: relative;
  font-size: var(--fs-nav);
  color: var(--ink-soft);
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -5px;
  height: 1px;
  background: currentColor;
  scale: 0 1;
  transform-origin: left;
  transition: scale .28s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { scale: 1 1; }
/* current page */
.nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a[aria-current="page"]::after { scale: 1 1; }

/* --------------------------------------------------------------------------
   5.1 Mobile menu — hidden above 768px, where the inline links do the work
   -------------------------------------------------------------------------- */
.nav__burger {
  display: none;                 /* switched on in the 768px block */
  position: relative;
  flex: none;
  width: 44px;
  height: 44px;
  margin-right: -11px;           /* optical: bars align with the gutter */
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav__burger-bar {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: translate .3s var(--ease), rotate .3s var(--ease);
}
.nav__burger-bar:nth-child(1) { top: 19px; }
.nav__burger-bar:nth-child(2) { top: 25px; }
.nav__burger[aria-expanded="true"] .nav__burger-bar:nth-child(1) { translate: 0 3px;  rotate: 45deg; }
.nav__burger[aria-expanded="true"] .nav__burger-bar:nth-child(2) { translate: 0 -3px; rotate: -45deg; }

.navmenu {
  position: fixed;
  inset: 0;
  z-index: 90;                   /* under the bar, so the logo and X stay put */
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + var(--s-8)) var(--gutter) calc(var(--s-8) + env(safe-area-inset-bottom));
  background: var(--surface);
  opacity: 0;
  visibility: hidden;
  transition: opacity .32s var(--ease), visibility .32s var(--ease);
}
.merch .navmenu { background: var(--paper); }
.navmenu.is-open { opacity: 1; visibility: visible; }

/* the page must not scroll behind an open panel */
html.is-menu-open,
html.is-menu-open body { overflow: hidden; }
.navmenu { overflow-y: auto; overscroll-behavior: contain; }

.navmenu__links {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.navmenu__links a {
  display: block;
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 7.6vw, 2.125rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.2;
  color: var(--ink);
  opacity: 0;
  translate: 0 16px;
  transition: opacity .42s var(--ease), translate .42s var(--ease);
}
.navmenu__links a[aria-current="page"] { color: var(--muted); }
.navmenu.is-open .navmenu__links a { opacity: 1; translate: 0 0; }
.navmenu.is-open .navmenu__links a:nth-child(1) { transition-delay: .05s; }
.navmenu.is-open .navmenu__links a:nth-child(2) { transition-delay: .10s; }
.navmenu.is-open .navmenu__links a:nth-child(3) { transition-delay: .15s; }
.navmenu.is-open .navmenu__links a:nth-child(4) { transition-delay: .20s; }
.navmenu.is-open .navmenu__links a:nth-child(5) { transition-delay: .25s; }

.navmenu__foot {
  margin-top: auto;
  padding-top: var(--s-8);
  opacity: 0;
  translate: 0 16px;
  transition: opacity .42s var(--ease) .3s, translate .42s var(--ease) .3s;
}
.navmenu.is-open .navmenu__foot { opacity: 1; translate: 0 0; }
.navmenu__foot .btn { width: 100%; }
.navmenu__mail {
  display: block;
  margin-top: var(--s-5);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: .06em;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .navmenu,
  .navmenu__links a,
  .navmenu__foot,
  .nav__burger-bar { transition-duration: .01ms; }
  .navmenu.is-open .navmenu__links a { transition-delay: 0s; }
}

/* --------------------------------------------------------------------------
   6. Hero — full-bleed photo, copy left, indicator bottom-right
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: clamp(500px, 42vw, 620px);
  overflow: hidden;
  isolation: isolate;
  background: var(--img-bg);
  display: flex;
  align-items: center;
}

.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--px, 50%) var(--py, 50%);
  opacity: 0;
  transition: opacity .8s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__media.is-instant .hero__slide { transition: none; }

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: min(var(--container), 100% - (var(--gutter) * 2));
}
.hero__title {
  color: #fff;
  /* two lines, always: "If You Can Imagine It," measures 9.13em, so the
     type scales to the container rather than spilling onto a third line */
  font-size: min(var(--fs-hero), calc((100vw - var(--gutter) * 2) / 9.3));
  margin: var(--s-4) 0 var(--s-4);
}
.hero__sub {
  max-width: 44ch;
  margin-bottom: var(--s-6);
  color: rgba(255, 255, 255, .9);
  font-size: var(--fs-lead);
  line-height: 1.6;
}

.hero__dots {
  position: absolute;
  z-index: 3;
  right: max(var(--gutter), calc((100% - var(--container)) / 2));
  bottom: var(--s-6);
  display: flex;
  gap: var(--s-2);
}
.hero__dot {
  position: relative;
  width: 24px;
  height: 3px;
  background: rgba(255, 255, 255, .38);
  overflow: hidden;
  cursor: pointer;
  transition: width .45s var(--ease), background-color .3s var(--ease);
}
.hero__dot.is-active { width: 48px; }
.hero__dot::before { content: ""; position: absolute; inset: -14px -4px; }
.hero__dot:hover { background: rgba(255, 255, 255, .6); }
.hero__dot-fill {
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
}
.hero__dot.is-active .hero__dot-fill { animation: dot-fill var(--slide-dur) linear forwards; }
@keyframes dot-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* pixel-grid reveal between photos */
.hero__pixels {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(var(--px-cols, 14), 1fr);
  grid-template-rows: repeat(var(--px-rows, 8), 1fr);
  pointer-events: none;
  visibility: hidden;
}
.hero__pixels.is-on { visibility: visible; }
.hero__px {
  opacity: 0;
  background-repeat: no-repeat;
  transition: opacity .32s linear;
  transition-delay: var(--d, 0ms);
}
.hero__pixels.is-revealing .hero__px { opacity: 1; }

/* --------------------------------------------------------------------------
   7. Work — centred head, 4-up grid
   -------------------------------------------------------------------------- */
.sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sec-head > .display { margin: var(--s-4) 0 var(--s-6); }

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-top: var(--head-gap);
}
.shot {
  position: relative;
  aspect-ratio: 14 / 15;
  background: var(--img-bg);
  border-radius: var(--r-card);
  overflow: hidden;
}
.shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: scale .7s var(--ease);
}
.shot:hover img { scale: 1.04; }

/* --------------------------------------------------------------------------
   8. Final CTA — black, full-bleed, with the swipeable strip
   -------------------------------------------------------------------------- */
.cta {
  margin-top: var(--section-gap);
  padding-top: clamp(56px, 6vw, 88px);
  padding-bottom: clamp(40px, 4vw, 56px);
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cta__inner > .display { margin: var(--s-4) 0 var(--s-4); }
.cta__sub {
  max-width: 58ch;
  margin-bottom: var(--s-6);
  color: rgba(255, 255, 255, .82);
  font-size: var(--fs-lead);
  line-height: 1.6;
}

.marquee {
  width: 100%;
  margin-top: clamp(40px, 4.5vw, 64px);
  overflow: hidden;
  touch-action: pan-y;
}
.marquee.is-draggable { cursor: grab; }
.marquee.is-dragging  { cursor: grabbing; }
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
  will-change: transform;
}
.marquee.is-interactive .marquee__track { animation: none; }
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.marquee__set { display: flex; }
.marquee__item {
  flex: 0 0 clamp(190px, 20.5vw, 296px);
  width: clamp(190px, 20.5vw, 296px);
  margin-right: var(--grid-gap);
}
.card {
  position: relative;
  aspect-ratio: 6 / 7;
  background: #1a1a1a;
  border-radius: var(--r-card);
  overflow: hidden;
}
.card img,
.card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.card--video { background: #000; }

/* shown only when the browser refuses to autoplay (Low Power Mode, Data
   Saver, reduced motion) — the poster is already visible behind it */
.card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: transparent;   /* never tint the clip */
}
.card__play[hidden] { display: none; }
.card__play svg {
  width: 22px; height: 22px;
  padding: 14px;
  box-sizing: content-box;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  transition: transform .2s var(--ease);
}
.card__play:hover svg { transform: scale(1.08); }
.marquee img { -webkit-user-drag: none; user-select: none; -webkit-user-select: none; }
.marquee.is-dragging .card img { transition: none; }

/* --------------------------------------------------------------------------
   8b. Partners — logo ticker on black
   -------------------------------------------------------------------------- */
.partners {
  /* white breathing room after the FAQs, before the black begins */
  margin-top: var(--section-gap);
  padding-block: clamp(56px, 6vw, 88px);
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
/* the footer sits outside <main>, so it is not a sibling of .partners —
   both are black and must read as one block, so it carries no top gap */
.partners__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.partners__head > .display { margin-top: var(--s-4); }

.logos {
  width: 100%;
  margin-top: clamp(32px, 4vw, 52px);
  overflow: hidden;
  touch-action: pan-y;
}
.logos.is-draggable { cursor: grab; }
.logos.is-dragging  { cursor: grabbing; }
.logos__track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.logos.is-interactive .logos__track { animation: none; }
.logos__set { display: flex; align-items: center; }
.logos__item { flex: 0 0 auto; margin-right: clamp(56px, 7vw, 104px); }

.logo {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  /* desaturated by default, true colour on hover — no blur */
  filter: grayscale(1);
  opacity: .55;
  transition: filter .35s var(--ease), opacity .35s var(--ease);
}
.logo:hover, .logo:focus-visible { filter: grayscale(0); opacity: 1; }
/* nothing to hover on a touch screen, so show the real colours there */
@media (hover: none) {
  .logo { filter: none; opacity: 1; }
}
.logo__mark { height: clamp(34px, 3.4vw, 44px); width: auto; }
.logo__word { height: clamp(26px, 2.6vw, 34px); width: auto; }
.logo__name {
  font-family: var(--font-sans);
  font-size: clamp(1.0625rem, 1.5vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -.02em;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   9. FAQs — heading left, accordions right
   -------------------------------------------------------------------------- */
.faq {
  display: grid;
  /* the heading column is sized so "Questions we get asked" (10.8em) fits on
     one line at 48px, keeping the heading to the two lines it is written as */
  grid-template-columns: minmax(0, 540px) minmax(420px, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.faq__head { container-type: inline-size; }
.faq__head > .display {
  margin-top: var(--s-4);
  /* and if the column is ever narrower, the type shrinks rather than
     spilling onto a third line */
  font-size: min(var(--fs-display), 9.1cqw);
}

.faq__list { display: flex; flex-direction: column; gap: var(--s-3); }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--s-4) var(--s-5);
  transition: border-color .25s var(--ease);
}
.faq__item:hover { border-color: var(--line-2); }

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  list-style: none;
  cursor: pointer;
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1.5;
}
.faq__mark {
  width: 15px; height: 15px;
  flex: none;
  color: var(--ink);
  transition: rotate .3s var(--ease);
}
.faq__item:not([open]) .faq__mark { rotate: 45deg; }

.faq__a { border-top: 1px solid var(--line); margin-top: var(--s-3); padding-top: var(--s-3); }
.faq__a p { color: var(--muted); font-size: var(--fs-body); line-height: 1.6; }

@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
  .faq__item::details-content {
    block-size: 0;
    overflow: hidden;
    content-visibility: hidden;
    transition: block-size .3s var(--ease), content-visibility .3s allow-discrete;
  }
  .faq__item[open]::details-content { block-size: auto; content-visibility: visible; }
}

/* --------------------------------------------------------------------------
   10. Footer — dark
   -------------------------------------------------------------------------- */
.site-footer {
  /* partners is black too — the two read as one block, so no top gap */
  margin-top: 0;
  padding-block: clamp(32px, 3.6vw, 48px);
  background: var(--dark);
  color: #fff;
}

.foot__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-8);
}
.foot__label { color: var(--muted-dark); font-size: var(--fs-body); }
.foot__mail { display: flex; align-items: center; gap: var(--s-2); margin-top: var(--s-1); }
.foot__mail a {
  font-size: var(--fs-mail);
  font-weight: 500;
  letter-spacing: -.01em;
  transition: color .2s var(--ease);
}
.foot__mail a:hover { color: var(--muted-dark); }

.foot__copy {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: var(--r-btn);
  color: #fff;
  cursor: pointer;
  transition: background-color .2s var(--ease);
}
.foot__copy:hover { background: rgba(255, 255, 255, .12); }
.foot__copy svg { width: 17px; height: 17px; grid-area: 1 / 1; transition: opacity .2s var(--ease), scale .2s var(--ease); }
.foot__copy-done { opacity: 0; scale: .6; }
.foot__copy.is-done .foot__copy-icon { opacity: 0; scale: .6; }
.foot__copy.is-done .foot__copy-done { opacity: 1; scale: 1; }

.foot__rule { height: 1px; border: 0; background: rgba(255, 255, 255, .16); margin: var(--s-8) 0 var(--s-6); }
.foot__legal { text-align: center; color: var(--muted-dark); font-size: var(--fs-body); }

/* --------------------------------------------------------------------------
   11. Reveal on scroll
   -------------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  translate: 0 14px;
  transition: opacity .6s var(--ease), translate .6s var(--ease);
}
.js .reveal.is-in { opacity: 1; translate: none; }

/* --------------------------------------------------------------------------
   12. Responsive — desktop-first
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) { :root { --gutter: 48px; } }

@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  :root { --gutter: 32px; --nav-h: 76px; }
  .faq { grid-template-columns: minmax(0, 1fr); gap: var(--head-gap); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__brand { width: 52px; }
  /* the bar keeps the logo and the toggle; Book Now moves into the menu */
  .nav__burger { display: block; }
  .nav > .btn--sm { display: none; }

  /* copy sits top-left, with the photo carrying the space beneath it */
  .hero {
    height: auto;
    min-height: 78svh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-block: var(--s-8) var(--s-6);
  }
  /* the Book Now above the grid is redundant next to the one in the bar */
  .btn--hide-sm { display: none; }
  /* partners keep their true colour — there is no hover on a phone */
  .logo { filter: none; opacity: 1; }
  .hero__slide { object-position: var(--px-m, 50%) var(--py-m, 32%); }
  .hero__inner { width: min(var(--container), 100% - (var(--gutter) * 2)); }
  .hero__sub { max-width: none; }
  .hero__dots {
    position: relative;
    right: auto; bottom: auto;
    margin-top: var(--s-6);
    align-self: flex-start;
    width: min(var(--container), 100% - (var(--gutter) * 2));
    margin-inline: auto;
  }

  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-4); }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; }
  .grid { gap: var(--s-2); }
  /* full-width CTAs in the page body, but the bar button stays hugged */
  .btn { width: 100%; }
  .nav .btn--sm { width: auto; }
  .foot__top { flex-direction: column; align-items: flex-start; gap: var(--s-5); }
  .foot__top .btn--ghost { width: auto; }
}

@media (max-width: 359px) {
  .grid { grid-template-columns: minmax(0, 1fr); }
}

/* --------------------------------------------------------------------------
   13. Motion preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; translate: none; transition: none; }
  .marquee__track { animation: none; }
  .hero__slide { transition: opacity .25s linear; }
  .hero__dot.is-active .hero__dot-fill { animation: none; transform: scaleX(1); }
  .btn:hover, .shot:hover img { transform: none; scale: 1; }
}


/* ==========================================================================
   14. Merch — index and product pages
   Every product stands alone on one shared dark plate; all type sits on the
   paper ground beneath it, so the card reads as light, not as a black box.
   Class names are deliberately unique — `.card` belongs to the marquee.
   ========================================================================== */
.merch { background: var(--paper); }
.merch .site-header { background: var(--paper); }
.merch .site-footer { background: var(--dark); }

/* --------------------------------------------------------------------------
   14.1 Page head
   -------------------------------------------------------------------------- */
.mh {
  padding-top: clamp(40px, 5.2vw, 76px);
  text-align: center;
}
.mh__label {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.mh__title {
  margin-top: var(--s-4);
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3.1vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--ink);
}
.mh__sub {
  margin: var(--s-4) auto 0;
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: var(--fs-lead);
  line-height: 1.7;
}
.rule {
  display: block;
  width: 40px;
  height: 1px;
  margin: clamp(30px, 3.6vw, 48px) auto 0;
  background: var(--line-2);
}

/* --------------------------------------------------------------------------
   14.2 Product grid
   -------------------------------------------------------------------------- */
.shop {
  padding-top: clamp(36px, 4.4vw, 64px);
  padding-bottom: clamp(64px, 7vw, 104px);
}
.shop__title {
  margin-bottom: clamp(28px, 3.4vw, 48px);
  text-align: center;
  font-family: var(--font-sans);
  font-size: clamp(1.125rem, 1.6vw, 1.4375rem);
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--ink);
}
.shop__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px) clamp(16px, 1.8vw, 26px);
  list-style: none;
}

.tile {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

/* the one ground every product stands on */
.tile__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--plate);
  overflow: hidden;
}
.tile__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;   /* the product is already padded into the plate */
  transition: scale .7s var(--ease);
}
.tile:hover .tile__frame img { scale: 1.035; }

.tile__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 4px 8px;
  background: rgba(251, 250, 248, .92);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* everything below the plate sits on paper — this is where the contrast is */
.tile__body {
  padding-top: var(--s-4);
  text-align: center;
}
.tile__name {
  display: block;
  font-family: var(--font-sans);
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.4;
  color: var(--ink);
}
.tile__price {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: .8125rem;
  color: var(--ink-soft);
}
.tile__cue {
  display: inline-block;
  margin-top: var(--s-3);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line-2);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.tile:hover .tile__cue,
.tile:focus-visible .tile__cue {
  color: var(--ink);
  border-color: var(--ink);
}

/* --------------------------------------------------------------------------
   14.3 Product page
   -------------------------------------------------------------------------- */
.pdp { padding-top: clamp(20px, 2.4vw, 34px); padding-bottom: clamp(56px, 6vw, 88px); }

.crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.crumb a { color: var(--muted); text-decoration: none; }
.crumb a:hover { color: var(--ink); }
.crumb [aria-current] { color: var(--ink); }
.crumb__sep { color: var(--line-2); }

.pdp__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
  margin-top: clamp(20px, 2.6vw, 36px);
}

/* --- gallery --- */
.gal { display: grid; grid-template-columns: 66px minmax(0, 1fr); gap: 14px; }
.gal--single { grid-template-columns: minmax(0, 1fr); }

.gal__thumbs { display: flex; flex-direction: column; gap: 10px; }
.gal__thumb {
  aspect-ratio: 4 / 3;
  padding: 0;
  background: var(--plate);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color .22s var(--ease);
}
.gal__thumb img { display: block; width: 100%; height: 100%; object-fit: contain; }
.gal__thumb:hover { border-color: var(--muted); }
.gal__thumb.is-on { border-color: var(--ink); }

.gal__stage {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--plate);
  overflow: hidden;
}
.gal__stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .28s var(--ease);
}
.gal__stage img.is-swapping { opacity: 0; }

/* --- info column --- */
.pdp__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.pdp__title {
  margin-top: var(--s-3);
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--ink);
}
.pdp__price {
  margin-top: var(--s-3);
  font-family: var(--font-mono);
  font-size: 1.0625rem;
  color: var(--ink);
}
.pdp__desc {
  margin-top: var(--s-5);
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: var(--fs-body);
  line-height: 1.75;
}

.pdp__opts { margin-top: clamp(24px, 2.6vw, 34px); display: grid; gap: var(--s-6); }
.opt__key {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.opt__key b { font-weight: 400; color: var(--ink); }
.opt__set { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--s-3); }
.opt__note {
  margin-top: var(--s-3);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .05em;
  color: var(--muted);
}

.dot {
  position: relative;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--sw);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .22);
  cursor: pointer;
}
.dot::before { content: ""; position: absolute; inset: -12px -5px; }   /* 44px target */
.dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  opacity: 0;
  transition: opacity .2s var(--ease);
}
.dot.is-on::after { opacity: 1; }

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 40px;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--line-2);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip.is-on { background: var(--ink); border-color: var(--ink); color: #fff; }

.buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(24px, 2.8vw, 36px);
  padding: 17px 20px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: var(--fs-btn-sm);
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity .2s var(--ease);
}
.buy:hover { opacity: .86; }
.buy svg { width: 17px; height: 17px; flex: none; }

.pdp__notes {
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
  list-style: none;
  display: grid;
  gap: var(--s-3);
}
.pdp__notes li {
  position: relative;
  padding-left: 16px;
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--muted);
}
.pdp__notes li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 5px;
  height: 1px;
  background: var(--line-2);
}

/* --- the rest of the range --- */
.also { padding-bottom: clamp(64px, 7vw, 104px); }
.also__head {
  padding-top: clamp(40px, 4.6vw, 68px);
  border-top: 1px solid var(--line);
  margin-bottom: clamp(24px, 2.8vw, 36px);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.also__grid {
  display: grid;
  /* three tiles, held to the same width they have in the four-up catalogue */
  max-width: 992px;
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 26px);
  list-style: none;
}

/* --------------------------------------------------------------------------
   14.4 Narrower screens
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .pdp__grid { grid-template-columns: minmax(0, 1fr); gap: clamp(28px, 4vw, 40px); }
  .pdp__info { max-width: 560px; }
}

@media (max-width: 900px) {
  .shop__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  /* three across is too tight to read on a phone — let the third wrap */
  .also__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  /* stage first, thumbnails as a row underneath */
  .gal { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .gal__thumbs { flex-direction: row; }
  .gal__thumb { flex: 0 0 72px; }
}

@media (max-width: 560px) {
  .shop__grid { gap: var(--s-5) var(--s-3); }
  .also__grid { gap: var(--s-3); }
  .tile__tag { top: 7px; left: 7px; padding: 3px 6px; }
  .tile__cue { display: none; }
  .pdp__notes li { font-size: .78125rem; }
}

@media (max-width: 359px) {
  .shop__grid,
  .also__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .tile:hover .tile__frame img { scale: 1; }
  .gal__stage img { transition: none; }
}
