/* ============================================================
   EL PADRE — Brand Design System
   Colors: #000000, #151515, #F67613, #FFFFFF
   Typography: Monument Extended (headers), Montserrat (body)
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --black: #000000;
  --black-soft: #151515;
  --orange: #F67613;
  --orange-hover: #ff8a2e;
  --orange-dark: #d46200;
  --white: #FFFFFF;
  --grey-light: #b0b0b0;
  --grey-mid: #666666;
  --grey-dark: #1a1a1a;
  --grey-card: #0d0d0d;

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --nav-height: 90px;
  --section-pad: clamp(40px, 6vw, 72px);
  --container-max: 1200px;
  --container-wide: 1400px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(246,118,19,0.15);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

/* --- Utility Classes --- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; }
.text-orange { color: var(--orange); }
.text-grey { color: var(--grey-light); }
.text-center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); letter-spacing: 0.06em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: 0.04em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1rem, 2vw, 1.3rem); }

.subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--grey-light);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.7;
  max-width: 640px;
}
.tagline {
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--orange-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1.5px solid var(--orange);
  color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--black);
}
.btn-ghost {
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(0, 0, 0, 0.95);
}
.nav-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}
.nav-logo img {
  height: 72px;
  width: auto;
  display: block;
  filter: brightness(1);
  transition: var(--transition);
}
.nav-logo:hover img { filter: brightness(1.2); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--orange);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  margin-left: 8px;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--orange); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* --- Hero Section --- */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: var(--nav-height);
  overflow: hidden;
}
.hero.hero-compact {
  min-height: 40vh;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(246,118,19,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(246,118,19,0.04) 0%, transparent 40%),
              var(--black);
}
.hero-portal {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  border-radius: 50%;
  border: 1px solid rgba(246,118,19,0.15);
  box-shadow: 0 0 80px rgba(246,118,19,0.06), inset 0 0 80px rgba(246,118,19,0.04);
  animation: portalPulse 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes portalPulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%,-50%) scale(1.03); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}
.hero-content .tagline { margin-bottom: 20px; }
.hero-content h1 { margin-bottom: 24px; }
.hero-content .subtitle {
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Photo-based hero */
.hero.hero-photo {
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.5) 70%,
    rgba(0,0,0,0.85) 100%
  );
  z-index: 1;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header .tagline { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header .subtitle { margin: 0 auto; }

/* --- Cards --- */
.card {
  background: var(--grey-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(246,118,19,0.2);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.card-body { padding: 24px; }
.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* --- Event Cards --- */
.event-card {
  background: var(--grey-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 32px;
  display: grid;
  grid-template-columns: 90px auto 1fr auto;
  gap: 24px;
  align-items: center;
  transition: var(--transition);
}
.event-card:hover {
  border-color: rgba(246,118,19,0.25);
  box-shadow: var(--shadow-card);
}
.event-date {
  text-align: center;
  min-width: 70px;
}
.event-date .day {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.event-date .month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--grey-light);
  margin-top: 4px;
}
.event-date .year {
  font-size: 0.7rem;
  color: var(--grey-mid);
}
.event-info h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  text-transform: none;
  letter-spacing: 0.02em;
}
.event-venue {
  font-size: 0.85rem;
  color: var(--grey-light);
}
.event-venue .city { color: var(--orange); font-weight: 500; }
.event-meta {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--grey-mid);
}
.event-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 700px) {
  .event-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }
  .event-card .btn { width: 100%; }
}

/* --- Release / Music Cards --- */
.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.release-card {
  background: var(--grey-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.release-card:hover {
  border-color: rgba(246,118,19,0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.release-art {
  aspect-ratio: 1;
  background: var(--grey-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.release-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
}
.release-art img { width: 100%; height: 100%; object-fit: cover; }
.release-info {
  padding: 20px;
}
.release-info h4 {
  font-size: 1rem;
  text-transform: none;
  margin-bottom: 4px;
}
.release-info .release-date {
  font-size: 0.75rem;
  color: var(--grey-mid);
  letter-spacing: 0.05em;
}
.release-links {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.release-links a {
  font-size: 0.7rem;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--grey-light);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.release-links a:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.release-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.release-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
}
.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--black);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-buy:hover {
  background: var(--orange-hover);
  box-shadow: var(--shadow-glow);
  color: var(--black);
}

/* --- Ecosystem Section --- */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.ecosystem-card {
  background: var(--grey-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.ecosystem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  opacity: 0;
  transition: var(--transition);
}
.ecosystem-card:hover::before { opacity: 1; }
.ecosystem-card:hover {
  border-color: rgba(246,118,19,0.2);
}
.ecosystem-card .tagline { margin-bottom: 16px; }
.ecosystem-card h3 { margin-bottom: 12px; font-size: 1.4rem; }
.ecosystem-card p {
  color: var(--grey-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* --- Social Links --- */
.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-links a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-light);
  transition: var(--transition);
  font-size: 0.9rem;
}
.social-links a:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 0 20px rgba(246,118,19,0.15);
}
.social-links a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Hero logo image */
.hero-logo-img {
  max-width: clamp(320px, 42vw, 560px);
  height: auto;
  margin: 100px auto 20px;
  display: block;
  filter: brightness(1.1);
}

/* Contact direct section fix */
.direct-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.direct-contact .social-links {
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 700px) {
  .direct-contact { grid-template-columns: 1fr; gap: 32px; }
}

/* --- Footer --- */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 40px;
  background: var(--black);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p {
  color: var(--grey-mid);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}
.footer h5 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: var(--grey-mid);
  padding: 4px 0;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
  color: var(--grey-mid);
}
.footer-legal a {
  color: var(--grey-mid);
  margin-left: 20px;
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--orange); }

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* --- Contact Form --- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--grey-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(246,118,19,0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* --- Ticket Purchase Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--grey-light);
  transition: var(--transition);
  font-size: 1.2rem;
}
.modal-close:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.modal h3 { margin-bottom: 8px; text-transform: none; }
.modal .event-summary {
  color: var(--grey-light);
  font-size: 0.85rem;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Ticket Type Selector */
.ticket-types { margin-bottom: 24px; }
.ticket-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: var(--grey-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  transition: var(--transition);
}
.ticket-type:hover,
.ticket-type.selected {
  border-color: var(--orange);
}
.ticket-type-info h4 {
  font-size: 0.95rem;
  text-transform: none;
  margin-bottom: 2px;
}
.ticket-type-info p {
  font-size: 0.75rem;
  color: var(--grey-mid);
}
.ticket-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

/* Quantity Selector */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 12px;
}
.qty-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}
.qty-btn:hover { border-color: var(--orange); color: var(--orange); }
.qty-value {
  font-size: 1.1rem;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

/* Order Summary */
.order-summary {
  background: var(--grey-card);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 24px;
}
.order-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--grey-light);
  margin-bottom: 8px;
}
.order-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.order-total .total-price { color: var(--orange); }

.legal-notice {
  font-size: 0.7rem;
  color: var(--grey-mid);
  line-height: 1.6;
  margin-top: 16px;
}
.legal-notice a { color: var(--orange); text-decoration: underline; }

/* --- Cookie Consent --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  z-index: 3000;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-inner p {
  font-size: 0.8rem;
  color: var(--grey-light);
  flex: 1;
  min-width: 280px;
}
.cookie-inner p a { color: var(--orange); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }

/* --- Page Headers (interior pages) --- */
.page-header {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  background: radial-gradient(ellipse at 50% 0%, rgba(246,118,19,0.06) 0%, transparent 50%),
              var(--black);
  text-align: center;
}
.page-header h1 { margin-bottom: 12px; }
.page-header .subtitle { margin: 0 auto; }

/* --- Divider --- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246,118,19,0.2), transparent);
  margin: 0 auto;
  max-width: 600px;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 600px) {
  .section { padding: clamp(40px, 8vw, 80px) 0; }
  .section-header { margin-bottom: 40px; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .btn { padding: 12px 24px; font-size: 0.8rem; }
  .btn-lg { padding: 14px 32px; }
}

/* --- Spotify / SoundCloud Embed --- */
.embed-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.embed-container iframe {
  width: 100%;
  border: none;
}

/* --- Bio / About sections --- */
.bio-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.bio-section.reverse { direction: rtl; }
.bio-section.reverse > * { direction: ltr; }
.bio-text p {
  color: var(--grey-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.bio-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--grey-dark);
}
.bio-image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 800px) {
  .bio-section,
  .bio-section.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }
}

/* --- Stats Bar --- */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  padding: 40px 0;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-value {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-top: 8px;
}

/* --- Newsletter / Email Signup --- */
.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  background: var(--grey-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
}
.newsletter-form input:focus { border-color: var(--orange); }

@media (max-width: 500px) {
  .newsletter-form { flex-direction: column; }
}

/* --- Loading States --- */
.spinner {
  width: 24px; height: 24px;
  border: 2px solid rgba(255,255,255,0.15);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn.loading { pointer-events: none; opacity: 0.7; }
.btn.loading .spinner { margin: 0 auto; }

/* --- Photo Gallery (Masonry-style) --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* Span variations for visual interest */
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item.span-row { grid-row: span 2; }
.gallery-item.span-2.span-row { grid-column: span 2; grid-row: span 2; }

/* Gallery aspect ratios */
.gallery-item { aspect-ratio: 1; }
.gallery-item.landscape { aspect-ratio: 16/9; }
.gallery-item.portrait { aspect-ratio: 3/4; }
.gallery-item.span-2 { aspect-ratio: 2/1; }
.gallery-item.span-2.span-row { aspect-ratio: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: pointer;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 1.4rem;
  transition: var(--transition);
  background: rgba(0,0,0,0.5);
}
.lightbox-close:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 1.3rem;
  transition: var(--transition);
  background: rgba(0,0,0,0.4);
}
.lightbox-nav:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.span-2 { grid-column: span 2; }
  .lightbox { padding: 16px; }
  .lightbox-nav { display: none; }
}

/* --- Video Section --- */
.video-showcase {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--grey-dark);
  max-width: 960px;
  margin: 0 auto;
}
.video-showcase video {
  width: 100%;
  display: block;
}
.video-caption {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--grey-card);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.video-caption-text h4 {
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}
.video-caption-text p {
  font-size: 0.75rem;
  color: var(--grey-mid);
}
