/* ============================================================
   MYSUGARDADDY – Premium Luxury Matchmaking Platform
   style.css – Core Stylesheet
   ============================================================ */

/* -- 1. CSS Custom Properties ------------------------------- */
:root {
  /* Backgrounds */
  --bg-primary:    #0F1115;
  --bg-secondary:  #13171E;
  --bg-card:       #181D28;
  --bg-card-alt:   #1E2435;
  --bg-glass:      rgba(255, 255, 255, 0.04);

  /* Gold Palette */
  --gold:          #D4AF37;
  --gold-light:    #EAC84B;
  --gold-dark:     #A8891B;
  --gold-rgb:      212, 175, 55;
  --gold-10:       rgba(212, 175, 55, 0.10);
  --gold-20:       rgba(212, 175, 55, 0.20);
  --gold-30:       rgba(212, 175, 55, 0.30);

  /* Text */
  --text-primary:  #F4F0E8;
  --text-secondary:#A8AEBF;
  --text-muted:    #5A6070;
  --white:         #FFFFFF;

  /* Borders */
  --border-gold:   rgba(212, 175, 55, 0.22);
  --border-subtle: rgba(255, 255, 255, 0.07);

  /* Shadows */
  --shadow-sm:     0 2px 8px  rgba(0,0,0,0.35);
  --shadow-md:     0 8px 28px rgba(0,0,0,0.45);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.55);
  --shadow-gold:   0 0 40px  rgba(212, 175, 55, 0.18);
  --glow-gold:     0 0 20px  rgba(212, 175, 55, 0.30);

  /* Spacing */
  --section-py:    110px;
  --container-px:  24px;
  --max-width:     1280px;

  /* Typography */
  --font-heading:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;

  /* Transitions */
  --ease-fast:     0.18s ease;
  --ease-mid:      0.32s ease;
  --ease-slow:     0.55s cubic-bezier(0.23, 1, 0.32, 1);

  /* Radii */
  --r-sm:  4px;
  --r-md:  10px;
  --r-lg:  18px;
  --r-xl:  28px;
  --r-pill:9999px;

  /* Nav height */
  --nav-h: 80px;
}

/* -- 2. Reset & Base ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden; /* prevents any absolute-positioned element from causing horizontal scroll */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Belt-and-suspenders: html-level scroll lock */
html { overflow-x: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; outline: none; border: none; background: none; }
button { cursor: pointer; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text-primary); }

/* -- 3. Layout Utilities ----------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--container-px);
}
.section {
  padding: var(--section-py) 0;
}
.section--dark   { background-color: var(--bg-primary); }
.section--alt    { background-color: var(--bg-secondary); }
.flex            { display: flex; }
.flex-center     { display: flex; align-items: center; justify-content: center; }
.grid            { display: grid; }
.sr-only         { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-gold       { color: var(--gold); }
.text-muted      { color: var(--text-secondary); }
.text-center     { text-align: center; }

/* -- 4. Section Header ------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-divider {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 20px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* -- 5. Buttons -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--r-md);
  transition: all var(--ease-mid);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--ease-fast);
}
.btn:hover::before { opacity: 1; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: #0F1115;
  box-shadow: 0 4px 20px rgba(var(--gold-rgb), 0.35);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(var(--gold-rgb), 0.50);
}
.btn--outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn--outline:hover {
  background: var(--gold-10);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}
.btn--ghost {
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--sm { padding: 10px 22px; font-size: 0.8rem; }
.btn--lg { padding: 18px 44px; font-size: 0.94rem; }

/* -- 6. Badge / Tag ---------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.badge--verified {
  background: var(--gold-10);
  color: var(--gold);
  border: 1px solid var(--gold-20);
}
.badge--online {
  background: rgba(34,197,94,0.12);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.25);
}

/* -- 7. Glass Card ----------------------------------------- */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  transition: transform var(--ease-mid), box-shadow var(--ease-mid), border-color var(--ease-mid);
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-color: var(--gold-30);
}

/* -- 8. Header / Navigation -------------------------------- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10, 12, 16, 0.82);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 1px 0 rgba(212, 175, 55, 0.06);
  transition: background var(--ease-mid), border-color var(--ease-mid);
}
#site-header .container {
  padding: 0 var(--container-px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-shadow: var(--glow-gold);
}
.site-logo .logo-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--ease-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--ease-mid);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 14px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: background var(--ease-fast);
}
.hamburger:hover { background: var(--gold-10); }
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--ease-mid);
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer – fixed below the header */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  z-index: 999;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  background: rgba(13, 17, 23, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: max-height 0.42s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.28s ease,
              border-color 0.2s ease;
}
.mobile-nav.open {
  max-height: calc(100vh - var(--nav-h));
  opacity: 1;
  border-bottom-color: var(--border-gold);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-nav-inner {
  padding: 20px 28px 32px;
}
.mobile-nav-inner > a {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--ease-fast);
}
.mobile-nav-inner > a:last-of-type { border-bottom: none; }
.mobile-nav-inner > a:hover { color: var(--gold); }
.mobile-nav .mobile-nav-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
}
.mobile-nav .mobile-nav-actions .btn {
  width: 100%;
  min-width: 0;
}

/* -- 9. Hero Section --------------------------------------- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  box-sizing: border-box;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,17,21,0.72) 0%,
    rgba(15,17,21,0.50) 45%,
    rgba(15,17,21,0.28) 100%
  );
  z-index: 1;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 0;
}
/* Subtle grain overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
  padding: 40px 0 96px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-label::before, .hero-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero-headline {
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtext {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 34px;
  max-width: 480px;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--ease-fast);
}
.hero-play-btn:hover { color: var(--gold); }
.hero-play-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--ease-fast), background var(--ease-fast);
}
.hero-play-btn:hover .hero-play-icon {
  border-color: var(--gold);
  background: var(--gold-10);
}
/* Hero stats */
.hero-stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}
.hero-stat-item {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-number span { color: var(--gold); }
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
/* Hero trust badges */
.hero-trust {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.hero-trust-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

/* -- 10. Search Bar ---------------------------------------- */
#search-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 48px 0;
}
.search-heading {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-family: var(--font-body);
}
.search-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 14px;
  align-items: end;
}
.search-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.search-field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.search-field select,
.search-field input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  padding: 13px 16px;
  color: var(--text-primary);
  font-size: 0.9rem;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF37' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.search-field select:focus,
.search-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-10);
}

/* -- 11. Featured Members ---------------------------------- */
#featured-members { background: var(--bg-primary); }
.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.member-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--ease-mid), box-shadow var(--ease-mid), border-color var(--ease-mid);
  cursor: pointer;
}
.member-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-color: var(--gold-30);
}
.member-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.member-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}
.member-card:hover .member-card-image img { transform: scale(1.06); }
.member-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,17,21,0.95) 0%, transparent 55%);
  z-index: 1;
}
.member-card-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.member-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px;
  z-index: 2;
}
.member-card-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.member-card-meta {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.member-card-meta span { display: flex; align-items: center; gap: 4px; }
.member-card-action {
  width: 100%;
  text-align: center;
  padding: 10px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: var(--r-sm);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background var(--ease-fast), color var(--ease-fast);
}
.member-card:hover .member-card-action { background: var(--gold); color: #0F1115; }

/* -- 12. Why Choose Us ------------------------------------- */
#why-choose-us { background: var(--bg-secondary); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  text-align: center;
  transition: transform var(--ease-mid), box-shadow var(--ease-mid), border-color var(--ease-mid);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-color: var(--gold-30);
}
.feature-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--r-pill);
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold);
  font-size: 1.6rem;
  transition: background var(--ease-mid), box-shadow var(--ease-fast);
}
.feature-card:hover .feature-icon-wrap {
  background: var(--gold-20);
  box-shadow: var(--glow-gold);
}
.feature-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.feature-card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* -- 13. How It Works -------------------------------------- */
#how-it-works { background: var(--bg-primary); }
.how-it-works-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}
.how-left-content {}
.how-left-content .section-header { text-align: left; margin-bottom: 28px; }
.how-left-content .section-header .section-divider { margin: 0 0 20px 0; }
.how-left-subtext {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
}
.steps-list { display: flex; flex-direction: column; gap: 32px; }
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.step-number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0F1115;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(var(--gold-rgb), 0.35);
}
.step-content-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.step-content-text { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }
.how-right-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 480px;
}
.how-visual-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
}
.how-visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.how-visual-img:first-child {
  grid-row: 1 / 3;
  border-color: var(--gold-30);
  box-shadow: var(--shadow-gold);
}

/* -- 14. Popular Cities ------------------------------------ */
#popular-cities { background: var(--bg-secondary); }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.city-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid var(--border-gold);
  transition: transform var(--ease-mid), box-shadow var(--ease-mid);
}
.city-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg), var(--shadow-gold); }
.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}
.city-card:hover img { transform: scale(1.08); }
.city-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,17,21,0.94) 0%, rgba(15,17,21,0.2) 60%, transparent 100%);
  z-index: 1;
}
.city-card-info {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
}
.city-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.city-members {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
}
.cities-cta { text-align: center; }

/* -- 15. Testimonials -------------------------------------- */
#testimonials { background: var(--bg-primary); }
.testimonials-slider-wrap {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform var(--ease-slow);
  will-change: transform;
}
.testimonial-slide {
  min-width: calc(33.333% - 11px);
  margin-right: 16px;
  padding: 36px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  flex-shrink: 0;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 1.1rem;
}
.testimonial-text {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--r-pill);
  object-fit: cover;
  border: 2px solid var(--gold-20);
}
.testimonial-author-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-primary);
}
.testimonial-author-role { font-size: 0.78rem; color: var(--gold); }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
}
.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--ease-fast);
  background: transparent;
}
.slider-btn:hover { background: var(--gold-10); border-color: var(--gold); }
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-pill);
  background: var(--border-gold);
  cursor: pointer;
  transition: all var(--ease-fast);
  border: none;
}
.slider-dot.active { background: var(--gold); width: 24px; }

/* -- 16. Blog Preview -------------------------------------- */
#blog-preview { background: var(--bg-secondary); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--ease-mid), box-shadow var(--ease-mid);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}
.blog-card:hover .blog-card-image img { transform: scale(1.06); }
.blog-card-body { padding: 26px 22px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.blog-card-category {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.35;
  transition: color var(--ease-fast);
}
.blog-card:hover .blog-card-title { color: var(--gold); }
.blog-card-excerpt {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.blog-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--ease-fast);
}
.blog-card:hover .blog-card-link { gap: 10px; }
.blog-cta { text-align: center; margin-top: 48px; }

/* -- 17. Newsletter ---------------------------------------- */
/* -- CTA Banner ------------------------------------------- */
#cta-banner {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: var(--bg-secondary);
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-bg-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}
.cta-bg-glow--left {
  top: -120px;
  left: -160px;
  background: radial-gradient(circle, rgba(212,175,55,0.22) 0%, transparent 70%);
}
.cta-bg-glow--right {
  bottom: -140px;
  right: -160px;
  background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, transparent 70%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-20);
  background: var(--gold-10);
  border-radius: var(--r-pill);
  padding: 6px 18px;
  margin-bottom: 28px;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 48px;
}
.cta-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.cta-split-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 36px;
  border-radius: var(--r-lg);
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  min-width: 210px;
  cursor: pointer;
}
.cta-split-btn--outline {
  background: transparent;
  border-color: var(--gold-20);
  color: var(--text-primary);
}
.cta-split-btn--outline:hover {
  border-color: var(--gold);
  background: var(--gold-10);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212,175,55,0.15);
}
.cta-split-btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
.cta-split-btn--gold:hover {
  background: var(--gold-light, #e2c15a);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212,175,55,0.35);
}
.cta-split-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  margin-bottom: 4px;
}
.cta-split-btn--gold .cta-split-icon {
  background: rgba(0,0,0,0.1);
}
.cta-split-main {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
}
.cta-split-sub {
  font-size: 0.78rem;
  opacity: 0.65;
  letter-spacing: 0.04em;
}
.cta-split-or {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 4px;
  flex-shrink: 0;
}
.cta-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.cta-trust li svg { color: var(--gold); flex-shrink: 0; }

/* -- 18. Footer -------------------------------------------- */
#site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-gold);
  padding: 80px 0 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-subtle);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all var(--ease-fast);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-10); }
.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  font-size: 0.87rem;
  color: var(--text-secondary);
  transition: color var(--ease-fast);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--ease-fast);
}
.footer-legal a:hover { color: var(--gold); }

/* -- 19. Mobile Bottom CTA --------------------------------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: rgba(13, 17, 23, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-gold);
  padding: 12px 20px;
}
.mobile-cta-bar .btn { width: 100%; }

/* -- 20. Page Hero (Inner Pages) --------------------------- */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 80px;
  background: var(--bg-secondary);
  text-align: center;
  border-bottom: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-label { margin-bottom: 16px; }
.page-hero-title { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 16px; }
.page-hero-subtitle { font-size: 1.05rem; color: var(--text-secondary); max-width: 540px; margin: 0 auto; }

/* -- 21. About Page Specific ------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-gold);
}
.about-img-main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 55%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 3px solid var(--bg-secondary);
  box-shadow: var(--shadow-lg);
}
.about-img-accent img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-stat-band {
  position: absolute;
  top: 28px;
  left: -20px;
  background: var(--bg-card);
  border: 1px solid var(--gold-30);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}
.about-stat-band .num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.about-stat-band .lbl { font-size: 0.75rem; color: var(--text-muted); }
.about-text .section-header { text-align: left; }
.about-text .section-header .section-divider { margin-left: 0; }
.values-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  transition: border-color var(--ease-fast);
}
.value-item:hover { border-color: var(--gold-20); }
.value-icon { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.value-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.value-text { font-size: 0.85rem; color: var(--text-secondary); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  transition: transform var(--ease-mid), box-shadow var(--ease-mid);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: var(--r-pill);
  object-fit: cover;
  margin: 0 auto 18px;
  border: 2px solid var(--gold-20);
}
.team-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--gold); margin-bottom: 12px; }
.team-bio { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.65; }

/* -- 22. Contact Page -------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: 44px 36px;
}
.contact-info-title { font-size: 1.5rem; margin-bottom: 10px; }
.contact-info-text { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 36px; }
.contact-methods { display: flex; flex-direction: column; gap: 24px; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  transition: border-color var(--ease-fast);
}
.contact-method:hover { border-color: var(--gold-20); }
.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-method-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-method-value { font-size: 0.92rem; font-weight: 600; color: var(--text-primary); }
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: 44px 36px;
}
.contact-form-title { font-size: 1.5rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  padding: 14px 16px;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-10);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* -- 23. Blog Page ----------------------------------------- */
.blog-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-gold);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--ease-fast);
}
.filter-btn:hover,
.filter-btn.active { background: var(--gold); color: #0F1115; border-color: var(--gold); }
.blog-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.blog-featured-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 28px;
  transition: box-shadow var(--ease-mid);
}
.blog-featured-card:hover { box-shadow: var(--shadow-lg); }
.blog-featured-card .blog-card-image { aspect-ratio: 16/9; }
.blog-featured-body { padding: 32px; }
.blog-featured-title { font-size: 1.55rem; }
.blog-cards-list { display: flex; flex-direction: column; gap: 20px; }
.blog-list-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 16px;
  transition: border-color var(--ease-fast);
}
.blog-list-card:hover { border-color: var(--gold-20); }
.blog-list-img { border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 1; }
.blog-list-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-list-title { font-size: 0.88rem; font-weight: 700; margin-bottom: 6px; line-height: 1.35; }
.blog-list-date { font-size: 0.75rem; color: var(--text-muted); }
/* Sidebar */
.blog-sidebar {}
.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 28px;
}
.sidebar-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.sidebar-search {
  display: flex;
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  overflow: hidden;
}
.sidebar-search input {
  flex: 1;
  background: var(--bg-secondary);
  padding: 12px 14px;
  color: var(--text-primary);
  font-size: 0.87rem;
}
.sidebar-search button {
  padding: 0 16px;
  background: var(--gold);
  color: #0F1115;
  font-weight: 700;
  cursor: pointer;
}
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-tag {
  padding: 6px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-gold);
  font-size: 0.78rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--ease-fast);
}
.sidebar-tag:hover { border-color: var(--gold); color: var(--gold); }

/* -- 24. Blog Post ----------------------------------------- */
.post-layout { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; }
.post-header { margin-bottom: 36px; }
.post-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.post-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 20px; line-height: 1.15; }
.post-hero-img { width: 100%; border-radius: var(--r-xl); overflow: hidden; margin-bottom: 40px; border: 1px solid var(--border-gold); }
.post-hero-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-body { font-size: 1rem; color: var(--text-secondary); line-height: 1.85; }
.post-body h2 { font-size: 1.65rem; color: var(--text-primary); margin: 48px 0 18px; }
.post-body h3 { font-size: 1.25rem; color: var(--text-primary); margin: 36px 0 14px; }
.post-body p { margin-bottom: 22px; }
.post-body ul, .post-body ol { margin: 0 0 22px 24px; }
.post-body li { margin-bottom: 10px; }
.post-body blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1.05rem;
}
.post-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--border-subtle); }
.post-share { display: flex; align-items: center; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.post-share-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.share-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--ease-fast);
  cursor: pointer;
}
.share-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-10); }
.post-author-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  margin-top: 48px;
}
.post-author-avatar { width: 72px; height: 72px; border-radius: var(--r-pill); border: 2px solid var(--gold-20); object-fit: cover; flex-shrink: 0; }
.post-author-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.post-author-role { font-size: 0.8rem; color: var(--gold); margin-bottom: 10px; }
.post-author-bio { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.65; }

/* -- 25. FAQ Accordion ------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--ease-fast);
}
.faq-item.open { border-color: var(--gold-30); }
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-question { font-weight: 600; font-size: 0.97rem; color: var(--text-primary); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--gold-30);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--ease-mid), background var(--ease-fast);
  font-size: 0.8rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold-10); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--ease-mid), padding var(--ease-mid);
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* -- 26. Scroll-reveal utility ----------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* -- 27. Breadcrumb ---------------------------------------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--ease-fast); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* -- 28. Pagination ---------------------------------------- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}
.page-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--ease-fast);
  background: transparent;
}
.page-btn:hover, .page-btn.active { background: var(--gold); color: #0F1115; border-color: var(--gold); font-weight: 700; }

/* -- 29. Cookie Banner ------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 520px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-text { font-size: 0.87rem; color: var(--text-secondary); margin-bottom: 16px; }
.cookie-actions { display: flex; gap: 10px; }

/* -- 30. Back-to-top --------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: var(--r-pill);
  background: var(--gold);
  color: #0F1115;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(var(--gold-rgb), 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--ease-mid);
  z-index: 888;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(var(--gold-rgb), 0.55); }

/* -- 31. Divider ------------------------------------------- */
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-20) 30%, var(--gold-30) 50%, var(--gold-20) 70%, transparent 100%);
}

/* -- 32. Stats Band ---------------------------------------- */
.stats-band {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 56px 0;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary); }
