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

:root {
  --bg: #080808;
  --bg-elevated: #0e0e0e;
  --bg-card: #141414;
  --text: #f0ece4;
  --text-muted: #8a8580;
  --gold: #c9a227;
  --gold-glow: rgba(201, 162, 39, 0.4);
  --gold-soft: rgba(201, 162, 39, 0.1);
  --hell: #a32a2a;
  --hell-glow: rgba(163, 42, 42, 0.4);
  --hell-soft: rgba(163, 42, 42, 0.1);
  --accent: #c9a227;
  --accent-secondary: #a32a2a;
  --accent-glow: var(--gold-glow);
  --accent-soft: var(--gold-soft);
  --border: rgba(255, 255, 255, 0.08);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-height: 72px;
  --container: 1120px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.player-active {
  padding-bottom: 88px;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 1.5rem;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 101;
}

.nav-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 58%;
  border: 2px solid var(--border);
  box-shadow: 0 0 20px var(--gold-glow), 0 0 20px var(--hell-glow);
}

.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a[aria-current="page"] {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(380px, 52vw, 680px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.45) 0%, transparent 18%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.35) 35%, transparent 62%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 2rem 3rem;
  max-width: 720px;
  animation: fadeUp 1.2s var(--ease-out) both;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold), var(--hell));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 38ch;
  margin: 0 auto 2.5rem;
  font-style: italic;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUp 1.2s 0.4s var(--ease-out) both;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), var(--hell), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), background 0.25s, color 0.25s, box-shadow 0.25s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--hell));
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow), 0 8px 32px var(--hell-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
}

/* Sections */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold), var(--hell));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1;
}

/* Music layout */
.music-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2.5rem;
  align-items: start;
}

.music-main {
  min-width: 0;
}

.singles-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.25rem;
}

.singles-sidebar-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.singles-sidebar-header h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
}

.singles-sidebar-header a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.25s;
}

.singles-sidebar-header a:hover {
  color: var(--text);
}

.singles-stack {
  display: grid;
  gap: 1rem;
}

.single-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

.single-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: -6px 0 20px var(--gold-soft), 6px 0 20px var(--hell-soft);
}

.single-card-art {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--border);
}

.single-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.single-card:hover .single-card-art img {
  transform: scale(1.06);
}

.single-play-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, 0.35);
  opacity: 0;
  transition: opacity 0.25s;
}

.single-play-badge svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.single-card:hover .single-play-badge {
  opacity: 1;
}

.single-card-body {
  padding: 1rem;
}

.single-type {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.single-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.single-title a {
  transition: color 0.25s;
}

.single-title a:hover {
  color: var(--gold);
}

.single-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.45;
  margin-bottom: 0.65rem;
}

.single-stream-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}

.single-stream-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Music */
.music {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
}

.music::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--hell), transparent);
  opacity: 0.4;
}

.featured-release {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.featured-artwork {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
  justify-self: center;
}

.artwork-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.artwork-glow {
  position: absolute;
  inset: -15%;
  z-index: 0;
  filter: blur(50px);
  opacity: 0.5;
}

.artwork-glow-gold {
  background: radial-gradient(circle at 20% 50%, var(--gold-glow), transparent 60%);
}

.artwork-glow-hell {
  background: radial-gradient(circle at 80% 50%, var(--hell-glow), transparent 60%);
}

.release-type {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.release-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  margin: 0.5rem 0 1rem;
  line-height: 1;
}

.release-desc {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
  max-width: 42ch;
}

.featured-artwork-link {
  display: block;
  transition: transform 0.3s var(--ease-out);
}

.featured-artwork-link:hover {
  transform: scale(1.02);
}

.stream-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.stream-cta {
  gap: 0.6rem;
}

.stream-cta svg {
  width: 18px;
  height: 18px;
}

.stream-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.tracklist-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.tracklist-header h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
}

.tracklist-header span {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.track-list {
  list-style: none;
  display: grid;
  gap: 0;
}

.track-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.track-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.track-item {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 1rem 1.5rem;
  align-items: center;
  padding: 1rem 0.5rem;
  transition: padding-left 0.3s var(--ease-out);
}

.track-row:hover .track-item {
  padding-left: 1rem;
}

.track-row.is-playing .track-item .track-title {
  color: var(--gold);
}

.track-row.is-playing .track-num {
  color: var(--gold);
}

.track-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.track-title {
  font-weight: 400;
  transition: color 0.25s;
}

.track-duration {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.track-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.5rem 0.5rem 0.5rem 0;
  justify-content: flex-end;
}

.track-action {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
  -webkit-tap-highlight-color: transparent;
}

.track-action .action-short {
  display: none;
}

.track-action-play {
  background: linear-gradient(135deg, var(--gold), var(--hell));
  border: none;
  color: #fff;
}

.track-action-play:hover {
  box-shadow: 0 4px 16px var(--gold-glow);
  color: #fff;
}

.track-action-yt:hover {
  color: #ff6b6b;
  border-color: rgba(255, 107, 107, 0.5);
  background: rgba(255, 107, 107, 0.08);
}

.track-action-sp:hover {
  color: #1ed760;
  border-color: rgba(30, 215, 96, 0.45);
  background: rgba(30, 215, 96, 0.08);
}

.video-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0 1rem 0.85rem;
}

.video-card-actions .track-action {
  flex: 1;
  text-align: center;
  min-width: 4.5rem;
}

.single-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.videos-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.videos-playlist-link {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  transition: color 0.25s;
}

.videos-playlist-link:hover {
  color: var(--text);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.video-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(163, 42, 42, 0.35);
  box-shadow: 0 8px 28px var(--hell-soft);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-card span {
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-muted);
  transition: color 0.25s;
}

.video-card:hover span {
  color: var(--text);
}

/* YouTube player */
.yt-player-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: rgba(14, 14, 14, 0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.yt-player-bar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  max-width: var(--container);
  margin-inline: auto;
}

.yt-player-thumb {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.yt-player-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.yt-player-title {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.yt-player-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.yt-player-controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.yt-player-volume {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.yt-player-volume-slider {
  width: 88px;
  height: 4px;
  appearance: none;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.yt-player-volume-slider::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--hell));
  border: none;
  box-shadow: 0 0 8px var(--gold-glow);
}

.yt-player-volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--hell));
  border: none;
}

#ytPlayerMute .icon-muted {
  display: none;
}

#ytPlayerMute.is-muted .icon-volume {
  display: none;
}

#ytPlayerMute.is-muted .icon-muted {
  display: block;
}

.yt-player-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.yt-player-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.yt-player-btn svg {
  width: 16px;
  height: 16px;
}

.yt-player-btn-main {
  width: 44px;
  height: 44px;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--hell));
  color: #fff;
}

.yt-player-btn-main:hover {
  color: #fff;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.yt-player-btn-main .icon-pause {
  display: none;
}

.yt-player-btn-main.is-playing .icon-play {
  display: none;
}

.yt-player-btn-main.is-playing .icon-pause {
  display: block;
}

.yt-player-btn-text {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
}

.yt-player-btn-text:hover {
  color: var(--gold);
}

.yt-player-close {
  color: var(--hell);
}

.yt-player-close:hover {
  color: #d44;
}

.yt-mount {
  position: fixed;
  z-index: 201;
  overflow: hidden;
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), bottom 0.35s var(--ease-out), left 0.35s var(--ease-out), opacity 0.25s;
}

.yt-mount--audio {
  bottom: 10px;
  left: 10px;
  transform: none;
  width: 240px;
  height: 60px;
  opacity: 0.02;
  pointer-events: none;
}

#ytPlayerMount iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.video-card,
.single-card-art,
.featured-artwork-link {
  cursor: pointer;
}



/* Legacy player (unused) */
.player {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.player-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--hell));
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.player-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.player-btn svg {
  width: 18px;
  height: 18px;
}

.player-btn .icon-pause {
  display: none;
}

.player-btn.playing .icon-play {
  display: none;
}

.player-btn.playing .icon-pause {
  display: block;
}

.player-track {
  flex: 1;
  min-width: 0;
}

.player-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
  margin-bottom: 6px;
}

.player-wave span {
  flex: 1;
  max-width: 4px;
  background: var(--text-muted);
  border-radius: 2px;
  height: 20%;
  transition: height 0.15s;
}

.player-btn.playing + .player-track .player-wave span {
  animation: waveBar 0.8s ease-in-out infinite alternate;
}

.player-wave span:nth-child(odd) { animation-delay: 0.1s; }
.player-wave span:nth-child(3n) { animation-delay: 0.2s; }
.player-wave span:nth-child(4n) { animation-delay: 0.35s; }
.player-wave span:nth-child(5n) { animation-delay: 0.05s; }

.player-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.player-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--hell));
  border-radius: 2px;
  transition: width 0.1s linear;
}

.player-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.stream-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stream-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.stream-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-soft);
}

/* Discography */
.discography {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.release-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.release-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: -8px 0 24px var(--gold-soft), 8px 0 24px var(--hell-soft);
}

.release-card-art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.release-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.release-card:hover .release-card-art img {
  transform: scale(1.05);
}

.card-tint {
  position: absolute;
  inset: 0;
  mix-blend-mode: overlay;
  opacity: 0.35;
  transition: opacity 0.3s;
}

.release-card:hover .card-tint {
  opacity: 0.2;
}

.card-tint-gold {
  background: linear-gradient(135deg, var(--gold), transparent);
}

.card-tint-split {
  background: linear-gradient(90deg, var(--gold), var(--hell));
}

.card-tint-hell {
  background: linear-gradient(225deg, var(--hell), transparent);
}

.release-card-body {
  padding: 1.25rem;
}

.release-year {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.release-card-body h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  margin: 0.25rem 0 0.35rem;
}

.release-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* About */
.about {
  background: var(--bg-elevated);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--border);
}

.about-visual-frame {
  position: absolute;
  inset: -12px;
  border: 1px solid transparent;
  border-image: linear-gradient(135deg, var(--gold), var(--hell)) 1;
  pointer-events: none;
  opacity: 0.5;
}

.about-content .section-header {
  margin-bottom: 2rem;
}

.about-lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.about-duality {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.duality-card {
  padding: 1.25rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.duality-label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.duality-heaven .duality-label {
  color: var(--gold);
}

.duality-hell .duality-label {
  color: var(--hell);
}

.duality-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.about-quote {
  margin-top: 1rem;
  padding-left: 1.5rem;
  border-left: 2px solid;
  border-image: linear-gradient(180deg, var(--gold), var(--hell)) 1;
  font-style: italic;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Connect */
.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.connect-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  margin: 0.5rem 0 1rem;
  line-height: 1;
}

.connect-info > p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 36ch;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.newsletter-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.newsletter-input-group {
  display: flex;
  gap: 0.75rem;
}

.newsletter-input-group input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s;
}

.newsletter-input-group input::placeholder {
  color: var(--text-muted);
}

.newsletter-input-group input:focus {
  border-color: var(--gold);
}

.form-message {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  min-height: 1.25rem;
}

.form-message.success {
  color: #6dbf8a;
}

/* Footer */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 58%;
  border: 1px solid var(--border);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

.footer-inner p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-email {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.25s;
}

.footer-email:hover {
  color: var(--gold);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes waveBar {
  from { height: 15%; }
  to { height: 90%; }
}

/* Articles */
.page-hero {
  padding: calc(var(--nav-height) + 4rem) 0 3rem;
  background:
    linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}

.page-hero-desc {
  max-width: 42ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.articles-section {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.articles-list {
  display: grid;
  gap: 1.25rem;
}

.articles-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem 1rem;
  border: 1px dashed var(--border);
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

.article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 39, 0.28);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.article-card-link {
  display: block;
  padding: 1.5rem 1.35rem 1.35rem;
}

.article-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.article-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.2rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 0.65rem;
  transition: color 0.25s;
}

.article-card:hover .article-card-title {
  color: var(--gold);
}

.article-card-excerpt {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.article-card-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.article-page {
  padding-top: var(--nav-height);
}

.article-post-header {
  padding: 3rem 0 2.5rem;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.article-back {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  transition: color 0.25s;
}

.article-back:hover {
  color: var(--gold);
}

.article-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.article-post-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 7vw, 3.75rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.article-post-lead {
  max-width: 50ch;
  font-size: 1.1rem;
  color: var(--text-muted);
  font-style: italic;
}

.article-body {
  max-width: 68ch;
  padding: 3rem 0 6rem;
  color: var(--text);
  line-height: 1.75;
}

.article-body p {
  margin-bottom: 1.35rem;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  margin: 2.5rem 0 1rem;
  color: var(--text);
}

.article-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.article-body a:hover {
  color: var(--text);
}

.article-hero-image {
  margin: 0;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
}

.article-hero-image img {
  display: block;
  width: 100%;
  max-width: min(740px, 78ch);
  height: auto;
}

.article-page--long .article-post-header {
  padding-top: 2rem;
}

.article-post-author {
  color: var(--gold);
}

.article-body--essay {
  max-width: 72ch;
}

.article-toc {
  margin-bottom: 3rem;
  padding: 1.75rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.article-toc h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.article-toc ol {
  margin: 0;
  padding-left: 1.25rem;
  columns: 1;
  column-gap: 2rem;
}

.article-toc li {
  margin-bottom: 0.45rem;
  break-inside: avoid;
}

.article-toc a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.article-toc a:hover {
  color: var(--gold);
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  margin: 2rem 0 0.85rem;
  color: var(--text);
}

.article-body h3.further-evidence {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2.25rem;
}

.article-body ul {
  margin: 0 0 1.35rem 1.25rem;
  padding: 0;
}

.article-body li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.theist-objection {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(201, 162, 39, 0.06);
  font-style: italic;
  color: var(--text-muted);
}

.theist-objection p {
  margin: 0;
}

.summary-note {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.fn-ref a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75em;
  font-weight: 600;
}

.fn-ref a:hover {
  text-decoration: underline;
}

.article-footnotes {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.article-footnotes h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.article-footnotes ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: fn;
}

.article-footnotes li {
  counter-increment: fn;
  margin-bottom: 1rem;
  padding-left: 2.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.article-footnotes li::before {
  content: "[" counter(fn) "]";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.fn-back {
  color: var(--gold);
  text-decoration: none;
  margin-left: 0.35rem;
}

.fn-back:hover {
  text-decoration: underline;
}

@media (min-width: 640px) {
  .article-toc ol {
    columns: 2;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .music-layout {
    grid-template-columns: 1fr;
  }

  .singles-sidebar {
    position: static;
    max-width: 360px;
    margin: 2rem auto 0;
  }

  .featured-release,
  .about-grid,
  .connect-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .featured-artwork {
    max-width: 320px;
  }

  .about-duality {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    z-index: 160;
  }

  .nav-logo {
    z-index: 160;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    min-height: 100dvh;
    background: rgba(8, 8, 8, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding:
      calc(var(--nav-height) + env(safe-area-inset-top, 0) + 2rem)
      1.5rem
      calc(2rem + env(safe-area-inset-bottom, 0));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links li {
    width: min(300px, 100%);
    text-align: center;
    flex-shrink: 0;
  }

  .nav-links a {
    display: block;
    font-size: 1.25rem;
    padding: 1rem 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: var(--gold);
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  html,
  body {
    touch-action: manipulation;
  }

  .nav,
  .nav.scrolled {
    padding: env(safe-area-inset-top, 0) 1rem 0;
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: none;
    border-bottom: 1px solid var(--border);
  }

  .nav-logo span {
    display: none;
  }

  .hero {
    --banner-height: min(44vh, calc(100vw * 1364 / 4096 * 1.35));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: auto;
    height: auto;
    padding-top: calc(var(--nav-height) + env(safe-area-inset-top, 0));
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0));
    overflow: hidden;
  }

  .hero-bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: var(--banner-height);
    flex-shrink: 0;
    overflow: hidden;
    background: var(--bg);
  }

  .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    margin: 0;
  }

  .hero-overlay {
    position: absolute;
    top: calc(var(--nav-height) + env(safe-area-inset-top, 0));
    left: 0;
    right: 0;
    bottom: auto;
    height: var(--banner-height);
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.55) 0%, transparent 30%),
      linear-gradient(0deg, rgba(8, 8, 8, 0.4) 0%, transparent 45%);
    pointer-events: none;
  }

  .hero-scroll {
    display: none;
  }

  .hero-content {
    position: relative;
    width: 100%;
    padding: 0.85rem 1.25rem 0;
    margin: 0;
  }

  .hero-eyebrow {
    display: none;
  }

  .hero-tagline {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
    gap: 0.65rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .container {
    width: min(var(--container), calc(100% - 1.5rem));
  }

  .stream-actions {
    flex-direction: column;
  }

  .stream-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .tracklist-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .singles-sidebar {
    max-width: none;
  }

  .yt-player-bar {
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .yt-player-bar-inner {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 0.45rem 0.65rem;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0));
    align-items: center;
  }

  .yt-player-thumb {
    grid-column: 1;
    grid-row: 1 / -1;
    width: 44px;
    height: 44px;
    align-self: center;
  }

  .yt-player-meta {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    padding-right: 0.25rem;
  }

  .yt-player-controls {
    grid-column: 2 / -1;
    grid-row: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.35rem;
    min-width: 0;
  }

  .yt-player-volume {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
  }

  .yt-player-volume-slider {
    flex: 1;
    width: auto;
    min-width: 48px;
    max-width: 100%;
  }

  .yt-player-close {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
  }

  .yt-player-btn,
  .yt-player-btn-main {
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
  }

  body.player-active {
    padding-bottom: calc(124px + env(safe-area-inset-bottom, 0));
  }

  .yt-mount--audio {
    bottom: calc(10px + env(safe-area-inset-bottom, 0));
  }
}

@media (max-width: 768px) {
  .featured-release {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .featured-info {
    min-width: 0;
  }

  .release-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    overflow-wrap: anywhere;
  }

  .track-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .track-item {
    grid-template-columns: 2.25rem minmax(0, 1fr) auto;
    gap: 0.35rem 0.65rem;
    padding: 0.75rem 0.5rem 0.25rem;
    min-width: 0;
  }

  .track-title {
    overflow-wrap: anywhere;
  }

  .track-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    padding: 0 0.5rem 0.85rem;
    width: 100%;
    justify-content: stretch;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 64px;
  }

  .section {
    padding: 4rem 0;
  }

  .track-action {
    font-size: 0.58rem;
    letter-spacing: 0.04em;
    padding: 0.55rem 0.2rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .track-action .action-long {
    display: none;
  }

  .track-action .action-short {
    display: inline;
  }

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

  .video-card-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .video-card-actions .track-action {
    width: 100%;
  }

  .single-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .yt-player-controls {
    display: grid;
    grid-template-columns: repeat(4, 44px) minmax(0, 1fr);
    align-items: center;
  }

  .yt-player-volume {
    grid-column: 1 / -1;
    width: 100%;
  }

  .yt-player-volume-slider {
    max-width: none;
  }
}

@media (max-width: 380px) {
  .track-actions {
    grid-template-columns: 1fr;
  }

  .single-actions {
    grid-template-columns: 1fr;
  }

  .track-action {
    width: 100%;
  }
}

/* Hero banner tuning by phone size (portrait) */
@media (max-width: 374px) {
  .hero {
    --banner-height: min(40vh, calc(100vw * 1364 / 4096 * 1.25));
  }

  .hero-tagline {
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }

  .hero-actions {
    max-width: 260px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .hero {
    --banner-height: min(44vh, calc(100vw * 1364 / 4096 * 1.35));
  }
}

@media (min-width: 430px) and (max-width: 768px) {
  .hero {
    --banner-height: min(48vh, calc(100vw * 1364 / 4096 * 1.45));
  }

  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 1.35rem;
  }

  .hero-actions {
    max-width: 320px;
  }
}

/* Landscape phones (short viewport) */
@media (max-width: 926px) and (orientation: landscape) and (max-height: 500px) {
  .hero {
    --banner-height: 72vh;
    padding-bottom: 0.85rem;
  }

  .hero-bg {
    position: relative;
    height: var(--banner-height);
  }

  .hero-overlay {
    height: var(--banner-height);
  }

  .hero-image {
    object-fit: cover;
    object-position: center center;
  }

  .hero-tagline {
    font-size: 0.85rem;
    margin-bottom: 0.85rem;
  }

  .hero-actions {
    flex-direction: row;
    max-width: 360px;
    gap: 0.5rem;
  }

  .hero-actions .btn {
    flex: 1;
    padding: 0.7rem 1rem;
  }
}