/* =========
   GLOBAL
   ========= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  background: #05070b;
  color: #f5f5f5;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 4rem 0;
}

.section-title {
  font-size: 1.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* =========
   HEADER / NAV
   ========= */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(3, 5, 10, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
}

.logo {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.logo span {
  opacity: 0.65;
  font-weight: 400;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  overflow-x: auto;
}

.nav-links a {
  text-decoration: none;
  color: #f5f5f5;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
  border-color: #40e0d0;
}

/* =========
   HERO
   ========= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top, #1b2838 0, #05070b 55%, #010108 100%);
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10% 5% auto auto;
  background: radial-gradient(circle, rgba(64, 224, 208, 0.25), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.hero-tagline {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2.3rem, 6vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-title span {
  display: block;
}

.hero-title .accent {
  background: linear-gradient(135deg, #40e0d0, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 480px;
  opacity: 0.85;
  font-size: 0.98rem;
  margin-bottom: 1.8rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* =========
   BUTTONS
   ========= */
.btn {
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  border: 1px solid transparent;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  background: none;
  color: #f5f5f5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #40e0d0, #a855f7);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.75);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(4, 6, 15, 0.7);
}

.btn-outline:hover {
  background: rgba(10, 14, 30, 0.9);
}

/* =========
   ABOUT
   ========= */
.about-grid {
  display: grid;
  gap: 2rem;
}

.about-tagline {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  opacity: 0.75;
  margin-bottom: 0.6rem;
}

.about-text p {
  margin-bottom: 0.8rem;
  opacity: 0.9;
  font-size: 0.95rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.highlight-card {
  border-radius: 0.75rem;
  background: radial-gradient(circle at top left, rgba(64, 224, 208, 0.12), rgba(10, 10, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.9rem;
  font-size: 0.86rem;
  opacity: 0.9;
}

/* =========
   SERVICES
   ========= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.service-card {
  padding: 1.4rem 1.2rem;
  border-radius: 0.9rem;
  background: rgba(10, 10, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-title {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.service-tagline {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.75;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* =========
   PORTFOLIO
   ========= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.portfolio-item {
  position: relative;
  border-radius: 0.9rem;
  overflow: hidden;
  background: linear-gradient(135deg, #10131f, #070912);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portfolio-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  opacity: 0.75;
  margin-bottom: 0.4rem;
}

.portfolio-title {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}

.portfolio-note {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* =========
   APPAREL (cinematic section)
   ========= */
#apparel {
  background: radial-gradient(circle at top, #111827 0, #05070b 55%, #020107 100%);
  position: relative;
  isolation: isolate;
}

#apparel::before {
  content: "";
  position: absolute;
  inset: 5% 10% auto auto;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25), transparent 65%);
  opacity: 0.9;
  pointer-events: none;
}

#apparel .container {
  position: relative;
  z-index: 1;
}

.apparel-header {
  max-width: 640px;
  opacity: 0.9;
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.apparel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.apparel-item {
  border-radius: 1rem;
  background: radial-gradient(circle at top left, rgba(64, 224, 208, 0.16), #050711);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.3rem 1.2rem;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.apparel-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.8;
  margin-bottom: 0.4rem;
}

.apparel-title {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.apparel-note {
  font-size: 0.88rem;
  opacity: 0.9;
  margin-bottom: 0.6rem;
}

.apparel-status {
  font-size: 0.78rem;
  opacity: 0.8;
}

/* =========
   PODCAST (new layout)
   ========= */
.podcast-tagline {
  font-size: 0.9rem;
  opacity: 0.85;
  max-width: 520px;
  margin-bottom: 1.6rem;
}

.podcast-layout {
  display: grid;
  gap: 1.8rem;
}

.podcast-text {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.8rem;
}

.podcast-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}

.podcast-feature {
  border-radius: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  min-height: 190px;
  padding: 1.3rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(64, 224, 208, 0.08), rgba(3, 4, 10, 0.95));
}

.podcast-badge {
  align-self: flex-start;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  opacity: 0.85;
  margin-bottom: 0.7rem;
}

.podcast-placeholder-title {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}

.podcast-placeholder-note {
  font-size: 0.86rem;
  opacity: 0.85;
}

/* =========
   CONTACT & BOOKING
   ========= */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.contact-details p {
  font-size: 0.92rem;
  opacity: 0.9;
  margin-bottom: 0.6rem;
}

.contact-highlight {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.75;
  margin-bottom: 0.4rem;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.contact-form label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.8;
  display: block;
  margin-bottom: 0.2rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(6, 8, 16, 0.9);
  color: #f5f5f5;
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  justify-self: flex-start;
}

/* =========
   FOOTER
   ========= */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0 2.5rem;
  font-size: 0.8rem;
  opacity: 0.7;
  text-align: center;
}

/* =========
   RESPONSIVE
   ========= */
@media (min-width: 720px) {
  .about-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
  }

  .podcast-layout {
    grid-template-columns: 1.1fr 1fr;
    align-items: flex-start;
  }

  .contact-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }
}

/* =========================
   Strategic Collaborations
   (Swipe-ready Carousel)
   ========================= */
.sc-section{
  width: 100%;
  padding: 64px 0;
}

.sc-inner{
  width: min(1100px, 92%);
  margin: 0 auto;
}

.sc-header{
  margin-bottom: 20px;
  text-align: left;
}

.sc-title{
  margin: 0 0 6px 0;
  letter-spacing: 0.5px;
}

.sc-subtitle{
  margin: 0;
  opacity: 0.85;
  max-width: 60ch;
}

.sc-carousel{
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.sc-nav{
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: inherit;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.9;
}

.sc-nav:disabled{
  opacity: 0.35;
  cursor: default;
}

.sc-viewport{
  overflow: hidden;
  outline: none;
}

.sc-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.sc-track::-webkit-scrollbar{
  display: none; /* Chrome/Safari */
}

.sc-card{
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 22px;
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 10px;
  background: rgba(255,255,255,0.03);
}

.sc-card-link{
  text-decoration: none;
  color: inherit;
  display: inline-grid;
  gap: 10px;
  width: fit-content;
}

.sc-logo{
  width: 120px;
  height: auto;
  display: block;
}

.sc-name{
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.3px;
}

.sc-desc{
  margin: 0;
  opacity: 0.9;
  max-width: 70ch;
}

.sc-card--placeholder{
  pointer-events: none;
  background: rgba(255,255,255,0.02);
}

.sc-placeholder-block{
  height: 120px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,0.18);
  opacity: 0.6;
}

.sc-dots{
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.sc-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.sc-dot.is-active{
  background: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.7);
}

/* Responsive */
@media (max-width: 700px){
  .sc-carousel{
    grid-template-columns: 1fr;
  }
  .sc-nav{
    display: none;
  }
  .sc-card{
    min-height: 240px;
  }
}
