/* ============================================================
   THE REVENUE CATALYST - STYLE
   Modern regal: black + gold, with cream feminine balance.
   ============================================================ */

:root {
  --color-black: #0A0908;
  --color-ink: #1A1814;
  --color-ink-2: #221F1A;
  --color-gold: #D4A24C;
  --color-gold-bright: #E8C063;
  --color-gold-deep: #8B6F2E;
  --color-cream: #F5EFE0;
  --color-cream-soft: #FBF8F0;
  --color-text-on-dark: #F5EFE0;
  --color-text-on-light: #1A1814;
  --color-text-muted-dark: #A8A29A;
  --color-text-muted-light: #6B665E;
  --color-blush: #C49B7A;

  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Satoshi", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1240px;
  --pad-x: clamp(20px, 5vw, 64px);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --shadow-glow: 0 0 0 1px rgba(212,162,76,.18), 0 12px 40px -8px rgba(212,162,76,.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--color-text-on-dark);
  background: var(--color-black);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--color-gold); color: var(--color-black); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ===== TYPE UTILITIES ===== */
.serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; }
.serif--display {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow--gold { color: var(--color-gold-bright); }
.eyebrow--ink  { color: var(--color-gold-deep); }

.grad-gold {
  background: linear-gradient(135deg, #F0CE7E 0%, var(--color-gold-bright) 30%, var(--color-gold) 70%, #B4862F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-title {
  font-size: clamp(34px, 4.6vw, 60px);
  margin: 0 0 16px;
}
.section-title--dark { color: var(--color-text-on-light); }
.section-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--color-text-muted-dark);
  max-width: 640px;
  margin: 8px auto 0;
}
.section-sub--dark { color: var(--color-text-muted-light); }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn--sm  { padding: 10px 18px; font-size: 14px; }
.btn--lg  { padding: 16px 28px; font-size: 16px; }
.btn--full { width: 100%; }

.btn--gold {
  background: linear-gradient(135deg, var(--color-gold-bright) 0%, var(--color-gold) 50%, var(--color-gold-deep) 100%);
  color: var(--color-black);
  box-shadow: 0 8px 28px -10px rgba(212,162,76,.6);
}
.btn--gold::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .9s var(--ease-out);
}
.btn--gold:hover::after { transform: translateX(120%); }
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px -10px rgba(212,162,76,.7);
}

.btn--gold-outline {
  background: transparent;
  border-color: var(--color-gold);
  color: var(--color-gold-bright);
}
.btn--gold-outline:hover {
  background: rgba(212,162,76,.1);
  border-color: var(--color-gold-bright);
  color: #F0CE7E;
  transform: translateY(-2px);
}

.btn--ink-outline {
  background: transparent;
  border-color: var(--color-text-on-light);
  color: var(--color-text-on-light);
}
.btn--ink-outline:hover {
  background: var(--color-text-on-light);
  color: var(--color-cream);
  transform: translateY(-2px);
}

/* ============== NAV ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,9,8,.7);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(212,162,76,.1);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(10,9,8,.92);
  border-bottom-color: rgba(212,162,76,.22);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: filter .3s var(--ease);
}
.nav__brand:hover { filter: drop-shadow(0 0 14px rgba(232,192,99,.45)); }
.nav__mark {
  width: 38px; height: 38px;
  object-fit: cover;
  border-radius: 8px;
  background: #000;
  transition: transform .5s var(--ease);
}
.nav__brand:hover .nav__mark { transform: scale(1.06); }
.nav__wordmark {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-cream);
}
.nav__wordmark em {
  font-style: italic;
  color: var(--color-text-muted-dark);
  font-weight: 400;
  margin-right: 2px;
}
.nav__wordmark-accent {
  color: var(--color-gold-bright);
  font-style: italic;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links > a:not(.btn) {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-on-dark);
  padding: 6px 0;
}
.nav__links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold-bright), var(--color-gold));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s var(--ease-out);
}
.nav__links > a:not(.btn):hover { color: var(--color-gold-bright); }
.nav__links > a:not(.btn):hover::after { transform: scaleX(1); }

.nav__hamburger {
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid rgba(212,162,76,.3);
  border-radius: 8px;
  cursor: pointer;
  padding: 11px 10px;
  flex-direction: column;
  justify-content: space-between;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--color-gold-bright);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .2s;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px var(--pad-x) 120px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
  transition: transform .2s linear;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 45%, rgba(10,9,8,.35) 0%, rgba(10,9,8,.7) 60%, rgba(10,9,8,.95) 100%),
    linear-gradient(180deg, rgba(10,9,8,.55) 0%, rgba(10,9,8,.4) 40%, rgba(10,9,8,.92) 100%);
}
.hero__particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
/* Hero wordmark (big brand presence) */
.hero__wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 6px;
  color: var(--color-text-on-dark);
  text-wrap: balance;
}
.hero__wordmark-the {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 9;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 4px;
  opacity: 0.85;
}
.hero__wordmark-the em {
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
  font-size: 1.15em;
  color: var(--color-gold-bright);
}
.hero__wordmark-main {
  font-family: var(--serif);
  font-weight: 600;
  font-variation-settings: "opsz" 144;
  font-size: clamp(54px, 9vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--color-text-on-dark);
}
.hero__tagline {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(11px, 1.1vw, 14px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
  margin: 14px 0 30px;
  position: relative;
  padding: 0 56px;
  display: inline-block;
}
.hero__tagline::before,
.hero__tagline::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold));
}
.hero__tagline::before { left: 0; }
.hero__tagline::after { right: 0; transform: scaleX(-1); }

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--color-text-on-dark);
  text-wrap: balance;
  opacity: 0.95;
}
.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--color-text-muted-dark);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.55;
  text-wrap: balance;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.hero__chevron {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-gold-bright);
  opacity: .7;
  animation: chevronFloat 2.6s ease-in-out infinite;
  z-index: 2;
}
@keyframes chevronFloat {
  0%, 100% { transform: translate(-50%, 0); opacity: .55; }
  50%      { transform: translate(-50%, 8px); opacity: .9; }
}

/* ============== TRUST STRIP ============== */
.trust {
  background: var(--color-ink);
  border-top: 1px solid rgba(212,162,76,.15);
  border-bottom: 1px solid rgba(212,162,76,.15);
  padding: 28px var(--pad-x);
}
.trust__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 32px;
}
.trust__label {
  color: var(--color-gold-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.trust__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 13px;
}
.trust__dot { color: rgba(212,162,76,.35); }

/* ============== ABOUT ============== */
.about {
  /* Full-bleed warm painterly backdrop that matches the portrait edges */
  background:
    radial-gradient(circle at 78% 50%, #5a4528 0%, #3d2f1c 32%, #2a2114 60%, #1f1810 100%);
  color: #f3ead7;
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.about::before {
  /* Subtle gold halo behind portrait, blended with section bg */
  content: "";
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(212,162,76,0.18) 0%, rgba(212,162,76,0) 60%);
  pointer-events: none;
  z-index: 0;
}
.about__inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 860px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__right { order: -1; margin-bottom: 16px; }
}
.about__title {
  font-size: clamp(30px, 3.8vw, 52px);
  color: #fbf6e9;
  margin: 0 0 24px;
  text-wrap: balance;
}
.about__body {
  font-size: 17px;
  color: rgba(243, 234, 215, 0.82);
  line-height: 1.65;
  margin: 0 0 18px;
}
.about__body strong { color: #fbf6e9; font-weight: 700; }
.about__rule {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-deep), var(--color-gold));
  margin: 28px 0 18px;
  border-radius: 2px;
}
.about__sign {
  color: rgba(243, 234, 215, 0.78);
  font-size: 16px;
  margin: 0;
}
.about__sign-name {
  color: var(--color-text-on-light);
  font-size: clamp(28px, 3vw, 38px);
  font-style: italic;
  font-variation-settings: "opsz" 144;
  background: linear-gradient(135deg, var(--color-gold-deep), var(--color-gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}
.about__body--punch {
  font-size: 19px !important;
  color: #fbf6e9 !important;
  margin-top: 8px !important;
}
.about__body--punch strong { color: var(--color-gold-bright); }

.about__right { display: flex; justify-content: center; }
.portrait {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
/* Image edges fade into the section's warm backdrop (colors match) */
.portrait__img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  /* Soft inner vignette mask so photo edges blend into the dark warm bg */
  -webkit-mask-image: radial-gradient(ellipse 95% 95% at 50% 50%, #000 55%, rgba(0,0,0,0.92) 75%, rgba(0,0,0,0.0) 100%);
          mask-image: radial-gradient(ellipse 95% 95% at 50% 50%, #000 55%, rgba(0,0,0,0.92) 75%, rgba(0,0,0,0.0) 100%);
}
/* Banner overlay across the lower portion of the portrait */
.portrait__banner {
  position: absolute;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  z-index: 3;
  width: min(94%, 460px);
  padding: 16px 26px 18px;
  text-align: center;
  background: linear-gradient(180deg, rgba(15,11,5,0.55) 0%, rgba(15,11,5,0.88) 100%);
  border: 1px solid rgba(212,162,76,0.45);
  border-radius: 4px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 18px 40px -22px rgba(0,0,0,0.7);
}
.portrait__banner-name {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--color-gold-bright), var(--color-gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-variation-settings: "opsz" 144;
}
.portrait__banner-role {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 234, 215, 0.85);
  font-weight: 600;
}
.portrait__banner-rule {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-deep), var(--color-gold-bright));
  border-radius: 2px;
  margin: 8px auto 6px;
}

/* ============== SERVICES ============== */
.services {
  background: var(--color-black);
  padding: clamp(80px, 10vw, 130px) 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.card {
  background: linear-gradient(180deg, rgba(212,162,76,.06) 0%, rgba(212,162,76,.02) 100%);
  border: 1px solid rgba(212,162,76,.18);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform .45s var(--ease-out), border-color .45s var(--ease-out), box-shadow .45s var(--ease-out), background .45s var(--ease-out);
  position: relative;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,192,99,.5);
  background: linear-gradient(180deg, rgba(212,162,76,.1) 0%, rgba(212,162,76,.03) 100%);
  box-shadow: var(--shadow-glow);
}
.card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232,192,99,.18), rgba(139,111,46,.12));
  border: 1px solid rgba(212,162,76,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-bright);
  margin-bottom: 22px;
}
.card__title {
  font-size: 24px;
  margin: 0 0 10px;
  color: var(--color-cream);
}
.card__body {
  color: var(--color-text-muted-dark);
  font-size: 15.5px;
  margin: 0 0 18px;
  line-height: 1.6;
}
.card__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-gold-bright);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s var(--ease);
}
.card__link:hover { gap: 12px; }

/* ============== ACADEMY ============== */
.academy {
  background:
    linear-gradient(180deg, var(--color-black) 0%, #14110C 50%, #1F1A12 100%);
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
}
.academy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(212,162,76,.08), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(212,162,76,.05), transparent 50%);
  pointer-events: none;
}
.academy__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  position: relative;
}
.course {
  background: linear-gradient(180deg, #1A1814 0%, #14110C 100%);
  border: 1px solid rgba(212,162,76,.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .5s var(--ease-out), border-color .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.course:hover {
  transform: translateY(-6px);
  border-color: rgba(232,192,99,.55);
  box-shadow: var(--shadow-glow);
}
.course__badge {
  display: inline-block;
  align-self: flex-start;
  background: linear-gradient(135deg, var(--color-gold-bright), var(--color-gold-deep));
  color: var(--color-black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  padding: 5px 12px;
  border-radius: 999px;
}
.course__title { font-size: 26px; margin: 6px 0 0; color: var(--color-cream); }
.course__desc { color: var(--color-text-muted-dark); font-size: 15px; margin: 0; line-height: 1.6; flex: 1; }
.course__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--color-text-muted-dark);
  letter-spacing: 0.06em;
  font-weight: 500;
  padding: 10px 0 14px;
  border-top: 1px solid rgba(212,162,76,.15);
  margin-top: 4px;
}
.course__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-cream);
}
.course__meta-dot { color: rgba(212,162,76,.45); }
.course__stars {
  color: var(--color-gold-bright);
  font-size: 13px;
  letter-spacing: 1px;
}

/* BUNDLES */
.bundles { margin-top: 80px; position: relative; }
.bundles__head { text-align: center; margin-bottom: 40px; }
.bundles__title { font-size: clamp(28px, 3vw, 40px); margin: 0; color: var(--color-cream); }

.bundles__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .bundles__grid { grid-template-columns: 1fr; }
}
.bundle {
  background: rgba(245,239,224,.02);
  border: 1px solid rgba(212,162,76,.2);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  position: relative;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.bundle:hover { transform: translateY(-4px); border-color: rgba(232,192,99,.4); }
.bundle__name { font-size: 22px; color: var(--color-cream); margin-top: 4px; }
.bundle__detail { font-size: 13px; color: var(--color-text-muted-dark); }
.bundle__courses {
  list-style: none;
  padding: 0;
  margin: 8px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.bundle__courses li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(212,162,76,.06);
  border: 1px solid rgba(212,162,76,.14);
  border-radius: 8px;
}
.bundle__level {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  flex-shrink: 0;
  min-width: 70px;
}
.bundle__course {
  font-size: 13.5px;
  color: var(--color-cream);
  font-weight: 500;
  font-family: var(--serif);
}
.bundle__price {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--color-gold-bright);
  font-weight: 500;
  margin: 12px 0 14px;
  letter-spacing: -0.01em;
}
.bundle__price--soon {
  font-size: 18px;
  color: var(--color-text-muted-dark);
  font-style: italic;
  letter-spacing: 0;
}
.bundle--coming {
  opacity: 0.85;
  border-style: dashed;
}
.bundle__tag--soon {
  background: linear-gradient(135deg, #4A4438, #2A2620);
  color: var(--color-gold);
  border: 1px solid rgba(212,162,76,.35);
}
.bundle--featured {
  background: linear-gradient(180deg, rgba(232,192,99,.1), rgba(212,162,76,.04));
  border: 2px solid var(--color-gold);
  box-shadow: 0 0 0 4px rgba(212,162,76,.08), 0 24px 50px -20px rgba(212,162,76,.4);
  transform: scale(1.02);
}
.bundle--featured:hover { transform: scale(1.02) translateY(-4px); }
.bundle__tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-gold-bright), var(--color-gold-deep));
  color: var(--color-black);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

/* COMING SOON */
.soon { margin-top: 64px; }
.soon__label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--color-gold-deep);
  margin-bottom: 22px;
}
.soon__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.soon__card {
  background: transparent;
  border: 1px dashed rgba(212,162,76,.3);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  opacity: .65;
  transition: opacity .3s, border-color .3s;
}
.soon__card:hover { opacity: 1; border-color: rgba(212,162,76,.6); }
.soon__badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--color-gold-deep);
  border: 1px solid rgba(212,162,76,.3);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.soon__name { color: var(--color-cream); font-size: 18px; margin-bottom: 8px; }
.soon__cta { font-size: 13px; color: var(--color-text-muted-dark); }

/* ============== TESTIMONIALS ============== */
.testimonials {
  background: var(--color-black);
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
  overflow: hidden;
}
.testimonials__particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.testimonials .container { position: relative; z-index: 2; }
.testimonials__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.testimonials__grid--two {
  grid-template-columns: 1.3fr 1fr;
  max-width: 1040px;
  margin: 0 auto;
}
.testimonials__grid--five {
  grid-template-columns: repeat(3, 1fr);
}
.testimonials__grid--five > .quote--lg {
  grid-column: span 2;
}
.testimonials__grid--six {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .testimonials__grid--five { grid-template-columns: 1fr; }
  .testimonials__grid--five > .quote--lg { grid-column: auto; }
  .testimonials__grid--six { grid-template-columns: 1fr; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .testimonials__grid--six { grid-template-columns: repeat(2, 1fr); }
}
.quote {
  background: linear-gradient(180deg, rgba(212,162,76,.06), rgba(212,162,76,.01));
  border: 1px solid rgba(212,162,76,.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 0;
  position: relative;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.quote:hover {
  transform: translateY(-4px);
  border-color: rgba(232,192,99,.45);
  box-shadow: var(--shadow-glow);
}
.quote__mark {
  font-family: var(--serif);
  font-size: 90px;
  line-height: .7;
  color: var(--color-gold);
  margin-bottom: 4px;
  height: 40px;
}
.quote__text {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 22px;
  color: var(--color-cream);
  font-weight: 400;
  font-style: italic;
}
.quote--lg .quote__text { font-size: 24px; }
.quote__author { font-style: normal; font-size: 14px; color: var(--color-text-muted-dark); }
.quote__author strong { color: var(--color-gold-bright); font-weight: 700; margin-right: 8px; }
.quote__role::before { content: "· "; opacity: .6; }

/* ============== LION'S DEN ============== */
.den {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212,162,76,.18), transparent 55%),
    var(--color-black);
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.den__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.den__art {
  position: relative;
  display: flex;
  justify-content: center;
}
.den__art img {
  max-width: 100%;
  width: 460px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 50px rgba(212,162,76,.4));
  transition: transform .8s var(--ease-out), filter .4s var(--ease);
}
.den__art:hover img {
  transform: scale(1.03);
  filter: drop-shadow(0 24px 60px rgba(232,192,99,.7));
}
.den__halo {
  position: absolute;
  width: 380px; height: 380px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232,192,99,.25), transparent 60%);
  z-index: 1;
  animation: halo 6s ease-in-out infinite;
}
@keyframes halo {
  0%, 100% { opacity: .7; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;  transform: translate(-50%, -50%) scale(1.08); }
}
.den__title { font-size: clamp(34px, 4.6vw, 60px); margin: 0 0 10px; }
.den__tagline {
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--color-gold-bright);
  font-style: italic;
  font-family: var(--font-serif, "Fraunces", Georgia, serif);
  font-variation-settings: "opsz" 144;
  margin: 0 0 22px;
  letter-spacing: -0.005em;
}
.den__body { font-size: 17px; color: var(--color-text-muted-dark); line-height: 1.6; margin: 0 0 22px; }
.den__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 10px;
}
.den__list li {
  padding-left: 26px;
  position: relative;
  color: var(--color-cream);
  font-size: 15.5px;
}
.den__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 2px;
  background: linear-gradient(90deg, var(--color-gold-bright), var(--color-gold-deep));
  border-radius: 2px;
}

/* ============== RESOURCES ============== */
.resources {
  background: var(--color-cream);
  color: var(--color-text-on-light);
  padding: clamp(80px, 10vw, 130px) 0;
}
.resources__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.resource {
  background: var(--color-cream-soft);
  border: 1px solid rgba(26,24,20,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
}
.resource:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold);
  box-shadow: 0 20px 40px -16px rgba(139,111,46,.25);
}
.resource__tag {
  display: inline-block;
  background: var(--color-text-on-light);
  color: var(--color-gold-bright);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.resource__tag--premium {
  background: linear-gradient(135deg, var(--color-gold-bright), var(--color-gold-deep));
  color: var(--color-black);
}
.resource__title {
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--color-text-on-light);
}
.resource__body { color: var(--color-text-muted-light); font-size: 15px; margin: 0 0 20px; line-height: 1.6; }
.resource__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-gold-deep);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.resource__link:hover { gap: 12px; color: var(--color-text-on-light); }
.resources__cta { text-align: center; margin-top: 48px; }

/* ============== FINAL CTA ============== */
.final {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,162,76,.18), transparent 60%),
    linear-gradient(180deg, #14110C 0%, var(--color-black) 100%);
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212,162,76,.08), transparent 60%);
  pointer-events: none;
}
.final__title {
  font-size: clamp(38px, 5.4vw, 72px);
  margin: 0 0 24px;
  color: var(--color-cream);
  position: relative;
  z-index: 2;
}
.final__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--color-text-muted-dark);
  max-width: 580px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 2;
}
.final__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 40px;
  position: relative; z-index: 2;
}
.final__sign {
  color: var(--color-gold-bright);
  font-size: clamp(28px, 3.4vw, 42px);
  font-style: italic;
  font-variation-settings: "opsz" 144;
  line-height: 1.15;
  margin-top: 8px;
  position: relative; z-index: 2;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--color-ink);
  color: var(--color-text-on-dark);
  border-top: 1px solid rgba(212,162,76,.18);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px var(--pad-x) 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__col--brand .footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer__mark {
  width: 42px; height: 42px;
  border-radius: 8px;
  object-fit: cover;
  background: #000;
}
.footer__wordmark {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--color-cream);
}
.footer__wordmark em { font-style: italic; color: var(--color-text-muted-dark); font-weight: 400; margin-right: 2px; }
.footer__tag { color: var(--color-text-muted-dark); font-size: 14.5px; line-height: 1.6; margin: 0 0 16px; max-width: 360px; }
.footer__addr { color: var(--color-text-muted-dark); font-size: 13px; margin: 0; }

.footer__head {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}
.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__list a {
  font-size: 14.5px;
  color: var(--color-text-muted-dark);
  transition: color .3s;
}
.footer__list a:hover { color: var(--color-gold-bright); }

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__socials a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(212,162,76,.08);
  border: 1px solid rgba(212,162,76,.18);
  color: var(--color-gold-bright);
  transition: background .3s, transform .3s, border-color .3s;
}
.footer__socials a:hover {
  background: rgba(212,162,76,.2);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}
.footer__email {
  color: var(--color-gold-bright);
  font-size: 14px;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.footer__email:hover { border-color: var(--color-gold-bright); }

.footer__legal {
  border-top: 1px solid rgba(212,162,76,.12);
  background: rgba(0,0,0,.3);
}
.footer__legal-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer__legal-links a {
  font-size: 12.5px;
  color: var(--color-text-muted-dark);
  transition: color .3s;
}
.footer__legal-links a:hover { color: var(--color-gold-bright); }
.footer__copy { font-size: 12.5px; color: var(--color-text-muted-dark); }

/* ============== REVEAL ANIMATIONS ============== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 960px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    position: fixed;
    inset: 64px 0 auto 0;
    background: rgba(10,9,8,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212,162,76,.22);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px var(--pad-x) 28px;
    transform: translateY(-120%);
    transition: transform .4s var(--ease-out);
    z-index: -1;
  }
  .nav__links.is-open {
    transform: translateY(0);
    z-index: 99;
  }
  .nav__links > a:not(.btn) {
    padding: 14px 0;
    border-bottom: 1px solid rgba(212,162,76,.1);
    font-size: 16px;
  }
  .nav__links > a:not(.btn)::after { display: none; }
  .nav__links .btn { margin-top: 14px; align-self: flex-start; }

  .about__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .about__right { order: -1; }
  .services__grid,
  .academy__grid,
  .bundles__grid,
  .soon__grid,
  .resources__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  .testimonials__grid .quote--lg { grid-column: auto; }
  .bundle--featured { transform: none; }
  .bundle--featured:hover { transform: translateY(-4px); }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer__col--brand { grid-column: 1 / -1; }

  .den__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .den__list li { text-align: left; }
  .den__art img { width: 320px; }
}

@media (max-width: 560px) {
  .hero { padding-top: 110px; padding-bottom: 80px; }
  .nav__wordmark { font-size: 16px; }
  .nav__mark { width: 34px; height: 34px; }
  .footer__inner { grid-template-columns: 1fr; }
  .trust__inner { justify-content: center; text-align: center; }
  .trust__logos { justify-content: center; }
  .card, .course, .quote, .resource { padding: 26px; }
  .hero__ctas .btn, .final__ctas .btn { width: 100%; }
}

/* ============== A11Y / MOTION ============== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__chevron { animation: none; }
}

:focus-visible {
  outline: 2px solid var(--color-gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============== LEGAL PAGES ============== */
.legal-page {
  background: var(--color-bg-dark, #0c0a08);
  color: var(--color-text-light, #f5ecdf);
  min-height: 100vh;
  padding: 80px 24px 120px;
}
.legal-page__container {
  max-width: 820px;
  margin: 0 auto;
}
.legal-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gold-bright, #d4a24c);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 40px;
  transition: opacity .3s;
}
.legal-page__back:hover { opacity: .75; }
.legal-page h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-cream, #f5ecdf);
  margin: 0 0 12px;
}
.legal-page__meta {
  color: var(--color-gold-bright, #d4a24c);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.legal-page__notice {
  background: rgba(212, 162, 76, .08);
  border-left: 3px solid var(--color-gold-bright, #d4a24c);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--color-text-muted, #c9bda9);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  color: var(--color-cream, #f5ecdf);
  margin: 44px 0 14px;
}
.legal-page h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-gold-bright, #d4a24c);
  letter-spacing: .04em;
  margin: 24px 0 8px;
}
.legal-page p, .legal-page li {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--color-text-muted, #c9bda9);
}
.legal-page p { margin: 0 0 14px; }
.legal-page ul, .legal-page ol { padding-left: 22px; margin: 0 0 16px; }
.legal-page li { margin-bottom: 8px; }
.legal-page a {
  color: var(--color-gold-bright, #d4a24c);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-page strong { color: var(--color-cream, #f5ecdf); }
.legal-page__contact {
  margin-top: 56px;
  padding: 24px;
  background: rgba(212, 162, 76, .06);
  border: 1px solid rgba(212, 162, 76, .2);
  border-radius: 12px;
}

/* === Inside the Bundle link inside each bundle card === */
.bundle__inside {
  display: block;
  text-align: center;
  margin: 14px 0 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 162, 76, .35);
  padding-bottom: 8px;
  transition: color .2s ease, border-color .2s ease;
}
.bundle__inside:hover {
  color: var(--color-gold-bright);
  border-bottom-color: var(--color-gold-bright);
}
.bundle__inside--on-dark {
  color: var(--color-gold-bright);
  border-bottom-color: rgba(232, 192, 99, .4);
}
.bundle__inside--on-dark:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* === Mastery Bundle: Course block sections === */
.course-block {
  margin: 56px 0 0;
  padding: 36px 32px;
  background: rgba(212, 162, 76, .04);
  border: 1px solid rgba(212, 162, 76, .18);
  border-radius: 14px;
}
.bundle-detail--featured .course-block {
  background: rgba(255, 255, 255, .03);
  border-color: rgba(232, 192, 99, .22);
}
.course-block--carry {
  background: rgba(245, 239, 224, .04);
  border-style: dashed;
}
.course-block__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding: 6px 12px;
  border: 1px solid rgba(212, 162, 76, .35);
  border-radius: 999px;
  margin-bottom: 18px;
}
.bundle-detail--featured .course-block__tag {
  color: var(--color-gold-bright);
  border-color: rgba(232, 192, 99, .45);
}
.course-block__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--color-cream);
}
.course-block__plus {
  color: var(--color-gold);
  font-style: italic;
  margin: 0 6px;
}
.course-block__intro {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245, 239, 224, .82);
  margin: 0 0 28px;
}
.course-block__sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.course-section h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212, 162, 76, .25);
}
.course-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.course-section li {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245, 239, 224, .85);
  padding: 8px 0 8px 18px;
  position: relative;
}
.course-section li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--color-gold);
  font-weight: 700;
}

/* Group labels inside the value stack */
.value-stack__group-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 24px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(212, 162, 76, .25);
}
.value-stack__group-label:first-of-type {
  margin-top: 8px;
}

/* === Lion's Den video on homepage (replaces lion-crown image) === */
.den__video {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(232, 192, 99, .4);
  box-shadow:
    0 24px 60px rgba(212, 162, 76, .35),
    0 0 0 1px rgba(232, 192, 99, .15) inset;
  transition: transform .6s var(--ease-out), box-shadow .4s var(--ease);
}
.den__art:hover .den__video {
  transform: scale(1.015);
  box-shadow:
    0 32px 80px rgba(232, 192, 99, .55),
    0 0 0 1px rgba(232, 192, 99, .3) inset;
}
.den__halo {
  width: 520px;
  height: 320px;
  border-radius: 50%;
  filter: blur(20px);
}
.den__mute {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 9, 8, .65);
  border: 1px solid rgba(232, 192, 99, .45);
  color: var(--color-gold-bright);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.den__mute:hover {
  background: rgba(212, 162, 76, .9);
  color: var(--color-black);
  border-color: var(--color-gold-bright);
  transform: scale(1.06);
}
.den__mute-icon {
  width: 20px;
  height: 20px;
}
.den__mute-icon--unmuted { display: none; }
.den__mute[aria-pressed="false"] .den__mute-icon--muted { display: none; }
.den__mute[aria-pressed="false"] .den__mute-icon--unmuted { display: block; }

/* Mobile sizing */
@media (max-width: 760px) {
  .den__video { max-width: 100%; border-radius: 14px; }
  .den__halo { width: 90%; height: 60%; }
  .den__mute { width: 38px; height: 38px; bottom: 12px; right: 12px; }
  .den__mute-icon { width: 16px; height: 16px; }
}
