/* ==========================================================================
   DOWN NORTH — downnorthband.com
   Palette pulled from the band's own artwork: black stock, hot magenta
   (the No Retreat cover), stage-light cyan. Type is stencil-heavy to sit
   with the logo, set on a grain field so it reads like print, not a template.
   ========================================================================== */

:root {
  --ink:        #0b0a0c;
  --ink-2:      #131215;
  --ink-3:      #1c1a1f;
  --paper:      #f2efe8;
  --paper-dim:  #cdc7bb;

  --hot:        #f005db;
  --hot-deep:   #b3059f;
  --ice:        #00d9ff;
  --gold:       #ffd029;

  --text:       #f6f4f1;
  --text-2:     #a5a0a8;
  --text-3:     #6e6a75;
  --line:       #2c2930;

  --shell:      min(1240px, 100% - 2.5rem);
  --rhythm:     clamp(4.5rem, 9vw, 8.5rem);

  --f-display:  'Anton', 'Haettenschweiler', 'Arial Narrow', sans-serif;
  --f-label:    'Barlow Condensed', 'Oswald', sans-serif;
  --f-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Print-stock grain over the whole page. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

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

.shell { width: var(--shell); margin-inline: auto; }

.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;
}

/* --------------------------------------------------------------------------
   TYPE
   -------------------------------------------------------------------------- */

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .012em;
  line-height: .92;
  margin: 0;
}

.eyebrow {
  font-family: var(--f-label);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--hot);
  margin: 0 0 1.1rem;
}

/* A section label that reads like a strip of tape stuck on the page. */
.tape {
  display: inline-block;
  font-family: var(--f-label);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--hot);
  padding: .3rem .85rem .25rem;
  transform: rotate(-1.4deg);
  margin-bottom: 1.4rem;
}
.tape--ice  { background: var(--ice);  transform: rotate(1.1deg); }
.tape--gold { background: var(--gold); transform: rotate(-.8deg); }

.section-title {
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--text-2);
  max-width: 54ch;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */

.btn {
  --btn-bg: var(--hot);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--f-label);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 2px solid var(--btn-bg);
  padding: .85rem 1.6rem;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, color .16s ease;
}
.btn:hover  { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 rgba(0,0,0,.55); }
.btn:active { transform: translate(0, 0); box-shadow: none; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--text);
}
.btn--ghost:hover { background: var(--text); color: var(--ink); }

.btn--small { padding: .6rem 1.05rem; font-size: .82rem; letter-spacing: .14em; }

/* --------------------------------------------------------------------------
   NAV
   -------------------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(11, 10, 12, 0);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.nav.is-stuck {
  background: rgba(11, 10, 12, .93);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav__inner {
  width: var(--shell);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
}

.nav__logo img { height: 26px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-family: var(--f-label);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-2);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.nav__links a:hover { color: var(--text); border-bottom-color: var(--hot); }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  padding: .4rem;
  cursor: pointer;
}
.nav__toggle svg { width: 26px; height: 26px; }

@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    padding: .5rem 0 1rem;
    transform: translateY(-120%);
    transition: transform .28s ease;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links li { width: 100%; }
  .nav__links a {
    display: block;
    width: 100%;
    padding: .9rem 1.25rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }
  .nav__links a:hover { border-bottom-color: var(--line); background: var(--ink-3); }
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: min(92vh, 900px);
  margin-top: -74px;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(1.06) contrast(1.04);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,10,12,.86) 0%, rgba(11,10,12,.28) 32%, rgba(11,10,12,.72) 72%, var(--ink) 100%),
    radial-gradient(120% 80% at 70% 40%, rgba(240,5,219,.16), transparent 60%);
}

.hero__inner {
  width: var(--shell);
  margin-inline: auto;
  padding: 0 0 clamp(3rem, 7vw, 6rem);
  position: relative;
}

.hero__logo {
  width: min(680px, 84%);
  margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
  filter: drop-shadow(0 6px 30px rgba(0,0,0,.65));
}

.hero__headline {
  font-size: clamp(2.2rem, 5.6vw, 4.4rem);
  max-width: 16ch;
  white-space: pre-line;
  margin-bottom: 1rem;
}
.hero__headline em {
  font-style: normal;
  color: var(--hot);
}

.hero__sub {
  font-family: var(--f-label);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--paper-dim);
  margin: 0 0 2.2rem;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; }

/* --------------------------------------------------------------------------
   SECTION SHELL
   -------------------------------------------------------------------------- */

.section { padding-block: var(--rhythm); position: relative; }
.section__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.section--paper {
  background: var(--paper);
  color: var(--ink);
}
.section--paper .lede { color: #4a454e; }
.section--paper .tape { background: var(--ink); color: var(--paper); }

/* Torn-paper edge between the dark page and a paper section. */
.torn {
  height: 26px;
  background: var(--paper);
  clip-path: polygon(
    0 44%, 3% 22%, 7% 58%, 11% 26%, 15% 62%, 19% 30%, 24% 66%, 28% 28%,
    33% 56%, 37% 24%, 42% 60%, 46% 30%, 51% 64%, 55% 26%, 60% 58%, 64% 30%,
    69% 62%, 73% 24%, 78% 56%, 82% 32%, 87% 60%, 91% 26%, 96% 54%, 100% 34%,
    100% 100%, 0 100%
  );
}
.torn--flip { transform: scaleY(-1); }

/* --------------------------------------------------------------------------
   SHOWS
   -------------------------------------------------------------------------- */

.shows__list { list-style: none; margin: 0; padding: 0; }

.show {
  display: grid;
  grid-template-columns: 8.5rem 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}
.show:last-child { border-bottom: 1px solid var(--line); }

.show__date {
  font-family: var(--f-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--hot);
}
.show__date span {
  display: block;
  font-family: var(--f-label);
  font-size: .8rem;
  letter-spacing: .24em;
  color: var(--text-2);
  margin-top: .35rem;
}
.show__venue { font-family: var(--f-display); font-size: 1.45rem; }
.show__city  { font-family: var(--f-label); letter-spacing: .16em; text-transform: uppercase; color: var(--text-2); font-size: .9rem; }
.show__note  { font-size: .85rem; color: var(--text-2); font-style: italic; }
.show__tba   { font-family: var(--f-label); letter-spacing: .18em; text-transform: uppercase; color: var(--text-2); font-size: .85rem; }

.shows__empty {
  border: 2px dashed var(--line);
  padding: clamp(2.2rem, 5vw, 3.6rem);
  text-align: center;
}
.shows__empty h3 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .8rem; }
.shows__empty p  { color: var(--text-2); max-width: 46ch; margin: 0 auto 1.8rem; }

@media (max-width: 700px) {
  .show { grid-template-columns: 1fr; gap: .5rem; }
  .show__tickets { justify-self: start; margin-top: .6rem; }
}

/* --------------------------------------------------------------------------
   RELEASES
   -------------------------------------------------------------------------- */

.releases { display: grid; gap: clamp(3rem, 6vw, 5rem); }

.release {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
}
.release:nth-child(even) .release__art { order: 2; }

.release__art {
  position: relative;
  box-shadow: 0 30px 70px rgba(0,0,0,.55);
}
.release__art img { width: 100%; }
.release__art::before {
  /* strip of tape on the corner */
  content: '';
  position: absolute;
  top: -12px; left: 12%;
  width: 92px; height: 26px;
  background: rgba(242,239,232,.22);
  border: 1px solid rgba(242,239,232,.16);
  transform: rotate(-4deg);
}

.release__vol {
  font-family: var(--f-label);
  font-size: .85rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--hot);
  margin-bottom: .5rem;
}
.release__title { font-size: clamp(2.4rem, 5.5vw, 3.8rem); margin-bottom: 1.4rem; }

.tracklist {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  counter-reset: t;
  columns: 2;
  column-gap: 2rem;
}
.tracklist li {
  counter-increment: t;
  break-inside: avoid;
  padding: .5rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .96rem;
  display: flex;
  gap: .8rem;
}
.tracklist li::before {
  content: counter(t, decimal-leading-zero);
  font-family: var(--f-label);
  color: var(--text-3);
  letter-spacing: .1em;
}
@media (max-width: 560px) { .tracklist { columns: 1; } }

.streams { display: flex; flex-wrap: wrap; gap: .6rem; }

.streams__todo {
  font-family: var(--f-label);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--text-3);
  border: 1px dashed var(--line);
  padding: .6rem 1rem;
}

@media (max-width: 800px) {
  .release { grid-template-columns: 1fr; }
  .release:nth-child(even) .release__art { order: 0; }
  .release__art { max-width: 420px; }
}

/* --------------------------------------------------------------------------
   VIDEO
   -------------------------------------------------------------------------- */

.video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
}
.video__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .62;
  transition: opacity .3s ease, transform .5s ease;
}
.video__frame:hover img { opacity: .78; transform: scale(1.03); }
.video__frame iframe { width: 100%; height: 100%; border: 0; }

.video__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.video__play span {
  width: 88px; height: 88px;
  display: grid; place-items: center;
  background: var(--hot);
  border-radius: 50%;
  box-shadow: 0 12px 40px rgba(240,5,219,.4);
}
.video__play svg { width: 30px; height: 30px; fill: #fff; margin-left: 4px; }

.video__cap {
  font-family: var(--f-label);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--text-2);
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   ABOUT
   -------------------------------------------------------------------------- */

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about__copy p { font-size: 1.06rem; margin: 0 0 1.2rem; }
.about__copy p:first-of-type {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.15;
  text-transform: none;
  letter-spacing: 0;
}
.about__img img { width: 100%; }

.lineup { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: .6rem; }
.lineup li { display: flex; gap: .8rem; align-items: baseline; }
.lineup strong { font-family: var(--f-display); font-size: 1.15rem; font-weight: 400; }
.lineup span { font-family: var(--f-label); letter-spacing: .16em; text-transform: uppercase; font-size: .82rem; color: var(--text-2); }

@media (max-width: 820px) { .about { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   GALLERY
   -------------------------------------------------------------------------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 10px;
}
.gallery figure { margin: 0; position: relative; overflow: hidden; background: var(--ink-2); }
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .5s ease, filter .3s ease;
  filter: grayscale(.35) contrast(1.05);
}
.gallery figure:hover img { transform: scale(1.06); filter: grayscale(0) contrast(1.05); }
.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  font-family: var(--f-label);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--paper-dim);
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  padding: 1.6rem .7rem .5rem;
  opacity: 0;
  transition: opacity .25s ease;
}
.gallery figure:hover figcaption { opacity: 1; }

/* --------------------------------------------------------------------------
   MAILING LIST + CONTACT
   -------------------------------------------------------------------------- */

.signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 820px) { .signup { grid-template-columns: 1fr; } }

.form { display: flex; flex-wrap: wrap; gap: .6rem; }
.form input {
  flex: 1 1 220px;
  background: transparent;
  border: 2px solid var(--ink);
  color: inherit;
  font-family: var(--f-body);
  font-size: 1rem;
  padding: .8rem 1rem;
}
.form input::placeholder { color: #7c7681; }
.form input:focus { outline: 3px solid var(--hot); outline-offset: 2px; }
.form .btn { flex: 0 0 auto; }
.form__note { font-size: .82rem; color: #6f6a74; margin-top: .9rem; flex-basis: 100%; }

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.contact__item h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.contact__item a { color: var(--hot); text-decoration: none; border-bottom: 1px solid transparent; }
.contact__item a:hover { border-bottom-color: var(--hot); }
.contact__item p { color: var(--text-2); margin: 0; }

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */

.footer {
  border-top: 1px solid var(--line);
  padding-block: 3.5rem 2.5rem;
  text-align: center;
}
.footer__logo { width: 220px; margin: 0 auto 1.8rem; opacity: .8; }

.social { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.4rem; margin-bottom: 2rem; padding: 0; list-style: none; }
.social a {
  font-family: var(--f-label);
  font-size: .85rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-2);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.social a:hover { color: var(--text); border-bottom-color: var(--hot); }

.footer__legal { font-size: .8rem; color: var(--text-3); }

/* --------------------------------------------------------------------------
   LIGHTBOX
   -------------------------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(6,5,7,.96);
  display: none;
  place-items: center;
  padding: 4vmin;
}
.lightbox.is-open { display: grid; }
.lightbox img { max-width: 100%; max-height: 86vh; object-fit: contain; }
.lightbox__close {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  background: none; border: 0;
  color: var(--text);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox__cap {
  font-family: var(--f-label);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--text-2);
  margin-top: .9rem;
  text-align: center;
}

/* --------------------------------------------------------------------------
   REVEAL ON SCROLL
   -------------------------------------------------------------------------- */

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

/* ==========================================================================
   ADDITIONS — credits strip, Bandsintown, videos, pull quote, press
   ========================================================================== */

/* ------------------------------------------------------------ CREDIT STRIP */

.creditstrip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
}
.creditstrip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3.2rem);
  list-style: none;
  margin: 0;
  padding: 1.1rem 0;
}
.creditstrip li {
  font-family: var(--f-label);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--text-2);
  white-space: nowrap;
}

/* ------------------------------------------------------------ BANDSINTOWN */

.bit-wrap { min-height: 180px; }

/* The widget ships its own markup; these keep it sitting on our dark stock
   instead of the white card it defaults to. */
.bit-wrap .bit-widget,
.bit-wrap .bit-widget-container { background: transparent !important; }

.bit-wrap .bit-top-track-button,
.bit-wrap .bit-play-my-city-button,
.bit-wrap .bit-follow-section { font-family: var(--f-label) !important; }

.bit-wrap .bit-event {
  border-bottom: 1px solid var(--line) !important;
}
.bit-wrap .bit-no-dates-title,
.bit-wrap .bit-no-dates-subtitle { color: var(--text-2) !important; }

/* ----------------------------------------------------------------- VIDEO */

.video { margin-bottom: 2.5rem; }

.video__name {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  margin-top: 1rem;
}
.video--small .video__name { font-size: 1.15rem; }

.video__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}
.video__row .video { margin-bottom: 0; }
.video__row .video__play span { width: 58px; height: 58px; }
.video__row .video__play svg { width: 20px; height: 20px; }

/* ------------------------------------------------------------- PULLQUOTE */

.pullquote {
  margin: 0 0 2rem;
  padding-left: 1.4rem;
  border-left: 4px solid var(--hot);
}
.pullquote p {
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.2;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 .8rem;
}
.pullquote cite {
  font-family: var(--f-label);
  font-style: normal;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--hot-deep);
}

/* Inside the paper section the first about paragraph should not double up
   as a display line now that the pull quote carries that weight. */
.section--paper .about__copy p:first-of-type {
  font-family: var(--f-body);
  font-size: 1.06rem;
  line-height: 1.65;
  letter-spacing: 0;
}

/* ----------------------------------------------------------------- PRESS */

.press {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}
.quote {
  margin: 0;
  padding: 1.6rem 0 0;
  border-top: 3px solid var(--ink);
}
.quote blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2e2a33;
}
.quote figcaption {
  font-family: var(--f-label);
  font-size: .8rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--hot-deep);
}

/* ---------------------------------------------------------------- LINEUP */

.lineup { margin-top: 1.6rem; }
.section--paper .lineup span { color: #6b6572; }
.section--paper .lineup strong { color: var(--ink); }

/* ------------------------------------------------------------ PHOTO BREAKS
   Full-bleed images that split the page, same weight as the hero. */

.photobreak {
  position: relative;
  height: clamp(380px, 64vh, 580px);
  overflow: hidden;
  background: var(--ink-2);
  isolation: isolate;
}

.photobreak__fg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s ease;
}
.photobreak:hover .photobreak__fg { transform: scale(1.03); }

/* Desktop bands run tall so a standing figure keeps their head and feet.
   A short band on a wide screen is what was slicing people in half. */
@media (min-width: 860px) {
  .photobreak { height: min(90vh, 900px); }
}

.photobreak::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, var(--ink) 0%, rgba(11,10,12,.08) 20%, rgba(11,10,12,.08) 80%, var(--ink) 100%);
}

.photobreak__credit {
  position: absolute;
  right: 1rem;
  bottom: .85rem;
  z-index: 3;
  font-family: var(--f-label);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(242,239,232,.5);
}

/* A break that lands against a paper section shouldn't fade to black on that side. */
.photobreak--to-paper::after {
  background:
    linear-gradient(180deg, var(--ink) 0%, rgba(11,10,12,.12) 26%, rgba(11,10,12,.12) 70%, rgba(11,10,12,.55) 100%),
    radial-gradient(110% 70% at 50% 50%, transparent 40%, rgba(11,10,12,.4) 100%);
}
