/* ============================================================
   KALLE VILPUU — Custom Styles
   ============================================================ */

/* Variables
   ------------------------------------------------------------ */
:root {
  --dark: #080808;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #242424;
  --gold: #c9a84c;
  --gold-light: #dfc27d;
  --gold-dim: rgba(201, 168, 76, 0.18);
  --cream: #f0ede8;
  --cream-muted: #8a8680;
  --white: #ffffff;

  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Raleway", sans-serif;

  --header-h: 82px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

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

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

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1;
}

/* Screen reader utility */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition:
    background 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

/* Solid on inner pages, transparent on front page */
body:not(.home) .site-header {
  background: rgba(8, 8, 8, 0.97);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.97);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Logo
   ------------------------------------------------------------ */
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  transition: color 0.25s ease;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  margin-top: 4px;
}

.site-logo:hover .logo-name {
  color: var(--gold-light);
}

/* Desktop Nav
   ------------------------------------------------------------ */
.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul,
.main-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav ul li,
.main-nav .nav-links li {
  position: relative;
}

.main-nav ul li a,
.main-nav .nav-links li a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.82);
  transition: color 0.22s ease;
  position: relative;
}

.main-nav ul li a::after,
.main-nav .nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s var(--ease);
}

.main-nav ul li a:hover,
.main-nav .nav-links li a:hover,
.main-nav ul li.current-menu-item > a,
.main-nav .nav-links li.current-menu-item > a,
.main-nav ul li.current_page_item > a,
.main-nav .nav-links li.current_page_item > a {
  color: var(--gold-light);
}

.main-nav ul li a:hover::after,
.main-nav .nav-links li a:hover::after,
.main-nav ul li.current-menu-item > a::after,
.main-nav .nav-links li.current-menu-item > a::after,
.main-nav ul li.current_page_item > a::after,
.main-nav .nav-links li.current_page_item > a::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* Hamburger Button
   ------------------------------------------------------------ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  z-index: 1001;
  position: relative;
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--cream);
  border-radius: 1px;
  transition:
    transform 0.38s var(--ease),
    opacity 0.28s ease,
    background 0.25s ease;
  transform-origin: center center;
}

.hamburger.is-active .hamburger-bar:nth-child(1) {
  transform: translateY(8.25px) rotate(45deg);
  background: var(--gold);
}

.hamburger.is-active .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.1);
}

.hamburger.is-active .hamburger-bar:nth-child(3) {
  transform: translateY(-8.25px) rotate(-45deg);
  background: var(--gold);
}

/* ============================================================
   MOBILE OVERLAY
   ============================================================ */

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(6, 6, 6, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.42s var(--ease),
    visibility 0.42s var(--ease);
}

.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  text-align: center;
  width: 100%;
  padding: 40px 24px;
}

.mobile-nav ul,
.mobile-nav .mobile-nav-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav ul li,
.mobile-nav .mobile-nav-links li {
  transform: translateY(22px);
  opacity: 0;
  transition:
    transform 0.42s var(--ease-out),
    opacity 0.42s ease;
}

.mobile-overlay.is-open .mobile-nav ul li,
.mobile-overlay.is-open .mobile-nav .mobile-nav-links li {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav ul li:nth-child(1),
.mobile-nav .mobile-nav-links li:nth-child(1) {
  transition-delay: 0.06s;
}
.mobile-nav ul li:nth-child(2),
.mobile-nav .mobile-nav-links li:nth-child(2) {
  transition-delay: 0.11s;
}
.mobile-nav ul li:nth-child(3),
.mobile-nav .mobile-nav-links li:nth-child(3) {
  transition-delay: 0.16s;
}
.mobile-nav ul li:nth-child(4),
.mobile-nav .mobile-nav-links li:nth-child(4) {
  transition-delay: 0.21s;
}
.mobile-nav ul li:nth-child(5),
.mobile-nav .mobile-nav-links li:nth-child(5) {
  transition-delay: 0.26s;
}
.mobile-nav ul li:nth-child(6),
.mobile-nav .mobile-nav-links li:nth-child(6) {
  transition-delay: 0.31s;
}
.mobile-nav ul li:nth-child(7),
.mobile-nav .mobile-nav-links li:nth-child(7) {
  transition-delay: 0.36s;
}
.mobile-nav ul li:nth-child(8),
.mobile-nav .mobile-nav-links li:nth-child(8) {
  transition-delay: 0.41s;
}

.mobile-nav ul li a,
.mobile-nav .mobile-nav-links li a {
  display: inline-block;
  padding: 12px 30px;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.04em;
  transition: color 0.22s ease;
}

.mobile-nav ul li a:hover,
.mobile-nav .mobile-nav-links li a:hover {
  color: var(--gold-light);
}

.mobile-nav-deco {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 16px auto;
  opacity: 0;
  transition: opacity 0.5s ease 0.5s;
}

.mobile-overlay.is-open .mobile-nav-deco {
  opacity: 1;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 15%;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transition: transform 10s var(--ease-out);
  will-change: transform;
}

.hero-section.is-visible .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(8, 8, 8, 0.72) 0%,
      rgba(8, 8, 8, 0.28) 60%,
      rgba(8, 8, 8, 0.5) 100%
    ),
    linear-gradient(to top, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.1) 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
  width: 100%;
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.8s ease 0.35s,
    transform 0.8s var(--ease) 0.35s;
}

.hero-section.is-visible .hero-eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.hero-name {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s ease 0.55s,
    transform 0.9s var(--ease) 0.55s;
}

.hero-section.is-visible .hero-name {
  opacity: 1;
  transform: translateY(0);
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
  opacity: 0;
  transition: opacity 0.8s ease 0.78s;
}

.hero-section.is-visible .hero-divider {
  opacity: 1;
}

.hero-divider-line {
  width: 56px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.hero-divider-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}

.hero-divider-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.8s ease 0.9s,
    transform 0.8s var(--ease) 0.9s;
}

.hero-section.is-visible .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.8s ease 1.05s,
    transform 0.8s var(--ease) 1.05s;
}

.hero-section.is-visible .hero-ctas {
  opacity: 1;
  transform: translateY(0);
}

.hero-btn {
  display: inline-block;
  padding: 14px 38px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition:
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
}

.hero-btn-primary {
  background: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
}

.hero-btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.hero-btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(240, 237, 232, 0.35);
}

.hero-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.8s ease 1.4s;
}

.hero-section.is-visible .hero-scroll {
  opacity: 1;
}

.hero-scroll-label {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.hero-scroll-track {
  width: 1px;
  height: 48px;
  overflow: hidden;
  position: relative;
}

.hero-scroll-bar {
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2.2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% {
    top: -100%;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* ============================================================
   INNER PAGE BANNER
   ============================================================ */

.inner-banner {
  padding: calc(var(--header-h) + 90px) 64px 90px;
  text-align: center;
  position: relative;
  background: var(--dark-2);
  overflow: hidden;
}

.inner-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 0%,
    rgba(201, 168, 76, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.inner-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 64px;
  right: 64px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 168, 76, 0.3),
    transparent
  );
}

.inner-banner-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.inner-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.inner-banner-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.inner-banner-rule span {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.inner-banner-rule i {
  display: block;
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* ============================================================
   PAGE CONTENT AREA
   ============================================================ */

.page-content-area {
  padding: 80px 64px;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--cream);
}

/* ============================================================
   ALBUM PAGE — credits
   ============================================================ */

.album-credits {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 64px 100px;
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding-top: 56px;
}

.album-credits-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.album-credits-body p {
  font-size: 0.86rem;
  line-height: 1.9;
  color: var(--cream-muted);
  margin-bottom: 14px;
}

.album-credits-body p:last-child {
  margin-bottom: 0;
}

.album-bandcamp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 12px 28px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.album-bandcamp-btn:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
  color: var(--gold-light);
}

.album-bandcamp-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .album-credits {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 72px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* Guitar strings at top */
.footer-strings {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px 0 0;
  pointer-events: none;
  z-index: 0;
}

.footer-string {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(201, 168, 76, 0.06) 10%,
    rgba(201, 168, 76, 0.18) 30%,
    rgba(201, 168, 76, 0.22) 50%,
    rgba(201, 168, 76, 0.18) 70%,
    rgba(201, 168, 76, 0.06) 90%,
    transparent 100%
  );
}

.footer-string:nth-child(1) {
  opacity: 0.6;
}
.footer-string:nth-child(2) {
  opacity: 0.8;
}
.footer-string:nth-child(3) {
  opacity: 1;
}
.footer-string:nth-child(4) {
  opacity: 0.8;
}
.footer-string:nth-child(5) {
  opacity: 0.6;
}
.footer-string:nth-child(6) {
  opacity: 0.4;
}

.footer-border-top {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 168, 76, 0.3) 20%,
    rgba(201, 168, 76, 0.3) 80%,
    transparent
  );
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 64px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 64px;
  padding: 72px 0 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Brand column */
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 22px;
}

.footer-brand-text {
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--cream-muted);
  margin-bottom: 28px;
  max-width: 290px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50%;
  color: var(--cream-muted);
  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* Nav / link columns */
.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(201, 168, 76, 0.2);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  font-size: 0.88rem;
  color: var(--cream-muted);
  transition:
    color 0.22s ease,
    padding-left 0.22s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: var(--cream-muted);
  line-height: 1.5;
}

.footer-contact-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 0 28px;
}

.footer-seyr-logo {
  display: block;
  opacity: 0.5;
  transition: opacity 0.25s ease;
}

.footer-seyr-logo:hover {
  opacity: 1;
}

.footer-seyr-logo img {
  height: 22px;
  width: auto;
  display: block;
}

.footer-bottom-copy {
  font-size: 0.72rem;
  color: var(--cream-muted);
  letter-spacing: 0.04em;
}

/* Decorative music note */
.footer-music-note {
  position: absolute;
  bottom: 60px;
  right: 64px;
  font-size: 8rem;
  color: rgba(201, 168, 76, 0.03);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-container {
    padding: 0 32px;
  }
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand-text {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 70px;
  }

  .header-container {
    padding: 0 24px;
  }

  .hero-name {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .inner-banner {
    padding: calc(var(--header-h) + 60px) 24px 70px;
  }

  .inner-banner::after {
    left: 24px;
    right: 24px;
  }

  .footer-inner {
    padding: 0 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0 48px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    padding: 20px 0 24px;
  }

  .footer-music-note {
    right: 24px;
    font-size: 5rem;
  }

  .page-content-area {
    padding: 60px 24px;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }

  .footer-strings {
    display: none;
  }

  .logo-name {
    font-size: 1.3rem;
  }
}

/* ============================================================
   KONTAKT PAGE
   ============================================================ */

.kontakt-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 64px 100px;
}

.kontakt-intro-text {
  text-align: center;
  font-size: 0.92rem;
  color: var(--cream-muted);
  letter-spacing: 0.04em;
  max-width: 480px;
  margin: 0 auto 64px;
  line-height: 1.85;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Card
   ------------------------------------------------------------ */
.contact-card {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
  position: relative;
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(201, 168, 76, 0.2);
}

/* Artist card gets a subtle gold tint */
.contact-card--artist {
  border-color: rgba(201, 168, 76, 0.2);
  background: linear-gradient(160deg, #1e1c17 0%, var(--dark-3) 60%);
}

/* Fretboard strip
   ------------------------------------------------------------ */
.contact-fretboard {
  height: 78px;
  background: #0b0b0b;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
  gap: 8px;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

/* Subtle fret lines (vertical) */
.contact-fretboard::before,
.contact-fretboard::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(201, 168, 76, 0.06);
}

.contact-fretboard::before {
  left: 33%;
}
.contact-fretboard::after {
  left: 66%;
}

/* String lines — thicker towards low E */
.contact-string {
  display: block;
  border-radius: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(201, 168, 76, 0.25) 8%,
    rgba(201, 168, 76, 0.55) 50%,
    rgba(201, 168, 76, 0.25) 92%,
    transparent 100%
  );
  transition: background 0.3s ease;
}

.contact-card:hover .contact-string {
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(201, 168, 76, 0.35) 8%,
    rgba(201, 168, 76, 0.75) 50%,
    rgba(201, 168, 76, 0.35) 92%,
    transparent 100%
  );
}

.contact-string:nth-child(1) {
  height: 1px;
}
.contact-string:nth-child(2) {
  height: 1px;
}
.contact-string:nth-child(3) {
  height: 1.5px;
}
.contact-string:nth-child(4) {
  height: 1.5px;
}
.contact-string:nth-child(5) {
  height: 2px;
}
.contact-string:nth-child(6) {
  height: 2px;
}

/* Fret position dot markers */
.contact-fret-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.25);
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.3s ease;
}

.contact-fret-dot {
  left: calc(33% - 3px);
}
.contact-fret-dot--2 {
  left: calc(66% - 3px);
}

.contact-card:hover .contact-fret-dot {
  background: rgba(201, 168, 76, 0.55);
}

/* Card body
   ------------------------------------------------------------ */
.contact-body {
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Avatar circle */
.contact-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--dark-4);
  border: 1.5px solid rgba(201, 168, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
  flex-shrink: 0;
}

.contact-card:hover .contact-avatar {
  border-color: rgba(201, 168, 76, 0.7);
  background: rgba(201, 168, 76, 0.08);
}

.contact-avatar--artist {
  background: rgba(201, 168, 76, 0.1);
}

.contact-avatar--artist svg {
  width: 26px;
  height: 26px;
  fill: var(--gold);
}

/* Name & role */
.contact-name {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0 0 8px;
}

.contact-role {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

/* Divider */
.contact-divider {
  width: 28px;
  height: 1px;
  background: rgba(201, 168, 76, 0.3);
  margin: 22px auto;
}

/* Detail rows */
.contact-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.82rem;
}

.contact-detail a {
  color: var(--cream-muted);
  transition: color 0.22s ease;
  word-break: break-all;
}

.contact-detail a:hover {
  color: var(--gold-light);
}

.contact-detail-icon {
  flex-shrink: 0;
  color: var(--gold);
  line-height: 0;
}

.contact-detail-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* Responsive
   ------------------------------------------------------------ */
@media (max-width: 960px) {
  .kontakt-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 680px;
    margin: 0 auto;
  }

  .contact-card--artist {
    grid-column: 1 / -1;
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .kontakt-wrap {
    padding: 60px 24px 80px;
  }

  .kontakt-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .contact-card--artist {
    grid-column: auto;
    max-width: 100%;
  }
}

/* ============================================================
   VIDEOD PAGE
   ============================================================ */

.videod-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 72px 64px 100px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  max-width: 860px;
  margin: 0 auto;
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.video-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.25;
  padding: 0 0 14px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  margin-bottom: 18px;
  transition: color 0.22s ease;
}

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

/* 16:9 responsive embed */
.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--dark-3);
  overflow: hidden;
}

.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.videod-empty {
  text-align: center;
  color: var(--cream-muted);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 60px 0;
}

@media (max-width: 900px) {
  .videod-wrap {
    padding: 56px 32px 80px;
  }
}

@media (max-width: 600px) {
  .videod-wrap {
    padding: 40px 24px 72px;
  }
}

/* ============================================================
   ESINEMISED PAGE
   ============================================================ */

.esinemised-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 64px 100px;
}

.esinemised-list {
  display: flex;
  flex-direction: column;
}

.esinemine-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 26px 12px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: background 0.25s ease;
}

.esinemine-item:first-child {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.esinemine-item:hover {
  background: rgba(201, 168, 76, 0.04);
}

.esinemine-date {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.esinemine-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.esinemine-asukoht {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.esinemine-pealkiri {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.4;
}

.esinemised-empty {
  text-align: center;
  color: var(--cream-muted);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 60px 0;
}

@media (max-width: 900px) {
  .esinemised-wrap {
    padding: 56px 32px 80px;
  }
}

@media (max-width: 700px) {
  .esinemine-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 4px;
  }

  .esinemine-date {
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .esinemised-wrap {
    padding: 40px 24px 72px;
  }
}

/* ============================================================
   HOMEPAGE — FEATURED VIDEOS SECTION
   ============================================================ */

.home-videos-section {
  background: var(--dark-2);
  padding: 96px 0 100px;
  position: relative;
}

.home-videos-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 168, 76, 0.25) 30%,
    rgba(201, 168, 76, 0.25) 70%,
    transparent
  );
}

.home-videos-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px;
}

/* Section header */
.home-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.home-section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.home-section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* Three-column video grid */
.home-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 52px;
}

.home-video-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-video-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: color 0.22s ease;
}

.home-video-card:hover .home-video-title {
  color: var(--gold-light);
}

/* CTA button */
.home-videos-cta {
  text-align: center;
}

.home-videos-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 36px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease,
    gap 0.28s ease;
}

.home-videos-btn:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
  color: var(--gold-light);
  gap: 12px;
}

.home-videos-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .home-videos-inner {
    padding: 0 32px;
  }

  .home-video-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .home-videos-section {
    padding: 72px 0 80px;
  }

  .home-videos-inner {
    padding: 0 24px;
  }

  .home-video-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ============================================================
   GALERII PAGE
   ============================================================ */

.galerii-wrap {
  padding: 64px 0 100px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-item {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--dark-3);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.55s var(--ease),
    filter 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.72);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-icon {
  width: 32px;
  height: 32px;
  fill: var(--white);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
  transform: scale(0.8);
  transition: transform 0.3s var(--ease);
}

.gallery-item:hover .gallery-item-icon {
  transform: scale(1);
}

.gallery-count {
  text-align: center;
  margin-top: 28px;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.gallery-empty {
  text-align: center;
  color: var(--cream-muted);
  font-size: 0.9rem;
  padding: 60px 0;
  letter-spacing: 0.06em;
}

/* GLightbox overrides — match site theme */
.glightbox-clean .gslide-description {
  background: var(--dark-2);
}

.glightbox-clean .gdesc-inner .gslide-desc {
  color: var(--cream-muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
}

.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
  background: rgba(10, 10, 10, 0.95);
  border-color: rgba(201, 168, 76, 0.5);
}

.glightbox-clean .gclose {
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.glightbox-clean .gclose:hover {
  background: rgba(10, 10, 10, 0.95);
  border-color: rgba(201, 168, 76, 0.5);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
  }
}

/* ============================================================
   KAJASTUS PAGE
   ============================================================ */

.kajastus-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 72px 64px 100px;
}

.kajastus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.kajastus-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 28px 26px;
  min-height: 150px;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

button.kajastus-item {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.kajastus-item-popup::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 24px;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
  transform: rotate(45deg);
  opacity: 0.55;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.kajastus-item-popup:hover::after {
  opacity: 1;
  transform: rotate(45deg) translate(2px, -2px);
}

.kajastus-item:hover {
  background: var(--dark-4);
  border-color: rgba(201, 168, 76, 0.4);
}

.kajastus-item-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}

.kajastus-item:hover .kajastus-item-title {
  color: var(--gold-light);
}

.kajastus-item-leht {
  align-self: flex-end;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--cream-muted);
  letter-spacing: 0.03em;
}

.kajastus-empty {
  text-align: center;
  color: var(--cream-muted);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 60px 0;
}

@media (max-width: 1100px) {
  .kajastus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .kajastus-wrap {
    padding: 56px 32px 80px;
  }

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

@media (max-width: 600px) {
  .kajastus-wrap {
    padding: 40px 24px 72px;
  }

  .kajastus-grid {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

/* Kajastus popup modal
   ------------------------------------------------------------ */
.kajastus-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s var(--ease),
    visibility 0.35s var(--ease);
}

.kajastus-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.kajastus-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 6, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.kajastus-modal-panel {
  position: relative;
  width: 100%;
  max-width: 700px;
  max-height: 82vh;
  overflow-y: auto;
  background: var(--dark-2);
  border: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  padding: 56px 48px;
  transform: translateY(16px);
  opacity: 0;
  transition:
    transform 0.4s var(--ease-out),
    opacity 0.4s ease;
}

.kajastus-modal.is-open .kajastus-modal-panel {
  transform: translateY(0);
  opacity: 1;
}

.kajastus-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--cream-muted);
  cursor: pointer;
  transition:
    color 0.22s ease,
    border-color 0.22s ease;
}

.kajastus-modal-close:hover {
  color: var(--gold-light);
  border-color: rgba(201, 168, 76, 0.5);
}

.kajastus-modal-close svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.kajastus-popup-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: 0.01em;
  padding-right: 32px;
}

.kajastus-popup-leht {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.kajastus-popup-body {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--cream);
}

.kajastus-popup-body p {
  margin-bottom: 1.2em;
}

.kajastus-popup-body p:last-child {
  margin-bottom: 0;
}

.kajastus-popup-body a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.kajastus-popup-body strong {
  color: var(--white);
}

.kajastus-popup-source {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 3px;
  transition:
    color 0.22s ease,
    border-color 0.22s ease;
}

.kajastus-popup-source:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

@media (max-width: 600px) {
  .kajastus-modal {
    padding: 16px;
  }

  .kajastus-modal-panel {
    padding: 40px 26px;
    max-height: 88vh;
  }
}

/* ============================================================
   BIO PAGE
   ============================================================ */

.bio-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 64px 100px;
}

/* Intro quote
   ------------------------------------------------------------ */
.bio-intro {
  text-align: center;
  margin-bottom: 72px;
}

.bio-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream-muted);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* Two-column layout
   ------------------------------------------------------------ */
.bio-columns {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

/* Section heading shared
   ------------------------------------------------------------ */
.bio-section-title {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bio-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(201, 168, 76, 0.2);
}

.bio-section {
  margin-bottom: 52px;
}

/* Sidebar image
   ------------------------------------------------------------ */
.bio-sidebar-image {
  margin: 0 0 52px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.bio-sidebar-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Discography timeline
   ------------------------------------------------------------ */
.discography-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.discography-list::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 36px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 168, 76, 0.2) 8%,
    rgba(201, 168, 76, 0.2) 92%,
    transparent
  );
}

.disco-item {
  display: flex;
  align-items: baseline;
  gap: 0;
  padding: 5px 0 5px 0;
  position: relative;
}

.disco-item::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.3);
  transition:
    border-color 0.22s ease,
    background 0.22s ease;
  z-index: 1;
}

.disco-item:hover::before {
  background: var(--gold);
  border-color: var(--gold);
}

.disco-year {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  min-width: 52px;
  flex-shrink: 0;
}

.disco-info {
  font-size: 0.82rem;
  color: var(--cream-muted);
  line-height: 1.5;
  padding-left: 20px;
  transition: color 0.22s ease;
}

.disco-item:hover .disco-info {
  color: var(--cream);
}

.disco-info em {
  font-style: italic;
  color: var(--cream);
}

.disco-item--highlight .disco-year {
  color: var(--gold-light);
}

.disco-item--highlight .disco-info {
  color: var(--cream);
}

.disco-item--highlight::before {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.5);
}

/* Awards
   ------------------------------------------------------------ */
.bio-awards {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 44px;
}

.awards-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.award-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.award-year {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  min-width: 38px;
  flex-shrink: 0;
  padding-top: 1px;
}

.award-desc {
  font-size: 0.82rem;
  color: var(--cream-muted);
  line-height: 1.6;
}

.award-desc em {
  font-style: italic;
  color: var(--cream);
}

/* Biography text
   ------------------------------------------------------------ */
.bio-text {
  border-left: 1px solid rgba(201, 168, 76, 0.1);
  padding-left: 64px;
}

.bio-lead {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.bio-lead::first-letter {
  font-size: 3.8em;
  font-weight: 600;
  float: left;
  line-height: 0.78;
  margin-right: 10px;
  margin-top: 6px;
  color: var(--gold);
}

.bio-text p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(240, 237, 232, 0.75);
  margin-bottom: 22px;
}

.bio-text p em {
  font-style: italic;
  color: var(--cream);
}

/* Pull quote
   ------------------------------------------------------------ */
.bio-pull-quote {
  margin: 36px 0;
  padding: 28px 32px;
  border-left: 2px solid var(--gold);
  background: linear-gradient(to right, rgba(201, 168, 76, 0.05), transparent);
}

.bio-pull-text {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin: 0;
}

/* Press / download button
   ------------------------------------------------------------ */
.bio-press-link {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bio-press-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.bio-press-btn:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
  color: var(--gold-light);
}

.bio-press-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Closing image
   ------------------------------------------------------------ */
.bio-closing-image {
  grid-column: 2;
  margin: 24px 0 0 64px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.bio-closing-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive
   ------------------------------------------------------------ */
@media (max-width: 1100px) {
  .bio-columns {
    grid-template-columns: 280px 1fr;
    gap: 56px;
  }

  .bio-text {
    padding-left: 40px;
  }

  .bio-closing-image {
    margin-left: 40px;
  }
}

@media (max-width: 860px) {
  .bio-wrap {
    padding: 56px 32px 80px;
  }

  .bio-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .bio-text {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    padding-top: 52px;
    margin-top: 52px;
  }

  .bio-closing-image {
    grid-column: 1;
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .bio-wrap {
    padding: 40px 24px 72px;
  }

  .bio-lead::first-letter {
    font-size: 3em;
  }
}
