/* ===== Tokens ===== */
:root {
  --bg: #0c0a09;
  --bg-alt: #131110;
  --bg-raise: #1a1715;
  --line: rgba(232, 220, 198, 0.12);
  --ink: #f3ece0;
  --ink-dim: #bcb2a2;
  --ink-faint: #8a8177;
  --gold: #cc9f4e;
  --gold-soft: rgba(204, 159, 78, 0.16);
  --gold-bright: #e7bd76;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1160px;
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.4em;
  letter-spacing: 0.01em;
}

p { margin: 0 0 1em; color: var(--ink-dim); }

a { color: inherit; text-decoration: none; }

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.9em;
  font-weight: 500;
}
.eyebrow.center { text-align: center; }
h2.center { text-align: center; margin-bottom: 0.6em; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #1a1310;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(12, 10, 9, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
}
.brand-mark {
  width: 34px; height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.brand-name {
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.primary-nav {
  display: flex;
  gap: 34px;
}
.primary-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.primary-nav a:hover { color: var(--gold-bright); }
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.25s ease;
}
.primary-nav a:hover::after { right: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  background: var(--ink);
  display: block;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 30%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,8,7,0.55) 0%, rgba(10,8,7,0.35) 40%, rgba(10,8,7,0.92) 100%),
    linear-gradient(90deg, rgba(10,8,7,0.85) 0%, rgba(10,8,7,0.15) 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gold-bright);
  text-transform: uppercase;
  margin-bottom: 0.6em;
}
.hero h1 {
  font-size: clamp(3rem, 9vw, 6.2rem);
  line-height: 0.95;
  margin-bottom: 0.25em;
}
.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--ink-dim);
  max-width: 34ch;
  margin-bottom: 1.6em;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: #1a1310;
}
.btn-primary:hover { background: var(--gold-bright); }
.btn-ghost {
  border-color: rgba(243,236,224,0.35);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-cue svg {
  width: 22px; height: 22px;
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: scrollcue 1.6s ease-in-out infinite;
}
@keyframes scrollcue {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ===== About ===== */
.about { padding: 130px 0 110px; background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 70px;
  align-items: start;
}
.about-portrait img {
  border-radius: var(--radius);
  filter: grayscale(15%);
}
.about-portrait figcaption {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--ink-faint);
  font-style: italic;
}
.about-copy h2 { font-size: clamp(2rem, 3.4vw, 2.7rem); }
.about-copy p { font-size: 1.05rem; color: var(--ink-dim); }

.text-link {
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.text-link:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

/* ===== Music ===== */
.music { padding: 100px 0; background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.music-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.music-card {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.music-card:hover { transform: translateY(-4px); border-color: var(--gold-soft); }
.music-icon {
  width: 52px; height: 52px;
  margin: 0 auto 20px;
  color: var(--gold);
}
.music-icon svg { width: 100%; height: 100%; fill: currentColor; }
.music-card h3 { font-size: 1.4rem; margin-bottom: 0.5em; }
.music-card p { font-size: 0.95rem; }
.music-status {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 6px;
}

/* ===== Gallery ===== */
.gallery { padding: 110px 0; }
.gallery-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--bg-raise);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: grayscale(35%);
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: grayscale(0%);
}
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(232,220,198,0.08);
}

/* ===== Impact / Carousel ===== */
.impact { padding: 110px 0 130px; background: var(--bg-alt); border-top: 1px solid var(--line); }
.carousel { position: relative; margin-top: 55px; }
.testimonial-swiper .swiper-slide { padding: 0 14px; }
.testimonial-card {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 40px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-mark {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.1em;
}
.testimonial-quote {
  font-size: 1.12rem;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 1.1em;
}
.testimonial-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold-bright);
  font-weight: 600;
}
.testimonial-role {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.carousel-nav svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.carousel-nav:hover { border-color: var(--gold); color: var(--gold-bright); }
.carousel-nav.prev { left: -22px; }
.carousel-nav.next { right: -22px; }

.carousel-dots.swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}
.carousel-dots .swiper-pagination-bullet {
  width: 7px; height: 7px;
  border-radius: 50%;
  opacity: 1;
  background: var(--line);
  cursor: pointer;
  margin: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-dots .swiper-pagination-bullet-active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ===== Footer ===== */
.site-footer {
  padding: 70px 0 40px;
  text-align: center;
  background: var(--bg);
}
.footer-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 0.1em;
}
.footer-dates {
  color: var(--ink-faint);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: 1.4em;
}
.footer-note {
  max-width: 46ch;
  margin: 0 auto 1.2em;
  font-size: 0.92rem;
}
.footer-copy {
  margin-top: 2em;
  font-size: 0.76rem;
  color: var(--ink-faint);
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6,5,4,0.94);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 88vw;
  max-height: 84vh;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 30px;
  background: none; border: 0;
  color: var(--ink);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: none; border: 0;
  color: var(--ink);
  cursor: pointer;
  padding: 20px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-nav svg {
  width: 32px; height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lightbox-prev { left: 6px; }
.lightbox-next { right: 6px; }
.lightbox-nav:hover, .lightbox-close:hover { color: var(--gold-bright); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait { max-width: 280px; }
  .music-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .carousel-nav.prev { left: 4px; }
  .carousel-nav.next { right: 4px; }
}

@media (max-width: 640px) {
  .primary-nav {
    position: fixed;
    top: 66px; left: 0; right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 20px 28px;
    gap: 20px;
    transform: translateY(-100vh);
    transition: transform 0.3s ease;
  }
  .primary-nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about, .music, .gallery, .impact { padding-top: 80px; padding-bottom: 80px; }
  .testimonial-card { padding: 34px 24px; }
  .carousel-nav { display: none; }
}
