/* ============================================================
   Vichara LLC — Global Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97D;
  --gold-dark: #A8862E;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --off-white: #F9F8F6;
  --gray-100: #F3F2F0;
  --gray-200: #E5E4E0;
  --gray-400: #9C9A94;
  --gray-600: #5C5A54;
  --gray-800: #2A2A28;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ---------- Gold Gradient Utilities ---------- */
.gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-gradient-bg {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
}

.gold-gradient-text-subtle {
  background: linear-gradient(135deg, #C9A84C 0%, #E8C97D 50%, #C9A84C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Gold Button ---------- */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s ease;
}
.btn-gold:hover::after { background: rgba(255,255,255,0.12); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.35); }
.btn-gold:active { transform: translateY(0); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline-gold:hover {
  background: rgba(201,168,76,0.08);
  box-shadow: 0 8px 24px rgba(201,168,76,0.15);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

/* ---------- Sticky Header ---------- */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
  background: transparent;
}
#main-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}
#main-header.light-header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
#main-header.light-header .nav-link { color: var(--black) !important; }
#main-header.light-header .nav-link:hover { color: var(--gold) !important; }
#main-header.light-header .logo-text { color: var(--gold) !important; }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.logo-text span {
  color: inherit;
}
.logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  display: block;
  margin-top: -4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { transform: scaleX(1); }

/* ---------- Mobile Menu ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.light-ham span { background: var(--black); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 100vw);
  background: var(--black);
  z-index: 1050;
  padding: 100px 48px 48px;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(201,168,76,0.15);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1040;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.mobile-menu-overlay.open { opacity: 1; }

.mobile-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--gold); }
.mobile-contact-info {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-contact-info a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.mobile-contact-info a:hover { color: var(--gold); }

@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .desktop-nav { display: none !important; }
  .mobile-menu { display: flex; }
  .mobile-menu-overlay { display: block; }
}
@media (max-width: 768px) {
  .header-inner { padding: 0 20px; }
}

/* ---------- Hero Sections ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.72) 50%, rgba(10,10,10,0.82) 100%);
  z-index: 1;
}
.hero-overlay-light {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.inner-hero {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  padding-top: 140px;
}

/* ---------- Section Styles ---------- */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
}
.section-title.white { color: var(--white); }

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 560px;
}
.section-subtitle.white { color: rgba(255,255,255,0.65); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.card-dark {
  background: var(--gray-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  transition: var(--transition);
}
.card-dark:hover {
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transform: translateY(-4px);
}

/* ---------- Gold Icon Wrapper ---------- */
.icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 2px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(232,201,125,0.08));
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Stats ---------- */
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 40px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}
.star-rating { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }

/* ---------- Pricing Cards ---------- */
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 4px;
  padding: 48px 36px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
  transform: translateY(-6px);
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 12px 48px rgba(201,168,76,0.18);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}
.feature-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.feature-check .check-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ---------- FAQ Accordion ---------- */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gold);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ---------- Form Styles ---------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.form-input, .form-select, .form-textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 2px;
  padding: 14px 18px;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-textarea { resize: vertical; min-height: 140px; }
.success-message {
  display: none;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  padding: 20px 24px;
  color: var(--gold-dark);
  font-size: 0.95rem;
  margin-top: 16px;
}

/* ---------- Process Steps ---------- */
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(201,168,76,0.12);
  transition: color 0.3s ease;
  user-select: none;
}
.step-card:hover .step-number { color: rgba(201,168,76,0.25); }

/* ---------- Team Cards ---------- */
.team-card {
  text-align: center;
  transition: var(--transition);
}
.team-img-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid rgba(201,168,76,0.2);
  transition: var(--transition);
}
.team-card:hover .team-img-wrap {
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(201,168,76,0.08);
}
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Value Cards ---------- */
.value-card {
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  transition: var(--transition);
  background: var(--white);
}
.value-card:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--black) 0%, #1a1400 40%, var(--black) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,0.12) 0%, transparent 70%);
}

/* ---------- Footer ---------- */
.footer-main {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  padding: 4px 0;
}
.footer-link:hover { color: var(--gold); }
.social-icon-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
  text-decoration: none;
}
.social-icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ---------- Legal Pages ---------- */
.legal-page {
  background: var(--white);
  padding-top: 100px;
}
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}
.legal-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
}
.legal-section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-top: 40px;
  margin-bottom: 14px;
}
.legal-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal-list {
  list-style: none;
  margin-bottom: 16px;
}
.legal-list li {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delay helpers */
.delay-100 { transition-delay: 0.1s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-500 { transition-delay: 0.5s !important; }
.delay-600 { transition-delay: 0.6s !important; }

/* ---------- Divider ---------- */
.gold-divider {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 1px;
}

/* ---------- Contact Info ---------- */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-info-item:last-of-type { border-bottom: none; }

/* ---------- Service Cards ---------- */
.service-card {
  padding: 40px 36px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  background: var(--white);
  transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  transform: translateY(-5px);
}
.service-card .icon-wrap {
  margin-bottom: 24px;
}

/* ---------- Responsive Utilities ---------- */
@media (max-width: 768px) {
  .hero-content { padding: 0 20px; }
  .legal-content { padding: 48px 20px 72px; }
  .testimonial-card { padding: 28px 24px; }
  .pricing-card { padding: 40px 24px; }
  .service-card { padding: 32px 24px; }
  .value-card { padding: 32px 24px; }
}

/* ---------- Page Transitions ---------- */
.page-transition {
  animation: pageIn 0.4s ease forwards;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Noise Texture Overlay (Luxury Touch) ---------- */
.noise-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 3;
  opacity: 0.4;
}

/* ---------- Number Highlight ---------- */
.big-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
}
