/* ============================================================
   Caribbean Speed Club — Public Design System
   Club colours: blue, white, black; green splash for CTAs only.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  /* Public marketing site is intentionally dark-only (club navy surfaces). */
  --color-bg-dark: var(--csc-bg-dark, #100c3a);
  --color-bg-mid: var(--csc-bg-mid, #171050);
  --color-bg-card: rgba(255, 255, 255, 0.05);
  --color-accent: var(--csc-green, #2bd8a8);
  --color-accent-dim: var(--csc-green-dim, rgba(43, 216, 168, 0.14));
  --color-accent-hover: var(--csc-green-light, #5ee4c0);
  --color-text: var(--csc-text, #eceaf9);
  --color-text-muted: var(--csc-text-muted, #9a96c0);
  --color-border: var(--csc-border-dark, rgba(255, 255, 255, 0.12));
  --color-navy: var(--csc-navy, #1b1464);
  --color-black: var(--csc-black, #0a0824);
  --color-white: #ffffff;

  --radius-sm: 6px;
  --radius-md: 12px;
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.35);
  --blur-glass: blur(16px);
  --transition-fast: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;

  --nav-height: 72px;
  --max-width: 1120px;
  --font-body: var(--csc-font-body, "DM Sans", system-ui, sans-serif);
  --font-display: var(--csc-font-display, "Bebas Neue", "DM Sans", sans-serif);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.025rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg-dark);
  min-height: 100vh;
  padding-top: var(--nav-height);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-fast);
}
a:hover { color: var(--color-accent-hover); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: 0.7rem 1.15rem;
  background: var(--color-accent);
  color: var(--color-black);
  font-weight: 700;
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  top: 0.75rem;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4.5rem 0; }
.section--tight { padding-top: 0; }

.section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.65rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin-bottom: 1.75rem;
  line-height: 1.05;
}

/* ── Navigation ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-height);
  background: rgba(10, 8, 36, 0.92);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border-bottom: 1px solid var(--color-border);
  display: flex; align-items: center;
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; gap: 1rem;
}
.navbar-brand {
  display: flex; align-items: center; gap: 0.8rem;
  text-decoration: none; flex-shrink: 0; color: inherit;
}
.navbar-brand:hover { color: inherit; }
.site-logo-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-navy);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  line-height: 0;
}
.site-logo-wrap--nav { height: 44px; padding: 0.25rem; }
.site-logo-wrap--footer { height: 54px; padding: 0.3rem; margin-bottom: 0.9rem; }
.navbar-brand img, .footer-logo { display: block; height: 36px; width: auto; }
.footer-logo { height: 44px; }
.navbar-logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  color: var(--color-white);
  line-height: 1;
}
.navbar-logo-text span { color: var(--color-white); }
.navbar-tagline {
  font-size: 0.68rem;
  color: var(--color-text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.18rem;
}
.navbar-nav {
  display: flex; align-items: center; gap: 0.15rem;
  flex-wrap: wrap; justify-content: flex-end;
}
.navbar-nav > a,
.nav-more-toggle {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition-fast);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.navbar-nav > a:hover,
.navbar-nav > a.active,
.nav-more-toggle:hover,
.nav-more-toggle[aria-expanded="true"],
.nav-more-toggle.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}
.navbar-nav > a.active,
.nav-more-toggle.active {
  box-shadow: inset 0 -2px 0 var(--color-accent);
}
.nav-more { position: relative; }
.nav-more-menu {
  display: none;
  position: absolute; top: calc(100% + 0.45rem); right: 0;
  min-width: 12rem;
  background: var(--color-black);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.4rem;
  box-shadow: var(--shadow-card);
  z-index: 110;
}
.nav-more-menu.open { display: flex; flex-direction: column; gap: 0.1rem; }
.nav-more-menu a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
}
.nav-more-menu a:hover,
.nav-more-menu a.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}
.navbar-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.navbar-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--color-text); border-radius: 2px;
}
.navbar-mobile {
  display: none;
  position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: rgba(10, 8, 36, 0.98);
  backdrop-filter: var(--blur-glass);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 1.25rem 1.25rem;
  z-index: 99;
  flex-direction: column;
  gap: 0.2rem;
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
}
.navbar-mobile.open { display: flex; }
.navbar-mobile a {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-weight: 500;
}
.navbar-mobile a:hover,
.navbar-mobile a.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}
.navbar-mobile a.active {
  box-shadow: inset 3px 0 0 var(--color-accent);
}
.navbar-mobile-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 1rem 1rem 0.35rem;
  font-weight: 700;
}

/* ── Home hero: compact navy brand + photo filling the rest of the viewport ── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--nav-height));
  background: var(--color-black);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Bias toward the skater line, not the ceiling sign */
  object-position: center 62%;
  opacity: 0;
  animation: hero-fade 0.9s ease 0.1s forwards;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 70% at 12% 0%, rgba(27, 20, 100, 0.65) 0%, transparent 55%),
    linear-gradient(100deg, rgba(10, 8, 36, 0.95) 0%, rgba(10, 8, 36, 0.86) 34%, rgba(10, 8, 36, 0.5) 66%, rgba(10, 8, 36, 0.78) 100%);
}
.hero > .container {
  position: relative;
  z-index: 2;
}
.hero-brand-inner {
  max-width: 46rem;
  padding: clamp(1.75rem, 4vw, 3rem) 0;
  opacity: 0;
  transform: translateY(14px);
  animation: hero-rise 0.75s ease 0.06s forwards;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 8vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--color-white);
  margin-bottom: 0.9rem;
}
.hero-title-line { display: block; }
.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 36rem;
  margin-bottom: 1.35rem;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@keyframes hero-rise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade {
  to { opacity: 1; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  text-decoration: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-black);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-black);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
}

/* ── Inner page headers (no reused muddy photo) ── */
.page-hero {
  position: relative;
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 2.25rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(180deg, #12103f 0%, var(--color-bg-dark) 100%);
  border-bottom: 1px solid var(--color-border);
}
.page-hero .container {
  position: relative;
  padding-left: calc(1.5rem + 14px);
}
.page-hero .container::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}
.page-hero .section-title { margin-bottom: 0.45rem; }
.page-hero .section-heading {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
}
.page-hero p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 40rem;
  margin-top: 0.85rem;
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Surfaces ── */
.surface {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.surface--list { padding: 0.35rem 0; }
.surface--flush { padding: 0; overflow: hidden; }

.glass-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition-fast);
}
.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
}
.glass-card--flush { padding: 0; overflow: hidden; }
.glass-card--list { padding: 0.35rem 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

.prose { color: var(--color-text); font-size: 1.05rem; max-width: 42rem; }
.prose p { margin-bottom: 1.1rem; }
.prose ul { list-style: disc; padding-left: 1.35rem; margin-bottom: 1.1rem; }
.prose ol { list-style: decimal; padding-left: 1.35rem; margin-bottom: 1.1rem; }
.prose li { margin-bottom: 0.45rem; }
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.03em;
  color: var(--color-white);
  margin: 2rem 0 0.85rem;
}
.prose h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 1.5rem 0 0.55rem;
}
.prose a { text-decoration: underline; text-underline-offset: 0.16em; }
.prose strong { color: var(--color-white); font-weight: 650; }

#page-map {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  max-width: 56rem;
  margin-top: 1.75rem;
}
.map-embed-label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.event-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  border-bottom: 1px solid var(--color-border);
}
.event-item:last-child { border-bottom: none; }
.event-info { flex: 1; }
.event-label { font-weight: 600; color: var(--color-white); font-size: 1rem; }
.event-date { font-size: 0.82rem; color: var(--color-text-muted); margin-top: 0.25rem; }
.news-summary { font-size: 0.92rem; color: var(--color-text-muted); margin-top: 0.4rem; line-height: 1.5; }
.news-summary p { margin: 0 0 0.6em; }
.news-summary p:last-child { margin-bottom: 0; }
.news-summary ul { list-style: disc; padding-left: 1.2rem; margin: 0 0 0.6em; }
.news-summary ol { list-style: decimal; padding-left: 1.2rem; margin: 0 0 0.6em; }
.news-summary li { margin-bottom: 0.3rem; }
.news-summary h2, .news-summary h3, .news-summary h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0.75em 0 0.35em;
}
.news-summary a { text-decoration: underline; text-underline-offset: 0.16em; }
.news-summary strong { color: var(--color-white); font-weight: 650; }

.committee-table { width: 100%; border-collapse: collapse; }
.committee-table th {
  text-align: left;
  padding: 0.85rem 1.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}
.committee-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
}
.committee-table td.role { color: var(--color-text-muted); font-size: 0.88rem; }
.committee-table td.name { font-weight: 650; color: var(--color-white); }
.committee-table td.email a { font-size: 0.88rem; }
.muted-note { color: var(--color-text-muted); font-size: 0.85rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.15rem;
}
.album-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}
.album-card:hover {
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}
.album-card[role="button"] { cursor: pointer; position: relative; }
.album-card[role="button"]:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}
.album-count {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: rgba(10, 8, 36, 0.72);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 650;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  z-index: 1;
}
.album-cover {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #171050, #0a0824);
}
.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.album-cover--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--color-navy), var(--color-black));
}
.album-cover-mark {
  width: 3rem;
  height: 3rem;
  opacity: 0.5;
  background: url("/shared/assets/logo/CSC-colour.png") center / contain no-repeat;
}
.album-body { padding: 1.1rem 1.2rem 1.3rem; }
.album-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: var(--color-white);
}
.album-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: 0.35rem;
  line-height: 1.45;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 5, 24, 0.9);
}
.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 1100px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}
.lightbox-caption {
  color: var(--color-white);
  font-size: 0.92rem;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: -2.6rem;
  right: 0;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 8, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--color-white);
  font-size: 1.4rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  cursor: pointer;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(10, 8, 36, 0.85); }
.lightbox-prev { left: -1rem; }
.lightbox-next { right: -1rem; }
@media (max-width: 640px) {
  .lightbox-prev { left: 0.25rem; }
  .lightbox-next { right: 0.25rem; }
  .lightbox-close { top: -2.4rem; right: 0.25rem; }
}

.empty-state {
  padding: 1.5rem 0;
  color: var(--color-text-muted);
  font-size: 0.98rem;
}

/* ── Footer ── */
.site-footer {
  background: var(--color-black);
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 1.5rem;
  margin-top: 4.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.25rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 0.65rem;
  max-width: 20rem;
  line-height: 1.55;
}
.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.9rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.92rem; color: var(--color-text); }
.footer-links a:hover { color: var(--color-white); }
.footer-social { display: flex; gap: 0.55rem; margin-top: 1rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 700;
}
.footer-social a:hover {
  border-color: var(--color-white);
  color: var(--color-white);
}
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1.15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── Shop callout ── */
.shop-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.75rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.shop-callout-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin: 0;
}
.shop-callout p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0.4rem 0 0;
  max-width: 28rem;
}

/* ── 404 ── */
.page-404 {
  min-height: calc(70vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 4rem 0;
}
.page-404 h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--color-white);
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}
.page-404 p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .navbar-nav { display: none; }
  .navbar-hamburger { display: flex; }
}

@media (max-width: 600px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { min-height: calc(100svh - var(--nav-height)); }
  .hero-brand-inner { padding: 1.5rem 0 1.15rem; }
  .hero h1 { font-size: clamp(2.6rem, 14vw, 3.4rem); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .page-hero .container { padding-left: calc(1.25rem + 14px); }
  .page-hero .container::before { left: 1.25rem; }
  .section { padding: 3.25rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-brand-inner, .hero-bg img {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .reveal { opacity: 1; transform: none; }
  .btn-primary:hover,
  .album-card:hover { transform: none; }
}
