/* Talk Amongst Yerselves black reveal site */
:root {
  --bg: #000000;
  --text: #ffffff;
  --soft: rgba(255,255,255,.72);
  --muted: rgba(255,255,255,.48);
  --line: rgba(255,255,255,.14);
  --panel: rgba(255,255,255,.045);
  --gold: #d9b46f;
}

* {
  box-sizing: border-box;
}

html {
  background: #000000;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #000000;
  color: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
}

main {
  background: #000000;
}

/* First screen: only the logo */
.intro {
  min-height: 100svh;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #000000;
  padding: 24px;
}

.logo-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  width: min(360px, 72vw);
  display: block;
}

.logo-button img {
  display: block;
  width: 100%;
  height: auto;
  background: #000000;
  opacity: 0;
  animation: logoIn 900ms ease forwards;
  transition: transform 420ms ease, opacity 420ms ease, filter 420ms ease;
}

.logo-button:focus-visible {
  outline: 1px solid rgba(255,255,255,.75);
  outline-offset: 14px;
  border-radius: 999px;
}

@keyframes logoIn {
  from {
    opacity: 0;
    transform: translateY(6px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Release screen */
.release {
  min-height: 100svh;
  min-height: 100vh;
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: clamp(18px, 3.5vw, 30px);
  padding: clamp(44px, 8vw, 86px) 0;
  text-align: center;
  background: #000000;
}

.album-link {
  display: block;
  width: min(320px, 76vw);
  border-radius: 18px;
  outline-offset: 8px;
}

.album-cover {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 22px 70px rgba(0,0,0,.88);
  transition: transform .42s ease, filter .42s ease, border-color .42s ease;
}

.title-block {
  max-width: 760px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5.4vw, 4.6rem);
  line-height: .94;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.service-grid {
  width: min(940px, 100%);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  min-height: 66px;
  display: grid;
  place-items: center;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  text-decoration: none;
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.service-card img {
  display: block;
  width: 100%;
  max-width: 176px;
  height: 34px;
  object-fit: contain;
  opacity: .9;
  transition: opacity .28s ease, transform .28s ease;
}

.social-follow {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 2px;
}

.social-label {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.social-card {
  width: min(260px, 100%);
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  text-decoration: none;
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.social-card img {
  display: block;
  width: 100%;
  max-width: 190px;
  height: 34px;
  object-fit: contain;
}

@media (hover:hover) and (pointer:fine) {
  .social-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,.34);
    background: rgba(255,255,255,.075);
  }
}

.contact {
  width: min(920px, calc(100% - 32px));
  margin: 24px auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  padding: clamp(24px, 5vw, 40px);
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(20px, 5vw, 40px);
  align-items: start;
}

.contact h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: .95;
  letter-spacing: -.06em;
}

.contact-form {
  display: grid;
  gap: 14px;
  text-align: left;
}

label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: .92rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  color: #fff;
  padding: 14px 15px;
  font: inherit;
  outline: none;
  transition: border-color .24s ease, background .24s ease, box-shadow .24s ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(217,180,111,.72);
  background: rgba(255,255,255,.075);
  box-shadow: 0 0 0 4px rgba(217,180,111,.11);
}

button[type="submit"] {
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  padding: 14px 18px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform .25s ease, opacity .25s ease;
}

button[type="submit"]:disabled {
  opacity: .55;
  cursor: wait;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--soft);
  font-size: .92rem;
}

.footer {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 18px 4px 32px;
  color: var(--muted);
  font-size: .9rem;
}

.footer a {
  color: var(--soft);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
}

.release.is-visible .reveal {
  animation: rise .75s cubic-bezier(.2,.8,.2,1) forwards;
}

.release.is-visible .delay-1 {
  animation-delay: .12s;
}

.release.is-visible .delay-2 {
  animation-delay: .22s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover:hover) and (pointer:fine) {
  .logo-button:hover img {
    transform: scale(1.035);
    filter: drop-shadow(0 0 22px rgba(255,255,255,.12));
  }

  .album-link:hover .album-cover {
    transform: translateY(-4px) scale(1.012);
    filter: brightness(1.04);
    border-color: rgba(217,180,111,.32);
  }

  .service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,.34);
    background: rgba(255,255,255,.075);
  }

  .service-card:hover img {
    opacity: 1;
    transform: scale(1.025);
  }

  button[type="submit"]:hover {
    transform: translateY(-2px);
  }

}

@media (max-width: 760px) {
  .logo-button {
    width: min(300px, 74vw);
  }

  .release {
    width: min(100% - 24px, 920px);
    gap: 20px;
    padding: 44px 0;
  }

  .album-link {
    width: min(285px, 76vw);
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .logo-button {
    width: min(260px, 78vw);
  }

  .album-link {
    width: min(260px, 78vw);
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .service-card {
    min-height: 56px;
  }

  .service-card img {
    max-width: 160px;
  }

  .contact,
  .footer {
    width: min(100% - 22px, 920px);
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .logo-button img,
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* fix service logos sizing */
.service-card img {
  width: auto !important;
  max-width: 200px;
  height: 36px;
  object-fit: contain;
}

/* subtle logo fade on scroll */
.intro.scrolled .logo-button img {
  opacity: 0;
  transform: scale(0.95);
  transition: all 500ms ease;
}


/* Final cinematic enhancement: subtle, restrained, music-native */
.intro {
  overflow: hidden;
  position: relative;
}

.logo-button img {
  will-change: transform, opacity, filter;
}

/* Logo gently recedes as the curtain lifts */
.intro.scrolled .logo-button img {
  opacity: 0;
  transform: scale(0.88) translateY(-18px);
  filter: blur(1px);
}

/* Release gets a low-opacity ambient waveform, almost subliminal */
.release {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.release::before {
  content: "";
  position: absolute;
  inset: 8% -10%;
  z-index: -2;
  opacity: 0.16;
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(255,255,255,0.02) 5%,
      transparent 10%,
      rgba(255,255,255,0.05) 14%,
      transparent 18%,
      rgba(217,180,111,0.10) 22%,
      transparent 26%,
      rgba(255,255,255,0.04) 31%,
      transparent 36%,
      rgba(217,180,111,0.08) 41%,
      transparent 46%,
      rgba(255,255,255,0.05) 51%,
      transparent 56%,
      rgba(217,180,111,0.09) 61%,
      transparent 67%,
      rgba(255,255,255,0.04) 72%,
      transparent 78%,
      rgba(217,180,111,0.06) 84%,
      transparent 100%);
  filter: blur(18px);
  transform: skewY(-5deg);
  animation: waveformDrift 14s ease-in-out infinite alternate;
}

.release::after {
  content: "";
  position: absolute;
  inset: 18% 6%;
  z-index: -1;
  opacity: 0.18;
  background: radial-gradient(circle at 50% 42%, rgba(217,180,111,0.18), transparent 34%);
  filter: blur(24px);
  animation: albumAura 7s ease-in-out infinite alternate;
}

.album-link {
  perspective: 1000px;
}

.album-cover {
  will-change: transform, opacity, filter;
}

/* Album arrives with a little depth, not a gimmick */
.release.is-visible .album-cover {
  animation: albumDepthIn 900ms cubic-bezier(.16,.84,.24,1) both;
}

@keyframes albumDepthIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.965) rotateX(4deg);
    filter: brightness(.82) blur(1px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
    filter: brightness(1) blur(0);
  }
}

@keyframes waveformDrift {
  from {
    transform: translateX(-2%) skewY(-5deg) scaleX(1);
  }
  to {
    transform: translateX(2%) skewY(-5deg) scaleX(1.04);
  }
}

@keyframes albumAura {
  from {
    opacity: .12;
    transform: scale(.96);
  }
  to {
    opacity: .22;
    transform: scale(1.04);
  }
}

@media (hover:hover) and (pointer:fine) {
  .album-link:hover .album-cover {
    transform: translateY(-6px) scale(1.018) rotateX(1deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .release::before,
  .release::after {
    animation: none !important;
  }

  .release.is-visible .album-cover {
    animation: none !important;
  }
}


/* Final SoundCloud/service-logo fix: never let logo art overflow its card */
.service-card {
  overflow: hidden;
}

.service-card img {
  display: block !important;
  width: 100% !important;
  max-width: 154px !important;
  height: 34px !important;
  object-fit: contain !important;
}

@media (min-width: 1100px) {
  .service-card img {
    max-width: 164px !important;
  }
}

@media (max-width: 760px) {
  .service-card img {
    max-width: 180px !important;
  }
}


/* SoundCloud is icon-only to avoid wordmark clipping */
.service-card[href*="soundcloud.com"] img {
  max-width: 92px !important;
  height: 38px !important;
}


/* Official logo sizing and placement */
.logo-button {
  width: min(96vw, 820px) !important;
}

/* Embedded YouTube video section */
.video-section {
  width: min(780px, 100%);
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 12px;
}

.video-section h2 {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.035);
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
}

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

.video-note {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.video-note a {
  color: var(--soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.22);
}

@media (hover:hover) and (pointer:fine) {
  .video-note a:hover {
    color: #fff;
    border-color: rgba(255,255,255,.55);
  }
}

/* Footer logo treatment */
.footer {
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 14px !important;
}

.footer-logo-box {
  width: min(180px, 42vw);
  padding: 12px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 50px rgba(255,255,255,.06);
}

.footer-logo-box img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

@media (max-width: 520px) {
  .logo-button {
    width: 94vw !important;
  }

  .video-section {
    width: 100%;
  }

  .video-frame {
    border-radius: 16px;
  }

  .footer-logo-box {
    width: min(160px, 48vw);
  }
}

/* --- SPACING RHYTHM SYSTEM --- */

/* tighter grouping for release + services */
.release {
  gap: clamp(16px, 2.5vw, 22px) !important;
  padding-top: clamp(48px, 8vw, 72px) !important;
  padding-bottom: clamp(24px, 4vw, 40px) !important;
}

/* services feel like one unit */
.service-grid {
  margin-top: 6px;
  margin-bottom: 10px;
}

/* VIDEO = breath + focus */
.video-section {
  margin-top: clamp(36px, 6vw, 64px) !important;
  margin-bottom: clamp(28px, 5vw, 48px) !important;
}

/* CONTACT = intentional entry */
.contact {
  margin-top: clamp(48px, 7vw, 80px) !important;
  margin-bottom: clamp(32px, 5vw, 56px) !important;
}

/* INSTAGRAM = light touch */
.social-follow {
  margin-top: 10px !important;
  margin-bottom: clamp(36px, 6vw, 60px) !important;
}

/* FOOTER = quiet landing */
.footer {
  margin-top: 10px !important;
  padding-bottom: 40px !important;
}

/* subtle video drop */
.video-frame {
  margin-top: 6px;
}


/* Instagram follow section restored */
.social-follow {
  width: min(920px, calc(100% - 32px));
  margin: 10px auto clamp(36px, 6vw, 60px);
  display: grid;
  justify-items: center;
}

.social-card {
  width: min(260px, 100%);
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  text-decoration: none;
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.social-card img {
  display: block;
  width: 100%;
  max-width: 190px;
  height: 34px;
  object-fit: contain;
}

@media (hover:hover) and (pointer:fine) {
  .social-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,.34);
    background: rgba(255,255,255,.075);
  }
}


/* Contact form removed: social links now handle reach-out paths. */


/* FINAL MOBILE SPLASH + FOOTER FIX */
.intro {
  background: #000000 !important;
}

.logo-button {
  width: min(98vw, 900px) !important;
}

.logo-button img {
  width: 100% !important;
  height: auto !important;
  background: #000000 !important;
}

/* Keep footer black, only the logo box is white */
.footer {
  width: min(920px, calc(100% - 32px)) !important;
  margin: 0 auto !important;
  padding: 18px 4px 36px !important;
  background: #000000 !important;
  color: var(--muted) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  text-align: center !important;
}

.footer-logo-box {
  width: min(170px, 42vw) !important;
  padding: 10px !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  border: 0 !important;
  box-shadow: none !important;
}

.footer-logo-box img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 12px !important;
}

@media (max-width: 760px) {
  .logo-button {
    width: 96vw !important;
  }
}

@media (max-width: 520px) {
  .intro {
    padding: 10px !important;
  }

  .logo-button {
    width: 98vw !important;
  }

  .footer-logo-box {
    width: min(150px, 46vw) !important;
    padding: 9px !important;
  }
}

@media (max-width: 390px) {
  .logo-button {
    width: 100vw !important;
  }
}


/* FINAL CLEAN MOBILE + FOOTER PASS */
html,
body,
main,
.intro,
.release {
  background: #000000 !important;
}

.intro {
  min-height: 100svh !important;
  padding: 0 !important;
}

.logo-button {
  width: min(104vw, 980px) !important;
  max-width: none !important;
}

.logo-button img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  background: #000000 !important;
}

@media (max-width: 760px) {
  .logo-button {
    width: 108vw !important;
  }
}

@media (max-width: 520px) {
  .logo-button {
    width: 116vw !important;
  }
}

@media (max-width: 390px) {
  .logo-button {
    width: 122vw !important;
  }
}

/* Clean single Instagram placement */
.social-follow {
  width: min(920px, calc(100% - 32px)) !important;
  margin: clamp(26px, 5vw, 52px) auto clamp(26px, 5vw, 48px) !important;
  display: grid !important;
  justify-items: center !important;
  background: #000000 !important;
}

.social-card {
  width: min(260px, 100%) !important;
  min-height: 58px !important;
  display: grid !important;
  place-items: center !important;
  padding: 12px 18px !important;
  border: 1px solid var(--line) !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.035) !important;
  text-decoration: none !important;
}

.social-card img {
  display: block !important;
  width: 100% !important;
  max-width: 190px !important;
  height: 34px !important;
  object-fit: contain !important;
}

/* Footer: black page, small white logo box only */
.footer {
  width: min(920px, calc(100% - 32px)) !important;
  margin: 0 auto !important;
  padding: 8px 4px 40px !important;
  background: #000000 !important;
  color: var(--muted) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  text-align: center !important;
}

.footer-logo-box {
  width: min(132px, 38vw) !important;
  padding: 10px !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  border: 0 !important;
  box-shadow: none !important;
}

.footer-logo-box img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 10px !important;
}


/* --- BALANCED LOGO SIZE (desktop vs mobile) --- */

/* Desktop: keep it large but contained */
@media (min-width: 900px) {
  .logo-button {
    width: min(70vw, 820px) !important;
  }
}

/* Tablet */
@media (max-width: 899px) and (min-width: 600px) {
  .logo-button {
    width: min(85vw, 760px) !important;
  }
}

/* Mobile: go big */
@media (max-width: 599px) {
  .logo-button {
    width: 105vw !important;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .logo-button {
    width: 112vw !important;
  }
}
