/* drseantobin.ca — The Inner Exodus visual system
   Night indigo → linen paper, one gold pillar line. */

:root {
  --night: #1d2534;
  --night-deep: #151b27;
  --linen: #fbf7ee;
  --linen-alt: #f3edde;
  --ink: #29241a;
  --faded: #7a7160;
  --gold: #b08c3d;
  --gold-bright: #d9b45c;
  --oxblood: #71303a;
  --rule: #e3dac6;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Spectral", Georgia, serif;
  --measure: 42rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--linen);
  line-height: 1.65;
  font-size: 1.0625rem;
}

a { color: inherit; }
img { max-width: 100%; height: auto; }

::selection { background: var(--gold-bright); color: var(--night-deep); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 2rem;
  padding: 0.9rem clamp(1.25rem, 4vw, 3rem);
  background: color-mix(in srgb, var(--linen) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.wordmark {
  font-family: var(--display);
  font-weight: 700; font-size: 1.35rem;
  text-decoration: none; letter-spacing: 0.01em;
  color: var(--ink);
}
.mainnav { display: flex; gap: 1.4rem; margin-left: auto; flex-wrap: wrap; }
.mainnav a {
  text-decoration: none; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 500;
  color: var(--faded); padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
}
.mainnav a:hover { color: var(--ink); }
.mainnav a.active { color: var(--ink); border-bottom-color: var(--gold); }

/* ---------- buttons & badges ---------- */
.btn {
  display: inline-block; text-decoration: none;
  font-family: var(--body); font-weight: 500; font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.5rem; border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-subscribe {
  background: var(--night); color: var(--linen);
  padding: 0.5rem 1.1rem; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.btn-subscribe:hover { background: var(--gold); color: var(--night-deep); }
.btn-gold { background: var(--gold); color: var(--night-deep); }
.btn-gold:hover { background: var(--gold-bright); }
.btn-ghost {
  border: 1px solid color-mix(in srgb, var(--linen) 45%, transparent);
  color: var(--linen);
}
.btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.btn-ghost-dark { border: 1px solid var(--rule); color: var(--ink); }
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }

.badge {
  display: inline-block; font-size: 0.62rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 0.15rem 0.5rem; border-radius: 2px;
  vertical-align: 0.15em;
}
.badge-paid { background: var(--oxblood); color: #f4e3dd; }
.badge-gold { background: var(--gold); color: var(--night-deep); }

.eyebrow {
  font-size: 0.76rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--gold);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 60% 45% at 50% 108%, rgba(217, 180, 92, 0.22), transparent 70%),
    linear-gradient(175deg, var(--night-deep), var(--night) 75%);
  color: var(--linen);
  padding: clamp(5rem, 12vh, 9rem) clamp(1.25rem, 4vw, 3rem) clamp(6rem, 14vh, 10rem);
  text-align: center;
  overflow: hidden;
}
.hero-inner { max-width: 52rem; margin: 0 auto; position: relative; z-index: 2; }
.hero h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1.08; letter-spacing: -0.01em;
  margin: 1.4rem 0 1.6rem;
}
.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  font-weight: 300;
  color: color-mix(in srgb, var(--linen) 82%, transparent);
  max-width: 36rem; margin: 0 auto;
}
.hero .hero-sub { color: rgba(251, 247, 238, 0.78); }
.hero-ctas {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; margin-top: 2.4rem;
}
/* the pillar: a single gold line descending out of the night */
.pillar-line {
  position: absolute; left: 50%; bottom: 0;
  width: 1px; height: clamp(4rem, 10vh, 7rem);
  background: linear-gradient(to bottom, transparent, var(--gold-bright));
  box-shadow: 0 0 18px 1px rgba(217, 180, 92, 0.55);
}

/* ---------- sections ---------- */
.section {
  max-width: 72rem; margin: 0 auto;
  padding: clamp(3.5rem, 8vh, 6rem) clamp(1.25rem, 4vw, 3rem);
}
.section-alt {
  max-width: none;
  background: var(--linen-alt);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.section-alt > * { max-width: 72rem; margin-left: auto; margin-right: auto; }
.section-head {
  display: flex; align-items: baseline; gap: 1.2rem; flex-wrap: wrap;
  border-left: 2px solid var(--gold);
  padding-left: 1.1rem;
  margin-bottom: 2.4rem;
}
.section-head h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  width: 100%;
}
.section-head .eyebrow { width: 100%; margin-bottom: -0.9rem; }
.section-more {
  font-size: 0.88rem; color: var(--faded);
  text-decoration: none; margin-left: auto;
}
.section-more:hover { color: var(--gold); }

/* ---------- cards ---------- */
.card-grid {
  display: grid; gap: 1.6rem;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
}
.post-card {
  display: flex; flex-direction: column;
  background: #fffdf7;
  border: 1px solid var(--rule);
  border-radius: 3px; overflow: hidden;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(29, 37, 52, 0.1);
}
.card-img {
  aspect-ratio: 1.9; background-size: cover; background-position: center;
}
.card-img-empty {
  background: linear-gradient(160deg, var(--night), var(--night-deep));
}
.card-body { padding: 1.2rem 1.3rem 1.5rem; }
.card-date { font-size: 0.78rem; color: var(--faded); letter-spacing: 0.05em; margin-bottom: 0.45rem; }
.post-card h3, .book-card h3, .listen-card h3, .ep-row h3 {
  font-family: var(--display); font-weight: 600;
  font-size: 1.35rem; line-height: 1.2; margin-bottom: 0.45rem;
}
.card-sub {
  font-size: 0.92rem; color: var(--faded); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.year-mark {
  font-family: var(--display); font-weight: 500;
  font-size: 1.5rem; color: var(--faded);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.4rem; margin: 3rem 0 1.6rem;
}
.year-mark:first-child { margin-top: 0; }

/* ---------- books ---------- */
.book-grid {
  display: grid; gap: 1.6rem;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
}
.book-card {
  display: flex; flex-direction: column; text-align: center;
  text-decoration: none; background: none; border: 0;
}
/* pre-rendered 3D book stands alone on the page — no panel behind it.
   Fixed-height stage = every book sits on the same shelf line, so the
   titles below all start level regardless of each cover's aspect ratio. */
.book-stage {
  height: 20rem;
  padding: 0.5rem 1rem 1.4rem;
  display: flex; justify-content: center; align-items: flex-end;
}
.book-3d {
  display: block; width: auto; height: auto;
  max-width: min(82%, 14rem); max-height: 100%;
  transition: transform 0.3s ease;
}
a.book-card:hover .book-3d { transform: translateY(-6px) scale(1.02); }
.book-cover-type {
  display: flex; align-items: center; justify-content: center;
  width: 62%; aspect-ratio: 0.64; border-radius: 2px 4px 4px 2px;
  background: linear-gradient(165deg, var(--night), var(--night-deep));
  padding: 1.4rem; box-shadow: 15px 20px 30px -14px rgba(24, 21, 52, 0.55);
}
.book-cover-type span {
  font-family: var(--display); font-weight: 600; font-size: 1.3rem;
  color: var(--gold-bright); text-align: center; line-height: 1.2;
}
.listen-more { font-size: 0.88rem; color: var(--gold); font-weight: 500; }

/* ---------- listen / episode rows ---------- */
.listen-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); }
.listen-card {
  background: var(--night); color: var(--linen);
  border-radius: 3px; padding: 2rem 1.8rem;
  text-decoration: none;
  display: flex; flex-direction: column; gap: 0.7rem;
  transition: background 0.2s ease;
}
.listen-card:hover { background: var(--night-deep); }
.listen-card p { color: rgba(251, 247, 238, 0.72); font-size: 0.95rem; }
.listen-card .listen-more { color: var(--gold-bright); margin-top: auto; }

.ep-list { display: flex; flex-direction: column; }
.ep-row {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.4rem 0.4rem;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
}
.ep-row:hover h3 { color: var(--gold); }
.ep-row .listen-more { margin-left: auto; white-space: nowrap; }
.ep-thumb {
  flex: 0 0 auto; width: 4.2rem; height: 4.2rem; border-radius: 8px;
  object-fit: cover; background: var(--linen-alt); box-shadow: 0 4px 12px rgba(29,37,52,0.12);
}
.ep-row-body { flex: 1 1 auto; min-width: 0; }
.empty-note { color: var(--faded); font-style: italic; }
@media (max-width: 560px) {
  .ep-thumb { width: 3.2rem; height: 3.2rem; }
}

/* ---------- music page photo ---------- */
.music-photo-section { padding-top: 0; }
.music-photo { max-width: 34rem; margin: 0 auto; }
.music-photo img {
  display: block; width: 100%; height: auto; border-radius: 4px;
  box-shadow: 0 18px 40px -18px rgba(29, 37, 52, 0.35);
}

/* ---------- quote & cta bands ---------- */
.quote-band {
  background: var(--night);
  color: var(--linen);
  text-align: center;
  padding: clamp(4rem, 9vh, 6.5rem) clamp(1.25rem, 4vw, 3rem);
}
.quote-band blockquote {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem); line-height: 1.25;
  max-width: 46rem; margin: 0 auto 1.2rem;
}
.quote-attr {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--gold-bright);
}
.cta-band {
  text-align: center;
  max-width: 46rem; margin: 0 auto;
  padding: clamp(3.5rem, 8vh, 6rem) clamp(1.25rem, 4vw, 3rem);
}
.cta-band h2 { font-family: var(--display); font-weight: 600; font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 1rem; }
.cta-band p { color: var(--faded); margin-bottom: 2rem; }

/* ---------- pillars ---------- */
.pillars { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.pillar { border-top: 2px solid var(--gold); padding-top: 1.1rem; }
.pillar h3 { font-family: var(--display); font-weight: 600; font-size: 1.4rem; margin-bottom: 0.5rem; }
.pillar p { font-size: 0.95rem; color: var(--faded); }

/* ---------- free resources ---------- */
.free-resources { border-top: 1px solid var(--rule); padding-top: 3rem; margin-top: 1rem; }
.free-resources h2 { font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 600; margin: 0.3rem 0 2rem; }
.resource-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.resource-card {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1.4rem 1.5rem; text-decoration: none; color: var(--ink);
  background: #fffdf7; border: 1px solid var(--rule); border-radius: 8px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.resource-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(29,37,52,0.1); border-color: var(--gold); }
.resource-card h3 { font-family: var(--display); font-weight: 600; font-size: 1.15rem; }
.resource-card p { font-size: 0.92rem; color: var(--faded); }
.resource-card .listen-more { margin-top: auto; }

/* ---------- page head (inner pages) ---------- */
.page-head {
  max-width: 52rem; margin: 0 auto;
  padding: clamp(3rem, 7vh, 5rem) clamp(1.25rem, 4vw, 3rem) 0;
  text-align: center;
}
.page-head h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.1;
  margin: 1rem 0 1.2rem;
}
.page-head .hero-sub { margin: 0 auto; }
/* tighten the gap between a page title and the content section below it */
.page-head + .section { padding-top: 2rem; }

/* ---------- post pages ---------- */
.post { padding-bottom: 4rem; }
.post-cover {
  max-width: 52rem; margin: 2.5rem auto 0; aspect-ratio: 1.9;
  background-size: cover; background-position: center;
  border-radius: 3px;
}
.post-body {
  max-width: var(--measure);
  margin: 2.5rem auto 0;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  font-size: 1.125rem; line-height: 1.75;
}
.post-body p { margin-bottom: 1.35rem; }
.post-body h2, .post-body h3 {
  font-family: var(--display); font-weight: 600;
  line-height: 1.2; margin: 2.4rem 0 1rem;
}
.post-body h2 { font-size: 1.9rem; }
.post-body h3 { font-size: 1.5rem; }
.post-body blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 1.3rem; margin: 1.8rem 0;
  font-style: italic; color: var(--faded);
}
.post-body ul, .post-body ol { margin: 0 0 1.35rem 1.4rem; }
.post-body li { margin-bottom: 0.5rem; }
.post-body hr { border: none; border-top: 1px solid var(--rule); margin: 2.5rem auto; width: 6rem; }
.post-body figure { margin: 2rem 0; }
.post-body img { border-radius: 3px; display: block; margin: 0 auto; }
.post-body figcaption { font-size: 0.85rem; color: var(--faded); text-align: center; margin-top: 0.6rem; }
.post-body a { color: var(--gold); text-decoration-color: color-mix(in srgb, var(--gold) 45%, transparent); }
.post-body a:hover { color: var(--ink); }
.about-bio { margin-top: 0; margin-bottom: 3rem; }

/* paid teaser fade + paywall */
.post-body-teaser { position: relative; max-height: 40rem; overflow: hidden; }
.post-body-teaser::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 14rem;
  background: linear-gradient(to bottom, transparent, var(--linen));
}
.paywall {
  max-width: var(--measure);
  margin: 0 auto 3rem;
  text-align: center;
  background: var(--night);
  color: var(--linen);
  border-radius: 4px;
  padding: 2.8rem 2rem 3rem;
  position: relative;
}
.paywall::before {
  content: ""; position: absolute; top: -3rem; left: 50%; width: 1px; height: 3rem;
  background: linear-gradient(to bottom, transparent, var(--gold-bright));
}
.paywall h3 {
  font-family: var(--display); font-weight: 600;
  font-size: 1.6rem; margin: 0.8rem 0 0.6rem;
}
.paywall p { color: rgba(251, 247, 238, 0.72); font-size: 0.95rem; }
.paywall .hero-ctas { margin-top: 1.6rem; }
.paywall .btn-ghost-dark { border-color: rgba(251, 247, 238, 0.35); color: var(--linen); }
.paywall .btn-ghost-dark:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

.post-footer-cta {
  max-width: var(--measure);
  margin: 3rem auto 0;
  padding: 2rem clamp(1.25rem, 4vw, 2rem) 0;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.post-footer-cta p { color: var(--faded); margin-bottom: 1.4rem; }
.post-footer-cta a:not(.btn) { color: var(--gold); }

/* ---------- footer ---------- */
.footer {
  background: var(--night-deep); color: var(--linen);
  padding: 3.5rem clamp(1.25rem, 4vw, 3rem);
  margin-top: 4rem;
}
.footer-inner {
  max-width: 72rem; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 2rem; align-items: baseline;
}
.footer-name { font-family: var(--display); font-weight: 600; font-size: 1.3rem; }
.footer-roles { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(251,247,238,0.5); margin-top: 0.3rem; }
.footer-links { display: flex; gap: 0.7rem; margin-left: auto; flex-wrap: wrap; }
.footer-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.3rem; height: 2.3rem; border-radius: 50%;
  color: rgba(251,247,238,0.72);
  border: 1px solid rgba(251,247,238,0.16);
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.footer-links a:hover { color: var(--night); background: var(--gold-bright); border-color: var(--gold-bright); }
.soc-svg { display: block; }

/* ---------- contact portrait ---------- */
.contact-head {
  display: flex; align-items: center; gap: 2.2rem;
  text-align: left; justify-content: flex-start; flex-wrap: wrap;
}
.contact-portrait {
  flex: 0 0 auto; width: 190px; height: 190px; border-radius: 50%;
  object-fit: cover; border: 4px solid #fff;
  box-shadow: 0 12px 34px rgba(29, 37, 52, 0.20), 0 0 0 1px var(--rule);
}
.contact-head-tx { flex: 1 1 18rem; }
.contact-head-tx h1 { margin-top: 0.2rem; }
@media (max-width: 560px) {
  .contact-head { justify-content: center; text-align: center; gap: 1.3rem; }
}

/* ---------- connect / social tiles ---------- */
.connect-section { border-top: 1px solid var(--rule); padding-top: 3rem; }
.connect-head { text-align: center; max-width: 40rem; margin: 0 auto 2rem; }
.connect-head h2 { font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 600; margin: 0.3rem 0 0.6rem; }
.social-tiles {
  display: grid; gap: 0.9rem;
  grid-template-columns: repeat(3, 1fr);
  max-width: 52rem; margin: 0 auto;
}
@media (max-width: 680px) { .social-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .social-tiles { grid-template-columns: 1fr; } }
.social-tile {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.95rem 1.1rem; text-decoration: none;
  background: #fffdf7; border: 1px solid var(--rule); border-radius: 8px;
  color: var(--ink); transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.social-tile:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(29,37,52,0.1); border-color: var(--gold); }
.social-ico {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 2.7rem; height: 2.7rem; border-radius: 50%;
}
.social-ico .soc-svg { width: 20px; height: 20px; }
.social-tx { display: flex; flex-direction: column; line-height: 1.25; }
.social-tx b { font-weight: 600; font-size: 0.98rem; }
.social-tx em { font-style: normal; font-size: 0.85rem; color: var(--muted); }
.footer-note { width: 100%; font-size: 0.82rem; color: rgba(251,247,238,0.45); }
.footer-note a { color: rgba(251,247,238,0.65); }

/* ---------- writing: controls, categories, view toggle ---------- */
.writing-section { padding-top: 2.5rem; }
.writing-controls {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.2rem;
}
.search-wrap { flex: 1 1 16rem; }
#essay-search {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: 0.7rem 1rem; border: 1px solid var(--rule); border-radius: 3px; background: #fffdf7;
}
#essay-search::placeholder { color: var(--faded); }
#essay-search:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-color: var(--gold); }
.view-toggle { display: flex; border: 1px solid var(--rule); border-radius: 3px; overflow: hidden; }
.view-toggle button {
  background: #fffdf7; border: none; cursor: pointer;
  padding: 0.55rem 0.85rem; font-size: 1rem; color: var(--faded); line-height: 1;
}
.view-toggle button + button { border-left: 1px solid var(--rule); }
.view-toggle button.active { background: var(--night); color: var(--gold-bright); }

.cat-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.cat-pill {
  font-family: var(--body); font-size: 0.82rem; cursor: pointer;
  padding: 0.4rem 0.9rem; border: 1px solid var(--rule); border-radius: 2rem;
  background: transparent; color: var(--faded); transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.cat-pill span { opacity: 0.55; font-size: 0.75rem; margin-left: 0.15rem; }
.cat-pill:hover { border-color: var(--gold); color: var(--ink); }
.cat-pill.active { background: var(--night); color: var(--linen); border-color: var(--night); }
.cat-pill.active span { opacity: 0.7; }

.cat-chip {
  display: inline-block; margin-top: 0.7rem; font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
}

/* list view */
.card-grid.view-list { grid-template-columns: 1fr; gap: 0; }
.view-list .post-card {
  flex-direction: row; align-items: stretch; border-radius: 0;
  border: none; border-bottom: 1px solid var(--rule); background: transparent;
}
.view-list .post-card:hover { transform: none; box-shadow: none; background: var(--linen-alt); }
.view-list .card-img { width: 9rem; min-width: 9rem; aspect-ratio: auto; align-self: stretch; }
.view-list .card-body { padding: 1.1rem 1.3rem; }
.view-list .card-sub { -webkit-line-clamp: 2; }
.view-list .cat-chip { margin-top: 0.4rem; }

/* music artist links */
.music-links { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; }
.music-link {
  color: #fff; border: none;
  box-shadow: 0 6px 16px rgba(29, 37, 52, 0.18);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}
.music-link:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(29, 37, 52, 0.24); filter: brightness(1.08); color: #fff; }

/* clickable paid badge */
a.badge-link { text-decoration: none; }
a.badge-link:hover { background: var(--oxblood); filter: brightness(1.15); }

/* ---------- contact ---------- */
.contact-section { max-width: 62rem; }
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: start; }
.contact-box {
  display: flex; flex-direction: column; gap: 1.1rem;
  background: #fffdf7; border: 1px solid var(--rule); border-radius: 4px;
  padding: 1.8rem;
}
.contact-box label {
  display: flex; flex-direction: column; gap: 0.4rem;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--faded);
}
.contact-box input[type="text"],
.contact-box input[type="email"],
.contact-box textarea {
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: 0.7rem 0.9rem; border: 1px solid var(--rule); border-radius: 3px;
  background: #fff; text-transform: none; letter-spacing: normal;
}
.contact-box textarea { resize: vertical; }
.contact-box input:focus-visible,
.contact-box textarea:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.contact-box .checkbox {
  flex-direction: row; align-items: flex-start; gap: 0.6rem;
  text-transform: none; letter-spacing: normal; font-size: 0.92rem; color: var(--ink); line-height: 1.4;
}
.contact-box .checkbox input { margin-top: 0.2rem; width: 1.05rem; height: 1.05rem; accent-color: var(--gold); }
.contact-box .btn { align-self: flex-start; }
.contact-note { font-size: 0.82rem; color: var(--faded); font-style: italic; }

.contact-aside { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-card {
  background: var(--linen-alt); border: 1px solid var(--rule); border-radius: 4px; padding: 1.4rem 1.5rem;
}
.contact-card h3 { font-family: var(--display); font-weight: 600; font-size: 1.35rem; margin-bottom: 0.4rem; }
.contact-card p { font-size: 0.92rem; color: var(--faded); margin-bottom: 1rem; }
.contact-card-bonus { background: var(--night); }
.contact-card-bonus h3 { color: var(--gold-bright); }
.contact-card-bonus p { color: rgba(251, 247, 238, 0.72); }
.contact-card-bonus .btn-ghost-dark { border-color: rgba(251,247,238,0.35); color: var(--linen); }
.contact-card-bonus .btn-ghost-dark:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; gap: 1.6rem; }
}

/* ---------- responsive ---------- */
@media (max-width: 720px) {
  .topbar { gap: 0.9rem; }
  .mainnav { gap: 0.9rem; order: 3; width: 100%; justify-content: center; padding-bottom: 0.2rem; }
  .btn-subscribe { margin-left: auto; }
  .ep-row { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .ep-row .listen-more { margin-left: 0; }
}
@media (max-width: 560px) {
  .view-list .card-img { width: 5.5rem; min-width: 5.5rem; }
  .view-list .card-body { padding: 0.9rem 1rem; }
}
