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

/* General page */
body {
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color: #343434
}

/* 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
  }
}

/* Global Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

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

/* 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 {
  background: rgba(52, 52, 52, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(233, 220, 190, 0.3);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(52, 52, 52, 0.2);
  width: fit-content;
  padding: 0 10px;
}

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

.navbar-nav {
  gap: 0.5rem;
}

.premium-nav .nav-link {
  color: rgba(243, 243, 243, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 18px !important;
  position: relative;
  transition: color 0.3s ease;
}

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

/* Left-to-right underline animation */
.premium-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 18px;
  /* match padding */
  width: calc(100% - 36px);
  /* width minus left/right padding */
  height: 2px;
  background: #E9DCBE;
  /* Beige accent from palette */
  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: #E9DCBE !important;
}

.premium-btn-cta {
  background: #E9DCBE;
  /* Beige */
  color: #343434;
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
}

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

/* Custom light toggler for dark premium nav */
.custom-toggler {
  border-color: rgba(233, 220, 190, 0.5) !important;
}

.custom-toggler .navbar-toggler-icon {
  filter: invert(1);
}

/* 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: 768px) {
  .hero-inner {
    flex-direction: column
  }

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

  .hero-shape {
    height: 180px
  }
}

/* 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;
  }
}

/* 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;
  }
}

/* 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 {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block;
}

/* 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: 900px) {
  .songs-viewport {
    height: 400px;
    width: 100%;
    overflow: hidden;
  }

  .songs-carousel .song-card {
    width: 300px !important;
    height: auto !important;
    min-height: 260px !important;
    padding: 12px !important;
    padding-bottom: 20px !important;
  }

  .songs-carousel .song-card .song-art {
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
  }

  .songs-carousel .song-card.is-prev {
    transform: translate(-75%, -50%) translateZ(-100px) rotateY(10deg) scale(0.9) !important;
  }

  .songs-carousel .song-card.is-next {
    transform: translate(-25%, -50%) translateZ(-100px) rotateY(-10deg) scale(0.9) !important;
  }

  .songs-carousel .song-card.is-prev-2 {
    transform: translate(-95%, -50%) translateZ(-200px) rotateY(20deg) scale(0.8) !important;
    opacity: 0 !important;
  }

  .songs-carousel .song-card.is-next-2 {
    transform: translate(-5%, -50%) translateZ(-200px) rotateY(-20deg) scale(0.8) !important;
    opacity: 0 !important;
  }

  .s-arrow {
    width: 40px;
    height: 40px;
  }

  .songs-carousel .s-left {
    left: 10px;
    z-index: 30;
  }

  .songs-carousel .s-right {
    right: 10px;
    z-index: 30;
  }
}

/* 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
}

.collab-left {
  flex: 1
}

.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 {
  background: #8E8B82;
  color: #343434;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  border: 0;
  font-weight: 600;
  text-decoration: none
}

.collab-cta:hover {
  background: #8E8B82
}

/* 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-box::before {
    transform: none;
    inset: 10px
  }

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

/* 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;
}

/* 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;
}
