/* ============================================================
   ERIC VETA — "Ancient Forge / Digital Fire"
   Color system: Bardstep navy + Altar crimson + cyber accents
   ============================================================ */

/* --- 1. Custom Properties --- */
:root {
  --bg-deep: #080c18;
  --bg-elevated: #0d1527;
  --bg-card: #111a2e;
  --bg-surface: #162038;

  --crimson: #C41E3A;
  --crimson-dark: #8B0000;
  --crimson-glow: rgba(196, 30, 58, 0.35);

  --amber: #E8820C;
  --amber-light: #F5A623;
  --gold: #C9A84C;
  --gold-dim: rgba(201, 168, 76, 0.25);

  --cyan: #00D4FF;
  --violet: #7B61FF;

  --text-primary: #E8E0D4;
  --text-secondary: #8A9BBF;
  --text-muted: #4E5F80;

  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Oswald', sans-serif;

  --nav-height: 72px;
  --section-pad: clamp(64px, 10vw, 120px);
  --content-max: 1200px;
}

/* --- 2. Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

::selection {
  background: var(--crimson);
  color: #fff;
}

/* --- 3. Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 2vw, 1.2rem); }

.accent-font { font-family: var(--font-accent); }

.section-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

/* --- 4. Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.section-pad {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

/* --- 5. Decorative Divider --- */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px auto;
  max-width: 320px;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-diamond {
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* --- 6. Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--crimson);
  color: #fff;
  border: 1px solid var(--gold-dim);
  box-shadow: 0 0 20px var(--crimson-glow);
}

.btn-primary:hover {
  background: #d42245;
  box-shadow: 0 0 30px var(--crimson-glow), 0 4px 20px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--amber-light);
  box-shadow: 0 0 20px var(--gold-dim);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* --- 7. Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(8, 12, 24, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--crimson), var(--amber));
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-socials a {
  color: var(--text-muted);
  transition: color 0.3s, transform 0.3s;
  display: flex;
}

.nav-socials a:hover {
  color: var(--text-primary);
  transform: scale(1.15);
}

.nav-socials svg { width: 18px; height: 18px; fill: currentColor; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 24, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-primary);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--amber); }

.mobile-menu .mobile-socials {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.mobile-menu .mobile-socials a { font-size: 1rem; }
.mobile-menu .mobile-socials svg { width: 24px; height: 24px; fill: currentColor; }

/* --- 8. Hero --- */
.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  max-height: 720px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero/altarwide_4x.png');
  background-size: cover;
  background-position: center 30%;
  animation: hero-drift 25s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, var(--bg-deep) 0%, rgba(8,12,24,0.3) 40%, rgba(8,12,24,0.15) 60%, rgba(8,12,24,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: clamp(48px, 8vh, 100px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 40px var(--crimson-glow), 0 2px 8px rgba(0,0,0,0.6);
  margin-bottom: 12px;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Ember particles */
.embers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.embers span {
  position: absolute;
  bottom: -10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0;
  animation: ember-rise linear infinite;
}

@keyframes ember-rise {
  0%   { opacity: 0; transform: translateY(0) translateX(0); }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100vh) translateX(var(--drift)); }
}

.embers span:nth-child(1)  { left: 8%;  --drift: 20px;  animation-duration: 7s;  animation-delay: 0s; }
.embers span:nth-child(2)  { left: 15%; --drift: -15px; animation-duration: 9s;  animation-delay: 1.2s; }
.embers span:nth-child(3)  { left: 25%; --drift: 30px;  animation-duration: 6s;  animation-delay: 0.5s; background: var(--crimson); }
.embers span:nth-child(4)  { left: 33%; --drift: -10px; animation-duration: 8s;  animation-delay: 2.8s; }
.embers span:nth-child(5)  { left: 42%; --drift: 25px;  animation-duration: 10s; animation-delay: 1.5s; }
.embers span:nth-child(6)  { left: 50%; --drift: -20px; animation-duration: 7s;  animation-delay: 3.5s; background: var(--crimson); }
.embers span:nth-child(7)  { left: 58%; --drift: 15px;  animation-duration: 9s;  animation-delay: 0.8s; }
.embers span:nth-child(8)  { left: 67%; --drift: -30px; animation-duration: 6s;  animation-delay: 2s; }
.embers span:nth-child(9)  { left: 75%; --drift: 10px;  animation-duration: 11s; animation-delay: 4s; background: var(--crimson); }
.embers span:nth-child(10) { left: 82%; --drift: -25px; animation-duration: 8s;  animation-delay: 0.3s; }
.embers span:nth-child(11) { left: 90%; --drift: 20px;  animation-duration: 7s;  animation-delay: 3s; }
.embers span:nth-child(12) { left: 95%; --drift: -15px; animation-duration: 9s;  animation-delay: 1.8s; }

/* --- 9. Featured Release --- */
.featured {
  background: var(--bg-deep);
}

.featured-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.featured-art {
  width: clamp(220px, 30vw, 360px);
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow:
    -8px 0 30px var(--crimson-glow),
    8px 0 30px rgba(232, 130, 12, 0.2);
}

.featured-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-info h2 { margin-bottom: 8px; }

.featured-info .release-note {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.featured-info p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 480px;
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(138, 155, 191, 0.15);
  border-radius: 4px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.platform-link svg { width: 16px; height: 16px; fill: currentColor; }

.platform-link:hover {
  color: var(--text-primary);
  border-color: var(--amber);
  background: rgba(232, 130, 12, 0.08);
  transform: translateY(-2px);
}

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

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.about-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  max-width: 360px;
}

.about-photo img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  pointer-events: none;
}

.about-text h2 { margin-bottom: 24px; }

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* drop cap intentionally removed */

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.stat-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--bg-card);
  border-radius: 6px;
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 7px;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.5),
    var(--bg-card) 35%,
    var(--bg-card) 55%,
    rgba(123, 97, 255, 0.5)
  );
  z-index: -1;
  opacity: 0.6;
  transition: opacity 0.4s;
}

.stat-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 7px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.08) 55%,
    transparent 100%
  );
  background-size: 200% 100%;
  z-index: -1;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.stat-card:hover::before { opacity: 1; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--amber-light);
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- 11. Parallax Divider --- */
.parallax-divider {
  position: relative;
  height: clamp(280px, 40vw, 420px);
  overflow: hidden;
  background-size: cover;
  background-position: center 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 24, 0.65);
}

.parallax-divider blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.06em;
  color: #fff;
  text-align: center;
  max-width: 720px;
  padding: 32px 24px;
  text-shadow: 0 0 40px var(--crimson-glow), 0 2px 16px rgba(0,0,0,0.7);
}

.parallax-divider blockquote::before,
.parallax-divider blockquote::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  margin: 0 auto 20px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.parallax-divider blockquote::after {
  margin: 20px auto 0;
}

/* --- 12. Discography --- */
.discography {
  background: var(--bg-deep);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  display: inline-block;
  position: relative;
  padding: 0 24px;
}

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

.album-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.album-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px var(--crimson-glow);
}

.album-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.album-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,12,24,0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.album-card:hover .album-card-overlay { opacity: 1; }

.album-card-overlay span {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.disco-cta {
  text-align: center;
  margin-top: 48px;
}

/* --- 13. Email Signup --- */
.signup {
  background: var(--bg-elevated);
  text-align: center;
}

.signup h2 { margin-bottom: 8px; }

.signup .signup-sub {
  font-family: var(--font-accent);
  color: var(--text-secondary);
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}

.signup-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}

.signup-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--text-muted);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.signup-form input[type="email"]::placeholder { color: var(--text-muted); }
.signup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.15);
}

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

/* --- 14. Contact --- */
.contact {
  background: var(--bg-deep);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.contact-info h2 { margin-bottom: 16px; }

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.contact-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 2px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.1);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(138, 155, 191, 0.2);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.12);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A9BBF' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.contact-form select option { background: var(--bg-card); }

.contact-form textarea { resize: vertical; min-height: 120px; }

/* --- 15. Footer --- */
.footer {
  background: #060a14;
  padding: 48px 0 32px;
  text-align: center;
}

.footer-logo img {
  height: 28px;
  margin: 0 auto 24px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(138, 155, 191, 0.15);
  color: var(--text-muted);
  transition: all 0.35s ease;
}

.footer-socials a:hover {
  color: var(--text-primary);
  border-color: var(--amber);
  box-shadow: 0 0 16px var(--gold-dim);
  transform: translateY(-2px);
}

.footer-socials svg { width: 16px; height: 16px; fill: currentColor; }

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-nav a {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--text-secondary); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Forge-glow line */
.footer-glow {
  width: 120px;
  height: 1px;
  margin: 0 auto 24px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* --- 16. Press Page --- */
.press-hero {
  position: relative;
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  background: var(--bg-elevated);
  overflow: hidden;
}

.press-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.15;
}

.press-hero .container { position: relative; z-index: 1; }

.press-hero h1 {
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.press-hero .press-subtitle {
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.press-bio {
  background: var(--bg-deep);
}

.press-bio-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.press-bio-text h2 { margin-bottom: 24px; }
.press-bio-text h4 {
  color: var(--amber);
  margin-bottom: 16px;
  font-family: var(--font-accent);
  letter-spacing: 0.06em;
}

.press-bio-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.press-featured {
  background: var(--bg-elevated);
}

.press-featured-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.press-release-details h4 {
  color: var(--amber);
  margin-bottom: 8px;
  font-family: var(--font-accent);
  letter-spacing: 0.06em;
}

.press-release-details h2 { margin-bottom: 20px; }

.press-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.press-meta span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.press-meta strong { color: var(--text-primary); }

.press-release-details p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.press-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.press-links-list a {
  color: var(--cyan);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.press-links-list a:hover { color: var(--amber); }

.press-art {
  border-radius: 6px;
  overflow: hidden;
}

.press-art img { width: 100%; }

.press-notes {
  background: var(--bg-deep);
}

.press-notes p {
  color: var(--text-secondary);
  max-width: 720px;
}

.press-notes p strong { color: var(--text-primary); }

.press-socials-section {
  background: var(--bg-elevated);
}

.press-socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 24px;
  max-width: 720px;
}

.press-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(138, 155, 191, 0.1);
  border-radius: 4px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.press-social-link strong { color: var(--text-primary); min-width: 100px; }

.press-social-link:hover {
  border-color: var(--amber);
  background: rgba(232, 130, 12, 0.06);
}

.press-photos {
  background: var(--bg-deep);
}

.press-photos-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.press-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.press-photo-grid a {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}

.press-photo-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.press-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* --- 17. Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- 18. Responsive --- */
@media (max-width: 1024px) {
  .nav-links, .nav-socials { display: none; }
  .hamburger { display: flex; }

  .about-inner,
  .contact-inner,
  .press-bio-inner,
  .press-featured-inner {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 400px;
    margin: 0 auto;
  }

  .featured-inner { grid-template-columns: 1fr; text-align: center; }
  .featured-art { margin: 0 auto; }
  .featured-info p { margin-left: auto; margin-right: auto; }
  .platform-links { justify-content: center; }

  .press-photo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-title { letter-spacing: 0.06em; }

  .stats-row { grid-template-columns: 1fr; gap: 12px; }

  .signup-form { flex-direction: column; }
  .signup-form input[type="email"] { width: 100%; }

  .form-row { grid-template-columns: 1fr; }

  .album-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .contact-photo { display: none; }

  /* parallax handled via JS transform */

  .press-socials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .album-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .press-photo-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  background: rgba(13, 21, 39, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.25);
  color: #fff;
}
