/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--deep);
  color: var(--cream);
  font-family: var(--f-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── LAYOUT ───────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }

/* ─── LABELS / UTIL ────────────────────────────────────────── */
.label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}

.rule { flex: 1; height: 1px; background: var(--g-hi); }

.section-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  white-space: nowrap;
  color: var(--cream);
}

.section-head h2 em { font-style: italic; color: var(--amber-warm); }

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

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 26px;
  cursor: pointer;
  border: none;
  transition: all 0.2s var(--ease);
  text-decoration: none;
}

.btn-fill {
  background: var(--amber);
  color: var(--deep);
}
.btn-fill:hover { background: var(--amber-warm); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--cream-dim);
  border: 1px solid var(--g-hi);
}
.btn-outline:hover { border-color: var(--cream-dim); color: var(--cream); }

.btn-text {
  background: transparent;
  color: var(--amber);
  padding: 0;
  gap: 8px;
}
.btn-text::after { content: '→'; transition: transform 0.2s; }
.btn-text:hover::after { transform: translateX(4px); }

/* ─── NAV ──────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 60px);
  background: linear-gradient(to bottom, rgba(13,20,17,0.97) 60%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--g-mid);
  transition: padding 0.3s var(--ease);
}

.site-nav.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav-logo {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.nav-logo em { font-style: italic; color: var(--amber-warm); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}

.nav-links li a {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-faint);
  padding: 8px 16px;
  transition: color 0.2s;
  display: block;
}
.nav-links li a:hover { color: var(--cream); }

.nav-cta {
  background: var(--amber);
  color: var(--deep) !important;
  padding: 8px 18px !important;
  border-radius: 1px;
}
.nav-cta:hover { background: var(--amber-warm); color: var(--deep) !important; }

.nav-projects {
  display: flex;
  gap: 14px;
  padding-left: 24px;
  margin-left: 12px;
  border-left: 1px solid var(--g-hi);
}

.proj-dot {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.2s;
  opacity: 0.45;
}
.proj-dot:hover { opacity: 0.85; }
.proj-dot::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.proj-dot.cok { color: #a07af0; }
.proj-dot.okz { color: #c04040; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.25s;
}
.nav-toggle.is-open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 65% 40%, var(--t-glow) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 10% 90%, var(--a-glow) 0%, transparent 55%),
    linear-gradient(150deg, #0d1411 0%, #0a1210 100%);
}

.hero-photo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 100px 0 0 clamp(20px, 5vw, 60px);
}

.photo-wrap {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3/4;
  position: relative;
}

.photo-inner {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, var(--slate) 0%, var(--ink) 100%);
  border: 1px solid var(--g-hi);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.photo-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--deep) 0%, transparent 40%);
  z-index: 1;
}

.photo-inner svg { opacity: 0.15; width: 60px; height: 60px; stroke: var(--cream); fill: none; stroke-width: 1; }
.photo-inner p { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.2em; color: var(--cream); opacity: 0.2; text-transform: uppercase; z-index: 2; }

.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.photo-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 100%; height: 100%;
  border: 1px solid rgba(75, 143, 122, 0.25);
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px 40px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--amber); }

.hero-name {
  font-family: var(--f-hero);
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}
.hero-name em { display: block; font-style: italic; color: var(--amber-pale); }

.hero-quote {
  font-family: var(--f-display);
  font-size: clamp(16px, 1.5vw, 19px);
  font-style: italic;
  font-weight: 400;
  color: var(--cream-dim);
  line-height: 1.55;
  max-width: 340px;
  padding-left: 18px;
  border-left: 2px solid var(--amber);
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-email {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-email-label { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-faint); }

.email-row {
  display: flex;
  gap: 0;
  max-width: 340px;
}
.email-row input {
  flex: 1;
  background: var(--g-mid);
  border: 1px solid var(--g-hi);
  border-right: none;
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.email-row input::placeholder { color: var(--cream-faint); }
.email-row input:focus { border-color: var(--amber); }
.email-row button { background: var(--amber); color: var(--deep); font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; padding: 12px 18px; border: none; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.email-row button:hover { background: var(--amber-warm); }

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); opacity: 0.2; }
.scroll-bar { width: 1px; height: 44px; background: linear-gradient(to bottom, transparent, var(--amber)); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:0.3;} 50%{opacity:0.8;} }

/* ─── LISTEN STRIP ─────────────────────────────────────────── */
.listen-strip {
  background: var(--slate);
  border-top: 1px solid var(--g-hi);
  border-bottom: 1px solid var(--g-hi);
  padding: 0;
}

.listen-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  min-height: 80px;
}

.listen-label {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  border-right: 1px solid var(--g-hi);
  height: 100%;
}

.play-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
  position: relative;
  text-decoration: none;
}
.play-btn:hover { background: var(--amber); transform: scale(1.05); }
.play-btn:hover svg { fill: var(--deep); }
.play-btn svg { width: 14px; height: 14px; fill: var(--amber); margin-left: 2px; transition: fill 0.2s; }

.play-btn.is-playing { background: var(--amber); border-color: var(--amber); }
.play-btn.is-playing svg { fill: var(--deep); }
.play-btn.is-playing .icon-play { display: none; }
.play-btn.is-playing .icon-pause { display: block !important; }
.icon-pause { display: none; }

.player-status {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
  opacity: 0.55;
  margin-top: 4px;
}
.player-status.playing { color: var(--amber); opacity: 0.85; }

.listen-track-info { padding: 0 28px; }
.listen-track-info p:first-child { font-family: var(--f-display); font-size: 18px; font-weight: 400; color: var(--cream); }
.listen-track-info p:nth-child(2) { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--cream-faint); margin-top: 2px; }

.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0 32px;
  height: 44px;
}
.waveform-bar {
  width: 3px;
  background: var(--teal-light);
  border-radius: 2px;
  opacity: 0.25;
  height: 8px;
  transition: opacity 0.3s, height 0.3s;
}
.listen-strip.is-playing .waveform-bar {
  opacity: 0.6;
  animation: wave var(--d, 1.2s) ease-in-out infinite alternate;
}
@keyframes wave { from { height: 8px; } to { height: var(--h, 28px); } }

.listen-platforms {
  display: flex;
  align-items: center;
  gap: 0;
  border-left: 1px solid var(--g-hi);
  height: 100%;
}

.platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 24px;
  height: 100%;
  border-right: 1px solid var(--g-hi);
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.platform-link:hover { background: var(--g-mid); }
.platform-link span:first-child { font-size: 18px; }
.platform-link span:last-child { font-family: var(--f-mono); font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-faint); }

/* ─── ABOUT ─────────────────────────────────────────────────── */
.about { background: var(--ink); padding: 100px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.about-lede {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--cream);
  margin-bottom: 36px;
  padding-left: 24px;
  border-left: 2px solid var(--amber);
  position: relative;
}

.about-lede::before {
  content: '"';
  font-size: 72px;
  line-height: 1;
  color: var(--amber);
  opacity: 0.3;
  position: absolute;
  top: -20px; left: -8px;
}

.about-credentials { display: flex; flex-direction: column; gap: 16px; }

.cred {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--g-mid);
}

.cred-year { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--amber); opacity: 0.7; min-width: 50px; padding-top: 2px; }
.cred-text { font-size: 14px; color: var(--cream-dim); line-height: 1.5; }
.cred-text strong { color: var(--cream); font-weight: 500; display: block; }

.about-body { display: flex; flex-direction: column; gap: 0; }
.about-body p { font-size: 15px; color: var(--cream-dim); line-height: 1.75; padding: 16px 0; border-bottom: 1px solid var(--g-lo); }
.about-cta { margin-top: 32px; }

/* ─── MUSIC ─────────────────────────────────────────────────── */
.music { background: var(--deep); padding: 100px 0; }

.music-intro {
  font-size: 15px;
  color: var(--cream-dim);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 48px;
  opacity: 0.8;
}

.releases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}

.release {
  background: var(--slate);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s var(--ease);
  position: relative;
}
.release:hover { transform: translateY(-4px); z-index: 1; }

.release-art {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--teal) 0%, var(--deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.release-art img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.release-art::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,20,17,0.85) 0%, transparent 50%);
  z-index: 1;
}

.art-mono {
  font-family: var(--f-display);
  font-size: 72px;
  font-weight: 400;
  font-style: italic;
  color: rgba(242,237,226,0.07);
  user-select: none;
}

.release-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43,85,72,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 2;
}
.release:hover .release-play-overlay { opacity: 1; }
.release-play-overlay span { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); }

.release-meta { padding: 18px 20px 22px; }
.release-year { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.14em; color: var(--amber); opacity: 0.7; margin-bottom: 5px; }
.release-title { font-family: var(--f-display); font-size: 20px; font-weight: 400; color: var(--cream); margin-bottom: 3px; }
.release-title a { color: inherit; text-decoration: none; }
.release-genre { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-faint); margin-bottom: 14px; }

.stream-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border: 1px solid var(--g-hi);
  padding: 5px 10px;
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.pill:hover { border-color: var(--amber); color: var(--amber); }

/* ─── SHOWS ─────────────────────────────────────────────────── */
.shows { background: var(--ink); padding: 100px 0; }

.shows-booking-banner {
  background: var(--teal);
  border: 1px solid rgba(77, 143, 122, 0.3);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.booking-banner-text h3 { font-family: var(--f-display); font-size: 22px; font-weight: 400; color: var(--cream); margin-bottom: 4px; }
.booking-banner-text p { font-size: 13px; color: var(--cream-dim); opacity: 0.75; }

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

.show {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--g-mid);
  transition: padding-left 0.2s var(--ease);
}
.show:first-child { border-top: 1px solid var(--g-mid); }
.show:hover { padding-left: 12px; }

.show-date { text-align: center; }
.show-day { font-family: var(--f-display); font-size: 38px; font-weight: 400; line-height: 1; color: var(--amber-warm); }
.show-mon { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-faint); }

.show-info h3 { font-family: var(--f-display); font-size: 20px; font-weight: 400; color: var(--cream); margin-bottom: 3px; }
.show-info p { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em; color: var(--cream-faint); }

.show-type-badge { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; border: 1px solid; }
.badge-acoustic { color: var(--teal-light); border-color: rgba(77,143,122,0.35); }
.badge-festival { color: var(--amber-pale); border-color: rgba(200,160,80,0.35); }
.badge-private  { color: var(--cream-faint); border-color: var(--g-hi); }

.no-shows-msg { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--cream-faint); padding: 32px 0; text-align: center; }

/* ─── PRESS / EPK ──────────────────────────────────────────── */
.press { background: var(--deep); padding: 100px 0; }

.epk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

.epk-card {
  background: var(--slate);
  padding: 40px 36px;
  border-top: 2px solid var(--g-hi);
  transition: border-top-color 0.2s;
}
.epk-card:hover { border-top-color: var(--amber); }

.epk-card-icon { font-size: 28px; margin-bottom: 16px; }
.epk-card h3 { font-family: var(--f-display); font-size: 22px; font-weight: 400; color: var(--cream); margin-bottom: 10px; }
.epk-card p { font-size: 14px; color: var(--cream-dim); opacity: 0.7; line-height: 1.65; margin-bottom: 20px; }

.epk-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  cursor: pointer;
  transition: gap 0.2s;
  text-decoration: none;
}
.epk-download:hover { gap: 14px; }
.epk-download::after { content: '↓'; }

.epk-quote {
  background: var(--teal);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-column: span 2;
}

.epk-quote blockquote {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: 16px;
  max-width: 640px;
}

.epk-quote cite { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); font-style: normal; opacity: 0.8; }

/* ─── BLOG ──────────────────────────────────────────────────── */
.blog { background: var(--ink); padding: 100px 0; }

.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2px;
}

.post {
  background: var(--slate);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 0.2s, transform 0.2s var(--ease);
  cursor: pointer;
}
.post:hover { border-bottom-color: var(--amber); transform: translateY(-3px); }
.post.featured { background: var(--teal); padding: 48px 40px; }
.post-tag { margin-bottom: 14px; }
.post h3 { font-family: var(--f-display); font-size: 22px; font-style: italic; font-weight: 400; line-height: 1.25; color: var(--cream); margin-bottom: 12px; flex: 1; }
.post h3 a { color: inherit; }
.post.featured h3 { font-size: 28px; }
.post p { font-size: 13px; color: var(--cream-dim); opacity: 0.65; line-height: 1.6; margin-bottom: 20px; flex: 1; }

/* ─── EMAIL SECTION ─────────────────────────────────────────── */
.email-section {
  background: var(--teal);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.email-section::before {
  content: 'STAY CONNECTED';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-display);
  font-size: 140px;
  font-weight: 400;
  font-style: italic;
  color: rgba(0,0,0,0.12);
  white-space: nowrap;
  pointer-events: none;
}

.email-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }

.email-copy h2 { font-family: var(--f-display); font-size: clamp(32px, 4vw, 52px); font-weight: 400; line-height: 1.05; color: var(--cream); margin-bottom: 16px; }
.email-copy h2 em { font-style: italic; color: var(--amber-pale); }
.email-copy p { font-size: 15px; color: var(--cream-dim); opacity: 0.75; line-height: 1.65; max-width: 380px; }

.email-perks { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.perk { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--cream-dim); opacity: 0.8; }
.perk::before { content: '✓'; color: var(--amber-pale); font-size: 12px; }

.email-form-big {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px;
}

.email-form-big h3 { font-family: var(--f-display); font-size: 22px; font-weight: 400; color: var(--cream); margin-bottom: 20px; }

.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-field label { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-dim); opacity: 0.6; }
.form-field input, .form-field select, .form-field textarea {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--amber); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--cream-faint); }

/* ─── PROJECTS ──────────────────────────────────────────────── */
.projects { background: var(--deep); padding: 80px 0 0; }

.proj-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 56px; }

.proj {
  min-height: 360px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: filter 0.3s;
}
.proj:hover { filter: brightness(1.08); }

.proj.cok-card { background: linear-gradient(155deg, #16092e 0%, #0b0618 100%); }
.proj.cok-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 30%, rgba(120,60,240,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(60,100,240,0.1) 0%, transparent 60%);
}

.proj.okz-card { background: linear-gradient(155deg, #180808 0%, #080404 100%); }
.proj.okz-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(160,30,30,0.2) 0%, transparent 65%);
}

.proj-bg-word {
  position: absolute;
  top: 50%; right: -10px;
  transform: translateY(-50%);
  font-family: var(--f-display);
  font-size: 160px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
/* Project card background photo — sits under the gradient ::before overlay */
.proj-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.proj:hover .proj-bg-img { opacity: 0.28; }

.proj.cok-card .proj-bg-word { color: rgba(100,60,200,0.07); }
.proj.okz-card .proj-bg-word { color: rgba(140,30,30,0.07); }

.proj-sub { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; position: relative; z-index: 1; }
.proj-sub a { text-decoration: none; }
.proj.cok-card .proj-sub { color: rgba(160,120,255,0.6); }
.proj.okz-card .proj-sub { color: rgba(200,80,80,0.6); }

.proj h2 { font-family: var(--f-display); font-size: clamp(36px, 4vw, 52px); font-weight: 400; line-height: 1; color: var(--cream); margin-bottom: 14px; position: relative; z-index: 1; }
.proj.cok-card h2 em { font-style: italic; color: rgba(200,170,255,0.9); }
.proj.okz-card h2 em { font-style: italic; color: rgba(220,120,120,0.9); }

.proj p { font-size: 13px; color: var(--cream-dim); opacity: 0.55; line-height: 1.6; max-width: 320px; margin-bottom: 28px; position: relative; z-index: 1; }

.proj-link {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid;
  position: relative;
  z-index: 1;
  width: fit-content;
  transition: background 0.2s;
  text-decoration: none;
}
.proj.cok-card .proj-link { color: rgba(180,140,255,0.7); border-color: rgba(140,100,255,0.3); }
.proj.cok-card .proj-link:hover { background: rgba(100,60,200,0.15); }
.proj.okz-card .proj-link { color: rgba(210,100,100,0.7); border-color: rgba(170,60,60,0.3); }
.proj.okz-card .proj-link:hover { background: rgba(140,30,30,0.2); }

/* ─── CONTACT ───────────────────────────────────────────────── */
.contact { background: var(--ink); padding: 100px 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }

.contact-left h2 { font-family: var(--f-display); font-size: clamp(36px, 4vw, 56px); font-weight: 400; line-height: 1; color: var(--cream); margin-bottom: 18px; }
.contact-left h2 em { font-style: italic; color: var(--amber-warm); }
.contact-left > p { font-size: 14px; color: var(--cream-dim); opacity: 0.7; line-height: 1.7; margin-bottom: 36px; max-width: 360px; }

.contact-ways { display: flex; flex-direction: column; gap: 2px; }

.contact-way {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: var(--g-lo);
  border: 1px solid var(--g-mid);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.contact-way:hover { background: var(--g-mid); }

.way-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--a-glow); border: 1px solid rgba(192,120,64,0.25); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }

.way-text h4 { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); margin-bottom: 3px; }
.way-text p { font-size: 13px; color: var(--cream-dim); opacity: 0.65; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-form .form-field input,
.contact-form .form-field textarea,
.contact-form .form-field select {
  background: var(--g-lo);
  border: 1px solid var(--g-hi);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 14px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}
.contact-form .form-field input:focus,
.contact-form .form-field textarea:focus { border-color: var(--amber); }
.contact-form .form-field input::placeholder,
.contact-form .form-field textarea::placeholder { color: var(--cream-faint); font-size: 13px; }
.contact-form .form-field textarea { resize: vertical; min-height: 110px; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--deep);
  border-top: 1px solid var(--g-mid);
  padding: 56px 0 32px;
}

.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }

.footer-brand h3 { font-family: var(--f-display); font-size: 26px; font-weight: 400; margin-bottom: 10px; }
.footer-brand h3 em { color: var(--amber); font-style: italic; }
.footer-brand p { font-size: 13px; color: var(--cream-dim); opacity: 0.45; line-height: 1.65; max-width: 240px; }

.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-btn {
  width: 34px; height: 34px;
  border: 1px solid var(--g-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  color: var(--cream-dim);
}
.social-btn:hover { border-color: var(--amber); background: var(--a-glow); color: var(--cream); }

.footer-col h4 { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); opacity: 0.65; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: var(--cream-dim); opacity: 0.5; transition: opacity 0.2s; }
.footer-col ul a:hover { opacity: 1; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--g-mid); flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.1em; color: var(--cream-dim); opacity: 0.25; }

/* ─── CONNECTIONS ───────────────────────────────────────────── */
.connections { background: var(--ink); padding: 80px 0; }

.connections-intro { font-size: 14px; color: var(--cream-dim); opacity: 0.65; line-height: 1.65; max-width: 560px; margin-bottom: 48px; }

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

.conn-group { background: var(--slate); padding: 28px 24px; border-top: 2px solid var(--g-hi); transition: border-top-color 0.2s; }
.conn-group:hover { border-top-color: var(--amber); }

.conn-group h4 { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); opacity: 0.75; margin-bottom: 18px; }
.conn-group ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.conn-group ul li a { display: flex; flex-direction: column; gap: 2px; transition: opacity 0.2s; opacity: 0.7; text-decoration: none; }
.conn-group ul li a:hover { opacity: 1; }
.conn-name { font-size: 13px; color: var(--cream); line-height: 1.3; }
.conn-desc { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.08em; color: var(--cream-faint); }

/* ─── WC WRAPPER ────────────────────────────────────────────── */
.wc-page-wrap { padding: 100px 0; }
.wc-main { max-width: 100%; }
.wc-product-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

/* ─── GENERIC CONTENT ───────────────────────────────────────── */
.single-content h2,
.single-content h3 { font-family: var(--f-display); font-weight: 400; color: var(--cream); margin: 2em 0 0.8em; }
.single-content p  { color: var(--cream-dim); margin-bottom: 1.5em; }
.single-content a  { color: var(--amber); text-decoration: underline; }
.single-content blockquote { border-left: 2px solid var(--amber); padding-left: 20px; font-style: italic; margin: 2em 0; }
.single-content ul, .single-content ol { padding-left: 1.5em; margin-bottom: 1.5em; }
.single-content li { color: var(--cream-dim); margin-bottom: 0.5em; }

/* ─── ENTRANCE ANIMATIONS ───────────────────────────────────── */
.hero-eyebrow  { animation: fadeUp 0.7s ease 0.1s both; }
.hero-name     { animation: fadeUp 0.7s ease 0.25s both; }
.hero-quote    { animation: fadeUp 0.7s ease 0.4s both; }
.hero-actions  { animation: fadeUp 0.7s ease 0.55s both; }
.hero-email    { animation: fadeUp 0.7s ease 0.65s both; }
.photo-wrap    { animation: fadeUp 0.9s ease 0.15s both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── MOBILE ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-photo { display: none; }
  .hero-content { padding: 120px 24px 60px; }
  .hero-name { font-size: clamp(52px, 14vw, 80px); }

  .listen-inner { grid-template-columns: 1fr; }
  .listen-platforms { border-left: none; border-top: 1px solid var(--g-hi); }
  .listen-label { border-right: none; border-bottom: 1px solid var(--g-hi); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .releases { grid-template-columns: 1fr 1fr; }
  .epk-grid { grid-template-columns: 1fr; }
  .epk-quote { grid-column: span 1; }

  .blog-grid { grid-template-columns: 1fr; }
  .email-inner { grid-template-columns: 1fr; }
  .proj-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }

  .connections-grid { grid-template-columns: 1fr 1fr; }
  .show { grid-template-columns: 70px 1fr auto; }
  .show-type-badge { display: none; }

  .nav-links { display: none; flex-direction: column; align-items: flex-start; position: absolute; top: 100%; left: 0; right: 0; background: rgba(13,20,17,0.98); padding: 16px clamp(20px,5vw,60px); border-bottom: 1px solid var(--g-mid); backdrop-filter: blur(8px); }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-projects { flex-direction: column; border-left: none; padding-left: 0; margin-left: 0; border-top: 1px solid var(--g-mid); padding-top: 12px; }
  .wc-product-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .releases { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .email-row { flex-direction: column; }
  .email-row button { width: 100%; padding: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .connections-grid { grid-template-columns: 1fr; }
  .wc-product-grid { grid-template-columns: 1fr; }
}
