:root {
  --bg: #0b0b0c;
  --bg-2: #0e0e10;
  --ink: #ece9e3;
  --ink-dim: #86847d;
  --ink-faint: #56544e;
  --line: rgba(236, 233, 227, 0.10);
  --line-soft: rgba(236, 233, 227, 0.06);
  --sand: #c7c0b4;
  --max: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--ink); color: var(--bg); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.section-head { max-width: var(--max); margin: 0 auto; padding: 0 clamp(22px, 5vw, 56px); }
.section-head__index,
.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 500;
}
.section-head__title {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 300;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-top: 22px;
  color: var(--ink);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(22px, 5vw, 56px);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(11, 11, 12, 0.72);
  backdrop-filter: blur(16px);
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.nav__brand { display: flex; align-items: baseline; gap: 10px; }
.nav__name { font-size: 15px; font-weight: 500; letter-spacing: -0.01em; }
.nav__alias {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.nav__links { display: flex; gap: clamp(18px, 3vw, 34px); }
.nav__links a {
  font-size: 14px;
  color: var(--ink-dim);
  transition: color 0.25s;
  position: relative;
}
.nav__links a:hover { color: var(--ink); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100svh;
  max-width: var(--max);
  margin: 0 auto;
  padding: 130px clamp(22px, 5vw, 56px) 60px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(30px, 6vw, 80px);
}
.hero__text { display: flex; flex-direction: column; justify-content: center; }
.hero__title {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 300;
  font-size: clamp(46px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-top: 28px;
}
.hero__lede {
  max-width: 440px;
  margin-top: 30px;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--ink-dim);
  font-weight: 300;
  line-height: 1.65;
}
.hero__scroll {
  margin-top: 38px;
  font-size: 14px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  transition: gap 0.3s var(--ease), border-color 0.3s;
}
.hero__scroll span { transition: transform 0.3s var(--ease); }
.hero__scroll:hover { border-color: var(--ink); }
.hero__scroll:hover span { transform: translateY(3px); }
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 3px;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(0.15) contrast(1.02);
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,11,12,0.35));
}

/* ---------- PROOF STRIP ---------- */
.proof { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.proof__list {
  list-style: none;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(30px, 4vw, 44px) clamp(22px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.proof__list li { font-size: 13px; color: var(--ink-dim); line-height: 1.5; }
.proof__list span {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

/* ---------- WORK ---------- */
.work { padding: clamp(80px, 12vw, 150px) 0 clamp(70px, 9vw, 120px); }
.work__grid {
  max-width: var(--max);
  margin: 54px auto 0;
  padding: 0 clamp(22px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
}
.rel__art {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 3px;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
}
.rel__art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.5s;
  filter: brightness(0.94) saturate(0.96);
}
.rel__art:not(.rel__art--static):hover img,
.rel:hover .rel__art img { transform: scale(1.035); filter: brightness(1) saturate(1); }
.rel__cert {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 4;
  pointer-events: none;
  background: rgba(11,11,12,0.72);
  backdrop-filter: blur(6px);
  color: var(--sand);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 2px;
  border: 1px solid var(--line-soft);
}

/* Play / preview button */
.rel__art[data-preview] { cursor: pointer; }
.rel__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s var(--ease), background 0.3s;
}
.rel__art:hover .rel__play,
.rel__art.is-playing .rel__play { opacity: 1; }
.rel__art.is-playing .rel__play { background: rgba(11,11,12,0.28); }
.rel__play::before {
  content: "";
  position: absolute;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(11,11,12,0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(236,233,227,0.55);
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
}
.rel__play:hover::before { transform: scale(1.07); background: rgba(11,11,12,0.66); }
.rel__play::after {
  content: "";
  position: relative;
  width: 0; height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.rel__art.is-playing .rel__play::after {
  width: 12px; height: 15px;
  border: 0;
  border-left: 4px solid #fff;
  border-right: 4px solid #fff;
  margin-left: 0;
}
.rel__art.is-playing .rel__play::before {
  border-color: var(--sand);
  animation: pulse 1.7s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(199,192,180,0); }
  50% { box-shadow: 0 0 0 7px rgba(199,192,180,0.09); }
}
.section-head__note {
  color: var(--ink-dim);
  font-size: 14px;
  font-weight: 300;
  margin-top: 16px;
}
.rel__meta { padding-top: 16px; }
.rel__meta h3 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.rel__feat {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--sand);
  vertical-align: middle;
  margin-left: 2px;
}
.rel__sub { color: var(--ink-dim); font-size: 13.5px; margin-top: 4px; }
.rel__sub span { color: var(--ink-faint); }
.rel__role {
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 12px;
}

.work__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: var(--max);
  margin: 48px auto 0;
  padding: 0 clamp(22px, 5vw, 56px);
  width: 100%;
  font-size: 14px;
  color: var(--ink-dim);
  transition: color 0.3s;
}
.work__all span { transition: transform 0.3s var(--ease); }
.work__all:hover { color: var(--ink); }
.work__all:hover span { transform: translate(2px, -2px); }

/* ---------- BRANDS ---------- */
.brands { padding: clamp(70px, 10vw, 130px) 0; border-top: 1px solid var(--line-soft); }
.brands__grid {
  max-width: var(--max);
  margin: 46px auto 0;
  padding: 0 clamp(22px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
}
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
}
.brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1) opacity(0.5);
  transition: filter 0.4s var(--ease), opacity 0.4s;
}
.brand img:hover { filter: grayscale(0) brightness(1) invert(0) opacity(1); }
.brand--text {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  color: var(--ink-dim);
  text-align: center;
  opacity: 0.75;
  transition: opacity 0.4s, color 0.4s;
}
.brand--text:hover { opacity: 1; color: var(--ink); }

/* ---------- VIDEO FEATURE ---------- */
.video-feature {
  max-width: var(--max);
  margin: clamp(50px, 7vw, 80px) auto 0;
  padding: 0 clamp(22px, 5vw, 56px);
}
.video-feature__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 720px;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid var(--line-soft);
  background: var(--bg-2);
  cursor: pointer;
}
.video-feature__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.9);
  transition: filter 0.4s var(--ease), transform 0.6s var(--ease);
}
.video-feature__frame:hover img { filter: brightness(0.6) saturate(0.85); transform: scale(1.02); }
.video-feature__frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-feature__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.video-feature__play::before {
  content: "";
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(11,11,12,0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(236,233,227,0.55);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.video-feature__frame:hover .video-feature__play::before { transform: scale(1.07); background: rgba(11,11,12,0.66); }
.video-feature__play::after {
  content: "";
  position: relative;
  width: 0; height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.video-feature__caption {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}
.video-feature__caption em { font-style: italic; color: var(--ink); }

/* ---------- ABOUT ---------- */
.about {
  border-top: 1px solid var(--line-soft);
  padding: clamp(70px, 10vw, 130px) clamp(22px, 5vw, 56px);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.about__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 3px;
}
.about__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.12);
}
.about__content .section-head__index { padding: 0; }
.about__lead {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.32;
  letter-spacing: -0.01em;
  margin: 20px 0 24px;
}
.about__content > p:not(.about__lead):not(.section-head__index) {
  color: var(--ink-dim);
  font-weight: 300;
  font-size: 16px;
}
.about__content > p + p { margin-top: 16px; }
.about__content strong { color: var(--ink); font-weight: 400; }

/* ---------- LIVE BAND STRIP ---------- */
.band { position: relative; }
.band img {
  width: 100%;
  height: clamp(280px, 46vw, 560px);
  object-fit: cover;
  object-position: center 14%;
  filter: brightness(0.82) saturate(0.92);
}
.band__caption {
  position: absolute;
  left: clamp(22px, 5vw, 56px);
  bottom: 24px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}

/* ---------- YOUTUBE ---------- */
.youtube {
  border-top: 1px solid var(--line-soft);
  padding: clamp(80px, 12vw, 150px) clamp(22px, 5vw, 56px);
}
.youtube__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
}
.youtube__title {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 300;
  font-size: clamp(34px, 5.6vw, 70px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 20px 0 22px;
}
.youtube__copy {
  color: var(--ink-dim);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  max-width: 460px;
}
.youtube__copy strong { color: var(--ink); font-weight: 400; }
.yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 32px;
  padding: 13px 24px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 15px;
  color: var(--ink);
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.yt-btn:hover { transform: translateY(-2px); border-color: var(--ink); }
.yt-btn__play {
  width: 0; height: 0;
  border-style: solid;
  border-width: 6px 0 6px 11px;
  border-color: transparent transparent transparent #e0463a;
}
.yt-btn__arrow { transition: transform 0.3s var(--ease); display: inline-block; }
.yt-btn:hover .yt-btn__arrow { transform: translate(2px, -2px); }
.youtube__stat {
  text-align: right;
  border-left: 1px solid var(--line-soft);
  padding-left: clamp(20px, 4vw, 52px);
}
.youtube__count {
  display: block;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 300;
  font-size: clamp(72px, 10vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.03em;
}
.youtube__label {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ---------- SERVICES ---------- */
.services { padding: clamp(80px, 12vw, 150px) 0 clamp(90px, 13vw, 170px); }
.services__grid {
  max-width: var(--max);
  margin: 44px auto 0;
  padding: 0 clamp(22px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
}
.svc { border-top: 1px solid var(--line); padding-top: 26px; }
.svc h3 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  margin-bottom: 16px;
}
.svc p { color: var(--ink-dim); font-weight: 300; font-size: 15px; line-height: 1.6; }

/* ---------- CONTACT ---------- */
.contact {
  border-top: 1px solid var(--line-soft);
  padding: clamp(90px, 14vw, 180px) clamp(22px, 5vw, 56px);
}
.contact__inner { max-width: var(--max); margin: 0 auto; }
.contact__title {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 300;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 22px 0 34px;
}
.contact__mail {
  display: inline-block;
  font-size: clamp(18px, 3vw, 30px);
  font-weight: 300;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  transition: border-color 0.35s, color 0.35s, letter-spacing 0.4s var(--ease);
}
.contact__mail:hover { border-color: var(--ink); letter-spacing: 0.005em; }

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: 28px clamp(22px, 5vw, 56px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink-faint);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__links { display: flex; gap: 22px; }
.footer__links a { color: var(--ink-dim); transition: color 0.25s; }
.footer__links a:hover { color: var(--ink); }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.rel.reveal { transition-duration: 0.7s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 120px; gap: 40px; }
  .hero__media { aspect-ratio: 16 / 10; order: -1; }
  .hero__media img { object-position: center 25%; }
  .about { grid-template-columns: 1fr; }
  .about__media { aspect-ratio: 16 / 11; max-height: 460px; }
  .proof__list { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .youtube__inner { grid-template-columns: 1fr; gap: 34px; }
  .youtube__stat { text-align: left; border-left: 0; padding-left: 0; border-top: 1px solid var(--line-soft); padding-top: 28px; }
  .brands__grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
}
@media (max-width: 480px) {
  .brands__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav__links a[href="#about"] { display: none; }
}
@media (max-width: 680px) {
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: 1fr; gap: 0; }
  .svc { border-top: none; border-bottom: 1px solid var(--line-soft); padding: 24px 0; }
  .svc:first-child { border-top: 1px solid var(--line); }
}
@media (max-width: 420px) {
  .work__grid { grid-template-columns: 1fr; gap: 30px; }
  .proof__list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
