:root {
  --bg: #fbfaf7;
  --bg-panel: #ffffff;
  --ink: #1a1a1a;
  --ink-dim: #5c5c56;
  --line: rgba(26, 26, 26, 0.14);

  --dark: #14150f;
  --on-dark: #f7f6f1;
  --on-dark-dim: rgba(247, 246, 241, 0.7);
  --line-on-dark: rgba(247, 246, 241, 0.2);

  --green: #3d5a3f;
  --green-bright: #55794f;
  --sage: #a9c9a0;

  --error: #b23a2e;

  --font-display: 'Big Shoulders Display', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'Manrope', sans-serif;

  --radius: 3px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 100;
  background: var(--green);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: top 0.2s;
}

.skip-link:focus { top: 12px; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}

/* Header (masthead) */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--ink);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 1.2rem;
  color: var(--ink);
}

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

.main-nav a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  transition: color 0.15s;
}

.main-nav a:hover { color: var(--green); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
}

/* Hero */

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
  color: var(--on-dark);
  padding-top: 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 21, 15, 0) 40%, rgba(20, 21, 15, 0.55) 72%, rgba(20, 21, 15, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 56px;
  text-align: left;
}

.hero-kicker {
  font-family: var(--font-mono);
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 16px;
}

.hero-title {
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  color: var(--on-dark);
  line-height: 0.95;
}

.hero-tagline {
  color: var(--on-dark-dim);
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 480px;
  margin: 16px 0 0;
  font-family: var(--font-body);
}

.stars-row {
  margin: 0;
  height: 16px;
  text-align: left;
}

.stars-row::after {
  content: '\2605 \2605 \2605 \2605 \2605 \2605 \2605 \2605 \2605 \2605 \2605 \2605';
  color: var(--sage);
  font-size: 0.7rem;
  letter-spacing: 5px;
}

.stars-row-small::after {
  font-size: 0.6rem;
  letter-spacing: 4px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.15s, background 0.15s, border-color 0.15s, color 0.15s;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover { background: var(--green-bright); transform: translateY(-1px); }

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  border: 1.5px solid var(--on-dark);
  color: var(--on-dark);
}

.btn-ghost:hover { background: rgba(247, 246, 241, 0.1); transform: translateY(-1px); }

.btn-ghost:active { transform: translateY(0); }

/* Trust strip */

.trust-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 16px 24px;
}

.trust-strip-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
}

.trust-strip-inner a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.trust-strip-inner a:hover { color: var(--green); border-color: var(--green); }

/* Section shared */

.section-kicker {
  font-family: var(--font-mono);
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--ink);
  margin-bottom: 40px;
}

/* Tracks — editorial listing */

.tracks {
  background: var(--bg);
  padding: 64px 0 80px;
}

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

.track-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.track-list .track-card:last-child { border-bottom: 1px solid var(--line); }

.track-cover {
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  border-radius: var(--radius);
  background: var(--ink);
  overflow: hidden;
}

.track-cover svg {
  width: 60%;
  height: 60%;
  fill: var(--green);
}

.track-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.track-info { flex: 1; min-width: 0; }

.track-heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.track-heading h3 {
  font-size: 1.4rem;
  color: var(--ink);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.status-preparing { color: var(--ink-dim); }
.status-development { color: var(--ink-dim); }

.track-desc {
  color: var(--ink-dim);
  font-size: 0.96rem;
  margin: 0 0 14px;
  max-width: 60ch;
}

.track-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.track-link {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  border-bottom: 1px solid var(--green);
}

.track-link:hover { color: var(--green); }

/* About — profile spread */

.narts {
  background: var(--bg);
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.narts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.narts-text p {
  color: var(--ink-dim);
  font-size: 1.02rem;
}

.narts-text p:first-of-type { margin-top: 0; }

.narts-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

/* Video */

.video {
  background: var(--bg);
  padding: 64px 0 80px;
  border-top: 1px solid var(--line);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  background: var(--bg-panel);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 20px;
}

.video-placeholder-note {
  color: var(--ink-dim);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
}

.video-placeholder-empty { opacity: 0.85; }

.video-placeholder-mark {
  width: 40px;
  height: 40px;
  fill: var(--green);
  margin-bottom: 4px;
}

.video-embed {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-panel);
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.reels-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
  font-size: 0.85rem;
}

.reels-label { color: var(--ink-dim); font-weight: 600; }

.reels-links a {
  font-family: var(--font-mono);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--green);
}

.reels-links a:hover { color: var(--green); }

/* Contact */

.contact {
  background: var(--bg);
  padding: 72px 0 90px;
  border-top: 1px solid var(--line);
}

.contact-inner { max-width: 560px; }

.contact-lead {
  color: var(--ink-dim);
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
}

.form-row input,
.form-row textarea {
  background: var(--bg-panel);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61, 90, 63, 0.15);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-dim);
  cursor: pointer;
}

.consent-row input {
  margin-top: 3px;
  flex-shrink: 0;
}

.consent-row a {
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1px solid var(--green);
}

.consent-row a:hover { color: var(--green); }

.contact-form .btn { align-self: flex-start; }

.form-status {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-dim);
  min-height: 1.2em;
  margin: 0;
}

.form-status.ok { color: var(--green); }
.form-status.err { color: var(--error); }

/* Legal page */

.legal {
  background: var(--bg);
  padding: 56px 0 90px;
}

.legal-inner { max-width: 680px; }

.legal-updated {
  font-family: var(--font-mono);
  color: var(--ink-dim);
  font-size: 0.8rem;
  margin-top: -20px;
  margin-bottom: 32px;
}

.legal h2 {
  font-size: 1.2rem;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: none;
}

.legal p {
  color: var(--ink-dim);
  font-size: 0.95rem;
}

.legal a {
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1px solid var(--green);
}

.legal a:hover { color: var(--green); }

/* Footer (colophon) */

.site-footer {
  background: var(--dark);
  color: var(--on-dark-dim);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--on-dark-dim);
}

.footer-links a:hover { color: var(--sage); }

.footer-copy {
  font-family: var(--font-mono);
  color: var(--on-dark-dim);
  font-size: 0.75rem;
  margin: 0;
}

.footer-copy a { color: var(--on-dark-dim); border-bottom: 1px solid var(--line-on-dark); }
.footer-copy a:hover { color: var(--sage); }

/* Not-found page */

.not-found {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--on-dark);
  text-align: center;
  padding: 40px 24px;
}

.not-found-inner { max-width: 420px; }

.not-found-peaks {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 24px;
}

.not-found-peaks .peak-back { fill: rgba(247, 246, 241, 0.08); }
.not-found-peaks .peak-front { fill: transparent; stroke: var(--sage); stroke-width: 1.5; }

.not-found-code {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--sage);
  margin: 0;
  line-height: 1;
}

.not-found-title {
  font-size: 1.8rem;
  color: var(--on-dark);
  margin: 8px 0 16px;
  font-family: var(--font-display);
}

.not-found-text {
  color: var(--on-dark-dim);
  margin-bottom: 28px;
}

/* Responsive */

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--ink);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 16px;
    display: none;
  }

  .main-nav.open { display: flex; }

  .nav-toggle { display: flex; }

  .narts-inner {
    grid-template-columns: 1fr;
  }

  .narts-visual { order: -1; }

  .track-card { flex-direction: column; }

  .track-cover { width: 84px; height: 84px; }
}
