/* ═══════════════════════════════════════════════════════════════
   THE STAGE, hustleharder.au/stage/
   Competition photography. House dark system (same ink/bone/red
   tokens as style.css) with a broadcast-graphics layer on top:
   mono slates, tally brackets, hard 90° corners, no soft cards.
   Type: Anton for the block display (house voice), Bebas Neue for
   package names, IBM Plex Mono for every piece of chrome/metadata,
   Inter for reading copy.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* house dark system, identical values to style.css */
  --ink: #0B0B0C;
  --ink-2: #131315;
  --bone: #EAE6DE;
  --bone-dim: rgba(234, 230, 222, 0.56);
  --red: #E22B2B;
  --hair: rgba(234, 230, 222, 0.14);

  /* stage-only: the blue-grey the house lighting actually throws */
  --slate: #12161C;
  --slate-2: #171C24;
  --haze: rgba(80, 120, 190, 0.16);

  --anton: "Anton", Impact, sans-serif;
  --bebas: "Bebas Neue", "Anton", Impact, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Inter", "Space Grotesk", system-ui, sans-serif;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  /* top edge for hero chrome, sits clear of the fixed nav bar */
  --chrome-top: calc(clamp(1rem, 3vw, 2.2rem) + 3.4rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  background: var(--ink); color: var(--bone);
  font-family: var(--sans); font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
li { list-style: none; }
::selection { background: var(--red); color: var(--ink); }

/* film grain, same as the house */
.grain {
  position: fixed; inset: -100%; z-index: 300; pointer-events: none; opacity: 0.055;
  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.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.9s steps(4) infinite;
}
@keyframes grain { 0%{transform:translate(0,0)} 25%{transform:translate(-2%,3%)} 50%{transform:translate(3%,-2%)} 75%{transform:translate(-1%,-3%)} 100%{transform:translate(2%,2%)} }

/* ══════════════ SHARED CHROME ══════════════ */

/* the mono kicker with its little red tick, the page's most repeated mark */
.kicker {
  display: flex; align-items: center; gap: 0.85em;
  font-family: var(--mono); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--red);
}
.kicker i { width: 22px; height: 2px; background: var(--red); flex: none; }

/* tally brackets, the carousel's corner marks, drawn with borders.
   --chrome-top clears the fixed nav, which is always on over this page. */
.brk { position: absolute; z-index: 4; width: 46px; height: 46px; pointer-events: none; }
.brk--tl { top: var(--chrome-top); left: clamp(1rem, 3vw, 2.2rem); border-top: 2px solid var(--red); border-left: 2px solid var(--red); }
/* the bottom-right mark clears the federation rail the same way */
.brk--br { bottom: calc(clamp(1rem, 3vw, 2.2rem) + 3.2rem); right: clamp(1rem, 3vw, 2.2rem); border-bottom: 2px solid var(--red); border-right: 2px solid var(--red); }

.btn {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-family: var(--mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  padding: 1.15em 2.1em; border: 1px solid transparent; border-radius: 0;
  transition: background 0.3s, color 0.3s, border-color 0.3s, gap 0.3s;
}
.btn em { font-style: normal; }
.btn:hover { gap: 1.1em; }
.btn--fill { background: var(--red); color: #0B0B0C; border-color: var(--red); }
.btn--fill:hover { background: var(--bone); border-color: var(--bone); }
.btn--ghost { color: var(--bone); border-color: rgba(234,230,222,0.34); }
.btn--ghost:hover { border-color: var(--bone); background: rgba(234,230,222,0.06); }

/* ══════════════ NAV ══════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.9rem var(--pad);
  background: rgba(11, 11, 12, 0.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair);
  transform: translateY(-102%);
  transition: transform 0.5s cubic-bezier(.16,1,.3,1);
}
.nav.is-on { transform: translateY(0); }
.nav__logo { font-family: var(--anton); font-size: 0.95rem; letter-spacing: 0.05em; white-space: nowrap; }
.nav__logo span { color: var(--bone-dim); font-weight: 400; }
.nav__links { display: flex; gap: 1.8rem; font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; }
.nav__links a { position: relative; padding-bottom: 3px; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--red); transform: scaleX(0); transition: transform 0.35s cubic-bezier(.77,0,.18,1); }
.nav__links a:hover::after, .nav__links a.is-here::after { transform: scaleX(1); }
.nav__links a.is-here { color: var(--red); }
.nav__cta {
  font-family: var(--mono); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--red); color: #0B0B0C !important; padding: 0.9em 1.6em;
  white-space: nowrap; transition: background 0.35s;
}
.nav__cta:hover { background: var(--bone); }
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__logo span { display: none; }
}

/* ══════════════ HERO ══════════════ */
.shero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding: 7rem var(--pad) 0; overflow: hidden;
}
.shero__bed { position: absolute; inset: 0; z-index: 0; }
.shero__bed img { filter: grayscale(0.28) contrast(1.12) brightness(0.62); transform: scale(1.06); }
.shero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 12% 92%, rgba(11,11,12,0.94) 0%, rgba(11,11,12,0.5) 46%, rgba(11,11,12,0.16) 78%),
    linear-gradient(180deg, rgba(11,11,12,0.86) 0%, rgba(11,11,12,0.24) 34%, rgba(11,11,12,0.96) 100%),
    linear-gradient(90deg, var(--haze), transparent 55%);
}

.shero__slate {
  position: absolute; z-index: 4; top: var(--chrome-top); right: clamp(1rem, 3vw, 2.2rem);
  display: flex; align-items: center; gap: 0.7em;
  font-family: var(--mono); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.28em;
  color: var(--bone-dim); text-transform: uppercase;
}
.shero__slate .dot {
  width: 8px; height: 8px; background: var(--red); flex: none;
  box-shadow: 0 0 10px var(--red); animation: rec 1.8s ease-in-out infinite;
}
@keyframes rec { 0%,100%{opacity:1} 50%{opacity:0.25} }

.shero__inner { position: relative; z-index: 3; width: 100%; max-width: 1500px; padding-bottom: clamp(4.5rem, 12vh, 8rem); }
.shero__title {
  font-family: var(--anton); font-weight: 400; text-transform: uppercase;
  font-size: clamp(4rem, 17vw, 15rem); line-height: 0.82; letter-spacing: 0.005em;
  margin: 1.4rem 0 1.6rem; text-shadow: 0 8px 80px rgba(11,11,12,0.9);
}
.shero__lede { font-size: clamp(0.96rem, 1.25vw, 1.1rem); line-height: 1.8; max-width: 54ch; color: rgba(234,230,222,0.82); }

.shero__lanes { display: flex; flex-wrap: wrap; gap: 0.6rem 2.4rem; margin-top: 2.2rem; }
.shero__lanes li {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; align-items: baseline; gap: 0.7em;
}
.shero__lanes b { color: var(--red); font-weight: 500; font-size: 0.66rem; }

/* primary stacked over secondary, both the same width, the red block is the
   only thing competing for the eye, the gallery link sits under it as a
   deliberate second choice */
.shero__ctas { display: flex; flex-direction: column; gap: 0.65rem; width: fit-content; max-width: 100%; margin-top: 2.6rem; }

/* ── the primary CTA ──
   Deliberately outsized against the ghost link next to it: this is the one
   button on the page that leads to money, so it carries a second line saying
   what it costs and a pulsing edge so it reads as the obvious next step. */
.cta-big {
  position: relative; display: flex; align-items: center; justify-content: center;
  background: var(--red); color: #0B0B0C;
  /* symmetric padding, and the arrow is taken out of flow below, otherwise it
     eats into one side and the label sits off-centre */
  padding: 1.15em 3.4em;
  box-shadow: 0 0 0 0 rgba(226, 43, 43, 0.55);
  transition: background 0.3s, gap 0.3s, transform 0.3s, box-shadow 0.4s;
  animation: ctaPulse 3.4s ease-out infinite;
}
.cta-big__lines { display: flex; flex-direction: column; align-items: center; gap: 0.35em; text-align: center; }
.cta-big b {
  font-family: var(--anton); font-weight: 400; letter-spacing: 0.045em;
  font-size: clamp(1.15rem, 2.5vw, 1.8rem); line-height: 1;
}
.cta-big i {
  font-family: var(--mono); font-style: normal; font-weight: 500;
  font-size: clamp(0.6rem, 1vw, 0.72rem); letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.72;
}
.cta-big em {
  position: absolute; right: 1.4em; top: 50%;
  font-style: normal; font-size: clamp(1.3rem, 2.6vw, 2rem); line-height: 1;
  transition: transform 0.3s;
  transform: translateY(-50%);
}
.cta-big:hover { background: var(--bone); transform: translateY(-2px); animation: none; box-shadow: 0 14px 40px rgba(0,0,0,0.5); }
.cta-big:hover em { transform: translateY(-50%) translateX(5px); }
@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(226, 43, 43, 0.5); }
  70%  { box-shadow: 0 0 0 18px rgba(226, 43, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(226, 43, 43, 0); }
}
/* the secondary sits directly under the primary, matching its width */
.cta-second {
  display: flex; align-items: center; justify-content: center; gap: 0.7em;
  width: 100%; padding: 0.95em 1.6em;
  border: 1px solid rgba(234, 230, 222, 0.34); color: var(--bone);
  font-family: var(--mono); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  transition: background 0.3s, border-color 0.3s, gap 0.3s;
}
.cta-second em { font-style: normal; }
.cta-second:hover { border-color: var(--bone); background: rgba(234, 230, 222, 0.06); gap: 1.1em; }

@media (max-width: 560px) { .shero__ctas { width: 100%; } }

/* federation rail pinned to the bottom edge of the hero */
.shero__rail {
  position: absolute; z-index: 4; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap;
  padding: 1.05rem var(--pad);
  border-top: 1px solid var(--hair); background: rgba(11,11,12,0.72); backdrop-filter: blur(10px);
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase;
}
.shero__rail span { color: var(--bone-dim); margin-right: auto; }
.shero__rail b { font-weight: 500; letter-spacing: 0.24em; }
.shero__rail i { color: var(--red); font-style: normal; }
@media (max-width: 700px) {
  .shero__rail span { flex: 1 0 100%; margin-right: 0; margin-bottom: 0.3rem; }
  .shero { padding-top: 5rem; }
}

/* ══════════════ INTRO ══════════════ */
.intro {
  display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem); align-items: start;
  padding: clamp(4.5rem, 12vh, 8rem) var(--pad);
  max-width: 1500px;
}
.intro__line {
  font-family: var(--anton); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.9rem, 4.4vw, 3.6rem); line-height: 1.02; letter-spacing: 0.01em;
  margin: 1.5rem 0 1.8rem;
}
.intro__line em { font-style: normal; color: var(--red); }
.intro__copy p { color: var(--bone-dim); font-size: 0.98rem; line-height: 1.85; max-width: 56ch; }
.intro__copy p + p { margin-top: 1.1rem; }

.intro__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
.intro__stats > div { background: var(--ink); padding: 1.6rem 1.4rem; }
.intro__stats dt { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.24em; color: var(--bone-dim); text-transform: uppercase; }
.intro__stats dd { font-family: var(--anton); font-size: clamp(2rem, 4vw, 3rem); line-height: 1; margin-top: 0.6rem; color: var(--red); }
.intro__stats dd span { font-family: var(--mono); font-size: 0.9rem; color: var(--bone-dim); letter-spacing: 0.1em; margin-left: 0.15em; }
@media (max-width: 900px) { .intro { grid-template-columns: 1fr; } }

/* ══════════════ FEDERATION GALLERIES ══════════════ */
.fed { padding: clamp(3.5rem, 9vh, 6.5rem) var(--pad); border-top: 1px solid var(--hair); position: relative; }
.fed:nth-of-type(even) { background: var(--slate); }

.fed__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1.6rem; margin-bottom: clamp(1.6rem, 3.5vw, 2.6rem);
}
.fed__id { display: flex; align-items: baseline; gap: clamp(0.9rem, 2vw, 1.6rem); }
.fed__no { font-family: var(--mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.24em; color: var(--red); }
.fed__name {
  font-family: var(--anton); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.6rem, 8vw, 6rem); line-height: 0.86; letter-spacing: 0.01em;
}
.fed__meta { display: flex; flex-direction: column; gap: 0.45rem; text-align: right; }
.fed__meta span { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-dim); }
.fed__meta span b { color: var(--bone); font-weight: 500; }
@media (max-width: 700px) { .fed__meta { text-align: left; } }

/* lane tags, which of the three lanes this set actually contains */
.fed__lanes { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: clamp(1.4rem, 3vw, 2rem); }
.fed__lane {
  font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.5em 1em; border: 1px solid var(--hair); color: var(--bone-dim);
}
.fed__lane b { color: var(--red); font-weight: 500; }

/* ── justified rows ────────────────────────────────────────────
   stage.js groups frames into rows and sets each row's height from
   the real aspect ratios, so every row runs edge to edge and no
   frame is cropped to a shape it wasn't shot for. The row's height
   lives in --h; each frame's width comes from its own --ar.      */
.fed__rows { --gap: clamp(6px, 0.9vw, 14px); display: flex; flex-direction: column; gap: var(--gap); }
.row { display: flex; gap: var(--gap); height: var(--h); }
/* the hero band is justified like any other row, then capped so a set of
   verticals can't push it past a screenful */
.row--hero { max-height: clamp(320px, 68vh, 780px); }
.row--hero .fr img { object-position: 50% 32%; }
/* the last row of a set keeps its frames at natural width instead of
   stretching a leftover portrait across the whole column */
.row--tail { justify-content: flex-start; }
.row--tail .fr { flex-grow: 0; }

/* Widths come from the frame's own aspect: basis is its natural width at
   the row height, and grow/shrink are the same ratio scaled up, the x100
   matters because flex-grow factors summing under 1 only distribute that
   fraction of the free space, which would leave short rows unfilled. */
.fr {
  position: relative; min-width: 0; overflow: hidden;
  background: var(--ink-2); cursor: pointer;
  flex: calc(var(--ar) * 100) calc(var(--ar) * 100) calc(var(--ar) * var(--h));
}
.fr img { transition: transform 0.9s cubic-bezier(.2,.8,.2,1), filter 0.5s; filter: grayscale(0.16) contrast(1.04); }
.fr:hover img { transform: scale(1.045); filter: none; }

/* hairline that becomes a tally bar on hover */
.fr::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; z-index: 2;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
}
.fr:hover::before { transform: scaleX(1); }

.fr__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; align-items: center; gap: 0.8em; flex-wrap: wrap;
  padding: 2.4rem 1rem 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(11,11,12,0.9));
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  opacity: 0; transform: translateY(10px); transition: opacity 0.4s, transform 0.4s;
}
.fr:hover .fr__cap, .fr:focus-visible .fr__cap { opacity: 1; transform: none; }
.fr__lane { color: var(--red); }
.fr__txt { color: var(--bone); }

/* zoom affordance */
.fr::after {
  content: "⤢"; position: absolute; top: 0.6rem; right: 0.7rem; z-index: 3;
  width: 30px; height: 30px; display: grid; place-items: center;
  font-size: 0.85rem; background: rgba(11,11,12,0.62); color: var(--bone); backdrop-filter: blur(4px);
  opacity: 0; transform: scale(0.7); transition: opacity 0.3s, transform 0.3s;
}
.fr:hover::after { opacity: 1; transform: scale(1); }

.fed__all {
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
  display: inline-flex; align-items: center; gap: 0.7em;
  background: none; border: none; border-bottom: 1px solid var(--red); cursor: pointer;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bone); padding: 0.6em 0;
  transition: color 0.3s, gap 0.3s;
}
.fed__all:hover { color: var(--red); gap: 1.1em; }

/* ══════════════ PACKAGES ══════════════ */
.packs {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(4.5rem, 12vh, 8rem) var(--pad);
  border-top: 1px solid rgba(226,43,43,0.34); background: var(--ink);
}
/* ── the ANB backdrop ──
   Two layers do the work: the frame itself knocked back to a fifth of its
   strength, then a scrim that pins the top and bottom edges to solid ink.
   Everything above sits on a near-black field, so the cards read as cleanly
   as they did on the flat background. */
.packs__bed { position: absolute; inset: 0; z-index: -2; }
.packs__bed img {
  opacity: 0.38; filter: grayscale(0.12) contrast(1.05) brightness(0.98);
  /* bias to the upper third so the lit stage, not the empty floor, is the
     part sitting behind the board */
  object-position: 50% 34%;
}
.packs__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, var(--ink) 0%, rgba(11,11,12,0.46) 20%, rgba(11,11,12,0.46) 74%, var(--ink) 100%),
    radial-gradient(96% 66% at 50% 44%, transparent 0%, rgba(11,11,12,0.5) 100%);
}
.packs__head { position: relative; max-width: 70ch; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.packs__title {
  font-family: var(--anton); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.1rem, 6vw, 4.6rem); line-height: 0.94; letter-spacing: 0.01em;
  margin: 1.3rem 0 1.2rem;
}
.packs__title .x { color: var(--red); }
.packs__lede { color: var(--bone-dim); font-size: 0.98rem; line-height: 1.8; max-width: 58ch; }

/* one hairline grid, no gaps between cards, reads as a rate board */
.packs__grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
@media (max-width: 940px) { .packs__grid { grid-template-columns: 1fr; } }

/* cards are a touch translucent so the ANB frame reads through them as a
   texture, but stay dense enough that the copy never fights it */
.pk {
  position: relative; background: rgba(19, 19, 21, 0.88); padding: 2.4rem 1.9rem 2rem;
  display: flex; flex-direction: column;
  transition: background 0.4s;
}
.pk:hover { background: rgba(23, 28, 36, 0.93); }
.pk--hero { background: rgba(18, 22, 28, 0.91); }
.pk--hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border: 1px solid var(--red);
}

.pk__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.9rem; }
.pk__no { font-family: var(--mono); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.24em; color: var(--bone-dim); }
.pk__tier { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.22em; color: var(--red); }

.pk__flag {
  position: absolute; top: 0; right: 0;
  background: var(--red); color: #0B0B0C;
  font-family: var(--mono); font-size: 0.55rem; font-weight: 500; letter-spacing: 0.2em;
  padding: 0.55em 1em;
}

.pk__name {
  font-family: var(--bebas); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.8rem, 5vw, 4rem); line-height: 0.9; letter-spacing: 0.02em;
  padding-left: 0.7rem; border-left: 4px solid var(--red);
}
.pk__price {
  font-family: var(--anton); font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1;
  color: var(--bone); margin: 1.1rem 0 1.6rem;
}
.pk__price span { color: var(--red); font-size: 0.62em; vertical-align: 0.16em; margin-right: 0.06em; }

.pk__list { flex: 1; border-top: 1px solid var(--hair); }
.pk__list li {
  display: flex; gap: 0.9em; align-items: baseline;
  padding: 0.85rem 0; border-bottom: 1px solid var(--hair);
  font-size: 0.88rem; line-height: 1.5; color: rgba(234,230,222,0.86);
}
.pk__list b { font-family: var(--mono); font-size: 0.6rem; font-weight: 500; color: var(--red); flex: none; letter-spacing: 0.1em; }
/* a condition rather than an inclusion, sits in the same list but reads as a
   warning, not another thing you get */
.pk__list-flag { color: var(--red); border-bottom: none; }
.pk__list-flag b { font-size: 0.72rem; }

.pk__btn {
  margin-top: 1.7rem; display: flex; align-items: center; justify-content: center; gap: 0.7em;
  background: var(--bone); color: #0B0B0C !important;
  font-family: var(--mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 1.2em 1em; transition: background 0.3s, gap 0.3s;
}
.pk__btn em { font-style: normal; }
.pk__btn:hover { background: var(--red); gap: 1.2em; }
.pk--hero .pk__btn { background: var(--red); }
.pk--hero .pk__btn:hover { background: var(--bone); }

.packs__foot {
  display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; justify-content: space-between;
  margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid var(--hair);
}
.packs__foot p { color: var(--bone-dim); font-size: 0.84rem; line-height: 1.7; max-width: 62ch; }
.packs__mail { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; border-bottom: 1px solid var(--red); padding-bottom: 3px; white-space: nowrap; }
.packs__mail:hover { color: var(--red); }

/* ══════════════ POST-COMP PRIVATE SHOOTS ══════════════ */
.post { padding: clamp(4.5rem, 12vh, 8rem) var(--pad); background: var(--slate); border-top: 1px solid var(--hair); }
.post__head { max-width: 76ch; margin-bottom: clamp(2.2rem, 5vw, 3.2rem); }
.post__title {
  font-family: var(--anton); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.1rem, 6vw, 4.6rem); line-height: 0.94; letter-spacing: 0.01em;
  margin: 1.3rem 0 1.2rem;
}
.post__title em { font-style: normal; color: var(--red); }
.post__lede { color: var(--bone-dim); font-size: 0.98rem; line-height: 1.8; max-width: 62ch; }

.post__settings { display: flex; flex-wrap: wrap; gap: 0.6rem 0.8rem; margin-top: 1.8rem; }
.post__settings li {
  display: flex; align-items: baseline; gap: 0.7em;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.7em 1.2em; border: 1px solid var(--hair);
}
.post__settings b { color: var(--red); font-weight: 500; font-size: 0.64rem; }

/* wall on the left, the one price on the right */
.post__body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 340px); gap: clamp(1.2rem, 2.5vw, 2rem); align-items: start; }
@media (max-width: 1000px) { .post__body { grid-template-columns: 1fr; } }

/* ── the mosaic ──
   Six columns of explicit areas so all twelve cells pack solid with no ragged
   holes. Cell shapes are fixed and js/stage.js only ever fills them with a
   matching orientation, so nothing gets cropped into a shape it wasn't shot
   for. Two wide cells is the ceiling, the library is 83% vertical. */
/* below 901px the cells carry their own aspect ratio and simply flow two-up */
.post__wall {
  display: grid; gap: clamp(0.4rem, 0.9vw, 0.75rem);
  grid-template-columns: repeat(2, 1fr);
}
.fm { position: relative; overflow: hidden; background: var(--ink-2); aspect-ratio: 1/1; cursor: pointer; }
.fm--tall { aspect-ratio: 1/1.5; }
.fm--wide { aspect-ratio: 1.5/1; grid-column: span 2; }
.fm img { transition: transform 1s cubic-bezier(.2,.8,.2,1), filter 0.6s, opacity 0.45s ease; filter: grayscale(0.18) contrast(1.05); }
.fm:hover img { transform: scale(1.05); filter: none; }
.fm figcaption {
  position: absolute; left: 0.55rem; bottom: 0.55rem; z-index: 2;
  font-family: var(--mono); font-size: 0.52rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.45em 0.85em; background: rgba(11,11,12,0.74); color: var(--bone); backdrop-filter: blur(6px);
  opacity: 0; transform: translateY(6px); transition: opacity 0.35s, transform 0.35s;
}
.fm:hover figcaption { opacity: 1; transform: none; }

@media (min-width: 901px) {
  /* six square base cells across by six down, so a 2x1 area is a true 3:2
     landscape and a 1x2 area a true 2:3 portrait. The wall's own aspect-ratio
     is what gives the rows a height to divide up. */
  .post__wall {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    aspect-ratio: 1 / 1;
    grid-template-areas:
      "a a b b c c"
      "a a b b d d"
      "e f f g g h"
      "e f f g g h"
      "i i j k k l"
      "i i j k k l";
  }
  /* areas carry the shape, so the aspect-ratio hints step aside */
  .post__wall .fm { aspect-ratio: auto; grid-column: auto; }
  .post__wall > .fm:nth-child(1) { grid-area: a; }
  .post__wall > .fm:nth-child(2) { grid-area: b; }
  .post__wall > .fm:nth-child(3) { grid-area: c; }
  .post__wall > .fm:nth-child(4) { grid-area: d; }
  .post__wall > .fm:nth-child(5) { grid-area: e; }
  .post__wall > .fm:nth-child(6) { grid-area: f; }
  .post__wall > .fm:nth-child(7) { grid-area: g; }
  .post__wall > .fm:nth-child(8) { grid-area: h; }
  .post__wall > .fm:nth-child(9) { grid-area: i; }
  .post__wall > .fm:nth-child(10) { grid-area: j; }
  .post__wall > .fm:nth-child(11) { grid-area: k; }
  .post__wall > .fm:nth-child(12) { grid-area: l; }
}

/* the price card reuses the package-card furniture */
.post__card {
  position: relative; background: var(--ink-2); border: 1px solid var(--hair);
  padding: 2.2rem 1.8rem 1.9rem; display: flex; flex-direction: column;
  transition: border-color 0.4s;
}
.post__card:hover { border-color: var(--red); }
.post__card .pk__price { display: flex; align-items: baseline; gap: 0.5rem; flex-wrap: wrap; }
.post__card .pk__price em {
  font-family: var(--mono); font-style: normal; font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--bone-dim);
}
.post__fine { font-size: 0.72rem; line-height: 1.6; color: var(--bone-dim); margin-top: 1rem; }
@media (min-width: 1001px) { .post__card { position: sticky; top: 5.5rem; } }

/* ══════════════ OUTRO + FOOTER ══════════════ */
.outro { padding: clamp(4.5rem, 12vh, 8rem) var(--pad) 2.4rem; border-top: 1px solid var(--hair); }
.outro__big { display: block; width: fit-content; margin: 1.9rem 0 3.4rem; }
.outro__big span { display: block; font-family: var(--anton); font-size: clamp(2.6rem, 11vw, 9rem); line-height: 0.92; text-transform: uppercase; }
.outro__l1 { color: transparent; -webkit-text-stroke: 2px var(--bone); }
.outro__l2 { transition: color 0.4s; }
.outro__l2 em { font-style: normal; color: var(--red); }
.outro__big:hover .outro__l2 { color: var(--red); }
.outro__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2.2rem; padding-top: 2.4rem; border-top: 1px solid var(--hair); }
.outro__grid h4 { font-family: var(--mono); font-size: 0.58rem; font-weight: 500; letter-spacing: 0.28em; color: var(--bone-dim); margin-bottom: 0.85rem; }
.outro__grid a, .outro__grid p { font-size: 0.94rem; line-height: 1.6; }
.outro__grid a:hover { color: var(--red); }

.foot { padding: 0 var(--pad) 2.2rem; }
.foot__top { display: flex; flex-wrap: wrap; gap: 1.4rem; justify-content: space-between; align-items: center; padding: 2.2rem 0; border-top: 1px solid var(--hair); }
.foot__logo { font-family: var(--anton); font-size: 1.32rem; letter-spacing: 0.04em; }
.foot__logo b { color: var(--bone-dim); font-weight: 400; }
.foot__nav { display: flex; flex-wrap: wrap; gap: 1.7rem; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; }
.foot__nav a:hover { color: var(--red); }
.foot__bot { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; padding-top: 1.5rem; border-top: 1px solid var(--hair); font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-dim); }
.foot__bot a:hover { color: var(--red); }

/* ══════════════ LIGHTBOX ══════════════ */
.lb {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(6, 6, 8, 0.95); backdrop-filter: blur(16px);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: clamp(0.5rem, 2vw, 2rem); padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
}
.lb.open { opacity: 1; visibility: visible; }
.lb__fig { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; min-width: 0; }
.lb__fig img { max-width: 100%; max-height: 82vh; width: auto; height: auto; object-fit: contain; box-shadow: 0 30px 90px rgba(0,0,0,0.7); }
.lb__fig figcaption { display: flex; gap: 1em; align-items: baseline; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; }
.lb__fig figcaption span { color: var(--red); }
.lb__fig figcaption b { color: var(--bone-dim); font-weight: 400; }
.lb__close {
  position: absolute; top: 1.4rem; right: 1.6rem; z-index: 2;
  width: 46px; height: 46px; cursor: pointer;
  background: none; border: 1px solid rgba(234,230,222,0.3); color: var(--bone); font-size: 1rem;
  transition: background 0.3s, color 0.3s;
}
.lb__close:hover { background: var(--red); border-color: var(--red); color: var(--ink); }
.lb__nav {
  width: clamp(44px, 5vw, 58px); height: clamp(44px, 5vw, 58px); cursor: pointer;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(234,230,222,0.25); color: var(--bone);
  font-size: 1.6rem; line-height: 1; display: grid; place-items: center; flex: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.lb__nav:hover { background: var(--red); border-color: var(--red); color: var(--ink); }
.lb__count { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.22em; color: var(--bone-dim); }
@media (max-width: 700px) {
  .lb { grid-template-columns: 1fr; }
  .lb__nav { position: absolute; top: 50%; transform: translateY(-50%); }
  .lb__prev { left: 0.6rem; } .lb__next { right: 0.6rem; }
}

/* ══════════════ REVEALS / MOTION ══════════════ */
[data-rv] { opacity: 0; transform: translateY(24px); }

@media (prefers-reduced-motion: reduce) {
  .grain, .shero__slate .dot, .cta-big { animation: none !important; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
  [data-rv] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
