/*
Theme Name: Andrés David Arcila
Theme URI: https://andresdavidarcila.com
Author: Andrés David Arcila
Author URI: https://andresdavidarcila.com
Description: Premium music portfolio theme for classical and Colombian guitarist Andrés David Arcila. Features custom post types for performances and videos, full WordPress Customizer support, Yoast SEO compatible, and ultra-fast performance.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: andres-david-arcila
Tags: music, portfolio, one-page, custom-colors, custom-logo, featured-images, full-width-template
*/

/* ════════════════════════════════════════
   ANDRÉS DAVID ARCILA — WordPress Theme
   Palette: Walnut · Ivory · Gold · Forest
   ════════════════════════════════════════ */
:root {
  --walnut:   #2C1A0E;
  --walnut2:  #3D2512;
  --walnut3:  #5C3D20;
  --ivory:    #F5EDD8;
  --ivory2:   #EDE0C4;
  --ivory3:   #D4C4A0;
  --gold:     #C4892A;
  --gold2:    #E0A840;
  --terra:    #8B4513;
  --green:    #2C4A2E;
  --green2:   #3D6640;
  --white:    #FAF6EE;
  --muted:    rgba(44,26,14,0.5);
  --border:   rgba(44,26,14,0.12);
  --fh:       'Cormorant Garamond', serif;
  --fb:       'Jost', sans-serif;
  --fp:       'Playfair Display', serif;
  --ease:     cubic-bezier(0.4,0,0.2,1);
  --shadow:   0 4px 24px rgba(44,26,14,0.12);
  --shadow-lg:0 8px 48px rgba(44,26,14,0.18);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--fb);
  background: var(--ivory);
  color: var(--walnut);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: 0.2s; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* Screen-reader text */
.screen-reader-text {
  position: absolute; top: -100px; left: 1rem;
  background: var(--gold); color: var(--walnut);
  padding: 0.5rem 1rem; border-radius: 2px; font-size: 0.8rem;
  z-index: 9999; transition: top 0.2s;
}
.screen-reader-text:focus { top: 1rem; }

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 { font-family: var(--fh); font-weight: 600; line-height: 1.15; color: var(--walnut); }
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; }
.italic { font-style: italic; color: var(--gold); }

/* Section eyebrow */
.section-eyebrow {
  font-family: var(--fb); font-size: 0.72rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold);
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: ''; flex: 0 0 40px; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.section-eyebrow.center { justify-content: center; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-32px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-left.visible  { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-right.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2.4rem; background: var(--gold); color: var(--walnut);
  font-family: var(--fb); font-weight: 500; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.16em;
  border: none; border-radius: 2px; transition: 0.25s var(--ease);
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,137,42,0.35); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2.4rem; background: transparent;
  border: 1px solid rgba(245,237,216,0.35); color: var(--ivory);
  font-family: var(--fb); font-weight: 400; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.16em; border-radius: 2px; transition: 0.25s;
}
.btn-outline:hover { border-color: var(--ivory); background: rgba(245,237,216,0.06); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2.4rem; background: var(--walnut); color: var(--ivory);
  font-family: var(--fb); font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.16em; border: none; border-radius: 2px; transition: 0.25s;
}
.btn-dark:hover { background: var(--walnut2); transform: translateY(-1px); }

/* ════════════════════════════
   NAVIGATION
   ════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem 0; transition: 0.4s var(--ease);
}
#site-header.scrolled {
  background: rgba(44,26,14,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 0;
  box-shadow: 0 2px 32px rgba(0,0,0,0.25);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

/* Logo */
.site-logo a, .site-logo-text {
  font-family: var(--fh); font-size: 1.4rem; font-weight: 600;
  color: var(--ivory); letter-spacing: 0.03em; line-height: 1.2;
}
.site-logo img { height: 48px; width: auto; }
.logo-sub {
  display: block; font-size: 0.62rem; font-family: var(--fb);
  font-weight: 300; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold);
  font-style: normal;
}

/* Primary nav */
#primary-nav { display: flex; gap: 2rem; align-items: center; }
#primary-nav a {
  color: rgba(245,237,216,0.75); font-size: 0.78rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.14em; transition: color 0.2s;
}
#primary-nav a:hover { color: var(--gold2); }
#primary-nav .nav-cta {
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(196,137,42,0.5);
  border-radius: 2px; color: var(--gold) !important;
}
#primary-nav .nav-cta:hover { background: var(--gold); color: var(--walnut) !important; border-color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  border: none; background: none; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ivory); border-radius: 1px; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* Mobile overlay */
#mobile-menu {
  position: fixed; inset: 0; background: var(--walnut); z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
#mobile-menu.open { opacity: 1; pointer-events: all; }
#mobile-menu a {
  font-family: var(--fh); font-size: 2.5rem; color: var(--ivory);
  font-style: italic; transition: color 0.2s;
}
#mobile-menu a:hover { color: var(--gold); }

/* ════════════════════════════
   HERO
   ════════════════════════════ */
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--walnut) 0%, var(--walnut2) 55%, var(--green) 100%);
  display: flex; align-items: center;
  padding: 9rem 0 6rem;
  position: relative; overflow: hidden;
}
.hero-strings {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-strings span {
  position: absolute; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(196,137,42,0.1) 30%, rgba(196,137,42,0.1) 70%, transparent 100%);
}
.hero-strings span:nth-child(1) { right: 25%; }
.hero-strings span:nth-child(2) { right: 30%; opacity: 0.6; }
.hero-strings span:nth-child(3) { right: 35%; opacity: 0.4; }
.hero-strings span:nth-child(4) { right: 40%; opacity: 0.25; }
.hero-strings span:nth-child(5) { right: 45%; opacity: 0.15; }
.hero-strings span:nth-child(6) { right: 50%; opacity: 0.08; }

.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-pre {
  font-family: var(--fb); font-size: 0.72rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.25em; color: var(--gold);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem;
  animation: fadeUp 1s var(--ease) 0.2s both;
}
.hero-pre::before { content: ''; width: 32px; height: 1px; background: var(--gold); opacity: 0.6; }
.hero-title {
  font-family: var(--fh); color: var(--ivory);
  font-weight: 300; letter-spacing: -0.01em; margin-bottom: 1.25rem;
  animation: fadeUp 1s var(--ease) 0.35s both;
}
.hero-title strong { font-weight: 600; }
.hero-title .name-line { display: block; }
.hero-subtitle {
  font-family: var(--fp); font-size: clamp(1rem,2.2vw,1.3rem);
  font-style: italic; color: rgba(245,237,216,0.65);
  margin-bottom: 3rem; line-height: 1.6;
  animation: fadeUp 1s var(--ease) 0.5s both;
}
.hero-actions {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  animation: fadeUp 1s var(--ease) 0.65s both;
}
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(245,237,216,0.35); animation: fadeUp 1s var(--ease) 1s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(245,237,216,0.35), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ════════════════════════════
   ABOUT
   ════════════════════════════ */
#about { background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 6rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-frame {
  position: relative; aspect-ratio: 4/5;
  background: var(--walnut2); border-radius: 2px; overflow: hidden;
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-img-frame::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(196,137,42,0.15), transparent 60%);
  z-index: 1; pointer-events: none;
}
.about-img-wrap::after {
  content: ''; position: absolute; bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); opacity: 0.4;
}
.about-img-wrap::before {
  content: ''; position: absolute; top: -20px; left: -20px;
  width: 80px; height: 80px;
  border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); opacity: 0.4;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: rgba(44,26,14,0.7); font-size: 1rem; line-height: 1.85; }
.about-details { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2.5rem 0; }
.detail-item { border-left: 2px solid var(--gold); padding-left: 1rem; }
.detail-item h5 {
  font-family: var(--fb); font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--gold); margin-bottom: 0.3rem;
}
.detail-item p { font-family: var(--fh); font-size: 1.1rem; color: var(--walnut); margin: 0; font-style: italic; }

/* ════════════════════════════
   MUSIC / REPERTOIRE
   ════════════════════════════ */
#music { background: var(--walnut); padding: 7rem 0; }
.music-header { text-align: center; margin-bottom: 5rem; }
.music-header h2 { color: var(--ivory); }
.music-header p { color: rgba(245,237,216,0.5); font-size: 1rem; max-width: 520px; margin: 1rem auto 0; font-family: var(--fp); font-style: italic; }
.music-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.music-card {
  background: var(--walnut2); padding: 2.5rem 2rem;
  position: relative; overflow: hidden; transition: 0.4s var(--ease);
}
.music-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0); transform-origin: left; transition: 0.4s var(--ease);
}
.music-card:hover { background: var(--walnut3); transform: translateY(-4px); }
.music-card:hover::before { transform: scaleX(1); }
.music-num { font-family: var(--fh); font-size: 3.5rem; font-weight: 300; color: rgba(196,137,42,0.15); line-height: 1; margin-bottom: 1.5rem; }
.music-card h3 { font-family: var(--fh); font-size: 1.35rem; color: var(--ivory); margin-bottom: 0.5rem; }
.music-card p { color: rgba(245,237,216,0.45); font-size: 0.88rem; line-height: 1.65; margin: 0; }
.music-tag {
  display: inline-block; margin-top: 1rem; font-size: 0.65rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold);
  border: 1px solid rgba(196,137,42,0.3); padding: 0.25rem 0.75rem; border-radius: 1px;
}

/* Tracks */
.player-section { margin-top: 5rem; }
.player-label { text-align: center; margin-bottom: 2.5rem; }
.player-label h3 { font-family: var(--fh); font-size: 1.8rem; color: var(--ivory); font-style: italic; }
.player-label p { color: rgba(245,237,216,0.4); font-size: 0.82rem; margin-top: 0.5rem; font-family: var(--fb); text-transform: uppercase; letter-spacing: 0.14em; }
.tracks { display: flex; flex-direction: column; gap: 2px; max-width: 760px; margin: 0 auto; }
.track {
  display: flex; align-items: center; gap: 1.5rem;
  background: var(--walnut2); padding: 1.25rem 1.75rem;
  cursor: pointer; transition: 0.2s; position: relative;
}
.track:hover { background: var(--walnut3); }
.track.playing { background: rgba(196,137,42,0.12); }
.track-play {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(196,137,42,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.85rem; transition: 0.2s;
}
.track:hover .track-play, .track.playing .track-play { background: var(--gold); color: var(--walnut); border-color: var(--gold); }
.track-info { flex: 1; }
.track-title { font-family: var(--fh); font-size: 1.1rem; color: var(--ivory); font-style: italic; }
.track-meta { font-size: 0.72rem; color: rgba(245,237,216,0.4); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.2rem; }
.track-duration { font-family: var(--fb); font-size: 0.8rem; color: rgba(245,237,216,0.35); }
.track-bar { position: absolute; bottom: 0; left: 0; height: 1px; background: var(--gold); width: 0; transition: width 0.1s linear; }

/* ════════════════════════════
   PERFORMANCES (CPT)
   ════════════════════════════ */
#performances { background: var(--ivory2); }
.perf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.perf-card {
  background: var(--white); padding: 2.5rem;
  border-bottom: 2px solid var(--ivory3);
  transition: 0.3s var(--ease); position: relative;
}
.perf-card::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.4s var(--ease);
}
.perf-card:hover::after { width: 100%; }
.perf-date { font-family: var(--fb); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 0.75rem; }
.perf-title { font-family: var(--fh); font-size: 1.4rem; margin-bottom: 0.5rem; font-style: italic; color: var(--walnut); }
.perf-location { font-size: 0.85rem; color: var(--muted); }
.perf-type { display: inline-block; margin-top: 1.25rem; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--terra); border: 1px solid rgba(139,69,19,0.2); padding: 0.2rem 0.65rem; }

/* ════════════════════════════
   VIDEOS (CPT)
   ════════════════════════════ */
#videos { background: var(--walnut); padding: 7rem 0; }
.videos-header { text-align: center; margin-bottom: 4rem; }
.videos-header h2 { color: var(--ivory); }
.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.video-thumb {
  aspect-ratio: 16/9; background: var(--walnut2);
  position: relative; overflow: hidden; cursor: pointer;
}
.video-thumb iframe { width: 100%; height: 100%; border: none; display: block; }
.video-thumb .video-overlay {
  position: absolute; inset: 0; background: rgba(44,26,14,0.6);
  backdrop-filter: blur(2px); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
  opacity: 0; transition: 0.3s;
}
.video-thumb:hover .video-overlay { opacity: 1; }
.play-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--walnut); padding-left: 4px;
}
.video-label { font-family: var(--fh); font-size: 1rem; color: var(--ivory); font-style: italic; text-align: center; padding: 0 1rem; }

/* ════════════════════════════
   PRESS QUOTE
   ════════════════════════════ */
#press { background: var(--ivory); }
.press-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.quote-mark { font-family: var(--fh); font-size: 8rem; line-height: 0.5; color: var(--gold); opacity: 0.2; margin-bottom: 2rem; }
.press-quote { font-family: var(--fp); font-size: clamp(1.2rem,2.5vw,1.7rem); font-style: italic; color: var(--walnut); line-height: 1.6; margin-bottom: 2rem; }
.press-source { font-family: var(--fb); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); }
.press-divider { display: flex; align-items: center; gap: 1.5rem; margin: 3rem 0; }
.press-divider::before, .press-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.press-divider span { font-size: 1.2rem; color: var(--gold); opacity: 0.5; }

/* ════════════════════════════
   CONTACT / BOOKING
   ════════════════════════════ */
#contact { background: linear-gradient(160deg, var(--walnut) 0%, var(--green) 100%); padding: 8rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-left h2 { color: var(--ivory); margin-bottom: 1.25rem; }
.contact-left p { color: rgba(245,237,216,0.6); font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.contact-item h5 { font-family: var(--fb); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(245,237,216,0.45); margin-bottom: 0.2rem; }
.contact-item p { color: var(--ivory); font-size: 0.95rem; margin: 0; }
.socials { display: flex; gap: 0.75rem; margin-top: 2.5rem; }
.social-btn {
  width: 42px; height: 42px; border-radius: 2px;
  border: 1px solid rgba(245,237,216,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,237,216,0.5); font-size: 0.9rem; transition: 0.2s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(196,137,42,0.08); }

.contact-form-wrap {
  background: rgba(245,237,216,0.06); backdrop-filter: blur(8px);
  border: 1px solid rgba(245,237,216,0.1); border-radius: 2px; padding: 2.5rem;
}
.contact-form-wrap .form-group { margin-bottom: 1.25rem; }
.contact-form-wrap label { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(245,237,216,0.5); margin-bottom: 0.5rem; font-family: var(--fb); }
.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: rgba(245,237,216,0.05); border: 1px solid rgba(245,237,216,0.15);
  border-radius: 2px; color: var(--ivory); font-family: var(--fb); font-size: 0.9rem; outline: none; transition: 0.2s;
}
.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder { color: rgba(245,237,216,0.25); }
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus { border-color: var(--gold); background: rgba(196,137,42,0.05); }
.contact-form-wrap select option { background: var(--walnut); color: var(--ivory); }
.contact-form-wrap textarea { min-height: 120px; resize: vertical; }
.form-submit {
  width: 100%; padding: 1rem; background: var(--gold);
  color: var(--walnut); border: none; border-radius: 2px;
  font-family: var(--fb); font-weight: 500; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.18em; cursor: pointer; transition: 0.2s;
}
.form-submit:hover { background: var(--gold2); }

/* ════════════════════════════
   FOOTER
   ════════════════════════════ */
#site-footer {
  background: var(--walnut); color: rgba(245,237,216,0.4);
  padding: 3rem 0; border-top: 1px solid rgba(245,237,216,0.06);
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.25rem; }
.footer-logo { font-family: var(--fh); font-size: 1.1rem; color: rgba(245,237,216,0.65); font-style: italic; }
.footer-copy { font-size: 0.72rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ════════════════════════════
   BLOG / SINGLE
   ════════════════════════════ */
.page-hero { background: linear-gradient(160deg, var(--walnut), var(--green)); padding: 8rem 0 5rem; text-align: center; }
.page-hero h1 { color: var(--ivory); }
.page-hero p { color: rgba(245,237,216,0.6); margin-top: 1rem; }
.page-content { padding: 5rem 0; max-width: 820px; margin: 0 auto; }
.page-content h2, .page-content h3 { margin: 2rem 0 1rem; }
.page-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.page-content ul li { margin-bottom: 0.4rem; color: rgba(44,26,14,0.75); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.blog-card { background: var(--white); border-radius: 2px; overflow: hidden; transition: 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-thumb { height: 200px; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-body { padding: 1.5rem; }
.blog-cat { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 0.5rem; }
.blog-title { font-family: var(--fh); font-size: 1.25rem; margin-bottom: 0.75rem; }
.blog-excerpt { color: var(--muted); font-size: 0.88rem; }
.blog-meta { font-size: 0.75rem; color: var(--muted); margin-top: 1rem; }

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

/* ════════════════════════════
   RESPONSIVE
   ════════════════════════════ */
/* ─── RESPONSIVE — Tablet ─── */
@media (max-width: 1000px) {
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-img-wrap { max-width: 420px; margin: 0 auto; }
  .music-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { justify-content: center; text-align: center; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .perf-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: clamp(2.4rem, 5vw, 3.6rem); }
}

/* ─── RESPONSIVE — Mobile ─── */
@media (max-width: 768px) {
  /* Navigation */
  #primary-nav { display: none; }
  .hamburger { display: flex; }

  /* Grids → single column */
  .music-grid, .perf-grid, .video-grid, .blog-grid { grid-template-columns: 1fr; }

  /* Sections */
  #hero { padding: 7rem 0 4rem; }
  .section { padding: 4rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  /* About */
  .about-details { grid-template-columns: 1fr; }
  .about-grid { gap: 2.5rem; }

  /* Typography */
  .hero-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero-subtitle { font-size: 1rem; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  /* Cards */
  .music-card, .perf-card, .video-card, .blog-card { border-radius: 12px; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 1.5rem; align-items: center; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: .75rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
}

/* ─── RESPONSIVE — Small mobile ─── */
@media (max-width: 500px) {
  /* Buttons */
  .hero-actions { flex-direction: column; gap: .75rem; width: 100%; }
  .btn-primary, .btn-outline { justify-content: center; width: 100%; }

  /* Container */
  .container { padding: 0 1.1rem; }

  /* Hero */
  #hero { padding: 6rem 0 3.5rem; }
  .hero-badge { font-size: .65rem; }

  /* Section padding */
  .section { padding: 3rem 0; }

  /* Stats */
  .about-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Music cards */
  .music-card img { height: 180px; }

  /* Testimonials */
  .testimonial-card { padding: 1.25rem; }
  .testimonial-text { font-size: .9rem; }
}

/* ─── RESPONSIVE — Lessons platform ─── */
@media (max-width: 768px) {
  .lesson-grid { grid-template-columns: 1fr !important; }
  .plan-cards { flex-direction: column; align-items: center; }
  .plan-card { width: 100%; max-width: 380px; }
  .dashboard-grid { grid-template-columns: 1fr !important; }
  .lesson-player { aspect-ratio: 16/9; }
  .join-plans { flex-direction: column; align-items: center; gap: 1.5rem; }
}
