/*
Theme Name:   Greg Sover
Description:  Custom theme for gregsover.com — ported from the approved static
              design prototype. Colors, type, and spacing all live in the
              :root custom-property block below; the CSS itself is otherwise
              unchanged from the design that was approved.
Author:       joeyditullio
Version:      1.0.0
Text Domain:  greg-sover
*/

/* ==========================================================================
   Greg Sover — static design prototype
   One shared stylesheet. All design tokens live in :root below so the
   client's accent color is a one-line change.
   ========================================================================== */

:root {
  /* --- color : dark theme, Stratocaster-red accent ---------------------- */
  --bg:            #0e0e10;
  --bg-raised:     #17171a;   /* cards, form fields, raised bands */
  --border:        #37383c;   /* nudged toward client dark-grey #5c5d60 (kept subtle) */
  --text:          #eae7e1;   /* off-white, never #fff */
  --text-muted:    #b6b8ba;   /* client light grey */
  --accent:        #d92d31;   /* primary — Stratocaster red (buttons / fCTAs) */
  --accent-hover:  #ef4b4f;
  --accent-ink:    #f7e8e8;   /* text on top of an accent fill */
  --accent-2:      #fdb740;   /* client yellow — secondary accent (kickers, underlines) */
  --scrim: linear-gradient(
             180deg,
             rgba(14,14,16,0)   0%,
             rgba(14,14,16,.15) 35%,
             rgba(14,14,16,.55) 65%,
             rgba(14,14,16,.92) 100%);
  --scrim-header: linear-gradient(
             180deg,
             rgba(14,14,16,.75) 0%,
             rgba(14,14,16,0)   100%);

  /* --- type : client brand fonts ------------------------------------------
     Oswald  — headings / call-outs
     Poppins — body / UI
     Pinyon Script — accent/script, STANDING IN for "Carolina" (not a free webfont) */
  --font-sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Oswald", "Barlow Semi Condensed", "Arial Narrow", Impact, sans-serif;
  --font-script: "Mr De Haviland", "Snell Roundhand", "Brush Script MT", cursive;

  --step--1: 0.833rem;
  --step-0:  1rem;
  --step-1:  clamp(1.15rem, 1rem + 0.6vw, 1.45rem);
  --step-2:  clamp(1.4rem, 1.1rem + 1.3vw, 2rem);
  --step-3:  clamp(1.9rem, 1.3rem + 2.6vw, 3rem);
  --step-4:  clamp(2.6rem, 1.6rem + 4.6vw, 4.5rem);   /* hero tagline */

  --leading:       1.6;
  --leading-tight: 1.15;

  /* --- spacing : 8px base ------------------------------------------------- */
  --space-2xs: 0.25rem;
  --space-xs:  0.5rem;
  --space-sm:  0.75rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;    /* section vertical rhythm, desktop */

  /* --- layout ---------------------------------------------------------- */
  --measure:    65ch;
  --container:  1360px;
  --radius:     4px;
  --header-h:   92px;
  --transition: 160ms ease;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;   /* no sideways scroll on mobile */
  font-family: var(--font-sans);
  font-size: 0.94rem;   /* Poppins runs large; nudge base down to keep line lengths sane */
  line-height: var(--leading);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: clip;
}

img,
picture,
iframe,
svg,
video { display: block; max-width: 100%; }

img { height: auto; }

input,
button,
textarea,
select { font: inherit; color: inherit; }

a {
  color: var(--text);
  text-decoration-color: var(--accent-2);   /* brand: yellow link underlines */
  text-underline-offset: 0.2em;
}
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: 0;   /* Oswald is already condensed — no negative tracking */
}

h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }

p { text-wrap: pretty; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */

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

.wrap--narrow { --container: 760px; }

.band {
  padding-block: var(--space-2xl);
  border-bottom: 1px solid var(--border);
}
.band:last-child { border-bottom: 0; }
.band--raised { background: var(--bg-raised); }
.band--flush  { border-bottom: 0; }

.measure { max-width: var(--measure); }
.muted { color: var(--text-muted); }
.center { text-align: center; }
.caps { text-transform: uppercase; letter-spacing: 0.04em; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);   /* brand: yellow section kickers */
  margin-bottom: var(--space-sm);
}

.section-title { margin-bottom: var(--space-lg); }

.skip-link {
  position: absolute;
  left: var(--space-md);
  top: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--radius);
  transform: translateY(-150%);
  transition: transform var(--transition);
  z-index: 100;
}
.skip-link:focus { transform: translateY(0); color: var(--accent-ink); }

@media (min-width: 900px) {
  .band { padding-block: var(--space-3xl); }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  min-height: 44px;
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.btn--solid {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn--solid:hover { background: var(--accent-hover); color: var(--accent-ink); }

.btn--outline {
  border-color: var(--text);
  color: var(--text);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* ==========================================================================
   Site header  —  transparent, overlaid on the hero, persistent on scroll
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  min-height: var(--header-h);
  transition: background var(--transition), backdrop-filter var(--transition);
}
.site-header::before {   /* own gradient scrim: nav text readable over any image */
  content: "";
  position: absolute;
  inset: 0;
  background: var(--scrim-header);
  pointer-events: none;
}
.site-header.is-scrolled {
  background: rgba(14, 14, 16, 0.85);
  backdrop-filter: blur(8px);
}
.site-header.is-scrolled::before { opacity: 0; }

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  position: relative;
}

.brand {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
}
.brand:hover { color: var(--text); }
.brand__mark {
  display: block;
  height: clamp(34px, 4.5vw, 50px);   /* GS wordmark logo (wider than the signature) */
  width: auto;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after  { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg); }

.site-nav ul {
  list-style: none;
  padding: 0;
}
.site-nav a {
  display: block;
  text-decoration: none;
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--accent); }

/* mobile nav : collapsed panel */
@media (max-width: 799px) {
  :root { --header-h: 68px; }   /* keep the fixed header compact on phones */
  .site-nav {
    position: absolute;
    inset: calc(var(--header-h) - 8px) 0 auto 0;
    background: rgba(14, 14, 16, 0.97);
    border-block: 1px solid var(--border);
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { padding: var(--space-xs) 0; }
  .site-nav a { padding: var(--space-md) var(--space-lg); }
}

/* desktop nav : inline row, hamburger hidden */
@media (min-width: 800px) {
  .nav-toggle { display: none; }
  .site-nav { display: block !important; }
  .site-nav ul {
    display: flex;
    gap: var(--space-lg);
  }
}

/* ==========================================================================
   Hero  —  full-bleed art-directed photo + gradient scrim + tagline + CTAs
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
}
.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {   /* scrim */
  content: "";
  position: absolute;
  inset: 0;
  background: var(--scrim);
  z-index: -1;
}
.hero__inner {
  min-width: 0;
  padding-block: var(--space-2xl) var(--space-3xl);
}
.hero__tagline {
  font-size: var(--step-4);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: 16ch;
  margin-bottom: var(--space-sm);
}
.hero__sub {
  font-size: var(--step-2);
  color: var(--text);
  max-width: min(26ch, 100%);
  margin-bottom: var(--space-sm);
}
.hero__meta {
  font-size: var(--step-0);
  color: var(--text-muted);
  max-width: min(46ch, 100%);
  margin-bottom: var(--space-xl);
}

/* ==========================================================================
   Home : short bio
   ========================================================================== */

.bio {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}
.bio__portrait {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--border);
  width: 100%;
}
.bio__body p + p { margin-top: var(--space-md); }
.bio__body .more-link {
  display: inline-block;
  margin-top: var(--space-lg);
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (min-width: 700px) {
  .bio { grid-template-columns: 1fr; gap: var(--space-2xl); }
}

/* Kravitz-style: the bio and the pull quote share one faded background image */
.feature-bg { position: relative; isolation: isolate; }
.feature-bg::before,
.feature-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.feature-bg::before {
  /* bio-section background image — swap the file here */
  background: url("assets/img/bio-bg.jpg") center / cover no-repeat;
  opacity: 1.0;                          /* IMAGE OPACITY — lower = more hidden */
  filter: saturate(1.03) brightness(1.12); /* IMAGE SATURATION / BRIGHTNESS — 0 = greyscale, >1 = punchier */
}
.feature-bg::after {
  /* dark wash over the image — raise the two alphas to darken the section further */
  background: linear-gradient(180deg, rgba(14, 14, 16, 0.68), rgba(14, 14, 16, 0.6));
}
.feature-bg .band { background: transparent; }
.feature-bg .band:not(:last-child) { border-bottom-color: rgba(234, 231, 225, 0.08); }
/* keep text crisp over the brightened photo */
.feature-bg .bio__body,
.feature-bg .pullquote { text-shadow: 0 1px 12px rgba(0, 0, 0, 0.72); }

/* ==========================================================================
   Pull quote  —  one attributed press quote  (repeating unit → future CPT)
   ========================================================================== */

.pullquote {
  text-align: center;
  max-width: 32ch;   /* mobile width */
  margin-inline: auto;
}
@media (min-width: 800px) {
  /* desktop: let the quote run wider so it isn't a tall stack of short lines */
  .pullquote { max-width: 46rem; }
}
.pullquote blockquote {
    font-family: var(--font-script);
    font-weight: 500;
    font-size: clamp(2.2rem, 1.6rem + 2.8vw, 3.6rem);
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: var(--text);
}
.pullquote blockquote::before { content: "\201C"; }
.pullquote blockquote::after  { content: "\201D"; }
.pullquote cite {
  display: block;
  margin-top: var(--space-lg);
  font-style: normal;
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==========================================================================
   Release block  —  artwork + monochrome Spotify embed  (repeating unit → CPT)
   ========================================================================== */

.release {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-xl);
  align-items: start;
}
.release__art {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--border);
  width: 100%;
  min-width: 0;
}
.release__player {
  border: 0;
  border-radius: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 352px;
}
.release__player--placeholder {
  display: grid;
  place-items: center;
  padding: var(--space-lg);
  text-align: center;
  background: var(--bg-raised);
  border: 1px dashed var(--border);
  color: var(--text-muted);
  font-size: var(--step--1);
}
.release__player--placeholder code {
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.release__meta h3 { margin-bottom: var(--space-2xs); }
.release__meta .year { color: var(--text-muted); }

/* home featured release — more breathing room around the meta block */
.release--feature { max-width: 1040px; }
.release--feature .release__meta { margin-top: var(--space-lg); }
.release--feature .release__meta h3 { margin-bottom: var(--space-xs); }
.release--feature .release__meta .year { margin-bottom: var(--space-md); }

@media (min-width: 800px) {
  .release { grid-template-columns: 320px minmax(0, 1fr); gap: var(--space-2xl); }
}

/* music.html — condensed release list (compact Spotify players, 2+ visible) */
.release-list { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-lg); }
.release-list > * + * {
  border-top: 1px solid var(--border);
  padding-top: var(--space-lg);
}
.release--compact {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-sm);
  max-width: 620px;
}
.release--compact .release__meta {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.release--compact .release__meta h2 { font-size: var(--step-1); }
.release--compact .release__player {
  height: 152px;
  border-radius: 12px;
}
.release--compact .streams { gap: var(--space-xs); }
.release--compact .stream-link {
  padding: var(--space-2xs) var(--space-sm);
  font-size: 0.72rem;
}

/* music.html — decorative photo column filling the empty right side.
   Desktop-only; fades toward the previews so it never competes with them. */
#releases { overflow: hidden; }
.music-gallery { display: none; }
@media (min-width: 1100px) {
  #releases .wrap { position: relative; }
  .release-list { position: relative; z-index: 1; }
  .music-gallery {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: min(40%, 600px);
    padding-block: var(--space-2xl);
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.55) 30%, #000 68%);
            mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.55) 30%, #000 68%);
  }
  .music-gallery__img {
    flex: 1 1 0;
    min-height: 0;
    width: 100%;
    object-fit: cover;
    border: 0;
    display: block;
    filter: grayscale(0.08) brightness(1.02) contrast(1.02);
    opacity: 0.96;
  }
}

/* ==========================================================================
   Streaming platform links
   ========================================================================== */

.streams {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.stream-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.stream-link:hover { border-color: var(--accent); color: var(--accent); }
.streams--center { justify-content: center; }

/* brand-logo variant of the link rows — shown alongside the text version so
   the client can pick one (see punch list) */
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 20px; height: 20px; display: block; fill: currentColor; }
.stream-link .icon,
.social a .icon { width: 1.15em; height: 1.15em; }

.streams--icons { margin-top: var(--space-sm); }
.streams--icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
}
.streams--icons a:hover { border-color: var(--accent); color: var(--accent); }

/* ==========================================================================
   CTA band  (EPK entry point, booking prompts)
   ========================================================================== */

.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: var(--space-sm); }
.cta-band p {
  color: var(--text-muted);
  max-width: 48ch;
  margin: 0 auto var(--space-xl);
}
.cta-band--feature {
  background: var(--bg-raised);
  border-block: 2px solid var(--accent);
}
.cta-band__or {
  margin-top: var(--space-lg);
  font-size: var(--step--1);
  color: var(--text-muted);
}

/* two-up "As a fan / As a talent buyer" split (home "A closer look") */
.split { display: grid; gap: var(--space-xl); }
.split__role {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);   /* brand: yellow role label */
  margin-bottom: var(--space-sm);
}
.split__cta { margin-top: var(--space-xl); text-align: center; }
@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    max-width: 900px;
    margin-inline: auto;
  }
  .split__col + .split__col {
    border-left: 1px solid var(--border);
    padding-left: var(--space-2xl);
  }
}

/* home page — bump the red kicker text on desktop only (mobile unchanged) */
@media (min-width: 700px) {
  .home .eyebrow,
  .home .split__role {
    font-size: var(--step-1);
    letter-spacing: 0.14em;
  }
}

/* ==========================================================================
   Forms  (contact page + mailing-list stub)
   ========================================================================== */

.form { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-lg); max-width: 520px; }
.form--inline {
  grid-auto-flow: column;
  grid-template-columns: 1fr auto;
  gap: var(--space-sm);
  align-items: end;
  max-width: 460px;
  margin-inline: auto;
}
.field { display: grid; gap: var(--space-2xs); }
.field label {
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}
.field select {
  font: inherit;
  width: 100%;
  min-width: 0;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.field select option {
  background-color: var(--bg-raised);
  color: var(--text);
}
.field textarea { min-height: 160px; resize: vertical; }

.form__note {
  font-size: var(--step--1);
  color: var(--text-muted);
}
.form__status[hidden] { display: none; }
.form__status {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  font-size: var(--step--1);
}
.form--inline .form__status { grid-column: 1 / -1; }

@media (max-width: 520px) {
  .form--inline { grid-auto-flow: row; grid-template-columns: 1fr; }
}

/* ==========================================================================
   EPK  —  bio lengths, press photos, downloads, quotes
   ========================================================================== */

.bio-toggle {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}
.bio-toggle button {
  padding: var(--space-xs) var(--space-md);
  background: none;
  border: 0;
  border-right: 1px solid var(--border);
  cursor: pointer;
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.bio-toggle button:last-child { border-right: 0; }
.bio-toggle button[aria-selected="true"] {
  background: var(--accent);
  color: var(--accent-ink);
}
.bio-panel[hidden] { display: none; }
.bio-panel p + p { margin-top: var(--space-md); }

.press-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.press-figure { margin: 0; }
.press-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--border);
}
.press-figure figcaption {
  margin-top: var(--space-xs);
  font-size: var(--step--1);
  color: var(--text-muted);
}

.downloads {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-sm);
  max-width: 520px;
}
.downloads a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
}
.downloads a:hover { border-color: var(--accent); color: var(--accent); }
.downloads .meta {
  font-size: var(--step--1);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quote-list {
  display: grid;
  gap: var(--space-xl);
  list-style: none;
  padding: 0;
}
.quote-list blockquote {
  font-family: var(--font-display);   /* EPK press quotes: heading font (Oswald), not the script */
  font-weight: 500;
  font-size: var(--step-1);
  line-height: 1.4;
  border-left: 2px solid var(--accent-2);
  padding-left: var(--space-md);
}
.quote-list cite {
  display: block;
  margin-top: var(--space-sm);
  font-style: normal;
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.quote-list a { color: var(--text-muted); }

/* epk.html — condensed: tighter bands + combined photos / press block */
.epk .band { padding-block: var(--space-xl); }
.epk-press { display: grid; gap: var(--space-xl); }
.epk-press__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-content: start;
}
.epk-press__photos .press-figure img { aspect-ratio: 1 / 1; }
.epk-press__quotes > p { margin-top: var(--space-xl); }
@media (min-width: 900px) {
  .epk .band { padding-block: var(--space-2xl); }
  .epk-press {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
  }
  .epk-press__quotes { max-width: 48ch; }
}

/* ==========================================================================
   Interior page header (music / tour / epk / contact)
   ========================================================================== */

.page-head {
  padding-top: calc(var(--header-h) + var(--space-2xl));
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border);
}
.page-head p {
  color: var(--text-muted);
  max-width: 52ch;
  margin-top: var(--space-md);
}
.page-head--tight {
  padding-top: calc(var(--header-h) + var(--space-lg));
  padding-bottom: var(--space-lg);
}

/* ==========================================================================
   Tour  —  Bandsintown widget container
   ========================================================================== */

.bit-wrap {
  min-height: 200px;
  margin-bottom: var(--space-2xl);
}
.bit-fallback {
  color: var(--text-muted);
  font-size: var(--step--1);
}

/* tour.html — performance history and the upcoming-dates widget, side by side
   (history first in the DOM so "no dates" is never the first thing on the page) */
.tour-cols { display: grid; gap: var(--space-2xl); }
.tour-cols > * { min-width: 0; }
@media (min-width: 900px) {
  .tour-cols { grid-template-columns: minmax(0, 1fr) 340px; align-items: start; }
}

/* static performance-history list (placeholder until wired to Bandsintown data) */
.gig-list {
  list-style: none;
  padding: 0;
  max-width: 680px;
  border-top: 1px solid var(--border);
}
.gig {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: var(--space-xs) var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.gig__year { color: var(--text-muted); font-size: var(--step--1); }
.gig__venue { font-weight: 600; }
.gig__city { color: var(--text-muted); font-size: var(--step--1); }
@media (max-width: 560px) {
  .gig { grid-template-columns: 4.5rem 1fr; }
  .gig__city { grid-column: 2; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding-block: var(--space-2xl);
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
  justify-content: space-between;
}
.social {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: var(--space-sm) var(--space-md);
}
.social a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
}
.social a:hover { color: var(--accent); }
.social-set { display: flex; flex-direction: column; gap: var(--space-xs); min-width: 0; max-width: 100%; }
.social--icons { gap: var(--space-sm); }
.social--icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-muted);
}
.social--icons a:hover { color: var(--accent); }
.social--icons .icon { width: 18px; height: 18px; }
.site-footer .legal {
  font-size: var(--step--1);
  color: var(--text-muted);
}
.site-footer .legal a { color: var(--text-muted); }

/* generic top-gap for interior <main> so fixed header never overlaps */
.has-page-head { }

/* ==========================================================================
   Cookie consent banner
   ========================================================================== */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  padding: var(--space-md) var(--space-lg);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md) var(--space-xl);
}
.cookie-banner p {
  margin: 0;
  font-size: var(--step--1);
  color: var(--text-muted);
  max-width: 62ch;
}
.cookie-banner a { color: var(--text); }
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  flex-shrink: 0;
}
.cookie-settings-link {
  background: none;
  border: 0;
  padding: 0;
  margin-top: var(--space-2xs);
  font: inherit;
  font-size: var(--step--1);
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}
.cookie-settings-link:hover { color: var(--accent); }

@media (max-width: 640px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1 1 0; }
}
/* =========================================================
   EPK BLOCK VERSION — Photos & Press
   ========================================================= */

.epk-press-grid {
    align-items: flex-start;
    gap: 2.5rem;
}

/* Left gallery column */
.epk-press-grid > .wp-block-column:first-child {
    flex-basis: 58% !important;
}

/* Right press quote column */
.epk-press-grid > .wp-block-column:last-child {
    flex-basis: 42% !important;
}

/* Press quote */
.epk-press-grid blockquote {
    margin: 0 0 2.2rem 0;
    padding: 0 0 0 1rem;
    border-left: 2px solid var(--accent);
}

/* Quote text */
.epk-press-grid blockquote p {
    margin: 0 0 0.75rem 0;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text);
}

/* Quote attribution */
.epk-press-grid blockquote cite {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.76rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.12em;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Attribution links */
.epk-press-grid blockquote cite a {
    color: inherit;
    text-decoration-color: var(--accent);
    text-underline-offset: 3px;
}