:root {
  --bg: #0f1b14;
  --bg-alt: #0b150f;
  --surface: #16241b;
  --surface-2: #1d2f24;
  --text: #eef3ee;
  --muted: #a9bcae;
  --line: rgba(238, 243, 238, 0.1);
  --gold: #d9a441;
  --green: #6bbf8a;
  --max: 1140px;
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}

a { color: inherit; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #1a1305;
  padding: 0.6rem 1rem;
  border-radius: 0 0 8px 0;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(15, 27, 20, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.brand span { color: var(--gold); }

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-menu a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}
.nav-menu a:hover { color: var(--text); }
.nav-cta {
  border: 1px solid var(--line);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  color: var(--text) !important;
}
.nav-cta:hover { border-color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn-primary {
  background: var(--gold);
  color: #1a1305;
  box-shadow: 0 10px 24px rgba(217, 164, 65, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(217, 164, 65, 0.35); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--green); transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 80% 10%, rgba(107, 191, 138, 0.18), transparent 55%),
    radial-gradient(90% 70% at 10% 90%, rgba(217, 164, 65, 0.16), transparent 60%),
    linear-gradient(160deg, #0d1812, #122018 60%, #0a130d);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 1.4rem;
  width: 100%;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  max-width: 14ch;
  margin-bottom: 0.5em;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 1rem;
}
.lede {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 56ch;
}
.lede strong { color: var(--text); }
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  font-size: 1.4rem;
  color: var(--muted);
  animation: bob 2s var(--ease) infinite;
}
@keyframes bob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

/* ---------- Sections ---------- */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 1.4rem;
}
.section-alt {
  max-width: none;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-alt > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.section-head { max-width: 60ch; margin-bottom: 2.6rem; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.section-sub { color: var(--muted); font-size: 1.05rem; }
.section-sub code {
  background: var(--surface-2);
  padding: 0.1em 0.4em;
  border-radius: 5px;
  font-size: 0.85em;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.tile {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tile:nth-child(3n) { aspect-ratio: 4 / 3; }
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tile-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.tile:hover .tile-label { opacity: 1; }

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--green); }
.card h3 { font-size: 1.3rem; }
.card p { color: var(--muted); margin: 0.4rem 0 1.1rem; }
.card-link {
  text-decoration: none;
  color: var(--green);
  font-weight: 600;
  font-size: 0.95rem;
}
.card-link:hover { color: var(--gold); }

.music-card {
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--accent, var(--gold));
}
.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent, var(--gold));
  font-weight: 600;
  margin-bottom: 0.6rem;
}

/* ---------- Quote ---------- */
.quote {
  margin: 0 0 2.4rem;
  padding: 2rem;
  border-left: 3px solid var(--gold);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote blockquote {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.3;
}
.quote figcaption { color: var(--muted); margin-top: 0.8rem; }

.disclaimer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-media {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(107,191,138,0.35), transparent 60%),
    radial-gradient(120% 120% at 80% 90%, rgba(217,164,65,0.4), transparent 55%),
    linear-gradient(135deg, #16241b, #1d2f24);
  box-shadow: var(--shadow);
}

/* ---------- Contact ---------- */
.contact { text-align: center; }
.contact-note { color: var(--muted); margin-top: 1rem; font-size: 0.92rem; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 2.5rem 1.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-sub { color: var(--gold); letter-spacing: 0.1em; font-size: 0.8rem; margin-top: 0.3rem; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }
  .nav-menu.open { max-height: 420px; }
  .nav-menu li { width: 100%; text-align: center; }
  .nav-menu a { display: block; padding: 1rem; width: 100%; }
  .nav-cta { border: 0; border-radius: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 320px; }
}
