/* ==========================================================================
   Pretty in Clink - Cassie Will
   Palette: oxblood + hot pink on warm near-black. Display: Oswald. Body: Lora.
   ========================================================================== */

:root{
  /* ink */
  --ink:        #0B0708;
  --ink-2:      #130A0D;
  --ink-3:      #1C0F13;
  --ink-line:   #2E181E;

  /* reds */
  --oxblood:    #6E0F1F;
  --oxblood-lo: #470913;
  --blood:      #A4162C;

  /* pinks */
  --pink:       #FF2E88;
  --pink-hot:   #E6007A;
  --pink-soft:  #FF9AC4;

  /* neutrals */
  --cream:      #F8EFEA;
  --muted:      #C6A9AF;
  --muted-dim:  #9C7C83;

  /* type */
  --display: "Oswald", "Arial Narrow", Impact, sans-serif;
  --body:    "Lora", Georgia, "Times New Roman", serif;

  /* rhythm */
  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --shell: 1180px;
  --nav-h: 74px;

  /* z-scale */
  --z-bg: 0; --z-content: 10; --z-nav: 30; --z-modal: 50;
}

*,*::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-duration:.001ms!important; animation-iteration-count:1!important; transition-duration:.001ms!important; }
}

body{
  margin:0;
  /* Grain lives here as an ordinary scrolling background, NOT as a fixed
     full-viewport overlay - see the note below. */
  background-color:var(--ink);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  color:var(--cream);
  font-family:var(--body);
  font-size:17px;
  line-height:1.75;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

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

/* NOTE: there is deliberately no full-viewport `position:fixed` grain overlay
   here. A fixed, full-screen pseudo-element painting a repeating SVG data URI
   promotes a compositing layer that Chrome can fail to paint, which blanks the
   whole page below the fold. Texture lives on the hero instead (.hero-bg),
   where it is absolutely positioned and safe. */

/* ---------------------------------------------------------------- type -- */
h1,h2,h3,h4,.display{
  font-family:var(--display);
  font-weight:700;
  line-height:.94;
  letter-spacing:.005em;
  text-transform:uppercase;
  margin:0 0 .5em;
}
h1{ font-size:clamp(2.35rem, 5.4vw, 4.4rem); }
h2{ font-size:clamp(1.85rem, 4vw, 3rem); }
h3{ font-size:clamp(1.22rem, 2.2vw, 1.6rem); line-height:1.08; }
p{ margin:0 0 1.15em; }
p:last-child{ margin-bottom:0; }

a{ color:var(--pink); text-decoration-color:rgba(255,46,136,.4); text-underline-offset:.22em; transition:color .2s ease, text-decoration-color .2s ease; }
a:hover{ color:var(--pink-soft); text-decoration-color:var(--pink-soft); }

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

.lede{ font-size:clamp(1.1rem,2.1vw,1.35rem); line-height:1.6; color:var(--cream); }
.dim{ color:var(--muted); }
.dimmer{ color:var(--muted-dim); }

/* eyebrow / kicker */
.kicker{
  font-family:var(--display); font-weight:500; text-transform:uppercase;
  letter-spacing:.34em; font-size:.72rem; color:var(--pink);
  display:flex; align-items:center; gap:.85rem; margin:0 0 1.4rem;
}
.kicker::before{ content:""; width:34px; height:2px; background:var(--pink); flex:none; }
.kicker.center{ justify-content:center; }

/* ------------------------------------------------------------- layout -- */
.shell{ width:min(100% - (var(--gut)*2), var(--shell)); margin-inline:auto; }
section{ position:relative; z-index:var(--z-content); }
.band{ padding:clamp(4.5rem, 11vw, 8.5rem) 0; }
.band-tight{ padding:clamp(3rem, 7vw, 5rem) 0; }
.center{ text-align:center; }

/* hairline divider */
.rule{ height:1px; background:linear-gradient(90deg,transparent,var(--ink-line) 12%,var(--ink-line) 88%,transparent); border:0; margin:0; }

/* ---------------------------------------------------------------- nav -- */
.nav{
  position:sticky; top:0; z-index:var(--z-nav);
  background:rgba(11,7,8,.85);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--ink-line);
}
.nav-in{ height:var(--nav-h); display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.brand{ display:flex; align-items:center; gap:.75rem; text-decoration:none; flex:none; }
.brand img{ height:42px; width:auto; }
.brand span{
  font-family:var(--display); font-weight:600; text-transform:uppercase;
  letter-spacing:.16em; font-size:.8rem; color:var(--cream); display:none;
}
@media (min-width:1120px){ .brand span{ display:block; } }

.nav-links{ display:none; align-items:center; gap:2rem; }
@media (min-width:900px){ .nav-links{ display:flex; } }
.nav-links a{
  font-family:var(--display); font-weight:500; text-transform:uppercase;
  letter-spacing:.15em; font-size:.78rem; color:var(--cream);
  text-decoration:none; padding:.4rem 0; position:relative;
}
.nav-links a::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:2px;
  background:var(--pink); transition:right .25s ease;
}
.nav-links a:hover::after,.nav-links a[aria-current="page"]::after{ right:0; }
.nav-links a[aria-current="page"]{ color:var(--pink); }

/* mobile menu - details/summary, works without JS */
.menu{ display:block; position:relative; }
@media (min-width:900px){ .menu{ display:none; } }
.menu summary{
  list-style:none; cursor:pointer; width:46px; height:46px;
  display:grid; place-items:center; border:1px solid var(--ink-line);
  background:var(--ink-2); border-radius:3px;
}
.menu summary::-webkit-details-marker{ display:none; }
.menu summary svg{ width:22px; height:22px; stroke:var(--cream); }
.menu[open] summary{ border-color:var(--pink); }
.menu-panel{
  position:absolute; right:0; top:calc(100% + 14px); width:min(74vw,270px);
  background:var(--ink-2); border:1px solid var(--ink-line); border-radius:4px;
  padding:.5rem; box-shadow:0 24px 60px rgba(0,0,0,.65);
}
.menu-panel a{
  display:block; padding:.95rem 1rem; text-decoration:none; color:var(--cream);
  font-family:var(--display); text-transform:uppercase; letter-spacing:.15em; font-size:.85rem;
  border-radius:3px; min-height:44px;
}
.menu-panel a:hover{ background:var(--ink-3); color:var(--pink); }

/* ------------------------------------------------------------ buttons -- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6rem;
  min-height:52px; padding:0 1.9rem; cursor:pointer;
  font-family:var(--display); font-weight:600; text-transform:uppercase;
  letter-spacing:.16em; font-size:.82rem; text-decoration:none;
  border-radius:3px; border:1px solid transparent;
  transition:background-color .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.btn-primary{ background:var(--pink-hot); color:#fff; }
.btn-primary:hover{ background:var(--pink); color:#fff; box-shadow:0 8px 34px rgba(230,0,122,.34); }
.btn-ghost{ background:transparent; color:var(--cream); border-color:var(--ink-line); }
.btn-ghost:hover{ border-color:var(--pink); color:var(--pink); background:rgba(230,0,122,.06); }
.btn-block{ width:100%; }
.btn:disabled{ opacity:.55; cursor:not-allowed; }
.btn-row{ display:flex; flex-wrap:wrap; gap:.85rem; }

/* ---------------------------------------------------------------- hero -- */
.hero{
  position:relative; overflow:hidden;
  padding:clamp(3.5rem,9vw,6.5rem) 0 clamp(3.5rem,8vw,6rem);
  border-bottom:1px solid var(--ink-line);
}
.hero-bg{ position:absolute; inset:0; z-index:var(--z-bg); pointer-events:none; }
.hero-bg::before{
  content:""; position:absolute; inset:0;
  /* Transparent base: the photographic layer underneath supplies the ground.
     An opaque gradient here would hide it completely. */
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(110,15,31,.55) 0%, transparent 62%),
    radial-gradient(90% 80% at 95% 20%, rgba(230,0,122,.18) 0%, transparent 58%),
    linear-gradient(180deg, rgba(19,10,13,0) 0%, rgba(11,7,8,.30) 72%, var(--ink) 100%);
}
.hero-bg::after{
  content:""; position:absolute; inset:0; opacity:.07;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cg fill='none' stroke='%23FF9AC4' stroke-width='1.4'%3E%3Cpath d='M0 28L28 0l28 28-28 28z'/%3E%3Cpath d='M28 0v56M0 28h56'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-image:linear-gradient(180deg,#000 0%,transparent 78%);
  mask-image:linear-gradient(180deg,#000 0%,transparent 78%);
}
.hero-in{ position:relative; z-index:var(--z-content); }
.hero-logo{ width:min(100%,470px); margin:0 0 1.6rem; filter:drop-shadow(0 14px 40px rgba(230,0,122,.32)); }
.hero h1{ max-width:17ch; }
.hero .lede{ max-width:52ch; }

.hero-grid{ display:grid; gap:clamp(2.5rem,6vw,4rem); align-items:center; }
@media (min-width:980px){ .hero-grid{ grid-template-columns:1.12fr .88fr; } }

/* status pill */
.pill{
  display:inline-flex; align-items:center; gap:.6rem;
  font-family:var(--display); text-transform:uppercase; letter-spacing:.2em; font-size:.7rem;
  color:var(--pink-soft); background:rgba(230,0,122,.1);
  border:1px solid rgba(230,0,122,.32); border-radius:100px; padding:.5rem 1.1rem;
}
.pill .dot{ width:7px; height:7px; border-radius:50%; background:var(--pink); flex:none; }

/* ---------------------------------------------------------- book cover -- */
.cover-wrap{ perspective:1400px; }
.cover{
  position:relative; width:min(100%,330px); aspect-ratio:2/3; margin-inline:auto;
  background:linear-gradient(158deg,var(--oxblood) 0%,var(--oxblood-lo) 55%,#2A050D 100%);
  border-radius:3px 7px 7px 3px;
  box-shadow:
    -8px 0 0 rgba(255,255,255,.055) inset,
    -9px 0 22px rgba(0,0,0,.5) inset,
    0 40px 80px rgba(0,0,0,.62),
    0 0 0 1px rgba(255,154,196,.14);
  display:flex; flex-direction:column; justify-content:space-between;
  padding:2rem 1.5rem; overflow:hidden;
  transform:rotateY(-13deg) rotateX(3deg);
  transition:transform .5s cubic-bezier(.2,.7,.3,1);
}
.cover:hover{ transform:rotateY(-6deg) rotateX(1deg); }
@media (prefers-reduced-motion: reduce){ .cover,.cover:hover{ transform:none; } }
.cover::before{
  content:""; position:absolute; inset:0; opacity:.2;
  background-image:radial-gradient(var(--pink-soft) 1px, transparent 1.2px);
  background-size:7px 7px;
  -webkit-mask-image:linear-gradient(215deg,#000,transparent 68%);
  mask-image:linear-gradient(215deg,#000,transparent 68%);
}
.cover-top,.cover-bot{ position:relative; z-index:2; }
.cover-title{
  font-family:var(--display); font-weight:700; text-transform:uppercase;
  font-size:clamp(2.2rem,5.2vw,2.9rem); line-height:.86; color:var(--pink-soft);
  text-shadow:0 3px 0 rgba(0,0,0,.42); margin:0;
}
.cover-title em{ display:block; font-style:normal; color:#fff; }
.cover-sub{
  font-family:var(--display); text-transform:uppercase; letter-spacing:.3em;
  font-size:.63rem; color:rgba(248,239,234,.75); margin:.9rem 0 0;
}
.cover-author{
  font-family:var(--display); text-transform:uppercase; letter-spacing:.22em;
  font-size:.9rem; color:#fff; margin:0;
}
.cover-note{
  font-family:var(--display); text-transform:uppercase; letter-spacing:.24em;
  font-size:.57rem; color:var(--pink-soft); margin:.5rem 0 0;
}
.cover-caption{
  font-family:var(--display); text-transform:uppercase; letter-spacing:.22em;
  font-size:.6rem; color:var(--muted-dim); text-align:center; margin:1.4rem 0 0;
}

/* --------------------------------------------------------------- cards -- */
.grid{ display:grid; gap:1.25rem; }
.grid-2{ grid-template-columns:1fr; }
.grid-3{ grid-template-columns:1fr; }
@media (min-width:760px){ .grid-2{ grid-template-columns:repeat(2,1fr); } .grid-3{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1040px){ .grid-3{ grid-template-columns:repeat(3,1fr); } }

.card{
  position:relative; background:var(--ink-2); border:1px solid var(--ink-line);
  border-radius:4px; padding:clamp(1.6rem,3vw,2.3rem); overflow:hidden;
  transition:border-color .25s ease, background-color .25s ease;
}
.card::before{
  content:""; position:absolute; left:0; top:0; bottom:0; width:3px;
  background:linear-gradient(180deg,var(--pink),var(--oxblood)); opacity:0; transition:opacity .25s ease;
}
a.card{ text-decoration:none; color:inherit; display:block; cursor:pointer; }
a.card:hover{ border-color:rgba(230,0,122,.5); background:var(--ink-3); }
a.card:hover::before{ opacity:1; }
.card h3{ color:var(--cream); margin-bottom:.55rem; }
a.card:hover h3{ color:var(--pink); }
.card p{ color:var(--muted); font-size:.98rem; }
.card-more{
  font-family:var(--display); text-transform:uppercase; letter-spacing:.18em;
  font-size:.72rem; color:var(--pink); margin-top:1.2rem; display:inline-flex; align-items:center; gap:.5rem;
}
.card-more svg{ width:15px; height:15px; transition:transform .25s ease; }
a.card:hover .card-more svg{ transform:translateX(5px); }

.num{
  font-family:var(--display); font-size:3.1rem; line-height:1; font-weight:700;
  color:transparent; -webkit-text-stroke:1.4px var(--oxblood); display:block; margin-bottom:.7rem;
}

/* ------------------------------------------------------------- feature -- */
.split{ display:grid; gap:clamp(2rem,5vw,3.75rem); align-items:center; }
@media (min-width:940px){
  .split{ grid-template-columns:1fr 1fr; }
  .split.narrow-right{ grid-template-columns:1.2fr .8fr; }
  .split.narrow-left{ grid-template-columns:.8fr 1.2fr; }
}

.quote{
  border-left:3px solid var(--pink); padding:.3rem 0 .3rem 1.6rem; margin:0;
  font-size:clamp(1.25rem,2.7vw,1.75rem); line-height:1.45; font-style:italic; color:var(--cream);
}
.quote cite{
  display:block; margin-top:1rem; font-style:normal; font-family:var(--display);
  text-transform:uppercase; letter-spacing:.2em; font-size:.7rem; color:var(--muted-dim);
}

/* excerpt block - reads like a page from the book */
.excerpt{
  background:linear-gradient(180deg,var(--ink-2),var(--ink));
  border:1px solid var(--ink-line); border-radius:4px;
  padding:clamp(1.8rem,4vw,3.2rem); position:relative;
}
.excerpt p{ position:relative; font-size:1.06rem; line-height:1.85; }
.excerpt p:first-of-type::first-letter{
  float:left; font-family:var(--display); font-size:3.4rem; line-height:.82;
  padding:.08em .14em 0 0; color:var(--pink);
}

/* timeline */
.timeline{ list-style:none; margin:0; padding:0; position:relative; }
.timeline::before{ content:""; position:absolute; left:7px; top:8px; bottom:8px; width:1px; background:var(--ink-line); }
.timeline li{ position:relative; padding:0 0 2.1rem 2.4rem; }
.timeline li:last-child{ padding-bottom:0; }
.timeline li::before{
  content:""; position:absolute; left:0; top:8px; width:15px; height:15px; border-radius:50%;
  background:var(--ink); border:2px solid var(--oxblood);
}
.timeline li.now::before{ border-color:var(--pink); background:var(--pink); box-shadow:0 0 0 5px rgba(230,0,122,.16); }
.timeline .when{
  font-family:var(--display); text-transform:uppercase; letter-spacing:.2em;
  font-size:.68rem; color:var(--pink); display:block; margin-bottom:.3rem;
}
.timeline h3{ font-size:1.15rem; margin-bottom:.35rem; }
.timeline p{ color:var(--muted); font-size:.97rem; margin:0; }

/* ---------------------------------------------------------------- forms -- */
.form{ display:grid; gap:1rem; }
.field{ display:grid; gap:.45rem; }
.field label{
  font-family:var(--display); text-transform:uppercase; letter-spacing:.18em;
  font-size:.7rem; color:var(--muted);
}
.field .req{ color:var(--pink); }
input,textarea,select{
  width:100%; font-family:var(--body); font-size:1rem; color:var(--cream);
  background:var(--ink); border:1px solid var(--ink-line); border-radius:3px;
  padding:.95rem 1.05rem; min-height:52px;
  transition:border-color .2s ease, box-shadow .2s ease;
}
textarea{ min-height:150px; resize:vertical; line-height:1.6; }
input::placeholder,textarea::placeholder{ color:var(--muted-dim); }
input:focus,textarea:focus,select:focus{
  outline:none; border-color:var(--pink); box-shadow:0 0 0 3px rgba(230,0,122,.18);
}
.hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

.form-note{ font-size:.82rem; color:var(--muted-dim); line-height:1.55; }
.form-msg{
  display:none; padding:.9rem 1.1rem; border-radius:3px; font-size:.93rem; line-height:1.5;
  border:1px solid transparent;
}
.form-msg.show{ display:block; }
.form-msg.ok{ background:rgba(230,0,122,.1); border-color:rgba(230,0,122,.42); color:var(--pink-soft); }
.form-msg.err{ background:rgba(164,22,44,.16); border-color:rgba(164,22,44,.55); color:#FFB3BE; }

/* inline signup */
.signup{
  background:
    radial-gradient(90% 130% at 10% 0%, rgba(110,15,31,.5), transparent 60%),
    var(--ink-2);
  border:1px solid var(--ink-line); border-radius:5px;
  padding:clamp(1.9rem,4.5vw,3.4rem);
}
.signup-row{ display:grid; gap:.75rem; }
@media (min-width:620px){ .signup-row{ grid-template-columns:1fr auto; align-items:start; } }

/* -------------------------------------------------------------- footer -- */
.foot{ border-top:1px solid var(--ink-line); background:var(--ink-2); padding:clamp(3rem,7vw,4.5rem) 0 2rem; }
.foot-grid{ display:grid; gap:2.5rem; }
@media (min-width:820px){ .foot-grid{ grid-template-columns:1.4fr 1fr 1fr; } }
.foot h4{
  font-family:var(--display); text-transform:uppercase; letter-spacing:.2em;
  font-size:.74rem; color:var(--muted-dim); margin:0 0 1.1rem;
}
.foot ul{ list-style:none; margin:0; padding:0; display:grid; gap:.7rem; }
.foot ul a{ color:var(--cream); text-decoration:none; font-size:.95rem; }
.foot ul a:hover{ color:var(--pink); }
.foot img.mark{ width:185px; margin-bottom:1.2rem; }
.foot-base{
  margin-top:2.8rem; padding-top:1.6rem; border-top:1px solid var(--ink-line);
  display:flex; flex-wrap:wrap; gap:1rem; justify-content:space-between;
  font-size:.82rem; color:var(--muted-dim);
}
.social{ display:flex; gap:.6rem; }
.social a{
  width:44px; height:44px; display:grid; place-items:center; border-radius:3px;
  border:1px solid var(--ink-line); color:var(--muted); transition:border-color .22s ease, color .22s ease, background-color .22s ease;
}
.social a:hover{ border-color:var(--pink); color:var(--pink); background:rgba(230,0,122,.07); }
.social svg{ width:19px; height:19px; }

/* --------------------------------------------------------------- utils -- */
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
.skip{
  position:absolute; left:-9999px; z-index:var(--z-modal);
  background:var(--pink-hot); color:#fff; padding:.9rem 1.4rem;
  font-family:var(--display); text-transform:uppercase; letter-spacing:.15em; font-size:.8rem;
}
.skip:focus{ left:var(--gut); top:.6rem; }

/* reveal on scroll */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; } }

/* ==========================================================================
   IMAGERY
   All photography is duotoned into the oxblood/pink ramp at build time so
   stock reads as one designed system rather than a pile of stock.
   ========================================================================== */

/* photographic hero backdrop, behind the gradient wash ------------------- */
.hero-photo{ position:absolute; inset:0; z-index:0; overflow:hidden; }
.hero-photo img{
  width:100%; height:100%; object-fit:cover; opacity:.82;
  transform:scale(1.06);
  animation:drift 30s ease-in-out infinite alternate;
}
@keyframes drift{
  from{ transform:scale(1.06) translate3d(0,0,0); }
  to  { transform:scale(1.15) translate3d(-2%,-1.5%,0); }
}
@media (prefers-reduced-motion: reduce){ .hero-photo img{ animation:none; } }
.hero-photo::after{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(90% 80% at 18% 15%, rgba(110,15,31,.50) 0%, transparent 66%),
    linear-gradient(180deg, rgba(11,7,8,.22) 0%, rgba(11,7,8,.68) 60%, var(--ink) 100%);
}
.hero .hero-bg{ z-index:1; }
.hero-in{ z-index:2; }

/* figure ----------------------------------------------------------------- */
.figure{
  position:relative; margin:0; border-radius:4px; overflow:hidden;
  border:1px solid var(--ink-line); background:var(--ink-2);
}
.figure img{ width:100%; display:block; transition:transform .9s cubic-bezier(.2,.7,.3,1); }
.figure:hover img{ transform:scale(1.045); }
@media (prefers-reduced-motion: reduce){ .figure:hover img{ transform:none; } }
.figure figcaption{
  position:absolute; left:0; right:0; bottom:0; padding:2.2rem 1.2rem .95rem;
  background:linear-gradient(180deg, transparent, rgba(7,4,5,.94) 62%);
  font-family:var(--display); text-transform:uppercase; letter-spacing:.2em;
  font-size:.66rem; color:var(--pink-soft);
}
/* thin pink edge on hover */
.figure::after{
  content:""; position:absolute; inset:0; pointer-events:none; border-radius:4px;
  box-shadow:inset 0 0 0 1px rgba(230,0,122,0); transition:box-shadow .3s ease;
}
.figure:hover::after{ box-shadow:inset 0 0 0 1px rgba(230,0,122,.55); }

.figure-tall img{ aspect-ratio:4/5; object-fit:cover; }
.figure-wide img{ aspect-ratio:16/9; object-fit:cover; }

/* full-bleed photo band -------------------------------------------------- */
.band-photo{
  position:relative; overflow:hidden;
  padding:clamp(4rem,9vw,7.5rem) 0;
  border-block:1px solid var(--ink-line);
}
.band-photo > img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:.4; z-index:0;
}
.band-photo::after{
  content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(90deg, var(--ink) 4%, rgba(11,7,8,.72) 52%, rgba(11,7,8,.92) 100%);
}
.band-photo .shell{ position:relative; z-index:2; }

/* gallery strip ---------------------------------------------------------- */
.strip{ display:grid; grid-template-columns:repeat(2,1fr); gap:.9rem; }
@media (min-width:860px){ .strip{ grid-template-columns:repeat(4,1fr); } }
.strip .figure img{ aspect-ratio:4/5; object-fit:cover; }

/* offset stack: two images, one nudged ----------------------------------- */
.stack-pair{ position:relative; padding-bottom:clamp(2rem,5vw,3.5rem); }
.stack-pair .figure:last-child{
  position:absolute; right:-4%; bottom:0; width:52%;
  border-width:2px; border-color:var(--ink); box-shadow:0 24px 60px rgba(0,0,0,.6);
}
@media (max-width:640px){
  .stack-pair{ padding-bottom:0; }
  .stack-pair .figure:last-child{ position:static; width:100%; margin-top:.9rem; }
}
