:root {
  --bg: #f4f2ec;
  --paper: #faf8f3;
  --ink: #15140f;
  --muted: #6f6a5e;
  --line: #ddd8cc;
  --accent: #b3724a;
  --dark: #15140f;
  --dark-ink: #f4f2ec;
  --dark-muted: #9a9486;
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --sans: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* smooth scroll (Lenis) */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { display: block; max-width: 100%; height: auto; }

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

.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 16px; top: 16px;
  background: var(--ink); color: var(--bg);
  padding: 10px 16px; z-index: 200; border-radius: 4px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 18px;
}

/* ---------- Intro loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  transition: transform .85s cubic-bezier(.76, 0, .24, 1);
}
.loader.done { transform: translateY(-101%); }
.loader__inner { text-align: center; }
.loader__mark {
  display: block;
  font-size: clamp(46px, 11vw, 120px);
  font-weight: 800; letter-spacing: -0.03em; line-height: .9;
}
.loader__pct {
  display: block; margin-top: 16px;
  font-size: 13px; letter-spacing: 0.34em; color: var(--accent);
  font-variant-numeric: tabular-nums;
}
body.loading { overflow: hidden; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad);
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.nav--scrolled {
  background: rgba(244,242,236,.88);
  backdrop-filter: saturate(140%) blur(10px);
  padding-top: 14px; padding-bottom: 14px;
  box-shadow: 0 1px 0 var(--line);
}
.nav__brand {
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 18px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
}
.nav__links a {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a.active { color: var(--accent); }
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200;
  background: var(--accent); transition: width .12s linear;
}
.nav__cta {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 8px 18px;
  color: var(--ink) !important;
}
.nav__cta:hover { background: var(--ink); color: var(--bg) !important; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: 0; cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 26px; height: 2px; background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: 72vh;
  padding: clamp(78px, 11vh, 112px) var(--pad) clamp(36px, 5vw, 60px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(300px, 32vw, 400px);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}
.hero__text { min-width: 0; }
.hero__media { min-width: 0; }
.hero__name {
  font-size: clamp(52px, 9vw, 128px);
  line-height: .9;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0;
  white-space: nowrap;
}
.hletter { display: inline-block; will-change: transform, opacity; }
.hero__role {
  font-size: clamp(15px, 2vw, 19px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 18px 0 0;
}
.hero__lead {
  max-width: 42ch;
  margin: 26px auto 0;
  color: #45413a;
  text-align: center;
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.55;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero__media { position: relative; }
.swap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper);
}
.swap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: opacity .6s ease, transform 1.4s cubic-bezier(.2,.7,.2,1);
  backface-visibility: hidden;
}
.swap__b { opacity: 0; }
.hero__media:hover .swap__a { opacity: 0; }
.hero__media:hover .swap__b { opacity: 1; }
.hero__media:hover .swap img { transform: scale(1.05); }
.swap__hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(21, 20, 15, 0.55);
  padding: 6px 12px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 1;
  transition: opacity .4s ease;
}
.hero__media:hover .swap__hint { opacity: 0; }
@media (hover: none) {
  .swap__hint { display: none; }
  .swap__b { opacity: 0; }
}

.btn {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--ink); color: var(--bg); }
.btn--solid:hover { background: var(--accent); border-color: var(--accent); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--lg { padding: 18px 40px; font-size: 15px; }

/* audio teaser button */
.audio-toggle { display: inline-flex; align-items: center; gap: 10px; }
.audio-eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 13px; }
.audio-eq i {
  width: 2px; height: 4px; background: currentColor; border-radius: 1px;
}
.audio-toggle.is-playing .audio-eq i { animation: eq .9s ease-in-out infinite; }
.audio-toggle.is-playing .audio-eq i:nth-child(2) { animation-delay: .15s; }
.audio-toggle.is-playing .audio-eq i:nth-child(3) { animation-delay: .3s; }
.audio-toggle.is-playing .audio-eq i:nth-child(4) { animation-delay: .45s; }
@keyframes eq {
  0%, 100% { height: 4px; }
  50% { height: 13px; }
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  animation: scroll 32s linear infinite;
  will-change: transform;
}
.marquee__track span {
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.marquee__track span:nth-child(even) { color: var(--accent); font-weight: 400; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(46px, 7vw, 92px) var(--pad);
}
.section__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: clamp(26px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}
.idx {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.section__title {
  font-size: clamp(34px, 7vw, 78px);
  line-height: .95;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0;
}

.section--dark {
  max-width: none;
  background: var(--dark);
  color: var(--dark-ink);
}
.section--dark .section__head {
  max-width: var(--maxw);
  margin-left: auto; margin-right: auto;
  border-color: rgba(255,255,255,.14);
}
.section--dark .idx { color: var(--accent); }

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}
.about__img {
  position: sticky; top: 100px;
  border-radius: 8px; overflow: hidden;
}
.about__img img {
  width: 100%; display: block; border-radius: 8px;
  filter: grayscale(0.72) contrast(1.03);
  transition: filter .6s ease, transform .9s cubic-bezier(.2, .7, .2, 1);
}
.about__img::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0;
  transition: opacity .4s ease;
  background: radial-gradient(240px circle at var(--cx, 50%) var(--cy, 50%), rgba(255, 224, 188, 0.30), transparent 62%);
}
.about__img:hover img { filter: grayscale(0); transform: scale(1.03); }
.about__img:hover::before { opacity: 1; }
.about__lede {
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
}
.about__body p { margin: 0 0 18px; color: #45413a; }
.hl { color: var(--accent); font-weight: 600; }

/* ---------- Credits ---------- */
.credits { list-style: none; margin: 0; padding: 0; }
.credit {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: clamp(14px, 2vw, 30px);
  align-items: center;
  padding: clamp(18px, 2vw, 28px) 20px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.credit::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.7, 0, .15, 1);
}
.credit:hover::after { transform: scaleX(1); }
.credit > * { position: relative; z-index: 1; transition: color .3s ease; }
.credit__no {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em; color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.credit__title {
  font-size: clamp(24px, 3.9vw, 46px);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1;
}
.credit__meta { color: var(--muted); font-size: 15px; letter-spacing: 0.04em; white-space: nowrap; }
.credit__tag {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); font-weight: 700; white-space: nowrap;
}
.credit__play {
  font-size: 13px; color: var(--accent);
  opacity: 0; transform: translateX(-8px);
  transition: opacity .3s ease, transform .3s ease;
}
.credit:hover .credit__no { color: var(--accent); }
.credit:hover .credit__title { color: var(--paper); }
.credit:hover .credit__meta { color: rgba(244, 242, 236, 0.72); }
.credit:hover .credit__play { opacity: 1; transform: none; }
.credit[data-spotify] { cursor: pointer; }
.collabs { margin-top: clamp(26px, 4vw, 44px); }
.collabs__label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 12px;
}
.collabs__list {
  list-style: none; margin: 16px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px 12px;
}
.chip {
  font-size: clamp(15px, 1.9vw, 21px); font-weight: 600; letter-spacing: -0.01em;
  padding: 9px 18px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--ink); white-space: nowrap; cursor: default;
  opacity: 0; transform: translateY(12px);
  transition: background-color .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}
.collabs.is-in .chip { animation: chipIn .55s cubic-bezier(.2, .8, .2, 1) both; }
.chip:hover {
  background-color: var(--ink); color: var(--paper); border-color: var(--ink);
  transform: translateY(-4px);
}
@keyframes chipIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---------- Services ---------- */
.services {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 32px);
}
.service {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 38px);
}
.service h3 {
  font-size: clamp(20px, 2.6vw, 26px);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.service p { margin: 0; color: var(--dark-muted); }
/* services inside light section (none currently) keep contrast */
.section:not(.section--dark) .service { border-color: var(--line); }
.section:not(.section--dark) .service p { color: #45413a; }

/* ---------- Listen ---------- */
.listen {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.clip { margin: 0; }
.clip video {
  width: clamp(240px, 32vw, 360px);
  border-radius: 10px;
  background: #000;
  aspect-ratio: 720 / 1280;
  object-fit: cover;
}
.clip figcaption {
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.links { list-style: none; margin: 0; padding: 0; }
.links li { border-top: 1px solid var(--line); }
.links li:last-child { border-bottom: 1px solid var(--line); }
.links a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  transition: padding-left .25s ease, color .2s ease;
}
.links a:hover { padding-left: 14px; color: var(--accent); }
.links a > span:first-child {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.links__handle { color: var(--muted); font-size: 14px; }

.listen__feature {
  max-width: var(--maxw);
  margin: clamp(28px,4vw,52px) auto 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.listen__feature::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0;
  transition: opacity .4s ease;
  background: radial-gradient(300px circle at var(--cx, 50%) var(--cy, 50%), rgba(255, 224, 188, 0.32), transparent 62%);
}
.listen__feature:hover::before { opacity: 1; }
.listen__feature img {
  width: 100%;
  height: clamp(320px, 52vh, 540px);
  object-fit: cover;
  object-position: center 30%;
  border-radius: 8px;
}

/* ---------- Book ---------- */
.book {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: clamp(58px, 9vw, 116px) var(--pad);
}
.book .eyebrow { color: rgba(255,255,255,.8); }
.book__title {
  font-size: clamp(40px, 9vw, 110px);
  line-height: .95;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 18px;
}
.book__lead {
  max-width: 36ch;
  margin: 0 auto 38px;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,.92);
}
.book .btn--solid { background: #fff; color: var(--ink); border-color: #fff; }
.book .btn--solid:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.book .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.65); }
.book .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.book__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.book__qr {
  margin-top: clamp(34px, 5vw, 54px);
  display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
}
.book__qr img { width: 132px; height: 132px; padding: 12px; background: #f4f2ec; border-radius: 14px; }
.book__qr span {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255, 255, 255, 0.85);
}

/* booking form */
.bform { max-width: 540px; margin: 0 auto clamp(22px, 3vw, 30px); display: grid; gap: 14px; text-align: left; }
.bform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bform__in {
  width: 100%; font: inherit; font-size: 15px; color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 10px; padding: 14px 16px;
  transition: border-color .2s ease, background .2s ease;
}
.bform__in::placeholder { color: rgba(255, 255, 255, 0.72); }
.bform__in:focus { outline: none; border-color: #fff; background: rgba(255, 255, 255, 0.18); }
.bform__select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.bform__select option { color: var(--ink); }
.bform__msg { resize: vertical; min-height: 112px; }
.bform .btn--solid { cursor: pointer; }
.bform__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: center; }
.btn__arrow { display: inline-block; transition: transform .3s cubic-bezier(.2, .8, .2, 1); }
.btn:hover .btn__arrow { transform: translateX(5px); }
.bform__status { text-align: center; margin: 16px 0 0; min-height: 1em; font-size: 14px; color: rgba(255, 255, 255, 0.92); }
.bform__status a { text-decoration: underline; color: #fff; }
.bform__in.invalid { border-color: #ffd7c2; background: rgba(255, 255, 255, 0.22); }
@media (max-width: 560px) { .bform__row { grid-template-columns: 1fr; } }

/* ---------- Spotify embed ---------- */
.spotify-wrap { max-width: var(--maxw); margin: 0 auto clamp(24px, 3.5vw, 44px); }
.spotify { display: block; width: 100%; height: 380px; border: 0; border-radius: 12px; }

/* ---------- Press / EPK ---------- */
.press-hero { max-width: var(--maxw); margin: 0 auto; padding: clamp(120px, 16vh, 180px) var(--pad) clamp(40px, 6vw, 70px); }
.facts {
  list-style: none; margin: clamp(28px, 4vw, 44px) 0 0; padding: clamp(24px, 3vw, 36px) 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 28px);
  border-top: 1px solid var(--line);
}
.fact { display: flex; flex-direction: column; gap: 6px; }
.fact b { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.02em; }
.fact span { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }
.press-note { color: var(--muted); margin: 0 0 clamp(22px, 3vw, 32px); font-size: 14px; letter-spacing: 0.04em; }
@media (max-width: 760px) { .facts { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Gallery (expanding accordion) ---------- */
.gallery { display: flex; gap: 8px; height: clamp(360px, 56vh, 560px); }
.shot {
  position: relative; flex: 1 1 0; min-width: 0; overflow: hidden; border-radius: 10px;
  margin: 0; cursor: pointer; background: var(--ink);
  transition: flex-grow .6s cubic-bezier(.2, .8, .2, 1);
}
.shot img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
  filter: grayscale(0.85) contrast(1.05);
  transition: transform .8s cubic-bezier(.2, .7, .2, 1), filter .6s ease;
}
.shot::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0;
  transition: opacity .4s ease;
  background: radial-gradient(220px circle at var(--cx, 50%) var(--cy, 50%), rgba(255, 224, 188, 0.28), transparent 60%);
}
.shot__cap {
  position: absolute; left: 16px; bottom: 14px; z-index: 2; margin: 0;
  color: #fff; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px); transition: opacity .4s ease, transform .4s ease;
  display: flex; align-items: baseline; gap: 8px; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}
.shot__cap span { color: var(--accent); font-weight: 700; }
@media (hover: hover) and (min-width: 761px) {
  .gallery:hover .shot { flex-grow: .5; }
  .gallery .shot:hover { flex-grow: 3.4; }
  .shot:hover img { filter: grayscale(0); transform: scale(1.05); }
  .shot:hover::before { opacity: 1; }
  .shot:hover .shot__cap { opacity: 1; transform: none; }
}
@media (max-width: 760px) {
  .gallery { height: 60vh; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .shot { flex: 0 0 80%; scroll-snap-align: center; }
  .shot img { filter: grayscale(0); }
  .shot__cap { opacity: 1; transform: none; }
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 10001;
  background: rgba(12, 11, 8, 0.92);
  display: flex; align-items: center; justify-content: center; padding: 4vh 4vw;
  opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 92vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); }
.lightbox__close {
  position: absolute; top: 18px; right: 24px;
  background: none; border: 0; color: #fff; font-size: 42px; line-height: 1; cursor: pointer;
}

/* ---------- Footer ---------- */
.foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px var(--pad);
}
.foot__brand { font-weight: 800; letter-spacing: 0.18em; }
.foot__meta { color: var(--muted); font-size: 14px; }
.foot__social { display: flex; gap: 20px; }
.foot__social a { font-size: 14px; color: var(--muted); transition: color .2s ease; }
.foot__social a:hover { color: var(--accent); }
.foot__copy { color: var(--muted); font-size: 13px; }

/* made-by signature */
.foot__credit {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.madeby {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
}
.madeby__label { color: var(--muted); }
.madeby__name {
  font-weight: 800;
  background: linear-gradient(100deg, var(--ink) 0%, var(--ink) 38%, var(--accent) 50%, var(--ink) 62%, var(--ink) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shine 5s linear infinite;
}
.madeby__arrow { color: var(--accent); transition: transform .3s cubic-bezier(.2, .8, .2, 1); }
.madeby:hover .madeby__name { animation-duration: 1.1s; }
.madeby:hover .madeby__arrow { transform: translate(4px, -4px); }
@keyframes shine {
  0% { background-position: 200% 0; }
  100% { background-position: -60% 0; }
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

/* spotlight that tracks the cursor inside cards */
.service { position: relative; overflow: hidden; }
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
  background: radial-gradient(
    280px circle at var(--cx, 50%) var(--cy, 50%),
    rgba(255, 226, 190, 0.40),
    transparent 62%
  );
}
.service:hover::before { opacity: 1; }
.service { transition: border-color .3s ease, transform .3s ease; }
.service:hover { border-color: rgba(179, 114, 74, 0.65); transform: translateY(-3px); }
.service h3, .service p { position: relative; z-index: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 0 40px;
    background: var(--bg);
    transform: translateX(100%);
    transition: transform .32s ease;
    box-shadow: -20px 0 60px rgba(0,0,0,.12);
  }
  .nav__links a { font-size: 20px; color: var(--ink); }
  .nav--open .nav__links { transform: translateX(0); }
  .nav__toggle { display: flex; z-index: 110; }
  .nav--open .nav__toggle span:first-child { transform: translateY(7px) rotate(45deg); }
  .nav--open .nav__toggle span:last-child { transform: translateY(-7px) rotate(-45deg); }

  .hero { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 360px; }
  .about { grid-template-columns: 1fr; gap: 28px; }
  .about__img { position: static; max-width: 320px; margin: 0 auto; }
  .about__img img { position: static; }
  .services { grid-template-columns: 1fr; }
  .listen { grid-template-columns: 1fr; }
  .clip { justify-self: center; }
  .credit { grid-template-columns: auto 1fr auto; padding: 16px 14px; }
  .credit__meta, .credit__play { display: none; }
}

/* ---------- Custom cursor ---------- */
.fx-cursor, .fx-cursor a, .fx-cursor button,
.fx-cursor .clip video, .fx-cursor .credit { cursor: none; }
.cur-dot, .cur-ring {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; border-radius: 50%; will-change: transform;
}
.cur-dot { width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px; background: var(--ink); }
.cur-ring {
  width: 34px; height: 34px; margin: -17px 0 0 -17px;
  border: 1.5px solid rgba(21, 20, 15, 0.45);
  transition: width .25s ease, height .25s ease, margin .25s ease,
              border-color .25s ease, background-color .25s ease;
}
.cur-ring.is-hot {
  width: 62px; height: 62px; margin: -31px 0 0 -31px;
  border-color: rgba(179, 114, 74, 0.85);
  background-color: rgba(179, 114, 74, 0.10);
}
.cur-dot.is-hot { background: var(--accent); }
.cur-dot.on-dark { background: #f4f2ec; }
.cur-ring.on-dark { border-color: rgba(255, 255, 255, 0.6); }
.cur-ring.is-hot.on-dark { border-color: rgba(255, 255, 255, 0.95); background-color: rgba(255, 255, 255, 0.14); }

/* ---------- Work hover figure ---------- */
.work-figure {
  position: fixed; top: 0; left: 0; z-index: 58;
  pointer-events: none;
  width: 230px; aspect-ratio: 1 / 1; margin: -115px 0 0 -115px;
  border-radius: 8px; overflow: hidden;
  opacity: 0; transform: scale(.92) rotate(-3deg);
  transition: opacity .3s ease, transform .45s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
  will-change: transform; background: var(--paper);
}
.work-figure.on { opacity: 1; transform: scale(1) rotate(-3deg); }
.work-figure img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Hero 3D tilt ---------- */
.hero__media { perspective: 1100px; }
.swap { transform-style: preserve-3d; }

/* ---------- Grain + vignette ---------- */
.grain {
  position: fixed; inset: 0; z-index: 55; pointer-events: none;
  background-image: radial-gradient(125% 125% at 50% 48%, transparent 60%, rgba(20, 18, 12, 0.12) 100%);
}
.grain::before {
  content: ""; position: absolute; inset: -60%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.055;
  animation: grain 1s steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-5%, 3%); }
  50% { transform: translate(4%, -4%); }
  75% { transform: translate(-3%, -2%); }
  100% { transform: translate(0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .chip { opacity: 1; transform: none; }
  .grain::before { display: none; }
}
