.body {
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

/* General page */
html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color: #343434;
  max-width: 100%;
  min-height: 100%;
}

/* Clip horizontal bleed on content only — never on html (breaks position:fixed on mobile) */
main {
  overflow-x: clip;
  max-width: 100%;
}

/* CTA placeholder (default) */
.btn-contact {
  background: #8E8B82;
  border-color: transparent
}

/* Use Poppins font */
body,
h1,
h2,
h3,
h4,
h5,
p {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial
}

/* Highlight utilities (use site font stack; keep weight/color for emphasis) */
.font-highlight {
  font-family: inherit;
  font-weight: 700;
  color: #343434
}

.font-accent {
  color: #E9DCBE
}

/* Headings and titles: use the same simple site font (no decorative serif) */
.hero-title,
.songs-title,
.founders-title,
.featured-title,
.song-title {
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0;
}

.hero {
  padding: 4rem 0 6rem 0;
}

body.is-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("/static/images/hero-bg.f157c87eaf1a.png?v=4");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  z-index: -2;
}

body.is-home::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, var(--hero-overlay));
  z-index: -1;
  pointer-events: none;
}

.hero.full-bleed {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  min-height: calc(100vh - 180px);
  /* Adjust to fit within 100vh minus header */
  display: flex;
  align-items: center;
  background: none;
}

/* Configurable overlay to lighten/dim the hero image. Adjust --hero-overlay to change opacity. */
.root-placeholder {}

:root {
  --hero-overlay: 0.6;
}

.hero-inner {
  gap: 3rem;
  position: relative;
  z-index: 1
}

.hero-left {
  flex: 1;
  max-width: 66%;
  padding: 4rem 2rem
}

.hero-right {
  display: block
}

.hero-art {
  max-width: 92%;
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(12, 18, 33, 0.06));
}

/* Hide hero art on small screens for layout parity */
@media (max-width: 768px) {
  .hero-right {
    display: none
  }
}

/* Offset for sticky navbar to prevent sections hiding behind it */
section {
  scroll-margin-top: 100px;
}

/* Home page: remove extra main/container padding so hero sits flush */
body.is-home main {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.is-home main > .container {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}

/* Nav and header tweaks to match design */
.nav-wrapper {
  position: sticky;
  top: 20px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 15px;
  margin-top: -15px; /* Pulls navbar closer to logo */
}

.premium-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.75rem;
  background: #4f4f4f;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(52, 52, 52, 0.28);
  width: fit-content;
  max-width: calc(100% - 2rem);
  padding: 10px 12px 10px 18px;
}

.premium-nav .premium-nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-cta-desktop {
  flex-shrink: 0;
  margin-left: 0.35rem;
}

.nav-logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.premium-nav .nav-link {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px !important;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.premium-nav .nav-link:hover {
  color: #ffffff;
}

/* Left-to-right underline animation */
.premium-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  width: calc(100% - 28px);
  height: 2px;
  background: #E9DCBE;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.premium-nav .nav-link:hover::after,
.premium-nav .nav-link.active::after {
  transform: scaleX(1);
}

.premium-nav .nav-link.active {
  color: #ffffff !important;
}

.premium-btn-cta {
  background: #E9DCBE;
  color: #343434;
  border-radius: 30px;
  padding: 10px 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.2;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  white-space: nowrap;
}

.premium-btn-cta:hover {
  background: #E9DCBE;
  color: #343434;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(233, 220, 190, 0.2);
}

/* =========================================================
   MOBILE HAMBURGER & SLIDING SIDEBAR (tablet/mobile only)
   Hidden completely on desktop — desktop uses .nav-wrapper pill nav.
========================================================= */
.mobile-nav-fixed-layer,
.mobile-nav-toggle,
.mobile-sidebar,
.mobile-sidebar-overlay {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Viewport-locked shell for the hamburger — fixed to screen, not document scroll */
.mobile-nav-fixed-layer {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.mobile-nav-toggle {
  width: 48px;
  height: 48px;
  margin: 0;
  border: 1px solid rgba(233, 220, 190, 0.35);
  border-radius: 50%;
  background: rgba(52, 52, 52, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(52, 52, 52, 0.25);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.mobile-nav-toggle:hover {
  background: rgba(52, 52, 52, 0.95);
}

.mobile-nav-toggle.is-active {
  background: rgba(52, 52, 52, 0.95);
  z-index: 1000002 !important;
}

.hamburger-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 16px;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #E9DCBE;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease,
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
}

.hamburger-line:nth-child(1) {
  top: 0;
}

.hamburger-line:nth-child(2) {
  top: 7px;
}

.hamburger-line:nth-child(3) {
  top: 14px;
}

.mobile-nav-toggle.is-active .hamburger-line:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.mobile-nav-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.mobile-nav-toggle.is-active .hamburger-line:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.mobile-sidebar-overlay {
  background: rgba(52, 52, 52, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-sidebar-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-sidebar {
  width: min(320px, 85vw);
  height: 100%;
  height: 100dvh;
  background: rgba(52, 52, 52, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(233, 220, 190, 0.25);
  box-shadow: -12px 0 40px rgba(52, 52, 52, 0.3);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-sidebar.is-open {
  transform: translateX(0);
}

@keyframes sidebarLinkIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-sidebar.is-open .mobile-nav-list li .mobile-nav-link {
  animation: sidebarLinkIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

.mobile-sidebar.is-open .mobile-nav-list li:nth-child(1) .mobile-nav-link { animation-delay: 0.1s; }
.mobile-sidebar.is-open .mobile-nav-list li:nth-child(2) .mobile-nav-link { animation-delay: 0.15s; }
.mobile-sidebar.is-open .mobile-nav-list li:nth-child(3) .mobile-nav-link { animation-delay: 0.2s; }
.mobile-sidebar.is-open .mobile-nav-list li:nth-child(4) .mobile-nav-link { animation-delay: 0.25s; }
.mobile-sidebar.is-open .mobile-nav-list li:nth-child(5) .mobile-nav-link { animation-delay: 0.3s; }
.mobile-sidebar.is-open .mobile-nav-list li:nth-child(6) .mobile-nav-link { animation-delay: 0.35s; }

.mobile-sidebar.is-open .mobile-sidebar-cta {
  animation: sidebarLinkIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.42s forwards;
  opacity: 0;
}

.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(233, 220, 190, 0.12);
}

.mobile-sidebar-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.mobile-sidebar-close {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(233, 220, 190, 0.35);
  border-radius: 50%;
  background: rgba(52, 52, 52, 0.85);
  color: #E9DCBE;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: background 0.25s ease;
}

.mobile-sidebar-close svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  pointer-events: none;
}

.mobile-sidebar-close:hover,
.mobile-sidebar-close:focus-visible {
  background: rgba(52, 52, 52, 0.95);
}

.mobile-sidebar-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-list li {
  margin-bottom: 0.25rem;
}

.mobile-nav-link {
  display: block;
  color: rgba(243, 243, 243, 0.85);
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.85rem 0.5rem;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease, padding-left 0.3s ease;
  border-bottom: 1px solid rgba(233, 220, 190, 0.08);
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #E9DCBE;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #E9DCBE;
  padding-left: 0.75rem;
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
  width: 40px;
}

.mobile-sidebar-cta {
  margin-top: auto;
  padding-top: 2rem;
  width: 100%;
  text-align: center;
  display: block;
}

@media (max-width: 991.98px) {
  section {
    scroll-margin-top: 80px;
  }

  .nav-wrapper {
    display: none !important;
  }

  .mobile-nav-fixed-layer {
    display: block !important;
    visibility: visible !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 2147483646 !important;
    pointer-events: none !important;
    padding: max(20px, env(safe-area-inset-top, 0px)) max(20px, env(safe-area-inset-right, 0px)) 0 0 !important;
    margin: 0 !important;
    transform: none !important;
    translate: none !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .mobile-nav-fixed-layer .mobile-nav-toggle {
    display: flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    margin: 0 !important;
    transform: none !important;
    translate: none !important;
  }

  .mobile-sidebar-overlay {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1000000 !important;
    visibility: hidden;
    pointer-events: none;
  }

  .mobile-sidebar-overlay.is-open {
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-sidebar {
    display: flex !important;
    visibility: visible !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    bottom: 0 !important;
    z-index: 1000001 !important;
    pointer-events: auto;
  }

  html.mobile-nav-open,
  body.mobile-nav-open {
    overflow: hidden;
    height: 100%;
  }

  body.mobile-nav-open {
    touch-action: none;
  }

  /* Hide fixed hamburger while sidebar is open — avoids double X/circle overlap */
  html.mobile-nav-open .mobile-nav-fixed-layer {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .top-logo-container + br {
    display: none;
  }

  /* Prevent 100vw full-bleed sections from causing horizontal scroll */
  .about-cinematic,
  .verticals-cinematic,
  .hero.full-bleed {
    width: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Desktop/laptop: horizontal pill navbar — mobile menu fully disabled */
@media (min-width: 992px) {
  .nav-wrapper {
    display: flex !important;
  }

  .premium-nav {
    padding: 10px 14px 10px 20px;
    gap: 1rem;
  }

  .premium-nav .premium-nav-menu {
    gap: 0.25rem;
  }

  .premium-nav .nav-link {
    font-size: 0.95rem;
    padding: 8px 16px !important;
  }

  .premium-nav .nav-link::after {
    left: 16px;
    width: calc(100% - 32px);
  }

  .nav-cta-desktop {
    margin-left: 0.5rem;
  }

  .mobile-nav-fixed-layer,
  .mobile-nav-toggle,
  .mobile-sidebar,
  .mobile-sidebar-overlay {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  html.mobile-nav-open,
  body.mobile-nav-open {
    overflow: visible;
    height: auto;
    touch-action: auto;
  }
}

/* Logo */
.site-logo {
  height: 140px;
  max-width: 360px;
  width: auto;
  display: block
}

/* When logo appears near large content blocks (about/focus areas), make it more prominent */
.about-box.large .site-logo,
.songs-section .site-logo {
  height: 180px;
  max-width: 420px;
  width: auto;
  margin: 0 auto 1rem;
  display: block;
}

/* Top logo (above navbar) */
.top-brand-logo {
  height: 160px;
  width: auto;
  object-fit: contain;
  margin-top: -15px;
  margin-bottom: -15px;
}

/* Slightly reduce rotation on small screens */
@media (max-width: 768px) {
  .top-brand-logo {
    height: 100px;
  }
  .top-logo-img {
    transform: rotate(-4deg);
    width: 70%;
  }

  .site-logo {
    height: 110px;
    max-width: 280px
  }
}

/* Navbar logo (small, not rotated) */
.nav-logo {
  height: 48px;
  width: auto;
  display: inline-block
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem
}

/* Hero text color contrast on top of image */
.hero-title {
  color: #343434
}

.hero-sub {
  color: #343434
}

.hero-small-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #343434;
  margin-bottom: 0.2rem;
  letter-spacing: 0.5px;
}

.hero-large-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 4.8rem;
  font-weight: 800;
  color: #343434;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-underline {
  width: 80px;
  height: 4px;
  background-color: #343434;
  border: none;
  margin: 0 0 2rem 0;
  opacity: 1;
}

.hero-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  color: #343434;
  line-height: 1.6;
  max-width: 650px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-btn-explore {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background-color: #343434;
  color: #F3F3F3;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid #343434;
}

.hero-btn-explore:hover {
  background-color: transparent;
  color: #343434;
}

.hero-title .brand {
  font-weight: 600;
  display: inline;
  color: #343434
}

.hero-title .lead {
  display: block;
  font-weight: 300;
  color: #343434;
  margin-top: 0.6rem;
  font-size: 1.25rem;
  line-height: 1.45
}

.hero-sub {
  font-size: 1.125rem;
  color: #343434;
  line-height: 1.6
}

.btn-cta,
a.btn-cta {
  background: #E9DCBE !important;
  color: #343434 !important;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 0;
  display: inline-block;
  text-decoration: none;
}

.btn-cta:hover,
a.btn-cta:hover {
  background: #E9DCBE !important
}

.btn-cta:active,
.btn-cta:focus,
a.btn-cta:active,
a.btn-cta:focus {
  outline: none;
  box-shadow: none
}

.hero-meta {
  align-items: center
}

.likes {
  display: flex;
  align-items: center
}

.likes-circle {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #F3F3F3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700
}

.likes-label {
  font-size: .8rem;
  color: #8E8B82;
  margin-left: .5rem
}

.social-dots .dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F3F3F3;
  opacity: .9
}

.hero-shape {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(12, 18, 33, 0.06)
}

/* Cards */
.card img {
  height: 200px;
  object-fit: cover
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .hero.full-bleed {
    width: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    min-height: calc(100dvh - 140px);
    padding: 3.5rem 0 3rem;
    align-items: flex-start;
  }

  .hero-inner {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 1.5rem 1.25rem 0;
  }

  .hero-left {
    max-width: 100%;
    width: 100%;
    padding: 1.5rem 0 2rem;
    text-align: left;
  }

  .hero-large-heading {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
    letter-spacing: -1px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    margin-bottom: 1.25rem;
  }

  .hero-small-heading {
    font-size: clamp(1.1rem, 4vw, 1.35rem);
  }

  .hero-description {
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
    max-width: 100%;
    margin-bottom: 2rem;
    line-height: 1.65;
  }

  .hero-underline {
    width: 60px;
    height: 3px;
    margin-bottom: 1.5rem;
  }

  .hero-btn-explore {
    padding: 12px 32px;
    font-size: 0.95rem;
  }

  body.is-home::before,
  body.is-home::after {
    height: 100dvh;
    background-size: cover;
    background-position: top center;
  }

  .top-brand-logo {
    height: 90px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .top-logo-container {
    padding-top: 0.75rem !important;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
  }

  .hero-shape {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .mobile-nav-fixed-layer .mobile-nav-toggle {
    width: 44px;
    height: 44px;
  }

  .hero.full-bleed {
    min-height: calc(100dvh - 120px);
    padding: 3rem 0 2.5rem;
  }

  .hero-inner {
    padding: 1.25rem 1rem 0;
  }

  .hero-left {
    padding-top: 1.25rem;
  }

  .hero-large-heading {
    font-size: clamp(1.85rem, 10vw, 2.75rem);
  }
}

/* Founders section */
.founders {
  background: radial-gradient(700px 300px at 50% 20%, rgba(99, 102, 241, 0.06), transparent 30%), radial-gradient(700px 300px at 20% 80%, rgba(96, 165, 250, 0.05), transparent 30%);
  padding: 6rem 0
}

.founders-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343434
}

.founder-card {
  background: rgba(243, 244, 246, 0.9);
  border-radius: 18px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 6px 24px rgba(12, 18, 33, 0.06);
}

.founder-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #8E8B82;
  margin-top: -60px
}

.founder-text {
  font-size: .95rem;
  color: #343434;
  padding: 0 1.25rem
}

.founder-name {
  font-weight: 600;
  color: #343434
}

.founder-role {
  background: #F3F3F3;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: .8rem;
  margin-top: 8px;
  color: #343434
}

.btn-circle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(12, 18, 33, 0.08);
  background: #F3F3F3
}

@media (max-width: 768px) {
  .founder-card {
    min-height: 280px
  }
}

/* Founder highlight (card horizontal) */
.founder-highlight {
  background: #F3F3F3;
  position: relative;
  overflow: hidden;
}

.founder-card-horizontal {
  background: #F3F3F3;
  border-radius: 40px;
  box-shadow: 0 16px 48px rgba(52, 52, 52, 0.06);
  position: relative;
  margin: 1rem auto;
  max-width: 1060px;
  border: 1px solid rgba(52, 52, 52, 0.04);
}

/* Background vertical splash matching testimonial */
.founder-card-horizontal::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 32%;
  background: #E9DCBE;
  /* Changed from orange to beige */
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  z-index: 0;
}

.fh-quote-mark {
  position: absolute;
  top: -30px;
  left: 28%;
  /* Positioned overlapping the edge of the beige area */
  font-family: Arial, sans-serif;
  font-size: 160px;
  line-height: 1;
  color: #343434;
  z-index: 10;
  font-weight: 800;
  opacity: 0.15;
}

.fh-left {
  z-index: 2;
  padding: 4rem 1rem;
}

.fh-image-wrapper {
  background: #F3F3F3;
  /* Changed from beige to grey */
  border-radius: 50%;
  width: 280px;
  height: 280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(52, 52, 52, 0.08);
  /* Adjusted shadow for grey */
}

.fh-avatar {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 50%;
}

.fh-right {
  z-index: 2;
}

.fh-content {
  position: relative;
  z-index: 2;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}

.fh-title {
  color: #343434;
  /* High contrast dark for readability since beige fails on white */
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.fh-stars .star {
  color: #E9DCBE;
  font-size: 1.4rem;
  margin-right: 4px;
}

.fh-copy {
  font-size: 1.1rem;
  color: #343434;
  line-height: 1.7;
}

.fh-name {
  color: #343434;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.5px;
}

@media (max-width: 900px) {
  .founder-card-horizontal::before {
    width: 100%;
    height: 35%;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 0;
  }

  .fh-image-wrapper {
    width: 220px;
    height: 220px;
  }

  .fh-quote-mark {
    left: 10%;
    top: -10px;
    font-size: 100px;
  }

  .fh-title {
    font-size: 2rem;
  }

  .fh-title br {
    display: none;
  }

  .fh-left {
    padding: 3rem 0 1rem;
  }

  .fh-content {
    text-align: center;
  }
}

/* Our Verticals */
.verticals-hero {
  background: linear-gradient(180deg, rgba(250, 248, 246, 1) 0%, rgba(245, 242, 238, 1) 100%);
}

.verticals-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #343434;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .verticals-title {
    font-size: 1.6rem;
  }
}

.verticals-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem
}

.verticals .grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap
}

.vertical-card {
  width: 360px;
  min-height: 260px;
  background: #F3F3F3;
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(52, 52, 52, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  z-index: 2
}

/* Stacked Card Vertical Carousel */
.vertical-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  width: 100%;
  margin: 2.5rem auto 0;
  position: relative;
  padding: 2rem;
}

.vc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #F3F3F3;
  border: 1px solid rgba(52, 52, 52, 0.06);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #343434;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(52, 52, 52, 0.08);
  z-index: 20;
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.vc-arrow.vc-left {
  left: -20px;
}

.vc-arrow.vc-right {
  right: -20px;
}

.vc-arrow:hover {
  background: #F3F3F3;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 12px 30px rgba(52, 52, 52, 0.12);
}

.vc-arrow:active {
  transform: translateY(-50%) scale(0.98);
}

.vc-viewport {
  width: 100%;
  max-width: 800px;
  overflow: visible;
  perspective: 1200px;
  position: relative;
  z-index: 5;
}

.vc-track {
  display: grid;
  width: 100%;
  transform-style: preserve-3d;
}

.vertical-card-single {
  grid-area: 1 / 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  transition: all 500ms cubic-bezier(.2, .9, .2, 1);
  opacity: 0;
  pointer-events: none;
  transform: translateX(0) scale(0.8);
}

.vertical-card-single.is-active {
  opacity: 1;
  transform: translateX(0) scale(1) translateZ(0);
  pointer-events: auto;
  z-index: 10;
  filter: brightness(1);
}

.vertical-card-single.is-prev {
  opacity: 1;
  transform: translateX(-45%) scale(0.85) translateZ(-50px);
  z-index: 5;
  filter: brightness(0.85);
  pointer-events: auto;
  cursor: pointer;
}

.vertical-card-single.is-next {
  opacity: 1;
  transform: translateX(45%) scale(0.85) translateZ(-50px);
  z-index: 5;
  filter: brightness(0.85);
  pointer-events: auto;
  cursor: pointer;
}

/* Hidden back cards in carousel */
.vertical-card-single:not(.is-active):not(.is-prev):not(.is-next) {
  transform: translateX(0) scale(0.7);
  z-index: 1;
  opacity: 0;
}

.vertical-card-single .v-inner {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: auto;
  min-height: 100%;
  background: #F3F3F3;
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: 0 16px 50px rgba(52, 52, 52, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  border: 1px solid rgba(52, 52, 52, 0.04);
  transition: box-shadow 0.3s ease;
}

.vertical-card-single.is-active .v-inner {
  box-shadow: 0 24px 70px rgba(52, 52, 52, 0.15), 0 0 0 2px rgba(233, 220, 190, 0.3);
  border: 4px solid #343434 !important;
}

/* Decorative Corner Borders */
.vertical-card-single .v-inner::before {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 60px;
  height: 60px;
  border-top: 4px solid #343434;
  border-right: 4px solid #343434;
  border-top-right-radius: 24px;
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.3s ease;
}

.vertical-card-single .v-inner::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 60px;
  height: 60px;
  border-bottom: 4px solid #343434;
  border-left: 4px solid #343434;
  border-bottom-left-radius: 24px;
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.3s ease;
}

.vertical-card-single.is-active .v-inner::before,
.vertical-card-single.is-active .v-inner::after {
  display: none;
}

.vertical-card-single .v-image {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #F3F3F3, #F3F3F3);
  border-radius: 50%;
  overflow: hidden;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(52, 52, 52, 0.05);
}

.vertical-card-single .v-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.placeholder-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #8E8B82;
}

.vertical-card-single .v-title {
  font-weight: 700;
  color: #343434;
  margin: 0.5rem 0;
  font-size: 1.4rem;
  letter-spacing: -0.4px;
  height: 3.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vertical-card-single .v-desc {
  color: #8E8B82;
  max-width: 320px;
  margin: 0;
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .vertical-carousel {
    padding: 1rem 40px;
  }

  .vertical-carousel {
    padding: 1rem 40px;
  }

  .vertical-card-single.is-prev {
    transform: translateX(-35%) scale(0.85) translateZ(-50px);
    opacity: 0;
    pointer-events: none;
  }

  .vertical-card-single.is-next {
    transform: translateX(35%) scale(0.85) translateZ(-50px);
    opacity: 0;
    pointer-events: none;
  }

  .vertical-card-single .v-inner {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    max-width: 320px;
    height: auto;
    min-height: 100%;
  }

  .vertical-card-single .v-image {
    width: 130px;
    height: 130px;
    margin-bottom: 1rem;
    padding: 15px;
  }

  .vc-arrow {
    width: 44px;
    height: 44px;
  }

  .vc-arrow.vc-left {
    left: 5px;
  }

  .vc-arrow.vc-right {
    right: 5px;
  }
}

/* About page rounded card (large) */
.about-box.large {
  max-width: 1200px;
  border-radius: 56px;
  border: 1px solid rgba(12, 18, 33, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 30px rgba(12, 18, 33, 0.04);
  overflow: visible
}

/* Utility to ensure any background image covers the container fully without distortion */
.section-bg-cover {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-origin: border-box !important;
}

/* Apply cover behavior to common large containers so background images scale and center */
.about-box.large.section-bg-cover,
.hero.full-bleed.section-bg-cover,
.join-box.section-bg-cover,
.collab-box.section-bg-cover {
  /* no extra rules; presence of class triggers cover behavior */
}

.about-box.large .about-text {
  padding: 3.5rem 1rem
}

.about-box.large:before {
  /* decorative accent removed */
  display: none;
}

.about-box.large .about-text p {
  max-width: 900px;
  margin: 0 auto;
  color: #343434;
  font-size: 1rem
}

@media (max-width: 900px) {
  .about-box.large {
    border-radius: 28px;
    padding: 1rem
  }

  .about-box.large:before {
    display: none
  }
}

@media (max-width: 900px) {
  .vertical-card {
    width: 90%;
    padding: 2rem
  }

  .vertical-bg-accent {
    display: none
  }
}

/* Upcoming Movies - Geometric Stacked Layout */
.recent-movies {
  position: relative;
  background: #F3F3F3;
}

.upcoming-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #343434;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .upcoming-title {
    font-size: 1.6rem;
  }
}

/* Mobile: Upcoming Movies section */
@media (max-width: 991.98px) {
  #work.recent-movies {
    padding-top: 3.5rem !important;
    padding-bottom: 3rem !important;
    scroll-margin-top: 5rem;
  }

  #work.recent-movies .upcoming-movies-container {
    padding-left: 1.25rem;
    padding-right: 4.75rem;
  }

  #work.recent-movies .upcoming-title {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 2.5rem !important;
    padding-top: 0.75rem;
  }

  #work.recent-movies .upcoming-list {
    padding: 0.5rem 0 1.5rem;
  }

  #work.recent-movies .geom-item {
    gap: 1.75rem;
    padding: 0 0.25rem;
  }

  #work.recent-movies .geom-chapter {
    margin-bottom: 1.25rem;
  }

  #work.recent-movies .geom-main-title {
    font-size: clamp(1.2rem, 4.5vw, 1.5rem);
    line-height: 1.25;
    letter-spacing: -0.5px;
    padding-right: 0.5rem;
  }

  #work.recent-movies .geom-desc-box {
    padding: 1.25rem 1.125rem;
    border-radius: 10px;
  }

  #work.recent-movies .geom-desc {
    font-size: clamp(0.875rem, 3.2vw, 0.975rem);
    line-height: 1.75;
    margin-bottom: 1.25rem;
  }

  #work.recent-movies .geom-tags {
    gap: 0.625rem;
  }

  #work.recent-movies .geom-tag {
    font-size: 0.8rem;
    padding: 5px 12px;
  }

  #work.recent-movies .geom-image-col {
    padding: 0 0.25rem;
  }

  #work.recent-movies .geom-image-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }

  #work.recent-movies .geom-separator {
    margin: 2.25rem auto;
    width: 65%;
  }
}

@media (max-width: 480px) {
  #work.recent-movies {
    padding-top: 3rem !important;
  }

  #work.recent-movies .upcoming-movies-container {
    padding-left: 1rem;
    padding-right: 4.25rem;
  }

  #work.recent-movies .upcoming-title {
    margin-bottom: 2rem !important;
  }

  #work.recent-movies .geom-desc-box {
    padding: 1.125rem 1rem;
  }

  #work.recent-movies .geom-item {
    gap: 1.5rem;
  }
}

/* stacked list */
.upcoming-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.geom-separator {
  width: 60%;
  height: 1px;
  background: #F3F3F3;
  margin: 4rem auto;
  position: relative;
}

/* Center glow/block on the line */
.geom-separator::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 3px;
  background: #E9DCBE;
  border-radius: 2px;
}

.geom-item {
  display: flex;
  align-items: stretch;
  gap: 4rem;
  position: relative;
}

.geom-item.geom-right {
  flex-direction: row-reverse;
}

/* Text Content Area */
.geom-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.geom-chapter {
  margin-bottom: 2rem;
}

.geom-main-title {
  font-size: 2rem;
  font-weight: 800;
  color: #343434;
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: none;
  margin: 0;
  word-wrap: break-word;
}

.geom-desc-box {
  padding: 2.5rem;
  border: 1px solid #E9DCBE;
  /* very thin, subtle beige line border */
  border-radius: 8px;
  /* soft corner */
  background: #F3F3F3;
  position: relative;
}

/* Small decorative accent on the description boxes */
.geom-desc-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 20px;
  height: 2px;
  background: #343434;
}

.geom-desc {
  color: #8E8B82;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.geom-tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.geom-tag {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid #F3F3F3;
  color: #343434;
  border-radius: 4px;
  background: transparent;
}

/* Image Area */
.geom-image-col {
  flex: 0 0 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.geom-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
}

/* The geometric L-bracket or offset border frame */
.geom-frame {
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid #E9DCBE;
  border-radius: 8px;
  z-index: 1;
}

/* Alternative pattern for right-layout offset */
.geom-item.geom-right .geom-frame {
  top: -15px;
  left: 15px;
  right: -15px;
  bottom: 15px;
}

.geom-poster {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(52, 52, 52, 0.06);
}

@media (max-width: 900px) {
  .geom-item {
    flex-direction: column !important;
    gap: 2.5rem;
  }

  .geom-image-col {
    flex: 1;
    width: 100%;
  }

  .geom-text-col {
    flex: 1;
    width: 100%;
  }

  .geom-frame {
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
  }

  .geom-item.geom-right .geom-frame {
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    /* same on mobile */
  }

  .geom-desc-box {
    padding: 1.5rem;
  }

  .geom-main-title {
    font-size: 1.5rem;
  }

  .geom-separator {
    margin: 3rem auto;
  }
}

/* Phone only: Upcoming Movies horizontal card (poster left, details right) */
@media (max-width: 767.98px) {
  #work.recent-movies .geom-item,
  #work.recent-movies .geom-item.geom-right {
    flex-direction: row-reverse !important;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid #E9DCBE;
    border-radius: 12px;
    background: #FAFAFA;
    box-shadow: 0 4px 16px rgba(52, 52, 52, 0.06);
  }

  #work.recent-movies .geom-image-col {
    flex: 0 0 36%;
    width: 36%;
    max-width: 118px;
    min-width: 96px;
    padding: 0;
    align-self: stretch;
  }

  #work.recent-movies .geom-image-wrapper {
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 132px;
    margin: 0;
  }

  #work.recent-movies .geom-frame {
    display: none;
  }

  #work.recent-movies .geom-poster {
    width: 100%;
    height: 100%;
    min-height: 132px;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
    box-shadow: none;
  }

  #work.recent-movies .geom-text-col {
    flex: 1;
    min-width: 0;
    justify-content: flex-start;
  }

  #work.recent-movies .geom-chapter {
    margin-bottom: 0.4rem;
  }

  #work.recent-movies .geom-main-title {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
    line-height: 1.2;
    letter-spacing: -0.3px;
    padding-right: 0;
  }

  #work.recent-movies .geom-desc-box {
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
  }

  #work.recent-movies .geom-desc-box::before {
    display: none;
  }

  #work.recent-movies .geom-desc {
    font-size: clamp(0.72rem, 2.9vw, 0.82rem);
    line-height: 1.55;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  #work.recent-movies .geom-tags {
    gap: 0.35rem;
    flex-wrap: wrap;
  }

  #work.recent-movies .geom-tag {
    font-size: 0.68rem;
    padding: 3px 8px;
    line-height: 1.3;
  }

  #work.recent-movies .geom-separator {
    margin: 1.25rem auto;
    width: 50%;
  }
}

@media (max-width: 380px) {
  #work.recent-movies .geom-item,
  #work.recent-movies .geom-item.geom-right {
    gap: 0.6rem;
    padding: 0.65rem;
  }

  #work.recent-movies .geom-image-col {
    flex-basis: 34%;
    max-width: 104px;
    min-width: 88px;
  }

  #work.recent-movies .geom-desc {
    -webkit-line-clamp: 4;
  }
}

/* Our Songs - 3D Coverflow */
.songs-section {
  background: transparent;
  padding: 3rem 0 2.5rem 0;
  border-radius: 36px;
  margin-bottom: 2rem;
}

.songs-section .about-box.large {
  background: transparent;
  box-shadow: none;
  border: none;
  max-width: 1200px;
  padding: 0;
}

.songs-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #343434;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .songs-title {
    font-size: 1.6rem;
  }
}

.songs-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.songs-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.songs-viewport {
  width: 100%;
  max-width: 900px;
  height: 500px;
  overflow: visible;
  position: relative;
  perspective: 1200px;
  z-index: 5;
}

.songs-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.s-arrow {
  background: #343434;
  color: #F3F3F3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 8px 20px rgba(52, 52, 52, 0.15);
}

.s-arrow:hover {
  background: #343434;
  transform: translateY(-50%) scale(1.1);
}

.songs-carousel .s-left {
  left: 0;
}

.songs-carousel .s-right {
  right: 0;
}

/* 3D Coverflow Cards */
.songs-carousel .song-card {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 420px !important;
  height: auto !important;
  min-height: 380px !important;
  padding-bottom: 30px !important;
  border-radius: 16px !important;
  background: #343434 !important;
  /* Dark Grey/Black */
  box-shadow: 0 15px 45px rgba(52, 52, 52, 0.4) !important;
  padding: 16px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1), opacity 800ms ease, filter 800ms ease, background 800ms ease !important;
  transform-origin: center center !important;
  transform: translate(-50%, -50%) translateZ(-300px) rotateY(0) scale(0.8) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: 1 !important;
  filter: brightness(0.2) blur(4px) !important;
  border: 1px solid rgba(233, 220, 190, 0.1) !important;
}

/* Active Center Card */
.songs-carousel .song-card.is-active {
  transform: translate(-50%, -50%) translateZ(0) rotateY(0) scale(1) !important;
  opacity: 1 !important;
  z-index: 10 !important;
  pointer-events: auto !important;
  filter: brightness(1) blur(0px) !important;
  box-shadow: 0 25px 60px rgba(52, 52, 52, 0.4) !important;
}

/* 1st Neighbors */
.songs-carousel .song-card.is-prev {
  transform: translate(-95%, -50%) translateZ(-150px) rotateY(15deg) scale(0.9) !important;
  opacity: 0.8 !important;
  z-index: 8 !important;
  filter: brightness(0.6) blur(2px) !important;
}

.songs-carousel .song-card.is-next {
  transform: translate(-5%, -50%) translateZ(-150px) rotateY(-15deg) scale(0.9) !important;
  opacity: 0.8 !important;
  z-index: 8 !important;
  filter: brightness(0.6) blur(2px) !important;
}

/* 2nd Neighbors */
.songs-carousel .song-card.is-prev-2 {
  transform: translate(-140%, -50%) translateZ(-300px) rotateY(25deg) scale(0.8) !important;
  opacity: 0.5 !important;
  z-index: 5 !important;
  filter: brightness(0.35) blur(4px) !important;
}

.songs-carousel .song-card.is-next-2 {
  transform: translate(40%, -50%) translateZ(-300px) rotateY(-25deg) scale(0.8) !important;
  opacity: 0.5 !important;
  z-index: 5 !important;
  filter: brightness(0.35) blur(4px) !important;
}

/* Internal Card contents */
.songs-carousel .song-card .song-art {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #343434 !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  margin-bottom: 1.25rem !important;
  box-shadow: 0 8px 24px rgba(52, 52, 52, 0.3) !important;
}

.songs-carousel .song-card .song-art img,
.songs-carousel .song-card .song-art-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block;
}

.song-art-placeholder {
  width: 100%;
  height: 100%;
  min-height: 120px;
  background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
  border-radius: 10px;
}

.songs-carousel .song-hover-overlay {
  background: rgba(52, 52, 52, 0.65);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.songs-carousel .song-yt-label {
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.songs-carousel .song-meta {
  width: 100%;
  flex-shrink: 0;
  padding: 0 0.25rem;
}

/* Typography matching site */
.songs-carousel .song-title {
  color: #F3F3F3 !important;
  font-weight: 700 !important;
  font-size: 1.25rem !important;
  margin: 0 0 4px 0 !important;
  letter-spacing: -0.3px;
}

.songs-carousel .song-title a {
  color: inherit !important;
  text-decoration: none !important;
}

.songs-carousel .song-artist {
  color: #8E8B82 !important;
  font-size: 0.95rem !important;
  margin: 0 !important;
}

.songs-carousel .song-release {
  color: #8E8B82 !important;
  font-size: 0.8rem !important;
  margin-top: 4px !important;
}

/* Text colors flip for Active card removed */

@media (max-width: 991.98px) {
  .songs-section {
    overflow: hidden;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  #our-songs .our-songs-content {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  #our-songs .songs-title {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    margin-bottom: 1.75rem;
    padding-left: 0;
    padding-right: 0;
    line-height: 1.2;
    text-align: center;
  }

  #our-songs .songs-stage {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Flex row: arrow | viewport | arrow — card stays screen-centered */
  #our-songs .our-songs-carousel {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    box-sizing: border-box;
  }

  #our-songs .our-songs-carousel .s-arrow {
    position: static;
    transform: none;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 20px;
    z-index: 25;
    margin: 0;
    align-self: center;
  }

  #our-songs .our-songs-carousel .s-arrow:hover {
    transform: scale(1.08);
  }

  #our-songs .our-songs-carousel .songs-viewport {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    max-width: min(300px, calc(100% - 5.5rem));
    height: 360px;
    min-height: 320px;
    overflow: hidden;
    perspective: 900px;
    margin: 0;
    touch-action: pan-y;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  #our-songs .our-songs-carousel .songs-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
  }

  #our-songs .our-songs-carousel .song-card {
    width: min(268px, 100%) !important;
    max-width: 100% !important;
    min-height: unset !important;
    height: auto !important;
    padding: 12px 12px 16px !important;
    box-sizing: border-box !important;
    left: 50% !important;
    top: 50% !important;
    margin: 0 !important;
  }

  #our-songs .our-songs-carousel .song-card.is-active {
    transform: translate(-50%, -50%) translateZ(0) rotateY(0deg) scale(1) !important;
  }

  #our-songs .our-songs-carousel .song-card .song-art {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    flex-shrink: 0;
    min-height: 0;
    background: #2a2a2a !important;
  }

  #our-songs .our-songs-carousel .song-card .song-art-link {
    display: block;
    width: 100%;
    height: 100%;
  }

  #our-songs .our-songs-carousel .song-meta {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #our-songs .our-songs-carousel .song-title {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem) !important;
    line-height: 1.35 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center !important;
    width: 100%;
  }

  #our-songs .our-songs-carousel .song-artist {
    font-size: clamp(0.8rem, 3vw, 0.9rem) !important;
    text-align: center !important;
    width: 100%;
  }

  #our-songs .our-songs-carousel .song-release {
    font-size: 0.75rem !important;
    margin-top: 2px !important;
    text-align: center !important;
    width: 100%;
  }

  #our-songs .our-songs-carousel .song-card.is-prev {
    transform: translate(-110%, -50%) translateZ(-80px) rotateY(14deg) scale(0.86) !important;
    opacity: 0.65 !important;
    pointer-events: auto !important;
    filter: brightness(0.55) blur(1px) !important;
  }

  #our-songs .our-songs-carousel .song-card.is-next {
    transform: translate(10%, -50%) translateZ(-80px) rotateY(-14deg) scale(0.86) !important;
    opacity: 0.65 !important;
    pointer-events: auto !important;
    filter: brightness(0.55) blur(1px) !important;
  }

  #our-songs .our-songs-carousel .song-card.is-prev-2,
  #our-songs .our-songs-carousel .song-card.is-next-2 {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate(-50%, -50%) translateZ(-200px) scale(0.7) !important;
  }
}

@media (max-width: 480px) {
  #our-songs .our-songs-content {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  #our-songs .our-songs-carousel {
    gap: 0.5rem;
  }

  #our-songs .our-songs-carousel .s-arrow {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 18px;
  }

  #our-songs .our-songs-carousel .songs-viewport {
    max-width: min(272px, calc(100% - 4.75rem));
    height: 330px;
    min-height: 300px;
  }

  #our-songs .our-songs-carousel .song-card {
    width: min(248px, 100%) !important;
    padding: 10px 10px 14px !important;
  }

  #our-songs .our-songs-carousel .song-card.is-prev {
    transform: translate(-108%, -50%) translateZ(-70px) rotateY(12deg) scale(0.84) !important;
  }

  #our-songs .our-songs-carousel .song-card.is-next {
    transform: translate(8%, -50%) translateZ(-70px) rotateY(-12deg) scale(0.84) !important;
  }

  #our-songs .our-songs-carousel .song-yt-label {
    font-size: 0.95rem;
  }
}

/* Join section styles */
.join-box {
  max-width: 1200px;
  border-radius: 28px;
  border: 1px solid rgba(12, 18, 33, 0.04);
  background: rgba(255, 255, 255, 0.98);
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(12, 18, 33, 0.04)
}

.join-title {
  font-size: 2rem;
  font-weight: 700;
  color: #343434
}

.join-pills .pill {
  background: #E9DCBE;
  border: 0;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-right: 0.5rem
}

.join-copy {
  color: #343434;
  max-width: 380px
}

.join-form .form-input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(12, 18, 33, 0.08);
  border-radius: 6px
}

.join-form .form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(12, 18, 33, 0.08);
  border-radius: 6px
}

.join-right {
  display: flex;
  justify-content: center
}

.join-left {
  padding-right: 2rem
}

@media (max-width: 900px) {

  .join-left,
  .join-right {
    padding: 0;
  }

  .join-box {
    padding: 1rem
  }

  .join-title {
    text-align: center
  }
}

/* Collaboration highlight (Lets collaborate) */
.collab-section {
  padding: 3rem 0
}

.collab-box {
  position: relative;
  border-radius: 30px;
  padding: 2.25rem;
  background: #E9DCBE;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
  box-shadow: 0 10px 30px rgba(52, 52, 52, 0.06)
}

.collab-box::before {
  content: "";
  position: absolute;
  inset: 0.6rem;
  border-radius: 26px;
  border: 14px solid rgba(75, 75, 75, 0.2);
  transform: rotate(-0.6deg);
  pointer-events: none
}

.collab-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.collab-left {
  flex: 1;
  min-width: 0;
}

.collab-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.collab-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #343434;
  margin: 0 0 0.5rem
}

.collab-copy {
  color: #343434;
  margin: 0;
  max-width: 760px
}

.collab-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: #8E8B82;
  color: #343434;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  border: 0;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
  transition: background 0.25s ease, transform 0.2s ease;
}

.collab-cta:hover {
  background: #7e7b72;
  color: #343434;
  transform: translateY(-1px);
}

/* Decorative subtle waves for collab box */
.collab-waves {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 8%;
  top: auto;
  width: 60%;
  max-width: 820px;
  height: auto;
  opacity: 0.12;
  pointer-events: none;
  transform: translateX(-50%);
  z-index: 0
}

@media (max-width:900px) {
  .vc-viewport {
    width: 100%;
    height: auto
  }

  .collab-section {
    padding: 2.5rem 1rem;
  }

  .collab-section .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .collab-box {
    padding: 1.75rem 1.25rem;
    border-radius: 24px;
    overflow: hidden;
  }

  .collab-box::before {
    transform: none;
    inset: 8px;
    border-width: 10px;
  }

  .collab-content {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }

  .collab-left {
    width: 100%;
    text-align: center;
  }

  .collab-title {
    font-size: clamp(1.45rem, 5vw, 2rem);
    margin-bottom: 0.75rem;
  }

  .collab-copy {
    max-width: 100%;
    font-size: clamp(0.9rem, 3.2vw, 1rem);
    line-height: 1.65;
    margin: 0 auto;
  }

  .collab-right {
    width: 100%;
    justify-content: center;
    padding: 0 0.5rem;
  }

  .collab-cta {
    min-width: 148px;
    max-width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: clamp(0.875rem, 3.5vw, 0.95rem);
  }

  .collab-waves {
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6%;
    opacity: 0.08
  }
}

@media (max-width: 480px) {
  .collab-box {
    padding: 1.5rem 1rem;
  }

  .collab-cta {
    width: auto;
    min-width: 132px;
    padding: 0.7rem 1.25rem;
  }
}

/* Contact footer block matching provided design */
.contact-section {
  background: #F3F3F3;
  padding: 3.5rem 0;
  color: #343434
}

.contact-container {
  max-width: 980px;
  margin: 0 auto;
  text-align: center
}

.contact-title {
  font-size: 2.75rem;
  color: #8E8B82;
  margin: 0 0 0.25rem;
  font-weight: 500
}

.contact-address {
  font-size: 1.05rem;
  margin: 0 0 1rem;
  font-weight: 600
}

.contact-hr {
  height: 1px;
  background: #8E8B82;
  width: 100%;
  margin: 1rem 0
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0.5rem 0 1.25rem
}

.contact-link {
  border: 1px solid #8E8B82;
  background: transparent;
  padding: 0.35rem 1rem;
  font-size: 0.9rem;
  color: #343434
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin: 1rem 0
}

.social-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #343434;
  border-radius: 6px;
  background: #F3F3F3;
  font-weight: 700
}

.phones-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0
}

.phone-pill {
  background: #343434;
  color: #F3F3F3;
  padding: 0.5rem 2.5rem;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.6px
}

.contact-copy {
  margin-top: 1rem;
  color: #343434
}

@media (max-width:720px) {
  .contact-title {
    font-size: 2rem
  }

  .phones-row {
    flex-direction: column;
    gap: 0.6rem
  }

  .phone-pill {
    padding: 0.45rem 1.2rem
  }

  .contact-links {
    flex-direction: column
  }
}

/* Documentary section */
.documentary-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #343434;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .documentary-title {
    font-size: 1.6rem;
  }
}

.doc-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto;
  max-width: 1000px;
}

.doc-viewport {
  overflow: hidden;
  flex: 1;
  margin: 0 1rem;
  position: relative;
}

.doc-wrapper {
  display: flex;
  gap: 15px;
  transition: transform 400ms ease;
  align-items: stretch;
}

/* The arrow buttons from reference: Black square with white arrow */
.doc-arrow {
  background: #343434;
  color: #F3F3F3;
  width: 40px;
  height: 40px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.doc-arrow:hover {
  background: #343434;
  transform: scale(1.05);
}

.doc-card {
  flex: 0 0 calc(33.333% - 10px);
  /* Show exactly 3 at a time */
  position: relative;
  background: transparent;
  display: block;
}

.doc-thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background: #F3F3F3;
  box-shadow: 0 4px 12px rgba(52, 52, 52, 0.05);
}

.doc-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.doc-card:hover .doc-thumb {
  transform: scale(1.02);
}

.doc-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  /* Let link click handle it */
  transition: transform 0.2s ease;
}

.doc-play-overlay svg {
  width: 28px;
  height: 28px;
  fill: #343434;
}

.doc-card:hover .doc-play-overlay {
  transform: translate(-50%, -50%) scale(1.1);
}

.doc-play-text {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #343434;
  color: #F3F3F3;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.doc-card:hover .doc-play-text {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

@media (max-width: 900px) {
  .doc-card {
    flex: 0 0 calc(100% - 0px);
  }

  .doc-wrapper {
    gap: 15px;
  }

  .doc-stage {
    max-width: 90vw;
  }
}

/* Editorial About Section */
.editorial-about {
  max-width: 1200px;
  margin: 0 auto;
}

.ed-line {
  border: 0;
  border-top: 1px solid #343434;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .editorial-about {
    padding-top: 2rem !important;
  }

  .ed-title {
    font-size: 3.5rem !important;
  }

  .ed-stats-col {
    margin-bottom: 20px;
  }
}


/* About page */
.about-hero {
  background-position: center center;
  min-height: 240px;
}

.about-content {
  padding-top: 4rem;
  padding-bottom: 6rem
}

.about-box {
  max-width: 1100px;
  border-radius: 48px;
  border: 1px solid rgba(12, 18, 33, 0.08);
  background: rgba(255, 255, 255, 0.98);
  position: relative;
  overflow: visible
}

.about-text {
  position: relative;
  z-index: 2
}

.about-text p {
  max-width: 680px;
  margin: 0 auto;
  color: #343434;
  font-size: 0.95rem
}

.quote-mark {
  font-size: 48px;
  color: #E9DCBE;
  position: absolute
}

.quote-mark.left {
  left: 48px;
  top: 32px
}

.quote-mark.right {
  right: 48px;
  bottom: 32px
}

/* Waves */
.about-waves {
  position: absolute;
  left: -5%;
  top: 6%;
  width: 110%;
  height: 85%;
  z-index: 1;
  pointer-events: none
}

.about-waves path {
  vector-effect: non-scaling-stroke
}

.about-waves path {
  stroke: rgba(52, 52, 52, 0.12);
  stroke-opacity: 1
}

.about-waves path:first-child {
  stroke-width: 2.0
}

.about-waves path:nth-child(2) {
  stroke-width: 1.6
}

.about-waves path:nth-child(3) {
  stroke-width: 1.2
}

/* Thin layered S-shaped decorative lines behind about content */
.editorial-about .about-waves {
  left: -6%;
  top: 30%;
  width: 112%;
  height: 60%;
}

.editorial-about .about-waves .wave {
  stroke-linejoin: round;
  stroke-linecap: round;
}

.editorial-about .about-waves .wave-1 {
  stroke: rgba(52, 52, 52, 0.06);
  stroke-width: 1.25;
  opacity: 0.9
}

.editorial-about .about-waves .wave-2 {
  stroke: rgba(52, 52, 52, 0.05);
  stroke-width: 1;
  opacity: 0.85;
  transform: translateY(6px);
}

.editorial-about .about-waves .wave-3 {
  stroke: rgba(52, 52, 52, 0.04);
  stroke-width: 1;
  opacity: 0.8;
  transform: translateY(12px);
}

/* Ensure SVG scales nicely on small screens */
@media (max-width: 900px) {
  .editorial-about .about-waves {
    top: 40%;
    height: 48%;
  }

  .editorial-about .about-waves .wave-1 {
    transform: translateY(4px);
  }

  .editorial-about .about-waves .wave-2 {
    transform: translateY(8px);
  }

  .editorial-about .about-waves .wave-3 {
    transform: translateY(12px);
  }
}

/* Centered quote block (large decorative quote with waves) */
.quote-block {
  position: relative;
  overflow: visible
}

.quote-block .quote-content {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.quote-block .quote-text {
  font-size: 1.15rem;
  color: #343434;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 820px
}

.quote-block .quote-mark {
  position: absolute;
  font-size: 56px;
  color: #E9DCBE;
  opacity: 0.95
}

.quote-block .quote-mark.left {
  left: -36px;
  top: -12px
}

.quote-block .quote-mark.right {
  right: -36px;
  bottom: -8px
}

.quote-waves {
  position: absolute;
  right: -6%;
  top: 6%;
  width: 112%;
  height: 85%;
  z-index: 1;
  pointer-events: none
}

.quote-waves .q-wave {
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round
}

.quote-waves .q-wave-1 {
  stroke: rgba(11, 18, 33, 0.12);
  stroke-width: 2
}

.quote-waves .q-wave-2 {
  stroke: rgba(11, 18, 33, 0.08);
  stroke-width: 1.6;
  transform: translateY(8px)
}

.quote-waves .q-wave-3 {
  stroke: rgba(11, 18, 33, 0.06);
  stroke-width: 1.2;
  transform: translateY(16px)
}

@media (max-width: 900px) {
  .quote-block .quote-text {
    font-size: 1rem;
    padding: 0 1rem
  }

  .quote-block .quote-mark.left {
    left: 8px;
    top: -6px;
    font-size: 44px
  }

  .quote-block .quote-mark.right {
    right: 8px;
    bottom: -6px;
    font-size: 44px
  }

  .quote-waves {
    top: 24%;
    height: 50%
  }
}

@media (max-width: 768px) {
  .about-box {
    border-radius: 24px;
    padding: 2rem
  }

  .quote-mark {
    display: none
  }
}

/* Featured In */
.featured-in {
  background: #F3F3F3;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.featured-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #343434;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .featured-title {
    font-size: 1.6rem;
  }
}

.featured-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.featured-item {
  width: 180px;
  height: 70px;
  background: #F3F3F3;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  box-shadow: 0 2px 5px rgba(52, 52, 52,0.03);
  transition: transform 0.2s ease;
}

.featured-item:hover {
  transform: translateY(-2px);
}

/* ensure logos fit and are centered */
.featured-item img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 900px) {
  .featured-item {
    width: 140px;
    height: 55px;
    padding: 8px 12px;
  }

  .featured-grid {
    gap: 1rem;
  }
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #F3F3F3;
}

.about-section {
  text-align: center;
  padding: 60px 20px;
}

.about-section h1 {
  font-size: 40px;
  margin-bottom: 40px;
}

.about-box {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding: 80px 60px;
  border: 1px solid #8E8B82;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

/* TEXT */
.about-box p {
  font-size: 16px;
  color: #343434;
  max-width: 500px;
  margin: auto;
  line-height: 1.6;
}

/* QUOTES */
.quote {
  position: absolute;
  font-size: 40px;
  color: #E9DCBE;
}

.quote.left {
  top: 30px;
  left: 60px;
}

.quote.right {
  bottom: 30px;
  right: 60px;
}

/* WAVES */
.waves {
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  pointer-events: none;
}

.waves span {
  position: absolute;
  width: 200%;
  height: 100%;
  border-bottom: 1px solid rgba(52, 52, 52, 0.2);
  border-radius: 50%;
  left: -50%;
}

/* 3 different waves */
.waves span:nth-child(1) {
  top: 40%;
  transform: rotate(8deg);
}

.waves span:nth-child(2) {
  top: 55%;
  transform: rotate(5deg);
}

.waves span:nth-child(3) {
  top: 70%;
  transform: rotate(2deg);
}

/* Song art hover overlay */
.song-art:hover .song-hover-overlay {
  opacity: 1 !important;
}

/* CINEMATIC CONTACT SECTION */
.cinema-contact {
  background-color: #F3F3F3;
  /* Rich cinematic beige */
  overflow: hidden;
  border-top: 1px solid rgba(52, 52, 52, 0.05);
}

.cinema-contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top center, rgba(52, 52, 52, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.cinema-contact-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: #343434;
  letter-spacing: -1px;
}

.cinema-contact-hr {
  width: 60px;
  height: 3px;
  background: #343434;
  border-radius: 2px;
}

.cinema-contact-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #8E8B82;
  font-weight: 500;
}

.cinema-pill-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #343434;
  background: #F3F3F3;
  border: 1px solid rgba(52, 52, 52, 0.1);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 52, 52, 0.02);
}

.cinema-pill-btn:hover {
  background: #343434;
  color: #F3F3F3;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(52, 52, 52, 0.15);
}

.cinema-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #F3F3F3;
  color: #343434;
  border: 1px solid rgba(52, 52, 52, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 52, 52, 0.02);
}

.cinema-social-icon:hover {
  background: #343434;
  color: #F3F3F3;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 30px rgba(52, 52, 52, 0.2);
}

.cinema-phone-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F3F3F3;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid rgba(52, 52, 52, 0.06);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #343434;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 52, 52, 0.02);
  cursor: pointer;
}

.cinema-phone-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(52, 52, 52, 0.08);
  border-color: rgba(52, 52, 52, 0.15);
}

.cinema-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(52, 52, 52, 0.05);
  border-radius: 50%;
  color: #343434;
  transition: all 0.3s ease;
}

.cinema-phone-card:hover .cinema-phone-icon {
  background: #343434;
  color: #F3F3F3;
}

.cinema-copyright {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #8E8B82;
  margin-top: 1.5rem;
  font-weight: 500;
}

/* =========================================================
   FOUNDER & PRODUCER SECTION (Placeholder Layout)
========================================================= */
.founder-section {
  background-color: #F3F3F3;
  border-top: 1px solid rgba(52, 52, 52,0.03);
  border-bottom: 1px solid rgba(52, 52, 52,0.03);
}

.founder-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background-image: repeating-linear-gradient(45deg, rgba(52, 52, 52, 0.015), rgba(52, 52, 52, 0.015) 1px, transparent 1px, transparent 12px);
  pointer-events: none;
}

/* Geometric elements */
.f-geom {
  position: absolute;
  pointer-events: none;
}

.f-dots {
  width: 60px;
  height: 60px;
  background-image: radial-gradient(#343434 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.15;
}

.f-dots-top-right {
  top: 5%;
  right: 5%;
}

.f-dots-bottom-left {
  bottom: 5%;
  left: 5%;
}

.f-circle {
  border: 2px solid #343434;
  border-radius: 50%;
  opacity: 0.8;
}

.f-circle-1 {
  top: 8%;
  left: 12%;
  width: 25px;
  height: 25px;
}

.f-circle-2 {
  bottom: 12%;
  left: 22%;
  width: 15px;
  height: 15px;
}

.f-triangle {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid #E9DCBE;
}

.f-triangle-1 {
  top: 15%;
  left: 18%;
  transform: rotate(15deg);
}

.f-triangle-2 {
  bottom: 8%;
  left: 38%;
  transform: rotate(-90deg);
  border-bottom-color: #343434;
  opacity: 0.5;
}

/* Mobile: hide scattered decor so bio text stays readable */
@media (max-width: 991.98px) {
  #founder .f-geom,
  #co-founder .f-geom {
    display: none !important;
  }

  #founder .founder-content-wrapper p,
  #co-founder .founder-content-wrapper p {
    position: relative;
    z-index: 2;
  }
}

/* Founder Rings and Image Placeholder */
.founder-img-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
}

.founder-ring-beige {
  position: absolute;
  inset: 0;
  border: 24px solid #E9DCBE;
  border-radius: 50%;
  opacity: 0.6;
}

.founder-ring-black {
  position: absolute;
  inset: -12px;
  border: 6px solid transparent;
  border-left-color: #343434;
  border-bottom-color: #343434;
  border-radius: 50%;
  transform: rotate(-15deg);
}

.founder-ring-dashed {
  position: absolute;
  inset: -26px;
  border: 2px dashed #343434;
  border-radius: 50%;
  animation: rotateDashed 40s linear infinite;
  opacity: 0.8;
}

@keyframes rotateDashed {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.founder-img-placeholder {
  position: absolute;
  inset: 15px;
  background: #E9DCBE;
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgba(52, 52, 52,0.06), 0 15px 35px rgba(52, 52, 52,0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%; /* Moves the focus up to keep the head fully visible, crops some bottom */
  border-radius: 50%;
  image-rendering: high-quality;
  transform: translateZ(0); /* Hardware acceleration for smooth edges and sharpness */
}

/* Right Side Text Placeholders */
.founder-content-wrapper {
  max-width: 500px;
}

.ph-heading {
  height: 16px;
  width: 220px;
  background: #E9DCBE;
  border-radius: 4px;
}

.ph-title {
  height: 54px;
  width: 380px;
  background: #343434;
  border-radius: 6px;
}

.ph-divider {
  height: 2px;
  width: 70px;
  background: #E9DCBE;
}

.ph-line {
  height: 14px;
  width: 100%;
  background: #8E8B82;
  border-radius: 4px;
  margin-bottom: 12px;
}

.ph-line.short {
  width: 65%;
}

.ph-signature {
  height: 50px;
  width: 180px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40'%3E%3Cpath d='M10 30 Q 25 5 40 30 T 80 20 Q 85 25 90 20' fill='none' stroke='%23333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center left;
  background-size: contain;
  opacity: 0.7;
}

@media (max-width: 991px) {
  .founder-img-wrapper {
    width: 250px;
    height: 250px;
    margin-bottom: 2.5rem;
  }
  .founder-content-wrapper {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ph-title {
    width: 300px;
    height: 48px;
  }
  .ph-heading, .ph-divider {
    margin-left: auto;
    margin-right: auto;
  }
  .ph-line {
    margin-left: auto;
    margin-right: auto;
  }
  .ph-signature {
    margin-left: auto;
    margin-right: auto;
    background-position: center;
  }
}

@media (max-width: 576px) {
  .founder-img-wrapper {
    width: 200px;
    height: 200px;
  }
  .founder-ring-dashed {
    inset: -25px;
  }
  .ph-title {
    width: 250px;
  }
}

.btn-start-career:hover {
  background-color: #343434 !important;
  color: #F3F3F3 !important;
}
.btn-start-career:hover svg {
  stroke: #F3F3F3 !important;
}

/* ==========================================
   CUSTOM CURSOR
   ========================================== */

/* Only hide default cursor when JS confirms a fine pointer */
body.custom-cursor-active,
body.custom-cursor-active * {
  cursor: none !important;
}

body.custom-cursor-active input,
body.custom-cursor-active textarea {
  cursor: text !important;
}

.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #E9DCBE;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.15s ease-out;
  display: none; /* hidden by default, shown by JS */
}

.custom-cursor-circle {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid #8E8B82;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  display: none;
}

/* Hover effect on buttons/links */
.custom-cursor-circle.cursor-hover {
  width: 60px;
  height: 60px;
  border-color: #E9DCBE;
  background-color: rgba(233, 220, 190, 0.05);
}

.custom-cursor-dot.cursor-hover {
  transform: translate(-50%, -50%) scale(1.5);
  background-color: #343434;
}

/* Custom Contact Links Hover Animation */
.join-contact-link {
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.25s ease !important;
}
.join-contact-link:hover {
  transform: translateX(6px) !important;
  opacity: 0.8 !important;
}

/* Form submission success popup */
.form-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(52, 52, 52, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.form-success-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.form-success-modal {
  width: min(100%, 400px);
  background: #FAFAFA;
  border-radius: 20px;
  padding: 2rem 1.75rem 1.75rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(52, 52, 52, 0.22);
  transform: scale(0.88) translateY(16px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.35s ease;
}

.form-success-overlay.is-visible .form-success-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.form-success-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.form-success-icon {
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.12s, opacity 0.35s ease 0.12s;
}

.form-success-overlay.is-visible .form-success-icon {
  transform: scale(1);
  opacity: 1;
}

.form-success-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #343434;
  margin: 0 0 0.75rem;
  letter-spacing: -0.5px;
}

.form-success-message {
  font-family: 'Poppins', sans-serif;
  font-size: 0.975rem;
  line-height: 1.65;
  color: #8E8B82;
  margin: 0 0 1.5rem;
}

.form-success-btn {
  background: #E9DCBE;
  color: #343434;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 30px;
  padding: 0.65rem 2.25rem;
  min-width: 120px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.form-success-btn:hover {
  background: #dfd0b0;
  color: #343434;
  transform: translateY(-1px);
}

html.form-success-open,
body.form-success-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .form-success-modal {
    padding: 1.75rem 1.25rem 1.5rem;
    border-radius: 16px;
  }

  .form-success-title {
    font-size: 1.3rem;
  }

  .form-success-message {
    font-size: 0.9rem;
  }
}


