/* =====================================================================
   ПОЛУМʼЯ ВОЛІ — Fire Art Charity Festival
   styles.css
   ---------------------------------------------------------------------
   Structure
   1.  Fonts
   2.  Design tokens (:root)
   3.  Base / reset
   4.  Layout helpers (container, section, eyebrow)
   5.  Section heading (foreground + LEZO ghost)
   6.  Buttons (CTA) — clipped corner shape
   7.  Placeholder image
   8.  Cards — clipped corner shape
   9.  Header & navigation
   10. Hero
   11. Marquee
   12. Programme (ЩО ТЕБЕ ЧЕКАЄ)
   13. Feels Garden
   14. Partners
   15. Charity
   16. FAQ
   17. Banner
   18. Footer
   19. Responsive breakpoints (Webflow-aligned: 991 / 767 / 479)
   20. Reduced motion
   ===================================================================== */

/* 1. FONTS ----------------------------------------------------------- */
/* NEXA is loaded from Typekit in <head>. LEZO is the decorative display
   face used ONLY for the large red duplicate titles.
   WEBFLOW: upload the font file in Project Settings → Fonts, or host it,
   then replace the url() below with the hosted/Webflow font URL.          */

 @font-face {
  font-family: "Lezo";
  src: url("./fonts/Lezo.ttf") format("truetype"); /* WEBFLOW: replace URL */
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nexa';
  src: url('./fonts/Nexa-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nexa';
  src: url('./fonts/Nexa-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nexa';
  src: url('./fonts/Nexa-extrabold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nexa';
  src: url('./fonts/Nexa-black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* 2. DESIGN TOKENS --------------------------------------------------- */
:root {
  /* Brand palette */
  --pv-bg: #261c2b; /* dark purple — main background        */
  --pv-bg-deep: #1c141f; /* deepest layer — footer / marquee     */
  --pv-bg-alt: #2b2032; /* subtle alternate section background  */
  --pv-purple: #4c487f; /* primary purple                       */
  --pv-lilac: #8d86c8; /* light purple                         */
  --pv-red: #fd2c2d; /* primary red — fire accent / ghosts   */
  --pv-orange: #fa8f3f; /* primary orange — fire accent         */
  --pv-white: #f1ecf2; /* primary white — text                 */
  --pv-ink: #140e18; /* near-black for text on light surfaces*/

  /* Derived text + lines */
  --pv-muted: rgba(241, 236, 242, 0.66);
  --pv-faint: rgba(241, 236, 242, 0.42);
  --pv-border-op: 0.2;
  --pv-hairline: rgba(141, 134, 200, 0.2);
  --pv-hairline-2: rgba(141, 134, 200, 0.34);
  --pv-fire: linear-gradient(90deg, var(--pv-red), var(--pv-orange));
  --pv-fire-soft: linear-gradient(
    120deg,
    rgba(253, 44, 45, 0.16),
    rgba(250, 143, 63, 0.1)
  );

  /* Grain used inside placeholders (self-contained, no network fetch) */
  --pv-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

  /* Typography */
  --pv-font-ui: "Nexa", sans-serif;
  --pv-font-display: "Lezo", sans-serif;

  /* Spacing scale (4 / 8 based) */
  --pv-1: 4px;
  --pv-2: 8px;
  --pv-3: 12px;
  --pv-4: 16px;
  --pv-5: 24px;
  --pv-6: 32px;
  --pv-7: 48px;
  --pv-8: 64px;
  --pv-9: 96px;
  --pv-10: 128px;

  /* Layout */
  --pv-container: 1312px;
  --pv-gutter: 72px;
  --pv-section-y: clamp(64px, 8vw, 128px);
  --pv-radius: 2px;

  /* The required clipped-corner shape (CTA buttons + cards ONLY) */
  --pv-clip: polygon(
    0px 0px,
    calc(100% - 10px) 0px,
    100% 10px,
    100% 100%,
    10px 100%,
    0px calc(100% - 10px)
  );

  /* Motion */
  --pv-t-fast: 0.18s ease;
  --pv-t: 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* 3. BASE / RESET ---------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip; /* contain decorative ghosts */
  scroll-behavior: smooth;
  scroll-padding-top: 96px; /* offset sticky header on anchor jump */
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--pv-bg);
  color: var(--pv-white);
  font-family: var(--pv-font-ui);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.pv-no-scroll {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
ul,
figure {
  margin: 0;
}
ul {
  list-style: none;
  padding: 0;
}

::selection {
  background: var(--pv-red);
  color: var(--pv-white);
}

:focus-visible {
  outline: 2px solid var(--pv-white);
  outline-offset: 3px;
  border-radius: 1px;
}

.pv-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 4. LAYOUT HELPERS -------------------------------------------------- */
.pv-container {
  width: min(100% - var(--pv-gutter), var(--pv-container));
  margin-inline: auto;
}

.pv-section {
  position: relative;
  padding-block: var(--pv-section-y);
  overflow-x: clip;
}
.pv-section--alt {
  background: var(--pv-bg-alt);
}
.pv-section--deep {
  background: var(--pv-bg-deep);
}

/* a thin fire divider available between sections */
.pv-rule {
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--pv-hairline-2),
    transparent
  );
}

.pv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--pv-3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pv-lilac);
}
.pv-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--pv-fire);
}

/* 5. SECTION HEADING ------------------------------------------------- */
.pv-heading {
  position: relative;
  padding-top: clamp(28px, 5vw, 64px);
  margin-bottom: var(--pv-7);
}

.pv-heading__ghost {
  display: block;
  font-family: var(--pv-font-display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 168px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--pv-red);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  margin-bottom: -0.9em;
}

.pv-heading__title {
  position: relative;
  font-size: clamp(32px, 5.4vw, 68px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--pv-white);
  text-wrap: balance;
}
.pv-heading__lead {
  position: relative;
  z-index: 1;
  margin-top: var(--pv-4);
  max-width: 56ch;
  color: var(--pv-muted);
  font-size: clamp(16px, 1.4vw, 18px);
}

/* center variant (banner / charity intros) */
.pv-heading--center {
  text-align: center;
}
.pv-heading--center .pv-heading__ghost {
  text-align: center;
  width: 100%;
}
.pv-heading--center .pv-heading__lead {
  margin-inline: auto;
}

/* 6. BUTTONS (CTA) — clipped corner shape ---------------------------- */
/* The outer <a>/<button> stays unclipped so focus rings remain visible;
   the inner .pv-btn__face carries the required clip-path shape.          */
.pv-btn {
  --_bg: var(--pv-red);
  --_fg: var(--pv-ink);
  position: relative;
  display: inline-flex;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: center;
}
.pv-btn__face {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--pv-3);
  padding: 16px 28px;
  min-height: 52px;
  background: var(--_bg);
  color: var(--pv-white);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  clip-path: var(--pv-clip); /* REQUIRED shape */
  transition:
    transform var(--pv-t-fast),
    filter var(--pv-t-fast),
    background var(--pv-t);
  will-change: transform;
}
/* .pv-btn__face::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--pv-t-fast);
  opacity: 0.85;
} */
.pv-btn:hover .pv-btn__face {
  transform: translateY(-2px);
}
/* .pv-btn:hover .pv-btn__face::after {
  transform: rotate(45deg) translate(2px, -2px);
} */
.pv-btn:active .pv-btn__face {
  transform: translateY(0);
}

/* Primary — bone surface, fiery reveal on hover */
.pv-btn--primary .pv-btn__face {
  --_bg: var(--pv-red);
  --_fg: var(--pv-ink);
}
.pv-btn--primary:hover .pv-btn__face {
  background: var(--pv-fire);
  color: var(--pv-white);
}
/* Ghost — outlined, for secondary use */
.pv-btn--ghost .pv-btn__face {
  --_fg: var(--pv-white);
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--pv-hairline-2);
}
.pv-btn--ghost:hover .pv-btn__face {
  box-shadow: inset 0 0 0 1px var(--pv-lilac);
  background: rgba(141, 134, 200, 0.08);
}
/* Small — header CTA */
.pv-btn--sm .pv-btn__face {
  padding: 11px 20px;
  min-height: 42px;
  font-size: 13px;
}

/* 7. PLACEHOLDER IMAGE ---------------------------------------------- */
.pv-ph {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      120% 90% at 72% 12%,
      rgba(253, 44, 45, 0.18),
      transparent 55%
    ),
    radial-gradient(
      90% 80% at 18% 92%,
      rgba(76, 72, 127, 0.42),
      transparent 62%
    ),
    linear-gradient(155deg, #2e2233, #1a131f);
  box-shadow: inset 0 0 0 1px var(--pv-hairline);
  /* min-height: 220px; */
}
.pv-ph::before {
  /* grain */
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--pv-noise);
  background-size: 180px 180px;
  opacity: 0.12;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.pv-ph::after {
  /* whisper label */
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: var(--pv-4);
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pv-faint);
  pointer-events: none;
}

/* Images inside placeholders — cover + center */
.pv-ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 8. CARDS — clipped corner shape ----------------------------------- */
.pv-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(141, 134, 200, 0.06),
    rgba(141, 134, 200, 0.02)
  );
  box-shadow: inset 0 0 0 1px var(--pv-hairline);
  clip-path: var(--pv-clip); /* REQUIRED shape */
  padding: var(--pv-6);
  transition:
    box-shadow var(--pv-t),
    transform var(--pv-t),
    background var(--pv-t);
}
.pv-card:hover {
  background: linear-gradient(
    180deg,
    rgba(141, 134, 200, 0.1),
    rgba(141, 134, 200, 0.03)
  );
  box-shadow: inset 0 0 0 1px var(--pv-hairline-2);
}

/* 9. HEADER & NAVIGATION -------------------------------------------- */
.pv-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--pv-bg) 70%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    background var(--pv-t),
    border-color var(--pv-t);
}
.pv-header--scrolled {
  background: color-mix(in srgb, var(--pv-bg-deep) 88%, transparent);
  border-bottom-color: var(--pv-hairline);
}
.pv-header__bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--pv-5);
  min-height: 76px;
}
.pv-logo {
  display: inline-flex;
  align-items: center;
}
.pv-logo img {
  height: 40px;
  width: auto;
}

.pv-nav {
  display: contents;
} /* desktop: parts placed in the grid */
.pv-nav__list {
  grid-column: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--pv-5);
}
.pv-nav__link {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: var(--pv-muted);
  padding: 6px 2px;
  transition: color var(--pv-t-fast);
}
.pv-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--pv-fire);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--pv-t);
}
.pv-nav__link:hover {
  color: var(--pv-white);
}
.pv-nav__link:hover::after {
  transform: scaleX(1);
}

.pv-header__cta {
  grid-column: 3;
} /* desktop CTA on the right */
.pv-nav__cta {
  display: none;
} /* shown only inside mobile panel */

.pv-burger {
  display: none; /* shown on tablet/mobile */
  grid-column: 3;
  justify-self: end;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--pv-radius);
  position: relative;
}
.pv-burger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--pv-white);
  transform: translate(-50%, -50%);
  transition:
    transform var(--pv-t),
    opacity var(--pv-t-fast);
}
.pv-burger span:nth-child(1) {
  transform: translate(-50%, -7px);
}
.pv-burger span:nth-child(3) {
  transform: translate(-50%, 5px);
}
.pv-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.pv-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.pv-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.pv-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 24, 0.6);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--pv-t),
    visibility var(--pv-t);
  z-index: 90;
}
.pv-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* 10. HERO ----------------------------------------------------------- */
.pv-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 92vh, 1024px);
  max-height: 1024px;
  display: flex;
}
.pv-hero__bg {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background: url("./media/images/hero-bg.png") center/cover no-repeat;
}
.pv-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  /* background:
    linear-gradient(
      180deg,
      rgba(28, 20, 31, 0.55) 0%,
      rgba(28, 20, 31, 0.25) 30%,
      rgba(28, 20, 31, 0.78) 100%
    ),
    radial-gradient(
      120% 90% at 12% 20%,
      rgba(28, 20, 31, 0.55),
      transparent 60%
    ); */
  z-index: 1;
}
.pv-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: var(--pv-7);
  padding-block: clamp(40px, 7vw, 96px);
}
.pv-hero__top {
  max-width: 760px;
  position: relative;
}

.pv-hero__ghost {
  position: absolute;
  left: -0.03em;
  top: -0.2em;
  z-index: 0;
  font-family: var(--pv-font-display);
  font-size: clamp(24px, 6vw, 90px);
  line-height: 0.96;
  color: var(--pv-red);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  opacity: 1;
}
.pv-hero__title {
  position: relative;
  z-index: 1;
  margin-top: var(--pv-4);
  font-size: clamp(48px, 9vw, 120px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--pv-white);
}
.pv-hero__desc {
  position: relative;
  z-index: 1;
  margin-top: var(--pv-5);
  max-width: 46ch;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--pv-muted);
}
.pv-hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--pv-6);
  flex-wrap: wrap;
}
.pv-hero__info {
  display: grid;
  gap: var(--pv-2);
  text-align: left;
  margin-top: var(--pv-5);
  padding-top: var(--pv-4);
  max-width: max-content;
}
.pv-hero__info-row {
  display: inline-flex;
  align-items: center;
  gap: var(--pv-3);
  justify-content: flex-start;
  font-weight: 600;
  color: var(--pv-white);
}
.pv-hero__info-row span {
  color: var(--pv-lilac);
}
.pv-hero__date {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--pv-white);
}
.pv-hero__maplink {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  color: var(--pv-muted);
  transition: color var(--pv-t-fast);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  text-underline-offset: 3px;
}

.pv-hero__maplink:hover {
  color: var(--pv-orange);
  text-decoration-color: var(--pv-orange);
}

/* 11. MARQUEE -------------------------------------------------------- */
.pv-marquee {
  overflow: hidden;
  background: var(--pv-bg-deep);
  border-block: 1px solid var(--pv-hairline);
  padding-block: var(--pv-4);
}
.pv-marquee__track {
  display: flex;
  width: max-content;
  animation: pv-marquee-scroll 38s linear infinite;
}
.pv-marquee:hover .pv-marquee__track {
  animation-play-state: paused;
}
.pv-marquee__group {
  display: flex;
  align-items: center;
  flex: none;
}
.pv-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--pv-5);
  padding-inline: var(--pv-5);
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pv-white);
  white-space: nowrap;
}
.pv-marquee__item::after {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--pv-fire);
  transform: rotate(45deg);
  flex: none;
}
@keyframes pv-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* 12. PROGRAMME (ЩО ТЕБЕ ЧЕКАЄ) ------------------------------------- */
.pv-features {
  display: grid;
  gap: clamp(40px, 6vw, 88px);
}
.pv-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
}
.pv-feature--reverse .pv-feature__media {
  order: -1;
}
.pv-feature__text {
  max-width: 48ch;
}
.pv-feature__index {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--pv-red);
}
.pv-feature__title {
  margin-top: var(--pv-3);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--pv-white);
}
.pv-feature__desc {
  margin-top: var(--pv-4);
  color: var(--pv-muted);
  font-size: clamp(15px, 1.3vw, 17px);
}
.pv-feature__media {
  position: relative;
  aspect-ratio: 16 / 9;
}
.pv-feature__media .pv-ph {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.pv-section__cta {
  margin-top: clamp(40px, 6vw, 80px);
  display: flex;
}
.pv-section__cta--center {
  justify-content: center;
}

/* 13. FEELS GARDEN -------------------------------------------------- */
.pv-feels__intro {
  max-width: 70ch;
  color: var(--pv-muted);
  font-size: clamp(16px, 1.4vw, 18px);
}
.pv-feels__block {
  margin-top: clamp(32px, 5vw, 64px);
}

.pv-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: clamp(280px, 55vh, 700px);
  gap: var(--pv-4);
}
.pv-gallery .pv-ph {
  position: relative;
}
/* .pv-gallery .pv-ph:nth-child(1) {
  grid-column: span 7;
  aspect-ratio: 16 / 11;
}
.pv-gallery .pv-ph:nth-child(2) {
  grid-column: span 5;
  aspect-ratio: 4 / 5;
}
.pv-gallery .pv-ph:nth-child(3) {
  grid-column: span 5;
  aspect-ratio: 4 / 5;
}
.pv-gallery .pv-ph:nth-child(4) {
  grid-column: span 7;
  aspect-ratio: 16 / 11;
} */

.pv-feels__split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: clamp(32px, 5vw, 72px);
}
.pv-feels__list {
  display: grid;
  gap: var(--pv-3);
  margin-top: var(--pv-5);
}
.pv-feels__list li {
  display: flex;
  align-items: baseline;
  gap: var(--pv-4);
  padding-block: var(--pv-3);
  border-bottom: 1px solid var(--pv-hairline);
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--pv-white);
}
.pv-feels__list li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  background: var(--pv-fire);
  transform: rotate(45deg) translateY(2px);
}
.pv-gallery--duo {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-row-gap: var(--pv-4);
}
.pv-gallery--duo .pv-ph {
  grid-row: auto;
  aspect-ratio: 16 / 9;
}

/* 14. PARTNERS ------------------------------------------------------ */
.pv-partners__featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--pv-5);
}
.pv-pcard {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: var(--pv-4);
}
.pv-badge {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: var(--pv-2);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pv-white);
  background: var(--pv-fire-soft);
  box-shadow: inset 0 0 0 1px rgba(253, 44, 45, 0.4);
}
.pv-pcard__logo {
  height: 64px;
  display: grid;
  place-items: center;
  /*background:
     repeating-linear-gradient(
      45deg,
      rgba(141, 134, 200, 0.05) 0 8px,
      transparent 8px 16px
    ),
    rgba(141, 134, 200, 0.04); */
  box-shadow: inset 0 0 0 1px var(--pv-hairline);
  color: var(--pv-faint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.pv-pcard__logo img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}
.pv-pcard__name {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--pv-white);
}
.pv-pcard__desc {
  color: var(--pv-muted);
  font-size: 15px;
}

.pv-partners__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--pv-4);
  margin-top: var(--pv-5);
}
.pv-pcard--sm {
  display: grid;
  gap: var(--pv-3);
  padding: var(--pv-5);
  text-align: center;
  justify-items: center;
}
.pv-pcard--sm .pv-pcard__logo {
  width: 100%;
  height: 56px;
}
.pv-pcard__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--pv-muted);
}

/* 15. CHARITY ------------------------------------------------------- */
.pv-charity__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}
.pv-charity__body {
  color: var(--pv-muted);
  font-size: clamp(16px, 1.4vw, 18px);
}
.pv-charity__body p + p {
  margin-top: var(--pv-4);
}
.pv-charity__accent {
  margin-top: var(--pv-6);
  padding: var(--pv-5) var(--pv-6);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--pv-white);
  background: var(--pv-fire-soft);
  box-shadow: inset 3px 0 0 0 var(--pv-red);
}
.pv-charity__accent span {
  background: var(--pv-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pv-charity__note {
  margin-top: var(--pv-5);
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--pv-white);
  font-weight: 600;
}
.pv-charity__media {
  position: relative;
  aspect-ratio: 3 / 4;
}
.pv-charity__media .pv-ph {
  position: absolute;
  inset: 0;
  min-height: 0;
  height: 100%;
  width: 100%;
  display: block;
}

.pv-charity__media .pv-ph img {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
}

/* 16. FAQ ----------------------------------------------------------- */
.pv-faq__list {
  max-width: 920px;
  margin-inline: auto;
}
.pv-faq__item {
  border-bottom: 1px solid var(--pv-hairline);
}
.pv-faq__item:first-child {
  border-top: 1px solid var(--pv-hairline);
}
.pv-faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--pv-5);
  padding: var(--pv-5) var(--pv-2);
  background: transparent;
  border: 0;
  text-align: left;
  color: var(--pv-white);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 700;
  transition: color var(--pv-t-fast);
}
.pv-faq__btn:hover {
  color: var(--pv-lilac);
}
.pv-faq__q {
  flex: 1;
}
.pv-faq__icon {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
}
.pv-faq__icon::before,
.pv-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--pv-red);
  transform: translate(-50%, -50%);
  transition: transform var(--pv-t);
}
.pv-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.pv-faq__btn[aria-expanded="true"] .pv-faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.pv-faq__panel {
  overflow: hidden;
  height: 0;
  transition: height var(--pv-t);
}
.pv-faq__panel-inner {
  padding: 0 var(--pv-2) var(--pv-6);
  max-width: 72ch;
  color: var(--pv-muted);
  font-size: clamp(15px, 1.3vw, 17px);
}

/* 17. BANNER -------------------------------------------------------- */
.pv-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      90% 120% at 50% 120%,
      rgba(253, 44, 45, 0.22),
      transparent 60%
    ),
    radial-gradient(
      80% 100% at 50% -10%,
      rgba(76, 72, 127, 0.4),
      transparent 60%
    ),
    var(--pv-bg-deep);
}
.pv-banner__inner {
  position: relative;
  text-align: center;
  padding-block: clamp(72px, 11vw, 160px);
  max-width: 940px;
  margin-inline: auto;
}
.pv-banner__ghost {
  position: absolute;
  left: 50%;
  top: clamp(24px, 6vw, 64px);
  transform: translateX(-50%);
  z-index: 0;
  font-family: var(--pv-font-display);
  font-size: clamp(24px, 3vw, 180px);
  line-height: 1;
  color: var(--pv-red);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.9;
}
.pv-banner__title {
  position: relative;
  z-index: 1;
  font-size: clamp(32px, 5.4vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--pv-white);
  text-wrap: balance;
}
.pv-banner__text {
  position: relative;
  z-index: 1;
  margin: var(--pv-5) auto 0;
  max-width: 54ch;
  color: var(--pv-muted);
  font-size: clamp(16px, 1.5vw, 19px);
}
.pv-banner__cta {
  margin-top: var(--pv-7);
  display: flex;
  justify-content: center;
}

/* 18. FOOTER -------------------------------------------------------- */
.pv-footer {
  background: var(--pv-bg-deep);
  padding-block: clamp(56px, 7vw, 96px) var(--pv-6);
}
.pv-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
}
.pv-footer__brand {
  max-width: 36ch;
}
.pv-footer__brand img {
  height: 40px;
  width: auto;
  margin-bottom: var(--pv-4);
}
.pv-footer__tagline {
  color: var(--pv-muted);
  font-size: 15px;
}
.pv-social {
  display: flex;
  gap: var(--pv-3);
  margin-top: var(--pv-5);
}
.pv-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--pv-hairline);
  border-radius: var(--pv-radius);
  color: var(--pv-muted);
  transition:
    color var(--pv-t-fast),
    border-color var(--pv-t-fast),
    background var(--pv-t-fast);
}
.pv-social a:hover {
  color: var(--pv-white);
  border-color: var(--pv-lilac);
  background: rgba(141, 134, 200, 0.08);
}
.pv-social svg {
  width: 18px;
  height: 18px;
}

.pv-footer__col h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pv-lilac);
  margin-bottom: var(--pv-4);
}
.pv-footer__col ul {
  display: grid;
  gap: var(--pv-3);
}
.pv-footer__col a {
  color: var(--pv-muted);
  font-size: 15px;
  transition: color var(--pv-t-fast);
}
.pv-footer__col a:hover {
  color: var(--pv-white);
}

.pv-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--pv-4);
  margin-top: clamp(40px, 6vw, 72px);
  padding-top: var(--pv-5);
  border-top: 1px solid var(--pv-hairline);
}
.pv-footer__copy {
  color: var(--pv-faint);
  font-size: 13px;
}
.pv-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--pv-5);
}
.pv-footer__legal a {
  color: var(--pv-faint);
  font-size: 13px;
  transition: color var(--pv-t-fast);
}
.pv-footer__legal a:hover {
  color: var(--pv-white);
}

/* 19. RESPONSIVE BREAKPOINTS ---------------------------------------- */
/* Tablet & down — collapse nav into a panel */
@media (max-width: 991px) {
  .pv-header__bar {
    grid-template-columns: auto auto;
    min-height: 68px;
  }
  .pv-burger {
    display: block;
  }
  .pv-header__cta {
    display: none;
  }

  .pv-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 380px);
    height: 100dvh;
    padding: 96px var(--pv-6) var(--pv-7);
    background: var(--pv-bg-deep);
    border-left: 1px solid var(--pv-hairline);
    transform: translateX(100%);
    transition: transform var(--pv-t);
    z-index: 95;
    overflow-y: auto;
  }
  .pv-nav.is-open {
    transform: translateX(0);
  }
  .pv-nav__list {
    grid-column: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }
  .pv-nav__link {
    display: block;
    padding: var(--pv-4) 0;
    font-size: 20px;
    border-bottom: 1px solid var(--pv-hairline);
    color: var(--pv-white);
  }
  .pv-nav__link::after {
    display: none;
  }
  .pv-nav__cta {
    display: inline-flex;
    margin-top: var(--pv-6);
  }
  .pv-nav__cta .pv-btn__face {
    width: 100%;
  }

  .pv-footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .pv-footer__brand {
    grid-column: 1 / -1;
  }
}

/* Mobile — stack everything */
@media (max-width: 767px) {
  :root {
    --pv-gutter: 32px;
  }

  body.pv-no-scroll {
    padding-top: 68px;
  }
  body.pv-no-scroll .pv-header {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
  }

  .pv-nav {
    inset: 68px 0 0;
    width: auto;
    height: calc(100dvh - 68px);
    padding: var(--pv-8) var(--pv-gutter);
    border-left: 0;
    align-items: center;
    justify-content: center;
    gap: var(--pv-6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition:
      opacity var(--pv-t),
      visibility var(--pv-t);
  }
  .pv-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .pv-burger {
    z-index: 101;
  }
  .pv-nav__list {
    align-items: center;
  }
  .pv-nav__link {
    border-bottom: 0;
    text-align: center;
  }
  .pv-backdrop {
    display: none;
  }

  .pv-feature,
  .pv-feels__split,
  .pv-charity__grid {
    grid-template-columns: 1fr;
  }

  /* keep text before image on mobile, even for reversed rows */
  .pv-feature__media,
  .pv-feature--reverse .pv-feature__media {
    order: 0;
  }
  .pv-feature__media {
    aspect-ratio: 16 / 9;
  }

  .pv-partners__featured {
    grid-template-columns: 1fr;
  }
  .pv-partners__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .pv-gallery {
    grid-template-columns: 1fr;
  }
  /* .pv-gallery .pv-ph:nth-child(n) {
    grid-column: span 1;
    aspect-ratio: 1 / 1;
  } */

  .pv-hero__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--pv-6);
  }
  .pv-hero__info {
    text-align: left;
    margin-left: 0;
  }
  .pv-hero__info-row {
    justify-content: flex-start;
  }

  .pv-charity__media {
    aspect-ratio: 4 / 3;
    order: -1;
  }

  .pv-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  
}
@media (min-width: 768px) and (max-width: 1440px) {
  .pv-hero__ghost{
    line-height: 1.6;
  }
}

/* Small mobile */
@media (max-width: 479px) {
  .pv-footer__top {
    grid-template-columns: 1fr;
  }
  .pv-partners__row {
    grid-template-columns: 1fr;
  }
  .pv-btn__face {
    width: 100%;
  }
  .pv-section__cta .pv-btn,
  .pv-hero__cta .pv-btn {
    width: 100%;
  }
}

/* Large screens — content already capped at 1312px, just keep centered */
@media (min-width: 1440px) {
  .pv-hero__inner {
    padding-block: 112px;
  }
  .pv-hero__ghost {
    line-height: 1.4;
  }
}


/* 20. REDUCED MOTION ------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .pv-marquee__track {
    animation: none;
    transform: none;
  }
  .pv-marquee {
    overflow-x: auto;
  } /* let users scroll the line manually */
}

/* =====================================================================
   21. ARTISTS / REGISTRATION PAGE (artists.html)
   ---------------------------------------------------------------------
   Self-contained block appended after the main-page styles. It reuses the
   shared design tokens (:root) plus .pv-container, .pv-section, .pv-eyebrow
   and the .pv-btn system. All NEW selectors use the pv-areg-* and pv-reg-*
   namespaces, which do not exist on the main page, so nothing here can
   collide with the landing-page styles that share this same file.
   The global reduced-motion block (section 20) already covers these
   elements via its universal selector.
   ===================================================================== */

/* --- Hero (logo + headline) --------------------------------------- */
.pv-areg-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  min-height: clamp(440px, 66vh, 760px);
  padding-block: var(--pv-9) var(--pv-8);
  background:
    radial-gradient(
      82% 60% at 50% -4%,
      rgba(253, 44, 45, 0.18),
      transparent 60%
    ),
    radial-gradient(
      70% 70% at 50% 116%,
      rgba(76, 72, 127, 0.34),
      transparent 62%
    ),
    var(--pv-bg);
}
.pv-areg-hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--pv-noise);
  background-size: 180px 180px;
  opacity: 0.05;
  mix-blend-mode: overlay;
}
.pv-areg-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: var(--pv-5);
}
.pv-areg-hero__logo {
  display: inline-block;
  width: clamp(200px, 28vw, 340px);
  transition:
    transform var(--pv-t),
    filter var(--pv-t);
    justify-content: center;
}
.pv-areg-hero__logo img {
  width: 30%;
  margin:0 auto;
}
.pv-areg-hero__logo:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 10px 28px rgba(253, 44, 45, 0.28));
}
.pv-areg-hero__title {
  max-width: 20ch;
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--pv-white);
  text-wrap: balance;
}
.pv-areg-hero__sub {
  max-width: 54ch;
  color: var(--pv-muted);
  font-size: clamp(16px, 1.5vw, 19px);
}

/* --- Registration grid -------------------------------------------- */
.pv-reg__eyebrow {
  margin-bottom: var(--pv-6);
}
.pv-reg__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--pv-6);
}
.pv-reg__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    180deg,
    rgba(141, 134, 200, 0.06),
    rgba(141, 134, 200, 0.02)
  );
  box-shadow: inset 0 0 0 1px var(--pv-hairline);
  clip-path: var(--pv-clip); /* required notched-corner shape */
  overflow: hidden;
  transition:
    box-shadow var(--pv-t),
    transform var(--pv-t);
}
.pv-reg__card:hover {
  box-shadow: inset 0 0 0 1px var(--pv-hairline-2);
  transform: translateY(-3px);
}
.pv-reg__media {
  position: relative;
  display: block;
}
.pv-reg__media::after {
  /* gentle bottom blend into the card body; starts well below the
     vertically-centred banner title so the title stays crisp */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 74%, rgba(28, 20, 31, 0.5));
}
.pv-reg__img {
  width: 100%;
  height: auto;
  display: block;
}
.pv-reg__body {
  display: flex;
  flex-direction: column;
  gap: var(--pv-5);
  padding: var(--pv-6);
  flex: 1 1 auto;
}
.pv-reg__desc {
  color: var(--pv-muted);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
}
.pv-reg__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--pv-4);
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: var(--pv-1);
}
.pv-reg__admin {
  display: inline-flex;
  align-items: center;
  gap: var(--pv-2);
  font-weight: 600;
  font-size: 14px;
  color: var(--pv-lilac);
  transition: color var(--pv-t-fast);
}
.pv-reg__admin:hover {
  color: var(--pv-orange);
}
.pv-reg__admin svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: none;
}
.pv-reg__admin-label {
  color: var(--pv-faint);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
}

/* --- Registration page responsive --------------------------------- */
@media (max-width: 767px) {
  .pv-reg__list {
    grid-template-columns: 1fr;
    gap: var(--pv-5);
  }
  .pv-areg-hero {
    min-height: clamp(360px, 72vh, 560px);
  }
  .pv-hero__top .pv-hero__ghost{
  top: 0.2em;
  line-height: 2;
}
}
@media (max-width: 479px) {
  .pv-reg__foot {
    align-items: stretch;
  }
  .pv-reg__foot .pv-btn,
  .pv-reg__foot .pv-btn__face {
    width: 100%;
  }
  .pv-hero__top .pv-hero__ghost{
  top: -0.2em;
  line-height: 2;
}
}