:root {
  --bg: #0d0b0a;
  --bg-alt: #141110;
  --gold: #c8a24d;
  --gold-soft: #e4c878;
  --cream: #f2ead9;
  --muted: #a89c8a;
  --line: rgba(200, 162, 77, 0.25);
  --serif: 'Lora', serif;
  --sans: 'Outfit', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow .4s ease;
}

.site-header.scrolled {
  background: rgba(13, 11, 10, 0.9);
  backdrop-filter: blur(10px);
  padding: 14px 40px;
  box-shadow: 0 1px 0 var(--line);
}

.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold-soft);
  letter-spacing: 0.03em;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 2px;
  transition: color 0.3s ease;
}

.lang-toggle button.active,
.lang-toggle button:hover {
  color: var(--gold-soft);
}

.lang-toggle span { color: var(--line); font-size: 0.75rem; }

.main-nav {
  display: flex;
  gap: 36px;
}

.main-nav a {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.main-nav a:hover { color: var(--gold-soft); }
.main-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.nav-toggle span {
  width: 26px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(200,162,77,0.16), transparent 60%),
    linear-gradient(180deg, #14100d 0%, #0d0b0a 70%);
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-content { text-align: left; }

.hero-portrait {
  padding: 10px;
  justify-self: center;
  max-width: 420px;
}
.hero-portrait img {
  width: 100%;
  display: block;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  line-height: 1;
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 0 40px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 1px solid var(--gold);
}

.btn-primary {
  background: var(--gold);
  color: #14100d;
}
.btn-primary:hover { background: var(--gold-soft); border-color: var(--gold-soft); }

.btn-outline {
  color: var(--gold-soft);
  background: transparent;
}
.btn-outline:hover { background: rgba(200,162,77,0.1); }

.btn-small {
  padding: 10px 22px;
  font-size: 0.72rem;
}

/* ---------- Sections shared ---------- */
.section { padding: 90px 0; }
.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label.center { text-align: center; }
.section h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 28px; }
.section h2.center,
h2.center { text-align: center; }

/* ---------- About ---------- */
.about { background: var(--bg-alt); }
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.portrait-frame {
  position: relative;
  padding: 14px;
}
.portrait-frame img {
  width: 100%;
  display: block;
}

.about-copy p { color: var(--muted); margin-bottom: 20px; max-width: 560px; }
.about-copy .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-soft);
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-top: 32px;
}

/* ---------- Music ---------- */
.music-embed {
  max-width: 720px;
  margin: 0 auto;
}
.spotify-embed { width: 100%; }
.spotify-placeholder {
  min-height: 352px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-alt);
}
.spotify-placeholder p {
  color: var(--muted);
  max-width: 440px;
  font-size: 0.92rem;
  line-height: 1.6;
}
.spotify-disable {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.spotify-disable:hover { color: var(--gold-soft); }

@media (max-width: 720px) {
  .spotify-placeholder { padding: 24px 16px; min-height: 300px; }
}
.listen-elsewhere {
  text-align: center;
  margin-top: 18px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.listen-elsewhere a {
  color: var(--gold-soft);
  border-bottom: 1px solid transparent;
}
.listen-elsewhere a:hover { border-color: var(--gold); }
.listen-elsewhere span { margin: 0 10px; color: var(--line); }


.release-grid {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.release-grid.single .release-card {
  width: 100%;
  max-width: 320px;
}
.release-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 18px;
  filter: grayscale(1);
  transition: filter 0.4s ease;
}
.release-card:hover img { filter: grayscale(0); }
.release-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.release-card p { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.04em; }

/* ---------- Videos ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-alt);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Tour ---------- */
.tour { background: var(--bg-alt); }
.tour-list { max-width: 760px; margin: 0 auto; }
.tour-row {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.tour-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  color: var(--gold-soft);
}
.tour-date .day { font-family: var(--serif); font-size: 2rem; line-height: 1; }
.tour-date .month { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.tour-info { flex: 1; }
.tour-info h3 { font-size: 1.3rem; margin-bottom: 2px; }
.tour-info p { color: var(--muted); font-size: 0.9rem; }

/* ---------- Gallery ---------- */
.gallery { background: var(--bg-alt); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* ---------- Legato ---------- */
.ligato {
  background: var(--cream);
  color: #1b1712;
}
.ligato .section-label { color: #8a6a2a; }
.ligato h2 { color: #1b1712; }
.ligato-location {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a6a2a;
  margin-bottom: 24px;
}
.ligato-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: start;
}
.ligato-grid > div > p { color: #4a4136; max-width: 520px; margin-bottom: 32px; }
.ligato .btn-primary { background: #1b1712; border-color: #1b1712; color: var(--cream); }
.ligato .btn-primary:hover { background: #322a1f; border-color: #322a1f; }
.ligato-offerings { list-style: none; display: flex; flex-direction: column; gap: 0; }
.ligato-offerings li {
  padding: 22px 0;
  border-bottom: 1px solid rgba(27,23,18,0.15);
}
.ligato-offerings li:first-child { padding-top: 0; }
.ligato-offerings h3 { font-size: 1.15rem; color: #1b1712; margin-bottom: 4px; }
.ligato-offerings p { color: #4a4136; font-size: 0.92rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.contact-text { color: var(--muted); margin-bottom: 28px; max-width: 460px; }
.contact-links { display: flex; flex-wrap: wrap; gap: 6px; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  gap: 8px;
}
.contact-form input,
.contact-form textarea {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 0.95rem;
  border-radius: 2px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form button { align-self: flex-start; border: 1px solid var(--gold); cursor: pointer; }
.form-note { font-size: 0.85rem; color: var(--gold-soft); min-height: 1.2em; }

/* ---------- Legal ---------- */
.legal { padding-top: 160px; }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 8px;
}
.legal-updated {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 36px;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 44px;
  margin-bottom: 16px;
  color: var(--gold-soft);
}
.legal-content p {
  color: var(--muted);
  margin-bottom: 16px;
}
.legal-content ul {
  color: var(--muted);
  margin: 0 0 16px 20px;
  padding: 0;
}
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--gold-soft); border-bottom: 1px solid transparent; }
.legal-content a:hover { border-color: var(--gold); }
.legal-back { margin-top: 48px; }

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 36px 0;
  color: var(--muted);
  font-size: 0.8rem;
  border-top: 1px solid var(--line);
}
.footer-links { margin-bottom: 14px; }
.footer-links a { color: var(--muted); border-bottom: 1px solid transparent; }
.footer-links a:hover { color: var(--gold-soft); border-color: var(--gold); }
.footer-follow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  margin-bottom: 18px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-follow > span:first-child { color: var(--gold-soft); }
.footer-follow .contact-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.footer-follow a { color: var(--muted); border-bottom: 1px solid transparent; text-transform: none; letter-spacing: normal; }
.footer-follow a:hover { color: var(--cream); border-color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .about-grid, .contact-grid, .ligato-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait { order: 2; }
  .about-copy { order: 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-content { text-align: center; }
  .hero-tagline { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-portrait { max-width: 320px; }
  .video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header { padding: 18px 22px; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: #0d0b0a;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    border-left: 1px solid var(--line);
  }
  .main-nav.open { transform: translateX(0); }
  .section { padding: 64px 0; }
  .hero { padding-top: 100px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-row { flex-wrap: wrap; }
}
