/* ================================================================
   REIKS — LANDING PAGE STYLES  (v2 — "top tier" design pass)
   ----------------------------------------------------------------
   HOW TO EDIT:
   - All colors, fonts and spacing live in the :root variables below.
     Change a value once and it updates everywhere.
   - Each section of the page has its own clearly-marked block.
   - Mobile-first: base styles are for phones; @media blocks at the
     end adapt the layout for tablets and desktops.
   ================================================================ */

/* ----------------------------------------------------------------
   DESIGN TOKENS (colors, fonts, spacing)
   ---------------------------------------------------------------- */
:root {
  /* Colors — crimson accent on a warm near-black theme (bold-modern) */
  --color-bg:        #0b0b0d;   /* page background */
  --color-bg-alt:    #121116;   /* alternate section background */
  --color-surface:   #161419;   /* cards */
  --color-border:    #2a2732;   /* subtle card borders */
  --color-text:      #f5f2f6;   /* main text */
  --color-text-dim:  #a7a0ad;   /* secondary text */
  --color-accent:    #b31734;   /* deep crimson */
  --color-accent-hi: #ff2d55;   /* vivid crimson for glows/hovers */
  --color-white:     #ffffff;

  /* Gradient used for accent text and glows */
  --gradient-accent: linear-gradient(115deg, #ff3355 0%, #b31734 55%, #7a0f22 100%);

  /* Typography — Archivo (heavy) for display, Inter for body (see <head>) */
  --font-display: "Archivo", "Arial Black", Impact, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --display-weight: 800;

  /* Layout — sharper, more architectural than before */
  --container-max: 1180px;
  --section-pad: clamp(4.5rem, 11vw, 8rem);
  --radius: 6px;
  --radius-sm: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* ghost numbers overflow on purpose */
}

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

a { color: inherit; }

/* Film-grain texture over the whole page — subtle, adds analog warmth.
   Pure CSS (SVG noise), sits above everything but ignores clicks. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Visible focus outline for keyboard users */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--color-accent-hi);
  outline-offset: 3px;
}

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

.container {
  width: min(100% - 2.5rem, var(--container-max));
  margin-inline: auto;
}

/* Accent words inside headings get the gradient treatment */
.accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ----------------------------------------------------------------
   SCROLL PROGRESS BAR (top of page; width set by script.js)
   ---------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-accent);
  z-index: 200;
}

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease,
              border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 8px 30px rgba(158, 27, 50, 0.35);
}
.btn--primary:hover {
  background: var(--color-accent-hi);
  box-shadow: 0 12px 40px rgba(224, 41, 77, 0.45);
}

/* Outline button — crimson fill sweeps up from the bottom on hover */
.btn--outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
  backdrop-filter: blur(4px);
  z-index: 0;
}
.btn--outline::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--color-accent);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-white);
}
.btn--outline:hover::before { transform: translateY(0); }

.btn--full { width: 100%; }
.btn--sm { padding: 0.75rem 1.7rem; font-size: 0.82rem; }

/* ----------------------------------------------------------------
   NAVIGATION (sticky header; .site-header--solid added on scroll)
   ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header--solid {
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-white);
}
.nav__logo-dot { color: var(--color-accent-hi); }
.nav__logo:hover { color: var(--color-accent-hi); }

/* Hamburger button — hidden on desktop */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav__toggle-bar {
  width: 26px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — collapsed by default, opened via JS (.nav__menu--open) */
.nav__menu {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  display: flex;
  flex-direction: column;
  list-style: none;
  background: rgba(10, 10, 11, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.nav__menu--open { max-height: 30rem; }

.nav__link {
  display: block;
  padding: 0.95rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: color 0.2s ease;
}
.nav__link:hover,
.nav__link--active { color: var(--color-accent-hi); }

.nav__link--cta { color: var(--color-accent-hi); }

/* ----------------------------------------------------------------
   1. HERO
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* HERO BACKGROUND IMAGE — replace hero-bg.svg with a real photo,
     e.g. url("assets/images/hero-bg.jpg") */
  background: url("assets/images/hero-bg.svg") center / cover no-repeat, var(--color-bg);
}

/* Dark gradient + vignette over the background so text stays readable */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(158, 27, 50, 0.22), transparent 55%),
    linear-gradient(to bottom,
      rgba(10, 10, 11, 0.6) 0%,
      rgba(10, 10, 11, 0.3) 45%,
      rgba(10, 10, 11, 0.97) 100%);
}

.hero__content { position: relative; z-index: 1; padding-top: 4rem; }

.hero__kicker {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  font-weight: 600;
  color: var(--color-text-dim);
  margin-bottom: 1.2rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5rem, 22vw, 15rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

/* Letters injected by script.js animate in one-by-one */
.hero__title .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em) rotate(4deg);
  animation: letter-in 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: calc(var(--i) * 90ms + 150ms);
}
@keyframes letter-in {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

.hero__tagline {
  font-size: clamp(1.05rem, 3vw, 1.4rem);
  font-weight: 500;
  color: var(--color-text-dim);
  margin: 1.4rem 0 2.6rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Animated equalizer — 10 bars pulsing at different speeds */
.hero__eq {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: flex-end;
  height: 42px;
  margin-top: 3.2rem;
}
.hero__eq span {
  width: 5px;
  border-radius: 3px;
  background: var(--gradient-accent);
  animation: eq-bounce 1.1s ease-in-out infinite alternate;
}
/* Each bar gets its own rhythm */
.hero__eq span:nth-child(1)  { height: 30%; animation-duration: 0.9s;  }
.hero__eq span:nth-child(2)  { height: 70%; animation-duration: 1.3s;  }
.hero__eq span:nth-child(3)  { height: 45%; animation-duration: 0.8s;  }
.hero__eq span:nth-child(4)  { height: 90%; animation-duration: 1.15s; }
.hero__eq span:nth-child(5)  { height: 55%; animation-duration: 0.95s; }
.hero__eq span:nth-child(6)  { height: 80%; animation-duration: 1.25s; }
.hero__eq span:nth-child(7)  { height: 40%; animation-duration: 0.85s; }
.hero__eq span:nth-child(8)  { height: 65%; animation-duration: 1.05s; }
.hero__eq span:nth-child(9)  { height: 85%; animation-duration: 1.35s; }
.hero__eq span:nth-child(10) { height: 35%; animation-duration: 0.75s; }
@keyframes eq-bounce {
  from { transform: scaleY(0.3); }
  to   { transform: scaleY(1); }
}

/* Bouncing scroll-down arrow */
.hero__scroll {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 0.6rem;
}
.hero__scroll-arrow {
  display: block;
  width: 13px;
  height: 13px;
  border-right: 2px solid var(--color-text-dim);
  border-bottom: 2px solid var(--color-text-dim);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50%      { transform: rotate(45deg) translate(6px, 6px); }
}

/* ----------------------------------------------------------------
   MARQUEE RIBBON — infinite scrolling strip below the hero
   ---------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  background: var(--color-accent);
  transform: rotate(-1deg) scale(1.02); /* slight tilt = energy */
  padding-block: 0.85rem;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}
.marquee__inner {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}
.marquee__inner span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  white-space: nowrap;
}
.marquee__inner i {
  font-style: normal;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* content is duplicated, so -50% loops seamlessly */
}

/* ----------------------------------------------------------------
   SHARED SECTION STYLES
   ---------------------------------------------------------------- */
.section {
  position: relative;
  padding-block: var(--section-pad);
}

.section--alt { background: var(--color-bg-alt); }

/* Giant ghost number in the section corner (decorative) */
.section__ghost {
  position: absolute;
  top: 0.5rem;
  right: -0.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(7rem, 22vw, 16rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
}

.section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent-hi);
  margin-bottom: 1rem;
}
/* Little line before the kicker text */
.section__kicker::before {
  content: "";
  width: 2.2rem;
  height: 2px;
  background: var(--gradient-accent);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 6.2vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
  color: var(--color-white);
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
   GLOW CARDS — shared hover treatment (mouse-tracking radial glow).
   script.js updates --mx / --my with the cursor position.
   ---------------------------------------------------------------- */
.glow-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%),
              rgba(224, 41, 77, 0.13), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.glow-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 41, 77, 0.45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
.glow-card:hover::before { opacity: 1; }

/* ----------------------------------------------------------------
   2. ABOUT
   ---------------------------------------------------------------- */
.about__grid {
  display: grid;
  gap: 3rem;
}

.about__media { position: relative; }

/* --- Video-style slideshow -------------------------------------
   Slides sit on top of each other; the active one fades in and
   slowly zooms (Ken Burns effect), so it feels like video footage.
   script.js rotates the .slideshow__slide--active class. */
.slideshow {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-surface);
}

.slideshow__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s ease;
}
.slideshow__slide--active {
  opacity: 1;
  /* Slow push-in: 1 → 1.08 over the length of the slide */
  animation: kenburns 6s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

/* Progress dots (bottom centre); built by script.js */
.slideshow__dots {
  position: absolute;
  bottom: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 2;
}
.slideshow__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.3s ease, width 0.3s ease;
}
.slideshow__dot--active {
  width: 22px;
  background: var(--color-accent-hi);
}

/* Offset maroon frame behind the slideshow */
.about__image-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 2px solid var(--color-accent);
  transform: translate(14px, 14px);
  opacity: 0.55;
}

.about__text p { margin-bottom: 1.1rem; color: var(--color-text-dim); }
.about__text p strong { color: var(--color-text); }

/* Stats strip */
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1.8rem;
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-dim);
}

/* ----------------------------------------------------------------
   3. SKILLS (What He Does)
   ---------------------------------------------------------------- */
.skills__grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2.8rem;
  grid-template-columns: 1fr;
}

.skill-card { padding: 2.2rem 1.8rem; }

.skill-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(179, 23, 52, 0.16);
  color: var(--color-accent-hi);
  margin-bottom: 1.4rem;
}
.skill-card__icon svg { width: 26px; height: 26px; }

.skill-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.skill-card__text {
  color: var(--color-text-dim);
  font-size: 0.95rem;
}

/* The call-out card in the last grid slot */
.skill-card--highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.4rem;
  background: linear-gradient(140deg, rgba(158, 27, 50, 0.25), var(--color-surface) 65%);
  border-color: rgba(224, 41, 77, 0.35);
}
.skill-card--highlight .btn { margin-top: 1rem; }

/* ----------------------------------------------------------------
   4. MUSIC (featured tracks)
   ---------------------------------------------------------------- */
.music__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.8rem;
  grid-template-columns: 1fr;
}

.track-card__embed {
  aspect-ratio: 16 / 9;
  background: #060607;
  border-bottom: 1px solid var(--color-border);
}
.track-card__embed iframe { width: 100%; height: 100%; border: 0; }

/* Play-button placeholder shown until a real embed is pasted in */
.track-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.track-card__placeholder svg {
  width: 58px;
  height: 58px;
  color: var(--color-accent);
  opacity: 0.9;
  filter: drop-shadow(0 0 24px rgba(224, 41, 77, 0.45));
  transition: transform 0.25s ease;
}
.track-card:hover .track-card__placeholder svg { transform: scale(1.15); }

.track-card__body { padding: 1.3rem 1.5rem 1.5rem; }

.track-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.3rem;
}

.track-card__text {
  color: var(--color-text-dim);
  font-size: 0.92rem;
}

/* ----------------------------------------------------------------
   5. DISCOGRAPHY — big interactive rows
   ---------------------------------------------------------------- */
.discography__list {
  list-style: none;
  margin-top: 2.2rem;
}

.discography__item { border-bottom: 1px solid var(--color-border); }
.discography__item:first-child { border-top: 1px solid var(--color-border); }

.discography__row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.5rem 0.6rem;
  text-decoration: none;
  transition: background 0.25s ease, padding-left 0.25s ease;
}
.discography__row:hover {
  background: rgba(158, 27, 50, 0.09);
  padding-left: 1.4rem;
}

.discography__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-dim);
  min-width: 2.4rem;
  transition: color 0.25s ease;
}
.discography__row:hover .discography__num { color: var(--color-accent-hi); }

.discography__name {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 4vw, 2rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-white);
}
.discography__name small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-text-dim);
  margin-left: 0.6rem;
}

.discography__arrow {
  font-size: 1.4rem;
  color: var(--color-accent-hi);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.discography__row:hover .discography__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ----------------------------------------------------------------
   6. GALLERY
   ---------------------------------------------------------------- */
.gallery__grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.8rem;
  grid-template-columns: repeat(2, 1fr);
}

.gallery__grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  filter: saturate(0.9);
  transition: transform 0.3s ease, filter 0.3s ease, border-color 0.3s ease;
}
.gallery__grid img:hover {
  transform: scale(1.03);
  filter: saturate(1.15);
  border-color: rgba(224, 41, 77, 0.4);
}

/* ----------------------------------------------------------------
   7. CONTACT / BOOKING
   ---------------------------------------------------------------- */
.contact__grid {
  display: grid;
  gap: 3rem;
}

.contact__info p { color: var(--color-text-dim); }

.contact__socials {
  list-style: none;
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
}
.contact__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  color: var(--color-text-dim);
  transition: color 0.2s ease, border-color 0.2s ease,
              transform 0.2s ease, box-shadow 0.2s ease;
}
.contact__socials a:hover {
  color: var(--color-white);
  border-color: var(--color-accent);
  background: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(158, 27, 50, 0.4);
}
.contact__socials svg { width: 20px; height: 20px; }

.contact__form { padding: 2.2rem 1.8rem; }

.form-field { margin-bottom: 1.3rem; }

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.45rem;
  color: var(--color-text-dim);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font: inherit;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-accent-hi);
  box-shadow: 0 0 0 3px rgba(224, 41, 77, 0.15);
  outline: none;
}

.form-field textarea { resize: vertical; }

.contact__form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-accent-hi);
  text-align: center;
  min-height: 1.4em;
}

/* ----------------------------------------------------------------
   8. FOOTER — giant outlined wordmark
   ---------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 2.2rem;
  overflow: hidden;
}

.site-footer__wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(4.5rem, 18vw, 13rem);
  line-height: 1;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.09);
  user-select: none;
  margin-bottom: 1.5rem;
  transition: -webkit-text-stroke-color 0.4s ease;
}
.site-footer__wordmark:hover { -webkit-text-stroke-color: rgba(224, 41, 77, 0.4); }

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}

.site-footer__copy {
  font-size: 0.85rem;
  color: var(--color-text-dim);
}

.site-footer__top {
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-text-dim);
  transition: color 0.2s ease;
}
.site-footer__top:hover { color: var(--color-accent-hi); }

/* ----------------------------------------------------------------
   SCROLL-REVEAL ANIMATION
   Elements with class="reveal" slide in when they enter the
   viewport (script.js adds .reveal--visible). Sibling cards get a
   small stagger via --stagger, also set in script.js.
   ---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--stagger, 0) * 90ms);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect users who prefer no motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__title .letter { opacity: 1; transform: none; animation: none; }
  .hero__eq span, .hero__scroll-arrow, .marquee__inner { animation: none; }
  .slideshow__slide--active { animation: none; } /* crossfade only, no zoom */
}

/* ----------------------------------------------------------------
   RESPONSIVE — TABLET (≥ 640px)
   ---------------------------------------------------------------- */
@media (min-width: 640px) {
  .skills__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ----------------------------------------------------------------
   RESPONSIVE — DESKTOP (≥ 900px)
   ---------------------------------------------------------------- */
@media (min-width: 900px) {
  /* Nav: show links inline, hide hamburger */
  .nav__toggle { display: none; }
  .nav__menu {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.3rem;
    background: none;
    backdrop-filter: none;
    border: none;
    max-height: none;
    overflow: visible;
  }
  .nav__link { padding: 0.5rem 0.9rem; font-size: 0.92rem; }

  .about__grid {
    grid-template-columns: 2fr 3fr;
    align-items: center;
    gap: 4.5rem;
  }

  .skills__grid { grid-template-columns: repeat(3, 1fr); }

  .music__grid { grid-template-columns: repeat(3, 1fr); }

  .contact__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 4.5rem;
  }

  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ================================================================
   MULTI-PAGE ADDITIONS  (v3 — artist + media-expert site)
   ----------------------------------------------------------------
   New components layered on top of the REIKS design system so the
   About / Music / Services pages share the same look and feel.
   ================================================================ */

/* ----------------------------------------------------------------
   PAGE BANNER  (compact hero used on sub-pages instead of the tall
   landing hero). Gives every inner page a strong, consistent top.
   ---------------------------------------------------------------- */
.page-banner {
  position: relative;
  padding: clamp(8rem, 18vw, 12rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(158, 27, 50, 0.30), transparent 60%),
    var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(224,41,77,0.06) 50%, transparent 60%);
  pointer-events: none;
}
.page-banner__kicker {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent-hi);
  margin-bottom: 1.1rem;
}
.page-banner__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 10vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--color-white);
}
.page-banner__lead {
  max-width: 46ch;
  margin: 1.4rem auto 0;
  color: var(--color-text-dim);
  font-size: clamp(1rem, 2.4vw, 1.15rem);
}
.page-banner__path {
  margin-top: 1.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}
.page-banner__path a { color: var(--color-text-dim); text-decoration: none; }
.page-banner__path a:hover { color: var(--color-accent-hi); }

/* ----------------------------------------------------------------
   SECTION INTRO helpers
   ---------------------------------------------------------------- */
.section__lead {
  max-width: 60ch;
  color: var(--color-text-dim);
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
}

/* ----------------------------------------------------------------
   SERVICE CARDS  (Services / Capabilities page)
   ---------------------------------------------------------------- */
.services-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2.8rem;
  grid-template-columns: 1fr;
}
.service-card { padding: 2.2rem 1.9rem; display: flex; flex-direction: column; }
.service-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 3px; width: 34%;
  background: var(--gradient-accent);
  transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover::after { width: 100%; }

.service-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.3rem;
}
.service-card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  background: rgba(179, 23, 52, 0.16);
  color: var(--color-accent-hi);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card__no {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.22);
}
.service-card__title {
  font-size: 1.2rem; font-weight: 700; color: var(--color-white);
  margin-bottom: 0.5rem;
}
.service-card__text { color: var(--color-text-dim); font-size: 0.95rem; margin-bottom: 1.2rem; }

.service-card__list {
  list-style: none;
  margin-top: auto;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.service-card__list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9rem;
  color: var(--color-text);
}
.service-card__list li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--color-accent-hi);
}

/* ----------------------------------------------------------------
   PROCESS STEPS
   ---------------------------------------------------------------- */
.process {
  display: grid;
  gap: 1.2rem;
  margin-top: 2.8rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}
.process__step {
  position: relative;
  padding: 2rem 1.8rem 2rem 4.5rem;
}
.process__step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1.7rem; top: 1.8rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-accent);
}
.process__title { font-size: 1.1rem; font-weight: 700; color: var(--color-white); margin-bottom: 0.4rem; }
.process__text { color: var(--color-text-dim); font-size: 0.92rem; }

/* ----------------------------------------------------------------
   PRICING / PACKAGES
   ---------------------------------------------------------------- */
.pricing {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.8rem;
  grid-template-columns: 1fr;
}
.price-card { padding: 2.4rem 2rem; display: flex; flex-direction: column; }
.price-card--featured {
  background: linear-gradient(150deg, rgba(158, 27, 50, 0.28), var(--color-surface) 60%);
  border-color: rgba(224, 41, 77, 0.5);
}
.price-card__tag {
  align-self: flex-start;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.3rem 0.7rem; border-radius: 999px;
  background: var(--color-accent); color: var(--color-white);
  margin-bottom: 1rem;
}
.price-card__name {
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em;
  font-size: 1.5rem; color: var(--color-white); margin-bottom: 0.3rem;
}
.price-card__price {
  font-size: 1.05rem; color: var(--color-accent-hi); font-weight: 700;
  margin-bottom: 1.4rem;
}
.price-card__price small { color: var(--color-text-dim); font-weight: 500; }
.price-card__list {
  list-style: none; display: flex; flex-direction: column; gap: 0.65rem;
  margin-bottom: 1.8rem;
}
.price-card__list li {
  position: relative; padding-left: 1.6rem; font-size: 0.92rem; color: var(--color-text);
}
.price-card__list li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  color: var(--color-accent-hi); font-weight: 800;
}
.price-card .btn { margin-top: auto; }

/* ----------------------------------------------------------------
   TIMELINE  (About — journey / milestones)
   ---------------------------------------------------------------- */
.timeline {
  position: relative;
  margin-top: 2.8rem;
  padding-left: 1.8rem;
  border-left: 2px solid var(--color-border);
  display: flex; flex-direction: column; gap: 2.2rem;
}
.timeline__item { position: relative; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: calc(-1.8rem - 6px);
  top: 0.35rem;
  width: 12px; height: 12px; border-radius: 999px;
  background: var(--color-accent-hi);
  box-shadow: 0 0 0 4px rgba(224,41,77,0.18);
}
.timeline__year {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.15rem;
  color: var(--color-accent-hi);
  letter-spacing: 0.02em;
}
.timeline__title { font-size: 1.05rem; font-weight: 700; color: var(--color-white); margin: 0.15rem 0 0.4rem; }
.timeline__text { color: var(--color-text-dim); font-size: 0.94rem; }

/* ----------------------------------------------------------------
   METRIC BAND
   ---------------------------------------------------------------- */
.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
  margin-top: 2.6rem;
}
.metric { text-align: center; padding: 1rem 0.5rem; }
.metric__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900; letter-spacing: -0.02em;
  font-size: clamp(2.2rem, 8vw, 3.4rem);
  background: var(--gradient-accent);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.metric__label {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--color-text-dim);
}

/* ----------------------------------------------------------------
   FEATURE SPLIT  (image/slideshow beside text)
   ---------------------------------------------------------------- */
.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.split__media { position: relative; }

/* ----------------------------------------------------------------
   CTA BAND
   ---------------------------------------------------------------- */
.cta-band {
  position: relative;
  text-align: center;
  padding-block: clamp(4rem, 10vw, 6.5rem);
  background:
    radial-gradient(ellipse at 50% 120%, rgba(224,41,77,0.22), transparent 60%),
    var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.cta-band__title {
  font-family: var(--font-display);
  font-weight: 900; text-transform: uppercase;
  font-size: clamp(2rem, 7vw, 3.6rem);
  line-height: 1.02; letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: 1.2rem;
}
.cta-band__text { max-width: 48ch; margin: 0 auto 2rem; color: var(--color-text-dim); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ----------------------------------------------------------------
   ARROW LINK  (home page teasers that link to sub-pages)
   ---------------------------------------------------------------- */
.arrow-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.6rem;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  color: var(--color-accent-hi);
}
.arrow-link span { transition: transform 0.25s ease; }
.arrow-link:hover span { transform: translateX(6px); }

/* Centered section header variant */
.section--center .section__kicker { justify-content: center; }
.section--center { text-align: center; }
.section--center .section__kicker::before { display: none; }

/* ----------------------------------------------------------------
   SPOTIFY EMBEDS  (music page — artist profile + album)
   ---------------------------------------------------------------- */
.spotify__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.8rem;
  grid-template-columns: 1fr;
}
.spotify__embed iframe {
  display: block;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-surface);
}

/* ----------------------------------------------------------------
   RESPONSIVE — multi-page components
   ---------------------------------------------------------------- */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .metrics { grid-template-columns: repeat(4, 1fr); }
  .pricing { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 3fr 2fr; gap: 4.5rem; }
  .split--media-right .split__media { order: 2; }
  .spotify__grid { grid-template-columns: 1fr 1fr; }
}
