/* ===== QWO MASTERING SALES — SHARED STYLES ===== */

:root {
  --marble-white: #f5f0eb;
  --marble-vein: #c4b5a3;
  --marble-dark: #8a7d6b;
  --onyx: #1a1a1a;
  --obsidian: #0d0d0d;
  --gold: #c9a84c;
  --gold-light: #e2cc7e;
  --gold-pale: #f0e4c0;
  --charcoal: #2c2c2c;
  --slate: #4a4a4a;
  --ivory: #faf8f5;
  --cream: #f2ede6;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--obsidian);
  color: var(--marble-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: default;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  mix-blend-mode: difference;
  transition: width 0.3s, height 0.3s, margin 0.3s;
}
.cursor-dot.expand {
  width: 48px; height: 48px;
  margin: -20px 0 0 -20px;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold);
}

/* ===== MARBLE TEXTURES ===== */
.marble-bg {
  position: relative;
  background:
    linear-gradient(135deg, rgba(196,181,163,0.06) 0%, transparent 50%),
    linear-gradient(225deg, rgba(196,181,163,0.04) 0%, transparent 40%);
}
.marble-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(112deg, transparent, transparent 80px, rgba(196,181,163,0.035) 80px, rgba(196,181,163,0.035) 81px),
    repeating-linear-gradient(68deg, transparent, transparent 130px, rgba(196,181,163,0.025) 130px, rgba(196,181,163,0.025) 131px);
  pointer-events: none; z-index: 0;
}
.marble-bg > * { position: relative; z-index: 1; }

.marble-light {
  position: relative;
  background: linear-gradient(135deg, #f5f0eb 0%, #ebe4d9 30%, #f0ece5 60%, #e8e0d4 100%);
}
.marble-light::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(118deg, transparent, transparent 55px, rgba(138,125,107,0.06) 55px, rgba(138,125,107,0.06) 56px),
    repeating-linear-gradient(62deg, transparent, transparent 90px, rgba(138,125,107,0.04) 90px, rgba(138,125,107,0.04) 91px);
  pointer-events: none; z-index: 0;
}
.marble-light > * { position: relative; z-index: 1; }

/* ===== NOISE OVERLAY ===== */
body::after {
  content: '';
  position: fixed; inset: 0;
  background: 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.85' 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: 9998;
  opacity: 0.4;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 48px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(13,13,13,0.9);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(201,168,76,0.06);
  transform: translateY(-100%);
}
.nav-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 18px;
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--marble-white); text-decoration: none;
}
.nav-brand span {
  font-family: 'Playfair Display', serif;
  font-weight: 400; font-style: italic;
  font-size: 12px; color: var(--gold);
  letter-spacing: 2px; margin-left: 14px;
}
.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--marble-vein); text-decoration: none;
  font-weight: 400; transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  color: var(--obsidian) !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 10px 24px !important; letter-spacing: 3px !important;
  font-weight: 600 !important;
  transition: all 0.4s !important;
  box-shadow: 0 2px 16px rgba(201,168,76,0.2);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,168,76,0.3); }
.nav-login {
  color: var(--marble-vein) !important;
  border: 1px solid rgba(201,168,76,0.2) !important;
  padding: 10px 24px !important; letter-spacing: 3px !important;
  font-weight: 400 !important;
  transition: all 0.4s !important;
}
.nav-login::after { display: none !important; }
.nav-login:hover {
  color: var(--gold) !important;
  border-color: rgba(201,168,76,0.5) !important;
  background: rgba(201,168,76,0.04);
}
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1px;
  background: var(--marble-white); margin: 6px 0;
}

/* ===== HERO (shared base) ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  padding: 100px 40px;
}
.hero::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-watermark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: clamp(180px, 25vw, 320px);
  letter-spacing: 30px;
  color: rgba(201,168,76,0.025);
  user-select: none; pointer-events: none;
  will-change: transform;
}
.hero-chess-piece {
  position: absolute; font-size: 80px;
  color: rgba(201,168,76,0.04); pointer-events: none;
  will-change: transform;
}
.hero-chess-piece:nth-child(2) { top: 15%; left: 8%; font-size: 60px; }
.hero-chess-piece:nth-child(3) { top: 25%; right: 10%; font-size: 90px; }
.hero-chess-piece:nth-child(4) { bottom: 20%; left: 12%; font-size: 70px; }
.hero-chess-piece:nth-child(5) { bottom: 15%; right: 8%; font-size: 55px; }

.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-overline {
  font-weight: 300; font-size: 11px;
  letter-spacing: 10px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
  overflow: hidden;
}
.hero-overline span { display: inline-block; }
.hero-logo-wrap { overflow: hidden; margin-bottom: 10px; }
.hero-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: clamp(72px, 14vw, 160px);
  letter-spacing: 20px; color: var(--marble-white);
  line-height: 1; display: inline-block;
}
.hero-tagline-wrap { overflow: hidden; margin-bottom: 24px; }
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(24px, 4vw, 42px);
  color: var(--gold); display: inline-block;
}
.hero-subtitle-wrap { overflow: hidden; margin-bottom: 48px; }
.hero-subtitle {
  font-weight: 200; font-size: 12px;
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--marble-vein); display: inline-block;
}
.hero-line {
  width: 1px; height: 0; margin: 0 auto 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.hero-actions {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  opacity: 0;
}

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--obsidian); padding: 18px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.4s;
  box-shadow: 0 4px 24px rgba(201,168,76,0.2);
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0; transition: opacity 0.4s;
}
.btn-gold:hover::before { opacity: 1; }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 36px rgba(201,168,76,0.35); }
.btn-gold span { position: relative; z-index: 1; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--marble-vein);
  padding: 18px 40px; border: 1px solid rgba(196,181,163,0.2);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 400;
  letter-spacing: 4px; text-transform: uppercase;
  text-decoration: none; transition: all 0.4s;
}
.btn-outline:hover {
  color: var(--gold); border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.04);
}

/* ===== STATS BAR ===== */
.stats-bar {
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  padding: 56px 60px; position: relative;
}
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center; padding: 0 20px;
  border-right: 1px solid rgba(201,168,76,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 400;
  color: var(--gold); letter-spacing: -1px;
  margin-bottom: 10px; line-height: 1;
}
.stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: 28px; color: var(--gold);
}
.stat-label {
  font-size: 9px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--marble-vein);
}

/* ===== SECTIONS ===== */
section {
  padding: 140px 80px; position: relative;
}
section > * { position: relative; z-index: 1; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400; font-size: 10px;
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400; font-size: clamp(34px, 5vw, 60px);
  line-height: 1.12; letter-spacing: -0.5px;
  color: var(--marble-white); margin-bottom: 28px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-divider {
  width: 70px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0;
}
.section-body {
  font-weight: 300; font-size: 14.5px; line-height: 1.85;
  max-width: 580px; color: rgba(245,240,235,0.65);
  margin-bottom: 60px;
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  overflow: hidden; padding: 20px 0;
  border-top: 1px solid rgba(201,168,76,0.06);
  border-bottom: 1px solid rgba(201,168,76,0.06);
}
.marquee-track {
  display: flex; gap: 60px; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 300;
  letter-spacing: 6px; text-transform: uppercase;
  color: rgba(196,181,163,0.3);
  white-space: nowrap;
  display: flex; align-items: center; gap: 60px;
}
.marquee-item::after {
  content: '\2666'; font-size: 6px; color: var(--gold); opacity: 0.4;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== FOOTER ===== */
footer {
  text-align: center; padding: 80px 60px;
  border-top: 1px solid rgba(201,168,76,0.06);
  position: relative;
}
footer > * { position: relative; z-index: 1; }
.f-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 32px;
  letter-spacing: 10px; color: var(--marble-white);
  margin-bottom: 8px;
}
.f-tag {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 16px;
  color: var(--gold); margin-bottom: 28px;
}
.f-line {
  width: 40px; height: 1px;
  background: rgba(201,168,76,0.3);
  margin: 0 auto 28px;
}
.f-links {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  list-style: none; margin-bottom: 28px;
}
.f-links a {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--marble-vein);
  text-decoration: none; transition: color 0.3s;
}
.f-links a:hover { color: var(--gold); }
.f-note {
  font-size: 9px; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(196,181,163,0.3);
  font-weight: 300;
}
.f-tagline {
  margin-top: 8px; font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; color: rgba(196,181,163,0.2);
  letter-spacing: 1px;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
  text-align: center; padding: 160px 80px;
  position: relative; overflow: hidden;
}
.quote-section .quote-bg-chess {
  position: absolute; font-size: 300px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  color: rgba(201,168,76,0.025); pointer-events: none;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 400; line-height: 1.3;
  color: var(--marble-white);
  max-width: 800px; margin: 0 auto 32px;
}
.quote-text em { font-style: italic; color: var(--gold); }

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center; padding: 160px 60px;
  position: relative; overflow: hidden;
}
.cta-section .section-title { color: var(--marble-white); margin-bottom: 16px; }
.cta-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 22px;
  color: var(--marble-vein); line-height: 1.6;
  max-width: 520px; margin: 0 auto 52px;
}
.cta-section .section-divider { margin: 28px auto; }
.cta-chess {
  position: absolute; font-size: 120px;
  color: rgba(201,168,76,0.03); pointer-events: none;
}
.cta-chess:nth-child(1) { top: 10%; left: 5%; }
.cta-chess:nth-child(2) { bottom: 10%; right: 5%; }

/* ===== ABOUT / FOUNDER ===== */
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-text .founder-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.about-text .founder-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 300;
  color: var(--marble-vein); margin-bottom: 28px;
  font-style: italic;
}
.about-text p {
  font-weight: 300; font-size: 14px; line-height: 1.85;
  color: rgba(245,240,235,0.6); margin-bottom: 20px;
}
.about-text p em { color: var(--marble-white); font-style: normal; font-weight: 400; }

/* Timeline */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute;
  left: 0; top: 0; width: 1px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.08));
}
.timeline-node { position: relative; margin-bottom: 36px; }
.timeline-node:last-child { margin-bottom: 0; }
.timeline-node::before {
  content: ''; position: absolute;
  left: -44px; top: 6px;
  width: 9px; height: 9px;
  border: 1.5px solid var(--gold);
  background: var(--obsidian);
  transform: rotate(45deg);
}
.tl-age {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 500;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.tl-title {
  font-weight: 500; font-size: 13px;
  color: var(--marble-white); margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.tl-desc {
  font-weight: 300; font-size: 12px;
  color: rgba(245,240,235,0.45); line-height: 1.6;
}

/* ===== PILLARS ===== */
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.pillar-card {
  padding: 56px 38px; position: relative; overflow: hidden;
  border: 1px solid rgba(201,168,76,0.1);
  border-right: none;
  transition: all 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.pillar-card:last-child { border-right: 1px solid rgba(201,168,76,0.1); }
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.5s;
}
.pillar-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(201,168,76,0.06), transparent 70%);
  opacity: 0; transition: opacity 0.5s;
}
.pillar-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.25); }
.pillar-card:hover::before { opacity: 1; }
.pillar-card:hover::after { opacity: 1; }
.pillar-card > * { position: relative; z-index: 1; }
.pillar-chess {
  font-size: 52px; display: block;
  margin-bottom: 28px; opacity: 0.25;
  transition: opacity 0.5s, transform 0.5s;
}
.pillar-card:hover .pillar-chess { opacity: 0.6; transform: scale(1.1); }
.pillar-num {
  font-size: 9px; letter-spacing: 4px;
  color: var(--gold); font-weight: 500;
  text-transform: uppercase; margin-bottom: 18px;
}
.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 500;
  color: var(--marble-white); margin-bottom: 6px;
  line-height: 1.2;
}
.pillar-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 18px;
  color: var(--gold); margin-bottom: 22px;
}
.pillar-desc {
  font-weight: 300; font-size: 13px;
  line-height: 1.85; color: rgba(245,240,235,0.5);
}

/* ===== PROCESS (LIGHT SECTION) ===== */
.process-section { color: var(--onyx); }
.process-section .section-title { color: var(--onyx); }
.process-section .section-body { color: rgba(26,26,26,0.5); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; counter-reset: step;
}
.process-step {
  padding: 44px 28px;
  border-right: 1px solid rgba(138,125,107,0.12);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: 'Playfair Display', serif;
  font-size: 56px; font-weight: 400;
  color: rgba(201,168,76,0.15); display: block;
  margin-bottom: 24px; line-height: 1;
  transition: color 0.4s;
}
.process-step:hover::before { color: rgba(201,168,76,0.45); }
.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 500;
  color: var(--onyx); margin-bottom: 12px;
}
.process-step p {
  font-size: 13px; font-weight: 300;
  line-height: 1.75; color: rgba(26,26,26,0.45);
}

/* ===== AUDIENCE ===== */
.audience-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.audience-cell {
  padding: 48px 28px;
  border: 1px solid rgba(201,168,76,0.06);
  border-right: none; text-align: center;
  transition: all 0.5s;
}
.audience-cell:last-child { border-right: 1px solid rgba(201,168,76,0.06); }
.audience-cell:hover { background: rgba(201,168,76,0.03); }
.audience-icon {
  font-size: 32px; margin-bottom: 18px; display: block;
  opacity: 0.4; transition: opacity 0.4s;
}
.audience-cell:hover .audience-icon { opacity: 0.7; }
.audience-type {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 500;
  color: var(--marble-white); margin-bottom: 10px;
}
.audience-detail {
  font-size: 12px; font-weight: 300;
  color: rgba(245,240,235,0.4); line-height: 1.7;
}

/* ===== TESTIMONIAL ===== */
.testimonial-inner { max-width: 700px; }
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 300; font-style: italic;
  line-height: 1.6; color: rgba(245,240,235,0.8);
  margin-bottom: 36px;
}
.testimonial-quote::before {
  content: ''; display: block;
  width: 40px; height: 2px;
  background: var(--gold); margin-bottom: 32px;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px; color: var(--gold);
}
.testimonial-name {
  font-weight: 500; font-size: 14px;
  letter-spacing: 1px; color: var(--marble-white);
}
.testimonial-role {
  font-size: 10px; font-weight: 300;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--marble-vein); margin-top: 4px;
}

/* ===== FORM INPUTS ===== */
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 9px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  color: var(--marble-white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300; font-size: 14px;
  padding: 16px 20px;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--marble-vein); opacity: 0.5;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  cursor: pointer;
}
.form-group select option {
  background: var(--obsidian); color: var(--marble-white);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  section { padding: 100px 28px; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .pillars-grid { grid-template-columns: 1fr !important; }
  .pillar-card { border-right: 1px solid rgba(201,168,76,0.1) !important; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-bottom: 1px solid rgba(138,125,107,0.1); }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .stat-item { border-right: none; }
  .quote-section { padding: 100px 28px; }
}
@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(13,13,13,0.97);
    backdrop-filter: blur(20px);
    padding: 28px 20px; gap: 18px;
    border-bottom: 1px solid rgba(201,168,76,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .process-steps { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  section { padding: 80px 20px; }
  .hero { padding: 80px 20px; }
  .cursor-dot { display: none; }
  footer { padding: 60px 20px; }
  .f-links { gap: 16px 20px; }
  .f-links a { font-size: 9px; letter-spacing: 2px; }
}
