/*
Theme Name: Shattered Memories
Theme URI: https://aeipathytotalum.com
Author: Aeipathy Totalum
Description: A cinematic, ice-and-darkness WordPress theme for Aeipathy Totalum. Built around the visual world of "Shattered Memories" — fractured glass, moonlit halos, deep blue-black atmosphere, silver frost accents, and black roses.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: shattered-memories
Tags: music, dark, metal, symphonic, full-width-template, custom-header, custom-menu
*/

/* =============================================
   CSS VARIABLES — Shattered Memories Palette
   ============================================= */
:root {
  /* Core darks */
  --void:         #03040a;
  --abyss:        #060810;
  --deep:         #0a0d1a;
  --dark:         #0f1220;
  --card:         #121525;
  --card-border:  #1c2035;

  /* Silver / Ice accents */
  --silver:       #b8c4d4;
  --silver-light: #d8e4f4;
  --silver-dim:   #6a7a8a;
  --ice:          #e4eff8;
  --frost:        rgba(184, 196, 212, 0.12);
  --frost-bright: rgba(220, 235, 248, 0.18);

  /* Moonlight glow */
  --moon:         #c8d8e8;
  --moonbeam:     rgba(200, 216, 232, 0.06);
  --halo:         rgba(180, 200, 220, 0.15);

  /* Subtle blue tints */
  --navy:         #0d1830;
  --blue-deep:    #0a1428;
  --blue-mid:     #1a2840;

  /* Text */
  --text-primary: #e8f0f8;
  --text-muted:   #8090a4;
  --text-dim:     #4a5568;

  /* Fonts */
  --font-display: 'Cinzel Decorative', 'Palatino Linotype', serif;
  --font-serif:   'Cinzel', 'Palatino Linotype', serif;
  --font-body:    'EB Garamond', 'Georgia', serif;
  --font-ui:      'Raleway', 'Helvetica Neue', sans-serif;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-deep: 0 8px 48px rgba(0,0,0,0.8);
  --shadow-silver: 0 0 40px rgba(184, 196, 212, 0.08);
  --shadow-moon: 0 0 80px rgba(200, 216, 232, 0.12);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--void);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Noise grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  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)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* Ambient moonlight pool — fixed background glow */
body::after {
  content: '';
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(180, 200, 220, 0.04) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--silver); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--ice); }

img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  line-height: 1.2;
}
p { margin-bottom: 1rem; }

/* =============================================
   ORNAMENTAL DIVIDERS — angular / shattered feel
   ============================================= */
.ornament {
  display: flex; align-items: center; gap: 1rem;
  margin: 0 auto 2.5rem;
  max-width: 320px;
  color: var(--silver-dim);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  opacity: 0.6;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--silver-dim), transparent);
}

/* Shattered glass crack lines — purely decorative */
.crack-left,
.crack-right {
  position: absolute;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.crack-left {
  top: 0; left: 0;
  width: 280px; height: 400px;
  opacity: 0.18;
}
.crack-right {
  top: 0; right: 0;
  width: 280px; height: 400px;
  opacity: 0.18;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--silver-dim);
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-light);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 40px rgba(200, 216, 232, 0.2);
}

/* =============================================
   LAYOUT CONTAINER
   ============================================= */
.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* =============================================
   SKIP LINK
   ============================================= */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--silver); color: var(--void);
  padding: 0.5rem 1rem; z-index: 10000;
}
.skip-link:focus { top: 1rem; }

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#site-header.scrolled {
  background: rgba(3, 4, 10, 0.96);
  backdrop-filter: blur(16px);
  padding: 0.8rem 0;
  box-shadow: 0 1px 0 rgba(184, 196, 212, 0.08), 0 4px 30px rgba(0,0,0,0.7);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}

/* Logo */
.site-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-light);
  text-shadow: 0 0 20px rgba(200,216,232,0.3);
  display: flex; align-items: center; gap: 0.75rem;
}
.site-logo:hover { color: var(--ice); }

.logo-shard {
  width: 32px; height: 32px; flex-shrink: 0;
  position: relative;
}
.logo-shard svg { width: 100%; height: 100%; }

/* Nav links */
.main-nav ul {
  list-style: none; display: flex; gap: 2.5rem; align-items: center;
}
.main-nav a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--silver);
  transition: width var(--transition);
}
.main-nav a:hover,
.main-nav .current-menu-item a { color: var(--silver-light); }
.main-nav a:hover::after,
.main-nav .current-menu-item a::after { width: 100%; }

/* Shattered CTA */
.nav-cta {
  font-family: var(--font-ui) !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  border: 1px solid rgba(184, 196, 212, 0.25) !important;
  color: var(--silver) !important;
  padding: 0.5rem 1.2rem !important;
  background: transparent !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%) !important;
  transition: all var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: rgba(184, 196, 212, 0.08) !important;
  border-color: var(--silver) !important;
  color: var(--ice) !important;
}

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1px; background: var(--silver);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: var(--abyss);
  z-index: 0;
}
.hero-bg-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.35;
  z-index: 1;
}

/* Cracked vignette */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at center, transparent 20%, rgba(3,4,10,0.75) 70%),
    linear-gradient(to bottom, rgba(3,4,10,0.2) 0%, transparent 30%, transparent 60%, rgba(3,4,10,1) 100%);
  z-index: 2;
}

/* Moonlight halo effect */
.hero-moon {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,216,232,0.06) 0%, rgba(180,200,220,0.03) 40%, transparent 70%);
  border: 1px solid rgba(200, 216, 232, 0.06);
  z-index: 3;
  animation: moonPulse 8s ease-in-out infinite;
}
@keyframes moonPulse {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.04); }
}

/* Shattered glass shards — SVG decorative */
.hero-shards {
  position: absolute; inset: 0; z-index: 3;
  pointer-events: none;
  opacity: 0.15;
}

.hero-content {
  position: relative; z-index: 10;
  padding: 7rem 2rem 5rem;
  max-width: 860px;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero-band-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ice);
  text-shadow:
    0 0 60px rgba(200,216,232,0.3),
    0 0 120px rgba(180,200,220,0.1),
    0 4px 40px rgba(0,0,0,0.9);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}

.hero-album-title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver-dim);
  font-style: italic;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}
.hero-album-title span {
  color: var(--silver);
  font-style: normal;
  font-family: var(--font-display);
}

.hero-actions {
  display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Shards that flicker on load */
.hero-shard-anim {
  position: absolute; z-index: 4; pointer-events: none;
  opacity: 0;
  animation: shardReveal 2s 1.2s forwards;
}
@keyframes shardReveal {
  from { opacity: 0; transform: scale(0.9) rotate(-2deg); }
  to { opacity: 0.12; transform: scale(1) rotate(0deg); }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--silver-dim);
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s infinite;
}
.hero-scroll svg { width: 16px; height: 16px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 1px solid;
  cursor: pointer;
  transition: all var(--transition);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.btn-primary {
  background: rgba(184, 196, 212, 0.12);
  border-color: rgba(184, 196, 212, 0.4);
  color: var(--ice);
}
.btn-primary:hover {
  background: rgba(184, 196, 212, 0.22);
  border-color: var(--silver-light);
  color: var(--ice);
  box-shadow: 0 0 30px rgba(200, 216, 232, 0.15);
}
.btn-outline {
  background: transparent;
  border-color: rgba(184, 196, 212, 0.2);
  color: var(--silver);
}
.btn-outline:hover {
  background: rgba(184, 196, 212, 0.06);
  border-color: rgba(184, 196, 212, 0.45);
  color: var(--silver-light);
}

/* =============================================
   ALBUM FEATURE SECTION
   ============================================= */
#album {
  padding: 7rem 0;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
#album::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--silver-dim), transparent);
}
/* Ambient shatter background */
#album::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(180,200,220,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.album-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative; z-index: 1;
}

.album-cover-wrap {
  position: relative;
}
.album-cover-wrap img {
  width: 100%;
  box-shadow: var(--shadow-deep), var(--shadow-moon);
  position: relative; z-index: 1;
}
/* Fractured border frame */
.album-cover-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(184, 196, 212, 0.12);
  clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%, 0% 12px);
  z-index: 0;
}
.album-cover-wrap::after {
  content: '';
  position: absolute;
  inset: -22px;
  border: 1px solid rgba(184, 196, 212, 0.05);
  clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
}

.album-info .eyebrow {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 1rem;
}
.album-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver-light);
  text-shadow: 0 0 30px rgba(200,216,232,0.15);
  margin-bottom: 1.5rem;
}
.album-info p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}
.album-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =============================================
   NEWS SECTION
   ============================================= */
#news {
  padding: 7rem 0;
  background: var(--void);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5px; /* hairline gaps between shards */
}

.news-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-deep), 0 0 30px rgba(184,196,212,0.07);
  border-color: rgba(184,196,212,0.2);
}

.news-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.news-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75) saturate(0.7);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.news-card:hover .news-card-image img {
  transform: scale(1.06);
  filter: brightness(0.85) saturate(0.8);
}

.news-card-body { padding: 1.5rem 1.5rem 2rem; }
.news-card-date {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 0.75rem;
}
.news-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--silver-light);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}
.news-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.news-read-more {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-dim);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: color var(--transition), gap var(--transition);
}
.news-read-more:hover { color: var(--silver-light); gap: 0.7rem; }

.section-more {
  text-align: center; margin-top: 4rem;
}

/* =============================================
   TOUR SECTION
   ============================================= */
#tour {
  padding: 7rem 0;
  background: var(--dark);
  position: relative;
}
#tour::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--silver-dim), transparent);
}

.tour-list { max-width: 860px; margin: 0 auto; }
.tour-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(28, 32, 53, 0.9);
  transition: background var(--transition);
  position: relative;
}
.tour-row::before {
  content: '';
  position: absolute; left: -2rem; right: -2rem; top: 0; bottom: 0;
  background: rgba(184,196,212,0.02);
  opacity: 0;
  transition: opacity var(--transition);
}
.tour-row:hover::before { opacity: 1; }

.tour-date-col { text-align: center; }
.tour-date-col .day {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--silver);
  display: block;
  text-shadow: 0 0 20px rgba(184,196,212,0.2);
}
.tour-date-col .month {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.tour-info h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.tour-info .venue {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.tour-info .support {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--silver-dim);
  margin-top: 0.2rem;
}

.tour-ticket {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(184,196,212,0.2);
  color: var(--silver);
  padding: 0.5rem 1.1rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  white-space: nowrap;
  transition: all var(--transition);
}
.tour-ticket:hover {
  background: rgba(184,196,212,0.08);
  border-color: var(--silver);
  color: var(--ice);
}

/* =============================================
   DISCOGRAPHY
   ============================================= */
#music {
  padding: 7rem 0;
  background: var(--void);
}

.disco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.album-tile {
  cursor: pointer;
  transition: transform var(--transition);
  position: relative;
}
.album-tile:hover { transform: translateY(-6px); }

.album-tile-art {
  position: relative; overflow: hidden; margin-bottom: 1rem;
}
.album-tile-art img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  filter: brightness(0.8) saturate(0.7);
  transition: filter 0.5s;
}
.album-tile:hover .album-tile-art img { filter: brightness(1) saturate(0.85); }

.album-tile-overlay {
  position: absolute; inset: 0;
  background: rgba(3,4,10,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 1.8rem;
  color: var(--silver-light);
}
.album-tile:hover .album-tile-overlay { opacity: 1; }

.album-tile-year {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 0.3rem;
}
.album-tile-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--silver-light);
  letter-spacing: 0.04em;
}

/* =============================================
   CONNECT / SOCIAL
   ============================================= */
#connect {
  padding: 7rem 0;
  background: var(--deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#connect::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--silver-dim), transparent);
}
#connect::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(180,200,220,0.05) 0%, transparent 65%);
  pointer-events: none;
}
#connect .container { position: relative; z-index: 1; }

.social-row {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
  margin: 2.5rem 0 3.5rem;
}

.social-shard {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(184,196,212,0.12);
  padding: 0.6rem 1.2rem;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all var(--transition);
}
.social-shard svg { width: 14px; height: 14px; }
.social-shard:hover {
  color: var(--silver-light);
  border-color: rgba(184,196,212,0.3);
  background: rgba(184,196,212,0.05);
}

.newsletter-wrap {
  max-width: 460px; margin: 0 auto;
}
.newsletter-wrap p {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.newsletter-form {
  display: flex;
}
.newsletter-form input {
  flex: 1;
  background: rgba(15, 18, 32, 0.8);
  border: 1px solid rgba(184,196,212,0.15);
  border-right: none;
  color: var(--text-primary);
  padding: 0.85rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: var(--text-dim); }
.newsletter-form input:focus { border-color: rgba(184,196,212,0.35); }
.newsletter-form button {
  background: rgba(184,196,212,0.12);
  border: 1px solid rgba(184,196,212,0.3);
  color: var(--silver-light);
  padding: 0.85rem 1.8rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  transition: all var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: rgba(184,196,212,0.2);
  border-color: var(--silver);
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--void);
  border-top: 1px solid rgba(184,196,212,0.06);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .site-logo { margin-bottom: 1rem; display: inline-flex; }
.footer-brand p {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: var(--text-dim);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--silver); }

.footer-base {
  border-top: 1px solid rgba(184,196,212,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-base p {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin: 0;
}

/* =============================================
   POST / SINGLE
   ============================================= */
.post-header-section {
  padding: 10rem 0 4rem;
  background: var(--dark);
  position: relative;
}
.post-header-section::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--silver-dim), transparent);
}
.post-content-area {
  max-width: 760px; margin: 4rem auto; padding: 0 2rem;
}
.post-content-area h2, .post-content-area h3 {
  font-family: var(--font-serif);
  color: var(--silver-light);
  margin: 2.5rem 0 1rem;
}
.post-content-area p { color: var(--text-muted); line-height: 1.9; }
.post-content-area blockquote {
  border-left: 2px solid rgba(184,196,212,0.25);
  padding: 1rem 2rem; margin: 2rem 0;
  font-style: italic; color: var(--text-muted);
  background: rgba(15,18,32,0.6);
}

/* =============================================
   MOBILE NAV
   ============================================= */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 0; right: -100%;
    width: min(320px, 90%); height: 100vh;
    background: rgba(3,4,10,0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(184,196,212,0.08);
    padding: 5rem 2.5rem 2.5rem;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 999; overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 0; }
  .main-nav li { width: 100%; border-bottom: 1px solid rgba(184,196,212,0.06); }
  .main-nav a { display: block; padding: 1rem 0; font-size: 0.85rem; color: var(--text-primary); }
  .nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; display: none; }
  .nav-overlay.active { display: block; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .album-grid { grid-template-columns: 1fr; gap: 3rem; }
  .album-cover-wrap { max-width: 380px; margin: 0 auto; }
  .tour-row { grid-template-columns: 80px 1fr; gap: 1rem; }
  .tour-ticket { grid-column: 1/-1; justify-self: start; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-base { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .news-grid { grid-template-columns: 1fr; }
  .disco-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid rgba(184,196,212,0.15); border-bottom: none; }
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.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; }

/* WordPress core */
.alignleft { float: left; margin: 0 2rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 2rem; }
.aligncenter { margin: 1.5rem auto; display: block; }
.wp-caption-text { font-style: italic; color: var(--text-muted); font-size: 0.82rem; text-align: center; }
