/* ============================================================
   mandymoon.com - style.css
   Purpose:
   - Global site styles + shared header + mobile overlay menu
   - Shared layout system for Home / Work / Blog pages
   ============================================================ */

/* ============================================================
   CONTENTS
   - THEME_VARIABLES
   - BASE_RESET
   - BACKGROUND_IMAGE
   - GLOBAL_DEFAULTS
   - UTILITIES
   - SECTION_CARD
   - BUTTONS
   - HEADER_LAYOUT
   - DESKTOP_NAV
   - DESKTOP_SOCIAL
   - DESKTOP_WORK_DROPDOWN
   - HAMBURGER_BUTTON
   - MOBILE_OVERLAY_SYSTEM  (authoritative)
   - RESPONSIVE_SWITCH
   - LANDSCAPE_SHORT_HEIGHT
   - LAYOUT_ANCHORS
   - HERO_LAYOUT
   - HERO_REVEAL_SYSTEM
   - CHOOSE_YOUR_PATH
   - TESTIMONIALS_SECTION
   - LATEST_RELEASE_SECTION
   - SCROLL_REVEAL
   - VIDEO_EMBEDS
   - SHOWCASE_BLOCKS
   - CONTACT_TITLE
   - HOME_CTA_SECTION
   - NEWSLETTER_MODAL
   - BIO_SECTION
   - CONTACT_FORM
   - FOOTER
   - SPOTIFY_HELPER
   - WORK_BLOG_LAYOUT_SYSTEM
   - WORK_PAGE_READABILITY
   - WORK_SERVICE_PAGE_TEMPLATE
   - BLOG_HERO_READABILITY
   - WORK_PAGE_SECTION_GRIDS
   - BLOG_POST_CARDS
   - FINAL_OVERRIDES
   ============================================================ */

/* ============================================================
   THEME_VARIABLES
   ============================================================ */
@font-face {
  font-family: SourceSerifPro;
  src: url(../fonts/SourceSerif4_18pt-Regular.ttf);
}

:root {
  /* Core accent */
  --accent: #332336;
  --accent-2: #5f4164;

  /* Global page background */
  --page-bg: #5f4164;

  /* Adjustable hero logo max width */
  --hero-logo-max: 500px;

  /* Header */
  --header-bg: rgba(18, 27, 34, 0.9);
  --header-border: #121b22;
  --header-h: 4em;

  /* Section cards */
  --card-solid: var(--accent);
  --card-bg: rgba(51, 35, 54, 0.86);

  /* Buttons */
  --btn-bg: rgba(18, 27, 34, 0.9);
  --btn-border: rgba(255, 255, 255, 0.75);

  /* Primary button */
  --btn-primary-bg: rgba(95, 65, 100, 0.92);
  --btn-primary-hover: rgba(51, 35, 54, 0.92);
  --btn-primary-border: rgba(255, 255, 255, 0.18);

  /* Button hover */
  --btn-hover-bg: rgba(95, 65, 100, 0.9);
  --btn-hover-border: rgba(255, 255, 255, 0.28);

  /* Nav hover */
  --nav-hover-bg: rgba(18, 27, 34, 0.92);

  /* Readability overlays */
  --glass-dark: rgba(18, 27, 34, 0.82);
  --glass-darker: rgba(18, 27, 34, 0.9);
  --glass-soft: rgba(7, 5, 8, 0.42);

  --stroke-soft: rgba(255, 255, 255, 0.12);
  --stroke-softer: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   BASE_RESET
   ============================================================ */
html,
body,
h1,
h2,
h3,
h4,
h5,
p,
div,
a,
button,
nav,
section,
footer,
label,
input,
textarea,
form {
  margin: 0;
  padding: 0;
}

/* ============================================================
   BACKGROUND_IMAGE
   ============================================================ */
html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  background-color: var(--page-bg);
}

/* ============================================================
   GLOBAL_DEFAULTS
   ============================================================ */
body {
  font-family: SourceSerifPro;
  line-height: 1.5;
  font-size: 16px;
  color: white;

  /* fixed header offset */
  margin-top: var(--header-h);
  padding-top: 0;

  min-height: 100%;
  width: 100%;
}

h2 {
  font-size: 2.5em;
}

a {
  text-decoration: none;
  color: white;
}

/* NOTE: global image border is intentional */
img {
  border: solid white 2px;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center {
  text-align: center;
}

.nowrap {
  white-space: nowrap;
}

.italic {
  font-style: italic;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ============================================================
   SECTION_CARD
   ============================================================ */
.section-card {
  background: var(--card-bg);
  border-top: 1px solid rgba(223, 126, 239, 0.26);
  border-bottom: 1px solid rgba(223, 126, 239, 0.26);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  appearance: none;
  border: solid var(--btn-border) 1px;
  background: var(--btn-bg);
  color: white;

  border-radius: 10px;
  padding: 10px 16px;
  font: inherit;

  cursor: pointer;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  line-height: 1;

  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 120ms ease,
    opacity 180ms ease;
}

.btn:hover,
.btn:focus {
  background: var(--btn-hover-bg);
  border-color: var(--btn-hover-border);
  outline: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-sm {
  padding: 6px 12px;
  border-radius: 9px;
  min-height: 38px;
}

.btn.primary {
  background: var(--btn-primary-bg);
  border-color: var(--btn-primary-border);
}

.btn.primary:hover,
.btn.primary:focus {
  background: var(--btn-primary-hover);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn.outline {
  background: rgba(18, 27, 34, 0.55);
  border-color: rgba(255, 255, 255, 0.32);
}

.btn.outline:hover,
.btn.outline:focus {
  background: rgba(18, 27, 34, 0.72);
  border-color: rgba(255, 255, 255, 0.42);
}

/* ============================================================
   HEADER_LAYOUT
   ============================================================ */
#header {
  background: var(--header-bg);
  border-top: solid var(--header-border) 5px;
  border-bottom: solid var(--header-border) 5px;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;

  width: 100%;
  height: var(--header-h);

  box-sizing: border-box;
  padding: 0 12px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hide any legacy header title */
#mandy-moon,
.site-title {
  display: none !important;
}
/* ============================================================
   DESKTOP_LOGO (left side)
   ============================================================ */
.desktop-logo {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 0;
  text-decoration: none;
  z-index: 10001;
}

.desktop-logo img {
  border: 0 !important;
  height: 30px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
  opacity: 0.95;
}

.desktop-logo:hover img {
  opacity: 1;
}

/* Hide desktop logo on mobile (mobile logo already exists) */
@media (max-width: 1024px) {
  .desktop-logo {
    display: none !important;
  }
}

/* ============================================================
   DESKTOP_NAV
   ============================================================ */
nav#header-menu.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  white-space: nowrap;
  font-size: 1.2em;
}

nav#header-menu.desktop-nav a,
nav#header-menu.desktop-nav button {
  color: white;
  cursor: pointer;
}

nav#header-menu.desktop-nav > a:hover,
nav#header-menu.desktop-nav > a:focus,
nav#header-menu.desktop-nav .nav-btn:hover,
nav#header-menu.desktop-nav .nav-btn:focus {
  color: var(--accent-2);
}

.nav-btn {
  background: transparent;
  border: 0;
  font: inherit;
  padding: 0;
}

/* ============================================================
   DESKTOP_SOCIAL
   ============================================================ */
.header-social {
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;

  display: flex;
  gap: 10px;
  align-items: center;
}

.header-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: solid rgba(255, 255, 255, 0.12) 1px;

  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 120ms ease;
}

.header-social-link img {
  border: 0;
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.social-linkedin-mark {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.header-social-link:hover,
.header-social-link:focus {
  background: var(--btn-hover-bg);
  border-color: var(--btn-hover-border);
  outline: none;
}

.header-social-link:active {
  transform: translateY(1px);
}

.header-social-link:hover img,
.header-social-link:focus img {
  opacity: 1;
}

/* ============================================================
   HAMBURGER_CONTAINER
   ============================================================ */
#hamburger {
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;

  display: flex;
  align-items: center;
}

/* ============================================================
   MOBILE_LOGO
   ============================================================ */
.mobile-logo {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 0;
  z-index: 10001;
  text-decoration: none;
}

.mobile-logo img {
  border: 0 !important;
  height: 28px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}

/* ============================================================
   DESKTOP_WORK_DROPDOWN
   ============================================================ */
.nav-item.has-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 260px;
  height: 10px;
  transform: translateX(-50%);
}

.nav-dropdown {
  position: absolute;
  display: none;
  flex-direction: column;

  left: 50%;
  transform: translateX(-50%);

  top: 100%;
  margin-top: 10px;

  min-width: 260px;

  background: var(--card-solid);
  border: solid var(--header-border) 3px;
  border-radius: 8px;

  overflow: hidden;
  opacity: 0.98;
  z-index: 20000;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.nav-dropdown a {
  padding: 12px 14px;
  border-bottom: solid rgba(255, 255, 255, 0.18) 1px;
  text-align: center;
  transition: background 180ms ease;
}

.nav-dropdown a:last-child {
  border-bottom: 0;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
  display: flex;
}

nav#header-menu .nav-dropdown a:hover,
nav#header-menu .nav-dropdown a:focus {
  background: var(--nav-hover-bg);
}

/* ============================================================
   HAMBURGER_BUTTON
   ============================================================ */
.hamburger-btn {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
  line-height: 0;
}

.hamburger-lines {
  width: 34px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-lines::before,
.hamburger-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 34px;
  height: 3px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  transition: transform 180ms ease;
  transform-origin: center;
}

.hamburger-lines::before {
  top: 3px;
  box-shadow: 0 9px 0 rgba(255, 255, 255, 0.92);
}

.hamburger-lines::after {
  top: 21px;
}

/* ============================================================
   MOBILE_OVERLAY_SYSTEM  (authoritative)
   ============================================================ */
body.menu-open {
  overflow: hidden;
  touch-action: none;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 19998;
}

.menu-backdrop[hidden] {
  display: none !important;
}

/* Default: overlay closed */
#header-dropdown.header-dropdown {
  display: none;
}

/* Mobile overlay panel */
@media (max-width: 1024px) {
  .mobile-logo {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  #header-dropdown.header-dropdown {
    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100dvh;
    max-width: none;

    display: none;
    flex-direction: column;

    padding: calc(var(--header-h) + 1px) 22px 18px;

    margin: 0;
    border: 0;
    border-radius: 0;
    box-sizing: border-box;

    z-index: 19999;
    overflow-y: auto;

    background: rgba(38, 23, 47, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transform: none !important;
    left: 0 !important;
    right: 0 !important;

    align-items: center;
  }

  #header-dropdown.header-dropdown.is-open {
    display: flex;
  }

  #header-dropdown.header-dropdown > a,
  #header-dropdown.header-dropdown > button.mobile-submenu-toggle {
    width: min(640px, 92vw);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;

    text-align: center;
    padding: 16px 12px;
    font-size: 18px;
    color: white;

    background: transparent;
    border: 0;
    cursor: pointer;
  }

  #header-dropdown.header-dropdown > a {
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  #header-dropdown.header-dropdown > a:first-of-type {
    border-top: 0;
  }

  #header-dropdown.header-dropdown > a:hover,
  #header-dropdown.header-dropdown > a:focus,
  #header-dropdown.header-dropdown > button.mobile-submenu-toggle:hover,
  #header-dropdown.header-dropdown > button.mobile-submenu-toggle:focus {
    background: var(--btn-hover-bg);
    border-color: var(--btn-hover-border);
    outline: none;
  }

  body.menu-open .hamburger-lines::before {
    transform: translateY(9px) rotate(45deg);
    box-shadow: none;
  }

  body.menu-open .hamburger-lines::after {
    transform: translateY(-9px) rotate(-45deg);
  }

  #header-dropdown.header-dropdown > button.mobile-submenu-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    padding-right: 52px;
  }

  #header-dropdown.header-dropdown > button.mobile-submenu-toggle .caret,
  #header-dropdown.header-dropdown > button.mobile-submenu-toggle .chev,
  #header-dropdown.header-dropdown > button.mobile-submenu-toggle .arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
  }

  #header-dropdown.header-dropdown > button.mobile-submenu-toggle::after {
    right: 16px;
  }

  #header-dropdown.header-dropdown
    > button.mobile-submenu-toggle[aria-expanded="true"] {
    background: var(--btn-hover-bg);
  }

  .mobile-submenu {
    width: min(640px, 92vw);
    margin: 10px auto 14px auto;
    box-sizing: border-box;

    display: none;
    flex-direction: column;

    background: rgba(18, 27, 34, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;

    opacity: 1;
    visibility: visible;
  }

  .mobile-submenu.is-open {
    display: flex;
  }

  #header-dropdown
    button.mobile-submenu-toggle[aria-expanded="true"]
    + .mobile-submenu {
    display: flex !important;
  }

  .mobile-submenu a {
    display: block !important;
    width: 100% !important;

    padding: 12px 12px !important;
    text-align: center !important;

    color: #fff !important;
    font-size: 16px !important;
    line-height: 1.35 !important;

    white-space: normal !important;
    opacity: 1 !important;
    visibility: visible !important;

    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: transparent !important;

    pointer-events: auto !important;
  }

  .mobile-submenu a:first-child {
    border-top: 0 !important;
  }

  .mobile-submenu a:hover,
  .mobile-submenu a:focus {
    background: var(--btn-hover-bg);
    outline: none;
  }

  .mobile-submenu.is-open {
    max-height: 40vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-social {
    width: min(640px, 92vw);

    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);

    display: grid;
    grid-template-columns: repeat(7, 36px);
    gap: 12px;
    justify-content: center;
    align-items: center;
    justify-items: center;
  }

  @media (max-width: 420px) {
    .mobile-social {
      grid-template-columns: repeat(3, 36px);
    }
  }

  .mobile-social .header-social-link {
    width: 36px;
    height: 36px;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);

    display: grid;
    place-items: center;

    transition:
      background 160ms ease,
      border-color 160ms ease,
      transform 120ms ease;
  }

  .mobile-social .header-social-link:hover,
  .mobile-social .header-social-link:focus {
    background: var(--btn-hover-bg);
    border-color: var(--btn-hover-border);
    outline: none;
  }

  .mobile-social .header-social-link:active {
    transform: translateY(1px);
  }

  .mobile-social img {
    border: 0 !important;
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    display: block;
  }

  #header-dropdown .menu-close {
    position: sticky;
    top: 0;
    align-self: flex-end;

    width: 44px;
    height: 44px;
    margin: 6px 0 8px 0;

    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;

    display: grid;
    place-items: center;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1;
  }

  #header-dropdown .menu-close:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.35);
  }

  #header-dropdown .menu-close-icon {
    width: 18px;
    height: 18px;
    position: relative;
    display: inline-block;
  }

  #header-dropdown .menu-close-icon::before,
  #header-dropdown .menu-close-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    transform-origin: center;
  }

  #header-dropdown .menu-close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  #header-dropdown .menu-close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

/* ============================================================
   RESPONSIVE_SWITCH
   ============================================================ */
@media (max-width: 1024px) {
  .header-social {
    display: none !important;
  }

  nav#header-menu.desktop-nav {
    display: none !important;
  }

  #hamburger {
    display: flex !important;
  }
}

@media (min-width: 1025px) {
  .header-social {
    display: flex !important;
  }

  nav#header-menu.desktop-nav {
    display: flex !important;
  }

  #hamburger {
    display: none !important;
  }
}

/* ============================================================
   LANDSCAPE_SHORT_HEIGHT
   Purpose:
   - Mobile browsers with short height need tighter header spacing
   - Also avoid fixed background quirks
   ============================================================ */
@media (max-height: 520px) {
  :root {
    --header-h: 3.5em;
  }

  nav#header-menu.desktop-nav {
    display: none !important;
  }

  .header-social {
    display: none !important;
  }

  #hamburger {
    display: flex !important;
  }

  body {
    margin-top: var(--header-h);
  }

  html,
  body {
    background-attachment: scroll;
  }
}

/* ============================================================
   LAYOUT_ANCHORS
   ============================================================ */
#main {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: auto;
}

#shows-scroll,
#bio-scroll,
#contact-scroll,
#singles-scroll {
  position: relative;
  top: calc(var(--header-h) * -1);
}

#top-scroll {
  position: absolute;
  top: 0;
}
/* ============================================================
   HERO_LAYOUT  (CANONICAL)
   - One source of truth for hero image cropping
   - Adjust --hero-focus-y (higher = show more bottom)
   ============================================================ */

:root {
  --hero-focus-y: 96%;
  --hero-min-dvh: 70dvh; /* raise this if you want more full-body visible */
}

#hero {
  position: relative;
  width: 100%;
  min-height: calc(var(--hero-min-dvh) - var(--header-h));

  display: flex;
  justify-content: center;
  align-items: flex-start;

  margin: 0;
  padding: 0;

  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;

  overflow: hidden;
  background: transparent;
}

/* Background layer */
#hero .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #171319;
}

#hero .hero-media picture,
#hero .hero-media img {
  width: 100%;
  height: 100%;
  display: block;
}

#hero .hero-media img {
  object-fit: cover;
  object-position: center var(--hero-focus-y);

  filter: saturate(1.02) contrast(1.02);

  border: 0 !important; /* override global img border */
}

/* Content layer */
#hero .hero-inner {
  position: relative;
  z-index: 1;
}

/* Mobile: hero is tighter, so bias lower and optionally give more height */
@media (max-width: 900px) {
  :root {
    --hero-focus-y: 100%;
    --hero-min-dvh: 50dvh;
  }
}

/* Very short landscape phones */
@media (max-height: 520px) {
  :root {
    --hero-focus-y: 99%;
    --hero-min-dvh: 50dvh;
  }
}

/* ============================================================
   HERO_TEXT_READABILITY
   - Dark glass background behind headline + tagline only
   ============================================================ */

.hero-text-glass {
  margin-top: 12px;
  padding: 14px 20px;

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

/* Tighten spacing inside the glass */
.hero-text-glass .hero-headline-one-line {
  margin-top: 0;
}

.hero-text-glass .hero-tagline {
  margin-top: 6px;
}
@media (max-width: 680px) {
  .hero-text-glass {
    padding: 12px 16px;
    border-radius: 12px;
  }
}

/* Center hero tagline under headline */
.hero-text-glass .hero-tagline {
  display: block;
  width: 100%;
  text-align: center;
  margin: 6px auto 0 auto;
}
/* ============================================================
   HERO_HEADLINE_ONE_LINE
   - One line on desktop, allowed to wrap on small screens
   ============================================================ */
.hero-headline-one-line {
  margin-top: 6px;
  font-size: clamp(40px, 2.2vw, 72px);

  line-height: 1.15;
  text-align: center;

  /* ✅ keep single line on desktop */
  white-space: nowrap;

  /* keep it from getting too wide on ultrawide */
  max-width: 1100px;

  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.hero-headline-one-line span {
  color: #df7eef;
  font-weight: 700;
}

/* On small screens, allow wrapping so it doesn't overflow */
@media (max-width: 680px) {
  .hero-headline-one-line {
    white-space: normal;
    max-width: 28ch;
  }
}

/* ============================================================
   PATH_FRAMING_LINE
   ============================================================ */
.path-framing {
  margin: 8px auto 18px auto;
  text-align: center;
  max-width: 70ch;
  opacity: 0.92;
  font-size: 1.05rem;
  line-height: 1.55;
}

/* ============================================================
   HERO_HEADLINE
   ============================================================ */
.hero-headline {
  margin-top: 14px;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.1;
  text-align: center;
  max-width: 28ch;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.hero-headline-strong {
  color: rgba(230, 205, 245, 1);
  font-weight: 700;
  white-space: nowrap;
}

.hero-ctas {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ============================================================
   HERO_REVEAL_SYSTEM (smoother)
   - gentle move + fade instead of extreme scale
   ============================================================ */

/* Default (before reveal-in is added) */
.hero-inner {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transform-origin: center;
  will-change: transform, opacity;
}

/* Revealed state */
.hero-inner.reveal-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 700ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .hero-inner,
  .hero-inner.reveal-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   CHOOSE_YOUR_PATH
   ============================================================ */
#path {
  width: 100%;
  margin: 0;
  padding: 18px 0;
  box-sizing: border-box;
}

.path-inner {
  width: min(1200px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.path-title {
  font-size: clamp(28px, 3vw, 44px);
  margin: 0 0 18px 0;
  text-align: center;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.path-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 22px 18px;
  border-radius: 14px;

  background: rgba(18, 27, 34, 0.72);
  border: solid rgba(255, 255, 255, 0.12) 1px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.path-card h3 {
  margin: 0 0 10px 0;
}

.path-card p {
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
  opacity: 0.92;
}

.path-card .btn {
  margin-top: auto;
}

@media (max-width: 900px) {
  .path-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1100px) {
  .path-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1099px) and (min-width: 701px) {
  .path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .path-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   PATH_CARD_ICON (between h3 and p)
   - Bigger icon, always contained
   ============================================================ */

.path-card {
  overflow: hidden; /* safety net */
}

.path-icon-wrap {
  width: 100%;
  height: 240px; /* BIGGER icon area */
  display: flex;
  align-items: center;
  justify-content: center;

  margin: 10px 0 12px 0;
}

.path-icon {
  border: 0 !important; /* override global img border */
  max-height: 100%;
  max-width: 92%;
  width: auto;
  height: auto;
  object-fit: contain;

  opacity: 0.92;
}

.path-photo {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  border-radius: 10px;
}
/* ============================================================
   PATH_CARD_SPACING
   - Add space between description <p> and button
   ============================================================ */

.path-card p {
  margin: 0 0 18px 0; /* adds breathing room below the text */
  flex: 1;
  display: flex;
  align-items: center;
  opacity: 0.92;
}

.path-card .btn {
  margin-top: 0; /* stop relying on auto */
}

.path-card .btn.btn-sm {
  margin-top: 10px; /* ✅ actual gap between <p> and button */
}

/* ============================================================
   TESTIMONIALS_SECTION
   ============================================================ */
#testimonials {
  width: 100%;
  margin: 0;
  padding: 18px 0;
  box-sizing: border-box;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.testimonial-card {
  justify-content: space-between;
  min-height: 220px;
}

.testimonial-card blockquote {
  margin: 0 0 18px 0;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.65;
  opacity: 0.94;
}

.testimonial-card cite {
  display: block;
  margin-top: auto;
  font-style: normal;
  font-weight: 700;
  opacity: 0.9;
}

.testimonial-card cite a {
  color: rgba(230, 205, 245, 1);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.testimonial-card cite a:hover,
.testimonial-card cite a:focus {
  color: white;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   LATEST_RELEASE_SECTION
   ============================================================ */
#latest-release {
  width: 100%;
  margin: 0;
  padding: 18px 0;
  box-sizing: border-box;
}

.latest-release-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 22px;
  align-items: center;
  text-align: left;
}

.latest-release-copy {
  width: 100%;
}

.release-heading-box {
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.release-eyebrow {
  display: inline-flex;
  width: fit-content;
  max-width: max-content;
  flex: 0 0 auto;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(230, 205, 245, 0.22);
  border-radius: 8px;
  background: rgba(95, 65, 100, 0.94);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 1;
}

.latest-release-copy h3 {
  margin: 0;
  font-size: clamp(64px, 7.4vw, 112px);
  line-height: 0.92;
}

.latest-release-copy p {
  margin: 0;
  line-height: 1.65;
  opacity: 0.94;
}

.latest-release-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 18px;
}

.latest-release-actions .btn {
  padding-left: 10px;
  padding-right: 10px;
  white-space: nowrap;
}

.latest-release-embed {
  width: 100%;
}

.latest-release-embed img {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

.latest-release-embed iframe {
  border: 0;
}

@media (max-width: 900px) {
  .latest-release-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .latest-release-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .release-heading-box {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}

/* ============================================================
   SCROLL_REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 1500ms ease,
    transform 700ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   VIDEO_EMBEDS
   ============================================================ */
.video-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 10px 0 25px 0;
}

.video-wrap {
  width: min(1000px, 92vw);
  border: 0;
  display: flex;
  justify-content: center;
}

.responsive-16x9 {
  position: relative;
  width: 100%;
  max-width: 1000px;
  padding-top: 56.25%;
  border: solid #95ac77 2px;
  box-sizing: border-box;
}

.video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ============================================================
   SHOWCASE_BLOCKS
   ============================================================ */
.showcase {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  font-size: 1.5em;
  margin: 15px 0;
  text-align: center;
}

.showcase-image img {
  width: 25vw;
  margin: 20px 5vw;
}

.showcase-info a {
  margin: 0 10px;
}

.showcase-info-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.showcase-subtitle {
  margin-top: 20px;
  font-style: italic;
  text-align: center;
}

#ticket-link {
  margin-left: 10px;
}

.stream-links {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  flex-wrap: wrap;
}

#break1,
#break2 {
  display: none;
}

.mobile-showcase-title {
  display: none;
}

@media (max-width: 975px) {
  .showcase-image img {
    width: 30vw;
    margin: 20px;
  }
}

@media (max-width: 800px) {
  #break2 {
    display: initial;
  }

  .showcase-image img {
    width: 35vw;
  }
}

@media (max-width: 600px) {
  .showcase {
    flex-direction: column;
  }

  .showcase-image img {
    width: 70vw;
  }

  .mobile-showcase-title {
    display: initial;
  }
}

@media (max-width: 525px) {
  #break1 {
    display: initial;
  }

  .showcase {
    font-size: 1.2em;
  }
}

/* ============================================================
   CONTACT_TITLE
   ============================================================ */
.contact-title {
  width: 100%;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  margin: 0 0 14px 0;
  text-align: center;
}

.contact-showcase {
  flex-direction: column;
}
/* ============================================================
   EVENTS_SECTION
   - Centered: Date – Location – Venue
   - Tickets button underneath
   ============================================================ */
#events {
  width: 100%;
  margin: 0;
  padding: 18px 0;
  box-sizing: border-box;
}

.events-inner {
  width: min(900px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.events-title {
  font-size: clamp(28px, 3vw, 44px);
  margin: 0 0 14px 0;
}

.event-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  flex-wrap: wrap; /* ✅ allows clean wrap on small screens */

  padding: 16px 14px;
  margin: 0 auto 14px auto;

  width: fit-content; /* ✅ stops the card feeling full-width */
  max-width: min(900px, 92vw);

  background: rgba(18, 27, 34, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.event-line {
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: 0.95;
  text-align: center;
}

.events-empty {
  margin-top: 10px;
  opacity: 0.9;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  font-style: italic;
}
.event-ticket {
  white-space: nowrap;
}

/* Events list: keep all dates inside one shared card. */
.events-inner {
  padding: clamp(22px, 4vw, 34px);
  box-sizing: border-box;
  background: rgba(18, 27, 34, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.events-inner .event-item {
  justify-content: space-between;
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(230, 205, 245, 0.12);
  border-radius: 0;
  box-shadow: none;
}

.events-inner .event-item:first-of-type {
  border-top: 0;
}

.events-inner .event-line {
  text-align: left;
}

.events-inner .events-empty {
  margin: 18px 0 0;
}

.events-inner .events-empty a {
  margin-left: 6px;
  color: #e6cdf5;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.events-inner .events-empty a:hover,
.events-inner .events-empty a:focus {
  color: #df7eef;
  outline: none;
}

@media (max-width: 680px) {
  .events-inner .event-item {
    justify-content: center;
  }

  .events-inner .event-line {
    text-align: center;
  }
}

/* ============================================================
   HOME_CTA_SECTION
   ============================================================ */
#home-cta {
  width: 100%;
  margin: 0;
  padding: 22px 0;
  box-sizing: border-box;
}

.home-cta-inner {
  width: min(900px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.home-cta-title {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  margin: 0 0 10px 0;
}

.home-cta-inner p {
  margin: 0 0 18px 0;
  font-size: 1.08rem;
  line-height: 1.55;
  opacity: 0.94;
}

.home-cta-inner .btn {
  margin-top: 24px;
}

/* ============================================================
   NEWSLETTER_MODAL
   ============================================================ */
.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 30000;
  display: grid;
  place-items: center;
  padding: 18px;
  box-sizing: border-box;
}

.newsletter-modal[hidden] {
  display: none !important;
}

.newsletter-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 5, 8, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.newsletter-dialog {
  position: relative;
  width: min(520px, 94vw);
  padding: clamp(22px, 4vw, 34px);
  box-sizing: border-box;
  text-align: center;

  background: rgba(18, 27, 34, 0.96);
  border: solid rgba(255, 255, 255, 0.14) 1px;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  color: white;
}

.newsletter-close {
  position: absolute;
  top: 10px;
  right: 10px;

  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 1.6rem;
  line-height: 1;
}

.newsletter-close:hover,
.newsletter-close:focus {
  background: var(--btn-hover-bg);
  outline: none;
}

.newsletter-eyebrow {
  margin: 0 0 8px 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
  opacity: 0.86;
}

.newsletter-dialog h2 {
  margin: 0 auto 12px auto;
  max-width: 14ch;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.08;
}

.newsletter-dialog p {
  margin: 0 auto;
  max-width: 42ch;
  opacity: 0.92;
}

.newsletter-form {
  margin-top: 20px;
}

.newsletter-form label {
  display: block;
  margin: 0 0 7px 0;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.84;
}

.newsletter-field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.newsletter-field-row input {
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  border: solid rgba(255, 255, 255, 0.18) 1px;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  outline: none;
  background: rgba(255, 255, 255, 0.96);
  color: #121b22;
}

.newsletter-field-row input:focus {
  border-color: rgba(185, 62, 70, 0.9);
}

.newsletter-status {
  min-height: 1.3em;
  margin-top: 10px !important;
  font-size: 0.95rem;
}

.newsletter-status.is-success,
.newsletter-status.is-error {
  font-weight: 700;
}

.newsletter-dismiss {
  margin-top: 10px;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  font: inherit;
  opacity: 0.82;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.newsletter-dismiss:hover,
.newsletter-dismiss:focus {
  opacity: 1;
  outline: none;
}

body.newsletter-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .newsletter-field-row {
    grid-template-columns: 1fr;
  }

  .newsletter-field-row .btn {
    width: 100%;
  }
}

/* ============================================================
   BIO_SECTION
   ============================================================ */
section#bio.section-card {
  width: 100%;
  margin: 0;
  padding: 18px 0;
  box-sizing: border-box;
}

section#bio h2 {
  font-size: 3.5em;
  width: min(1200px, 90%);
  margin: 0 auto 10px auto;
  text-align: left;
}

.bio-text {
  width: min(1200px, 90%);
  margin: auto;
}

.bio-image {
  float: right;
  margin: 10px 0 10px 20px;
  width: 30%;
  max-width: 420px;

  border: none;
  border-radius: 999px;

  display: block;
  shape-outside: circle();
}

@media (max-width: 900px) {
  section#bio h2 {
    text-align: center;
  }

  .bio-image {
    width: 45%;
    margin: 10px auto 15px auto;
    float: none;
    shape-outside: none;
  }
}

@media (max-width: 550px) {
  .bio-image {
    width: 80%;
  }
}

#hidden-gallery {
  display: none;
}

#scroll-arrows {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  align-items: center;
}

#bio-gallery {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  align-items: center;
}

#bio-gallery img {
  width: 29%;
  margin: 10px 25px;
  animation: fadeIn ease 1.3s;
}

span.gallery-scroller {
  background: #ffffff20;
  display: inline-block;
  text-align: center;

  width: 1.3em;
  height: 1.2em;
  line-height: 1.2em;

  font-size: 3.5em;
  font-weight: 950;

  padding-right: 10px;
  padding-left: 10px;

  cursor: pointer;
  border-radius: 10px;
  transition: background 0.7s;

  margin: 20px 5vw;
  user-select: none;
}

span.gallery-scroller:hover {
  background: #ffffff90;
}

@media (max-width: 750px) {
  #bio-gallery img:nth-of-type(1),
  #bio-gallery img:nth-of-type(3) {
    display: none;
  }

  #bio-gallery img:nth-of-type(2) {
    width: 90%;
  }
}

/* ============================================================
   CONTACT_FORM
   Cleaned:
   - Removed duplicate blocks
   - One source of truth for form base typography
   - Smaller labels and button text (as requested)
   ============================================================ */
.contact-form {
  width: min(500px, 92vw);
  margin: 18px auto 10px auto;

  background: rgba(18, 27, 34, 0.92);
  border: solid rgba(255, 255, 255, 0.12) 1px;
  border-radius: 12px;

  padding: 18px;
  box-sizing: border-box;

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.95);

  /* Base typography for entire form */
  font-family: SourceSerifPro;
  font-size: 16px;
  line-height: 1.45;
}

/* Labels (smaller than form inputs, matches your request) */
.contact-form label {
  display: block;
  text-align: center;

  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  margin: 10px 0 6px 0;
  color: rgba(255, 255, 255, 0.85);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;

  border: solid rgba(255, 255, 255, 0.18) 1px;
  border-radius: 8px;

  padding: 10px 12px;

  font: inherit;
  outline: none;

  background: rgba(255, 255, 255, 0.96);
  color: #121b22;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(185, 62, 70, 0.9);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-size: 0.95em;
  opacity: 0.8;
}

.optional-label {
  font-size: 0.82em;
  opacity: 0.72;
  text-transform: none;
  letter-spacing: 0;
}

.conditional-fields {
  margin: 14px 0 6px 0;
  padding: 12px;
  border: solid rgba(255, 255, 255, 0.12) 1px;
  border-radius: 10px;
  background: rgba(7, 5, 8, 0.24);
}

.conditional-fields[hidden] {
  display: none !important;
}

/* Button text smaller to coincide with label sizing */
.contact-form .btn {
  margin: 14px auto 0 auto;
  display: flex;

  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 16px;
}

.contact-line {
  margin-top: 16px;
  margin-bottom: 30px;
  text-align: center;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-status {
  margin: 12px 0;
  font-size: 0.95rem;
  line-height: 1.3;
  min-height: 1.3em;
}

.contact-status.is-loading {
  opacity: 0.9;
}

.contact-status.is-success,
.contact-status.is-error {
  font-weight: 600;
}

/* CONTACT_FORM_RESPONSIVE */
@media (max-width: 600px) {
  .contact-form {
    width: min(720px, 94vw);
    padding: 14px;
    border-radius: 10px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 10px 10px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer-buffer {
  flex-grow: 1;
  height: 0;
  max-height: 100%;
}

footer#footer.section-card {
  width: 100%;
  margin: 20px 0 0 0;
  padding: 10px 0;
  border-bottom: 0;
}

#social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#social-icons a img {
  border: 0;
  width: 28px;
  margin: 10px 10px;

  filter: brightness(0) invert(1);
  opacity: 0.92;
}

/* ============================================================
   SPOTIFY_HELPER
   ============================================================ */
.spotify-container iframe {
  display: block;
  margin: 0 auto;
  max-width: 500px;
  width: 100%;
}

/* ============================================================
   WORK_BLOG_LAYOUT_SYSTEM
   ============================================================ */
.wrap {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

#main section {
  margin: 0;
  padding: 22px 0;
  border-top: 1px solid rgba(223, 126, 239, 0.26);
  border-bottom: 1px solid rgba(223, 126, 239, 0.26);
}

.hero {
  padding-top: 12px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 16px;
  align-items: start;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin: 0 0 12px 0;
}

.grad {
  color: rgba(95, 65, 100, 1);
}

.hero-copy p {
  opacity: 0.94;
  margin: 0 0 12px 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 14px 0 10px 0;
}

.note {
  opacity: 0.92;
  margin-top: 14px;
}

.card {
  background: rgba(18, 27, 34, 0.72);
  border: solid rgba(255, 255, 255, 0.12) 1px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  padding: 18px;
}

/* ============================================================
   WORK_PAGE_READABILITY
   ============================================================ */
body.work-page {
  padding-top: 0;
}

body.work-page #main section {
  padding: 18px 0;
}

body.work-page .hero {
  padding-top: 0;
}

body.work-page .hero-copy {
  max-width: 720px;

  background: var(--glass-dark);
  border: solid var(--stroke-soft) 1px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);

  padding: 18px;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.work-page .hero-copy p {
  opacity: 0.98;
  line-height: 1.7;
  font-size: 1.05rem;
}

body.work-page .grad {
  color: rgba(230, 205, 245, 1);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

/* ============================================================
   WORK_SERVICE_PAGE_TEMPLATE
   ============================================================ */
body.pm-page #main section,
body.service-page #main section,
body.blog-rebrand-page #main section {
  margin: 0;
  padding: 22px 0;
}

body.pm-page .pm-hero,
body.service-page .pm-hero,
body.blog-rebrand-page .pm-hero {
  margin-top: 0;
}

body.pm-page #main section.pm-hero {
  padding: 0;
}

.pm-hero-inner {
  width: min(1320px, 92vw);
  padding: clamp(12px, 3vw, 26px) 0;
}

body.pm-page .pm-hero-inner {
  width: 100%;
  margin: 0;
  min-height: min(680px, calc(86vh - var(--header-h)));
  padding: 0;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

body.pm-page .pm-hero-copy {
  position: relative;
  z-index: 2;
  width: min(520px, 78%);
  justify-self: center;
  align-self: center;
  padding: clamp(42px, 6vw, 76px) 0;
  min-width: 0;
}

body.pm-page .pm-hero-copy .eyebrow,
body.pm-page .pm-hero-copy .path-framing,
body.pm-page .pm-hero-copy .pm-availability {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

body.pm-page .pm-hero-copy .hero-ctas {
  justify-content: flex-start;
}

body.pm-page .pm-hero-copy .hero-ctas .btn {
  max-width: 360px;
  padding: 14px 18px;
  line-height: 1.2;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(230, 205, 245, 0.1),
    0 0 24px rgba(223, 126, 239, 0.16);
}

.pm-hero-title {
  max-width: 1240px;
  margin: 0 auto;
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 1.05;
  text-align: center;
  text-wrap: balance;
}

.pm-hero-title span {
  display: block;
  color: rgba(230, 205, 245, 1);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.pm-hero-subtitle {
  max-width: 28ch;
  margin: 8px 0 0 0;
  color: rgba(230, 205, 245, 1);
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.15;
  text-align: left;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  text-wrap: balance;
}

body.pm-page .pm-hero-title {
  max-width: 22ch;
  font-size: clamp(30px, 3vw, 48px);
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.pm-hero-art {
  position: relative;
  z-index: 1;
  margin: 0;
  justify-self: center;
  align-self: center;
  width: min(430px, 31vw);
  aspect-ratio: 0.72 / 1;
  margin-left: 0;
  overflow: hidden;
  border-radius: 52% 52% 58% 58% / 34% 34% 66% 66%;
  clip-path: polygon(
    50% 0,
    66% 21%,
    84% 48%,
    90% 68%,
    82% 86%,
    64% 98%,
    50% 100%,
    36% 98%,
    18% 86%,
    10% 68%,
    16% 48%,
    34% 21%
  );
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.4))
    drop-shadow(-30px 0 54px rgba(223, 126, 239, 0.12));
}

body.pm-page .pm-hero-art {
  width: min(640px, 42vw);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(230, 205, 245, 0.22);
  border-radius: 18px;
  clip-path: none;
  background: #121b22;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    0 0 36px rgba(223, 126, 239, 0.12);
  filter: none;
}

body.pm-page .pm-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0) 42%,
    rgba(18, 27, 34, 0.18)
  );
  pointer-events: none;
}

.pm-hero-face-clip {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.pm-hero-art img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  border: 0 !important;
  border-radius: 0;
  clip-path: none;
  box-shadow: none;
}

body.pm-page .pm-hero-art img {
  object-position: center center;
}

.pm-availability {
  margin: 16px auto 0 auto;
  max-width: 74ch;
  text-align: center;
  opacity: 0.94;
}

.pm-credential-strip {
  width: min(1180px, 92vw);
  margin: 0 auto 18px auto;
  padding: 14px 18px;
  box-sizing: border-box;
  color: rgba(230, 205, 245, 0.92);
  font-size: clamp(0.95rem, 1.2vw, 1.18rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

body.pm-page .pm-hero .path-framing,
body.service-page .pm-hero .path-framing,
body.blog-rebrand-page .pm-hero .path-framing {
  max-width: 920px;
  text-wrap: balance;
}

.pm-info-grid,
.pm-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

:is(body.pm-page, body.crowdfunding-page) #process .pm-process-grid {
  --pm-arrow-tip: 38px;

  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  isolation: isolate;
  perspective: 1200px;
}

:is(body.pm-page, body.crowdfunding-page) #process .path-framing {
  max-width: none;
  white-space: nowrap;
}

:is(body.pm-page, body.crowdfunding-page) #process .pm-process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pm-card-grid,
.pm-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pm-proof-grid {
  margin-top: 22px;
}

.pm-two-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pm-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pm-info-card,
.pm-proof-card,
.pm-service-card,
.pm-pane-card,
.pm-process-card,
.pm-case-card {
  justify-content: flex-start;
}

.pm-service-card,
.pm-pane-card,
.pm-case-card {
  text-align: left;
  align-items: flex-start;
}

.pm-pane-card {
  align-items: center;
}

.pm-pane-card h3 {
  width: 100%;
  text-align: center;
}

.pm-pane-card p {
  text-align: left;
}

.pm-card-visual {
  width: 100%;
  margin: 8px 0 14px 0;
  display: flex;
  justify-content: center;
}

.pm-card-visual a {
  display: block;
  width: min(100%, 260px);
  line-height: 0;
}

.pm-card-visual img {
  display: block;
  width: min(100%, 260px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 0 !important;
  border-radius: 12px;
  opacity: 0.96;
}

.pm-info-card p,
.pm-proof-card p,
.pm-service-card p,
.pm-pane-card p,
.pm-process-card p,
.pm-case-card p {
  display: block;
  flex: 0 0 auto;
  margin: 0;
  line-height: 1.65;
}

:is(body.pm-page, body.crowdfunding-page) #process .pm-process-card {
  position: relative;
  height: 360px;
  padding: 24px calc(var(--pm-arrow-tip) + 6px) 24px
    calc(var(--pm-arrow-tip) + 10px);
  box-sizing: border-box;
  text-align: center;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(
    90deg,
    rgba(105, 58, 120, 0.98),
    rgba(18, 27, 34, 0.98)
  );
  border: 0;
  border-radius: 0;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  clip-path: polygon(
    0 0,
    calc(100% - var(--pm-arrow-tip)) 0,
    100% 50%,
    calc(100% - var(--pm-arrow-tip)) 100%,
    0 100%,
    var(--pm-arrow-tip) 50%
  );
  overflow: visible;
  z-index: 1;
  transform-origin: center;
  transform-style: preserve-3d;
  transition:
    box-shadow 220ms ease,
    transform 3500ms ease;
}

:is(body.pm-page, body.crowdfunding-page) #process .pm-process-step:first-child .pm-process-card {
  clip-path: polygon(
    0 0,
    calc(100% - var(--pm-arrow-tip)) 0,
    100% 50%,
    calc(100% - var(--pm-arrow-tip)) 100%,
    0 100%
  );
  padding-left: 24px;
}

:is(body.pm-page, body.crowdfunding-page)
  #process
  .pm-process-step:not(:last-child)
  .pm-process-card::after {
  content: "";
  position: absolute;
  inset: 0 calc((var(--pm-arrow-tip) + 3px) * -1) 0 auto;
  width: calc(var(--pm-arrow-tip) + 4px);
  background: inherit;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  filter: drop-shadow(10px 0 10px rgba(0, 0, 0, 0.18));
  z-index: 3;
}

:is(body.pm-page, body.crowdfunding-page) #process .pm-process-card h3 {
  min-height: 2.26em;
  margin: 30px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.08rem, 1.3vw, 1.42rem);
  line-height: 1.12;
  text-wrap: balance;
}

:is(body.pm-page, body.crowdfunding-page) #process .pm-process-note {
  width: min(100%, 21ch);
  margin: 12px auto 0 auto;
  padding: 0;
  box-sizing: border-box;

  color: rgba(255, 255, 255, 0.94);
  font-size: 1.05rem;
  line-height: 1.28;
  text-align: center;
  opacity: 0.96;
}

:is(body.pm-page, body.crowdfunding-page) #process .pm-launch-card {
  cursor: pointer;
}

:is(body.pm-page, body.crowdfunding-page) #process .pm-launch-card:focus-visible {
  outline: solid rgba(230, 205, 245, 0.86) 3px;
  outline-offset: 4px;
}

.pm-rocket {
  position: fixed;
  left: var(--rocket-start-x);
  top: var(--rocket-start-y);
  z-index: 30000;

  font-size: var(--rocket-size);
  line-height: 1;
  pointer-events: none;
  user-select: none;

  transform: translate(-50%, -50%);
  animation: pm-rocket-launch 950ms cubic-bezier(0.2, 0.72, 0.18, 1) forwards;
}

@keyframes pm-rocket-launch {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.75) rotate(-18deg);
  }

  12% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(
        calc(-50% + var(--rocket-travel-x)),
        calc(-50% + var(--rocket-travel-y))
      )
      scale(1.2) rotate(var(--rocket-rotate));
  }
}

@media (hover: hover) and (pointer: fine) {
  :is(body.pm-page, body.crowdfunding-page) #process .pm-process-card:hover,
  :is(body.pm-page, body.crowdfunding-page) #process .pm-process-card:focus-within {
    z-index: 8;
    box-shadow:
      0 24px 52px rgba(0, 0, 0, 0.32),
      0 0 28px rgba(230, 205, 245, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
    transform: translateY(-6px) rotateY(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  :is(body.pm-page, body.crowdfunding-page) #process .pm-process-card {
    transition: box-shadow 180ms ease;
  }

  :is(body.pm-page, body.crowdfunding-page) #process .pm-process-card:hover,
  :is(body.pm-page, body.crowdfunding-page) #process .pm-process-card:focus-within {
    transform: translateY(-4px);
  }

  .pm-rocket {
    animation-duration: 1ms;
  }
}

.pm-bullets {
  margin: 16px 0 0 0;
  padding-left: 18px;
  line-height: 1.65;
  opacity: 0.95;
}

.pm-bullets li + li {
  margin-top: 6px;
}

.pm-service-card .tags {
  margin-top: auto;
  padding-top: 16px;
}

body.pm-page #faq .path-title {
  text-align: center;
}

.pm-faq-list {
  width: min(980px, 92vw);
  margin: 28px auto 0 auto;
  display: block;
  border-top: 1px solid rgba(230, 205, 245, 0.36);
}

.pm-faq-item {
  border-bottom: 1px solid rgba(230, 205, 245, 0.36);
}

.pm-faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px 56px 18px 0;
  box-sizing: border-box;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.pm-faq-item summary::-webkit-details-marker {
  display: none;
}

.pm-faq-item summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid rgba(255, 255, 255, 0.82);
  border-bottom: 2px solid rgba(255, 255, 255, 0.82);
  transform: translateY(-65%) rotate(45deg);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.pm-faq-item[open] summary::after {
  border-color: rgba(223, 126, 239, 0.96);
  transform: translateY(-35%) rotate(225deg);
}

.pm-faq-item summary:hover,
.pm-faq-item summary:focus {
  color: rgba(230, 205, 245, 1);
  outline: none;
}

.pm-faq-item summary:focus-visible {
  outline: 2px solid rgba(223, 126, 239, 0.72);
  outline-offset: 6px;
}

.pm-faq-item p {
  width: min(780px, 100%);
  margin: -4px 0 0 0;
  padding: 0 56px 20px 0;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.75;
  text-align: left;
}

.pm-faq-item .pm-faq-note {
  font-style: italic;
}

.pm-faq-item .btn {
  margin: 0 0 22px 0;
}

.pm-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;
  margin-bottom: 12px;

  border-radius: 999px;
  background: rgba(95, 65, 100, 0.9);
  border: solid rgba(255, 255, 255, 0.16) 1px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);

  font-weight: 700;
  line-height: 1;
}

.pm-cta-tip {
  margin-top: -8px !important;
  font-size: 0.98rem !important;
  opacity: 0.84 !important;
}

.standard-cta .home-cta-title {
  margin-bottom: 28px;
}

.standard-cta p {
  margin: 0 auto;
}

.standard-cta .pm-cta-tip {
  margin-top: 10px !important;
  margin-bottom: 28px !important;
}

.standard-cta .btn {
  margin-top: 0;
}

.crowdfunding-platform-strip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 20px);
  margin: 12px auto 10px auto;
  padding: 8px 0 0;
}

.crowdfunding-platform-logo {
  display: block;
  width: auto;
  object-fit: contain;
  border: 0 !important;
  opacity: 0.94;
}

.crowdfunding-platform-logo-kickstarter {
  max-width: clamp(150px, 15vw, 220px);
  max-height: clamp(24px, 2.6vw, 38px);
}

.crowdfunding-platform-logo-indiegogo {
  max-width: clamp(128px, 12vw, 178px);
  max-height: clamp(20px, 2.2vw, 30px);
}

.crowdfunding-platform-separator {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 999px;
  background: rgba(230, 205, 245, 0.78);
  box-shadow: 0 0 16px rgba(223, 126, 239, 0.28);
}

body.crowdfunding-page .pm-hero-inner {
  display: block;
  text-align: center;
}

body.crowdfunding-page .pm-hero-title,
body.crowdfunding-page .pm-hero .path-framing,
body.crowdfunding-page .pm-availability {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body.crowdfunding-page .pm-hero-title span {
  max-width: 30ch;
  margin: 8px auto 0 auto;
  font-size: clamp(26px, 3vw, 48px);
  line-height: 1.08;
}

body.crowdfunding-page .hero-ctas {
  justify-content: center;
}

.crowdfunding-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 26px);
  align-items: start;
}

.crowdfunding-feature .path-title,
.crowdfunding-feature .path-framing {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.crowdfunding-download-card {
  width: min(620px, 100%);
  margin: 0 auto;
  text-align: left;
  align-items: flex-start;
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.crowdfunding-gate-form {
  width: 100%;
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.crowdfunding-download-card h3 {
  width: 100%;
  text-align: center;
}

.crowdfunding-gate-form label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.86;
}

.crowdfunding-gate-form input[type="email"] {
  width: 100%;
  min-height: 46px;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid rgba(230, 205, 245, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: #121b22;
  font: inherit;
}

.crowdfunding-gate-form .btn[type="submit"] {
  width: min(320px, 100%);
  justify-self: center;
}

.crowdfunding-form-status,
.crowdfunding-form-note {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.crowdfunding-form-status.is-success {
  color: rgba(230, 205, 245, 1);
}

.crowdfunding-form-status.is-error {
  color: rgba(255, 190, 196, 1);
}

.crowdfunding-form-note {
  font-size: 0.82rem;
  font-style: italic;
  opacity: 0.78;
}

.crowdfunding-story-card {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: left;
  align-items: flex-start;
}

.crowdfunding-story-card h3 {
  margin-bottom: 10px;
}

.crowdfunding-story-card p + p {
  margin-top: 16px;
}

.crowdfunding-story-card p {
  display: block;
  flex: none;
  align-items: initial;
}

.crowdfunding-story-card p strong,
.crowdfunding-story-card p .crowdfunding-inline-link-btn {
  display: inline;
  vertical-align: baseline;
}

.crowdfunding-inline-link-btn {
  display: inline;
  margin-left: 0.28em;
  padding: 0 0.12em 0.08em;
  border: 0;
  border-bottom: 2px solid rgba(223, 126, 239, 0.72);
  border-radius: 0;
  background: transparent;
  color: rgba(230, 205, 245, 1);
  font-size: 1em;
  font-weight: 700;
  line-height: inherit;
  white-space: normal;
  box-shadow: none;
}

.crowdfunding-inline-link-btn:hover,
.crowdfunding-inline-link-btn:focus {
  color: white;
  border-color: rgba(230, 205, 245, 0.9);
  outline: none;
}

.crowdfunding-origin-visual {
  margin: 26px 0 0 0;
}

.crowdfunding-origin-visual img {
  display: block;
  width: min(720px, 100%);
  margin: 0 auto;
  border: 0 !important;
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.crowdfunding-origin-visual figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.78;
  line-height: 1.45;
}

.crowdfunding-proof-grid {
  margin-top: 22px;
}

body.crowdfunding-page .crowdfunding-proof-grid .pm-proof-card:first-child {
  background: rgba(95, 65, 100, 0.86);
}

body.crowdfunding-page .crowdfunding-proof-grid .pm-proof-card:nth-child(2) {
  background: rgba(18, 27, 34, 0.86);
  border-color: rgba(223, 126, 239, 0.28);
}

body.crowdfunding-page .crowdfunding-package-grid,
body.crowdfunding-page .crowdfunding-process-grid {
  align-items: stretch;
}

body.crowdfunding-page .crowdfunding-package-grid {
  margin-bottom: 32px;
}

body.crowdfunding-page .crowdfunding-package-card {
  gap: 14px;
}

body.crowdfunding-page .crowdfunding-package-card .btn,
body.crowdfunding-page .crowdfunding-custom-card .btn {
  align-self: center;
}

body.crowdfunding-page .crowdfunding-custom-card {
  align-items: center;
  text-align: center;
}

body.crowdfunding-page .crowdfunding-custom-card h3 {
  color: rgba(230, 205, 245, 1);
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
}

body.crowdfunding-page .crowdfunding-package-card p,
body.crowdfunding-page .crowdfunding-custom-card p {
  margin-bottom: 0;
}

body.crowdfunding-page .crowdfunding-custom-card,
body.crowdfunding-page .crowdfunding-section-cta {
  width: min(760px, 100%);
  margin: 32px auto 0 auto;
}

body.crowdfunding-page .crowdfunding-section-cta {
  box-sizing: border-box;
  padding: 22px;
  background: rgba(18, 27, 34, 0.78);
  border: 1px solid rgba(230, 205, 245, 0.18);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

body.crowdfunding-page .crowdfunding-section-cta h3 {
  color: rgba(230, 205, 245, 1);
  margin-bottom: 8px;
}

body.pm-page #proof .pm-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(820px, 100%);
  margin-left: auto;
  margin-right: auto;
}

:is(body.pm-page, body.crowdfunding-page, body.music-page) .standard-cta {
  width: min(860px, 100%);
  margin: 32px auto 0 auto;
  box-sizing: border-box;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(18, 27, 34, 0.78);
  border: 1px solid rgba(230, 205, 245, 0.18);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  text-align: center;
  align-items: center;
}

:is(body.pm-page, body.crowdfunding-page, body.music-page) .standard-cta :is(h2, h3) {
  color: rgba(230, 205, 245, 1);
  margin: 0 0 10px 0;
  text-align: center;
}

:is(body.pm-page, body.crowdfunding-page, body.music-page) .standard-cta p {
  max-width: 78ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

:is(body.pm-page, body.crowdfunding-page, body.music-page) .standard-cta .btn {
  margin-left: auto;
  margin-right: auto;
}

:is(body.pm-page, body.crowdfunding-page) .cta-floating {
  width: min(860px, 100%);
  margin: 34px auto 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

body.crowdfunding-page .crowdfunding-section-cta.cta-floating {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

:is(body.pm-page, body.crowdfunding-page) .cta-floating .btn {
  margin-left: auto;
  margin-right: auto;
}

body.crowdfunding-page #testimonials .pm-two-grid {
  margin-bottom: 32px;
}

.pm-faq-bullets {
  width: min(780px, 100%);
  margin: -2px 0 18px 22px;
  padding: 0 56px 0 18px;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  text-align: left !important;
  list-style-position: outside;
}

.pm-faq-bullets li + li {
  margin-top: 5px;
}

.pm-faq-bullets li {
  display: list-item;
  text-align: left !important;
}

@media (max-width: 1099px) {
  body.pm-page .pm-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  body.pm-page .pm-hero-copy .eyebrow,
  body.pm-page .pm-hero-copy .path-framing,
  body.pm-page .pm-hero-copy .pm-availability,
  body.pm-page .pm-hero-title,
  body.pm-page .pm-hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  body.pm-page .pm-hero-copy .hero-ctas {
    justify-content: center;
  }

  .pm-hero-art {
    justify-self: center;
    width: min(340px, 58vw);
    margin-left: 0;
  }

  body.pm-page .pm-hero-art {
    width: min(640px, 82vw);
  }

  .pm-info-grid,
  .pm-process-grid,
  .pm-card-grid,
  .pm-proof-grid,
  .pm-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  :is(body.pm-page, body.crowdfunding-page) #process .pm-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  :is(body.pm-page, body.crowdfunding-page) #process .pm-process-card {
    height: auto;
    min-height: 0;
    padding: 24px 18px;
    border-radius: 14px;
    clip-path: polygon(
      0 0,
      calc(100% - var(--pm-arrow-tip)) 0,
      100% 50%,
      calc(100% - var(--pm-arrow-tip)) 100%,
      0 100%
    );
  }

  :is(body.pm-page, body.crowdfunding-page) #process .path-framing {
    white-space: normal;
  }

  :is(body.pm-page, body.crowdfunding-page)
    #process
    .pm-process-step:not(:last-child)
    .pm-process-card::after {
    display: none;
  }

  :is(body.pm-page, body.crowdfunding-page) #process .pm-process-note {
    width: min(340px, 100%);
    font-size: 0.92rem;
    line-height: 1.45;
  }
}

@media (max-width: 700px) {
  .pm-hero-inner {
    width: min(1200px, 92vw);
  }

  body.pm-page .pm-hero-inner {
    gap: 20px;
  }

  body.pm-page .pm-hero-title {
    max-width: 13ch;
  }

  body.pm-page .pm-hero-subtitle {
    max-width: 13ch;
  }

  .pm-hero-art {
    width: min(245px, 64vw);
  }

  body.pm-page .pm-hero-art {
    width: min(100%, 86vw);
    border-radius: 14px;
  }

  .pm-hero-art img {
    aspect-ratio: auto;
  }

  .pm-info-grid,
  .pm-process-grid,
  .pm-card-grid,
  .pm-proof-grid,
  .pm-audience-grid,
  .pm-two-grid {
    grid-template-columns: 1fr;
  }

  :is(body.pm-page, body.crowdfunding-page) #process .pm-process-grid {
    grid-template-columns: 1fr;
  }

  .pm-service-card,
  .pm-pane-card,
  .pm-case-card {
    text-align: center;
    align-items: center;
  }

  .pm-bullets {
    text-align: left;
  }

  .pm-faq-list {
    width: min(100%, 88vw);
  }

  .pm-faq-item summary {
    min-height: 64px;
    padding-right: 42px;
  }

  .pm-faq-item p {
    padding-right: 0;
  }

  .crowdfunding-platform-strip {
    width: min(100%, 88vw);
    gap: 10px;
  }

  .crowdfunding-platform-logo-kickstarter {
    max-width: min(152px, 42vw);
    max-height: 28px;
  }

  .crowdfunding-platform-logo-indiegogo {
    max-width: min(126px, 34vw);
    max-height: 24px;
  }

  .crowdfunding-feature {
    grid-template-columns: 1fr;
  }

  .crowdfunding-feature .path-title,
  .crowdfunding-feature .path-framing,
  .crowdfunding-download-card {
    text-align: center;
    align-items: center;
  }

}

/* ============================================================
   BLOG_HERO_READABILITY
   ============================================================ */
body.blog-page {
  padding-top: 0;
}

body.blog-page .hero-copy {
  max-width: 720px;

  background: var(--glass-dark);
  border: solid var(--stroke-soft) 1px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);

  padding: 18px;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.blog-page .grad {
  color: rgba(230, 205, 245, 1);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

body.blog-page .hero-copy p {
  opacity: 0.98;
  line-height: 1.7;
  font-size: 1.05rem;
}

body.blog-page .blog-hero {
  position: relative;
  min-height: min(620px, calc(72dvh - var(--header-h)));
  display: flex;
  align-items: center;
  padding: clamp(32px, 5vw, 64px) 0;
}

body.blog-page .blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 12, 18, 0.82), rgba(13, 12, 18, 0.34)),
    linear-gradient(180deg, rgba(13, 12, 18, 0.1), rgba(13, 12, 18, 0.72));
  z-index: 0;
}

body.blog-page .blog-hero .hero-media {
  z-index: 0;
}

body.blog-page .blog-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: end;
}

body.blog-page .blog-hero .hero-copy {
  max-width: none;
  padding: clamp(18px, 3vw, 28px);
}

body.blog-page .blog-hero .hero-copy h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin-bottom: 14px;
}

body.blog-page .hero-card h2,
body.blog-page .blog-side-note h3,
body.blog-page .blog-empty-state h3 {
  margin-top: 0;
}

body.blog-page .hero-card {
  padding: clamp(18px, 2.4vw, 24px);
}

body.blog-page .bullets {
  margin: 12px 0 0;
  padding-left: 20px;
  line-height: 1.65;
}

body.blog-page .blog-latest {
  padding-top: clamp(34px, 5vw, 56px);
}

body.blog-page .blog-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
}

body.blog-page .blog-empty-state {
  padding: clamp(20px, 3vw, 28px);
}

body.blog-page .blog-empty-state p,
body.blog-page .blog-side-note p {
  line-height: 1.7;
  opacity: 0.96;
}

body.blog-page .blog-side-note {
  margin-top: 54px;
}

body.blog-page .blog-cta {
  padding-top: clamp(26px, 4vw, 42px);
}

@media (max-width: 900px) {
  body.blog-page .blog-hero {
    min-height: auto;
    align-items: flex-end;
  }

  body.blog-page .blog-hero-grid,
  body.blog-page .blog-content-grid {
    grid-template-columns: 1fr;
  }

  body.blog-page .blog-side-note {
    margin-top: 0;
  }
}

/* ============================================================
   WORK_PAGE_SECTION_GRIDS
   ============================================================ */
.section-head {
  margin-bottom: 12px;
}

.section-head h2 {
  margin: 0 0 8px 0;
  font-size: clamp(26px, 2.6vw, 38px);
}

.section-head p {
  opacity: 0.92;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 900px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.service {
  background: rgba(18, 27, 34, 0.72);
  border: solid rgba(255, 255, 255, 0.12) 1px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  padding: 18px;
}

.tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(18, 27, 34, 0.78);
  border: solid rgba(255, 255, 255, 0.16) 1px;
  font-size: 0.98rem;
  opacity: 0.98;
}

.muted {
  opacity: 0.92;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.step {
  background: rgba(18, 27, 34, 0.86);
  border: solid rgba(255, 255, 255, 0.14) 1px;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.step h4 {
  margin: 0 0 6px 0;
  font-size: 1.12rem;
}

.step p {
  margin: 0;
  opacity: 0.98;
  line-height: 1.65;
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .cta {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    justify-content: center;
  }
}

.footer {
  margin-top: 16px;
  opacity: 0.9;
}

.site-footer {
  margin-top: 0;
  padding: clamp(16px, 2.5vw, 24px) 0 18px;
  background:
    linear-gradient(180deg, rgba(18, 27, 34, 0.9), rgba(18, 27, 34, 0.98)),
    #121b22;
  border-top: 1px solid rgba(230, 205, 245, 0.18);
  color: #ffffff;
  text-align: center;
  opacity: 1;
}

#main > section:last-child {
  margin-bottom: 0;
}

.site-footer-inner {
  width: min(760px, 92vw);
  margin: 0 auto;
  display: grid;
  gap: 22px;
  justify-items: center;
}

.site-footer-brand {
  display: flex;
  justify-content: center;
}

.site-footer-logo {
  display: inline-flex;
  width: min(250px, 70vw);
  line-height: 0;
}

.site-footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.32));
}

.site-footer-nav {
  width: min(680px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(26px, 5vw, 58px);
  justify-content: center;
  text-align: left;
}

.site-footer-column {
  display: grid;
  align-content: start;
  gap: 6px;
  justify-self: center;
  justify-items: start;
}

.site-footer-column a,
.site-footer-bottom a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.25;
  font-size: 0.88rem;
}

.site-footer-column a:hover,
.site-footer-column a:focus,
.site-footer-bottom a:hover,
.site-footer-bottom a:focus {
  color: #e6cdf5;
}

.site-footer-social {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding-top: 6px;
}

.site-footer-social a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(230, 205, 245, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 120ms ease;
}

.site-footer-social a:hover,
.site-footer-social a:focus {
  background: rgba(95, 65, 100, 0.92);
  border-color: rgba(223, 126, 239, 0.5);
  outline: none;
}

.site-footer-social a:active {
  transform: translateY(1px);
}

.site-footer-social img {
  width: 17px;
  height: 17px;
  border: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-footer-linkedin .social-linkedin-mark {
  font-size: 0.92rem;
}

.site-footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  border-top: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer-bottom p {
  margin: 0;
  font-size: 0.86rem;
}

@media (max-width: 800px) {
  .site-footer-inner {
    width: min(430px, 90vw);
  }

  .site-footer-nav {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .site-footer-brand,
  .site-footer-social,
  .site-footer-bottom {
    justify-content: center;
  }

  .site-footer-column {
    justify-items: center;
  }
}

.tiny {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ============================================================
   BLOG_POST_CARDS
   ============================================================ */
.blog-hub-page #main {
  background:
    linear-gradient(180deg, rgba(18, 27, 34, 0.22), rgba(95, 65, 100, 0.18)),
    var(--page-bg);
}

.blog-hub-inner {
  width: min(1320px, 94vw);
  margin: 0 auto;
}

.blog-article-shell {
  width: min(920px, 92vw);
  margin: 0 auto;
}

.blog-hub-page .eyebrow {
  color: #e6cdf5;
}

.blog-hub-hero,
.blog-find-section,
.blog-posts-section,
.blog-calendar-section,
.blog-category-section,
.blog-editor-note,
.blog-cta-section,
.blog-article {
  padding: clamp(34px, 5vw, 70px) 0;
}

.blog-hub-heading {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(22px, 4vw, 42px);
  text-align: center;
}

.blog-hub-heading h1 {
  max-width: min(1180px, 88vw);
  margin: 0 auto 16px auto;
  color: rgba(230, 205, 245, 0.82);
  font-size: clamp(30px, 3.4vw, 58px);
  line-height: 1.08;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.68);
}

.blog-hub-heading p:last-child {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.blog-lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: stretch;
}

.blog-lead-story,
.blog-featured-list,
.blog-post-card,
.blog-empty-panel,
.blog-find-panel,
.blog-calendar-panel,
.blog-editor-grid,
.blog-cta-grid,
.blog-article-shell {
  background: rgba(18, 27, 34, 0.74);
  border: 1px solid rgba(230, 205, 245, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.blog-lead-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  min-height: 430px;
  overflow: hidden;
}

.blog-lead-image,
.blog-post-image {
  display: block;
  overflow: hidden;
  background: #121b22;
}

.blog-lead-image img,
.blog-post-image img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.blog-lead-image img {
  object-fit: contain;
  object-position: center center;
  background: #121b22;
}

body.blog-hub-page .blog-lead-story:hover .blog-lead-image img {
  transform: none;
}

.blog-lead-story:hover .blog-lead-image img,
.blog-post-card:hover .blog-post-image img {
  transform: scale(1.025);
  filter: saturate(1.08);
}

.blog-lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 42px);
}

.blog-lead-copy h2,
.blog-section-heading h2,
.blog-editor-grid h2,
.blog-cta-grid h2,
.blog-article h1 {
  margin: 0;
  text-wrap: balance;
}

.blog-lead-copy h2 {
  margin: 12px 0;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.02;
}

.blog-lead-copy h2 a,
.blog-post-copy h3 a,
.blog-featured-link {
  color: #ffffff;
  text-decoration: none;
}

.blog-lead-copy h2 a:hover,
.blog-lead-copy h2 a:focus,
.blog-post-copy h3 a:hover,
.blog-post-copy h3 a:focus,
.blog-featured-link:hover strong,
.blog-featured-link:focus strong {
  color: #e6cdf5;
}

.blog-lead-copy p,
.blog-post-copy p,
.blog-empty-panel p,
.blog-editor-grid p,
.blog-article-excerpt {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
}

.blog-lead-copy .btn {
  width: fit-content;
  margin-top: 8px;
}

.blog-featured-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(20px, 3vw, 28px);
}

.blog-featured-list .blog-section-heading {
  margin-bottom: 6px;
}

.blog-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.blog-section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.blog-section-heading.compact {
  display: block;
  margin-bottom: 8px;
}

.blog-section-heading h2,
.blog-editor-grid h2,
.blog-cta-grid h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
}

.blog-featured-link {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-top: 1px solid rgba(230, 205, 245, 0.14);
}

.blog-featured-link span,
.blog-featured-link small,
.blog-post-footer,
.blog-article-meta {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.blog-featured-link strong {
  font-size: 1.08rem;
  line-height: 1.25;
}

.blog-featured-empty {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.blog-topic-band {
  display: none;
  padding: 10px 0 24px;
}

.blog-category-section {
  display: none;
}

.blog-topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: rgba(18, 27, 34, 0.54);
  border: 1px solid rgba(230, 205, 245, 0.14);
  border-radius: 8px;
  text-align: center;
}

.blog-topic-row a,
.blog-post-pill,
.blog-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(230, 205, 245, 0.22);
  border-radius: 999px;
  background: rgba(51, 35, 54, 0.72);
  color: #ffffff;
  text-decoration: none;
}

.blog-topic-row a:hover,
.blog-topic-row a:focus,
.blog-back-link:hover,
.blog-back-link:focus {
  background: rgba(95, 65, 100, 0.92);
  border-color: rgba(223, 126, 239, 0.45);
}

.blog-card-grid,
.blog-small-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.blog-post-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
}

.blog-post-card-large {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  grid-template-rows: auto;
}

.blog-post-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 20px;
}

.blog-post-meta,
.blog-post-footer,
.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.blog-post-pill {
  min-height: auto;
  padding: 6px 10px;
  background: rgba(223, 126, 239, 0.12);
  color: #e6cdf5;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-post-copy h3 {
  margin: 12px 0 10px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
}

.blog-post-copy p {
  margin: 0 0 16px;
}

.blog-post-footer {
  margin-top: auto;
}

.blog-empty-panel {
  padding: 24px;
}

.blog-find-panel,
.blog-calendar-panel {
  padding: clamp(24px, 4vw, 42px);
}

.blog-find-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  margin-top: 24px;
}

.blog-find-card {
  min-height: 220px;
  padding: 20px;
  border: 1px solid rgba(230, 205, 245, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(95, 65, 100, 0.28), rgba(18, 27, 34, 0.2)),
    rgba(18, 27, 34, 0.48);
}

.blog-find-card span,
.blog-calendar-list span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #df7eef;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-find-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
}

.blog-find-card p,
.blog-calendar-panel p,
.blog-calendar-list small,
.blog-cta-grid p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.blog-calendar-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.blog-calendar-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
}

.blog-calendar-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-calendar-list li {
  padding: 16px 18px;
  border: 1px solid rgba(230, 205, 245, 0.14);
  border-left: 4px solid rgba(223, 126, 239, 0.72);
  border-radius: 8px;
  background: rgba(18, 27, 34, 0.5);
}

.blog-calendar-list span {
  margin-bottom: 8px;
}

.blog-calendar-list strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.25;
}

.blog-calendar-list small {
  display: block;
  font-size: 0.94rem;
}

.blog-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.blog-editor-grid,
.blog-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
}

.blog-cta-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  background:
    linear-gradient(135deg, rgba(185, 62, 70, 0.24), rgba(51, 35, 54, 0.86)),
    rgba(18, 27, 34, 0.82);
}

.blog-cta-grid p {
  max-width: 720px;
  margin: 12px 0 0;
}

.blog-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.blog-article-shell {
  max-width: 920px;
  padding: clamp(24px, 5vw, 54px);
}

.blog-back-link {
  width: fit-content;
  margin-bottom: 24px;
}

.blog-article h1 {
  max-width: 12ch;
  margin-bottom: 16px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
}

.blog-article-excerpt {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: 1.14rem;
}

.blog-article-meta {
  justify-content: flex-start;
  margin-bottom: 24px;
}

.blog-article-image {
  display: block;
  width: 100%;
  max-height: 520px;
  margin-bottom: 30px;
  border: 0;
  border-radius: 8px;
  object-fit: cover;
}

.blog-article-body {
  max-width: 760px;
  margin: 0 auto;
}

.blog-article-body h2,
.blog-article-body h3 {
  margin: 30px 0 12px;
  color: #ffffff;
  line-height: 1.15;
}

.blog-article-body h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.blog-article-body h3 {
  font-size: clamp(23px, 2.2vw, 30px);
}

.blog-article-body p,
.blog-article-body li {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.8;
}

.blog-article-body p + p {
  margin-top: 18px;
}

.blog-article-body ul {
  margin: 12px 0 20px 22px;
  padding: 0;
}

.blog-article-body a {
  color: #e6cdf5;
}

@media (max-width: 980px) {
  .blog-lead-grid,
  .blog-lead-story,
  .blog-post-card-large,
  .blog-calendar-panel,
  .blog-editor-grid,
  .blog-cta-grid {
    grid-template-columns: 1fr;
  }

  .blog-find-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card-grid,
  .blog-small-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-post-card-large {
    grid-column: span 1;
    grid-template-rows: 230px 1fr;
  }

  .blog-lead-image {
    min-height: 320px;
  }

  .blog-section-heading,
  .blog-cta-actions {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .blog-hub-heading h1,
  .blog-article h1 {
    max-width: 100%;
  }

  .blog-card-grid,
  .blog-find-grid,
  .blog-small-grid {
    grid-template-columns: 1fr;
  }

  .blog-section-heading {
    display: grid;
  }

  .blog-lead-image,
  .blog-post-card,
  .blog-post-card-large {
    grid-template-rows: 220px 1fr;
  }

.blog-topic-row a {
    flex: 1 1 100%;
  }
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
}

.post-card {
  background: rgba(18, 27, 34, 0.72);
  border: solid rgba(255, 255, 255, 0.12) 1px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  padding: 18px;

  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  opacity: 0.95;
}

.post-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 10px;
  border-radius: 999px;

  background: rgba(7, 5, 8, 0.35);
  border: solid rgba(255, 255, 255, 0.1) 1px;

  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.post-date {
  font-size: 0.95rem;
  opacity: 0.85;
  white-space: nowrap;
}

.post-title {
  margin: 0 0 10px 0;
}

.post-excerpt {
  margin: 0 0 10px 0;
  opacity: 0.94;
  line-height: 1.65;

  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* ============================================================
   FINAL_OVERRIDES (KEEP AT END OF FILE)
   ============================================================ */
@media (max-width: 1024px) {
  #header-dropdown.header-dropdown > button.mobile-submenu-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding-left: 52px;
    padding-right: 52px;
  }

  #header-dropdown.header-dropdown > button.mobile-submenu-toggle .caret,
  #header-dropdown.header-dropdown > button.mobile-submenu-toggle .chev,
  #header-dropdown.header-dropdown > button.mobile-submenu-toggle .arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    pointer-events: none;
  }

  .mobile-submenu.is-open {
    display: flex;
  }

  #header-dropdown
    button.mobile-submenu-toggle[aria-expanded="true"]
    ~ .mobile-submenu {
    display: flex !important;
  }

  .mobile-submenu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;

    position: relative;
    z-index: 1;
  }

  .mobile-submenu a {
    font: inherit;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

@media (max-width: 1024px) and (max-height: 520px) {
  .mobile-submenu.is-open {
    max-height: 45vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.work-icon {
  width: 56px;
  height: 56px;

  stroke: white;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;

  opacity: 0.85;
}

/* ============================================================
   MOBILE_MENU_POLISH
   ============================================================ */
@media (max-width: 1024px) {
  #header-dropdown.header-dropdown {
    padding: calc(var(--header-h) + 14px) 26px 28px;
    background: rgba(32, 17, 39, 0.96);
    font-family: SourceSerifPro;
    gap: 0;
  }

  #header-dropdown .menu-close {
    width: 40px;
    height: 40px;
    margin: 0 0 18px auto;
    position: sticky;
    top: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
  }

  #header-dropdown.header-dropdown > a,
  #header-dropdown.header-dropdown > button.mobile-submenu-toggle {
    width: min(560px, 100%);
    min-height: 58px;
    padding: 17px 14px;
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.94);
    font: inherit;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    text-align: center;
    box-shadow: none;
  }

  #header-dropdown.header-dropdown > a:first-of-type {
    border-top: 0;
  }

  #header-dropdown.header-dropdown > a:hover,
  #header-dropdown.header-dropdown > a:focus,
  #header-dropdown.header-dropdown > button.mobile-submenu-toggle:hover,
  #header-dropdown.header-dropdown > button.mobile-submenu-toggle:focus,
  #header-dropdown.header-dropdown
    > button.mobile-submenu-toggle[aria-expanded="true"] {
    background: rgba(95, 65, 100, 0.34);
    border-color: rgba(255, 255, 255, 0.18);
    outline: none;
  }

  #header-dropdown.header-dropdown > button.mobile-submenu-toggle {
    padding-left: 14px;
    padding-right: 14px;
  }

  .mobile-submenu {
    width: min(560px, 100%);
    max-height: none;
    margin: 10px auto 6px auto;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(18, 27, 34, 0.36);
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  }

  .mobile-submenu.is-open {
    max-height: none;
    overflow: visible;
  }

  .mobile-submenu a {
    min-height: 48px;
    padding: 14px 12px !important;
    font: inherit !important;
    font-size: 0.98rem !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    color: rgba(255, 255, 255, 0.94) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .mobile-submenu a:hover,
  .mobile-submenu a:focus {
    background: rgba(95, 65, 100, 0.42) !important;
  }

  .mobile-social {
    width: min(560px, 100%);
    margin-top: 22px;
    padding-top: 18px;
    grid-template-columns: repeat(7, 38px);
    gap: 10px;
  }

  .mobile-social .header-social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.055);
  }
}

@media (max-width: 420px) {
  #header-dropdown.header-dropdown {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mobile-social {
    grid-template-columns: repeat(3, 38px);
    row-gap: 12px;
  }
}

/* ============================================================
   HOME_PAGE_POLISH
   ============================================================ */
body.hero-animate:not(.work-page):not(.blog-page) #main > .section-card {
  margin: 0;
  padding: clamp(28px, 4vw, 48px) 0;
}

body.hero-animate:not(.work-page):not(.blog-page) .path-title,
body.hero-animate:not(.work-page):not(.blog-page) .events-title,
body.hero-animate:not(.work-page):not(.blog-page) .contact-title,
body.hero-animate:not(.work-page):not(.blog-page) .home-cta-title {
  margin-bottom: 10px;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.08;
  text-wrap: balance;
}

body.hero-animate:not(.work-page):not(.blog-page) .path-framing {
  max-width: 760px;
  margin-bottom: 24px;
  text-wrap: balance;
}

body.hero-animate:not(.work-page):not(.blog-page) .hero-text-glass {
  margin-top: clamp(18px, 3vh, 34px);
  padding: clamp(14px, 2vw, 22px) clamp(18px, 3vw, 30px);
  border-radius: 12px;
  background: rgba(7, 5, 8, 0.48);
}

body.hero-animate:not(.work-page):not(.blog-page) .hero-headline-one-line {
  font-size: clamp(34px, 3.7vw, 62px);
  line-height: 1.08;
  text-wrap: balance;
}

body.hero-animate:not(.work-page):not(.blog-page) .hero-tagline {
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.25;
  opacity: 0.96;
}

body.hero-animate:not(.work-page):not(.blog-page) .path-card {
  padding: 22px 20px;
  border-radius: 12px;
}

body.hero-animate:not(.work-page):not(.blog-page) .path-card h3 {
  font-size: clamp(19px, 1.45vw, 23px);
  line-height: 1.16;
  text-wrap: balance;
}

body.hero-animate:not(.work-page):not(.blog-page) .path-card p {
  line-height: 1.55;
}

body.hero-animate:not(.work-page):not(.blog-page) .path-icon-wrap {
  height: clamp(140px, 13vw, 190px);
  margin: 8px 0 14px;
}

body.hero-animate:not(.work-page):not(.blog-page) .testimonial-card {
  min-height: 0;
  align-items: flex-start;
  text-align: left;
}

body.hero-animate:not(.work-page):not(.blog-page) .testimonials-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.hero-animate:not(.work-page):not(.blog-page) .testimonial-card blockquote {
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.58;
}

body.hero-animate:not(.work-page):not(.blog-page) .latest-release-card {
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  padding: clamp(20px, 3vw, 30px);
}

body.hero-animate:not(.work-page):not(.blog-page) #home-cta {
  padding: clamp(34px, 5vw, 58px) 0;
}

body.hero-animate:not(.work-page):not(.blog-page) .home-cta-title {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

body.hero-animate:not(.work-page):not(.blog-page) .contact-form {
  width: min(620px, 92vw);
}

@media (max-width: 1099px) {
  body.hero-animate:not(.work-page):not(.blog-page) .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body.hero-animate:not(.work-page):not(.blog-page) #hero {
    min-height: calc(58dvh - var(--header-h));
    align-items: center;
  }

  body.hero-animate:not(.work-page):not(.blog-page) .hero-inner {
    width: min(390px, 92vw);
    padding: 8px 0 14px;
  }

  body.hero-animate:not(.work-page):not(.blog-page) .hero-text-glass {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px 12px;
    background: rgba(7, 5, 8, 0.42);
  }

  body.hero-animate:not(.work-page):not(.blog-page) .hero-headline-one-line {
    max-width: 15ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.04;
    white-space: normal;
  }

  body.hero-animate:not(.work-page):not(.blog-page) .hero-tagline {
    max-width: 28ch;
    font-size: 0.98rem;
    line-height: 1.25;
  }

  body.hero-animate:not(.work-page):not(.blog-page) .hero-ctas {
    width: 100%;
    margin-top: 14px;
    gap: 8px;
  }

  body.hero-animate:not(.work-page):not(.blog-page) .hero-ctas .btn {
    flex: 1 1 100%;
    width: 100%;
    max-width: none;
    min-height: 46px;
    padding: 9px 14px;
  }

  body.hero-animate:not(.work-page):not(.blog-page) .path-grid,
  body.hero-animate:not(.work-page):not(.blog-page) .testimonials-grid {
    gap: 16px;
  }

  body.hero-animate:not(.work-page):not(.blog-page) .testimonials-grid {
    grid-template-columns: 1fr;
  }

  body.hero-animate:not(.work-page):not(.blog-page) .latest-release-card,
  body.hero-animate:not(.work-page):not(.blog-page) .testimonial-card {
    text-align: center;
    align-items: center;
  }
}

/* ============================================================
   SITE_WIDE_POLISH
   ============================================================ */
.simple-page-hero {
  display: grid;
  place-items: center;
  width: min(900px, 92vw);
  min-height: calc(42dvh - var(--header-h));
  text-align: center;
}

.simple-page-hero h1 {
  padding: clamp(16px, 3vw, 26px) clamp(22px, 4vw, 38px);
  border-radius: 12px;
  background: rgba(7, 5, 8, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
  color: white;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 1;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

body.work-page:not(.pm-page):not(.service-page) #path {
  margin: 0;
  padding: clamp(30px, 4vw, 52px) 0;
}

body.work-page:not(.pm-page):not(.service-page) .path-card {
  border-radius: 12px;
}

body.work-page:not(.pm-page):not(.service-page) .path-icon-wrap {
  height: clamp(140px, 13vw, 190px);
}

body.service-page .pm-card-grid,
body.service-page .pm-two-grid,
body.service-page .pm-process-grid,
body.service-page .pm-info-grid,
body.blog-rebrand-page .pm-card-grid,
body.blog-rebrand-page .pm-two-grid,
body.blog-rebrand-page .pm-info-grid {
  gap: clamp(16px, 2vw, 22px);
}

body.service-page .path-card,
body.blog-rebrand-page .path-card,
body.pm-page .path-card {
  border-radius: 12px;
}

body.service-page .home-cta-inner .btn + .btn,
body.blog-rebrand-page .home-cta-inner .btn + .btn {
  margin-left: 10px;
}

body:not(.work-page):not(.blog-page) .video-section {
  margin: 0;
  padding: clamp(30px, 4vw, 52px) 0;
  background: var(--card-bg);
  border-top: 1px solid rgba(223, 126, 239, 0.26);
  border-bottom: 1px solid rgba(223, 126, 239, 0.26);
}

body:not(.work-page):not(.blog-page) .responsive-16x9 {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.spotify-container {
  margin: 0;
  padding: clamp(30px, 4vw, 52px) 0;
  background: var(--card-bg);
  border-top: 1px solid rgba(223, 126, 239, 0.26);
  border-bottom: 1px solid rgba(223, 126, 239, 0.26);
}

.spotify-container iframe {
  width: min(720px, 92vw) !important;
  max-width: 720px;
  border: 0;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.bio-text {
  max-width: 980px;
  line-height: 1.75;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.showcase-subtitle {
  margin-bottom: 18px;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  opacity: 0.94;
}

@media (max-width: 700px) {
  .simple-page-hero {
    min-height: calc(34dvh - var(--header-h));
  }

  .simple-page-hero h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  body.service-page .hero-ctas .btn,
  body.blog-rebrand-page .hero-ctas .btn,
  body.pm-page .hero-ctas .btn,
  body.service-page .home-cta-inner .btn,
  body.blog-rebrand-page .home-cta-inner .btn {
    width: 100%;
    max-width: 320px;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.service-page .home-cta-inner .btn + .btn,
  body.blog-rebrand-page .home-cta-inner .btn + .btn {
    margin-top: 10px;
  }

  .bio-text {
    width: min(680px, 88vw);
    text-align: left;
  }

  .contact-line {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

/* ============================================================
   ABOUT_PAGE
   ============================================================ */
body.about-page #main {
  padding-top: 0;
}

.about-intro-band {
  width: 100%;
  margin: 0;
  padding: clamp(18px, 3vw, 28px) 0;
  background: rgba(18, 27, 34, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-role-line {
  width: min(1000px, 90vw);
  margin: 0 auto;
  color: #e6cdf5;
  font-family: SourceSerifPro;
  font-size: clamp(1.05rem, 2.1vw, 1.55rem);
  line-height: 1.4;
  text-align: center;
}

.about-story-section {
  background: rgba(95, 65, 100, 0.28);
  width: 100%;
  margin: 0;
  padding: clamp(42px, 6vw, 76px) 0;
}

.about-story-section-alt {
  background: rgba(18, 27, 34, 0.58);
}

.about-story-wrap {
  width: min(980px, 90vw);
  margin: 0 auto;
}

.about-inline-media {
  float: right;
  width: min(34%, 320px);
  min-width: 240px;
  margin: 4px 0 20px clamp(22px, 4vw, 36px);
  shape-outside: inset(0 round 8px);
}

.about-inline-media-alt {
  float: left;
  margin: 4px clamp(22px, 4vw, 36px) 20px 0;
}

.about-inline-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.3);
}

.about-story-copy {
  color: #ffffff;
}

.about-story-copy::after {
  content: "";
  display: block;
  clear: both;
}

.about-story-copy h2 {
  margin: 0 0 20px;
  color: #e6cdf5;
  font-family: SourceSerifPro;
  font-size: clamp(2.1rem, 4.4vw, 4.25rem);
  line-height: 0.98;
  text-align: left;
}

.about-story-copy p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.22vw, 1.1rem);
  line-height: 1.75;
}

.about-story-copy p:not(.about-actions) a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(223, 126, 239, 0.72);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.about-story-copy p:not(.about-actions) a:hover,
.about-story-copy p:not(.about-actions) a:focus {
  color: #df7eef;
  text-decoration-color: #df7eef;
  outline: none;
}

.about-actions {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px !important;
}

.about-bridge {
  width: 100%;
  margin: 0;
  padding: clamp(34px, 5vw, 64px) 0;
  background: rgba(18, 27, 34, 0.74);
  border-top: 1px solid rgba(223, 126, 239, 0.26);
  border-bottom: 1px solid rgba(223, 126, 239, 0.26);
}

.about-bridge blockquote {
  width: min(900px, 86vw);
  margin: 0 auto;
  color: #df7eef;
  font-family: SourceSerifPro;
  font-size: clamp(1.45rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.22;
  text-align: center;
}

.about-bridge blockquote::before,
.about-bridge blockquote::after {
  color: #ffffff;
}

.about-bridge blockquote::before {
  content: open-quote;
}

.about-bridge blockquote::after {
  content: close-quote;
}

@media (max-width: 860px) {
  .about-inline-media,
  .about-inline-media-alt {
    float: none;
    width: min(420px, 100%);
    min-width: 0;
    margin: 0 auto 24px;
    shape-outside: none;
  }
}

@media (max-width: 560px) {
  .about-story-section {
    padding: 36px 0;
  }

  .about-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   MUSIC_PAGE
   ============================================================ */
body.music-page #hero .hero-media img {
  object-position: center 32%;
}

body.music-page .latest-release-copy h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.1;
}

.music-video-section,
.music-page #latest-release,
.music-catalog-section,
.music-gallery-section {
  background: rgba(95, 65, 100, 0.28);
}

.music-video-section {
  background: #332336;
}

.music-gallery-section {
  background: rgba(18, 27, 34, 0.74);
}

.music-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 14px;
}

.music-cta-actions .btn {
  width: auto;
  margin: 0;
}

body.music-page .standard-cta p {
  margin-bottom: 0;
}

body.music-page .standard-cta .music-cta-actions .btn {
  width: auto;
  margin: 0;
}

.music-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  width: 100%;
}

.music-video-card,
.music-catalog-card {
  overflow: hidden;
  background: rgba(18, 27, 34, 0.78);
  border: 1px solid rgba(230, 205, 245, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.music-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #121b22;
}

.music-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.music-video-card h3 {
  margin: 0;
  padding: 14px 16px 16px;
  color: #ffffff;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.18;
  text-align: center;
}

.music-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.8vw, 30px);
  width: min(1380px, 92vw);
  margin: 0 auto;
}

.music-catalog-card {
  display: grid;
  grid-template-columns: minmax(190px, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(16px, 2vw, 22px);
  align-items: center;
  padding: clamp(18px, 2.4vw, 24px);
}

.music-catalog-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 0;
  border-radius: 8px;
}

.music-catalog-card p {
  margin: 0 0 5px;
  color: #df7eef;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.music-catalog-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.1;
}

.music-gallery-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(10px, 2vw, 18px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.music-gallery-carousel #bio-gallery {
  min-width: 0;
}

.music-gallery-carousel #bio-gallery img {
  width: min(29%, 320px);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid rgba(230, 205, 245, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.music-gallery-carousel #bio-gallery img:hover,
.music-gallery-carousel #bio-gallery img:focus {
  border-color: rgba(223, 126, 239, 0.72);
  filter: brightness(1.08);
  outline: none;
  transform: translateY(-2px);
}

.music-gallery-carousel .gallery-scroller {
  display: inline-grid;
  place-items: center;
  width: clamp(42px, 5vw, 58px);
  height: clamp(42px, 5vw, 58px);
  margin: 0;
  padding: 0;
  background: rgba(18, 27, 34, 0.78);
  border: 1px solid rgba(230, 205, 245, 0.28);
  border-radius: 999px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.music-gallery-carousel .gallery-scroller:hover,
.music-gallery-carousel .gallery-scroller:focus {
  background: rgba(95, 65, 100, 0.92);
  border-color: rgba(223, 126, 239, 0.72);
  color: #df7eef;
  outline: none;
}

body.gallery-modal-open {
  overflow: hidden;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 30000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
  background: rgba(18, 27, 34, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal img {
  display: block;
  max-width: min(92vw, 1040px);
  max-height: 88dvh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(230, 205, 245, 0.24);
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.54);
}

.gallery-modal-close {
  position: fixed;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(95, 65, 100, 0.92);
  border: 1px solid rgba(230, 205, 245, 0.32);
  border-radius: 999px;
  color: #ffffff;
  font: inherit;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-modal-close:hover,
.gallery-modal-close:focus {
  background: rgba(18, 27, 34, 0.92);
  border-color: rgba(223, 126, 239, 0.72);
  color: #df7eef;
  outline: none;
}

@media (max-width: 980px) {
  .music-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body.music-page #hero .hero-media img {
    object-position: center center;
  }

  .music-video-grid,
  .music-catalog-grid {
    grid-template-columns: 1fr;
  }

  .music-gallery-carousel {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .music-gallery-carousel #bio-gallery img:nth-of-type(1),
  .music-gallery-carousel #bio-gallery img:nth-of-type(3) {
    display: none;
  }

  .music-gallery-carousel #bio-gallery img:nth-of-type(2) {
    width: min(100%, 360px);
  }

  .music-gallery-carousel .gallery-scroller {
    width: 42px;
    height: 42px;
    font-size: 1.8rem;
  }
}

@media (max-width: 520px) {
  .music-catalog-card {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .music-catalog-card .btn {
    width: 100%;
  }
}

/* PM hero background: use PM_hero.jpg as the full hero image. */
body.pm-page #main section.pm-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(18, 27, 34, 0.52) 0%,
      rgba(51, 35, 54, 0.26) 38%,
      rgba(51, 35, 54, 0.06) 100%
    ),
    url("../images/PM_hero.jpg") center center / 100% 100% no-repeat;
}

body.pm-page #main section.pm-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 48%, rgba(18, 27, 34, 0.3), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

body.pm-page .pm-hero-inner {
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr;
  place-items: center;
  min-height: min(720px, calc(88vh - var(--header-h)));
  padding: clamp(46px, 7vw, 92px) min(6vw, 92px);
  text-align: center;
}

body.pm-page .pm-hero-copy {
  width: min(760px, 92vw);
  justify-self: center;
  text-align: center;
}

body.pm-page .pm-hero-copy .eyebrow,
body.pm-page .pm-hero-copy .path-framing,
body.pm-page .pm-hero-copy .pm-availability,
body.pm-page .pm-hero-title,
body.pm-page .pm-hero-subtitle {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

body.pm-page .pm-hero-title {
  max-width: 16ch;
}

body.pm-page .pm-hero-subtitle {
  max-width: 23ch;
}

body.pm-page .pm-hero-copy .hero-ctas {
  justify-content: center;
}

body.pm-page .pm-hero-art {
  display: none !important;
}

body.pm-page .pm-hero-copy {
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.58);
}

@media (max-width: 1099px) {
  body.pm-page #main section.pm-hero {
    background:
      linear-gradient(
        180deg,
        rgba(18, 27, 34, 0.58) 0%,
        rgba(51, 35, 54, 0.3) 58%,
        rgba(51, 35, 54, 0.12) 100%
      ),
      url("../images/PM_hero.jpg") center center / 100% 100% no-repeat;
  }

  body.pm-page .pm-hero-inner {
    min-height: min(700px, calc(82vh - var(--header-h)));
    padding: clamp(42px, 8vw, 76px) 6vw;
  }

  body.pm-page .pm-hero-title {
    max-width: 15ch;
  }

  body.pm-page .pm-hero-subtitle {
    max-width: 22ch;
  }
}

@media (max-width: 700px) {
  body.pm-page .pm-hero-inner {
    min-height: min(620px, calc(78vh - var(--header-h)));
    padding: 38px 6vw 44px;
  }

  body.pm-page .pm-hero-copy {
    width: min(420px, 92vw);
  }

  body.pm-page .pm-hero-title,
  body.pm-page .pm-hero-subtitle {
    max-width: 100%;
  }
}

/* Live music page hero: full performance image with centered booking copy. */
body.live-page #main section.pm-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(780px, calc(88vh - var(--header-h)));
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(18, 27, 34, 0.18) 0%,
      rgba(18, 27, 34, 0.28) 50%,
      rgba(18, 27, 34, 0.58) 100%
    ),
    linear-gradient(
      90deg,
      rgba(18, 27, 34, 0.34) 0%,
      rgba(18, 27, 34, 0.12) 50%,
      rgba(18, 27, 34, 0.34) 100%
    ),
    url("../images/Mandy_Moon_Final-149.jpg") center center / cover no-repeat;
  background-color: #121b22;
}

body.live-page #main section.pm-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    circle at 50% 48%,
    rgba(255, 255, 255, 0.04),
    rgba(0, 0, 0, 0.32) 76%
  );
  pointer-events: none;
}

body.live-page .pm-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, 90vw);
  min-height: min(780px, calc(88vh - var(--header-h)));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(52px, 8vw, 96px) 0;
  box-sizing: border-box;
  text-align: center;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.68);
}

body.live-page .pm-hero-title {
  max-width: min(1180px, 88vw);
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(30px, 3.4vw, 58px);
  line-height: 1.08;
  text-align: center;
}

body.live-page .pm-hero-title span {
  display: block;
}

body.live-page .pm-hero-title span:first-child {
  color: rgba(230, 205, 245, 0.82);
  line-height: 1.12;
}

body.live-page .pm-hero-title span + span {
  color: rgba(255, 255, 255, 0.96);
}

body.live-page .pm-hero .hero-ctas {
  justify-content: center;
  margin-top: 26px;
}

body.live-page .live-location-strip {
  width: min(1180px, 92vw);
  margin: 0 auto 18px auto;
  padding: 14px 18px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(230, 205, 245, 0.92);
  font-size: clamp(0.95rem, 1.2vw, 1.18rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

body.live-page .live-location-strip span[aria-hidden="true"] {
  flex: 0 0 auto;
  font-size: 1.05em;
  opacity: 0.9;
}

body.live-page .live-what-i-do {
  width: min(920px, 90vw);
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(260px, 320px);
  align-items: stretch;
  justify-content: center;
  column-gap: clamp(32px, 5vw, 64px);
  row-gap: 24px;
}

body.live-page .live-what-i-do .path-framing {
  max-width: 470px;
  min-height: 320px;
  margin: 0;
  display: flex;
  align-items: center;
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  line-height: 1.62;
  text-align: left;
}

body.live-page .live-what-i-do .path-title {
  grid-column: 1 / -1;
  text-align: center;
}

body.live-page .live-what-image {
  display: block;
  width: min(320px, 100%);
  height: 100%;
  max-height: 320px;
  aspect-ratio: 1 / 1;
  margin: 0 0 0 auto;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

body.live-page .live-what-i-do .hero-ctas {
  grid-column: 1 / -1;
  justify-content: center;
}

body.live-page .live-sound-samples {
  width: min(760px, 90vw);
  text-align: left;
}

body.live-page .live-sound-samples .path-title {
  text-align: center;
}

body.live-page .live-sound-samples .path-framing {
  text-align: left;
}

body.live-page .live-sound-samples .path-framing {
  max-width: 700px;
  margin: 0 0 22px;
  line-height: 1.58;
}

body.live-page .live-song-list {
  display: grid;
  gap: 10px;
}

body.live-page .live-song-item {
  overflow: hidden;
  border-radius: 999px;
  background: rgba(230, 205, 245, 0.16);
  border: 1px solid rgba(230, 205, 245, 0.18);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

body.live-page .live-song-item[open] {
  border-radius: 16px;
  background: rgba(18, 27, 34, 0.76);
  border-color: rgba(230, 205, 245, 0.26);
}

body.live-page .live-song-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 800;
  cursor: pointer;
}

body.live-page .live-song-item summary::-webkit-details-marker {
  display: none;
}

body.live-page .live-song-item summary::before {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.05em;
  line-height: 1;
  color: rgba(230, 205, 245, 0.95);
}

body.live-page .live-song-item[open] summary::before {
  content: "-";
}

body.live-page .live-song-item p {
  margin: 0;
  padding: 0 18px 16px 44px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.45;
}

body.live-page .live-song-item summary + p {
  padding-top: 10px;
}

body.live-page .live-sample-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 32px;
  padding: 12px 28px 22px 44px;
}

body.live-page .live-sample-card {
  min-width: 0;
}

body.live-page .live-sample-card p {
  padding: 0 0 12px;
}

body.live-page .live-song-copy-list {
  margin: 0;
  padding: 2px 28px 24px 44px;
  columns: 2;
  column-gap: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  line-height: 1.45;
}

body.live-page .live-song-copy-list li {
  break-inside: avoid;
  margin: 0 0 8px;
  padding-left: 2px;
}

body.live-page .live-song-item summary + .live-song-copy-list {
  padding-top: 12px;
}

body.live-page .live-song-player {
  display: none;
}

body.live-page .live-song-play {
  width: 52px;
  height: 52px;
  margin: 0;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(230, 205, 245, 0.64);
  border-radius: 999px;
  background: rgba(18, 27, 34, 0.92);
  color: white;
  cursor: pointer;
  position: relative;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 120ms ease;
}

body.live-page .live-song-play:hover,
body.live-page .live-song-play:focus {
  background: rgba(95, 65, 100, 0.9);
  border-color: rgba(255, 255, 255, 0.84);
  outline: none;
}

body.live-page .live-song-play:active {
  transform: translateY(1px);
}

body.live-page .live-song-play::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 2px solid rgba(230, 205, 245, 0.18);
  border-top-color: rgba(230, 205, 245, 0.95);
  opacity: 0;
}

body.live-page .live-song-play.is-playing::before {
  opacity: 1;
  animation: live-sample-spin 900ms linear infinite;
}

body.live-page .live-song-play-icon {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid currentColor;
}

body.live-page .live-song-play.is-playing .live-song-play-icon {
  width: 16px;
  height: 20px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(currentColor, currentColor) left center / 5px 20px no-repeat,
    linear-gradient(currentColor, currentColor) right center / 5px 20px no-repeat;
}

@keyframes live-sample-spin {
  to {
    transform: rotate(360deg);
  }
}

body.live-page .live-holiday-section {
  background:
    linear-gradient(135deg, rgba(18, 27, 34, 0.9), rgba(95, 65, 100, 0.92)),
    #332336;
}

body.live-page .live-holiday-inner {
  max-width: min(920px, 90vw);
  padding: 46px 0;
  text-align: center;
}

body.live-page .live-holiday-copy .path-framing {
  margin-left: auto;
  margin-right: auto;
}

body.live-page .live-holiday-copy .hero-ctas {
  justify-content: center;
}

body.live-page .holiday-lights {
  margin: 0 auto 16px;
  color: #e6cdf5;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-align: center;
  text-shadow:
    0 0 8px rgba(230, 205, 245, 0.72),
    0 0 16px rgba(223, 126, 239, 0.42);
  animation: holiday-light-twinkle 1.4s ease-in-out infinite alternate;
}

body.live-page .holiday-lights-bottom {
  margin: 18px auto 0;
  animation-delay: 700ms;
}

@keyframes holiday-light-twinkle {
  0% {
    opacity: 0.55;
    filter: saturate(0.85) brightness(0.9);
  }

  100% {
    opacity: 1;
    filter: saturate(1.25) brightness(1.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.live-page .holiday-lights {
    animation: none;
  }
}

body.live-page .live-package-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

body.live-page .live-package-card h3 {
  width: 100%;
  text-align: center;
}

body.live-page .live-package-card p {
  width: 100%;
}

body.live-page .live-package-icon {
  min-height: 112px;
  margin: 6px auto 18px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

body.live-page .live-package-icon img {
  width: min(170px, 78%);
  height: auto;
  border: 0;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.34));
}

body.live-page .live-package-icon-band img {
  width: min(210px, 88%);
}

body.live-page .live-package-cta {
  justify-content: center;
  margin-top: 26px;
}

body.live-page .live-review-links {
  margin: 30px auto 0;
  text-align: center;
}

body.live-page .live-review-links p {
  max-width: 760px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.5;
}

body.live-page .live-review-links a {
  font-weight: 800;
  transition: color 180ms ease;
}

body.live-page .live-review-links p a:hover,
body.live-page .live-review-links p a:focus {
  color: #df7eef;
  outline: none;
}

body.live-page .live-review-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 28px;
}

body.live-page .live-review-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.live-page .live-review-logos img {
  max-width: min(128px, 72vw);
  height: auto;
  border: 0;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
}

@media (max-width: 700px) {
  body.live-page #main section.pm-hero {
    min-height: min(680px, calc(82vh - var(--header-h)));
    background:
      linear-gradient(
        180deg,
        rgba(18, 27, 34, 0.28) 0%,
        rgba(18, 27, 34, 0.42) 48%,
        rgba(18, 27, 34, 0.7) 100%
      ),
      url("../images/Mandy_Moon_Final-149.jpg") 56% center / cover no-repeat;
    background-color: #121b22;
  }

  body.live-page .pm-hero-inner {
    min-height: min(680px, calc(82vh - var(--header-h)));
    width: min(430px, 90vw);
    padding: 42px 0;
  }

  body.live-page .pm-hero-title {
    max-width: min(430px, 90vw);
    font-size: clamp(28px, 8vw, 42px);
  }

  body.live-page .pm-hero .hero-ctas {
    justify-content: center;
  }

  body.live-page .live-location-strip {
    width: min(430px, 92vw);
    padding: 12px 10px;
    gap: 8px;
    font-size: 0.94rem;
  }

  body.live-page .live-what-i-do {
    width: min(430px, 90vw);
    grid-template-columns: 1fr;
    text-align: center;
  }

  body.live-page .live-what-i-do .path-framing {
    max-width: 100%;
    min-height: 0;
    display: block;
    text-align: center;
  }

  body.live-page .live-what-image {
    width: min(320px, 78vw);
    height: auto;
    margin: 0 auto;
  }

  body.live-page .live-sound-samples,
  body.live-page .live-sound-samples .path-title,
  body.live-page .live-sound-samples .path-framing {
    text-align: center;
  }

  body.live-page .live-song-item summary {
    padding: 10px 14px;
    text-align: left;
  }

  body.live-page .live-song-item p {
    padding: 0 16px 16px 40px;
    text-align: left;
  }

  body.live-page .live-sample-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 12px 18px 22px 40px;
  }

  body.live-page .live-sample-card p {
    padding: 0 0 12px;
  }

  body.live-page .live-song-copy-list {
    columns: 1;
    padding: 0 18px 22px 40px;
    text-align: left;
  }

  body.live-page .live-song-player {
    display: none;
  }

  body.live-page .live-holiday-inner {
    width: min(430px, 90vw);
    padding: 36px 0;
  }

}

/* ============================================================
   HERO_TEXT_CONSISTENCY_POLISH
   - Align service/blog hero typography with the live music page.
   ============================================================ */
body.service-page .pm-hero-inner,
body.pm-page .pm-hero-inner {
  text-align: center;
}

body.service-page .pm-hero-title,
body.pm-page .pm-hero-title {
  max-width: min(1180px, 88vw);
  margin-left: auto;
  margin-right: auto;
  color: rgba(230, 205, 245, 0.82);
  font-size: clamp(30px, 3.4vw, 58px);
  line-height: 1.08;
  text-align: center !important;
  text-wrap: balance;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.68);
}

body.service-page:not(.live-page) .pm-hero-title span,
body.pm-page .pm-hero-title span {
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.12;
}

body.service-page .pm-hero .hero-ctas,
body.pm-page .pm-hero .hero-ctas {
  justify-content: center;
}

body.blog-hub-page .blog-featured-list {
  min-width: 0;
  overflow: hidden;
}

body.blog-hub-page .blog-featured-link strong {
  overflow-wrap: anywhere;
}

@media (max-width: 700px) {
  body.service-page .pm-hero-title,
  body.pm-page .pm-hero-title,
  body.blog-hub-page .blog-hub-heading h1 {
    max-width: min(430px, 90vw);
    font-size: clamp(28px, 8vw, 42px);
  }
}

/* ============================================================
   WORK_HERO_CONSISTENCY
   - All work service heroes follow the live music hero layout.
   ============================================================ */
body.service-page #main section.pm-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(780px, calc(88vh - var(--header-h)));
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  background-color: #121b22;
}

body.service-page #main section.pm-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    circle at 50% 48%,
    rgba(255, 255, 255, 0.04),
    rgba(0, 0, 0, 0.32) 76%
  );
  pointer-events: none;
}

body.service-page .pm-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, 90vw);
  min-height: min(780px, calc(88vh - var(--header-h)));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(52px, 8vw, 96px) 0;
  box-sizing: border-box;
  text-align: center;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.68);
}

body.service-page .pm-hero-title {
  max-width: min(1180px, 88vw);
  margin-left: auto;
  margin-right: auto;
  color: rgba(230, 205, 245, 0.82);
  font-size: clamp(30px, 3.4vw, 58px);
  line-height: 1.08;
  text-align: center !important;
  text-wrap: balance;
}

body.service-page .pm-hero-title span {
  display: block;
}

body.service-page .pm-hero-title span:first-child {
  color: rgba(230, 205, 245, 0.82);
  line-height: 1.12;
}

body.service-page .pm-hero-title span + span {
  color: rgba(255, 255, 255, 0.96);
}

body.service-page .pm-hero .hero-ctas {
  justify-content: center;
  margin-top: 26px;
}

body.service-page .live-location-strip,
body.service-page .pm-credential-strip,
body.service-page .crowdfunding-platform-strip {
  width: fit-content;
  max-width: min(1180px, 92vw);
  margin: 0 auto 18px;
  box-sizing: border-box;
}

body.pm-page #main section.pm-hero {
  background:
    linear-gradient(
      180deg,
      rgba(18, 27, 34, 0.18) 0%,
      rgba(18, 27, 34, 0.28) 50%,
      rgba(18, 27, 34, 0.58) 100%
    ),
    linear-gradient(
      90deg,
      rgba(18, 27, 34, 0.34) 0%,
      rgba(18, 27, 34, 0.12) 50%,
      rgba(18, 27, 34, 0.34) 100%
    ),
    url("../images/PM_hero.jpg") center center / cover no-repeat;
}

body.crowdfunding-page #main section.pm-hero {
  background:
    linear-gradient(
      180deg,
      rgba(18, 27, 34, 0.18) 0%,
      rgba(18, 27, 34, 0.28) 50%,
      rgba(18, 27, 34, 0.58) 100%
    ),
    linear-gradient(
      90deg,
      rgba(18, 27, 34, 0.34) 0%,
      rgba(18, 27, 34, 0.12) 50%,
      rgba(18, 27, 34, 0.34) 100%
    ),
    url("../images/PM_hero.jpg") center center / cover no-repeat;
}

body.studio-page #main section.pm-hero {
  background:
    linear-gradient(
      180deg,
      rgba(18, 27, 34, 0.18) 0%,
      rgba(18, 27, 34, 0.28) 50%,
      rgba(18, 27, 34, 0.58) 100%
    ),
    linear-gradient(
      90deg,
      rgba(18, 27, 34, 0.34) 0%,
      rgba(18, 27, 34, 0.12) 50%,
      rgba(18, 27, 34, 0.34) 100%
    ),
    url("../images/studio.png") center center / cover no-repeat;
}

body.live-page #main section.pm-hero {
  background:
    linear-gradient(
      180deg,
      rgba(18, 27, 34, 0.18) 0%,
      rgba(18, 27, 34, 0.28) 50%,
      rgba(18, 27, 34, 0.58) 100%
    ),
    linear-gradient(
      90deg,
      rgba(18, 27, 34, 0.34) 0%,
      rgba(18, 27, 34, 0.12) 50%,
      rgba(18, 27, 34, 0.34) 100%
    ),
    url("../images/Mandy_Moon_Final-149.jpg") center center / cover no-repeat;
}

@media (max-width: 700px) {
  body.service-page #main section.pm-hero,
  body.service-page .pm-hero-inner {
    min-height: min(680px, calc(82vh - var(--header-h)));
  }

  body.service-page .pm-hero-inner {
    width: min(430px, 90vw);
    padding: 42px 0;
  }

  body.service-page .pm-hero-title {
    max-width: min(430px, 90vw);
    font-size: clamp(28px, 8vw, 42px);
  }
}

/* Final hero type lock: keeps every work page visually identical. */
body.service-page #main section.pm-hero .pm-hero-title {
  width: min(1180px, 88vw);
  max-width: min(1180px, 88vw);
  margin: 0 auto;
  font-size: clamp(30px, 3.4vw, 58px);
  line-height: 1.08;
  text-align: center !important;
}

body.service-page #main section.pm-hero .pm-hero-title span {
  display: block;
  max-width: none;
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

body.service-page #main section.pm-hero .pm-hero-title span:first-child {
  color: rgba(230, 205, 245, 0.82);
}

body.service-page #main section.pm-hero .pm-hero-title span + span {
  color: rgba(255, 255, 255, 0.96);
}

@media (max-width: 700px) {
  body.service-page #main section.pm-hero .pm-hero-title {
    width: min(430px, 90vw);
    max-width: min(430px, 90vw);
    font-size: clamp(28px, 8vw, 42px);
  }
}

/* End of style.css */
