@charset "UTF-8";

/* =====================================================
   STUART MANSFIELD — CINEMATIC V4
   A non-destructive design layer over the V3 website.
===================================================== */

:root {
  --v4-black: #111518;
  --v4-charcoal: #1b2228;
  --v4-panel: #151311;
  --v4-cream: #f2e7d6;
  --v4-stone: #bfb6aa;
  --v4-gold: #c89b45;
  --v4-line: rgba(200, 155, 69, .4);
  --v4-shadow: 0 28px 70px rgba(0, 0, 0, .34);
}

body {
  background: var(--v4-black);
  color: var(--v4-cream);
}

.wrap {
  width: min(1360px, 88%);
}

/* Header
----------------------------------------------------- */
.site-header,
.site-header.scrolled {
  background: rgba(17, 21, 24, .96);
  border-bottom: 1px solid var(--v4-line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.scrolled .brand span,
.site-header.scrolled .desktop-nav a,
.site-header.scrolled .language-switcher,
.site-header:not(.scrolled) .brand span,
.site-header:not(.scrolled) .desktop-nav a,
.site-header:not(.scrolled) .language-switcher {
  color: var(--v4-cream);
}

.site-header.scrolled .desktop-nav a.active,
.site-header:not(.scrolled) .desktop-nav a.active {
  color: var(--v4-gold) !important;
}

.header-inner {
  width: min(1480px, 92%);
  height: 92px;
}

.brand {
  color: var(--v4-cream);
  font-size: clamp(26px, 2.1vw, 38px);
  letter-spacing: .01em;
}

.brand img {
  width: 56px;
  height: 56px;
  border: 1px solid var(--v4-gold);
}

.desktop-nav {
  gap: clamp(20px, 2.1vw, 38px);
}

.desktop-nav a {
  position: relative;
  padding: 14px 0;
  color: #ddd4c8;
  font-size: 10px;
  letter-spacing: .24em;
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 5px;
  left: 50%;
  height: 1px;
  background: var(--v4-gold);
  content: "";
  transition: right .25s ease, left .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  right: 0;
  left: 0;
}

.header-tools {
  gap: 14px;
}

.language-switcher {
  color: var(--v4-stone);
}

.header-listen {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid var(--v4-gold);
  border-radius: 2px;
  color: var(--v4-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease;
}

.header-listen:hover,
.header-listen:focus-visible {
  outline: none;
  background: var(--v4-gold);
  color: var(--v4-black);
}

/* Cinematic split hero
----------------------------------------------------- */
.cinematic-hero {
  position: relative;
  display: grid;
  min-height: min(790px, 92vh);
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  padding-top: 92px;
  padding-right: clamp(30px, 3vw, 56px);
  overflow: hidden;
  border-bottom: 1px solid var(--v4-line);
  background:
    radial-gradient(circle at 8% 18%, rgba(200, 155, 69, .08), transparent 26%),
    linear-gradient(115deg, #121619 0%, #171c20 52%, #111416 100%);
}

.cinematic-hero::before {
  position: absolute;
  inset: 92px 50% 0 0;
  background-image: linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to right, rgba(0, 0, 0, .55), transparent);
}

.cinematic-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 790px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 145px) clamp(42px, 6.2vw, 118px);
}

.cinematic-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 28px;
  color: var(--v4-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.cinematic-eyebrow::before {
  width: 44px;
  height: 1px;
  background: var(--v4-gold);
  content: "";
}

.cinematic-hero h1 {
  margin: 0;
  color: var(--v4-cream);
  font-family: var(--font-heading);
  font-size: clamp(68px, 6.2vw, 118px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .82;
}

.cinematic-hero h1 em {
  color: var(--v4-gold);
  font-weight: 500;
}

.cinematic-lead {
  max-width: 650px;
  margin: 38px 0 0;
  color: #d3cbc0;
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.75;
}

.cinematic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.cinematic-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 24px;
  border: 1px solid var(--v4-gold);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.cinematic-button-primary {
  background: var(--v4-gold);
  color: var(--v4-black);
}

.cinematic-button-secondary {
  background: rgba(255, 255, 255, .025);
  color: var(--v4-cream);
}

.cinematic-button:hover,
.cinematic-button:focus-visible {
  outline: none;
  transform: translateY(-3px);
}

.cinematic-button-secondary:hover,
.cinematic-button-secondary:focus-visible {
  background: var(--v4-cream);
  color: var(--v4-black);
}

.cinematic-hero-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.cinematic-portrait-frame {
  position: absolute;
  inset: 36px 0 0;
  overflow: hidden;
  border-top: 1px solid var(--v4-gold);
  border-right: 1px solid var(--v4-gold);
  border-left: 1px solid var(--v4-gold);
  border-radius: 0;
  background: #202428;
  box-shadow: var(--v4-shadow);
}

.cinematic-portrait-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 21, 24, .55), transparent 28%), linear-gradient(0deg, rgba(13, 15, 16, .48), transparent 45%);
  content: "";
  pointer-events: none;
}

.cinematic-hero-video,
.cinematic-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: sepia(.16) contrast(1.08) brightness(.82);
  transform: scale(1.02);
}

.cinematic-hero-video { z-index: 1; }
.cinematic-video-poster { z-index: 2; opacity: 1; pointer-events: none; transition: opacity .45s ease; }
.cinematic-portrait-frame.is-playing .cinematic-video-poster { opacity: 0; }

.cinematic-photo-caption {
  position: absolute;
  right: 34px;
  bottom: 26px;
  z-index: 2;
  margin: 0;
  padding: 12px 17px;
  border-left: 2px solid var(--v4-gold);
  background: rgba(11, 13, 14, .78);
  color: var(--v4-cream);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.cinematic-ribbon {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3.5vw, 62px);
  padding: 18px 5%;
  border-bottom: 1px solid var(--v4-line);
  background: #171d21;
  color: #d5c9b8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-align: center;
  text-transform: uppercase;
}

.cinematic-ribbon b {
  color: var(--v4-gold);
}

/* Global editorial section treatment
----------------------------------------------------- */
.section,
.creative,
.contact {
  position: relative;
}

.about {
  padding-block: clamp(90px, 10vw, 160px);
  background: var(--v4-cream);
  color: #2c2520;
}

.about-grid {
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
}

.about-image {
  position: relative;
  padding: 18px 0 0 18px;
}

.about-image::before {
  position: absolute;
  inset: 0 18px 18px 0;
  border: 1px solid var(--v4-gold);
  content: "";
}

.about-image img {
  position: relative;
  filter: sepia(.08) contrast(1.05);
  box-shadow: var(--v4-shadow);
}

.about-copy .kicker,
.song-previews .kicker,
.release-carousel .kicker,
.video-showcase .kicker,
.creative .kicker,
.contact .kicker,
.sync .kicker {
  color: var(--v4-gold);
  letter-spacing: .28em;
}

.about-copy h2,
.song-previews h2,
.release-carousel h2,
.section-head h2,
.sync h2,
.contact h2 {
  letter-spacing: -.035em;
}

.music {
  padding-block: clamp(90px, 9vw, 140px);
  background:
    radial-gradient(circle at 50% 20%, rgba(200, 155, 69, .055), transparent 32%),
    var(--v4-charcoal);
}

.song-previews {
  box-shadow: var(--v4-shadow);
}

.song-preview-layout,
.song-current-release,
.song-preview-list {
  border-color: var(--v4-line) !important;
}

.release-carousel {
  padding-top: clamp(40px, 5vw, 76px);
  border-top: 1px solid rgba(200, 155, 69, .18);
}

.song-card {
  border-color: var(--v4-line) !important;
  background: var(--v4-panel) !important;
}

.song-card h3 {
  color: var(--v4-cream);
}

.release-arrow,
.video-prev,
.video-next {
  border-radius: 2px !important;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .26);
}

.video-showcase {
  padding-block: clamp(90px, 9vw, 140px);
  background: #171d21 !important;
}

.video-card {
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.sync-grid {
  min-height: 760px;
  background: var(--v4-cream);
}

.sync-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 150px);
}

.sync-copy h2 {
  max-width: 760px;
  font-size: clamp(48px, 5.4vw, 90px);
  line-height: .98;
}

.sync-image {
  position: relative;
}

.sync-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(242, 231, 214, .2), transparent 30%);
  content: "";
}

.creative {
  padding-block: clamp(90px, 9vw, 150px);
  background: #20272c;
}

.feature-grid {
  gap: 22px;
}

.feature-grid article {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4vw, 62px);
  border: 1px solid var(--v4-line);
  background: linear-gradient(145deg, rgba(255, 255, 255, .025), transparent);
  transition: transform .25s ease, border-color .25s ease;
}

.feature-grid article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 55px;
  height: 2px;
  background: var(--v4-gold);
  content: "";
}

.feature-grid article:hover {
  border-color: var(--v4-gold);
  transform: translateY(-7px);
}

.feature-icon {
  color: var(--v4-gold);
}

.contact {
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-block: 1px solid var(--v4-line);
  background:
    linear-gradient(rgba(12, 15, 17, .86), rgba(12, 15, 17, .92)),
    url("assets/stuart-mansfield-studio-deep-in-thought.jpg") center 34% / cover;
}

.contact::before {
  position: absolute;
  width: min(760px, 82vw);
  height: min(760px, 82vw);
  border: 1px solid rgba(200, 155, 69, .22);
  border-radius: 50%;
  content: "";
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding-block: 100px;
  text-align: center;
}

.contact h2 {
  color: var(--v4-cream);
  font-size: clamp(56px, 7vw, 108px);
  line-height: .92;
}

.contact .button {
  border: 1px solid var(--v4-gold);
  background: var(--v4-gold);
  color: var(--v4-black);
}

.sm-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--v4-gold), transparent);
  opacity: .55;
}

.sm-footer {
  border-top: 0;
  background: #0f1214;
}

/* Tablet
----------------------------------------------------- */
@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
  }

  .menu-button span {
    width: 28px;
    height: 2px;
    margin: 3px auto;
    background: var(--v4-cream) !important;
  }

  .header-listen {
    display: none;
  }

  .mobile-nav {
    top: 92px;
    border-bottom: 1px solid var(--v4-line);
    background: rgba(17, 21, 24, .98);
    color: var(--v4-cream);
  }

  .mobile-nav a {
    color: var(--v4-cream);
  }

  .cinematic-hero {
    min-height: 700px;
    grid-template-columns: .9fr 1.1fr;
    padding-right: 24px;
  }

  .cinematic-hero-copy {
    padding-inline: 7vw 4vw;
  }

  .cinematic-hero h1 {
    font-size: clamp(60px, 7.6vw, 88px);
  }

  .sync-grid {
    min-height: auto;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .release-carousel .song-grid.song-carousel {
    gap: 24px !important;
  }

  .release-carousel .song-grid.song-carousel .song-card {
    flex: 0 0 calc((100% - 24px) / 2) !important;
    width: calc((100% - 24px) / 2) !important;
    min-width: calc((100% - 24px) / 2) !important;
    max-width: calc((100% - 24px) / 2) !important;
  }
}

/* Mobile
----------------------------------------------------- */
@media (max-width: 700px) {
  .header-inner {
    width: 90%;
    height: 78px;
  }

  .brand {
    font-size: 24px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .header-listen,
  .language-switcher {
    display: none;
  }

  .site-header .brand span,
  .site-header.scrolled .brand span,
  .site-header:not(.scrolled) .brand span {
    color: var(--v4-cream) !important;
  }

  .mobile-nav {
    top: 78px;
  }

  .cinematic-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 78px;
    padding-right: 0;
  }

  .cinematic-hero-copy {
    padding: 72px 7% 50px;
  }

  .cinematic-eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
  }

  .cinematic-hero h1 {
    font-size: clamp(57px, 17vw, 78px);
    line-height: .86;
  }

  .cinematic-lead {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.65;
  }

  .cinematic-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cinematic-button {
    width: 100%;
  }

  .cinematic-hero-media {
    min-height: 0;
    padding: 0 5% 52px;
  }

  .cinematic-portrait-frame {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 8 / 5;
    border-right: 1px solid var(--v4-gold);
    border-radius: 0;
  }

  .cinematic-hero-video,
  .cinematic-video-poster {
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  .cinematic-portrait-frame::after {
    background: linear-gradient(0deg, rgba(13, 15, 16, .52), transparent 45%);
  }

  .cinematic-photo-caption {
    right: 8%;
    bottom: 64px;
    max-width: 84%;
  }

  .cinematic-ribbon {
    flex-wrap: wrap;
    gap: 9px 14px;
    font-size: 8px;
    letter-spacing: .17em;
  }

  .about,
  .music,
  .video-showcase,
  .creative {
    padding-block: 78px;
  }

  .sync-copy {
    padding: 76px 7%;
  }

  .contact {
    min-height: 560px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-button,
  .feature-grid article,
  .desktop-nav a::after {
    transition: none;
  }
}
