/* ============================================
   DE LA CRUZ — MINI TOUR 2026
   Clean · Editorial · Simple
   ============================================ */

@font-face {
  font-family: "Sport Break";
  src: url("fonts/SportBreak.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fixture";
  src: url("fonts/Fixture-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fixture";
  src: url("fonts/Fixture-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Fixture";
  src: url("fonts/Fixture-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fixture Cond";
  src: url("fonts/Fixture-CondensedRegular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fixture Cond";
  src: url("fonts/Fixture-CondensedMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Palette derived from hero video: deep teal-black base, crimson pop accent, cool ivory paper */
  --bg: #060d10;          /* deep teal-black */
  --bg-deep: #030708;     /* deepest tone (preloader/footer) */
  --bg-soft: #0d1a1e;     /* lifted teal mid */
  --paper: #eef0ed;       /* slightly cool ivory */
  --ink: #eef0ed;
  --ink-dark: #0d1518;
  --ink-dim: #8a9398;     /* cool grey */
  --ink-mute: #555e62;    /* cool mid-grey */
  --accent: #e8432a;      /* crimson pop — from the IV patch */
  --accent-warm: #c8342a; /* darker crimson */
  --accent-cool: #4a8590; /* teal accent for ambient gradients */
  --line: rgba(238, 240, 237, 0.1);
  --line-dark: rgba(13, 21, 24, 0.14);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --d-fast: 0.4s;
  --d-med: 0.7s;
  --d-slow: 1s;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --font-display: "Sport Break", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-cond: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { background: none; border: none; font: inherit; color: inherit; cursor: pointer; }
::selection { background: var(--accent); color: var(--bg); }

/* ============================================
   PAGE-WIPE TRANSITION
   ============================================ */
.page-wipe {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  opacity: 0;
  pointer-events: none;
  z-index: 9500;
  transition: opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-wipe.in {
  opacity: 1;
  pointer-events: auto;
}
.page-wipe.out {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.33, 0, 0.2, 1);
}

/* Target section arrives with a soft settle */
.section.arriving > * {
  animation: sectionSettle 0.7s cubic-bezier(0.33, 0, 0.2, 1) both;
}
@keyframes sectionSettle {
  0% {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.1s;
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.preloader-count {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0;
  color: var(--ink);
}
.preloader-bar {
  width: min(320px, 60vw);
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.preloader-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent);
  will-change: width;
}

/* ============================================
   PILL NAV
   ============================================ */
.pill-nav {
  position: fixed;
  top: 1rem; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 2rem);
  max-width: 1200px;
}
.pill-nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 0.55rem 0.55rem 0.55rem 1.25rem;
  border-radius: 99px;
  border: 1px solid rgba(242, 237, 230, 0.1);
  background: rgba(10, 7, 6, 0);
  transition: background var(--d-slow) var(--ease), border-color var(--d-slow) var(--ease);
}
.pill-nav-inner > .pill-brand { justify-self: start; }
.pill-nav-inner > .pill-links { justify-self: center; }
.pill-nav-inner > .pill-cta,
.pill-nav-inner > .pill-menu-btn { justify-self: end; }
.pill-nav.scrolled .pill-nav-inner {
  background: rgba(10, 7, 6, 0.8);
  border-color: rgba(242, 237, 230, 0.12);
}

.pill-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}
.pill-brand-logo {
  display: block;
  width: 46px;
  height: auto;
  filter: invert(1);
  mix-blend-mode: screen;
  pointer-events: none;
  user-select: none;
  transition: opacity var(--d-med) var(--ease);
}
.pill-brand:hover .pill-brand-logo { opacity: 0.8; }
.pill-links {
  display: flex;
  gap: 1.75rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.pill-links a {
  position: relative;
  padding: 0.25rem 0;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity var(--d-med) var(--ease);
}
.pill-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.1rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--d-med) var(--ease);
}
.pill-links a:hover {
  opacity: 1;
}
.pill-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  border-radius: 99px;
  background: var(--ink);
  color: var(--bg);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  transition: background var(--d-med) var(--ease), color var(--d-med) var(--ease), transform 0.25s var(--ease);
}
.pill-cta:hover { background: var(--accent); color: var(--bg); }

/* Mobile menu toggle — hidden on desktop */
.pill-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  background: transparent;
  border: 1px solid rgba(242, 237, 230, 0.15);
  transition: background var(--d-med) var(--ease), border-color var(--d-med) var(--ease), transform 0.3s var(--ease);
}
.pill-menu-bars {
  display: inline-block;
  position: relative;
  width: 16px;
  height: 10px;
}
.pill-menu-bars span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}
.pill-menu-bars span:nth-child(1) { top: 2px; }
.pill-menu-bars span:nth-child(2) { top: 7px; }

.pill-menu-btn.open {
  background: var(--ink);
  border-color: var(--ink);
}
.pill-menu-btn.open .pill-menu-bars span {
  background: var(--bg);
}
.pill-menu-btn.open .pill-menu-bars span:nth-child(1) {
  top: 4.5px;
  transform: rotate(45deg);
}
.pill-menu-btn.open .pill-menu-bars span:nth-child(2) {
  top: 4.5px;
  transform: rotate(-45deg);
}

@media (max-width: 820px) {
  .pill-links { display: none; }
  .pill-cta { display: none; }
  .pill-menu-btn { display: inline-flex; }
  .pill-nav-inner {
    padding: 0.45rem 0.45rem 0.45rem 1.1rem;
    grid-template-columns: 1fr auto;
  }
  .pill-nav-inner > .pill-menu-btn { grid-column: 2; justify-self: end; }
  .pill-brand { font-size: 0.74rem; letter-spacing: 0.2em; }
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem var(--pad) 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0s linear 0.5s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s var(--ease), visibility 0s linear 0s;
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3.5rem);
  line-height: 1;
  color: var(--ink);
}
.mobile-menu-nav a {
  color: var(--ink);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), color 0.3s var(--ease);
}
.mobile-menu.open .mobile-menu-nav a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open .mobile-menu-nav a:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(2) { transition-delay: 0.22s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(3) { transition-delay: 0.29s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(4) { transition-delay: 0.36s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(5) { transition-delay: 0.45s; }

.mobile-menu-nav a:active { color: var(--accent); }

.mobile-menu-cta {
  margin-top: 1rem;
  padding: 0.9rem 1.8rem;
  border-radius: 99px;
  background: var(--ink);
  color: var(--bg) !important;
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mobile-menu-footer {
  position: absolute;
  bottom: 2rem;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--pad);
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.mobile-menu-footer a { color: var(--ink-dim); transition: color var(--d-med) var(--ease); }
.mobile-menu-footer a:hover { color: var(--ink); }

body.menu-open { overflow: hidden; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  color: var(--ink);
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 5rem var(--pad) 2rem;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1a1410;
}
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(180deg, rgba(6,13,16,0.4) 0%, rgba(6,13,16,0) 25%, rgba(6,13,16,0) 55%, rgba(6,13,16,0.8) 85%, var(--bg) 100%);
}

.hero-center,
.hero-bottom {
  position: relative;
  z-index: 3;
}

.hero-eyebrow {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.85;
  padding-left: 0.32em;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.25rem;
  min-height: 0;
}

.hero-title {
  line-height: 1;
  color: var(--ink);
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
}
.title-logo-wrap {
  display: inline-block;
  width: clamp(300px, 44vw, 580px);
  aspect-ratio: 2.5 / 1;
  line-height: 0;
  transform: translateY(100%);
  transition: transform 1.1s var(--ease);
  will-change: transform;
}
.loaded .title-logo-wrap { transform: translateY(0); }
.title-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: invert(1);
  mix-blend-mode: screen;
  pointer-events: none;
  user-select: none;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--ink);
  letter-spacing: -0.005em;
  font-style: italic;
  opacity: 0.85;
}

.hero-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero-bottom {
  text-align: center;
  padding-bottom: 0.5rem;
}
.hero-meta {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.stagger {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.loaded .stagger { opacity: 1; transform: translateY(0); }
.loaded .stagger[data-i="0"] { transition-delay: 0.1s; }
.loaded .stagger[data-i="1"] { transition-delay: 0.3s; }
.loaded .stagger[data-i="2"] { transition-delay: 0.65s; }
.loaded .stagger[data-i="3"] { transition-delay: 0.9s; }
.loaded .title-logo-wrap { transition-delay: 0.4s; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 99px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: -0.005em;
  transition: background var(--d-med) var(--ease), color var(--d-med) var(--ease), border-color var(--d-med) var(--ease), transform 0.25s var(--ease);
  border: 1px solid transparent;
  will-change: transform;
}
.btn-primary:active,
.btn-ghost:active,
.pill-cta:active,
.cta-pill:active,
.pill-links a:active,
.hero-nav a:active {
  transform: scale(0.97);
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent); }

.btn-ghost {
  border-color: rgba(242, 237, 230, 0.2);
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.btn-on-light {
  background: var(--ink-dark);
  color: var(--paper);
}
.btn-on-light:hover { background: var(--accent); color: var(--ink-dark); }

/* ============================================
   SECTIONS — scroll-driven fade in/out
   ============================================ */
.section {
  position: relative;
  scroll-margin-top: 4rem;
}

@supports (animation-timeline: view()) {
  @keyframes section-fade {
    0% { opacity: 0.35; }
    15%, 85% { opacity: 1; }
    100% { opacity: 0.35; }
  }
  .section {
    animation: section-fade linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
}


.eyebrow {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 1.5rem;
}

.section-head {
  padding: 3rem var(--pad) 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.panel-light .section-title { color: var(--ink-dark); }

.section-lede {
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  color: var(--ink-dim);
  max-width: 42ch;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

.panel-light .section-lede { color: var(--ink-mute); }

/* ============================================
   PANEL-LIGHT (legacy — merch still uses this)
   ============================================ */
.panel-light {
  background: var(--paper);
  color: var(--ink-dark);
}
.panel-light .eyebrow { color: var(--ink-mute); }

/* ============================================
   TOUR — dark bg with ambient teal/crimson gradient
   ============================================ */
.tour {
  position: relative;
  padding: 2rem 0 3rem;
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
}
.tour::before,
.tour::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  will-change: transform;
}
.tour::before {
  background:
    radial-gradient(50% 55% at 20% 25%, var(--accent-cool) 0%, transparent 65%),
    radial-gradient(45% 50% at 80% 75%, var(--accent) 0%, transparent 65%);
  opacity: 0.25;
  animation: tour-drift-a 36s ease-in-out infinite;
}
.tour::after {
  background:
    radial-gradient(40% 48% at 70% 30%, var(--accent-warm) 0%, transparent 60%),
    radial-gradient(38% 44% at 25% 80%, var(--accent-cool) 0%, transparent 60%);
  opacity: 0.18;
  animation: tour-drift-b 48s ease-in-out infinite reverse;
}
@keyframes tour-drift-a {
  0%,100% { transform: translate3d(-2%, -1%, 0) scale(1.1); }
  50%     { transform: translate3d(3%, 2%, 0) scale(1.22); }
}
@keyframes tour-drift-b {
  0%,100% { transform: translate3d(2%, 1%, 0) scale(1.15); }
  50%     { transform: translate3d(-3%, -2%, 0) scale(1); }
}

.tour .section-head { position: relative; z-index: 1; }
.tour .tour-footnote { position: relative; z-index: 1; }

.tour-list {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
}
.tour-row {
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.tour-row-link {
  display: block;
  position: relative;
  padding: 1.5rem var(--pad);
  transition: background var(--d-slow) var(--ease), color var(--d-slow) var(--ease);
  color: var(--ink);
}
.tour-row-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 1s var(--ease);
  z-index: -1;
}
.tour-row-link:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}
.tour-row-link:hover { color: var(--ink-dark); }

.tour-row-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr 1.6fr auto;
  align-items: center;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.tour-col-date {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.tour-month {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color var(--d-slow) var(--ease);
}
.tour-day {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
  color: var(--ink);
  transition: color var(--d-slow) var(--ease);
}
.tour-row-link:hover .tour-month { color: var(--accent-warm); }
.tour-row-link:hover .tour-day { color: var(--ink-dark); }

.tour-col-city {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.tour-city {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color var(--d-slow) var(--ease);
}
.tour-state {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #b4bcc1;
  transition: color var(--d-slow) var(--ease);
}
.tour-row-link:hover .tour-city { color: var(--ink-dark); }
.tour-row-link:hover .tour-state { color: var(--ink-mute); }

.tour-col-venue {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.venue-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color var(--d-slow) var(--ease);
}
.venue-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.92rem;
  color: #b4bcc1;
  letter-spacing: -0.005em;
  line-height: 1.3;
  transition: color var(--d-slow) var(--ease);
}
.venue-time {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.5rem;
  line-height: 1.2;
  transition: color var(--d-slow) var(--ease);
}
.tour-row-link:hover .venue-name { color: var(--ink-dark); }
.tour-row-link:hover .venue-sub { color: var(--ink-mute); }
.tour-row-link:hover .venue-time { color: var(--accent-warm); }

.tour-col-cta { justify-self: end; }
.cta-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  transition: border-color var(--d-slow) var(--ease), background var(--d-slow) var(--ease), color var(--d-slow) var(--ease);
}
.tour-row-link:hover .cta-pill {
  border-color: var(--ink-dark);
  background: var(--ink-dark);
  color: var(--paper);
}

@media (max-width: 760px) {
  .tour-row-grid {
    grid-template-columns: auto 1fr;
    gap: 0.75rem 1.25rem;
  }
  .tour-col-date { grid-column: 1; grid-row: 1; }
  .tour-col-city { grid-column: 2; grid-row: 1; }
  .tour-col-venue { grid-column: 1 / -1; grid-row: 2; }
  .tour-col-cta { grid-column: 1 / -1; grid-row: 3; justify-self: start; margin-top: 0.25rem; }
}

.tour-footnote {
  padding: 1.5rem var(--pad) 0;
  max-width: 1400px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--ink-mute);
}

/* ============================================
   OUTRO WRAPPER — about + footer share one canvas
   ============================================ */
.outro {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
}
.outro::before,
.outro::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  will-change: transform;
}
.outro::before {
  background:
    radial-gradient(45% 30% at 20% 18%, var(--accent-cool) 0%, transparent 65%),
    radial-gradient(40% 28% at 82% 72%, var(--accent) 0%, transparent 65%);
  opacity: 0.22;
  animation: ambient-drift-a 38s ease-in-out infinite;
}
.outro::after {
  background:
    radial-gradient(38% 26% at 70% 40%, var(--accent-cool) 0%, transparent 60%),
    radial-gradient(42% 30% at 30% 90%, var(--accent-warm) 0%, transparent 60%);
  opacity: 0.16;
  animation: ambient-drift-b 52s ease-in-out infinite;
}
@keyframes ambient-drift-a {
  0%, 100% { transform: translate3d(-2%, -1%, 0) scale(1.08); }
  50%      { transform: translate3d(3%, 2%, 0) scale(1.2); }
}
@keyframes ambient-drift-b {
  0%, 100% { transform: translate3d(2%, 1%, 0) scale(1.12); }
  50%      { transform: translate3d(-3%, -2%, 0) scale(1); }
}

/* ============================================
   ABOUT — transparent so outro gradient shows through
   ============================================ */
.about {
  position: relative;
  padding: 7rem var(--pad) 5rem;
  background: transparent;
}
.about-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}
.about-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 2rem;
}
.about-body {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  color: var(--ink-dim);
  line-height: 1.6;
  letter-spacing: -0.005em;
  margin-bottom: 1.25rem;
  max-width: 55ch;
}

/* ============================================
   MUSIC — animated palette-reactive background
   ============================================ */

/* Interpolatable color custom properties */
@property --c1 { syntax: '<color>'; inherits: true; initial-value: #060d10; }
@property --c2 { syntax: '<color>'; inherits: true; initial-value: #060d10; }
@property --c3 { syntax: '<color>'; inherits: true; initial-value: #060d10; }

.music {
  position: relative;
  padding: 5rem var(--pad) 4rem;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
  --c1: #0a1418;
  --c2: #060d10;
  --c3: #08141a;
  transition: --c1 0.9s var(--ease), --c2 0.9s var(--ease), --c3 0.9s var(--ease);
}

/* Per-release palettes — mapped from cover art */
.music[data-palette="mbk"] {
  /* MY BROTHERS KEEPER — stark monochrome with cool graphite */
  --c1: #2a2c34;
  --c2: #525863;
  --c3: #9aa3ac;
}
.music[data-palette="wtp"] {
  /* WAY TOO P — warm ember stage lighting + peach */
  --c1: #2a0a05;
  --c2: #a53820;
  --c3: #f0a568;
}
.music[data-palette="tony"] {
  /* TONY STARK — cheez-it red, cereal orange, pebbles purple */
  --c1: #b82418;
  --c2: #ee9040;
  --c3: #4e1f6a;
}

/* Two drifting gradient orbs — GPU-composited */
.music::before,
.music::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}
.music::before {
  background:
    radial-gradient(50% 60% at 25% 30%, var(--c1) 0%, transparent 70%),
    radial-gradient(55% 55% at 75% 55%, var(--c2) 0%, transparent 70%);
  animation: orbit-a 24s ease-in-out infinite;
  mix-blend-mode: screen;
}
.music::after {
  background:
    radial-gradient(45% 55% at 50% 80%, var(--c3) 0%, transparent 70%),
    radial-gradient(40% 50% at 85% 20%, var(--c1) 0%, transparent 70%);
  animation: orbit-b 32s ease-in-out infinite;
  mix-blend-mode: screen;
  opacity: 0.85;
}

@keyframes orbit-a {
  0%,100% { transform: translate3d(-4%, -2%, 0) scale(1.1); }
  50%     { transform: translate3d(4%, 3%, 0) scale(1.25); }
}
@keyframes orbit-b {
  0%,100% { transform: translate3d(3%, 2%, 0) scale(1.2); }
  50%     { transform: translate3d(-3%, -4%, 0) scale(1.05); }
}

.music > * { position: relative; z-index: 1; }


.music-inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.music-inner .eyebrow,
.music-inner .music-title,
.music-inner .music-body,
.music-inner .music-links {
  max-width: 720px;
}
.music-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.music-body {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  color: var(--ink-dim);
  letter-spacing: -0.005em;
  max-width: 44ch;
}

/* ============================================
   RELEASE CAROUSEL — Apple-like snap scroller
   ============================================ */
.music-inner {
  max-width: 100%;
  padding: 0 0;
}

.release-carousel {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 1.5rem auto 0.5rem;
}

.release-track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.75rem);
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem calc(50% - min(260px, 40vw));
  scroll-padding: 0 calc(50% - min(260px, 40vw));
  overscroll-behavior-x: contain;
}
.release-track::-webkit-scrollbar { display: none; }

.release-item {
  flex: 0 0 min(500px, 82vw);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  padding: 0.25rem;
  opacity: 0.45;
  transform: translate3d(0, 0, 0) scale(0.97);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  will-change: transform, opacity;
}
.release-item.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.release-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.release-index {
  color: var(--accent);
}
.release-rule {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.release-tag {
  white-space: nowrap;
}
.release-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.5rem;
}

.release-player {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line);
  transition: border-color var(--d-med) var(--ease), box-shadow var(--d-med) var(--ease);
  min-height: 312px;
}
.release-item.is-active .release-player {
  border-color: rgba(242, 237, 230, 0.22);
  box-shadow: 0 16px 48px -16px rgba(0,0,0,0.55);
}
.release-player iframe {
  display: block !important;
  width: 100% !important;
  height: 312px !important;
  border: 0 !important;
  border-radius: 14px !important;
  color-scheme: normal;
}

/* Carousel arrows — desktop only */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 99px;
  background: rgba(242, 237, 230, 0.06);
  border: 1px solid rgba(242, 237, 230, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity var(--d-med) var(--ease), background var(--d-med) var(--ease), border-color var(--d-med) var(--ease), transform 0.2s var(--ease);
}
.carousel-arrow svg {
  width: 18px;
  height: 18px;
}
.carousel-arrow:hover:not(:disabled) {
  opacity: 1;
  background: rgba(242, 237, 230, 0.12);
  border-color: rgba(242, 237, 230, 0.24);
}
.carousel-arrow:active:not(:disabled) {
  transform: translateY(-50%) scale(0.95);
}
.carousel-arrow:disabled {
  opacity: 0.15;
  cursor: default;
}
.carousel-prev { left: clamp(0.5rem, 3vw, 2rem); }
.carousel-next { right: clamp(0.5rem, 3vw, 2rem); }

@media (max-width: 760px) {
  .carousel-arrow { display: none; }
  .release-track {
    padding: 0.5rem calc(50% - min(170px, 42vw));
    scroll-padding: 0 calc(50% - min(170px, 42vw));
  }
  .release-item { flex: 0 0 min(340px, 84vw); }
  .release-player { min-height: 260px; }
  .release-player iframe { height: 260px !important; }
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  border: none;
  background: rgba(242, 237, 230, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background var(--d-med) var(--ease), width var(--d-med) var(--ease);
}
.carousel-dot.is-active {
  background: var(--ink);
  width: 26px;
}
.carousel-dot:hover:not(.is-active) {
  background: rgba(242, 237, 230, 0.4);
}

.music-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.9rem;
  margin-top: 1.5rem;
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.music-links a {
  color: var(--ink);
  opacity: 0.7;
  transition: opacity var(--d-med) var(--ease), color var(--d-med) var(--ease);
}
.music-links a:hover {
  opacity: 1;
  color: var(--accent);
}
.music-links .dot {
  color: var(--ink-mute);
  opacity: 0.6;
}

/* ============================================
   MERCH — Exodus-Hills-style product grid
   ============================================ */
.merch {
  position: relative;
  padding: 5rem clamp(1.25rem, 4vw, 3rem) 8rem;
  background: var(--paper);
  color: var(--ink-dark);
  /* Top-inset shadow stitching this panel to the preceding section */
  box-shadow: 0 -30px 60px -20px rgba(0, 0, 0, 0.25);
  margin-top: -1px;
}
.merch-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Section head — left-aligned with View All on the right */
.merch-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.merch-head-left {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.merch-head .eyebrow {
  margin-bottom: 0;
  color: var(--ink-mute);
  font-size: 0.72rem;
  letter-spacing: -0.01em;
}
.merch-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink-dark);
  margin: 0;
}
.merch-head-link {
  display: inline-flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  color: var(--ink-dark);
  padding-bottom: 0.25rem;
  transition: color var(--d-med) var(--ease);
}
.merch-head-link:hover { color: var(--accent); }
.merch-head-underline {
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  transition: width 0.6s var(--ease);
}
.merch-head-link:hover .merch-head-underline { width: 72px; }

/* Merch "Coming Soon" teaser — used while morethanadream.us is pre-launch */
.merch-coming {
  width: 100%;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
  background: var(--bg);
  border-radius: 14px;
  color: #f4f3ef;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.merch-coming::before,
.merch-coming::after {
  content: '';
  position: absolute;
  inset: -15%;
  pointer-events: none;
  mix-blend-mode: screen;
  will-change: transform;
  z-index: 0;
}
.merch-coming::before {
  background:
    radial-gradient(50% 55% at 25% 30%, var(--accent-cool) 0%, transparent 65%),
    radial-gradient(45% 50% at 78% 72%, var(--accent) 0%, transparent 65%);
  opacity: 0.28;
  animation: tour-drift-a 36s ease-in-out infinite;
}
.merch-coming::after {
  background:
    radial-gradient(40% 48% at 72% 28%, var(--accent-warm) 0%, transparent 60%),
    radial-gradient(38% 44% at 22% 78%, var(--accent-cool) 0%, transparent 60%);
  opacity: 0.2;
  animation: tour-drift-b 48s ease-in-out infinite reverse;
}
.merch-coming > * { position: relative; z-index: 1; }
.merch-coming .eyebrow { color: rgba(244, 243, 239, 0.72); margin-bottom: 0.25rem; }
.merch-coming-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
}
.merch-coming-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.5;
  color: rgba(244, 243, 239, 0.78);
  max-width: 46ch;
  font-style: italic;
  letter-spacing: -0.005em;
  margin: 0;
}
.merch-coming-cta {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  background: #f4f3ef;
  color: var(--bg);
  border-radius: 99px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--d-med) var(--ease), color var(--d-med) var(--ease), transform var(--d-med) var(--ease);
}
.merch-coming-cta svg { width: 14px; height: 14px; transition: transform var(--d-med) var(--ease); }
.merch-coming-cta:hover { background: var(--accent); color: #f4f3ef; }
.merch-coming-cta:hover svg { transform: translateX(4px); }

/* Product grid — 2 columns mobile, 4 columns desktop (Exodus pattern) */
.product-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1rem;
  row-gap: 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 2rem;
    row-gap: 3.5rem;
  }
}

/* Staggered entrance */
.product-tile {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: calc(var(--i, 0) * 100ms);
}
.product-tile.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-tile-link {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  color: inherit;
  text-decoration: none;
}

/* Rounded soft-grey tile with image floating over it */
.product-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f1efe9;
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
}
.product-img {
  position: absolute;
  inset: -6%;                    /* image floats slightly beyond tile edges */
  width: 112%;
  height: 112%;
  object-fit: contain;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
  user-select: none;
}
.product-img-primary { opacity: 1; z-index: 1; }
.product-img-hover  { opacity: 0; z-index: 2; }

.product-tile-link:hover .product-img-primary { opacity: 0; }
.product-tile-link:hover .product-img-hover   { opacity: 1; }

/* Sharp-edged badge over rounded tile — classic Exodus tension */
.product-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  background: var(--ink-dark);
  color: var(--paper);
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  line-height: 1;
  border-radius: 0;
}
.product-tag-soon {
  background: transparent;
  color: var(--ink-mute);
  border: 1px solid rgba(13, 21, 24, 0.2);
}

/* Placeholder tiles — subtle watermark, no hover swap, muted */
.is-placeholder .product-tile-link {
  cursor: default;
}
.product-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25%;
  z-index: 1;
}
.product-watermark img {
  width: 100%;
  height: auto;
  opacity: 0.08;
  filter: grayscale(1);
  user-select: none;
  pointer-events: none;
}
.is-placeholder .product-name {
  color: var(--ink-mute);
}
.is-placeholder .product-sub {
  color: rgba(85, 94, 98, 0.6);
}
.is-placeholder:hover .product-name { color: var(--ink-mute); }

/* Label block below the frame */
.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.product-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink-dark);
  margin: 0;
  transition: color var(--d-med) var(--ease);
}
.product-tile-link:hover .product-name { color: var(--ink-mute); }
.product-sub {
  margin: 0.2rem 0 0;
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.product-price {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink-mute);
  letter-spacing: -0.005em;
  white-space: nowrap;
  margin: 0;
}

/* Responsive */
@media (max-width: 760px) {
  .merch { padding-top: 4rem; padding-bottom: 5rem; }
  .merch-head {
    align-items: flex-start;
    gap: 1rem;
  }
  .merch-head-link { font-size: 0.85rem; }
  .product-grid {
    column-gap: 0.75rem;
    row-gap: 2rem;
  }
  .product-name, .product-price { font-size: 0.85rem; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  background: transparent;
  color: var(--ink);
  padding: 5rem var(--pad) 2rem;
}
.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
}

.footer-mark {
  width: clamp(90px, 11vw, 140px);
  line-height: 0;
  margin-bottom: 1rem;
}
.footer-mark img {
  width: 100%;
  height: auto;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
  user-select: none;
}
.footer-bottom { position: relative; z-index: 1; }

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.footer-cta-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.footer-cta-body {
  font-size: 0.95rem;
  color: var(--ink-dim);
  max-width: 38ch;
}

.footer-form {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  max-width: 420px;
  margin-top: 0.75rem;
  padding: 0.35rem 0.35rem 0.35rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 99px;
  transition: border-color var(--d-slow) var(--ease);
  background: rgba(255,255,255,0.02);
}
.footer-form:focus-within { border-color: var(--accent); }
.footer-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  letter-spacing: -0.005em;
  padding: 0.6rem 0;
  outline: none;
}
.footer-form input::placeholder { color: var(--ink-mute); }
.footer-form button {
  padding: 0.65rem 1.1rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: 99px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: -0.005em;
  transition: background var(--d-med) var(--ease);
}
.footer-form button:hover { background: var(--accent); }

.footer-status {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  min-height: 1em;
}

.footer-nav,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: -0.005em;
  color: var(--ink-dim);
}
.footer-social { opacity: 0.7; }
.footer-nav a,
.footer-social a { transition: color var(--d-med) var(--ease); }
.footer-nav a:hover,
.footer-social a:hover { color: var(--ink); }

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.footer-credit-link {
  color: var(--ink-dim);
  transition: color var(--d-med) var(--ease);
  position: relative;
}
.footer-credit-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--d-med) var(--ease);
}
.footer-credit-link:hover {
  color: var(--ink);
}
.footer-credit-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (max-width: 560px) {
  .footer-form {
    flex-direction: column;
    padding: 0.5rem;
    border-radius: 1.25rem;
  }
  .footer-form input { padding: 0.75rem 1rem; text-align: center; }
  .footer-form button { width: 100%; padding: 0.85rem; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ============================================
   REDUCED MOTION
   Keep the hero video + wipe transitions (core experience);
   soften only the decorative reveals & stagger entrances.
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .title-logo-wrap,
  .stagger,
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .section {
    animation: none !important;
    opacity: 1 !important;
  }
}
