/* ============================================================
   Kristin Kalnapenk — official site
   Editorial monochrome, inspired by her-official.com
   ============================================================ */

:root {
  --bg:        #0a0908;
  --bg-2:      #0f0d0b;
  --ink:       #f2ece2;
  --ink-soft:  #d9d2c5;
  --mute:      #7a7065;
  --rule:      #221f1c;
  --rule-2:    #2a2621;
  --frame:     #e9e2d4;
  --serif:     "Cormorant Garamond", "Times New Roman", serif;
  --sans:      "Inter", ui-sans-serif, system-ui, sans-serif;
  --pad:       clamp(20px, 5vw, 64px);
  --maxw:      1440px;
}

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

html {
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  background:
    radial-gradient(1200px 800px at 10% -10%, #151210 0%, transparent 60%),
    radial-gradient(900px 700px at 90% 110%, #141110 0%, transparent 55%),
    var(--bg);
}

img { max-width: 100%; display: block; filter: grayscale(1) contrast(1.02); }

a { color: inherit; text-decoration: none; }

::selection { background: var(--ink); color: var(--bg); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.italic { font-style: italic; }


/* ---------- NAV ---------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr auto 1fr 1fr;
  align-items: center;
  column-gap: clamp(16px, 4vw, 56px);
  padding: 22px var(--pad);
  transition: background .5s ease, backdrop-filter .5s ease, padding .4s ease;
}
.nav::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(10,9,8,.85), rgba(10,9,8,0));
  pointer-events:none;
  opacity:1;
  transition: opacity .4s ease;
}
.nav.is-scrolled {
  background: rgba(10, 9, 8, 0.72);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  padding: 14px var(--pad);
  border-bottom: 1px solid var(--rule);
}
.nav.is-scrolled::before { opacity: 0; }

.nav-link,
.nav-logo {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: lowercase;
  color: var(--ink);
  opacity: 0.82;
  transition: opacity .25s ease, letter-spacing .3s ease;
}
.nav-link:hover { opacity: 1; letter-spacing: 0.4em; }

.nav-link:nth-child(1) { text-align: right; }
.nav-link:nth-child(2) { text-align: right; }
.nav-link:nth-child(4) { text-align: left; }
.nav-link:nth-child(5) { text-align: left; }

.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  opacity: 1;
}
.nav-logo-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--frame);
}

.nav-burger {
  display: none;
  position: absolute;
  right: var(--pad); top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px;
}
.nav-burger span {
  display: block;
  height: 1px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-burger.is-open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2){ opacity: 0; }
.nav-burger.is-open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.drawer a {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(32px, 8vw, 56px);
  letter-spacing: 0.06em;
  color: var(--frame);
}
.drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}


/* ---------- HERO --------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 120px var(--pad) 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  column-gap: clamp(20px, 4vw, 56px);
  align-items: center;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
}

.hero-fig {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4.2;
  background: #111;
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,.7),
    0 0 0 1px rgba(233,226,212,.04);
}
.hero-fig img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 2.4s cubic-bezier(.2,.7,.2,1);
}
.hero-fig--left  { transform: translateY(-22px); }
.hero-fig--right { transform: translateY(22px); }
.hero-fig:hover img { transform: scale(1.04); }

.hero-title { text-align: center; padding: 0 4px; }

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 18px;
}

.wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(54px, 10vw, 160px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--frame);
  text-shadow: 0 2px 30px rgba(242,236,226,0.05);
}
.wordmark-line { display: block; }
.wordmark-line--italic {
  font-style: italic;
  font-weight: 400;
  margin-top: -0.04em;
  text-indent: 0.3em;
  color: var(--ink);
}

.hero-sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--mute);
  margin: clamp(22px, 4vw, 56px) 0 0;
}

.hero-credit {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
}
.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity .5s ease, transform .5s ease;
}
.hero-scroll.is-hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}
.hero-scroll i {
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--mute);
  position: relative;
  overflow: hidden;
}
.hero-scroll i::after{
  content:"";
  position:absolute; inset:0;
  background: var(--ink);
  transform: translateX(-100%);
  animation: scroll-line 2.6s cubic-bezier(.7,.1,.2,1) infinite;
}
@keyframes scroll-line{
  0%   { transform: translateX(-100%); }
  55%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}


/* ---------- SHARED SECTION BITS ----------------------------------- */
.section-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 22px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin: 0 0 28px;
  color: var(--frame);
}
.section-title .italic { font-style: italic; font-weight: 400; color: var(--ink); }
.serif-display { font-family: var(--serif); }

.section-head {
  max-width: var(--maxw);
  margin: 0 auto 40px;
  padding: 0 var(--pad);
  text-align: center;
}
.section-head .section-title { margin-bottom: 0; }


/* ---------- MUSIC ------------------------------------------------- */
.music {
  padding: clamp(100px, 14vh, 180px) var(--pad);
  border-top: 1px solid var(--rule);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
}
.music-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(40px, 7vw, 120px);
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
}

.music-art {
  position: relative;
}
.music-art-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0c0b0a;
  box-shadow:
    0 60px 100px -40px rgba(0,0,0,.9),
    0 0 0 1px rgba(233,226,212,0.06);
}
.music-art-frame::after{
  /* faint grain */
  content:"";
  position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  pointer-events:none;
}
.music-art img { width: 100%; height: 100%; object-fit: cover; }

.caption {
  margin: 18px 2px 0;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mute);
}

.section-lede {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0 0 36px;
}

.listen {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}
.listen li { border-bottom: 1px solid var(--rule); }
.listen a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 2px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  transition: padding .3s ease, color .25s ease;
}
.listen a:hover { padding-left: 12px; color: var(--frame); }
.listen a i {
  font-style: normal;
  opacity: .5;
  transition: transform .3s ease, opacity .3s ease;
}
.listen a:hover i { transform: translateX(6px); opacity: 1; }


/* ---------- FEATURE / ABOUT ---------------------------------------- */
.feature {
  position: relative;
  padding: clamp(120px, 20vh, 240px) var(--pad);
  isolation: isolate;
  overflow: hidden;
}
.feature-bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.feature-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.22;
  transform: scale(1.08);
  filter: grayscale(1) contrast(1.1) brightness(0.6);
}
.feature-bg::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(10,9,8,0.9), rgba(10,9,8,0.65), rgba(10,9,8,0.95));
}

.feature-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.feature-body {
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto 18px;
}


/* ---------- LIVE --------------------------------------------------- */
.live {
  position: relative;
  padding: clamp(100px, 14vh, 160px) var(--pad);
  border-top: 1px solid var(--rule);
}
.live-portraits {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  pointer-events: none;
  overflow: hidden;
}
.live-fig {
  margin: 0;
  height: 100%;
  opacity: .28;
  overflow: hidden;
}
.live-fig img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1) brightness(0.7);
}
.live-fig--alt img { object-position: right; transform: scaleX(-1); }

.live-card {
  position: relative;
  z-index: 1;
  width: min(480px, 90%);
  margin: 0 auto;
  padding: 56px 40px;
  background: rgba(12,11,10,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--rule-2);
  text-align: center;
}
.live-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
  color: var(--frame);
}
.live-empty {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 28px;
}

/* upcoming show variant */
.live-card--show { padding: 48px 40px 40px; }
.live-show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 6px 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule-2);
}
.live-show-day {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(56px, 7vw, 84px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--frame);
}
.live-show-time {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--mute);
}
.live-show-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(34px, 4vw, 46px);
  letter-spacing: 0.06em;
  margin: 0 0 12px;
  color: var(--frame);
}
.live-show-sub {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.live-show-sub .italic { font-style: italic; color: var(--frame); }

.ghost-btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink);
  transition: background .3s ease, color .3s ease;
}
.ghost-btn:hover { background: var(--ink); color: var(--bg); }

.live-booking {
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--rule-2);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mute);
}
.live-booking a {
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0.08em;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  margin-left: 6px;
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, color .3s ease;
}
.live-booking a:hover { color: var(--frame); border-bottom-color: var(--ink); }

.live-archive {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 80px auto 0;
  text-align: center;
}

/* upcoming list (multi-show) */
.live-upcoming {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 72px auto 0;
  text-align: center;
}
.live-upcoming .section-eyebrow { margin-bottom: 22px; }

.upcoming-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.upcoming-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px 6px;
  border-top: 1px solid var(--rule-2);
  background: rgba(10, 9, 8, 0.5);
  backdrop-filter: blur(6px);
  transition: background .3s ease, padding .3s ease;
}
.upcoming-row:last-child { border-bottom: 1px solid var(--rule-2); }
.upcoming-row:hover { background: rgba(18, 15, 13, 0.7); }

.upcoming-date .upcoming-day {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--frame);
}
.upcoming-date .upcoming-year {
  display: block;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 6px;
}

.upcoming-meta .upcoming-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.25;
}
.upcoming-meta .upcoming-city {
  margin: 4px 0 0;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
}

.upcoming-cta {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 16px;
  border: 1px solid var(--rule-2);
  transition: background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.upcoming-cta:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: transparent;
}
.upcoming-tag {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 6px 10px;
  border: 1px solid var(--rule-2);
}

.upcoming-more {
  margin: 32px auto 0;
  display: inline-block;
}

@media (max-width: 640px) {
  .upcoming-row {
    grid-template-columns: 90px 1fr;
    row-gap: 8px;
    gap: 16px;
    padding: 18px 6px;
  }
  .upcoming-cta, .upcoming-tag {
    grid-column: 2;
    justify-self: start;
  }
  .upcoming-meta .upcoming-title { font-size: 18px; }
}
.archive-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 26px 6px;
  border-top: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
  text-align: left;
  background: rgba(10,9,8,0.6);
  backdrop-filter: blur(6px);
}
.archive-day {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  color: var(--frame);
  letter-spacing: 0.02em;
}
.archive-year {
  display: block;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 6px;
}
.archive-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
}
.archive-city {
  margin: 4px 0 0;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
}
.archive-tag {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 6px 10px;
  border: 1px solid var(--rule-2);
}


/* ---------- VIDEO / GALLERY ---------------------------------------- */
.video {
  padding: clamp(100px, 14vh, 160px) var(--pad);
  border-top: 1px solid var(--rule);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1vw, 18px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.video-grid--two {
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 1.6vw, 28px);
}
.video-card {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0c0b0a;
  cursor: pointer;
  color: var(--frame);
}
.video-grid:not(.video-grid--two) .video-card { aspect-ratio: 3 / 4; }

.video-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s cubic-bezier(.2,.7,.2,1), filter .6s ease;
}
.video-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,0) 45%, rgba(10,9,8,0.82) 100%);
  pointer-events: none;
  transition: opacity .5s ease;
}
.video-card:hover img {
  transform: scale(1.05);
  filter: grayscale(1) contrast(1.08) brightness(0.82);
}

.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.96);
  width: 68px; height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(10,9,8,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(242,236,226,0.5);
  color: var(--frame);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), background .3s ease, border-color .3s ease;
  z-index: 2;
}
.video-play svg { transform: translateX(2px); }
.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(242,236,226,0.95);
  color: var(--bg);
  border-color: transparent;
}

.video-card figcaption {
  position: absolute;
  left: 22px; right: 22px; bottom: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 14px;
  z-index: 2;
  color: var(--frame);
}
.video-card .v-kind {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.7;
}
.video-card .v-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.3vw, 30px);
  letter-spacing: 0.02em;
}
.video-card .v-watch {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  opacity: 0.85;
  justify-self: end;
  white-space: nowrap;
}
.video-card .v-watch i {
  font-style: normal;
  opacity: 0.8;
  transition: transform .3s ease;
}
.video-card:hover .v-watch i { transform: translateX(6px); }


/* ---------- PORTRAITS (GALLERY) ------------------------------------ */
.portraits {
  padding: clamp(100px, 14vh, 160px) var(--pad);
  border-top: 1px solid var(--rule);
  background:
    radial-gradient(900px 600px at 100% 0%, #12100e 0%, transparent 60%),
    var(--bg);
}
.portraits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1vw, 16px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.portrait-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #0c0b0a;
  cursor: zoom-in;
}
.portrait-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s cubic-bezier(.2,.7,.2,1), filter .6s ease;
}
.portrait-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,0) 55%, rgba(10,9,8,0.55) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s ease;
}
.portrait-card:hover img {
  transform: scale(1.05);
  filter: grayscale(1) contrast(1.1) brightness(0.82);
}
.portrait-card:hover::after { opacity: 1; }

@media (max-width: 960px) {
  .portraits-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .portraits-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ---------- OFFERINGS SUBPAGE -------------------------------------- */
.nav--subpage {
  grid-template-columns: 1fr auto 1fr;
}
.nav--subpage .nav-link:first-of-type { justify-self: start; text-align: left; }
.nav--subpage .nav-link:last-of-type  { justify-self: end;   text-align: right; }

.sub-hero {
  padding: clamp(140px, 18vh, 220px) var(--pad) clamp(80px, 12vh, 140px);
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.sub-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--frame);
  margin: 18px 0 28px;
}
.sub-title span { display: inline-block; margin: 0 8px; }
.sub-title .italic { font-style: italic; font-weight: 400; color: var(--ink); }
.sub-lede {
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto;
}

.offerings {
  padding: 0 var(--pad) clamp(80px, 12vh, 140px);
  display: grid;
  gap: clamp(20px, 2vw, 36px);
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--maxw);
  margin: 0 auto;
}
.offer {
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px);
  border: 1px solid var(--rule);
  background: rgba(15, 13, 11, 0.5);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .3s ease, background .3s ease, transform .4s cubic-bezier(.2,.7,.2,1);
}
.offer:hover {
  border-color: var(--rule-2);
  background: rgba(20, 17, 14, 0.65);
  transform: translateY(-4px);
}
.offer-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0;
}
.offer-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--frame);
}
.offer-title .italic { font-style: italic; font-weight: 400; }
.offer-body {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}
.offer .ghost-btn {
  align-self: flex-start;
  margin-top: 12px;
}

.sub-contact {
  padding: clamp(80px, 12vh, 140px) var(--pad);
  text-align: center;
  border-top: 1px solid var(--rule);
  max-width: 680px;
  margin: 0 auto;
}
.sub-contact .section-title { margin-bottom: 20px; }
.sub-contact .sub-lede { margin-bottom: 32px; }
.sub-contact .ghost-btn {
  font-family: var(--sans);
  letter-spacing: 0.24em;
  padding: 14px 28px;
  text-transform: none;
  font-size: 13px;
}

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


/* ---------- BIOGRAPHY ---------------------------------------------- */
.bio {
  padding: clamp(100px, 14vh, 160px) var(--pad);
  border-top: 1px solid var(--rule);
}
.bio-inner {
  max-width: 680px;
  margin: 0 auto;
}
.bio-body {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 24px;
  text-align: justify;
  hyphens: auto;
}
.bio-body:first-letter {
  /* no drop cap by default — keep quiet */
}

.bio-strip {
  margin: 40px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule-2);
}
.bio-strip-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 14px;
}
.bio-strip-list {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0;
}
.bio-dot { color: var(--mute); opacity: .6; margin: 0 2px; font-style: normal; }

@media (max-width: 640px) {
  .bio-body { text-align: left; hyphens: none; }
}


/* ---------- MARQUEE ------------------------------------------------ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 48s linear infinite;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 60px);
  color: var(--frame);
  letter-spacing: 0.04em;
}
.marquee-track em {
  font-style: italic;
  color: var(--mute);
  font-weight: 400;
}
.marquee-track .dot {
  color: var(--mute);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ---------- FOLLOW ------------------------------------------------- */
.follow {
  padding: clamp(100px, 14vh, 180px) var(--pad);
  text-align: center;
}
.follow-inner {
  max-width: 760px;
  margin: 0 auto;
}

.signup {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 560px;
  margin: 36px auto 56px;
  border-bottom: 1px solid var(--ink);
}
.signup label { flex: 1; display: flex; }
.signup input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 16px 4px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.1em;
  outline: none;
}
.signup input::placeholder {
  color: var(--mute);
  letter-spacing: 0.2em;
  text-transform: lowercase;
}
.signup button {
  background: transparent;
  border: 0;
  padding: 0 14px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}
.signup button .btn-sent { display: none; font-style: italic; text-transform: none; letter-spacing: 0.18em; }
.signup.sent input { opacity: .4; pointer-events: none; }
.signup.sent button .btn-default { display: none; }
.signup.sent button .btn-sent   { display: inline; color: var(--frame); }

/* pending state — subscribe not yet wired up */
.signup--pending { border-bottom-color: var(--rule-2); opacity: 0.7; cursor: not-allowed; }
.signup--pending input,
.signup--pending button { cursor: not-allowed; }
.signup--pending input::placeholder {
  color: var(--mute);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-style: italic;
}
.signup--pending button { color: var(--mute); }
.signup--pending button .btn-default { font-style: italic; text-transform: none; letter-spacing: 0.18em; }

.signup-note {
  margin: -30px auto 48px;
  max-width: 560px;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--mute);
  line-height: 1.6;
}
.signup-note .italic { font-style: italic; }
.signup-note a {
  color: var(--ink);
  border-bottom: 1px solid var(--rule-2);
  transition: border-color .3s ease;
}
.signup-note a:hover { border-bottom-color: var(--ink); }

.socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 32px;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.socials a {
  opacity: 0.75;
  padding: 6px 0;
  position: relative;
  transition: opacity .25s ease;
}
.socials a::after {
  content:"";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .4s cubic-bezier(.7,.1,.2,1);
}
.socials a:hover { opacity: 1; }
.socials a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.tip {
  margin: 40px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--mute);
  letter-spacing: 0.02em;
}
.tip-links {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 12px;
  vertical-align: middle;
}
.tip a {
  color: var(--ink);
  font-style: normal;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--rule-2);
  transition: border-color .3s ease, color .3s ease;
}
.tip a:hover { border-bottom-color: var(--ink); color: var(--frame); }
.tip-dot { color: var(--mute); opacity: .6; font-size: 10px; }


/* ---------- FOOTER ------------------------------------------------- */
.foot {
  border-top: 1px solid var(--rule);
  padding: 32px var(--pad);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
}
.foot-row {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  justify-content: center;
}
.foot a { color: var(--ink); }
.foot-dot { opacity: .5; }


/* ---------- LIGHTBOX ----------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 5, 4, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s cubic-bezier(.2,.7,.2,1);
  cursor: zoom-out;
  padding: clamp(20px, 4vw, 56px);
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-figure {
  position: relative;
  margin: 0;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: default;
  transform: scale(0.96);
  opacity: 0;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
}
.lightbox.is-open .lightbox-figure {
  transform: scale(1);
  opacity: 1;
}

.lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  width: auto; height: auto;
  object-fit: contain;
  /* restore original color in the lightbox */
  filter: none;
  box-shadow:
    0 60px 120px -30px rgba(0,0,0,0.8),
    0 0 0 1px rgba(233,226,212,0.05);
}

.lightbox-figure figcaption {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--mute);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(10,9,8,0.55);
  border: 1px solid rgba(242,236,226,0.22);
  color: var(--frame);
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  padding: 0;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(242,236,226,0.9);
  color: var(--bg);
  border-color: transparent;
}

.lightbox-close {
  top: clamp(14px, 2.5vw, 28px);
  right: clamp(14px, 2.5vw, 28px);
}
.lightbox-nav.lightbox-prev { left: clamp(14px, 2vw, 28px);  top: 50%; transform: translateY(-50%); }
.lightbox-nav.lightbox-next { right: clamp(14px, 2vw, 28px); top: 50%; transform: translateY(-50%); }
.lightbox-nav:hover.lightbox-prev { transform: translateY(-50%) scale(1.06); }
.lightbox-nav:hover.lightbox-next { transform: translateY(-50%) scale(1.06); }

@media (max-width: 640px) {
  .lightbox-nav { width: 38px; height: 38px; }
  .lightbox-figure img { max-height: 76vh; }
}


/* ---------- TOAST (mailto copy confirmation) ----------------------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  z-index: 200;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 22px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: calc(100vw - 32px);
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  transition: opacity .35s ease, transform .5s cubic-bezier(.2,.7,.2,1);
}
.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}


/* ---------- FAB ---------------------------------------------------- */
.fab {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 30;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.fab:hover { background: var(--ink); color: var(--bg); transform: scale(1.06); }
.fab svg { transform: translateX(1px); }


/* ---------- REVEAL ANIMATION -------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.2s cubic-bezier(.2,.7,.2,1), transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* ---------- RESPONSIVE -------------------------------------------- */
@media (max-width: 960px) {
  .nav { grid-template-columns: 1fr auto 1fr; }
  .nav-link { display: none; }
  .nav-logo { grid-column: 2; justify-self: center; }
  .nav-burger { display: block; position: static; transform: none; grid-column: 3; justify-self: end; }

  .hero { padding-top: 100px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-fig { aspect-ratio: 3 / 4; max-width: 360px; margin: 0 auto; }
  .hero-fig--left, .hero-fig--right { transform: none; }
  .hero-fig--right { order: 3; }
  .hero-title    { order: 2; }
  .hero-fig--left { order: 1; }

  .music-inner { grid-template-columns: 1fr; row-gap: 48px; }

  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid--two { grid-template-columns: 1fr; }
  .video-card figcaption { grid-template-columns: 1fr; gap: 4px; }
  .video-card .v-watch { justify-self: start; }

  .hero-credit { display: none; }

  .archive-row {
    grid-template-columns: 90px 1fr;
    row-gap: 6px;
  }
  .archive-tag { grid-column: 2; justify-self: start; }
}

@media (max-width: 520px) {
  .wordmark { font-size: 64px; }
  .section-title { font-size: 40px; }
  .signup { flex-direction: column; border-bottom: 0; }
  .signup label { border-bottom: 1px solid var(--ink); margin-bottom: 14px; }
  .socials { gap: 4px 20px; font-size: 10px; }
  .foot-row { font-size: 9px; }
  .fab { width: 46px; height: 46px; }
}
