/* ============================================================
   TOONKAMI — design system
   Palette: nuclear pink, violet, near-black, white. Surfaces stay
   dark so the pink reads as an accent rather than the whole page.
   ============================================================ */

/* ---------- 1. Tokens ---------- */

:root {
  /* Surfaces — dark, with a magenta undertone */
  --color-bg:          #0b0416;
  --color-bg-deep:     #070310;
  --color-surface:     #180a2e;
  --color-surface-2:   #22103f;
  --color-surface-3:   #2c1552;

  /* Brand */
  --color-pink:        #ff2ecb;  /* nuclear / hot pink — primary accent */
  --color-pink-hot:    #ff00e5;  /* magenta, source of the glow rgba()s  */
  --color-pink-soft:   #ffa6ec;
  --color-purple:      #8b2ff5;
  --color-purple-deep: #760fd6;  /* deep ToonKami violet                 */

  /* Text */
  --color-text:        #f7f0ff;
  --color-muted:       #c3aee0;
  --color-ink:         #12051f;  /* dark text, for light surfaces only   */

  /* Lines & effects */
  --color-line:        rgba(255, 255, 255, 0.10);
  --color-line-strong: rgba(255, 46, 203, 0.45);
  --shadow-neon:       0 0 0 1px rgba(255, 46, 203, 0.30),
                       0 10px 30px -12px rgba(255, 0, 229, 0.55);
  --shadow-card:       0 18px 40px -22px rgba(0, 0, 0, 0.95);
  --shadow-lift:       0 22px 46px -20px rgba(255, 0, 229, 0.45),
                       0 0 0 1px rgba(255, 46, 203, 0.55);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Spacing scale (8px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* Layout */
  --container: 1180px;
  --gutter: clamp(1rem, 4vw, 2.5rem);

  /* Type */
  --font-display: "Press Start 2P", "Courier New", monospace;
  --font-ui: "Montserrat", "Helvetica Neue", Arial, system-ui, sans-serif;

  --step--1: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  --step-0:  clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  --step-1:  clamp(1.1rem, 1rem + 0.4vw, 1.3rem);
  --step-2:  clamp(1.35rem, 1.15rem + 0.8vw, 1.75rem);
  --step-3:  clamp(1.7rem, 1.35rem + 1.5vw, 2.5rem);
  --step-4:  clamp(2.1rem, 1.5rem + 2.6vw, 3.4rem);

  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
  --ease-nav: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-nav: 280ms;
}

/* ---------- 2. Reset / base ---------- */

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

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

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: var(--font-ui);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  /* Deep violet field with magenta bloom — pink becomes an accent. */
  background-image:
    radial-gradient(1100px 620px at 78% -12%, rgba(255, 46, 203, 0.22), transparent 62%),
    radial-gradient(900px 620px at 8% 8%, rgba(139, 47, 245, 0.22), transparent 60%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-deep) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img, video { height: auto; }

a { color: var(--color-pink-soft); }

h1, h2, h3, h4 {
  margin: 0 0 var(--space-4);
  line-height: 1.15;
  text-wrap: balance;
}

p { margin: 0 0 var(--space-4); }

ul { list-style: none; margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--color-pink-soft);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  z-index: 100;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-pill);
  background: var(--color-pink);
  color: var(--color-ink);
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus-visible { top: var(--space-4); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ---------- 3. Layout primitives ---------- */

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

.section { padding-block: clamp(2.5rem, 6vw, var(--space-9)); }
.section--tight { padding-block: clamp(2rem, 4vw, var(--space-7)); }

.page-head { margin-bottom: clamp(1.75rem, 4vw, var(--space-7)); }
.page-head--center { text-align: center; }
.page-head--center .lede { margin-inline: auto; }

/* Eyebrow / kicker — the restrained pixel accent */
.eyebrow {
  display: inline-block;
  margin-bottom: var(--space-4);
  font-family: var(--font-display);
  font-size: clamp(0.55rem, 0.5rem + 0.25vw, 0.7rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-pink);
  text-shadow: 0 0 18px rgba(255, 46, 203, 0.55);
}

/* Page title — short words, so the pixel face stays readable */
.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 0.9rem + 2.2vw, 2.6rem);
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text);
  text-shadow:
    0 0 24px rgba(255, 46, 203, 0.55),
    0 4px 0 rgba(118, 15, 214, 0.9);
}

.section-title {
  font-size: var(--step-3);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.lede {
  max-width: 62ch;
  font-size: var(--step-1);
  color: var(--color-muted);
}

.prose { max-width: 66ch; color: var(--color-muted); }
.prose strong { color: var(--color-text); }

.rule {
  height: 2px;
  border: 0;
  margin: 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-purple-deep) 18%,
    var(--color-pink) 50%,
    var(--color-purple-deep) 82%,
    transparent
  );
  box-shadow: 0 0 22px rgba(255, 46, 203, 0.45);
  opacity: 0.9;
}

/* ---------- 4. Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: var(--step-0);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
              background-color 0.18s var(--ease), color 0.18s var(--ease);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
  color: #fff;
  box-shadow: var(--shadow-neon);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255, 46, 203, 0.6),
              0 16px 34px -14px rgba(255, 0, 229, 0.85);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--color-line-strong);
  color: var(--color-text);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 46, 203, 0.12);
  border-color: var(--color-pink);
}

.btn:active { transform: translateY(0); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

/* ---------- 5. Header / navigation ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 4, 22, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 74px;
  padding-block: var(--space-3);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
}
.brand img {
  width: clamp(112px, 13vw, 148px);
  height: auto;
  transition: filter 0.2s var(--ease);
}
.brand:hover img { filter: drop-shadow(0 0 12px rgba(255, 46, 203, 0.7)); }

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: 5px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
}

.nav__link {
  display: block;
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-pill);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-muted);
  white-space: nowrap;
  transition: color 0.18s var(--ease), background-color 0.18s var(--ease);
}
.nav__link:hover { color: var(--color-text); background: rgba(255, 46, 203, 0.16); }

.nav__link[aria-current="page"] {
  color: #fff;
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  box-shadow: 0 0 18px -4px rgba(255, 0, 229, 0.8);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  flex: 0 0 2px;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color-text);
  transform-origin: center;
  transition: transform 0.22s var(--ease),
              opacity 0.18s var(--ease),
              background-color 0.18s var(--ease);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }

/* The middle bar is collapsed to zero width *and* left with nothing to paint.
   Hiding it with opacity alone let WebKit keep painting its two rounded
   end-caps, which showed up as a pair of dots either side of the X. */
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  transform: scaleX(0);
  opacity: 0;
  background-color: transparent;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  /* The panel animates its own intrinsic height: `.nav` is a single-row grid
     interpolating 0fr <-> 1fr, so it opens and closes over the real height of
     the list with no measured pixels and no `height: auto` handoff.
     Consequences of that technique:
       - the row's base size includes the items' block padding, so the list's
         top and bottom gutters are carried by its first and last item;
       - `.nav` clips the growing row, so it must own the panel shadow the
         clip would otherwise eat;
       - visibility flips only after the collapse finishes, keeping content
         from being yanked away mid-animation and the closed menu out of the
         tab order. */
  .nav {
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    top: calc(100% + 8px);
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: grid-template-rows var(--dur-nav) var(--ease-nav),
                opacity var(--dur-nav) var(--ease-nav),
                transform var(--dur-nav) var(--ease-nav),
                visibility 0s linear var(--dur-nav);
  }

  .nav.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: grid-template-rows var(--dur-nav) var(--ease-nav),
                opacity var(--dur-nav) var(--ease-nav),
                transform var(--dur-nav) var(--ease-nav),
                visibility 0s linear 0s;
  }

  .nav__list {
    min-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-1);
    padding: 0 var(--space-3);
    border-radius: var(--radius-lg);
    background: rgba(24, 10, 46, 0.97);
  }
  .nav__list > li:first-child { margin-top: var(--space-3); }
  .nav__list > li:last-child { margin-bottom: var(--space-3); }

  .nav__link { padding: 0.8rem 1rem; text-align: center; font-size: var(--step-0); }
}

/* ---------- 6. Hero ---------- */

.hero { padding-block: clamp(2.5rem, 7vw, 5.5rem); }

.hero__title {
  font-size: var(--step-4);
  font-weight: 800;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.hero__title .accent {
  display: block;
  background: linear-gradient(100deg, var(--color-pink) 10%, var(--color-purple) 55%, var(--color-pink-soft) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lede { max-width: 56ch; font-size: var(--step-1); color: var(--color-muted); }

/* ---------- 7. Showcase (home artwork slider) ---------- */

.showcase {
  position: relative;
  max-width: 1000px;
  margin-inline: auto;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 46, 203, 0.14), rgba(139, 47, 245, 0.10));
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.showcase__viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(7, 3, 16, 0.55);
  aspect-ratio: 16 / 7;
}

@media (max-width: 640px) { .showcase__viewport { aspect-ratio: 16 / 9; } }

.showcase__slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: var(--space-3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease);
}
.showcase__slide.is-active { opacity: 1; visibility: visible; }

.showcase__slide img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.showcase__slide a { display: block; max-height: 100%; border-radius: var(--radius-sm); }

.showcase__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: rgba(11, 4, 22, 0.72);
  color: var(--color-text);
  cursor: pointer;
  transition: background-color 0.18s var(--ease), transform 0.18s var(--ease);
}
.showcase__nav:hover { background: var(--color-pink); transform: translateY(-50%) scale(1.06); }
.showcase__nav--prev { left: clamp(0.5rem, 2vw, 1.25rem); }
.showcase__nav--next { right: clamp(0.5rem, 2vw, 1.25rem); }
.showcase__nav svg { width: 18px; height: 18px; }

.showcase__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
}
.showcase__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.showcase__dot[aria-current="true"] {
  background: var(--color-pink);
  transform: scale(1.25);
  box-shadow: 0 0 12px rgba(255, 0, 229, 0.9);
}

/* ---------- 8. About / split section ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, var(--space-7));
  align-items: center;
}

@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; justify-items: center; text-align: left; }
  .split__media { max-width: 300px; }
}

.split__media {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line-strong);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}
.split__media img { width: 100%; }

/* ---------- 9. Panels / CTA ---------- */

.panel {
  padding: clamp(1.5rem, 4vw, var(--space-7));
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--color-surface-2), var(--color-surface));
  box-shadow: var(--shadow-card);
}

.cta-panel { text-align: center; }
.cta-panel .btn-row { justify-content: center; }
.cta-panel p { margin-inline: auto; }

/* ---------- 10. Gallery / collectible cards ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: clamp(1rem, 2.4vw, 1.75rem);
}

@media (min-width: 1100px) {
  /* 4 columns where the width genuinely supports it */
  .gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--color-surface-3) 0%, var(--color-surface) 62%);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
              border-color 0.22s var(--ease);
}
.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  border-color: var(--color-line-strong);
  box-shadow: var(--shadow-lift);
}

.card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--color-bg-deep);
  border-bottom: 1px solid var(--color-line);
}
.card__media img,
.card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}
.card__media video { object-fit: contain; background: var(--color-bg-deep); }
.card:hover .card__media img { transform: scale(1.04); }

.card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-4) var(--space-3);
}

.card__name {
  margin: 0;
  font-size: var(--step-1);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

.card__price {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 46, 203, 0.14);
  border: 1px solid rgba(255, 46, 203, 0.28);
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  color: var(--color-pink-soft);
}

.card__action { padding: 0 var(--space-4) var(--space-4); margin-top: auto; }
.card__action .btn { width: 100%; padding-inline: var(--space-3); }

/* ---------- 11. Lo Mane feature ---------- */

.lomane {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  gap: clamp(1.5rem, 5vw, var(--space-8));
  align-items: center;
}

@media (max-width: 900px) {
  .lomane { grid-template-columns: 1fr; }
  .lomane__media { order: -1; justify-self: center; max-width: 320px; }
}

.lomane__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 0.9rem + 2.6vw, 2.9rem);
  line-height: 1.35;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
  background: linear-gradient(100deg, var(--color-pink) 0%, var(--color-purple) 60%, var(--color-pink-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lomane__subtitle {
  font-size: var(--step-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

.lomane__media { width: 100%; }

.frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}
.frame__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s var(--ease);
}
.frame__slide.is-active { opacity: 1; visibility: visible; }
.frame__slide img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 12. Contact / Jotform ---------- */

.form-panel {
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(0.75rem, 2vw, var(--space-5));
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--color-surface-2), var(--color-surface));
  box-shadow: var(--shadow-card);
}

.form-panel__inner {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fff;
}

/* The Jotform embed script injects its iframe here. */
.form-panel__inner iframe {
  display: block;
  width: 100% !important;
  min-width: 100% !important;
  border: 0;
}

.contact-aside {
  /* Inline flow, not flex: punctuation must sit tight against the links. */
  max-width: 60ch;
  margin: var(--space-6) auto 0;
  text-align: center;
  color: var(--color-muted);
  font-size: var(--step--1);
}
.contact-aside a { color: var(--color-pink-soft); }

/* ---------- 12b. Related-project promo (137) ---------- */

.promo {
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(1.25rem, 3.5vw, var(--space-6));
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--color-surface-2), var(--color-surface));
  box-shadow: var(--shadow-card);
  text-align: center;
}

.promo__intro { margin-bottom: var(--space-5); }
.promo__intro .prose { margin-inline: auto; }
.promo__intro .section-title { margin-bottom: var(--space-3); }

/* The artwork is black-on-black, so it needs its own edge to read as an
   object against the dark page rather than dissolving into it. */
.promo__banner {
  display: block;
  overflow: hidden;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-md);
  background: #000;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04),
              0 18px 40px -24px rgba(0, 0, 0, 0.9);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
              border-color 0.22s var(--ease);
}
.promo__banner:hover,
.promo__banner:focus-visible {
  transform: translateY(-3px);
  border-color: var(--color-pink);
  box-shadow: 0 0 0 1px rgba(255, 46, 203, 0.5),
              0 22px 46px -20px rgba(255, 0, 229, 0.45);
}

.promo__banner img {
  display: block;
  width: 100%;
  height: auto;          /* 2056x765 — aspect ratio preserved, never cropped */
}

.promo__actions { justify-content: center; }

@media (prefers-reduced-motion: reduce) {
  .promo__banner:hover,
  .promo__banner:focus-visible { transform: none; }
}

/* ---------- 13. Privacy / long-form ---------- */

.legal { max-width: 70ch; margin-inline: auto; }
.legal h2 {
  font-size: var(--step-2);
  text-transform: uppercase;
  color: var(--color-pink-soft);
  margin-top: var(--space-6);
}
.legal h2:first-of-type { margin-top: 0; }
.legal p { color: var(--color-muted); }

/* ---------- 14. Footer ---------- */

.site-footer {
  margin-top: var(--space-6);
  border-top: 1px solid var(--color-line);
  background: rgba(7, 3, 16, 0.6);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  padding-block: var(--space-7);
  text-align: center;
}

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

.social__link {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
              border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.social__link:hover {
  transform: translateY(-3px);
  background: rgba(255, 46, 203, 0.16);
  border-color: var(--color-pink);
  box-shadow: 0 0 22px -6px rgba(255, 0, 229, 0.9);
}
.social__link img,
.social__link svg { width: 22px; height: 22px; }
.social__link img { object-fit: contain; }
.social__link svg { fill: currentColor; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2) var(--space-5);
}
.footer-nav a {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-muted);
  transition: color 0.18s var(--ease);
}
.footer-nav a:hover { color: var(--color-pink-soft); }

.colophon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2) var(--space-4);
  font-size: var(--step--1);
  color: var(--color-muted);
}
.colophon a { color: var(--color-muted); text-decoration: none; }
.colophon a:hover { color: var(--color-pink-soft); text-decoration: underline; }

/* ---------- 15. Motion preferences ---------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .card:hover { transform: none; }
  .card:hover .card__media img { transform: none; }

  .nav,
  .nav.is-open {
    transition: none !important;
    transform: none;
  }
}
