/* ============================================================
   ADAM SHOTS - Football & Sports Photography
   Dark editorial system: black / white / grey
   ============================================================ */

:root {
  --bg: #0b0b0c;
  --bg-2: #121214;
  --bg-3: #17171a;
  --ink: #f4f4f2;
  --mut: #98989b;
  --dim: #5c5c60;
  --line: rgba(255, 255, 255, 0.1);
  --line-2: rgba(255, 255, 255, 0.18);
  --max: 1440px;
  --gut: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; user-select: none; -webkit-user-drag: none; }

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

::selection { background: var(--ink); color: var(--bg); }

/* ---------- type ---------- */

.display {
  font-family: "Archivo Black", "Archivo", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.92;
}

.label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--mut);
}

.link-arrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  transition: opacity 0.25s;
}
.link-arrow:hover { opacity: 0.6; }
.link-arrow .arr { transition: transform 0.3s var(--ease); }
.link-arrow:hover .arr { transform: translateX(5px); }

/* ---------- header ---------- */

.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gut);
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-head.scrolled {
  background: rgba(11, 11, 12, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px var(--gut);
  border-bottom-color: var(--line);
}

.wordmark {
  font-family: "Archivo Black", sans-serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.wordmark sup { font-size: 8px; letter-spacing: 0; }

.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mut);
  transition: color 0.25s;
  position: relative;
}
.site-nav a:hover, .site-nav a.active { color: var(--ink); }
.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--ink);
}
.site-nav .cta {
  color: var(--ink);
  border: 1px solid var(--line-2);
  padding: 10px 20px;
  border-radius: 999px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.site-nav .cta:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.site-nav .cta.active::after { display: none; }

.burger {
  display: block;
  background: none;
  border: 0;
  width: 40px; height: 40px;
  cursor: pointer;
  position: relative;
  z-index: 130;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gut);
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu { perspective: 1100px; }
.mobile-menu a {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(34px, 6.5vw, 78px);
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  opacity: 0;
  transform: rotateX(-80deg);
  transform-origin: 50% 0%;
  transition: opacity 0.4s var(--ease), transform 0.6s cubic-bezier(0.2, 0.85, 0.3, 1.18), color 0.25s;
}
.mobile-menu.open a { opacity: 1; transform: rotateX(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.16s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.27s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.38s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.49s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.6s; }

/* hover: the letters tip over one after another - actual dominoes */
.mobile-menu a .dl {
  display: inline-block;
  transform-origin: 85% 100%;
  transition: transform 0.3s var(--ease), color 0.3s;
  transition-delay: calc(var(--i) * 0.038s);
}
.mobile-menu a:hover .dl {
  transform: rotate(12deg) translateY(3px);
  color: var(--acc);
}
.mobile-menu a span { color: var(--dim); font-family: "Archivo", sans-serif; font-size: 12px; letter-spacing: 0.2em; vertical-align: super; margin-right: 14px; }

/* ---------- hero (home) ---------- */

.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroIn 2.2s var(--ease) both;
}
@keyframes heroIn {
  from { transform: scale(1.07); filter: brightness(0.6); }
  to { transform: scale(1); filter: brightness(1); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(11,11,12,0.30) 0%, rgba(11,11,12,0.05) 35%, rgba(11,11,12,0.55) 72%, rgba(11,11,12,0.96) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut) clamp(36px, 6vh, 72px);
}
.hero-eyebrow { margin-bottom: 18px; color: rgba(244,244,242,0.85); }
.hero-title {
  font-size: clamp(58px, 12.5vw, 196px);
  color: var(--ink);
}
.hero-sub {
  margin-top: 22px;
  max-width: 560px;
  color: rgba(244,244,242,0.72);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}
.scroll-cue {
  position: absolute;
  right: calc(var(--gut) / 1.5);
  bottom: 40px;
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(244,244,242,0.6);
  display: flex;
  align-items: center;
  gap: 12px;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 54px;
  background: rgba(244,244,242,0.5);
  animation: cueDrop 1.8s var(--ease) infinite;
}
@keyframes cueDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- ticker ---------- */

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  background: var(--bg);
}
.ticker-track {
  display: inline-flex;
  animation: tick 36s linear infinite;
}
.ticker span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mut);
  padding-right: 3em;
}
.ticker span b { color: var(--ink); font-weight: 600; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) var(--gut) 0;
}
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

/* ---------- mosaic (selected work) ---------- */

.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(8px, 1.2vw, 16px);
}
.mosaic figure {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.mosaic figure:hover img { transform: scale(1.045); }
.mosaic figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 16px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(to top, rgba(11,11,12,0.85), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s var(--ease);
}
.mosaic figure:hover figcaption { opacity: 1; transform: none; }
.m-a { grid-column: span 7; aspect-ratio: 3 / 2; }
.m-b { grid-column: span 5; aspect-ratio: 4 / 3.42; }
.m-c { grid-column: span 4; aspect-ratio: 4 / 5; }
.m-d { grid-column: span 4; aspect-ratio: 4 / 5; }
.m-e { grid-column: span 4; aspect-ratio: 4 / 5; }
.m-f { grid-column: span 5; aspect-ratio: 4 / 3.42; }
.m-g { grid-column: span 7; aspect-ratio: 3 / 2; }
.m-h { grid-column: span 12; aspect-ratio: 21 / 9; }
.m-h img { object-position: center 32%; }

/* ---------- statement ---------- */

.statement { text-align: left; max-width: 1000px; }
.statement h2 {
  font-size: clamp(32px, 5vw, 68px);
  margin-bottom: 28px;
}
.statement h2 em { font-style: normal; color: var(--dim); }
.statement p {
  color: var(--mut);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 640px;
  margin-bottom: 34px;
}

/* ---------- category index ---------- */

.cat-index { border-top: 1px solid var(--line); }
.cat-row {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr auto auto;
  align-items: center;
  gap: clamp(14px, 3vw, 40px);
  padding: clamp(20px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.cat-row .num { font-size: 12px; color: var(--dim); letter-spacing: 0.2em; }
.cat-row .name {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(26px, 4.6vw, 60px);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: transform 0.5s var(--ease), color 0.3s;
}
.cat-row:hover .name { transform: translateX(14px); }
.cat-row .meta { font-size: 12px; color: var(--mut); letter-spacing: 0.18em; text-transform: uppercase; text-align: right; }
.cat-row .go {
  font-size: 22px;
  color: var(--dim);
  transition: transform 0.4s var(--ease), color 0.3s;
}
.cat-row:hover .go { transform: translateX(6px); color: var(--ink); }
.cat-peek {
  position: fixed;
  z-index: 90;
  width: 300px;
  aspect-ratio: 3 / 2;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.92) rotate(-2deg);
  transition: opacity 0.3s, transform 0.4s var(--ease);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.cat-peek.on { opacity: 1; transform: scale(1) rotate(0deg); }
.cat-peek img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- match cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 28px);
}
.card { position: relative; }
.card .frame {
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--bg-2);
  position: relative;
}
.card .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s;
}
.card:hover .frame img { transform: scale(1.05); filter: brightness(1.06); }
.card .date {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--dim);
  text-transform: uppercase;
}
.card h3 {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.2;
  margin-top: 8px;
  letter-spacing: 0.01em;
}
.card .dl {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mut);
  display: inline-flex;
  gap: 8px;
  transition: color 0.3s;
}
.card:hover .dl { color: var(--ink); }

/* ---------- how it works / cta band ---------- */

.band {
  margin-top: clamp(70px, 10vw, 130px);
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.band-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) var(--gut);
}
.band h2 { font-size: clamp(32px, 5vw, 68px); margin-bottom: clamp(30px, 5vw, 60px); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: clamp(36px, 5vw, 60px);
}
.step { border-top: 1px solid var(--line-2); padding-top: 18px; }
.step .n { font-size: 12px; color: var(--dim); letter-spacing: 0.2em; }
.step h4 {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  font-size: 17px;
  margin: 10px 0 8px;
}
.step p { color: var(--mut); font-size: 14.5px; }

/* ---------- footer ---------- */

.site-foot {
  border-top: 1px solid var(--line);
  margin-top: clamp(70px, 10vw, 130px);
}
.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(50px, 7vw, 90px) var(--gut) 30px;
}
.foot-mark {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(52px, 11vw, 170px);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: clamp(40px, 6vw, 70px);
}
.foot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 50px;
}
.foot-grid h5 { margin-bottom: 16px; }
.foot-grid a, .foot-grid p {
  display: block;
  color: var(--mut);
  font-size: 14px;
  margin-bottom: 9px;
  transition: color 0.25s;
}
.foot-grid a:hover { color: var(--ink); }
.foot-base {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12px;
  color: var(--dim);
}

/* ---------- page hero (inner pages) ---------- */

.page-hero {
  padding: clamp(150px, 22vh, 230px) 0 clamp(40px, 6vw, 70px);
  border-bottom: 1px solid var(--line);
}
.page-hero .section { padding-top: 0; }
.page-hero h1 { font-size: clamp(44px, 9vw, 130px); margin-top: 16px; }
.page-hero .intro {
  margin-top: 24px;
  max-width: 640px;
  color: var(--mut);
  font-size: clamp(15px, 1.5vw, 18px);
}

/* ---------- galleries page ---------- */

.gal-nav {
  position: sticky;
  top: 60px;
  z-index: 60;
  background: rgba(11,11,12,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.gal-nav::-webkit-scrollbar { display: none; }
.gal-nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: flex;
  gap: 30px;
  white-space: nowrap;
}
.gal-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mut);
  padding: 16px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.gal-nav a:hover { color: var(--ink); }

.gal-section { scroll-margin-top: 130px; }
.gal-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.gal-head h2 { font-size: clamp(32px, 5vw, 68px); }
.gal-head .count { color: var(--dim); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; margin-left: 18px; }
.gal-subhead {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: clamp(20px, 2.6vw, 30px);
  margin: clamp(32px, 4vw, 52px) 0 clamp(16px, 2vw, 24px);
}
.gal-subhead .count { color: var(--dim); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; }
.gal-head + .gal-subhead { margin-top: 0; }
.gal-note { color: var(--mut); font-size: 15px; }

/* ---------- about ---------- */

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 460px) 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.portrait {
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
  border: 1px dashed var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  position: sticky;
  top: 110px;
}
.portrait .label { line-height: 2; }
.about-copy h2 { font-size: clamp(28px, 3.6vw, 48px); margin-bottom: 26px; }
.about-copy p { color: var(--mut); margin-bottom: 20px; max-width: 640px; font-size: clamp(15px, 1.4vw, 17.5px); }
.about-copy p strong { color: var(--ink); font-weight: 600; }
.facts { margin-top: 40px; border-top: 1px solid var(--line); }
.fact {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.fact .k { color: var(--dim); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; padding-top: 3px; }
.fact .v { color: var(--ink); }

/* ---------- forms / contact ---------- */

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 100px);
}
.form-grid { display: grid; gap: 26px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 10px;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink);
  font-family: inherit;
  font-size: 17px;
  padding: 6px 0 14px;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--bg-2); color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--ink); }
.field textarea { resize: vertical; min-height: 120px; }
.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  width: fit-content;
}
.btn:hover { background: transparent; color: var(--ink); }
.contact-list { border-top: 1px solid var(--line); }
.contact-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item .k { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); margin-bottom: 6px; }
.contact-item a, .contact-item span {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(17px, 1.8vw, 23px);
  text-transform: uppercase;
  transition: color 0.25s;
}
.contact-item a:hover { color: var(--mut); }
.form-note { font-size: 13px; color: var(--dim); }

/* ---------- journal ---------- */

.post-card .frame { aspect-ratio: 16 / 10; }
.post-card .tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  border: 1px solid var(--line-2);
  color: var(--mut);
  border-radius: 999px;
  padding: 5px 12px;
  margin-top: 16px;
  text-transform: uppercase;
}

/* ---------- reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .site-nav { display: none; }
  .burger { display: block; }
  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .portrait { position: static; max-width: 420px; }
  .split { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .cat-row { grid-template-columns: 40px 1fr auto; }
  .cat-row .meta { display: none; }
  .cat-peek { display: none; }
}

@media (max-width: 640px) {
  .m-a, .m-b, .m-c, .m-d, .m-e, .m-f, .m-g, .m-h { grid-column: span 12; aspect-ratio: 3 / 2; }
  .m-c, .m-d, .m-e { aspect-ratio: 4 / 5; }
  .cards { grid-template-columns: 1fr; }
  .hero-sub { font-size: 14px; }
}

/* ============================================================
   V2 - MOTION & ACCENT LAYER
   Volt accent pulled from the Bryanston kit yellows.
   ============================================================ */

:root {
  --acc: #ff5b0f;
  --acc-dim: rgba(255, 91, 15, 0.6);
}

::selection { background: var(--acc); color: #0b0b0c; }

/* ---------- custom cursor ---------- */

body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
.cur-dot, .cur-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  /* JS drives position via transform only - keeps movement off the layout path */
  transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
  will-change: transform;
  border-radius: 50%;
}
.cur-dot {
  width: 6px; height: 6px;
  background: var(--acc);
  z-index: 9999;
}
.cur-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(244, 244, 242, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.cur-ring span {
  font-size: 0;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #0b0b0c;
  text-transform: uppercase;
  transition: font-size 0.2s;
  user-select: none;
}
.cur-ring.big {
  width: 42px; height: 42px;
  border-color: var(--acc);
  background: var(--acc);
  mix-blend-mode: normal;
}
.cur-ring.big span { font-size: 7px; }
@media (pointer: coarse) { .cur-dot, .cur-ring { display: none; } }

/* ---------- aperture iris transition ---------- */

.as-iris {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
}
.as-iris svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
/* Blade motion is driven from JS (SVG transform attributes, rAF) so the
   pivot geometry is identical in every browser. Only the look lives here. */
.as-iris-blade {
  fill: url(#as-blade-shade);
  stroke: rgba(255, 140, 60, 0.9); /* seam glint; opacity driven per-frame */
  stroke-width: 0.45;
}
/* pre-paint cover while arriving: no destination flash before the iris mounts */
html.arriving::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: #060607;
}

/* ---------- film grain ---------- */

.grain {
  position: fixed;
  inset: -100px;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  animation: grainShift 0.9s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-40px, 30px); }
  50% { transform: translate(30px, -50px); }
  75% { transform: translate(-30px, -20px); }
  100% { transform: translate(0, 0); }
}

/* ---------- hero v2: slideshow + viewfinder ---------- */

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 1.4s ease, transform 9s linear;
}
.hero-slide.active { opacity: 1; transform: scale(1); }

.hud { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hud-bracket {
  position: absolute;
  width: 26px; height: 26px;
  border: 1px solid rgba(244, 244, 242, 0.4);
}
.hud-bracket.tl { top: 86px; left: 26px; border-right: 0; border-bottom: 0; }
.hud-bracket.tr { top: 86px; right: 26px; border-left: 0; border-bottom: 0; }
.hud-bracket.bl { bottom: 26px; left: 26px; border-right: 0; border-top: 0; }
.hud-bracket.br { bottom: 26px; right: 26px; border-left: 0; border-top: 0; }
.hud-af {
  position: absolute;
  top: 0; left: 0;
  width: 96px; height: 96px;
  border: 2.5px solid var(--acc);
  box-shadow: 0 0 22px rgba(255, 91, 15, 0.32), inset 0 0 14px rgba(255, 91, 15, 0.14);
  will-change: transform;
}
.hud-af::before, .hud-af::after {
  content: "";
  position: absolute;
  background: var(--acc);
}
.hud-af::before { width: 13px; height: 3px; top: calc(50% - 1.5px); left: -20px; box-shadow: 123px 0 var(--acc); }
.hud-af::after { width: 3px; height: 13px; left: calc(50% - 1.5px); top: -20px; box-shadow: 0 123px var(--acc); }
.hud-meta {
  position: absolute;
  top: 96px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(244, 244, 242, 0.65);
  text-transform: uppercase;
}
.hud-meta .rec {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--acc);
  animation: blink 1.6s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0.15; } }
@media (max-width: 700px) { .hud-af, .hud-meta { display: none; } .hud-bracket.tl, .hud-bracket.tr { top: 76px; } }

/* ---------- hero intro: staged, font-gated, flash-free ----------
   html.js is set pre-paint (head snippet); nothing animates until
   html.intro arrives - main.js adds it once fonts + the hero image are
   ready (700ms cap), so type never swaps or flashes mid-animation. */

html.js .hero-title { opacity: 0; }
html.js.intro .hero-title { opacity: 1; }
.hero-title .lt {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero-title .lt > span {
  display: inline-block;
  transform: translateY(118%);
  transition: transform 0.9s var(--ease);
}
html.intro .hero-title .lt > span { transform: translateY(0); }
html.js .hero-eyebrow, html.js .hero-sub, html.js .scroll-cue {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s ease, transform 0.8s var(--ease);
}
html.intro .hero-eyebrow { opacity: 1; transform: none; transition-delay: 0.4s; }
html.intro .hero-sub { opacity: 1; transform: none; transition-delay: 0.55s; }
html.intro .scroll-cue { opacity: 1; transform: none; transition-delay: 0.95s; }
html.js .hud-bracket, html.js .hud-meta { opacity: 0; transition: opacity 0.9s ease; }
html.intro .hud-bracket, html.intro .hud-meta { opacity: 1; transition-delay: 0.75s; }

/* ---------- outlined marquee strip ---------- */

.strip {
  overflow: hidden;
  white-space: nowrap;
  padding: clamp(30px, 5vw, 60px) 0 0;
  user-select: none;
}
.strip-track { display: inline-flex; animation: tick 30s linear infinite; }
.strip span {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(64px, 11vw, 170px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 244, 242, 0.22);
  padding-right: 0.45em;
}
.strip span i { font-style: normal; -webkit-text-stroke: 0; color: var(--acc); font-size: 0.35em; vertical-align: 0.5em; padding: 0 0.3em; }

/* ---------- accent details ---------- */

.label b { color: var(--acc); font-weight: 600; }
.cat-row .num { color: var(--acc); }
.cat-row .go { color: var(--dim); }
.cat-row:hover .go { color: var(--acc); }
.site-nav a.active::after { background: var(--acc); }
.link-arrow:hover { opacity: 1; color: var(--acc); }
.card:hover .dl { color: var(--acc); }
.btn:hover { background: var(--acc); color: #0b0b0c; border-color: var(--acc); }
.ticker span b { color: var(--acc); }
.scroll-cue { color: rgba(244,244,242,0.6); }
.step .n { color: var(--acc); }
.contact-item a:hover { color: var(--acc); }
.foot-grid a:hover { color: var(--acc); }
.gal-nav a:hover { color: var(--acc); }
.post-card .tag { border-color: var(--acc-dim); color: var(--acc); }
.mobile-menu a span { color: var(--acc); }
.mobile-menu a:hover { color: var(--acc); }

/* footer wordmark hover sweep */
.foot-mark {
  background: linear-gradient(to right, var(--acc), var(--acc)) no-repeat 0 100% / 0% 100%,
              linear-gradient(to right, var(--ink), var(--ink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-size 0.9s var(--ease);
}
.foot-mark:hover { background-size: 100% 100%, 100% 100%; }

/* ---------- image wipe reveals ---------- */

.wipe {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.1s var(--ease);
}
.wipe img { transform: scale(1.14); transition: transform 1.4s var(--ease); }
.wipe.in { clip-path: inset(0 0 0 0); }
.wipe.in img { transform: scale(1); }
.mosaic figure.wipe.in:hover img { transform: scale(1.045); }
.card .frame.wipe.in { }
.card:hover .frame.wipe.in img { transform: scale(1.05); }

/* ---------- parallax ---------- */

[data-plx] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .hero-slide, .wipe, .wipe img, .hero-title .lt > span { animation: none !important; transition: none !important; transform: none !important; clip-path: none !important; opacity: 1 !important; }
  html.js .hero-title, html.js .hero-eyebrow, html.js .hero-sub, html.js .scroll-cue,
  html.js .hud-bracket, html.js .hud-meta { opacity: 1 !important; transform: none !important; transition: none !important; }
  html.arriving::after { display: none; }
  .grain, .strip-track, .ticker-track { animation: none !important; }
  .cur-dot, .cur-ring { display: none; }
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: auto; }
}

/* ============================================================
   V3 - MODE DIAL + ROLLING NAV
   ============================================================ */

/* ---------- rolling (domino) letters - nav + category menu ---------- */

.rl {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  height: 1.5em;
}
.rl i {
  display: block;
  font-style: normal;
  height: 1.5em;
  line-height: 1.5em;
  transition: transform 0.32s var(--ease);
  transition-delay: calc(var(--i) * 0.028s);
}
.rl i:last-child { color: var(--acc); }
.site-nav a:hover .rl i,
.cat-row:hover .rl i { transform: translateY(-100%); }

/* category rows: tighter roll geometry for the big display type */
.cat-row .name .rl,
.cat-row .name .rl i { height: 1.05em; line-height: 1.05em; }

/* entrance domino: rows tip in one after another */
.cat-index .cat-row {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.cat-index .cat-row:nth-child(1) { transition-delay: 0.05s; }
.cat-index .cat-row:nth-child(2) { transition-delay: 0.13s; }
.cat-index .cat-row:nth-child(3) { transition-delay: 0.21s; }
.cat-index .cat-row:nth-child(4) { transition-delay: 0.29s; }
.cat-index .cat-row:nth-child(5) { transition-delay: 0.37s; }
.cat-index .cat-row:nth-child(6) { transition-delay: 0.45s; }
.cat-index.in .cat-row { opacity: 1; transform: none; }

/* ---------- camera mode dial (desktop) ---------- */

.dial-zone {
  position: relative;
  height: 340vh;
}
.dial-stick {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dial-stage {
  position: relative;
  width: 100%;
  max-width: var(--max);
  padding: 0 var(--gut);
  display: grid;
  grid-template-columns: minmax(420px, 620px) 1fr;
  align-items: center;
  gap: clamp(30px, 5vw, 90px);
}
.dial {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-height: 78vh;
  max-width: 78vh;
}
.dial-rot {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.dial-ticks {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(
    rgba(244, 244, 242, 0.28) 0deg 0.5deg,
    transparent 0.5deg 3deg
  );
  -webkit-mask: radial-gradient(closest-side, transparent 87%, #000 88%, #000 98%, transparent 99%);
          mask: radial-gradient(closest-side, transparent 87%, #000 88%, #000 98%, transparent 99%);
}
.dial-ticks::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(
    rgba(244, 244, 242, 0.14) 0deg 1deg,
    transparent 1deg 15deg
  );
  -webkit-mask: radial-gradient(closest-side, transparent 82%, #000 83%, #000 87%, transparent 88%);
          mask: radial-gradient(closest-side, transparent 82%, #000 83%, #000 87%, transparent 88%);
}
.dial-label {
  position: absolute;
  top: 50%; left: 50%;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mut);
  white-space: nowrap;
  transform-origin: center;
  transition: color 0.4s, opacity 0.4s;
  cursor: pointer;
  opacity: 0.85;
}
.dial-label.on {
  color: var(--acc);
  opacity: 1;
  text-shadow: 0 0 18px rgba(255, 91, 15, 0.35);
}
.dial-marker {
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 26px;
  background: var(--acc);
  z-index: 3;
}
.dial-marker::after {
  content: "";
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--acc);
}
.dial-win {
  position: absolute;
  inset: 21%;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 0 0 10px rgba(244, 244, 242, 0.03), 0 30px 90px rgba(0, 0, 0, 0.6), inset 0 0 60px rgba(0, 0, 0, 0.55);
  background: var(--bg-2);
}
.dial-win img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.7s ease, transform 1.4s var(--ease);
}
.dial-win img.on { opacity: 1; transform: scale(1); }
.dial-engrave {
  position: absolute;
  inset: 14.5%;
  pointer-events: none;
  opacity: 0.32; /* texture only - the category titles are the read layer */
}
/* Ring text is individual rotated chars built in main.js — SVG textPath
   (textLength or letter-spacing on a path) renders garbled in Safari. */
.dial-engrave span {
  position: absolute;
  top: 50%; left: 50%;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  color: var(--mut);
  text-transform: uppercase;
  line-height: 1;
}
.dial-info { max-width: 480px; }
.dial-info .label { margin-bottom: 14px; }
.dial-name-clip { overflow: hidden; margin-bottom: 10px; }
.dial-name {
  font-size: clamp(40px, 4.6vw, 76px);
  transform: translateY(110%);
  transition: transform 0.6s var(--ease);
}
.dial-name.on { transform: translateY(0); }
.dial-count {
  color: var(--mut);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.dial-hint {
  margin-top: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
}
.dial-hint::before {
  content: "";
  width: 44px; height: 1px;
  background: var(--line-2);
}

/* touch devices keep the dial - it turns by swipe instead of scroll
   (main.js branches on the same media query). Compact, centered, thumb-first. */
@media (pointer: coarse), (hover: none) {
  .dial-zone { height: auto; }
  .dial-stick {
    position: static;
    height: auto;
    overflow: visible;
    padding: calc(84px + 2svh) 0 8px;
  }
  .dial-stage {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
    text-align: center;
  }
  /* .dial-stick .dial: outranks the width rule in the max-width:1060px block below */
  .dial-stick .dial {
    width: min(86vw, 52svh);
    max-width: 460px;
    max-height: none;
    /* touches on the wheel never scroll the page - turning is turning */
    touch-action: none;
  }
  .dial-info { max-width: none; padding: 0 var(--gut); }
  .dial-info .btn { margin: 0 auto; }
  .dial-hint { justify-content: center; margin-top: 22px; }
  .dial-info .dial-name { font-size: clamp(38px, 11vw, 64px); }
  .dial-label { font-size: 11px; letter-spacing: 0.18em; }
  /* long titles (Tottenham U21) would clip at the screen edge at 90deg */
  .dial-label.long { font-size: 9.5px; letter-spacing: 0.1em; }
  .dial-count { margin-bottom: 24px; }
}
body.no-dial .dial-zone { display: none; }

/* narrow windows: dial stacks above the info, scaled to fit */
@media (max-width: 1060px) {
  .dial-stage {
    grid-template-columns: 1fr;
    gap: 26px;
    justify-items: center;
    text-align: center;
  }
  .dial {
    width: min(66vw, 56vh);
    max-width: none;
    max-height: none;
  }
  .dial-info { max-width: none; }
  .dial-info .btn { margin: 0 auto; }
  .dial-hint { justify-content: center; margin-top: 24px; }
  .dial-name { font-size: clamp(34px, 7vw, 56px); }
  .dial-label { font-size: 11px; letter-spacing: 0.18em; }
}

/* ============================================================
   V4 - the menu IS the hamburger, everywhere.
   Top bar keeps only the wordmark, the booking pill and the burger;
   all navigation lives in the full-screen menu with its domino entrance.
   ============================================================ */
.site-nav a:not(.cta) { display: none; }
.site-nav { gap: 18px; margin-left: auto; margin-right: 20px; }

/* galleries: the dial is the landing view, so the title block that
   follows it doesn't need the full under-header clearance */
.page-hero.after-dial { padding-top: clamp(70px, 10vh, 110px); }

/* ---------- lightbox ---------- */

.lb {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(6, 6, 7, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease);
}
.lb.on { opacity: 1; pointer-events: auto; }
.lb-stage {
  margin: 0;
  max-width: min(92vw, 1500px);
  max-height: 84vh;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: scale(0.97);
  transition: transform 0.3s var(--ease);
}
.lb.on .lb-stage { transform: scale(1); }
.lb-stage img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
}
.lb-stage figcaption {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 244, 242, 0.62);
  text-align: center;
}
.lb button {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(244, 244, 242, 0.22);
  color: var(--ink);
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  display: grid;
  place-items: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.lb button:hover { border-color: var(--acc); background: var(--acc); color: #0b0b0c; }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; margin-top: -23px; }
.lb-next { right: 24px; top: 50%; margin-top: -23px; }
.lb-count {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(244, 244, 242, 0.5);
}
.mosaic figure img, .card .frame img { cursor: zoom-in; }
@media (max-width: 720px) {
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-close { top: 14px; right: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .lb, .lb-stage { transition: none; }
}

/* ---------- accessibility: skip link + keyboard focus ---------- */

.skip-link {
  position: fixed;
  top: -60px; left: 16px;
  z-index: 20000;
  background: var(--acc);
  color: #0b0b0c;
  font-weight: 600;
  font-size: 13px;
  padding: 12px 20px;
  border-radius: 6px;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 3px;
}
