/* Friendly Padel — promo landing.

   Direction: a club almanac. Deep forest ground, bone type, a high-contrast
   Garamond for display against a precise grotesk for everything functional,
   brass hairlines and numbered sections. Photography is set as editorial
   plates, never as decoration.

   The green is the app's own primary (frontend/src/index.css) so the site and
   the Mini App read as one product. */

:root {
  /* Brand green, shared with the Mini App. */
  --brand: oklch(0.45 0.15 145);
  --brand-bright: oklch(0.6 0.16 145);

  --ground: oklch(0.155 0.032 155);
  --ground-2: oklch(0.2 0.042 152);
  --ground-3: oklch(0.25 0.05 150);

  --bone: oklch(0.95 0.012 95);
  --bone-dim: oklch(0.76 0.014 130);
  --bone-faint: oklch(0.62 0.014 135);

  --brass: oklch(0.79 0.085 82);
  --hairline: oklch(0.79 0.085 82 / 0.22);
  --hairline-soft: oklch(0.95 0.012 95 / 0.1);

  --display: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --gutter: clamp(20px, 5vw, 88px);
  --measure: 1320px;
  --rhythm: clamp(64px, 11vh, 148px);
}

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

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

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--bone);
  background: var(--ground);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* Author display rules below would otherwise defeat the hidden attribute. */
[hidden] { display: none !important; }

::selection { background: var(--brass); color: var(--ground); }

:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

/* Film grain. Static, cheap, and the single biggest cue that this is not a
   flat template. */
.grain {
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 100;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.32'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 120;
  background: var(--bone);
  color: var(--ground);
  padding: 12px 20px;
  font-weight: 600;
}
.skip-link:focus { left: 16px; }

/* ------------------------------------------------------------ primitives */

.eyebrow {
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
}

.btn {
  --btn-bg: transparent;
  --btn-fg: var(--bone);
  --btn-line: var(--hairline-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-line);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.btn:hover { --btn-bg: oklch(0.95 0.012 95 / 0.1); --btn-line: var(--hairline); }
.btn--primary {
  --btn-bg: var(--brand);
  --btn-fg: var(--bone);
  --btn-line: transparent;
}
.btn--primary:hover { --btn-bg: var(--brand-bright); --btn-line: transparent; }
.btn--ghost { --btn-line: var(--hairline); }
.btn--sm { min-height: 42px; padding: 0 20px; font-size: 13px; }

/* ---------------------------------------------------------------- topbar */

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: clamp(16px, 4vw, 48px);
  padding: 18px var(--gutter);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.topbar.is-stuck {
  background: oklch(0.155 0.032 155 / 0.86);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline-soft);
}
.topbar__logo { display: block; flex: none; }
.topbar__logo img { height: 42px; width: auto; }
.topbar__nav {
  display: flex;
  gap: clamp(14px, 2vw, 32px);
  margin-inline-start: auto;
}
.topbar__nav a {
  color: var(--bone-dim);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.topbar__nav a:hover { color: var(--bone); border-bottom-color: var(--brass); }

/* ------------------------------------------------------------------ hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 128px var(--gutter) 0;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  z-index: -2;
  animation: hero-drift 26s ease-out forwards;
}
@keyframes hero-drift {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
/* Two scrims: one lifts the type off the crowd on the left, one grounds the
   photo into the page colour at the bottom. */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, var(--ground) 0%, oklch(0.155 0.032 155 / 0.88) 26%, oklch(0.155 0.032 155 / 0.42) 52%, transparent 78%),
    linear-gradient(to top, var(--ground) 3%, oklch(0.155 0.032 155 / 0.72) 26%, oklch(0.155 0.032 155 / 0.12) 62%, oklch(0.155 0.032 155 / 0.5) 100%);
}
.hero__inner {
  width: 100%;
  max-width: var(--measure);
  margin-inline: auto;
  padding-bottom: clamp(48px, 9vh, 108px);
}
.hero__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(46px, 8.4vw, 118px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin: clamp(14px, 2.4vh, 26px) 0 0;
  max-width: 15ch;
}
.hero__title em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--brass);
}
.hero__lead {
  margin-top: clamp(18px, 3vh, 32px);
  max-width: 48ch;
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.6;
  font-weight: 300;
  color: var(--bone-dim);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 4vh, 40px);
}

/* Venue ticker. Labelled on purpose: an unlabelled row of company names reads
   as a "trusted by" client strip, and these are rented courts, not clients. */
.ticker {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  border-top: 1px solid var(--hairline);
  padding: 16px 0;
}
.ticker__label {
  flex: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}
.ticker__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 92%, transparent);
}
.ticker__track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: ticker 58s linear infinite;
}
.ticker__track span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-faint);
  white-space: nowrap;
}
.ticker__track span::after { content: "·"; margin-inline-start: 44px; color: var(--brass); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

.section {
  max-width: var(--measure);
  margin-inline: auto;
  padding: var(--rhythm) var(--gutter);
}
.section__index {
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  padding-bottom: 18px;
  margin-bottom: clamp(26px, 5vh, 52px);
  border-bottom: 1px solid var(--hairline);
}
.section__head { margin-bottom: clamp(30px, 5vh, 56px); }
.section__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 5.6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.section__title em {
  font-style: italic;
  color: var(--brass);
  margin-inline-start: 0.3em;
}
.section__lead {
  margin-top: 20px;
  max-width: 56ch;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
  font-weight: 300;
  color: var(--bone-dim);
}

/* ----------------------------------------------------------------- stats */

.stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline-soft);
  border-block: 1px solid var(--hairline-soft);
}
.stats li {
  background: var(--ground);
  padding: clamp(24px, 4vh, 44px) clamp(12px, 2vw, 28px);
}
.stats b {
  display: block;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-variant-numeric: lining-nums;
}
.stats span {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
/* ------------------------------------------------------------- portfolio */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(24px, 4vh, 40px);
}
.chip {
  appearance: none;
  border: 1px solid var(--hairline-soft);
  background: transparent;
  color: var(--bone-dim);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0 20px;
  min-height: 44px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.chip:hover { color: var(--bone); border-color: var(--hairline); }
.chip[aria-pressed="true"] {
  background: var(--bone);
  border-color: var(--bone);
  color: var(--ground);
}

/* Photo plates. The newest set opens the section full width like a spread;
   the rest run three across so every row bottoms out on the same line. */
.plates {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(20px, 3vw, 44px) clamp(14px, 2vw, 28px);
}
.plates li { grid-column: span 2; }
.plates li:first-child { grid-column: span 6; }

.plate { display: block; text-decoration: none; color: inherit; }
.plate__frame {
  position: relative;
  overflow: hidden;
  background: var(--ground-2);
  aspect-ratio: 3 / 2;
}
.plates li:first-child .plate__frame { aspect-ratio: 2 / 1; }
.plate__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Group shots put faces above the middle; a centred crop beheads them. */
  object-position: 50% 38%;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: saturate(0.92);
}
.plate:hover .plate__frame img { transform: scale(1.045); filter: saturate(1.04); }
.plate__count {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 8px 14px;
  background: oklch(0.155 0.032 155 / 0.78);
  backdrop-filter: blur(6px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
}
.plate__body {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--hairline-soft);
  transition: border-color 0.4s ease;
}
.plate:hover .plate__body { border-top-color: var(--brass); }
.plate__club {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.plates li:first-child .plate__club { font-size: clamp(26px, 3.2vw, 44px); }
.plate__meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-faint);
}

/* Compact archive of the smaller sets. */
.archive-block { margin-top: clamp(36px, 6vh, 64px); }
.archive-toggle {
  appearance: none;
  width: 100%;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--hairline);
  color: var(--bone-dim);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 22px 0;
  text-align: start;
  cursor: pointer;
  transition: color 0.3s ease;
}
.archive-toggle:hover { color: var(--brass); }
.archive {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--hairline-soft);
  border-block: 1px solid var(--hairline-soft);
}
.archive a {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--ground);
  padding: 12px 14px;
  min-height: 68px;
  color: inherit;
  text-decoration: none;
  transition: background 0.3s ease;
}
.archive a:hover { background: var(--ground-2); }
.archive img { width: 48px; height: 48px; object-fit: cover; flex: none; }
.archive__club { font-size: 14px; font-weight: 500; }
.archive__meta {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-faint);
}

/* -------------------------------------------------------------- partners */

.section--partners {
  position: relative;
  max-width: none;
  margin-block: var(--rhythm);
  padding-block: clamp(72px, 12vh, 156px);
  isolation: isolate;
  overflow: hidden;
}
.partners__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.partners__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, var(--ground) 22%, oklch(0.155 0.032 155 / 0.9) 55%, oklch(0.155 0.032 155 / 0.62) 100%);
}
.partners__inner { max-width: var(--measure); margin-inline: auto; }
.offer {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(36px, 6vh, 64px);
}
.offer__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.9);
}
.offer__item h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.1;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}
.offer__item p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--bone-dim);
}
.partners__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: clamp(32px, 5vh, 56px);
}
.partners__hint { font-size: 13px; font-weight: 300; color: var(--bone-faint); }
.partners__note {
  margin-top: clamp(22px, 3vh, 34px);
  font-size: 13px;
  font-weight: 300;
  color: var(--bone-faint);
}

/* -------------------------------------------------------------- founders */

.founders {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 64px);
}
.founder { border-top: 1px solid var(--hairline); padding-top: 22px; }
.founder__frame { margin-bottom: 20px; overflow: hidden; }
.founder__frame img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.founder__role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
}
.founder__name {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-top: 10px;
}
.founder__credentials { list-style: none; margin-top: 20px; }
.founder__credentials li {
  position: relative;
  padding-inline-start: 22px;
  padding-block: 9px;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 300;
  color: var(--bone-dim);
  border-top: 1px solid var(--hairline-soft);
}
.founder__credentials li:first-child { border-top: 0; }
.founder__credentials li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 19px;
  width: 10px;
  height: 1px;
  background: var(--brass);
}

/* --------------------------------------------------------------- reviews */

.reviews {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}
.review {
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review blockquote {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(19px, 1.9vw, 26px);
  line-height: 1.32;
  flex: 1;
}
.review__role {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-faint);
}

/* ------------------------------------------------------------------ join */

.join {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2.6vw, 32px);
}
.join__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: clamp(24px, 4vh, 44px) clamp(20px, 3vw, 40px) clamp(28px, 4vh, 44px);
  border: 1px solid var(--hairline-soft);
  background: linear-gradient(180deg, oklch(0.2 0.042 152 / 0.55), transparent);
}
.join__qr {
  width: min(240px, 60vw);
  aspect-ratio: 1;
  background: var(--bone);
  padding: 14px;
  margin-bottom: 8px;
}
.join__qr svg { width: 100%; height: 100%; display: block; }
.join__card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 34px);
}
.join__card p { font-size: 14px; font-weight: 300; color: var(--bone-dim); }
.join__card .btn { margin-top: 8px; }

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

.footer {
  max-width: var(--measure);
  margin-inline: auto;
  padding: clamp(40px, 7vh, 80px) var(--gutter) clamp(48px, 8vh, 96px);
  border-top: 1px solid var(--hairline-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer__logo { height: 56px; width: auto; opacity: 0.85; }
.footer__line { font-size: 13px; font-weight: 300; color: var(--bone-faint); }
.footer__links { display: flex; gap: 22px; }
.footer__links a {
  color: var(--bone-dim);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer__links a:hover { color: var(--brass); }

/* ------------------------------------------------------------ album view */

.album {
  max-width: var(--measure);
  margin-inline: auto;
  padding: 132px var(--gutter) var(--rhythm);
}
.album__back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--bone-dim);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.album__back:hover { color: var(--brass); }
.album__head {
  margin: 20px 0 clamp(28px, 5vh, 52px);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hairline);
}
.album__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(34px, 5.2vw, 72px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-top: 12px;
}
.photo-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: clamp(8px, 1.1vw, 14px);
}
.photo-grid button {
  appearance: none;
  border: 0;
  padding: 0;
  background: var(--ground-2);
  cursor: zoom-in;
  display: block;
  width: 100%;
  overflow: hidden;
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.photo-grid button:hover img { transform: scale(1.06); }

.album__siblings {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: clamp(36px, 6vh, 64px);
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}
.album__siblings a {
  color: var(--bone-dim);
  text-decoration: none;
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 24px);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.album__siblings a:hover { color: var(--brass); }
.album__siblings a:only-child:last-child { margin-inline-start: auto; }

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

.lightbox {
  border: 0;
  padding: 0;
  background: none;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100svh;
  overflow: hidden;
  color: var(--bone);
}
.lightbox::backdrop { background: oklch(0.11 0.02 155 / 0.96); }
.lightbox__image {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: min(100%, 1600px);
  max-height: calc(100svh - 104px);
  object-fit: contain;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  appearance: none;
  border: 1px solid var(--hairline-soft);
  background: oklch(0.155 0.032 155 / 0.6);
  color: var(--bone);
  cursor: pointer;
  border-radius: 999px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--brand); border-color: transparent; }
.lightbox__close { top: 18px; right: 18px; font-size: 18px; }
.lightbox__nav--prev { left: 14px; top: calc(50% - 25px); }
.lightbox__nav--next { right: 14px; top: calc(50% - 25px); }
.lightbox__counter {
  position: absolute;
  bottom: 22px;
  inset-inline: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--bone-dim);
}

/* --------------------------------------------------------------- motion */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.reveal--1 { animation-delay: 0.1s; }
.reveal--2 { animation-delay: 0.22s; }
.reveal--3 { animation-delay: 0.34s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}

.observe { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.observe.is-visible { opacity: 1; transform: none; }

/* ---------------------------------------------------------- breakpoints */

@media (max-width: 1024px) {
  .plates { grid-template-columns: repeat(4, 1fr); }
  .plates li,
  .plates li:nth-child(6n + 1),
  .plates li:nth-child(6n + 2) { grid-column: span 2; }
}

@media (max-width: 760px) {
  .stats { grid-template-columns: 1fr; }
  .topbar__nav { display: none; }
  .topbar { justify-content: space-between; }
  .hero { min-height: 92svh; }
  .hero__title { max-width: none; }
  .plates { grid-template-columns: 1fr; }
  .plates li,
  .plates li:nth-child(6n + 1),
  .plates li:nth-child(6n + 2) { grid-column: span 1; }
  .plates li .plate__frame,
  .plates li:nth-child(6n + 2) .plate__frame,
  .plates li:nth-child(6n + 5) .plate__frame { aspect-ratio: 4 / 3; }
  .photo-grid { grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); }
  .lightbox__nav { width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__bg { animation: none; }
  .ticker__track { animation: none; }
  .reveal { opacity: 1; transform: none; animation: none; }
  .observe { opacity: 1; transform: none; transition: none; }
  .plate:hover .plate__frame img,
  .photo-grid button:hover img { transform: none; }
}
