/* ================================================================
   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: 'Plus Jakarta 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: 'Syne', 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: 'Syne', 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: 'Syne', 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__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: 'Syne', 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: 'Plus Jakarta 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: 'Plus Jakarta 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;
}

.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: 'Syne', 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);
}
