/* ================================================================
   MenUp365 — Component Styles
   Buttons, Cards, Forms, Nav, Footer, Popup, Badges
   ================================================================ */

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 32px;
  font-family: 'Open Sans', sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out-expo);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  composes: btn;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-black);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  composes: btn;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold-subtle);
  transform: translateY(-2px);
  border-color: var(--gold-light);
}

.light-section .btn-secondary {
  border-color: var(--gold-600);
  color: var(--gold-700);
}

.light-section .btn-secondary:hover {
  background: var(--gold-50);
  border-color: var(--gold);
}

.btn-white {
  composes: btn;
  background: var(--bg-white);
  color: var(--bg-black);
}

.btn-white:hover {
  background: var(--bg-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-dark {
  composes: btn;
  background: var(--bg-black);
  color: var(--text-white);
}

.btn-dark:hover {
  background: var(--bg-elevated);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--text-xs);
  min-height: 40px;
}

.btn-lg {
  padding: 18px 40px;
  font-size: var(--text-base);
  min-height: 56px;
  border-radius: var(--radius-lg);
}

.btn-full {
  width: 100%;
}

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--duration-normal) ease,
              box-shadow var(--duration-normal) ease;
}

.nav--transparent {
  background: transparent;
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border-dark);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  z-index: 1001;
}

.nav__logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

.nav__logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.nav__logo-text span {
  color: var(--gold);
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted-dark);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--duration-normal) var(--ease-out-expo);
}

.nav__link:hover,
.nav__link--active {
  color: var(--text-white);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav__cta {
    display: inline-flex;
  }
}

/* Mobile hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

@media (min-width: 1024px) {
  .nav__hamburger {
    display: none;
  }
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal) ease,
              visibility var(--duration-normal) ease;
}

.nav__mobile.active {
  opacity: 1;
  visibility: visible;
}

.nav__mobile a {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--text-white);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

.nav__mobile a:hover {
  color: var(--gold);
}

.nav__mobile .btn-primary {
  margin-top: var(--space-4);
  font-size: var(--text-base);
}

/* ─── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--bg-charcoal);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: transform var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal) var(--ease-out-expo),
              border-color var(--duration-normal) ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-gold);
}

.light-section .card {
  background: var(--bg-white);
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.light-section .card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-200);
}

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-subtle);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  color: var(--gold);
}

.card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.card__text {
  font-size: var(--text-base);
  color: var(--text-muted-dark);
  line-height: 1.6;
}

.light-section .card__text {
  color: var(--text-muted-light);
}

/* ─── Product Cards ──────────────────────────────────────────── */
.product-card {
  background: var(--bg-charcoal);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal) var(--ease-out-expo);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.product-card__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--bg-elevated);
}

.product-card__body {
  padding: var(--space-5);
}

.product-card__badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: var(--gold-subtle);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.product-card__name {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--text-white);
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--text-muted-dark);
  margin-bottom: var(--space-4);
  line-height: 1.5;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gold);
}

.product-card__colors {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.product-card__color {
  font-size: var(--text-xs);
  color: var(--text-muted-dark);
  background: var(--bg-elevated);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

/* ─── Blog Cards ─────────────────────────────────────────────── */
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal) var(--ease-out-expo);
}

.dark-section .blog-card {
  background: var(--bg-charcoal);
  border: 1px solid var(--border-dark);
}

.light-section .blog-card {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  transform: translateY(-4px);
}

.dark-section .blog-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.light-section .blog-card:hover {
  box-shadow: var(--shadow-lg);
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--bg-elevated);
}

.blog-card__body {
  padding: var(--space-5);
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--text-muted-dark);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.light-section .blog-card__meta {
  color: var(--text-caption-light);
}

.blog-card__category {
  color: var(--gold);
  font-weight: 600;
}

.blog-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.blog-card__title a {
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

.blog-card__title a:hover {
  color: var(--gold);
}

.blog-card__excerpt {
  font-size: var(--text-sm);
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.light-section .blog-card__excerpt {
  color: var(--text-muted-light);
}

.blog-card__readmore {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--duration-fast) ease;
}

.blog-card__readmore:hover {
  gap: var(--space-3);
}

/* ─── Event Cards ────────────────────────────────────────────── */
.event-card {
  background: var(--bg-charcoal);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  transition: border-color var(--duration-normal) ease;
}

@media (min-width: 640px) {
  .event-card {
    grid-template-columns: 200px 1fr;
  }
}

.event-card:hover {
  border-color: var(--border-gold);
}

.event-card__image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: var(--bg-elevated);
}

@media (min-width: 640px) {
  .event-card__image {
    height: 100%;
  }
}

.event-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.event-card__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  width: fit-content;
}

.event-card__badge--recurring {
  color: var(--success);
}

.event-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-white);
}

.event-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-muted-dark);
}

.event-card__detail {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.event-card__detail svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.event-card__desc {
  font-size: var(--text-sm);
  color: var(--text-muted-dark);
  line-height: 1.5;
}

/* ─── Forms ──────────────────────────────────────────────────── */
.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-2);
}

.light-section .form-label {
  color: var(--text-heading-light);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: var(--text-base);
  color: var(--text-white);
  background: var(--bg-elevated);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  transition: border-color var(--duration-fast) ease,
              box-shadow var(--duration-fast) ease;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-caption-dark);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-subtle);
}

.light-section .form-input,
.light-section .form-textarea {
  background: var(--bg-white);
  border-color: var(--border-light);
  color: var(--text-heading-light);
}

.light-section .form-input:focus,
.light-section .form-textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px var(--gold-100);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-error {
  font-size: var(--text-sm);
  color: var(--error);
  margin-top: var(--space-2);
}

.form-success {
  font-size: var(--text-sm);
  color: var(--success);
  margin-top: var(--space-2);
}

.form-note {
  font-size: var(--text-sm);
  color: var(--text-muted-dark);
  margin-top: var(--space-3);
}

/* Honeypot (hidden from users) */
.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-dark);
  padding: var(--space-12) 0 var(--space-6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
  .footer__grid--5 {
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  }
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  text-decoration: none;
}

.footer__logo img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.footer__logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--text-white);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  color: var(--text-muted-dark);
  transition: all var(--duration-fast) ease;
}

.footer__social a:hover {
  background: var(--gold-subtle);
  border-color: var(--gold);
  color: var(--gold);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.footer__heading {
  font-family: 'Open Sans', sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-white);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--text-muted-dark);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

.footer__links a:hover {
  color: var(--gold);
}

/* Footer newsletter */
.footer__newsletter-form {
  display: flex;
  gap: var(--space-2);
}

.footer__newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  font-size: var(--text-sm);
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  color: var(--text-white);
  outline: none;
}

.footer__newsletter-form input:focus {
  border-color: var(--gold);
}

.footer__newsletter-form button {
  padding: 12px 20px;
  font-size: var(--text-sm);
  font-weight: 700;
  background: var(--gold);
  color: var(--bg-black);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--duration-fast) ease;
  white-space: nowrap;
}

.footer__newsletter-form button:hover {
  background: var(--gold-light);
}

/* Footer bottom */
.footer__bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__copyright {
  font-size: var(--text-sm);
  color: var(--text-caption-dark);
}

.footer__legal {
  display: flex;
  gap: var(--space-5);
}

.footer__legal a {
  font-size: var(--text-sm);
  color: var(--text-caption-dark);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

.footer__legal a:hover {
  color: var(--gold);
}

/* ─── Lead Popup ─────────────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal) ease,
              visibility var(--duration-normal) ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup {
  background: var(--bg-charcoal);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--duration-normal) var(--ease-out-expo);
  text-align: center;
}

.popup-overlay.active .popup {
  transform: translateY(0);
}

.popup__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--text-muted-dark);
  transition: all var(--duration-fast) ease;
}

.popup__close:hover {
  background: var(--bg-dark-card);
  color: var(--text-white);
}

.popup__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-subtle);
  border-radius: var(--radius-full);
}

.popup__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
}

.popup__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.popup__text {
  font-size: var(--text-base);
  color: var(--text-muted-dark);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.popup__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.popup__form input {
  width: 100%;
  padding: 14px 16px;
  font-size: var(--text-base);
  background: var(--bg-elevated);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  color: var(--text-white);
  outline: none;
}

.popup__form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-subtle);
}

.popup__disclaimer {
  font-size: var(--text-xs);
  color: var(--text-caption-dark);
  margin-top: var(--space-3);
}

/* ─── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
}

.badge--gold {
  background: var(--gold-subtle);
  color: var(--gold);
}

.badge--dark {
  background: var(--bg-elevated);
  color: var(--text-muted-dark);
  border: 1px solid var(--border-dark);
}

.badge--success {
  background: rgba(34, 197, 94, 0.1);
  color: var(--success);
}

/* ─── FAQ Accordion ──────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border-dark);
}

.light-section .faq-item {
  border-bottom-color: var(--border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Open Sans', sans-serif;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-white);
  transition: color var(--duration-fast) ease;
}

.light-section .faq-question {
  color: var(--text-heading-light);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--duration-normal) var(--ease-out-expo);
  color: var(--gold);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-out-expo);
}

.faq-answer__inner {
  padding-bottom: var(--space-5);
  font-size: var(--text-base);
  color: var(--text-muted-dark);
  line-height: 1.7;
}

.light-section .faq-answer__inner {
  color: var(--text-muted-light);
}

/* ─── Pillar Cards ───────────────────────────────────────────── */
.pillar-card {
  background: var(--bg-charcoal);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-out-expo),
              border-color var(--duration-normal) ease;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--duration-normal) ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-subtle);
  border-radius: var(--radius-lg);
}

.pillar-card__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.pillar-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.pillar-card__text {
  font-size: var(--text-sm);
  color: var(--text-muted-dark);
  line-height: 1.6;
}

/* ─── Testimonial ────────────────────────────────────────────── */
.testimonial {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial__quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-3xl));
  color: var(--text-heading-light);
  line-height: 1.5;
  margin-bottom: var(--space-6);
  position: relative;
}

.testimonial__quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--gold);
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
  font-style: normal;
}

.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial__name {
  font-weight: 600;
  color: var(--text-heading-light);
}

.testimonial__role {
  font-size: var(--text-sm);
  color: var(--text-muted-light);
}

/* ─── Hero Section ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.75) 50%,
    rgba(10, 10, 10, 0.6) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: var(--space-10) 0;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: var(--space-5);
}

.hero__label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero__title {
  margin-bottom: var(--space-5);
}

.hero__title span {
  color: var(--gold);
}

.hero__subtitle {
  font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
  color: var(--text-body-dark);
  margin-bottom: var(--space-8);
  max-width: 540px;
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.hero__stats {
  display: flex;
  gap: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-dark);
}

.hero__stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted-dark);
  margin-top: var(--space-1);
}

/* ─── CTA Band ───────────────────────────────────────────────── */
.cta-band {
  padding: var(--space-12) 0;
  text-align: center;
}

.cta-band__title {
  margin-bottom: var(--space-3);
}

.gold-section .cta-band__title {
  color: var(--bg-black);
}

.cta-band__text {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.gold-section .cta-band__text {
  color: rgba(10, 10, 10, 0.7);
}

/* ─── Page Header (for inner pages) ──────────────────────────── */
.page-header {
  padding: calc(var(--nav-height) + var(--space-10)) 0 var(--space-10);
  background: var(--bg-black);
  text-align: center;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-subtle), transparent);
}

.page-header__title {
  margin-bottom: var(--space-3);
}

.page-header__subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted-dark);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Breadcrumbs ────────────────────────────────────────────── */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-caption-dark);
  margin-bottom: var(--space-5);
}

.breadcrumbs a {
  color: var(--text-muted-dark);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs__sep {
  color: var(--text-caption-dark);
}

/* ─── Nav Dropdown (desktop) ─────────────────────────────────── */
.nav__dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav__link--has-children {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: var(--text-muted-dark);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

.nav__link--has-children:hover,
.nav__link--has-children[aria-expanded="true"] {
  color: var(--gold);
}

.nav__caret {
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.nav__link--has-children[aria-expanded="true"] .nav__caret {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-out-expo),
              transform var(--duration-normal) var(--ease-out-expo);
  z-index: 1100;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: var(--space-3) var(--space-4);
  color: var(--text-muted-dark);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: background var(--duration-fast) ease, color var(--duration-fast) ease;
}

.nav__dropdown-link:hover,
.nav__dropdown-link:focus {
  background: rgba(212, 168, 67, 0.1);
  color: var(--gold);
}

/* Mobile nav accordion */
.nav__mobile-group {
  border-bottom: 1px solid var(--border-dark);
}

.nav__mobile-group summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-4) 0;
  font-size: var(--text-lg);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__mobile-group summary::-webkit-details-marker {
  display: none;
}

.nav__mobile-group summary svg {
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.nav__mobile-group[open] summary svg {
  transform: rotate(180deg);
}

.nav__mobile-children {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: 0 0 var(--space-4) var(--space-4);
}

.nav__mobile-children a {
  font-size: var(--text-base);
  color: var(--text-muted-dark);
  padding: var(--space-2) 0;
}

/* ─── Pillar Card Variants ───────────────────────────────────── */
.pillar-card--link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.pillar-card--link:hover .pillar-card__cta {
  color: var(--gold-light);
  transform: translateX(4px);
}

.pillar-card__cta {
  margin-top: auto;
  padding-top: var(--space-4);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  justify-content: center;
  transition: color var(--duration-fast) ease,
              transform var(--duration-normal) var(--ease-out-expo);
}

.pillar-card--subtopic {
  text-align: left;
}

.pillar-card--subtopic .pillar-card__icon {
  margin: 0 0 var(--space-4);
}

/* Homepage 5-pillar grid: tighten on smaller breakpoints so cards
   stay readable. The .grid-5 utility handles columns, this overrides
   gap and a couple of layout details for the homepage. */
.pillars-grid {
  gap: var(--space-5);
}

.pillars-grid .pillar-card {
  padding: var(--space-5);
}

.pillars-grid .pillar-card__title {
  font-size: var(--text-lg);
}

.pillars-grid .pillar-card__text {
  font-size: var(--text-xs);
  min-height: 3.6em;
}

/* ─── Pillar Hub Hero ────────────────────────────────────────── */
.pillar-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + var(--space-12)) 0 var(--space-12);
  overflow: hidden;
}

.pillar-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pillar-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.55) 100%);
}

.pillar-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.pillar-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted-dark);
  margin-bottom: var(--space-5);
}

.pillar-hero__breadcrumbs a {
  color: var(--text-muted-dark);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

.pillar-hero__breadcrumbs a:hover {
  color: var(--gold);
}

.pillar-hero__breadcrumbs span:last-child {
  color: var(--gold);
}

.pillar-hero__label {
  display: inline-block;
  margin-bottom: var(--space-4);
}

.pillar-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
  line-height: 1.05;
  color: var(--text-white);
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}

.pillar-hero__tagline {
  font-size: var(--text-xl);
  color: var(--text-muted-dark);
  line-height: 1.5;
  margin-bottom: var(--space-7);
  max-width: 640px;
}

.pillar-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* ═══════════════════════════════════════════════════════════════
   PODCAST — Hero, featured player, episode grid, pillar chips
   ═══════════════════════════════════════════════════════════════ */

/* Podcast Hero (cinema-style featured banner) */
.podcast-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-height) + var(--space-12)) 0 var(--space-12);
  overflow: hidden;
  background: var(--bg-black);
}

.podcast-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.podcast-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.1);
  transform: scale(1.03);
}

.podcast-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.98) 100%),
    radial-gradient(circle at 70% 30%, rgba(212,168,67,0.15) 0%, transparent 55%);
}

.podcast-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.podcast-hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.podcast-hero__meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted-dark);
  font-weight: 600;
}

.podcast-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid var(--border-gold, rgba(212,168,67,0.4));
  border-radius: var(--radius-full);
  color: var(--gold);
}

.podcast-hero__live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--gold);
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(212, 168, 67, 0); }
}

.podcast-hero__divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.25);
}

.podcast-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(var(--text-5xl), 8vw, var(--text-7xl));
  line-height: 0.95;
  color: var(--text-white);
  margin-bottom: var(--space-5);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.podcast-hero__title span {
  color: var(--gold);
  font-style: italic;
  font-weight: 800;
}

.podcast-hero__subtitle {
  font-size: var(--text-xl);
  color: var(--text-body-dark);
  line-height: 1.5;
  margin-bottom: var(--space-7);
  max-width: 620px;
}

.podcast-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.podcast-hero__ctas .btn-primary,
.podcast-hero__ctas .btn-secondary {
  display: inline-flex;
  align-items: center;
}

/* Featured Episode section */
.featured-episode {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 1024px) {
  .featured-episode {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-10);
  }
}

.featured-episode__player {
  position: relative;
}

.featured-episode__frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 0 1px var(--border-gold, rgba(212,168,67,0.3));
  background: var(--bg-charcoal);
}

.featured-episode__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.featured-episode__details {
  position: relative;
  padding: var(--space-4) 0;
}

.featured-episode__pillar {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin: var(--space-3) 0 var(--space-4);
  padding: 6px 12px;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
}

.featured-episode__pillar svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
}

.featured-episode__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.featured-episode__summary {
  font-size: var(--text-lg);
  color: var(--text-muted-dark);
  line-height: 1.55;
  margin-bottom: var(--space-5);
}

.featured-episode__tag {
  display: inline-block;
  padding: 8px 18px;
  background: var(--gold);
  color: var(--bg-black);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0 var(--bg-black);
}

/* Episode Grid */
.episode-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .episode-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .episode-grid { grid-template-columns: repeat(3, 1fr); }
}

.episode-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-charcoal);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--duration-normal) var(--ease-out-expo),
              border-color var(--duration-normal) ease,
              box-shadow var(--duration-normal) ease;
}

.episode-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold, rgba(212,168,67,0.5));
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px var(--gold-glow);
}

.episode-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-black);
  overflow: hidden;
}

.episode-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out-expo),
              filter var(--duration-normal) ease;
}

.episode-card:hover .episode-card__thumb img {
  transform: scale(1.06);
  filter: brightness(0.7);
}

.episode-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.95);
  color: var(--bg-black);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration-normal) ease,
              transform var(--duration-normal) var(--ease-out-back);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.episode-card:hover .episode-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.episode-card__play svg {
  margin-left: 3px; /* optical centering for play triangle */
}

.episode-card__number {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: 4px 10px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212,168,67,0.4);
}

.episode-card__body {
  padding: var(--space-5) var(--space-5) var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.episode-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: var(--text-lg);
  line-height: 1.25;
  color: var(--text-white);
  margin: var(--space-3) 0 var(--space-3);
  letter-spacing: -0.01em;
}

.episode-card__summary {
  font-size: var(--text-sm);
  color: var(--text-muted-dark);
  line-height: 1.55;
  flex: 1;
}

/* Pillar chips (per-episode category tag) */
.pillar-chip {
  display: inline-block;
  padding: 4px 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
}

/* Podcast teaser strip on homepage */
.podcast-teaser {
  position: relative;
  overflow: hidden;
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.podcast-teaser__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.podcast-teaser__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) blur(2px);
}

.podcast-teaser__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.88) 55%, rgba(10,10,10,0.7) 100%),
    linear-gradient(to bottom, rgba(10,10,10,0.4), rgba(10,10,10,0.95));
}

.podcast-teaser__content {
  position: relative;
  z-index: 1;
}

.pillar-chip--family-leadership { background: rgba(232, 198, 104, 0.12); color: var(--gold-light); border-color: rgba(232, 198, 104, 0.35); }
.pillar-chip--mental-health     { background: rgba(139, 92, 246, 0.12); color: #C4B5FD; border-color: rgba(139, 92, 246, 0.35); }
.pillar-chip--opportunity       { background: rgba(59, 130, 246, 0.12); color: #93C5FD; border-color: rgba(59, 130, 246, 0.35); }
.pillar-chip--fitness           { background: rgba(34, 197, 94, 0.12); color: #86EFAC; border-color: rgba(34, 197, 94, 0.35); }
.pillar-chip--spiritual         { background: rgba(212, 168, 67, 0.14); color: var(--gold); border-color: rgba(212, 168, 67, 0.4); }

/* ═══════════════════════════════════════════════════════════════
   SPONSOR PAGE
   ═══════════════════════════════════════════════════════════════ */
.sponsor-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + var(--space-12)) 0 var(--space-12);
  overflow: hidden;
}

.sponsor-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sponsor-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

.sponsor-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.85) 45%, rgba(10,10,10,0.55) 100%),
    radial-gradient(circle at 85% 30%, rgba(212,168,67,0.18) 0%, transparent 55%);
}

.sponsor-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.sponsor-hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.sponsor-hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212,168,67,0.4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: var(--space-5);
}

.sponsor-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(var(--text-4xl), 7vw, var(--text-7xl));
  line-height: 0.95;
  color: var(--text-white);
  margin-bottom: var(--space-5);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.sponsor-hero__title span {
  color: var(--gold);
  font-style: italic;
  font-weight: 800;
}

.sponsor-hero__subtitle {
  font-size: var(--text-xl);
  color: var(--text-body-dark);
  line-height: 1.55;
  margin-bottom: var(--space-7);
  max-width: 680px;
}

.sponsor-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Sponsor stat blocks */
.sponsor-stat {
  text-align: center;
  padding: var(--space-6) var(--space-4);
}

.sponsor-stat__number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(var(--text-5xl), 6vw, var(--text-7xl));
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.04em;
  margin-bottom: var(--space-3);
}

.sponsor-stat__label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-heading-light);
  margin-bottom: var(--space-4);
}

.sponsor-stat__desc {
  color: var(--text-muted-light);
  line-height: 1.6;
  max-width: 340px;
  margin: 0 auto;
}

/* Sponsor tracks grid (2x2 on desktop, stacked mobile) */
.sponsor-tracks {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .sponsor-tracks {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-7);
  }
}

.sponsor-track {
  position: relative;
  padding: var(--space-7) var(--space-6);
  background: var(--bg-charcoal);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  transition: transform var(--duration-normal) var(--ease-out-expo),
              border-color var(--duration-normal) ease,
              box-shadow var(--duration-normal) ease;
  overflow: hidden;
}

.sponsor-track::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--duration-normal) ease;
}

.sponsor-track:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.sponsor-track:hover::before {
  opacity: 1;
}

.sponsor-track__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(212, 168, 67, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.sponsor-track__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
}

.sponsor-track__tag {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  padding: 4px 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg-black);
  background: var(--gold);
  border-radius: var(--radius-sm);
}

.sponsor-track__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: var(--text-2xl);
  color: var(--text-white);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.sponsor-track__pitch {
  color: var(--text-muted-dark);
  font-size: var(--text-base);
  line-height: 1.55;
  margin-bottom: var(--space-5);
}

.sponsor-track__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sponsor-track__list li {
  position: relative;
  padding-left: var(--space-5);
  color: var(--text-muted-dark);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.sponsor-track__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}

/* Sponsor form (override dark section inputs) */
.sponsor-form .form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  color: var(--text-white);
}

.sponsor-form .form-input::placeholder {
  color: var(--text-caption-dark);
}

.sponsor-form .form-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
  outline: none;
}

.sponsor-form select.form-input option {
  background: var(--bg-charcoal);
  color: var(--text-white);
}

/* ═══════════════════════════════════════════════════════════════
   INSTAGRAM GALLERY
   ═══════════════════════════════════════════════════════════════ */
.gallery-section {
  background: var(--bg-cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal) ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-handles {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--bg-black);
  color: var(--text-white);
  border-radius: var(--radius-full);
  margin: 0 auto;
}

.gallery-handle {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  color: var(--text-white);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

.gallery-handle:hover {
  color: var(--gold);
}

.gallery-handle svg {
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   /GALLERY — "The Wall" — cinematic masonry of IG posts
   ═══════════════════════════════════════════════════════════════ */
.gallery-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + var(--space-12)) 0 var(--space-12);
  overflow: hidden;
  isolation: isolate;
}

.gallery-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gallery-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.7);
}

.gallery-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.85) 40%, rgba(10,10,10,0.7) 100%),
    radial-gradient(circle at 80% 60%, rgba(212,168,67,0.22) 0%, transparent 55%);
}

.gallery-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.gallery-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(var(--text-5xl), 12vw, 9rem);
  line-height: 0.9;
  color: var(--text-white);
  margin: var(--space-5) 0 var(--space-5);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.gallery-hero__title span {
  color: var(--gold);
  font-style: italic;
  font-weight: 800;
  display: inline-block;
  transform: rotate(-2deg);
  text-shadow: 0 0 60px rgba(212, 168, 67, 0.4);
}

.gallery-hero__subtitle {
  font-size: var(--text-xl);
  color: var(--text-body-dark);
  line-height: 1.55;
  margin-bottom: var(--space-7);
  max-width: 620px;
}

.gallery-hero__handles {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.gallery-hero__handles .gallery-handle {
  padding: var(--space-3) var(--space-5);
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(212, 168, 67, 0.4);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.gallery-hero__handles .gallery-handle:hover {
  background: var(--gold);
  color: var(--bg-black);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Scrolling ticker behind the hero content */
.gallery-ticker {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: screen;
}

.gallery-ticker__track {
  display: flex;
  gap: var(--space-6);
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 14vw, 12rem);
  letter-spacing: -0.04em;
  color: var(--gold);
  animation: gallery-ticker 60s linear infinite;
  text-transform: none;
}

.gallery-ticker__dot {
  color: var(--gold);
  opacity: 0.6;
}

@keyframes gallery-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll indicator at hero bottom */
.gallery-hero__scroll {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.gallery-hero__scroll span {
  display: block;
  width: 100%;
  height: 30%;
  background: var(--gold);
  animation: gallery-scroll 2.2s ease-in-out infinite;
}

@keyframes gallery-scroll {
  0%   { transform: translateY(-100%); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateY(300%); opacity: 0; }
}

/* ─── THE WALL — masonry grid of posts ─── */
.wall-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

@media (min-width: 768px) {
  .wall-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
}

@media (min-width: 1280px) {
  .wall-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
  }
}

.wall-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-charcoal);
  text-decoration: none;
  color: inherit;
  transition: transform var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal) ease;
  will-change: transform;
}

/* Every 7th card is 2x2 — rhythm break */
.wall-card--big {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 767px) {
  .wall-card--big {
    grid-column: span 2;
    grid-row: span 1;
  }
}

.wall-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.wall-card__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slower, 700ms) var(--ease-out-expo),
              filter var(--duration-normal) ease;
}

.wall-card__empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-charcoal), var(--bg-elevated));
  color: rgba(212, 168, 67, 0.4);
}

.wall-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-5);
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 40%, rgba(10, 10, 10, 0) 75%);
  opacity: 0;
  transition: opacity var(--duration-normal) ease;
}

.wall-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6),
              0 0 0 2px var(--gold),
              0 0 40px rgba(212, 168, 67, 0.3);
}

.wall-card:hover .wall-card__inner img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

.wall-card:hover .wall-card__overlay {
  opacity: 1;
}

.wall-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-3);
}

.wall-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-black);
  background: var(--gold);
  border-radius: var(--radius-sm);
}

.wall-card__when {
  font-size: var(--text-xs);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wall-card__caption {
  color: var(--text-white);
  font-size: var(--text-sm);
  line-height: 1.5;
  margin-bottom: var(--space-4);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wall-card__action {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  align-self: flex-start;
  padding: 8px 14px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-full);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.wall-card__action svg {
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.wall-card:hover .wall-card__action svg {
  transform: translate(3px, -3px);
}

/* Gold accent bar at top of card — only shows on hover */
.wall-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-out-expo);
  z-index: 3;
}

.wall-card:hover::before {
  transform: scaleX(1);
}

/* Follow splash when no posts available */
.follow-splash {
  text-align: center;
  padding: var(--space-16) 0;
}

.follow-splash__icon {
  stroke: var(--gold);
  margin: 0 auto;
  filter: drop-shadow(0 0 20px rgba(212, 168, 67, 0.3));
  animation: follow-splash-pulse 3s ease-in-out infinite;
}

@keyframes follow-splash-pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50%      { transform: scale(1.05); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY — filter bar + chips + search + admin badge
   ═══════════════════════════════════════════════════════════════ */
.wall-filter-bar {
  padding-top: var(--space-8);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wall-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}

.wall-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  flex: 1 1 auto;
}

.wall-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 18px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  color: var(--text-muted-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.wall-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.wall-chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-black);
}

.wall-chip__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  padding: 0 6px;
  height: 18px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 800;
}

.wall-chip.active .wall-chip__count {
  background: rgba(0, 0, 0, 0.35);
}

.wall-search {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 220px;
}

.wall-search svg {
  position: absolute;
  left: 14px;
  stroke: var(--text-muted-dark);
  pointer-events: none;
}

.wall-search input {
  width: 100%;
  padding: 10px 14px 10px 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  color: var(--text-white);
  font-size: var(--text-sm);
  transition: border-color var(--duration-fast) ease;
}

.wall-search input::placeholder {
  color: var(--text-muted-dark);
}

.wall-search input:focus {
  outline: none;
  border-color: var(--gold);
}

.wall-admin-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 16px;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.4);
  border-radius: var(--radius-full);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.wall-admin-logout {
  margin-left: var(--space-2);
  padding-left: var(--space-2);
  border-left: 1px solid rgba(212, 168, 67, 0.4);
  color: var(--text-muted-dark);
  text-decoration: none;
  font-weight: 600;
}

.wall-admin-logout:hover {
  color: var(--text-white);
}

/* ─── Card enhancements: NEW badge, handle corner, stats ─── */
.wall-card--new::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  pointer-events: none;
  animation: wall-card-new-pulse 3s ease-in-out infinite;
  z-index: 3;
}

@keyframes wall-card-new-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(212, 168, 67, 0); }
}

.wall-card__new-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--gold);
  color: var(--bg-black);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.wall-card__new-badge span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--bg-black);
  border-radius: 50%;
  animation: wall-card-new-dot 1.5s ease-in-out infinite;
}

@keyframes wall-card-new-dot {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

.wall-card__corner {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 3;
  padding: 4px 10px;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  opacity: 0;
  transition: opacity var(--duration-normal) ease;
}

.wall-card:hover .wall-card__corner {
  opacity: 1;
}

.wall-card__handle {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.wall-card__stats {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  color: var(--text-white);
  font-size: var(--text-xs);
  font-weight: 700;
}

.wall-card__stat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wall-card__stat svg {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   THE WALL — Instagram embed iframe grid (zero-config mode)
   ═══════════════════════════════════════════════════════════════ */
.wall-embed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .wall-embed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .wall-embed-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-7);
  }
}

.wall-embed {
  position: relative;
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.wall-embed:hover {
  transform: translateY(-4px);
}

.wall-embed__frame {
  position: relative;
  background: var(--bg-charcoal);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: border-color var(--duration-normal) ease,
              box-shadow var(--duration-normal) ease;
}

.wall-embed:hover .wall-embed__frame {
  border-color: rgba(212, 168, 67, 0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5),
              0 0 0 1px var(--gold),
              0 0 40px rgba(212, 168, 67, 0.15);
}

/* Gold top accent bar on hover */
.wall-embed__frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-out-expo);
  z-index: 3;
}

.wall-embed:hover .wall-embed__frame::before {
  transform: scaleX(1);
}

.wall-embed__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), rgba(10,10,10,0.85));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wall-embed__handle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: var(--text-sm);
  color: var(--gold);
  letter-spacing: 0.02em;
}

.wall-embed__when {
  font-size: 11px;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-left: auto;
}

.wall-embed__new {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: var(--gold);
  color: var(--bg-black);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
}

.wall-embed__new span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--bg-black);
  border-radius: 50%;
  animation: wall-card-new-dot 1.5s ease-in-out infinite;
}

/* NEW posts get a persistent gold glow ring */
.wall-embed--new .wall-embed__frame {
  box-shadow: 0 10px 30px rgba(0,0,0,0.3),
              0 0 0 2px rgba(212, 168, 67, 0.35);
  animation: wall-embed-new-pulse 3s ease-in-out infinite;
}

@keyframes wall-embed-new-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 2px rgba(212, 168, 67, 0.35), 0 0 0 0 rgba(212, 168, 67, 0.4); }
  50%      { box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 2px rgba(212, 168, 67, 0.35), 0 0 30px 6px rgba(212, 168, 67, 0); }
}

/* Instagram iframe — fixed height so all cards align */
.wall-embed__iframe {
  position: relative;
  background: #0a0a0a;
  overflow: hidden;
  /* Instagram embed default width is ~326px and height varies,
     we fix at 640px tall for a consistent masonry feel */
  height: 640px;
}

@media (max-width: 640px) {
  .wall-embed__iframe {
    height: 560px;
  }
}

.wall-embed__iframe iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.wall-embed__footer {
  padding: var(--space-3) var(--space-5);
  background: linear-gradient(to top, rgba(10,10,10,0.95), rgba(10,10,10,0.8));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: right;
}

.wall-embed__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: gap var(--duration-normal) var(--ease-out-expo);
}

.wall-embed__link:hover {
  gap: 10px;
}

.wall-embed__link svg {
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.wall-embed__link:hover svg {
  transform: translate(2px, -2px);
}

/* ═══════════════════════════════════════════════════════════════
   LIGHTBOX — full post + comments + admin reply
   ═══════════════════════════════════════════════════════════════ */
.lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal) ease, visibility 0s linear var(--duration-normal);
}

.lb--open {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--duration-normal) ease;
}

body.lb-locked {
  overflow: hidden;
}

.lb__inner {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1200px;
  max-height: 92vh;
  background: var(--bg-charcoal);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
  transform: scale(0.96);
  transition: transform var(--duration-normal) var(--ease-out-back);
}

.lb--open .lb__inner {
  transform: scale(1);
}

@media (min-width: 900px) {
  .lb__inner {
    grid-template-columns: 1.4fr 1fr;
  }
}

.lb__image {
  position: relative;
  background: var(--bg-black);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lb__image img {
  max-width: 100%;
  max-height: 92vh;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lb__panel {
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  overflow-y: auto;
  max-height: 92vh;
  background: var(--bg-charcoal);
}

@media (max-width: 899px) {
  .lb__panel {
    max-height: 50vh;
  }
  .lb__image {
    max-height: 42vh;
  }
}

.lb__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lb__handle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--gold);
  font-size: var(--text-base);
}

.lb__link {
  color: var(--text-muted-dark);
  transition: color var(--duration-fast) ease;
  display: inline-flex;
  padding: 6px;
}

.lb__link:hover {
  color: var(--gold);
}

.lb__caption {
  color: var(--text-body-dark);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-3);
  max-height: 200px;
  overflow-y: auto;
  white-space: pre-wrap;
}

.lb__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.lb__stat {
  font-size: var(--text-xs);
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.lb__stat strong {
  color: var(--text-white);
  font-weight: 800;
}

.lb__stat--badge {
  padding: 2px 8px;
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 168, 67, 0.3);
}

.lb__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: var(--space-2) 0 var(--space-4);
}

.lb__comments-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.lb__comments {
  flex: 1 1 auto;
  overflow-y: auto;
  max-height: 300px;
  padding-right: var(--space-2);
  margin-bottom: var(--space-4);
}

.lb__loading, .lb__empty {
  padding: var(--space-5) var(--space-3);
  text-align: center;
  color: var(--text-muted-dark);
  font-style: italic;
  font-size: var(--text-sm);
}

.lb__empty a {
  color: var(--gold);
  text-decoration: underline;
}

.lb__comment {
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lb__comment:last-child {
  border-bottom: 0;
}

.lb__comment-head {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: 4px;
}

.lb__comment-head strong {
  color: var(--text-white);
  font-size: var(--text-sm);
  font-weight: 700;
}

.lb__comment-head span {
  font-size: 11px;
  color: var(--text-caption-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lb__comment-likes {
  margin-left: auto;
  color: var(--gold) !important;
  font-weight: 700;
}

.lb__comment-text {
  color: var(--text-body-dark);
  font-size: var(--text-sm);
  line-height: 1.55;
  white-space: pre-wrap;
}

.lb__replies {
  margin-top: var(--space-3);
  padding-left: var(--space-5);
  border-left: 2px solid rgba(212, 168, 67, 0.2);
}

.lb__reply-item {
  padding: var(--space-2) 0;
}

.lb__reply-trigger {
  margin-top: 6px;
  background: transparent;
  border: 1px solid rgba(212, 168, 67, 0.4);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}

.lb__reply-trigger:hover {
  background: var(--gold);
  color: var(--bg-black);
}

.lb__reply {
  padding-top: var(--space-4);
  border-top: 1px solid rgba(212, 168, 67, 0.25);
  background: linear-gradient(to top, rgba(212, 168, 67, 0.06), transparent);
  margin: 0 calc(-1 * var(--space-6)) calc(-1 * var(--space-6));
  padding: var(--space-5) var(--space-6);
}

.lb__reply-meta {
  font-size: var(--text-xs);
  color: var(--gold);
  margin-bottom: var(--space-3);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lb__reply form {
  display: flex;
  gap: var(--space-3);
  align-items: stretch;
}

.lb__reply textarea {
  flex: 1;
  padding: var(--space-3);
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(212, 168, 67, 0.4);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-size: var(--text-sm);
  font-family: 'Open Sans', sans-serif;
  resize: vertical;
  min-height: 60px;
}

.lb__reply textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(10, 10, 10, 0.8);
}

.lb__reply button {
  align-self: flex-end;
  white-space: nowrap;
}

.lb__reply-locked {
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted-dark);
  font-size: var(--text-xs);
  text-align: center;
}

.lb__reply-locked a {
  color: var(--gold);
  text-decoration: underline;
}

/* Lightbox close + nav buttons */
.lb__close,
.lb__nav {
  position: absolute;
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-normal) var(--ease-out-expo);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lb__close {
  top: var(--space-5);
  right: var(--space-5);
}

.lb__nav--prev {
  left: var(--space-5);
  top: 50%;
  transform: translateY(-50%);
}

.lb__nav--next {
  right: var(--space-5);
  top: 50%;
  transform: translateY(-50%);
}

.lb__close:hover,
.lb__nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-black);
}

.lb__nav--prev:hover,
.lb__nav--next:hover {
  transform: translateY(-50%) scale(1.05);
}

/* ═══════════════════════════════════════════════════════════════
   ADMIN LOGIN
   ═══════════════════════════════════════════════════════════════ */
.admin-login {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + var(--space-8)) 0 var(--space-8);
}

.admin-login__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.admin-login__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) blur(3px);
}

.admin-login__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.98) 70%),
    linear-gradient(to bottom, rgba(10,10,10,0.9), rgba(10,10,10,0.98));
}

.admin-login__card {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: 0 auto;
  padding: var(--space-8) var(--space-7);
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid rgba(212, 168, 67, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 168, 67, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.admin-login__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.admin-login__brand img {
  border-radius: var(--radius-sm);
}

.admin-login__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: var(--text-4xl);
  line-height: 1;
  color: var(--text-white);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.admin-login__subtitle {
  color: var(--text-muted-dark);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

.admin-login__label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.admin-login__card input[type="password"] {
  width: 100%;
  padding: 14px 16px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-size: var(--text-base);
  font-family: 'Open Sans', sans-serif;
  margin-bottom: var(--space-4);
  transition: border-color var(--duration-fast) ease;
}

.admin-login__card input[type="password"]:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(10, 10, 10, 0.85);
}

.admin-login__error {
  margin-top: var(--space-3);
  padding: 12px 14px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius-md);
  color: #FCA5A5;
  font-size: var(--text-sm);
  text-align: center;
}

.admin-login__footnote {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--text-xs);
  color: var(--text-caption-dark);
  line-height: 1.6;
}

.admin-login__footnote code {
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'SF Mono', Monaco, monospace;
  font-size: 11px;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   MEMBERSHIP HERO — Not Every Man Belongs Here
   ═══════════════════════════════════════════════════════════════ */
.membership-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + var(--space-12)) 0 var(--space-12);
  overflow: hidden;
}

.membership-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.membership-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.membership-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.88) 50%, rgba(10,10,10,0.55) 100%),
    radial-gradient(circle at 80% 40%, rgba(212,168,67,0.18) 0%, transparent 60%);
}

.membership-hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.membership-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(var(--text-5xl), 8vw, var(--text-7xl));
  line-height: 0.95;
  color: var(--text-white);
  margin: var(--space-5) 0 var(--space-5);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.membership-hero__subtitle {
  font-size: var(--text-xl);
  color: var(--gold-light);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: var(--space-7);
  max-width: 620px;
  letter-spacing: 0.01em;
}

.membership-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE OVERRIDES — hard-clamp everything that blew up at 390px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {

  /* Navigation — make sure the hamburger is always visible against
     transparent hero backgrounds by giving it a subtle gold outline. */
  .nav__hamburger {
    display: flex !important;
    background: rgba(10, 10, 10, 0.65);
    border: 1px solid rgba(212, 168, 67, 0.5);
    border-radius: 8px;
    padding: 10px 9px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1002;
  }

  .nav__hamburger span {
    background: var(--gold);
    width: 22px;
  }

  .nav__inner {
    padding: 0 var(--space-4);
  }

  /* All heroes: hard 1.5rem (24px) so even uppercase 27-char phrases fit
     inside a 358px mobile content area without clipping. */
  .hero__title,
  .pillar-hero__title,
  .podcast-hero__title,
  .sponsor-hero__title,
  .membership-hero__title {
    font-size: 1.5rem !important;
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
    max-width: 100%;
    display: block;
    text-transform: none !important; /* drop all-caps on mobile - 20% width savings */
  }

  /* Subtitles: ensure they don't overflow either */
  .hero__subtitle,
  .pillar-hero__tagline,
  .podcast-hero__subtitle,
  .sponsor-hero__subtitle,
  .membership-hero__subtitle {
    max-width: 100% !important;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hero content container should not overflow the viewport */
  .hero__content,
  .pillar-hero__content,
  .podcast-hero__content,
  .sponsor-hero__content,
  .membership-hero__content {
    max-width: 100% !important;
    overflow-wrap: anywhere;
  }

  /* Hero subtitles: keep readable but fit */
  .hero__subtitle,
  .pillar-hero__tagline,
  .podcast-hero__subtitle,
  .sponsor-hero__subtitle,
  .membership-hero__subtitle {
    font-size: var(--text-base) !important;
    line-height: 1.55 !important;
  }

  /* Hero CTAs: stack vertically, full width */
  .hero__ctas,
  .podcast-hero__ctas,
  .sponsor-hero__ctas,
  .membership-hero__ctas,
  .pillar-hero__ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero__ctas .btn,
  .hero__ctas .btn-primary,
  .hero__ctas .btn-secondary,
  .podcast-hero__ctas .btn,
  .podcast-hero__ctas .btn-primary,
  .podcast-hero__ctas .btn-secondary,
  .sponsor-hero__ctas .btn,
  .sponsor-hero__ctas .btn-primary,
  .sponsor-hero__ctas .btn-secondary,
  .membership-hero__ctas .btn,
  .membership-hero__ctas .btn-primary,
  .membership-hero__ctas .btn-secondary,
  .pillar-hero__ctas .btn,
  .pillar-hero__ctas .btn-primary,
  .pillar-hero__ctas .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Podcast hero meta row — stack on mobile */
  .podcast-hero__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }
  .podcast-hero__divider {
    display: none;
  }

  /* Hero stats: tighten */
  .hero__stats {
    gap: var(--space-4);
  }
  .hero__stat-number {
    font-size: var(--text-4xl);
  }
  .hero__stat-label {
    font-size: var(--text-xs);
  }

  /* Featured episode player: single column */
  .featured-episode__title {
    font-size: var(--text-2xl) !important;
  }

  /* Sponsor stat numbers — smaller on mobile */
  .sponsor-stat__number {
    font-size: var(--text-5xl) !important;
  }

  /* Container padding tighter on mobile so content breathes */
  .container {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  /* Make sure sections don't overflow horizontally */
  body,
  .hero,
  .podcast-hero,
  .sponsor-hero,
  .membership-hero,
  .pillar-hero {
    overflow-x: hidden;
  }

  /* Hero vertical height — don't force 100vh on tiny screens (keyboard
     appearing on mobile makes it weird). Use auto with generous padding. */
  .hero,
  .podcast-hero,
  .sponsor-hero,
  .membership-hero,
  .pillar-hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + var(--space-8));
    padding-bottom: var(--space-8);
  }

  /* Page header titles */
  .page-header__title {
    font-size: clamp(2rem, 9vw, 3rem) !important;
    line-height: 1.1;
  }

  .page-header__subtitle {
    font-size: var(--text-base) !important;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
    line-height: 1.15;
  }

  /* Pricing card heading */
  .reveal-right h2,
  .reveal-right [style*="text-6xl"] {
    font-size: var(--text-5xl) !important;
  }

  /* Make form-rows stack on mobile */
  .form-row,
  .sponsor-form .form-row {
    grid-template-columns: 1fr !important;
  }

  /* Tighten padding inside pillar cards, episode cards, sponsor tracks */
  .pillar-card,
  .episode-card__body,
  .sponsor-track {
    padding: var(--space-5);
  }

  /* Episode card titles smaller */
  .episode-card__title {
    font-size: var(--text-base);
  }
}

/* (legacy small-phone rule removed; the @media 640px block above handles
   all mobile sizes with hard 1.5rem font and word-break wrapping) */

