/* ═══════════════════════════════════════════════════
   FE(iE)SiN — Fundacja Emerytki (i Emeryci) Sztuki i Nauki
   Design system matching NMWA (nmwa.org)
   ═══════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS (matching NMWA) ─── */
:root {
  /* NMWA-style palette adapted for FE(iE)SiN */
  --violet:       #950e7c;           /* NMWA primary link/accent — matches feiesin plum */
  --violet-light: #fff4fd;
  --marine:       #1f0d77;           /* NMWA dark navy sections */
  --azure:        #0172ee;           /* NMWA blue accent */
  --azure-light:  #f2f8ff;
  --gold:         #ffc857;           /* NMWA CTA gold */
  --gold-light:   #fff8ea;
  --green:        #00a884;           /* NMWA green */
  --green-dark:   #00866a;
  --green-light:  #f5fffd;

  /* Neutrals — exact NMWA */
  --white:        #fff;
  --off-white:    #fefefe;
  --lt-gray:      #efeff2;
  --mid-lt-gray:  #d8d8d8;
  --gray:         #a4a4a4;
  --mid-dark-gray:#676767;
  --text:         #222;
  --black:        #000;

  /* Typography — NMWA uses Flama (commercial). We use Figtree as closest open substitute:
     geometric sans-serif, clean, similar x-height and letter spacing */
  --font-body:    'Figtree', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-heading: 'Figtree', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Spacing — NMWA rhythm */
  --space-xs:  .3125rem;    /* 5px */
  --space-sm:  .625rem;     /* 10px */
  --space-md:  1.25rem;     /* 20px */
  --space-lg:  2.5rem;      /* 40px */
  --space-xl:  5rem;        /* 80px */
  --space-2xl: 7.5rem;      /* 120px */

  /* Layout */
  --container-max: 75rem;   /* 1200px — NMWA uses 75rem */
  --container-pad: 5rem;
  --header-height: 150px;

  /* Transitions — NMWA uses .4s linear() */
  --transition: .4s ease;
}


/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;        /* NMWA body size */
  line-height: 1.7;           /* NMWA line-height */
  letter-spacing: .03125rem;  /* NMWA letter-spacing */
  color: var(--text);
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--violet);
  text-decoration: underline;
  font-weight: 500;
  transition: var(--transition);
}

a:hover {
  color: var(--violet);
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

::selection {
  background: var(--violet);
  color: var(--white);
}


/* ─── CONTAINER ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

@media (max-width: 1024px) {
  .container { padding-left: 2.5rem; padding-right: 2.5rem; }
}
@media (max-width: 640px) {
  .container { padding-left: 1rem; padding-right: 1rem; }
}


/* ─── TYPOGRAPHY — NMWA style ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: .03125rem;
  color: var(--text);
  line-height: 1.15;
}

h1 {
  font-size: 3.75rem;
  line-height: 1.1333;
}

h2 {
  font-size: 2rem;
  line-height: 1.40625;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.40625;
}

@media (max-width: 1024px) {
  h1 { font-size: 2.1875rem; }
  h2 { font-size: 1.5625rem; }
}

p {
  margin-bottom: 1em;
}


/* ─── BUTTONS / CTAs — NMWA style ───
   NMWA buttons: gold bg, bold text, border-bottom .25rem solid #222,
   pill-shaped for WP blocks but underline-style for custom CTAs */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 2.1875rem;
  letter-spacing: .0625rem;
  text-decoration: none;
  text-transform: capitalize;
  padding: .9375rem 1.25rem;
  border: none;
  border-bottom: .25rem solid var(--text);
  background-color: var(--gold);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn:hover {
  background-color: var(--gold);
  border-bottom-color: var(--white);
  color: var(--text);
  text-decoration: none;
}

/* Outline / secondary button */
.btn--outline {
  background-color: transparent;
  color: var(--white);
  border-bottom-color: var(--white);
}
.btn--outline:hover {
  background-color: var(--gold);
  color: var(--text);
  border-bottom-color: var(--white);
}

/* Dark button */
.btn--dark {
  background-color: var(--text);
  color: var(--white);
  border-bottom-color: var(--text);
}
.btn--dark:hover {
  background-color: var(--gold);
  color: var(--text);
  border-bottom-color: var(--white);
}

/* Ghost / bordered button (for secondary actions) */
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: .125rem solid var(--text);
  border-bottom: .25rem solid var(--text);
  padding: .75rem 1.25rem;
}
.btn--ghost:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  border-bottom-color: var(--white);
}

/* Text link button — NMWA style underline CTA */
.btn--text {
  background: none;
  padding: 0;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  border: none;
  border-bottom: .25rem solid var(--text);
  text-transform: capitalize;
  text-decoration: none;
  line-height: 2.75rem;
}
.btn--text:hover {
  background-color: var(--gold);
  border-bottom-color: var(--white);
  color: var(--text);
}

.btn--lg {
  padding: 1.25rem 1.875rem;
  font-size: 1.5rem;
}


/* ═══════════════════════════════════════════════════
   HEADER / NAVIGATION — NMWA style
   ═══════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: .0625rem solid var(--lt-gray);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: 0 .125rem .625rem rgba(0, 0, 0, 0.08);
}

.header__inner {
  max-width: none;
  margin: 0 auto;
  padding: 0 var(--space-md) 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

@media (max-width: 1024px) {
  .header__inner { padding: 0 var(--space-sm); }
}
@media (max-width: 640px) {
  .header__inner { padding: 0 .5rem; }
}

.header__logo {
  flex-shrink: 0;
  text-decoration: none;
}

.header__logo-img {
  height: 130px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__nav-link {
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .0625rem;
  text-transform: uppercase;
  color: var(--text);
  padding: .7rem .75rem;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: var(--transition);
}

.header__nav-link:hover {
  color: var(--violet);
  text-decoration: none;
}

.header__nav-link--active {
  color: var(--violet);
}

/* NMWA-style bottom border on active nav */
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -.5rem;
  left: 1rem;
  right: 1rem;
  height: .1875rem;
  background: var(--violet);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header__actions .btn {
  font-size: .875rem;
  padding: .625rem 1rem;
  line-height: 1.5rem;
}

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  z-index: 1001;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all .3s ease;
  transform-origin: center;
}

.header__burger--open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__burger--open span:nth-child(2) {
  opacity: 0;
}
.header__burger--open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
.header__mobile {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
}

.header__mobile--open {
  display: block;
}

.header__mobile-nav {
  display: flex;
  flex-direction: column;
  padding: var(--space-lg) 2.5rem;
}

.header__mobile-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  padding: .9375rem 0;
  border-bottom: .0625rem solid var(--lt-gray);
  text-decoration: none;
  transition: var(--transition);
}

.header__mobile-link:hover,
.header__mobile-link--active {
  color: var(--violet);
  text-decoration: none;
}

.header__mobile-link--cta {
  margin-top: var(--space-md);
  background: var(--gold);
  color: var(--text);
  text-align: center;
  padding: 1.25rem;
  border: none;
  border-bottom: .25rem solid var(--text);
  font-weight: 700;
}
.header__mobile-link--cta:hover {
  border-bottom-color: var(--white);
  color: var(--text);
}


/* ═══════════════════════════════════════════════════
   HERO — NMWA style (big type, colored bg)
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--marine);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--marine);
  background-image: url('../images/Joan-Mitchell_Untitled_1992-Brian-Buckley_48325-aspect-ratio-2.25-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(31, 13, 119, 0.88) 0%,
    rgba(31, 13, 119, 0.7) 40%,
    rgba(149, 14, 124, 0.45) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + var(--space-xl));
  padding-bottom: var(--space-xl);
}

.hero__text {
  max-width: 48rem;
}

.hero__kicker {
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .0625rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 1.1333;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

@media (max-width: 1024px) {
  .hero__title { font-size: 2.1875rem; }
}

.hero__title em {
  color: var(--gold);
  font-style: italic;
}

.hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
  margin-bottom: var(--space-lg);
}

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


/* ═══════════════════════════════════════════════════
   MISSION STRIP — violet bg, NMWA style
   ═══════════════════════════════════════════════════ */
.mission-strip {
  background: var(--violet);
  padding: var(--space-xl) 0;
}

.mission-strip__inner {
  text-align: center;
}

.mission-strip__quote {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.40625;
  letter-spacing: .03125rem;
  color: var(--white);
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 1024px) {
  .mission-strip__quote { font-size: 1.5625rem; }
}

.mission-strip__quote::before {
  content: '';
  display: block;
  width: 3rem;
  height: .1875rem;
  background: var(--gold);
  margin: 0 auto var(--space-md);
}


/* ═══════════════════════════════════════════════════
   SECTIONS — SHARED
   ═══════════════════════════════════════════════════ */
.section {
  padding: var(--space-xl) 0;
}

.section--cream {
  background: var(--lt-gray);
}

.section--violet {
  background: var(--violet);
}

.section--marine {
  background: var(--marine);
}

.section--gold {
  background: var(--gold-light);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-lg);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.section__kicker {
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .0625rem;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: var(--space-xs);
}

.section__kicker--light {
  color: var(--gold);
}

.section__title {
  margin-bottom: var(--space-md);
}

.section__title--light {
  color: var(--white);
}

.section__lead {
  font-size: 1.125rem;
  color: var(--mid-dark-gray);
  line-height: 1.7;
}

.section__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
}

.section__cta {
  text-align: center;
  margin-top: var(--space-lg);
}


/* ═══════════════════════════════════════════════════
   SPLIT LAYOUT (About section)
   ═══════════════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__image-frame {
  position: relative;
  overflow: hidden;
}

.split__image-placeholder {
  position: relative;
  z-index: 1;
  aspect-ratio: 760/540;
  background: var(--lt-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split__image-placeholder span {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--gray);
  font-size: 1rem;
}

.split__content .section__kicker {
  text-align: left;
}

.split__content .section__title {
  text-align: left;
}


/* ═══════════════════════════════════════════════════
   ARTIST CARDS — NMWA grid style
   ═══════════════════════════════════════════════════ */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.artist-card {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.artist-card:hover {
  text-decoration: none;
}

.artist-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.artist-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--lt-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s ease;
}

.artist-card__placeholder span {
  font-weight: 500;
  color: var(--gray);
  font-size: .875rem;
}

.artist-card:hover .artist-card__placeholder {
  transform: scale(1.04);
}

.artist-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(149, 14, 124, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.artist-card:hover .artist-card__overlay {
  opacity: 1;
}

.artist-card__view {
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .0625rem;
  text-transform: uppercase;
  color: var(--white);
  padding: .625rem 1.25rem;
  border: .125rem solid var(--white);
}

.artist-card__info {
  padding: var(--space-md) 0 0;
}

.artist-card__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .1875rem;
  transition: color var(--transition);
}

.artist-card:hover .artist-card__name {
  color: var(--violet);
}

.artist-card__discipline {
  font-size: .875rem;
  color: var(--mid-dark-gray);
  font-weight: 400;
  margin: 0;
}


/* ═══════════════════════════════════════════════════
   PILLARS — marine bg, NMWA section style
   ═══════════════════════════════════════════════════ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.pillar {
  text-align: center;
  padding: var(--space-lg);
  border: .0625rem solid rgba(255, 255, 255, 0.15);
  transition: border-color var(--transition), background var(--transition);
}

.pillar:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.pillar__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto var(--space-md);
  color: var(--gold);
}

.pillar__icon svg {
  width: 100%;
  height: 100%;
}

.pillar__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.pillar__text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Use marine bg for pillar section */
.section--plum {
  background: var(--marine);
}


/* ═══════════════════════════════════════════════════
   EVENT CARDS — NMWA style
   ═══════════════════════════════════════════════════ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.event-card {
  display: block;
  background: var(--white);
  border: .0625rem solid var(--lt-gray);
  transition: box-shadow var(--transition);
  text-decoration: none;
}

.event-card:hover {
  box-shadow: 0 .25rem 1.5rem rgba(0, 0, 0, 0.08);
  text-decoration: none;
}

.event-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.event-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--lt-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-card__placeholder span {
  font-weight: 500;
  color: var(--gray);
  font-size: .875rem;
}

/* NMWA-style date badge — big number + month */
.event-card__date-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--white);
  border: .0625rem solid var(--white);
  padding: .625rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.event-card__day {
  font-family: var(--font-heading);
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 1.1333;
  letter-spacing: .0625rem;
  color: var(--text);
}

@media (max-width: 1024px) {
  .event-card__day { font-size: 2.1875rem; }
}

.event-card__month {
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .0625rem;
  text-transform: uppercase;
  color: var(--text);
  margin-top: .25rem;
}

.event-card__body {
  padding: var(--space-md);
}

.event-card__category {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .0625rem;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: var(--space-xs);
}

.event-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: var(--space-xs);
  transition: color var(--transition);
}

.event-card:hover .event-card__title {
  color: var(--violet);
}

.event-card__meta {
  font-size: .875rem;
  color: var(--mid-dark-gray);
  margin-bottom: var(--space-sm);
}

.event-card__meta span {
  display: block;
}

.event-card__cta {
  font-size: .875rem;
  font-weight: 700;
  color: var(--violet);
  text-decoration: underline;
  letter-spacing: .03125rem;
}

.event-card:hover .event-card__cta {
  text-decoration: none;
}


/* ═══════════════════════════════════════════════════
   DONATE BANNER — gold bg, NMWA style
   ═══════════════════════════════════════════════════ */
.donate-banner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--space-lg);
  align-items: center;
}

.donate-banner__title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-md);
}

@media (max-width: 1024px) {
  .donate-banner__title { font-size: 1.5625rem; }
}

.donate-banner__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--space-lg);
}

.donate-banner__ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.donate-banner__card {
  background: var(--white);
  padding: var(--space-lg);
  text-align: center;
  border: .0625rem solid var(--lt-gray);
}

.donate-banner__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto var(--space-md);
  color: var(--violet);
}

.donate-banner__icon svg {
  width: 100%;
  height: 100%;
}

.donate-banner__stat {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .3125rem;
}

.donate-banner__stat-desc {
  font-size: .875rem;
  color: var(--mid-dark-gray);
  line-height: 1.6;
  margin: 0;
}


/* ═══════════════════════════════════════════════════
   NEWS CARDS
   ═══════════════════════════════════════════════════ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.news-card {
  display: block;
  text-decoration: none;
}

.news-card:hover {
  text-decoration: none;
}

.news-card__image {
  overflow: hidden;
  aspect-ratio: 16/10;
  margin-bottom: var(--space-md);
}

.news-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--lt-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card__placeholder span {
  font-weight: 500;
  color: var(--gray);
  font-size: .875rem;
}

.news-card__date {
  font-size: .875rem;
  font-weight: 500;
  color: var(--mid-dark-gray);
  display: block;
  margin-bottom: .3125rem;
}

.news-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: var(--space-xs);
  transition: color var(--transition);
}

.news-card:hover .news-card__title {
  color: var(--violet);
}

.news-card__excerpt {
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--mid-dark-gray);
  margin: 0;
}


/* ═══════════════════════════════════════════════════
   NEWSLETTER — NMWA style
   ═══════════════════════════════════════════════════ */
.newsletter {
  background: var(--lt-gray);
  padding: var(--space-xl) 0;
  border-top: .0625rem solid var(--mid-lt-gray);
}

.newsletter__inner {
  max-width: 37.5rem;
  margin: 0 auto;
  text-align: center;
}

.newsletter__title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.newsletter__text {
  font-size: 1.125rem;
  color: var(--mid-dark-gray);
  margin-bottom: var(--space-lg);
}

.newsletter__form {
  display: flex;
  gap: 0;
}

.newsletter__input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .5rem;
  border: .0625rem solid var(--mid-lt-gray);
  background: var(--white);
  color: var(--text);
  outline: none;
  height: 2.4375rem;
  transition: border-color .25s ease-in-out, box-shadow .5s;
}

.newsletter__input::placeholder {
  color: var(--gray);
}

.newsletter__input:focus {
  border-color: var(--violet);
  box-shadow: 0 0 .3125rem rgba(149, 14, 124, 0.15);
}

.newsletter__form .btn {
  font-size: .875rem;
  padding: .5rem 1.25rem;
  line-height: 1.4375rem;
}


/* ═══════════════════════════════════════════════════
   FOOTER — dark, NMWA style
   ═══════════════════════════════════════════════════ */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: .0625rem solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  height: 2.5rem;
  width: auto;
  margin-bottom: var(--space-md);
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  max-width: 20rem;
  margin: 0;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .0625rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-md);
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__link {
  font-size: .875rem;
  color: rgba(255, 255, 255, 0.5);
  padding: .3rem 0;
  text-decoration: none;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
}

.footer__copy {
  font-size: .8125rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.footer__legal {
  display: flex;
  gap: var(--space-md);
}

.footer__legal-link {
  font-size: .8125rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__legal-link:hover {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}


/* ═══════════════════════════════════════════════════
   HERO — NMWA HOMEPAGE STYLE (title + full-width image)
   ═══════════════════════════════════════════════════ */
.hero-nmwa {
  padding-top: var(--header-height);
  background: var(--white);
}

.hero-nmwa__title-wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-xl) var(--container-pad) var(--space-lg);
}

.hero-nmwa__title {
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 1.1333;
  color: var(--text);
  max-width: 50rem;
}

.hero-nmwa__image-wrap {
  margin: 0;
  width: 100%;
}

.hero-nmwa__image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-nmwa__caption {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-sm) var(--container-pad) 0;
  font-size: .875rem;
  color: var(--mid-dark-gray);
  font-style: normal;
}

@media (max-width: 1024px) {
  .hero-nmwa__title-wrap { padding: var(--space-lg) 2.5rem var(--space-md); }
  .hero-nmwa__title { font-size: 2.1875rem; }
  .hero-nmwa__caption { padding-left: 2.5rem; padding-right: 2.5rem; }
}
@media (max-width: 640px) {
  .hero-nmwa__title-wrap { padding: var(--space-lg) 1rem var(--space-md); }
  .hero-nmwa__caption { padding-left: 1rem; padding-right: 1rem; }
}


/* ═══════════════════════════════════════════════════
   INTRO SECTION — NMWA "Now on View" style
   ═══════════════════════════════════════════════════ */
.intro-section {
  padding: var(--space-xl) 0;
  border-bottom: .0625rem solid var(--lt-gray);
}

.intro-section__inner {
  max-width: 48rem;
}

.intro-section__featured-title {
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .0625rem;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: var(--space-md);
}

.intro-section__text {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--text);
  margin-bottom: var(--space-md);
}


/* ═══════════════════════════════════════════════════
   VISIT / ABOUT BLOCK — NMWA split layout
   ═══════════════════════════════════════════════════ */
.visit-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 28rem;
}

.visit-block__text-side {
  display: flex;
  align-items: center;
  padding: var(--space-xl) var(--container-pad);
  background: var(--lt-gray);
}

.visit-block__copy {
  max-width: 28rem;
}

.visit-block__copy h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.visit-block__copy p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.visit-block__image-side {
  position: relative;
  overflow: hidden;
}

.visit-block__placeholder {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  background: var(--mid-lt-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit-block__placeholder span {
  font-weight: 500;
  color: var(--gray);
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .visit-block { grid-template-columns: 1fr; }
  .visit-block__text-side { padding: var(--space-lg) 2.5rem; }
}
@media (max-width: 640px) {
  .visit-block__text-side { padding: var(--space-lg) 1rem; }
}


/* ═══════════════════════════════════════════════════
   RESOURCE SECTION — NMWA "Current Exhibitions" style
   green bg, overlapping bordered title
   ═══════════════════════════════════════════════════ */
.resource-section {
  background: var(--green);
  padding: var(--space-xl) var(--container-pad) var(--space-xl);
  position: relative;
}

.resource-section__title {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  border: .25rem solid var(--black);
  padding: 1.25rem 2.5rem;
  position: relative;
  z-index: 2;
  transform: translateY(-50%);
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.resource-section__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.resource-card {
  background: var(--white);
  overflow: hidden;
}

.resource-card__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  padding: var(--space-md) var(--space-md) var(--space-sm);
}

.resource-card__img {
  overflow: hidden;
}

.resource-card__placeholder {
  aspect-ratio: 4/3;
  background: var(--lt-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s ease;
}

.resource-card__placeholder span {
  font-weight: 500;
  color: var(--gray);
  font-size: .875rem;
}

.resource-card:hover .resource-card__placeholder {
  transform: scale(1.04);
}

.resource-card__copy {
  padding: var(--space-md);
}

.resource-card__copy p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

@media (max-width: 1024px) {
  .resource-section { padding-left: 2.5rem; padding-right: 2.5rem; }
  .resource-section__grid { grid-template-columns: 1fr; max-width: 32rem; }
  .resource-section__title { font-size: 1.5625rem; padding: 1rem 1.5rem; }
}
@media (max-width: 640px) {
  .resource-section { padding-left: 1rem; padding-right: 1rem; }
}


/* ═══════════════════════════════════════════════════
   EVENTS HEADER — NMWA bordered title style
   ═══════════════════════════════════════════════════ */
.events-header {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  border: .25rem solid var(--black);
  border-left: 0;
  padding: 1.875rem 5rem;
  margin-bottom: var(--space-lg);
  display: inline-block;
}

@media (max-width: 1024px) {
  .events-header {
    font-size: 1.5625rem;
    padding: 1.25rem 2.5rem;
  }
}
@media (max-width: 640px) {
  .events-header {
    padding: 1rem 1rem;
    border-left: .25rem solid var(--black);
    margin-left: 1rem;
  }
}


/* ═══════════════════════════════════════════════════
   FACT BLOCK — NMWA navy quote + text + image grid
   ═══════════════════════════════════════════════════ */
.fact-block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 24rem;
}

.fact-block__quote-side {
  background: var(--marine);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-lg);
}

.fact-block__quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  max-width: 22rem;
  margin: 0;
}

.fact-block__text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--white);
}

.fact-block__text-side h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.fact-block__text-side p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.fact-block__image-side {
  overflow: hidden;
}

.fact-block__placeholder {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  background: var(--lt-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fact-block__placeholder span {
  font-weight: 500;
  color: var(--gray);
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .fact-block { grid-template-columns: 1fr; }
  .fact-block__quote-side { padding: var(--space-lg) 2.5rem; }
  .fact-block__text-side { padding: var(--space-lg) 2.5rem; }
  .fact-block__quote { max-width: none; }
}
@media (max-width: 640px) {
  .fact-block__quote-side { padding: var(--space-lg) 1rem; }
  .fact-block__text-side { padding: var(--space-lg) 1rem; }
}


/* ═══════════════════════════════════════════════════
   QUOTE BLOCK — NMWA violet quote + text + image grid
   ═══════════════════════════════════════════════════ */
.quote-block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 24rem;
}

.quote-block__quote-side {
  background: var(--violet);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-lg);
}

.quote-block__quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  max-width: 22rem;
  margin: 0 0 var(--space-md);
}

.quote-block__source {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
}

.quote-block__text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--white);
}

.quote-block__text-side h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.quote-block__text-side p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.quote-block__image-side {
  overflow: hidden;
  margin: 0;
}

.quote-block__placeholder {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  background: var(--lt-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-block__placeholder span {
  font-weight: 500;
  color: var(--gray);
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .quote-block { grid-template-columns: 1fr; }
  .quote-block__quote-side { padding: var(--space-lg) 2.5rem; }
  .quote-block__text-side { padding: var(--space-lg) 2.5rem; }
  .quote-block__quote { max-width: none; }
}
@media (max-width: 640px) {
  .quote-block__quote-side { padding: var(--space-lg) 1rem; }
  .quote-block__text-side { padding: var(--space-lg) 1rem; }
}


/* ═══════════════════════════════════════════════════
   CTA WRAP / LINK — NMWA gold inline CTA with arrow
   ═══════════════════════════════════════════════════ */
.cta-wrap {
  margin-top: var(--space-sm);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  background: var(--gold);
  padding: .625rem 1rem;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .03125rem;
  color: var(--text);
  border-bottom: .25rem solid var(--text);
  transition: var(--transition);
}

.cta-link:hover {
  border-bottom-color: var(--white);
  color: var(--text);
  text-decoration: none;
}

.cta-link__text {
  line-height: 1.5;
}

.cta-link__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.cta-link__icon svg {
  width: 12px;
  height: 12px;
}


/* ═══════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal--delay-1 { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.reveal--delay-3 { transition-delay: 0.45s; }

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════
   PAGE HERO — subpages, NMWA style
   ═══════════════════════════════════════════════════ */
.page-hero {
  background: var(--marine);
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__kicker {
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .0625rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.page-hero__title {
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 1.1333;
  color: var(--white);
  margin-bottom: var(--space-md);
}

@media (max-width: 1024px) {
  .page-hero__title { font-size: 2.1875rem; }
}

.page-hero__lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 37.5rem;
  margin: 0;
}


/* ─── ABOUT PAGE ─── */
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.about-value {
  padding: var(--space-lg);
  border: .0625rem solid var(--mid-lt-gray);
  transition: border-color var(--transition);
}

.about-value:hover {
  border-color: var(--violet);
}

.about-value__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.about-value__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}


/* ─── TEAM ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.team-card {
  text-align: center;
}

.team-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.team-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--lt-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.team-card__placeholder span {
  font-weight: 500;
  color: var(--gray);
  font-size: .875rem;
}

.team-card__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .1875rem;
}

.team-card__role {
  font-size: .875rem;
  color: var(--mid-dark-gray);
  margin: 0;
}


/* ─── ARTISTS DIRECTORY ─── */
.artists-filter {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.artists-filter__btn {
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .0625rem;
  text-transform: uppercase;
  padding: .625rem 1.25rem;
  color: var(--text);
  border: .125rem solid var(--text);
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
}

.artists-filter__btn:hover,
.artists-filter__btn--active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text);
}

.artists-directory {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}


/* ─── EVENTS PAGE ─── */
.events-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.event-card--horizontal {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
}

.event-card--horizontal .event-card__image {
  aspect-ratio: auto;
  min-height: 16.25rem;
}


/* ─── DONATE PAGE ─── */
.donate-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.donate-option {
  padding: var(--space-lg);
  border: .0625rem solid var(--mid-lt-gray);
  transition: all var(--transition);
}

.donate-option:hover {
  border-color: var(--violet);
}

.donate-option__icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--violet);
  margin-bottom: var(--space-md);
}

.donate-option__icon svg {
  width: 100%;
  height: 100%;
}

.donate-option__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.donate-option__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--space-md);
}

/* Donation amount selector — NMWA button style */
.donate-amounts {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.donate-amount {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: .625rem 1.25rem;
  border: .125rem solid var(--text);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  color: var(--text);
}

.donate-amount:hover,
.donate-amount--active {
  background: var(--gold);
  border-color: var(--gold);
}

.donate-custom {
  flex: 1;
  min-width: 7.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .625rem 1rem;
  border: .125rem solid var(--text);
  outline: none;
  transition: border-color var(--transition);
}

.donate-custom:focus {
  border-color: var(--violet);
}

/* 1.5% section */
.tax-section {
  text-align: center;
}

.tax-section__title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.tax-section__krs {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .0625rem;
  margin: var(--space-md) 0;
}

.tax-section__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 35rem;
  margin: 0 auto;
}


/* ─── SHOP PLACEHOLDER ─── */
.shop-placeholder {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.shop-placeholder__icon {
  width: 5rem;
  height: 5rem;
  color: var(--gray);
  margin: 0 auto var(--space-lg);
}

.shop-placeholder__icon svg {
  width: 100%;
  height: 100%;
}

.shop-placeholder__title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.shop-placeholder__text {
  font-size: 1.125rem;
  color: var(--mid-dark-gray);
  max-width: 30rem;
  margin: 0 auto var(--space-md);
  line-height: 1.7;
}

.shop-placeholder__notify {
  display: flex;
  gap: 0;
  max-width: 27.5rem;
  margin: 0 auto;
}


/* ─── CONTACT FORM ─── */
.contact-form {
  max-width: 40rem;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .3125rem;
  line-height: 1.8;
}

.form-input,
.form-textarea {
  display: block;
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .5rem;
  height: 2.4375rem;
  border: .0625rem solid var(--mid-lt-gray);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color .25s ease-in-out, box-shadow .5s;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 .3125rem rgba(149, 14, 124, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 8.75rem;
  height: auto;
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__burger { display: flex; }
  .header__actions { display: none; }

  .split { grid-template-columns: 1fr; gap: var(--space-lg); }
  .split--reverse { direction: ltr; }

  .artists-grid,
  .artists-directory { grid-template-columns: repeat(2, 1fr); }

  .pillars { grid-template-columns: 1fr; gap: var(--space-md); }

  .events-grid { grid-template-columns: 1fr; }

  .donate-banner { grid-template-columns: 1fr; }

  .news-grid { grid-template-columns: 1fr; gap: var(--space-md); }

  .footer__top { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer__links { grid-template-columns: repeat(2, 1fr); }

  .events-list { grid-template-columns: 1fr; }
  .event-card--horizontal { grid-column: span 1; grid-template-columns: 1fr; }

  .donate-options { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }

  .artists-grid,
  .artists-directory { grid-template-columns: 1fr; gap: var(--space-lg); }

  .newsletter__form { flex-direction: column; }

  .footer__links { grid-template-columns: 1fr; gap: var(--space-md); }

  .footer__bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }

  .donate-amounts { flex-direction: column; }

  .shop-placeholder__notify { flex-direction: column; }

  .team-grid { grid-template-columns: 1fr; max-width: 20rem; margin: 0 auto; }
}


/* ─── Smooth scroll offset ─── */
[id] {
  scroll-margin-top: calc(var(--header-height) + var(--space-lg));
}


/* ─── PRINT ─── */
@media print {
  .header, .hero__bg, .newsletter, .header__burger { display: none; }
  body { color: #000; background: #fff; }
}
