/* ==========================================================================
   Landmark Academy, Benin
   Palette from the school crest (black + metallic gold) and the school blazer
   (navy). Red is the ACTION colour and appears nowhere else.
   No framework. One file. Built to load fast on mobile data in Benin.
   ========================================================================== */

:root {
  --ink:       #0B0B0C;
  --char:      #17181B;
  --gold:      #C9A227;
  --gold-lite: #E8C766;
  --navy:      #1B3A6B;
  --red:       #A81D25;
  --paper:     #FAF7F0;
  --paper-2:   #F0EADC;
  --slate:     #57534A;
  --white:     #FFFFFF;
  --line:      rgba(11,11,12,.13);
  --line-gold: rgba(232,199,102,.24);

  --display: "Fraunces","Iowan Old Style",Georgia,serif;
  --body:    "Karla","Segoe UI",system-ui,-apple-system,sans-serif;

  --gut: clamp(1.25rem,4vw,2.5rem);
  --bay: clamp(3.5rem,9vw,7rem);
  --max: 1180px;
  --r: 3px;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0; font-family: var(--body); font-size: 1.0625rem; line-height: 1.65;
  color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1,h2,h3 {
  font-family: var(--display); font-weight: 700; line-height: 1.04;
  letter-spacing: -.018em; margin: 0 0 .5em; text-wrap: balance;
}
h1 { font-size: clamp(2.4rem,6.4vw,4.6rem); }
h2 { font-size: clamp(1.9rem,4.2vw,3.05rem); }
h3 { font-size: clamp(1.12rem,2vw,1.35rem); }
p  { margin: 0 0 1.1em; max-width: 62ch; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }

.eyebrow {
  font-size: .71rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 1rem; display: flex; align-items: center; gap: .7rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; flex: none; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem; padding: .85rem 1.5rem;
  font-family: var(--body); font-weight: 700; font-size: .95rem; text-decoration: none;
  border: 1.5px solid transparent; border-radius: var(--r); cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn--solid { background: var(--red); color: var(--white); }
.btn--solid:hover { background: #8D1720; }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-lite); }
.btn--ghost { border-color: currentColor; color: inherit; }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--on-dark.btn--ghost:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* Header ----------------------------------------------------------------- */
.masthead {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);   /* opaque: a translucent header goes grey when the
                                 ink and navy bands scroll beneath it */
  border-bottom: 1px solid var(--line);
}
.masthead__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.logo img { width: 46px; height: 46px; flex: none; }
.logo__text { font-family: var(--display); font-weight: 700; font-size: 1.05rem; line-height: 1.15; letter-spacing: -.01em; }
.logo__text small {
  display: block; margin-top: 2px; font-family: var(--body); font-weight: 600;
  font-size: .62rem; letter-spacing: .17em; text-transform: uppercase; color: var(--slate);
}
.nav { display: flex; align-items: center; gap: 1.55rem; }
.nav a { font-size: .92rem; font-weight: 600; text-decoration: none; padding: .3rem 0; border-bottom: 2px solid transparent; }
.nav a:hover, .nav a:focus-visible { border-bottom-color: var(--gold); }
.nav .btn { padding: .6rem 1.1rem; }
.nav-toggle { display: none; background: none; border: 1.5px solid var(--line); border-radius: var(--r); padding: .5rem .75rem; cursor: pointer; font: inherit; font-weight: 700; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; inset: 72px 0 auto 0; flex-direction: column;
    align-items: stretch; gap: 0; background: var(--paper);
    border-bottom: 1px solid var(--line); padding: var(--gut);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 1rem; justify-content: center; border-bottom: none; }
}

/* Hero ------------------------------------------------------------------- */
.hero {
  background: var(--ink); color: var(--paper); position: relative; overflow: hidden;
  padding-block: clamp(3.5rem,9vw,6.5rem) clamp(3rem,7vw,5rem);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: linear-gradient(90deg,#8C6E15 0%,var(--gold-lite) 25%,var(--gold) 50%,var(--gold-lite) 75%,#8C6E15 100%);
}
.hero .eyebrow { color: var(--gold-lite); }
.hero h1 { color: var(--white); }
.hero h1 em { font-style: normal; color: var(--gold-lite); }
.hero__lede { font-size: clamp(1.05rem,1.7vw,1.25rem); color: #CFC9BC; max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__tag {
  margin-top: 2.5rem; font-size: .74rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
}
.hero__tag i { font-style: normal; color: #605C54; padding: 0 .5rem; }
.hero__facts {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  margin-top: 2.25rem; border-top: 1px solid var(--line-gold); padding-top: 1.75rem;
}
.hero__fact dt { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .35rem; }
.hero__fact dd { margin: 0; font-family: var(--display); font-size: 1.08rem; font-weight: 600; color: var(--white); }
@media (max-width: 640px) { .hero__facts { grid-template-columns: 1fr; gap: 1.1rem; } }

/* Bands ------------------------------------------------------------------ */
.band { padding-block: var(--bay); }
.band--paper { background: var(--paper); }
.band--warm { background: var(--paper-2); }
.band--ink { background: var(--ink); color: var(--paper); }
.band--navy { background: var(--navy); color: var(--paper); }
.band--ink h2, .band--navy h2 { color: var(--white); }
.band--ink p { color: #C6C1B6; }
.band--navy p { color: #C7D3E5; }
.band--ink .eyebrow, .band--navy .eyebrow { color: var(--gold-lite); }
.lede { font-size: clamp(1.05rem,1.6vw,1.2rem); color: var(--slate); }
.band--ink .lede { color: #C6C1B6; }
.band--navy .lede { color: #C7D3E5; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

/* SIGNATURE — the Journey. Pre-School -> Secondary. Order carries meaning. */
.journey { position: relative; margin-top: 3.5rem; }
.journey__road { position: absolute; top: 22px; left: 0; right: 0; height: 2px; background: var(--line); }
.journey__road::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg,var(--gold) 0 16px,transparent 16px 28px);
}
.journey__stops { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5,1fr); gap: 1.25rem; }
.stop { position: relative; padding-top: 3.5rem; }
.stop__pin {
  position: absolute; top: 8px; left: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--paper-2); border: 2px solid var(--ink); display: grid; place-items: center;
}
.stop__pin span { font-family: var(--display); font-weight: 700; font-size: .78rem; color: var(--ink); }
.stop--last .stop__pin { background: var(--ink); border-color: var(--gold); }
.stop--last .stop__pin span { color: var(--gold-lite); }
.stop__age { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
.stop h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.stop p { font-size: .92rem; color: var(--slate); margin: 0; }
@media (max-width: 1050px) and (min-width: 901px) {
  .journey__stops { grid-template-columns: repeat(3,1fr); row-gap: 2.5rem; }
  .journey__road { display: none; }
}
@media (max-width: 900px) {
  .journey__road { top: 0; bottom: 0; left: 14px; right: auto; width: 2px; height: auto; }
  .journey__road::after { background: repeating-linear-gradient(180deg,var(--gold) 0 16px,transparent 16px 28px); }
  .journey__stops { grid-template-columns: 1fr; gap: 2rem; }
  .stop { padding-top: 0; padding-left: 3.3rem; }
  .stop__pin { top: 0; }
}

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* The school's own eight promises ---------------------------------------- */
.promises { list-style: none; margin: 2.75rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 0 2.5rem; }
.promise { padding: 1.4rem 0; border-top: 1px solid var(--line-gold); }
.promise h3 { font-size: 1.02rem; margin-bottom: .3rem; color: var(--white); }
.promise p { font-size: .9rem; margin: 0; color: #A8A398; max-width: 36ch; }

/* Cards ------------------------------------------------------------------ */
.cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 1.65rem; }
.band--ink .card { background: var(--char); border-color: var(--line-gold); }
.card h3 { margin-bottom: .4rem; }
.band--ink .card h3 { color: var(--white); }
.card p { margin: 0; font-size: .95rem; color: var(--slate); }
.band--ink .card p { color: #ADA89D; }
.card__num { display: block; margin-bottom: .8rem; font-family: var(--display); font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }

/* Photos ----------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1rem; margin-top: 2.5rem; }
.shot { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--r); background: var(--char); display: grid; place-items: center; }
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot__placeholder { color: var(--gold); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; text-align: center; padding: 1rem; }

/* Visit ------------------------------------------------------------------ */
.visit { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
@media (max-width: 880px) { .visit { grid-template-columns: 1fr; } }
.detail { border-top: 1px solid var(--line-gold); padding: 1rem 0; }
.detail dt { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .25rem; }
.detail dd { margin: 0; font-size: 1.02rem; font-weight: 600; color: var(--paper); }
.detail dd a { text-decoration: none; border-bottom: 1px solid var(--gold); }
.map { width: 100%; aspect-ratio: 4/3; border: 0; border-radius: var(--r); filter: grayscale(.3) contrast(1.05); }

/* Form ------------------------------------------------------------------- */
.form { display: grid; gap: 1.1rem; max-width: 560px; }
.field { display: grid; gap: .35rem; }
.field label { font-size: .8rem; font-weight: 700; letter-spacing: .05em; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; padding: .78rem .9rem;
  border: 1.5px solid var(--line); border-radius: var(--r);
  background: var(--white); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--gold); outline-offset: 1px; border-color: var(--ink); }
.field textarea { min-height: 120px; resize: vertical; }
.field--hp { position: absolute; left: -9999px; }
.form__note { font-size: .85rem; color: var(--slate); }
.notice { padding: .9rem 1.1rem; border-radius: var(--r); font-size: .95rem; margin-bottom: 1.5rem; }
.notice--ok { background: #EAF0E6; border: 1px solid #A6BE97; }
.notice--bad { background: #F7E4E2; border: 1px solid #D9A29D; }

/* Steps ------------------------------------------------------------------ */
.steps { list-style: none; margin: 2.5rem 0 0; padding: 0; display: grid; gap: 1.75rem; counter-reset: step; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: start; }
.step__n {
  counter-increment: step; width: 38px; height: 38px; flex: none; display: grid; place-items: center;
  border: 2px solid var(--gold); border-radius: 50%;
  font-family: var(--display); font-weight: 700; font-size: .95rem; color: var(--ink);
}
.step__n::before { content: counter(step); }
.step h3 { margin-bottom: .25rem; }
.step p { margin: 0; color: var(--slate); }

/* CTA -------------------------------------------------------------------- */
.cta-strip { background: var(--red); color: var(--white); padding-block: clamp(2.5rem,6vw,4rem); }
.cta-strip h2 { color: var(--white); margin-bottom: .4rem; }
.cta-strip p { color: #F5D6D4; margin-bottom: 1.6rem; }
.cta-strip .btn--gold { background: var(--white); color: var(--red); }
.cta-strip .btn--gold:hover { background: var(--ink); color: var(--gold-lite); }
.cta-strip .btn--ghost { color: var(--white); }
.cta-strip .btn--ghost:hover { background: var(--white); color: var(--red); border-color: var(--white); }

/* Footer ----------------------------------------------------------------- */
.foot { background: var(--ink); color: #9C978C; padding-block: 3.5rem 2rem; font-size: .92rem; }
.foot a { color: var(--paper); text-decoration: none; border-bottom: 1px solid transparent; }
.foot a:hover { border-bottom-color: var(--gold); }
.foot .logo__text { color: var(--white); }
.foot .logo__text small { color: var(--gold); }
.foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 780px) { .foot__grid { grid-template-columns: 1fr; gap: 2rem; } }
.foot h4 { font-family: var(--body); font-size: .7rem; letter-spacing: .17em; text-transform: uppercase; color: var(--gold); margin: 0 0 .9rem; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.foot__motto { font-family: var(--display); font-style: italic; color: var(--gold); margin: 1rem 0 0; }
.foot__base {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line-gold);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .82rem;
}

.skip { position: absolute; left: -9999px; background: var(--ink); color: var(--gold-lite); padding: .75rem 1.25rem; z-index: 100; }
.skip:focus { left: 1rem; top: 1rem; }


/* Cambridge registration — the claim, with the proof next to it ----------- */
.accred {
  display: inline-flex; align-items: center; gap: .75rem;
  margin-top: 1.75rem; padding: .7rem 1.1rem;
  border: 1px solid var(--line-gold); border-radius: var(--r);
  background: rgba(232,199,102,.06);
}
.accred b { font-family: var(--display); font-size: .95rem; color: var(--gold-lite); font-weight: 700; }
.accred span { font-size: .82rem; color: #A8A398; letter-spacing: .02em; }
.band--paper .accred { background: rgba(201,162,39,.07); }
.band--paper .accred b { color: var(--ink); }
.band--paper .accred span { color: var(--slate); }


/* Facilities — hard numbers, not adjectives ------------------------------ */
.spec {
  display: block; margin-top: 1rem; padding-top: .85rem;
  border-top: 1px solid rgba(255,255,255,.16);
  font-family: var(--display); font-weight: 700; font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold-lite);
}
.band--navy .card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); }
.band--navy .card h3 { color: var(--white); }
.band--navy .card p { color: #C7D3E5; }
.band--navy .card__num { color: var(--gold-lite); }

/* ==========================================================================
   MOTION LAYER
   Rule of the house: nothing is hidden by default. `.motion` is added by JS
   only after we know the visitor has not asked for reduced motion. With JS
   off, or reduced motion on, every element below is simply visible.
   ========================================================================== */

/* --- Hero canvas ---------------------------------------------------------- */
.hero { position: relative; overflow: hidden; isolation: isolate; }
.hero__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; display: block; background: var(--ink);
}
/* Legibility over spectacle. The type must win the contrast fight, always. */
.hero__veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(105% 85% at 4% 42%, rgba(11,11,12,.95) 0%, rgba(11,11,12,.78) 30%, rgba(11,11,12,.24) 62%, rgba(11,11,12,.10) 100%),
    linear-gradient(180deg, rgba(11,11,12,.60) 0%, rgba(11,11,12,0) 26%, rgba(11,11,12,.72) 100%);
}
/* On a phone the type stacks full-width, so a left-weighted veil would bury the
   field entirely. Darken behind the words, and let the filaments run free above. */
@media (max-width: 760px) {
  .hero__veil {
    background:
      linear-gradient(180deg, rgba(11,11,12,.30) 0%, rgba(11,11,12,.10) 18%,
                              rgba(11,11,12,.62) 42%, rgba(11,11,12,.90) 72%,
                              rgba(11,11,12,.96) 100%);
  }
}
.hero > .wrap { position: relative; z-index: 2; }
.hero::after { z-index: 3; }

/* --- Orchestrated arrival ------------------------------------------------- */
.motion .hero .eyebrow,
.motion .hero h1 .line,
.motion .hero__lede,
.motion .hero__actions,
.motion .hero__facts {
  opacity: 0; transform: translate3d(0, 14px, 0);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.motion .hero h1 .line { display: block; }
.motion.is-loaded .hero .eyebrow    { opacity: 1; transform: none; transition-delay: .05s; }
.motion.is-loaded .hero h1 .line:nth-child(1) { opacity: 1; transform: none; transition-delay: .16s; }
.motion.is-loaded .hero h1 .line:nth-child(2) { opacity: 1; transform: none; transition-delay: .28s; }
.motion.is-loaded .hero__lede       { opacity: 1; transform: none; transition-delay: .42s; }
.motion.is-loaded .hero__actions    { opacity: 1; transform: none; transition-delay: .54s; }
.motion.is-loaded .hero__facts      { opacity: 1; transform: none; transition-delay: .64s; }

/* The gold rule under the headline draws itself, once. */
.hero h1 { position: relative; }
.motion .hero h1::after {
  content: ""; position: absolute; left: 0; bottom: -.55rem; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(232,199,102,0) 100%);
  transition: width 1.1s cubic-bezier(.2,.7,.2,1) .78s;
}
.motion.is-loaded .hero h1::after { width: 46%; }

/* --- Scroll reveals ------------------------------------------------------- */
.motion [data-reveal] {
  opacity: 0; transform: translate3d(0, 22px, 0);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.motion [data-reveal].is-in { opacity: 1; transform: none; will-change: auto; }

/* --- The Journey spine draws --------------------------------------------- */
.motion .journey::before { transform-origin: left center; transform: scaleX(0);
  transition: transform 1.4s cubic-bezier(.25,.6,.2,1); }
.motion .journey.is-drawn::before { transform: scaleX(1); }
.motion .journey__stop {
  opacity: 0; transform: translate3d(0, 16px, 0);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
}
.motion .journey__stop.is-in { opacity: 1; transform: none; }
@media (max-width: 760px) {
  .motion .journey::before { transform-origin: top center; transform: scaleY(0); transition: transform 1.4s cubic-bezier(.25,.6,.2,1); }
  .motion .journey.is-drawn::before { transform: scaleY(1); }
}

/* --- Masthead condenses --------------------------------------------------- */
.masthead {
  transition: box-shadow .45s ease, border-color .45s ease;
}
/* Stays ivory the whole way down. Because the paper bands are nearly the same
   colour, the separation has to come from a gold hairline and a real shadow —
   otherwise the header dissolves into the section behind it. */
.masthead.is-condensed {
  background: var(--paper);
  border-bottom-color: var(--line-gold);
  box-shadow: 0 12px 30px -20px rgba(11,11,12,.30);
}
.masthead.is-condensed .logo img { transform: scale(.87); }
.masthead .logo img { transition: transform .45s cubic-bezier(.2,.7,.2,1); }

/* --- Cards: a slow gold sheen that follows the cursor --------------------- */
.card, .promise { position: relative; overflow: hidden; }
.card::after, .promise::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%),
              rgba(232,199,102,.12), transparent 62%);
  transition: opacity .5s ease;
}
.card:hover::after, .promise:hover::after { opacity: 1; }
.card, .promise { transition: transform .45s cubic-bezier(.2,.7,.2,1), border-color .45s ease; }
@media (hover: hover) and (pointer: fine) {
  .card:hover, .promise:hover { transform: translateY(-4px); border-color: var(--gold); }
}

/* --- Buttons: the gold fill wipes in from the left ------------------------ */
.btn { position: relative; overflow: hidden; z-index: 0; }
.btn--solid::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--gold-lite); transform: scaleX(0); transform-origin: left center;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.btn--solid:hover::before, .btn--solid:focus-visible::before { transform: scaleX(1); }

/* Nothing above may override the global reduced-motion kill switch. */
@media (prefers-reduced-motion: reduce) {
  .motion [data-reveal], .motion .journey__stop,
  .motion .hero .eyebrow, .motion .hero h1 .line, .motion .hero__lede,
  .motion .hero__actions, .motion .hero__facts { opacity: 1 !important; transform: none !important; }
  .motion .journey::before { transform: none !important; }
}

/* --- Photographs: 4-up, self-healing --------------------------------------- */
.shots {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem; margin-top: 2.75rem;
}
@media (max-width: 700px) { .shots { grid-template-columns: 1fr; } }
.shot { margin: 0; }
.shot img {
  display: block; width: 100%; height: auto; aspect-ratio: 3 / 2;
  object-fit: cover; border-radius: var(--r);
  background: var(--paper-2);          /* holds the space while it loads */
  border: 1px solid var(--line);
}
.shot figcaption {
  margin-top: .6rem; font-size: .86rem; color: var(--slate);
  border-left: 2px solid var(--gold); padding-left: .65rem;
}
.band--ink .shot figcaption, .band--navy .shot figcaption { color: #A8A398; }
.motion .shot img { transition: transform .8s cubic-bezier(.2,.7,.2,1); }
@media (hover: hover) and (pointer: fine) {
  .shot { overflow: hidden; border-radius: var(--r); }
  .shot:hover img { transform: scale(1.03); }
}
