@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@500;600;700&display=swap");

:root {
  --dark: #07100b;
  --dark-2: #0b160d;
  --forest: #101b12;
  --forest-2: #172318;
  --cream: #f2ead9;
  --tan: #c7a35c;
  --muted: #b8ad94;
  --line: rgba(199, 163, 92, 0.28);
  --line-soft: rgba(199, 163, 92, 0.16);
  --white-soft: rgba(255, 255, 255, 0.035);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font-family: inherit;
}

/* NAV */

.site-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  padding: 30px 54px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 64px;
  background: transparent;
}

.page-nav {
  position: relative;
  background: var(--dark);
  border-bottom: 1px solid var(--line);
}

.brand,
.footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: .82;
  letter-spacing: 8px;
  color: var(--cream);
  text-transform: uppercase;
}

.home-brand {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 5px;
  font-weight: 700;
}

.site-nav nav {
  display: flex;
  gap: 38px;
  align-items: center;
  flex-wrap: wrap;
}

.site-nav nav a {
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color .2s ease;
}

.site-nav nav a:hover,
.site-nav nav a.active {
  color: var(--tan);
}

/* GLOBAL */

.eyebrow {
  color: var(--tan);
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 54px;
  border: 1px solid rgba(199, 163, 92, .55);
  color: var(--cream);
  background: rgba(7, 16, 11, .22);
  font-size: 11px;
  letter-spacing: 2.4px;
  font-weight: 700;
  text-transform: uppercase;
  transition: .22s ease;
  cursor: pointer;
}

.btn.primary {
  background: rgba(104, 111, 55, .55);
  border-color: rgba(199, 163, 92, .7);
}

.btn:hover {
  background: rgba(199, 163, 92, .22);
  transform: translateY(-2px);
}

/* HOME HERO */

.home-hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  align-items: center;
  padding: 130px 64px 70px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--dark) 0%, var(--dark-2) 44%, #111a10 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7,16,11,.98) 0%,
      rgba(7,16,11,.94) 34%,
      rgba(7,16,11,.55) 50%,
      rgba(7,16,11,.08) 75%,
      rgba(7,16,11,.02) 100%
    ),
    url("hero-right.png") right center / contain no-repeat;
/* url("hero-right.png") 55% center / cover no-repeat !important;*/
  z-index: 0;
}

.home-copy {
  position: relative;
  z-index: 2;
  grid-column: 1 / 2;
  max-width: 600px;
  margin-top: 30px;
}

.home-copy h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(54px, 5.8vw, 86px);
  line-height: .85;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--cream);
  text-transform: uppercase;
  max-width: 650px;
}

.hero-sub {
  max-width: 460px;
  margin-top: 34px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(244,234,216,.9);
  font-weight: 500;
}

.hero-buttons {
  margin-top: 36px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* PILLARS */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f1eadb;
  color: #11170e;
  padding: 78px 60px;
  text-align: center;
}

.pillar {
  padding: 20px 46px;
  border-right: 1px solid rgba(0,0,0,.15);
  color: inherit;
}

.pillar:last-child { border-right: none; }

.pillar-icon {
  font-size: 48px;
}

.pillar h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 20px 0 18px;
  font-size: 34px;
  letter-spacing: 1px;
  text-align: center;
}

.pillar p {
  line-height: 1.75;
  margin-bottom: 24px;
  font-size: 17px;
}

.pillar span {
  font-size: 12px;
  letter-spacing: 3px;
  color: #8a682c;
}

/* HOME BOTTOM */

.bottom-band {
  min-height: 520px;
  display: grid;
  grid-template-columns: .9fr .82fr .55fr;
  background: linear-gradient(90deg, var(--dark), var(--dark-2));
  border-top: 1px solid var(--line);
}

.bottom-image {
  height: 520px;
  overflow: hidden;
  background: var(--dark-2);
}

.bottom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.86) contrast(1.08) brightness(.72);
}

.bottom-copy {
  align-self: center;
  padding: 70px 58px;
}

.bottom-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 4vw, 52px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.bottom-copy p,
.bottom-links p {
  color: var(--muted);
}

.signature {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  color: var(--tan);
  opacity: .95;
  margin-top: 30px;
}

.bottom-links {
  align-self: center;
  padding: 70px 48px;
  border-left: 1px solid var(--line);
  background: rgba(7,16,11,.45);
  display: grid;
  gap: 38px;
}

.bottom-links h3 {
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bottom-links a {
  color: var(--tan);
  letter-spacing: 3px;
  font-size: 12px;
}

/* SUBPAGES */

.subpage-hero {
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 64px 80px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7,16,11,.96), rgba(7,16,11,.76), rgba(7,16,11,.36)),
    linear-gradient(135deg, var(--dark), var(--forest-2));
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.subpage-copy {
  width: 100%;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.subpage-copy h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(76px, 9vw, 132px);
  line-height: .9;
  color: var(--cream);
  text-transform: uppercase;
}

.subpage-copy p:not(.eyebrow) {
  max-width: 800px;
  margin: 22px auto 0;
  color: rgba(244,234,216,.86);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.6;
  text-align: center;
}

.content-band {
  padding: 90px 64px;
  background:
    radial-gradient(circle at right, rgba(199,163,92,.10), transparent 35%),
    linear-gradient(90deg, var(--dark), var(--forest));
  border-top: 1px solid var(--line);
}

.content-copy.wide {
  max-width: 980px;
}

.content-copy h2,
.split-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  margin-bottom: 26px;
}

.content-copy p,
.split-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.split-card {
  padding: 78px 64px;
  background: #f1eadb;
  color: #11170e;
}

.split-card p {
  color: rgba(17,23,14,.72);
}

.split-card .eyebrow {
  color: #8a682c;
}

.split-card.dark {
  background: linear-gradient(135deg, var(--dark), #111d13);
  color: var(--cream);
}

.split-card.dark p {
  color: var(--muted);
}

.split-card.dark .eyebrow {
  color: var(--tan);
}

/* MISSION */

.mission-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--dark);
  border-top: 1px solid var(--line);
}

.mission-image-card {
  height: 340px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: var(--dark-2);
}

.mission-image-card:last-child {
  border-right: none;
}

.mission-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) contrast(1.08) brightness(.78);
}

.service-band {
  padding: 90px 64px;
  background:
    linear-gradient(90deg, rgba(7,16,11,.96), rgba(7,16,11,.78)),
    url("serving-others.jpg") center / cover no-repeat;
  border-top: 1px solid var(--line);
}

.service-band > div {
  max-width: 820px;
}

.service-band h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  margin-bottom: 26px;
}

.service-band p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

/* MENTORING */

.mentor-hero-split,
.mentor-home-hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  background: linear-gradient(90deg, var(--dark), var(--forest));
  border-bottom: 1px solid var(--line);
}

.mentor-photo-large,
.mentor-photo-side {
  min-height: 82vh;
  overflow: hidden;
  background: var(--dark-2);
}

.mentor-photo-large img,
.mentor-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40% !important;
  filter: saturate(.88) contrast(1.06) brightness(.86);
}

.mentor-hero-copy,
.mentor-copy-side {
  align-self: center;
  padding: 90px 70px;
}

.mentor-hero-copy h1,
.mentor-copy-side h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(64px, 8vw, 112px);
  line-height: .85;
  text-transform: uppercase;
}

.mentor-sub {
  font-size: 26px;
  margin-top: 22px;
}

.mentor-main-text {
  font-size: 20px;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 28px;
}

.mentor-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.mentor-points div {
  border: 1px solid var(--line);
  background: var(--white-soft);
  padding: 24px;
}

.mentor-points h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--cream);
  font-size: 30px;
  margin-bottom: 10px;
}

.mentor-points p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.booking-section {
  padding: 90px 64px;
  background:
    radial-gradient(circle at right, rgba(199,163,92,.10), transparent 35%),
    linear-gradient(90deg, var(--dark), var(--forest));
  border-top: 1px solid var(--line);
}

.booking-copy {
  max-width: 820px;
  margin-bottom: 38px;
}

.booking-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  margin-bottom: 26px;
}

.booking-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.calendar-card {
  border: 1px solid var(--line);
  background: var(--white-soft);
  padding: 12px;
  overflow: hidden;
}

.calendar-card iframe {
  display: block;
  width: 100%;
  background: #fff;
}

/* MUSIC */

.music-main {
  background: var(--dark);
  overflow-x: hidden;
}

.music-intro {
  text-align: center;
  padding: 80px 24px 35px;
}

.music-intro h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 8vw, 110px);
  line-height: .9;
}

.music-intro p {
  color: var(--muted);
  margin-top: 18px;
  font-size: 22px;
}

.adaptive-player {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(199,163,92,.18), transparent 34%),
    linear-gradient(180deg, var(--dark), #101910);
}

.infinite-carousel {
  position: relative;
  height: 620px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  perspective: 1400px;
  touch-action: pan-y;
}

.release-card {
  position: absolute;
  top: 70px;
  left: 50%;
  width: 340px;
  transform-origin: center;
  transition: transform .45s ease, opacity .45s ease, filter .45s ease;
  cursor: pointer;
}

.release-card.pos-0 {
  transform: translateX(-50%) scale(1.12);
  opacity: 1;
  z-index: 5;
  filter: none;
}

.release-card.pos--1 {
  transform: translateX(-135%) scale(.82) rotateY(18deg);
  opacity: .55;
  z-index: 3;
}

.release-card.pos-1 {
  transform: translateX(35%) scale(.82) rotateY(-18deg);
  opacity: .55;
  z-index: 3;
}

.release-card.pos--2 {
  transform: translateX(-210%) scale(.62) rotateY(26deg);
  opacity: .22;
  z-index: 1;
  filter: blur(1px);
}

.release-card.pos-2 {
  transform: translateX(110%) scale(.62) rotateY(-26deg);
  opacity: .22;
  z-index: 1;
  filter: blur(1px);
}

.cover-square {
  width: 340px;
  height: 340px;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #111;
  box-shadow: 0 45px 100px rgba(0,0,0,.72);
}

.cover-square img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--dark);
}

.song-meta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.song-meta h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
  color: var(--cream);
}

.song-meta p {
  color: var(--muted);
  margin-top: 4px;
  font-size: 14px;
}

.play,
.main-play {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: var(--tan);
  color: #111;
  cursor: pointer;
  font-weight: 700;
}

.carousel-btn {
  position: absolute;
  top: 42%;
  z-index: 10;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(7,16,11,.78);
  border: 1px solid var(--line);
  color: var(--cream);
  font-size: 46px;
  cursor: pointer;
}

.carousel-btn.prev {
  left: 36px;
}

.carousel-btn.next {
  right: 36px;
}

.now-playing {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 62px 1fr 54px;
  align-items: center;
  gap: 18px;
  padding: 26px 90px;
  background: rgba(0,0,0,.28);
}

.mini-cover {
  width: 62px;
  height: 62px;
  background-size: contain !important;
  background-repeat: no-repeat;
  background-position: center !important;
  background-color: var(--dark);
  border: 1px solid var(--line);
}

.now-info {
  min-width: 0;
}

.now-info p {
  color: var(--muted);
}

.audio-progress-wrap {
  margin-top: 10px;
  width: 100%;
  max-width: 560px;
}

.audio-progress {
  width: 100%;
  accent-color: var(--tan);
  cursor: pointer;
}

.audio-times {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.platforms {
  padding: 80px 60px;
}

.platforms h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 54px;
  margin-bottom: 30px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.platform-grid a {
  border: 1px solid var(--line);
  padding: 22px;
  color: var(--tan);
  text-align: center;
  background: rgba(255,255,255,.03);
  transition: .2s ease;
}

.platform-grid a:hover {
  background: rgba(199,163,92,.12);
}

/* CONTACT */

.contact-hero {
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 60px 100px;
  background:
    radial-gradient(circle at center, rgba(199,163,92,.08), transparent 40%),
    linear-gradient(135deg, var(--dark), var(--forest));
  border-bottom: 1px solid var(--line);
}

.contact-copy {
  max-width: 820px;
}

.contact-copy h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(72px, 8vw, 120px);
  line-height: .85;
  text-transform: uppercase;
}

.contact-sub {
  color: var(--muted);
  font-size: 26px;
  margin-top: 24px;
}

.contact-section {
  padding: 90px 60px;
  background: linear-gradient(90deg, var(--dark), var(--forest));
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  max-width: 1350px;
  margin: 0 auto;
}

.contact-info h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1;
  margin-bottom: 28px;
}

.contact-info p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.contact-card {
  border: 1px solid var(--line);
  background: var(--white-soft);
  padding: 44px;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(199,163,92,.22);
  color: var(--cream);
  padding: 20px;
  font-size: 18px;
  border-radius: 8px;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--tan);
}

.contact-form button {
  width: 100%;
  height: 62px;
}

/* FOOTER */

.site-footer {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(199,163,92,.20);
  padding: 35px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background: var(--dark);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  max-width: 100%;
}

.footer-socials a {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(199,163,92,.25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tan);
  font-size: 20px;
  transition: .25s ease;
}

.footer-socials a:hover {
  background: var(--tan);
  color: var(--dark);
  transform: translateY(-3px);
}

.site-footer p {
  color: var(--muted);
  font-size: .85rem;
}

/* TABLET */

@media (max-width: 1100px) {
  .site-nav {
    padding: 26px 36px;
    gap: 36px;
  }

  .home-hero {
    grid-template-columns: .95fr 1.05fr;
    padding: 120px 42px 70px;
  }

  .pillars {
    padding: 62px 34px;
  }

  .pillar {
    padding: 18px 24px;
  }

  .bottom-band {
    grid-template-columns: 1fr 1fr;
  }

  .bottom-links {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid var(--line);
    grid-template-columns: 1fr 1fr;
  }

  .mentor-hero-split,
  .mentor-home-hero,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .mentor-photo-large,
  .mentor-photo-side {
    min-height: 520px;
  }

  .mentor-points {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */

@media (max-width: 900px) {
  .site-nav {
    position: relative;
    background: var(--dark);
    flex-direction: column;
    gap: 24px;
    padding: 28px;
    text-align: center;
  }

  .site-nav nav {
    justify-content: center;
    gap: 20px;
  }

  .home-hero {
    min-height: 78vh;
    grid-template-columns: 1fr;
    padding: 95px 28px;
  }

  .home-hero::before {
    background:
      linear-gradient(rgba(7,16,11,.84), rgba(7,16,11,.78)),
      url("hero-right.png") center / cover no-repeat;
  }

  .home-copy {
    grid-column: auto;
    margin-top: 0;
  }

  .home-copy h1 {
    font-size: clamp(52px, 17vw, 90px);
  }

  .hero-sub {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }

  .pillars,
  .bottom-band,
  .platform-grid,
  .split-section,
  .mission-image-grid,
  .grid-container,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .pillars {
    padding: 54px 28px;
  }

  .pillar {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,.15);
    padding: 34px 18px;
  }

  .pillar:last-child {
    border-bottom: none;
  }

  .bottom-image {
    height: 360px;
  }

  .bottom-copy,
  .bottom-links,
  .content-band,
  .split-card,
  .mentor-hero-copy,
  .mentor-copy-side,
  .booking-section,
  .service-band,
  .contact-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .bottom-links {
    border-left: none;
    border-top: 1px solid var(--line);
    grid-template-columns: 1fr;
  }

  .signature {
    font-size: 54px;
  }

  .subpage-hero {
    min-height: 55vh;
    padding: 90px 28px 70px;
  }

  .subpage-copy h1 {
    font-size: clamp(54px, 15vw, 86px);
  }

  .subpage-copy p:not(.eyebrow) {
    font-size: 19px;
  }

  .mission-image-card {
    height: 300px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .mentor-hero-split,
  .mentor-home-hero {
    grid-template-columns: 1fr;
  }

  .mentor-photo-large,
  .mentor-photo-side {
    min-height: 460px;
    order: -1;
  }

  .mentor-points {
    grid-template-columns: 1fr;
  }

  .calendar-card iframe {
    height: 680px;
  }

  .music-intro {
    padding: 58px 24px 24px;
  }

  .infinite-carousel {
    height: 560px;
  }

  .release-card {
    width: 260px;
  }

  .release-card.pos--1 {
    transform: translateX(-122%) scale(.76) rotateY(18deg);
  }

  .release-card.pos-1 {
    transform: translateX(22%) scale(.76) rotateY(-18deg);
  }

  .release-card.pos--2,
  .release-card.pos-2 {
    opacity: 0;
    pointer-events: none;
  }

  .cover-square {
    width: 260px;
    height: 260px;
  }

  .song-meta h3 {
    font-size: 25px;
  }

  .carousel-btn {
    width: 48px;
    height: 48px;
    font-size: 34px;
  }

  .carousel-btn.prev {
    left: 12px;
  }

  .carousel-btn.next {
    right: 12px;
  }

  .now-playing {
    grid-template-columns: 62px 1fr;
    padding: 24px;
  }

  .main-play {
    grid-column: 1 / -1;
    width: 100%;
    border-radius: 999px;
  }

  .platforms {
    padding: 58px 28px;
  }

  .platforms h2 {
    font-size: 44px;
  }

  .site-footer {
    padding: 28px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .contact-hero {
    padding: 90px 28px 70px;
  }

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

  .contact-card {
    padding: 30px;
  }
}

/* SMALL MOBILE */

@media (max-width: 520px) {
  .site-nav nav {
    gap: 14px;
  }

  .site-nav nav a {
    font-size: 10px;
    letter-spacing: 1.6px;
  }

  .home-brand {
    font-size: 15px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .home-copy h1 {
    font-size: clamp(46px, 16vw, 72px);
  }

  .release-card {
    width: 230px;
  }

  .cover-square {
    width: 230px;
    height: 230px;
  }

  .release-card.pos--1 {
    transform: translateX(-112%) scale(.72) rotateY(18deg);
  }

  .release-card.pos-1 {
    transform: translateX(12%) scale(.72) rotateY(-18deg);
  }

  .song-meta h3 {
    font-size: 22px;
  }

  .footer-socials a {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

/* FIX MISSION PILLAR IMAGE GRID */

.mission-image-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0;
}

.mission-image-card {
  height: 340px;
  border-right: 1px solid var(--line);
  border-bottom: none;
}

.mission-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Only stack on actual mobile */
@media (max-width: 700px) {
  .mission-image-grid {
    grid-template-columns: 1fr !important;
  }

  .mission-image-card {
    height: 300px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}

/* FIX MISSION PILLAR IMAGE GRID */

.mission-image-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0;
}

.mission-image-card {
  height: 340px;
  border-right: 1px solid var(--line);
  border-bottom: none;
}

.mission-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Only stack on actual mobile */
@media (max-width: 700px) {
  .mission-image-grid {
    grid-template-columns: 1fr !important;
  }

  .mission-image-card {
    height: 300px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}

/* RESTORE MISSION PAGE 3-COLUMN GRID */

.grid-container.mission-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 40px;
  padding: 90px 60px;
  background: #07100b;
}

.grid-container.mission-grid .column {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(199, 163, 92, 0.22);
  background: rgba(255, 255, 255, 0.025);
}

.grid-container.mission-grid .mission-image-card {
  width: 100%;
  height: 300px;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(199, 163, 92, 0.25);
}

.grid-container.mission-grid .mission-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-container.mission-grid h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #f2ead9;
}

.grid-container.mission-grid p {
  color: #b8ad94;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Only stack on mobile */
@media (max-width: 800px) {
  .grid-container.mission-grid {
    grid-template-columns: 1fr !important;
    padding: 58px 28px;
    gap: 28px;
  }

  .grid-container.mission-grid .mission-image-card {
    height: 280px;
  }
}

/* FINAL MISSION GRID OVERRIDE */

@media (min-width: 801px) {
  body main section.grid-container.mission-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 40px !important;
    padding: 90px 60px !important;
    background: #07100b !important;
  }

  body main section.grid-container.mission-grid > .column {
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 30px !important;
    border: 1px solid rgba(199, 163, 92, 0.22) !important;
    background: rgba(255, 255, 255, 0.025) !important;
  }

  body main section.grid-container.mission-grid > .column .mission-image-card {
    width: 100% !important;
    height: 300px !important;
    margin: 0 0 28px 0 !important;
    overflow: hidden !important;
    border-radius: 10px !important;
  }

  body main section.grid-container.mission-grid > .column .mission-image-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
}

@media (max-width: 800px) {
  body main section.grid-container.mission-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 58px 28px !important;
  }
}

/* FINAL MISSION HERO FIX */

body main > section:first-child {
  min-height: 82vh;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  background: linear-gradient(90deg, #07100b, #101b12);
}

body main > section:first-child > div:first-child {
  order: 1;
  align-self: center;
  padding: 90px 70px;
}

body main > section:first-child > div:last-child {
  order: 2;
  min-height: 82vh;
  overflow: hidden;
}

body main > section:first-child > div:last-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  body main > section:first-child {
    grid-template-columns: 1fr !important;
  }

  body main > section:first-child > div:first-child {
    order: 1;
    padding: 58px 28px;
  }

  body main > section:first-child > div:last-child {
    order: 2;
    min-height: 420px;
  }
}

/* =========================================================
   FINAL UNIFIED PAGE TOP STYLING
   Keeps index unique, makes Mission / Mentoring / Music / Contact match
   ========================================================= */

body main > section.mission-home-hero:first-child,
body main > section.mentor-home-hero:first-child {
  min-height: 92vh !important;
  display: grid !important;
  grid-template-columns: .92fr 1.08fr !important;
  align-items: center !important;
  background: linear-gradient(
    90deg,
    #07100b 0%,
    #0b160d 45%,
    #101b12 100%
  ) !important;
  border-bottom: 1px solid var(--line);
}

.mission-copy,
.mentor-copy-side {
  align-self: center;
  padding: 155px 70px 100px !important;
  max-width: 760px;
}

.mission-photo-side,
.mentor-photo-side {
  min-height: 82vh;
  height: 82vh;
  overflow: hidden;
  order: 2;
}

.mission-photo-side img,
.mentor-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.88) contrast(1.06) brightness(.82);
}

.mission-copy h1,
.mentor-copy-side h1,
.contact-copy h1,
.music-intro h1 {
  font-size: clamp(74px, 8vw, 112px) !important;
}

.mission-sub,
.mentor-sub,
.contact-sub,
.music-intro p {
  font-size: clamp(22px, 2.2vw, 28px) !important;
}

.contact-sub,
.music-intro p {
  max-width: 650px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.mission-main-text,
.mentor-main-text {
  max-width: 590px;
  margin-top: 28px;
  font-size: 20px !important;
  line-height: 1.9;
}

/* Centered hero pages: Music + Contact */

body main > section.music-intro:first-child,
body main > section.contact-hero:first-child {
  min-height: 58vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 130px 64px 80px !important;
  background:
    radial-gradient(circle at center, rgba(199,163,92,.10), transparent 38%),
    linear-gradient(135deg, #07100b, #101b12) !important;
  border-bottom: 1px solid var(--line);
}

.contact-copy {
  max-width: 900px;
  margin: 0 auto;
}

/* Fix old broad first-section rule so it does not hijack contact/music */

body main > section.contact-hero:first-child > div,
body main > section.music-intro:first-child > div {
  order: initial !important;
  min-height: auto !important;
  padding: 0 !important;
}

/* Mobile */

@media (max-width: 900px) {
  body main > section.mission-home-hero:first-child,
  body main > section.mentor-home-hero:first-child {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .mission-copy,
  .mentor-copy-side {
    order: 1;
    padding: 70px 28px 58px !important;
  }

  .mission-photo-side,
  .mentor-photo-side {
    order: 2;
    height: 420px;
    min-height: 420px;
  }

  body main > section.music-intro:first-child,
  body main > section.contact-hero:first-child {
    min-height: 48vh !important;
    padding: 80px 28px 60px !important;
  }

  .mission-copy h1,
  .mentor-copy-side h1,
  .contact-copy h1,
  .music-intro h1 {
    font-size: clamp(50px, 15vw, 78px) !important;
  }
}

.music-intro{
    min-height:55vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    gap:24px;
    padding:120px 40px 80px;
    border-bottom: 1px solid var(--line);
}

.music-intro .eyebrow{
    font-size:.95rem;
    letter-spacing:6px;
    text-transform:uppercase;
    color:var(--tan);
    margin:0;
}

.music-intro h1{
    font-family:"Cormorant Garamond", serif;
    font-size: clamp(74px, 8vw, 112px);
    line-height:.85;
    text-transform:uppercase;
    color:var(--cream);
    margin:0;
}

.music-intro p{
    max-width:650px;
    font-size:1.3rem;
    line-height:1.8;
    color:var(--muted);
    margin:0;
}

/* SONG CARDS */

.song-card{
    width:320px;
    flex:0 0 320px;

    background:rgba(255,255,255,.03);
    border:1px solid rgba(199,163,92,.20);

    border-radius:18px;

    overflow:hidden;

    backdrop-filter:blur(10px);

    transition:.35s ease;
}

.song-card:hover{
    border-color:rgba(199,163,92,.55);
    transform:translateY(-6px);
}

/* CENTER CARD */

.song-card.active{
    transform:scale(1.08);
    border-color:var(--tan);
    box-shadow:0 20px 60px rgba(0,0,0,.45);
}

/* COVER ART */

.song-cover{
    width:100%;
    aspect-ratio:1/1;
    overflow:hidden;
}

.song-cover img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* CONTENT */

.song-meta{
    padding:24px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:14px;
}

.song-meta h3{
    margin:0;

    font-family:"Cormorant Garamond", serif;
    font-size:34px;
    line-height:1;

    color:var(--cream);
}

.song-meta p{
    margin:0;

    color:var(--muted);
    font-size:14px;

    letter-spacing:1px;
    text-transform:uppercase;
}

/* PLAY BUTTON */

.play{
    width:58px;
    height:58px;

    border:none;
    border-radius:50%;

    background:var(--tan);
    color:#111;

    cursor:pointer;

    font-size:18px;
    font-weight:700;

    transition:.25s ease;
}

.play:hover{
    transform:scale(1.1);
}

.song-meta{
    padding:24px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:14px;
}

.song-meta h3{
    margin:0;
    font-family:"Cormorant Garamond", serif;
    font-size:32px;
    line-height:1;
    color:var(--cream);
}

.song-meta p{
    margin:0;
    color:var(--muted);
    font-size:14px;
    letter-spacing:1px;
}

.release-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(199,163,92,.25);
    border-radius:18px;
    overflow:hidden;
}

.cover-square{
    aspect-ratio:1/1;
    overflow:hidden;
}

.cover-square img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* SHOW FULL MISSION HERO IMAGE */

.mission-photo-side {
  background: #07100b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center top !important;
  background: #07100b;
}

/* ==========================================
   MENTORING PILLARS
   ========================================== */

.mentor-pillars{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:40px;

    padding:80px 60px;
    background:#07100b;
}

.mentor-pillars .pillar{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(199,163,92,.18);

    padding:40px;
    border-radius:12px;

    display:flex;
    flex-direction:column;
}

.mentor-pillars .pillar h2{
    font-family:"Cormorant Garamond",serif;
    font-size:48px;
    color:var(--cream);

    margin-bottom:20px;
}

.mentor-pillars .pillar p{
    color:var(--muted);
    line-height:1.9;
    font-size:17px;
}

/* optional icon */

.mentor-pillars .pillar-icon{
    font-size:34px;
    color:var(--tan);
    margin-bottom:18px;
}

/* mobile */

@media (max-width:900px){

    .mentor-pillars{
        grid-template-columns:1fr;
        padding:60px 28px;
    }

  .home-hero::before{
    background-image:
      linear-gradient(rgba(7,16,11,.82), rgba(7,16,11,.76)),
      url("hero-right.png");

    background-size: cover;
    background-repeat: no-repeat;
    background-position: 75% center;
  }


}

@media (max-width:768px){

  .home-hero::before{
    background-image:
      linear-gradient(rgba(7,16,11,.82), rgba(7,16,11,.76)),
      url("hero-right.png");

    background-size: cover;
    background-repeat: no-repeat;
    background-position: 75% center;
  }

}

/* =====================================
   MOBILE HERO HEADINGS
   ===================================== */

@media (max-width: 900px){

  .home-hero h1,
  .mission-home-hero h1,
  .mentor-home-hero h1{
    font-size: clamp(4rem, 12vw, 6rem) !important;
    line-height: .9;
  }

}

/* MOBILE ONLY: shrink first hero H1s without touching desktop */

@media (max-width: 900px) {
  .home-copy h1,
  .mission-copy h1,
  .mentor-copy-side h1 {
    font-size: clamp(42px, 10vw, 62px) !important;
    line-height: .92 !important;
  }
}

@media (max-width: 520px) {
  .home-copy h1,
  .mission-copy h1,
  .mentor-copy-side h1 {
    font-size: clamp(36px, 9.5vw, 52px) !important;
    line-height: .95 !important;
  }
}

/* ==========================================
   MISSION PAGE SIZE FIX
   Makes Mission match other pages
   ========================================== */

/* Header spacing same as other pages */
.mission-home-hero {
  min-height: 92vh !important;
  padding-top: 0 !important;
}

/* Match hero text sizing */
.mission-copy {
  padding: 140px 70px 90px !important;
  max-width: 760px;
}

.mission-copy h1 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(72px, 8vw, 112px) !important;
  line-height: .85 !important;
  text-transform: uppercase;
}

.mission-sub {
  font-size: 26px !important;
  line-height: 1.7 !important;
  margin-top: 24px !important;
}

.mission-main-text {
  font-size: 20px !important;
  line-height: 1.9 !important;
  color: var(--muted);
  margin-top: 28px !important;
}

/* Match pillar text sizing */
.pillars .pillar h2 {
  font-size: 38px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pillars .pillar p {
  font-size: 18px !important;
  line-height: 1.85 !important;
}

/* Match lower mission grid text sizing */
.grid-container.mission-grid h2 {
  font-size: 42px !important;
  line-height: 1.1 !important;
}

.grid-container.mission-grid p {
  font-size: 18px !important;
  line-height: 1.85 !important;
}

/* Keep mobile looking good */
@media (max-width: 900px) {
  .mission-copy {
    padding: 80px 28px 58px !important;
  }

  .mission-copy h1 {
    font-size: clamp(52px, 12vw, 78px) !important;
  }

  .mission-sub {
    font-size: 22px !important;
  }

  .mission-main-text {
    font-size: 18px !important;
  }
}

/* =====================================
   FORCE MISSION PAGE TO MATCH OTHERS
   ===================================== */

body main section.mission-home-hero {
  min-height: 92vh !important;
  display: grid !important;
  grid-template-columns: .92fr 1.08fr !important;
  align-items: center !important;
  background:
    linear-gradient(
      90deg,
      #07100b 0%,
      #0b160d 45%,
      #101b12 100%
    ) !important;
}

/* Bigger spacing so header doesn't feel tiny */
body main section.mission-home-hero .mission-copy {
  padding: 165px 70px 100px !important;
  max-width: 760px !important;
}

/* BIG mission heading like other pages */
body main section.mission-home-hero .mission-copy h1 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(76px, 8vw, 118px) !important;
  line-height: .84 !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
}

/* Subtitle size */
body main section.mission-home-hero .mission-sub {
  font-size: clamp(24px, 2.3vw, 30px) !important;
  line-height: 1.7 !important;
  margin-top: 28px !important;
}

/* Main paragraph size */
body main section.mission-home-hero .mission-main-text {
  font-size: 21px !important;
  line-height: 1.9 !important;
  margin-top: 30px !important;
  max-width: 620px !important;
}

/* Make pillars text match */
body .pillars .pillar h2 {
  font-size: 40px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

body .pillars .pillar p {
  font-size: 19px !important;
  line-height: 1.85 !important;
}

/* Lower 3-column section text */
body .grid-container.mission-grid h2 {
  font-size: 40px !important;
}

body .grid-container.mission-grid p {
  font-size: 18px !important;
  line-height: 1.9 !important;
}

/* Mobile */
@media (max-width: 900px) {
  body main section.mission-home-hero .mission-copy {
    padding: 90px 28px 60px !important;
  }

  body main section.mission-home-hero .mission-copy h1 {
    font-size: clamp(56px, 12vw, 84px) !important;
  }
}

/* =========================================
   FORCE DESKTOP NAV + MISSION TYPOGRAPHY
   ========================================= */

/* FIX DESKTOP HEADER */
@media (min-width: 901px) {

  .site-nav {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;

    width: 100% !important;

    display: flex !important;
    flex-direction: row !important;

    justify-content: flex-start !important;
    align-items: center !important;

    gap: 64px !important;

    padding: 34px 54px !important;

    text-align: left !important;

    background: transparent !important;

    z-index: 1000 !important;
  }

  .site-nav nav {
    display: flex !important;
    flex-direction: row !important;
    gap: 38px !important;
    align-items: center !important;
  }

  .site-nav nav a {
    font-size: 11px !important;
    letter-spacing: 2.5px !important;
  }

  .home-brand {
    font-size: 18px !important;
    letter-spacing: 5px !important;
  }

  /* HERO */

  .mission-home-hero {
    min-height: 92vh !important;
  }

  .mission-copy {
    padding: 170px 70px 110px !important;
    max-width: 760px !important;
  }

  .mission-copy h1 {
    font-size: clamp(78px, 8vw, 118px) !important;
    line-height: .84 !important;
  }

  .mission-sub {
    font-size: 28px !important;
    line-height: 1.7 !important;
    margin-top: 30px !important;
  }

  .mission-main-text {
    font-size: 21px !important;
    line-height: 1.95 !important;
    margin-top: 32px !important;
  }

  /* PILLARS */

  .pillars .pillar h2 {
    font-size: 38px !important;
  }

  .pillars .pillar p {
    font-size: 18px !important;
    line-height: 1.9 !important;
  }

  /* LOWER GRID */

  .grid-container.mission-grid h2 {
    font-size: 42px !important;
    line-height: 1.1 !important;
  }

  .grid-container.mission-grid p {
    font-size: 18px !important;
    line-height: 1.9 !important;
  }

}