/* ============================================================
   DESIGN TOKENS — Matching lum360.com exactly
============================================================ */
:root {
  --color-bg:       #050505;
  --color-surface:  #0F0F0F;
  --color-border:   #1C1C1C;
  --color-gold:     #D4AF37;
  --color-gold-dim: #B8922A;
  --color-gold-glow:rgba(212,175,55,0.15);
  --color-text:     #FAFAFA;
  --color-muted:    #888888;
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --container-w:    1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }
body { font-family: 'Inter', sans-serif; background: var(--color-bg); color: var(--color-text); overflow-x: hidden; cursor: none; }
@media (hover: none) { body { cursor: auto; } }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: var(--container-w); margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ─ CURSOR ─ */
#cursor-dot { position: fixed; width: 8px; height: 8px; background: var(--color-gold); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .2s, height .2s; }
#cursor-ring { position: fixed; width: 36px; height: 36px; border: 1px solid rgba(212,175,55,0.5); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: width .3s, height .3s, border-color .3s; }
.cursor-hover #cursor-dot { width: 12px; height: 12px; }
.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: rgba(212,175,55,0.8); }
@media (hover: none) { #cursor-dot, #cursor-ring { display: none; } }

/* ─ PARTICLES ─ */
#web-particles { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; opacity: 0.75; mix-blend-mode: screen; }

/* ═══ NAV ═══ */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); background: rgba(5,5,5,0.88); border-bottom: 1px solid rgba(212,175,55,0.12); height: 72px; display: flex; align-items: center; }
.nav-inner { max-width: var(--container-w); margin: 0 auto; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { transition: filter .3s; }
.nav-logo:hover img { filter: drop-shadow(0 0 6px rgba(212,175,55,0.4)); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: .04em; color: var(--color-muted); transition: color .2s; }
.nav-links a:hover { color: var(--color-text); }
.nav-services-trigger { position: relative; }
.nav-services-trigger > a { display: flex; align-items: center; gap: 6px; }
.nav-services-trigger > a::after { content: ''; width: 6px; height: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-2px); display: inline-block; transition: transform .2s; }
.nav-services-trigger:hover > a::after { transform: rotate(-135deg) translateY(-2px); }
.nav-dropdown::before { content: ''; position: absolute; top: -20px; left: 0; width: 100%; height: 20px; }
.nav-dropdown { position: absolute; top: calc(100% + 20px); left: 50%; transform: translateX(-50%) translateY(-8px); width: 480px; background: rgba(10,10,10,0.96); backdrop-filter: blur(20px); border: 1px solid rgba(212,175,55,0.12); padding: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; }
.nav-services-trigger:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-dropdown-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px; border-radius: 4px; transition: background .15s; }
.nav-dropdown-item:hover { background: rgba(212,175,55,0.06); }
.nav-dropdown-icon { width: 32px; height: 32px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--color-gold); opacity: .7; }
.nav-dropdown-text span { display: block; font-size: 13px; font-weight: 500; color: var(--color-text); margin-bottom: 2px; }
.nav-dropdown-text p { font-size: 11px; color: var(--color-muted); line-height: 1.4; }
.btn-gold { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; font-size: 12px; font-weight: 600; letter-spacing: .06em; border: none; cursor: none; transition: all .3s var(--ease-out); white-space: nowrap; text-transform: uppercase; }
.btn-gold.solid { background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dim)); color: #050505; }
.btn-gold.solid:hover { transform: scale(1.02); box-shadow: 0 0 24px rgba(212,175,55,0.4); }
.btn-gold.outline { background: transparent; color: var(--color-gold); border: 1px solid var(--color-gold); }
.btn-gold.outline:hover { background: var(--color-gold-glow); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--color-text); transition: all .3s; }
@media (max-width: 900px) { .hamburger { display: flex; } .nav-cta { display: none; } .nav-links { display: none; } .nav-inner { padding: 0 24px; } }
.mobile-nav { position: fixed; top: 72px; left: 0; right: 0; background: rgba(5,5,5,0.98); border-bottom: 1px solid var(--color-border); padding: 24px; transform: translateY(-100%); opacity: 0; transition: all .3s ease; z-index: 90; }
.mobile-nav.open { transform: translateY(0); opacity: 1; }
.mobile-nav a { display: block; padding: 14px 0; font-size: 15px; color: var(--color-muted); border-bottom: 1px solid var(--color-border); transition: color .2s; }
.mobile-nav a:last-child { border-bottom: none; }

/* ═══ HERO ═══ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2400&q=80'); background-size: cover; background-position: center; transform: scale(1.08); will-change: transform; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,5,5,0.5) 0%, rgba(5,5,5,0.2) 40%, rgba(5,5,5,0.8) 100%); }
.hero-grain { 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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"); opacity: 0.6; pointer-events: none; }
.hero-content { position: relative; z-index: 10; text-align: center; max-width: 920px; padding: 0 24px; }
.eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-gold); display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.eyebrow::before, .eyebrow::after { content: ''; width: 24px; height: 1px; background: var(--color-gold); opacity: 0.7; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(44px, 7vw, 92px); font-weight: 300; line-height: 1.04; letter-spacing: -0.01em; color: var(--color-text); margin-bottom: 28px; }
.hero-title em { font-style: italic; color: var(--color-gold); }
.hero-sub { font-size: clamp(15px, 1.5vw, 18px); color: rgba(255,255,255,0.72); font-weight: 300; line-height: 1.7; max-width: 660px; margin: 0 auto 44px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--color-gold); opacity: 0.6; }
.scroll-indicator span { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: rgba(212,175,55,0.25); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 50%; background: var(--color-gold); animation: scrollDown 2s infinite ease-in-out; }
@keyframes scrollDown { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }

/* ═══ TRUST BAR ═══ */
.trust-bar { background: var(--color-surface); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); padding: 32px 0; }
.trust-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: center; }
.trust-stat { text-align: center; }
.trust-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: var(--color-gold); line-height: 1; margin-bottom: 6px; }
.trust-stat-label { font-size: 11px; color: var(--color-muted); letter-spacing: 0.06em; line-height: 1.4; }
.trust-divider { width: 1px; height: 48px; background: var(--color-border); margin: 0 auto; }
@media (max-width: 768px) { .trust-bar-inner { grid-template-columns: 1fr 1fr; gap: 32px; } .trust-divider { display: none; } }

/* ═══ COMMON ═══ */
.section-label { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-gold); display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.section-label::before { content: ''; width: 20px; height: 1px; background: var(--color-gold); opacity: 0.7; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ═══ MARKET CONTEXT ═══ */
.market {
  padding: 120px 0;
  background: var(--color-bg);
  position: relative; overflow: hidden;
}
.market-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 400px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.market-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.market-headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 4vw, 58px); font-weight: 300; line-height: 1.1; margin-bottom: 28px; }
.market-headline em { font-style: italic; color: var(--color-gold); }
.market-body { font-size: 15px; color: var(--color-muted); line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
.market-callout { border-left: 2px solid var(--color-gold); padding-left: 20px; margin: 28px 0; }
.market-callout p { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; color: var(--color-text); line-height: 1.5; }
.market-stats-col { display: flex; flex-direction: column; gap: 0; }
.market-stat-row {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 28px 0; border-bottom: 1px solid var(--color-border);
}
.market-stat-row:last-child { border-bottom: none; }
.market-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--color-gold); line-height: 1; flex-shrink: 0; min-width: 100px; }
.market-stat-info h4 { font-size: 14px; font-weight: 600; color: var(--color-text); margin-bottom: 6px; }
.market-stat-info p { font-size: 13px; color: var(--color-muted); line-height: 1.6; }
@media (max-width: 900px) { .market-grid { grid-template-columns: 1fr; gap: 56px; } }

/* ═══ SHOWCASE ═══ */
.showcase-section { padding: 100px 0 120px; background: var(--color-surface); }
.showcase-header { text-align: center; margin-bottom: 56px; }
.showcase-label { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-muted); border: 1px solid var(--color-border); border-radius: 100px; padding: 6px 16px; margin-bottom: 24px; }
.showcase-label-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-gold); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.showcase-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 50px); font-weight: 300; line-height: 1.1; margin-bottom: 16px; }
.showcase-title em { font-style: italic; color: var(--color-gold); }
.showcase-sub { font-size: 15px; color: var(--color-muted); max-width: 580px; margin: 0 auto; line-height: 1.7; font-weight: 300; }
.showcase-player-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.showcase-player { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; box-shadow: 0 0 0 1px rgba(212,175,55,0.18), 0 40px 80px rgba(0,0,0,0.6), 0 0 100px rgba(212,175,55,0.05); cursor: pointer; transition: box-shadow .4s ease; }
.showcase-player:hover { box-shadow: 0 0 0 1px rgba(212,175,55,0.32), 0 50px 100px rgba(0,0,0,0.7), 0 0 140px rgba(212,175,55,0.08); }
.showcase-cover { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 2; transition: opacity .6s ease; }
.showcase-cover.hidden { opacity: 0; pointer-events: none; }
.showcase-bg-img { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.15) 50%, rgba(5,5,5,0.65) 100%), url('https://images.unsplash.com/photo-1613490908575-9b2f67664e10?auto=format&fit=crop&w=1600&q=75') center/cover; filter: brightness(0.5) saturate(0.65); transition: transform .8s var(--ease-out); }
.showcase-player:hover .showcase-bg-img { transform: scale(1.03); }
.showcase-cover-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(5,5,5,0.6) 100%); }
.showcase-badge { position: absolute; top: 20px; right: 20px; z-index: 5; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); border: 1px solid rgba(212,175,55,0.3); border-radius: 8px; padding: 8px 14px; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-gold); }
.showcase-play-wrap { position: relative; z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.showcase-play-btn { width: 80px; height: 80px; border-radius: 50%; background: rgba(0,0,0,0.55); border: 1.5px solid rgba(212,175,55,0.55); display: flex; align-items: center; justify-content: center; cursor: pointer; position: relative; transition: background .3s, border-color .3s, transform .3s; }
.showcase-play-btn:hover { background: rgba(212,175,55,0.18); border-color: rgba(212,175,55,0.9); transform: scale(1.08); }
.showcase-play-btn::before, .showcase-play-btn::after { content: ''; position: absolute; inset: -12px; border-radius: 50%; border: 1px solid rgba(212,175,55,0.2); animation: realPulse 2.4s ease-in-out infinite; }
.showcase-play-btn::after { inset: -24px; animation-delay: .8s; }
@keyframes realPulse { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.06); opacity: 1; } }
.showcase-play-btn svg { width: 28px; height: 28px; fill: #fff; margin-left: 4px; }
.showcase-play-cta { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.showcase-cover-info { position: absolute; bottom: 24px; left: 0; right: 0; z-index: 5; text-align: center; font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; }
.showcase-iframe-wrap { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .6s ease; }
.showcase-iframe-wrap.active { opacity: 1; pointer-events: auto; }
.showcase-iframe-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.showcase-note { text-align: center; margin-top: 20px; font-size: 11px; color: var(--color-muted); letter-spacing: 0.08em; }

/* ═══ CASE STUDY ═══ */
.case-study { padding: 120px 0; background: var(--color-bg); }
.case-intro { text-align: center; max-width: 760px; margin: 0 auto 80px; }
.case-intro-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.5vw, 48px); font-weight: 300; line-height: 1.1; margin-bottom: 16px; }
.case-intro-title em { font-style: italic; color: var(--color-gold); }
.case-intro-sub { font-size: 15px; color: var(--color-muted); line-height: 1.7; }

/* Timeline narrative */
.case-timeline { display: flex; flex-direction: column; gap: 0; max-width: 900px; margin: 0 auto; position: relative; }
.case-timeline::before { content: ''; position: absolute; left: 32px; top: 0; bottom: 0; width: 1px; background: linear-gradient(180deg, transparent, var(--color-gold) 10%, var(--color-gold) 90%, transparent); opacity: 0.2; }
@media (max-width: 600px) { .case-timeline::before { display: none; } }
.ct-item { display: flex; gap: 36px; align-items: flex-start; padding: 48px 0; border-bottom: 1px solid var(--color-border); }
.ct-item:last-child { border-bottom: none; }
.ct-num { width: 64px; height: 64px; border-radius: 50%; border: 1px solid rgba(212,175,55,0.35); background: rgba(212,175,55,0.05); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--color-gold); flex-shrink: 0; position: relative; z-index: 2; }
.ct-body { flex: 1; }
.ct-label { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 10px; }
.ct-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: var(--color-text); margin-bottom: 14px; }
.ct-text { font-size: 14px; color: var(--color-muted); line-height: 1.8; font-weight: 300; }
.ct-quote { border-left: 2px solid var(--color-gold); padding-left: 20px; margin-top: 20px; }
.ct-quote p { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; color: rgba(255,255,255,0.8); line-height: 1.5; margin-bottom: 6px; }
.ct-quote cite { font-size: 11px; color: var(--color-muted); letter-spacing: 0.08em; }
@media (max-width: 600px) { .ct-item { flex-direction: column; gap: 16px; } .ct-num { width: 48px; height: 48px; } }

/* ═══ RESULTS ═══ */
.results { padding: 80px 0; background: var(--color-surface); }
.results-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 3vw, 40px); font-weight: 300; line-height: 1.1; margin-bottom: 48px; text-align: center; }
.results-title em { font-style: italic; color: var(--color-gold); }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.result-card { background: rgba(255,255,255,0.02); border: 1px solid var(--color-border); padding: 32px 24px; text-align: center; transition: border-color .3s; }
.result-card:hover { border-color: rgba(212,175,55,0.28); }
.result-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--color-gold); line-height: 1; margin-bottom: 10px; }
.result-label { font-size: 12px; color: var(--color-muted); line-height: 1.55; }
@media (max-width: 900px) { .results-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .results-grid { grid-template-columns: 1fr; } }

/* ═══ BUYER PROFILES ═══ */
.buyers { padding: 120px 0; background: var(--color-bg); }
.buyers-header { text-align: center; margin-bottom: 64px; }
.buyers-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.5vw, 48px); font-weight: 300; line-height: 1.1; margin-bottom: 16px; }
.buyers-title em { font-style: italic; color: var(--color-gold); }
.buyers-sub { font-size: 15px; color: var(--color-muted); max-width: 520px; margin: 0 auto; line-height: 1.7; }
.buyers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.buyer-card { padding: 40px 32px; border: 1px solid var(--color-border); background: rgba(255,255,255,0.015); position: relative; overflow: hidden; transition: border-color .3s, transform .3s; }
.buyer-card:hover { border-color: rgba(212,175,55,0.25); transform: translateY(-4px); }
.buyer-card-icon { width: 48px; height: 48px; color: var(--color-gold); margin-bottom: 24px; }
.buyer-type { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 10px; }
.buyer-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; color: var(--color-text); margin-bottom: 14px; }
.buyer-body { font-size: 13px; color: var(--color-muted); line-height: 1.7; font-weight: 300; }
@media (max-width: 900px) { .buyers-grid { grid-template-columns: 1fr; } }

/* ═══ ADVANTAGES ═══ */
.advantages { padding: 120px 0; background: var(--color-surface); }
.advantages-header { text-align: center; margin-bottom: 64px; }
.advantages-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.5vw, 48px); font-weight: 300; line-height: 1.1; margin-bottom: 16px; }
.advantages-title em { font-style: italic; color: var(--color-gold); }
.advantages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.adv-card { display: flex; gap: 24px; align-items: flex-start; padding: 32px 28px; border: 1px solid var(--color-border); background: rgba(255,255,255,0.015); transition: border-color .3s; }
.adv-card:hover { border-color: rgba(212,175,55,0.22); }
.adv-num { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; color: rgba(212,175,55,0.25); line-height: 1; flex-shrink: 0; }
.adv-content h4 { font-size: 15px; font-weight: 600; color: var(--color-text); margin-bottom: 8px; }
.adv-content p { font-size: 13px; color: var(--color-muted); line-height: 1.65; font-weight: 300; }
@media (max-width: 768px) { .advantages-grid { grid-template-columns: 1fr; } }

/* ═══ MID CTA ═══ */
.mid-cta { padding: 100px 0; background: var(--color-bg); text-align: center; position: relative; overflow: hidden; }
.mid-cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(212,175,55,0.07) 0%, transparent 70%); pointer-events: none; }
.mid-cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.5vw, 48px); font-weight: 300; line-height: 1.2; margin-bottom: 16px; position: relative; z-index: 2; }
.mid-cta-title em { font-style: italic; color: var(--color-gold); }
.mid-cta-sub { font-size: 15px; color: var(--color-muted); max-width: 480px; margin: 0 auto 36px; line-height: 1.7; position: relative; z-index: 2; }

/* ═══ FAQ ═══ */
.faq { padding: 120px 0; background: var(--color-surface); }
.faq-header { text-align: center; margin-bottom: 64px; }
.faq-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.5vw, 48px); font-weight: 300; line-height: 1.1; margin-bottom: 12px; }
.faq-title em { font-style: italic; color: var(--color-gold); }
.faq-sub { font-size: 14px; color: var(--color-muted); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.faq-item { border: 1px solid var(--color-border); background: rgba(255,255,255,0.015); overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: rgba(212,175,55,0.2); }
.faq-q { padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none; font-size: 15px; font-weight: 500; color: var(--color-text); transition: color .2s; }
.faq-q:hover { color: var(--color-gold); }
.faq-q-icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; }
.faq-q-icon::before, .faq-q-icon::after { content: ''; position: absolute; background: currentColor; border-radius: 2px; transition: transform .3s, opacity .3s; }
.faq-q-icon::before { width: 100%; height: 1px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-q-icon::after { width: 1px; height: 100%; top: 0; left: 50%; transform: translateX(-50%); }
.faq-item.open .faq-q-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 20px 28px 24px; font-size: 14px; color: var(--color-muted); line-height: 1.75; font-weight: 300; border-top: 1px solid var(--color-border); }

/* ═══ FINAL CTA ═══ */
.final-cta { padding: 160px 0; background: var(--color-bg); text-align: center; position: relative; overflow: hidden; }
.final-cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 500px; background: radial-gradient(ellipse, rgba(212,175,55,0.07) 0%, transparent 70%); pointer-events: none; }
.final-cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 72px); font-weight: 300; line-height: 1.05; margin-bottom: 24px; position: relative; z-index: 2; }
.final-cta-title em { font-style: italic; color: var(--color-gold); }
.final-cta-sub { font-size: 16px; color: var(--color-muted); max-width: 560px; margin: 0 auto 48px; line-height: 1.7; font-weight: 300; position: relative; z-index: 2; }
.final-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ═══ INTERNAL LINKS ═══ */
.internal-links { padding: 48px 0; background: var(--color-surface); border-top: 1px solid var(--color-border); }
.internal-links-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.internal-links-label { font-size: 11px; color: var(--color-muted); letter-spacing: 0.12em; text-transform: uppercase; }
.internal-links-list { display: flex; gap: 8px; flex-wrap: wrap; }
.internal-link { font-size: 12px; color: var(--color-muted); border: 1px solid var(--color-border); padding: 6px 14px; transition: color .2s, border-color .2s; }
.internal-link:hover { color: var(--color-gold); border-color: rgba(212,175,55,0.3); }

/* ═══ FOOTER ═══ */
footer { padding: 64px 0 40px; border-top: 1px solid var(--color-border); background: var(--color-bg); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { transition: filter .4s; }
.footer-logo:hover img { filter: drop-shadow(0 0 8px rgba(212,175,55,0.35)); }
.footer-tagline { font-size: 13px; color: var(--color-muted); line-height: 1.6; max-width: 280px; margin-bottom: 24px; }
.footer-wa { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--color-gold); border: 1px solid rgba(212,175,55,0.2); padding: 8px 16px; transition: border-color .2s; }
.footer-wa:hover { border-color: var(--color-gold); box-shadow: 0 0 14px rgba(212,175,55,0.15); }
.footer-col h4 { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--color-muted); transition: color .2s; }
.footer-col a:hover { color: var(--color-text); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--color-border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: var(--color-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: var(--color-muted); transition: color .2s; }
.footer-legal a:hover { color: var(--color-text); }
@media (max-width: 1024px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 36px; } }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 600px) {
  .btn-gold { padding: 12px 20px; font-size: 11px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .final-cta-actions { flex-direction: column; align-items: center; }
}
