/* ========================================
   LUXORA INTERIORS – Premium style.css
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #e5d5a0;
  --gold-dark: #8a7230;
  --dark: #060606;
  --dark2: #0c0c0c;
  --dark3: #141414;
  --card-bg: rgba(20,20,20,0.6);
  --glass: rgba(255,255,255,0.03);
  --glass-border: rgba(255,255,255,0.08);
  --text: #f0ece2;
  --text-muted: #7a7568;
  --transition: 0.4s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; color: var(--gold); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; }
.section-alt { background: var(--dark2); }
.text-center { text-align: center; }

/* ── Section Labels ── */
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); display: inline-block; margin-bottom: 16px;
  padding: 6px 16px; border: 1px solid rgba(201,168,76,0.3); border-radius: 50px;
  background: rgba(201,168,76,0.06);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800;
  margin-bottom: 20px; line-height: 1.15;
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 60px; }

/* ── Shimmer Text ── */
.shimmer-text {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 25%, var(--gold) 50%, var(--gold-light) 75%, var(--gold) 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer { 0% { background-position: 300% 0; } 100% { background-position: -300% 0; } }

/* ── Glassmorphism ── */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
}
.glass-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(20px); border-radius: 50px;
  padding: 10px 22px; font-size: 0.85rem; color: var(--gold); margin-bottom: 28px;
}

/* ── Aurora Background ── */
.aurora-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.aurora {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.3;
  animation: auroraMove 12s ease-in-out infinite alternate;
}
.a1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,168,76,0.4), transparent); top: -20%; right: -10%; animation-delay: 0s; }
.a2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(140,100,50,0.3), transparent); bottom: -20%; left: -5%; animation-delay: -4s; }
.a3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(180,140,60,0.2), transparent); top: 30%; left: 30%; animation-delay: -8s; }
@keyframes auroraMove {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.1); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
  100% { transform: translate(10px, -10px) scale(1.05); }
}

/* ── Cursor Glow ── */
.cursor-glow {
  position: fixed; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 70%);
  pointer-events: none; z-index: 9999; transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ── Reveal ── */
.reveal, .reveal-hero { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.visible, .reveal-hero.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ── Glow Button ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 34px; border-radius: 8px; font-weight: 600; font-size: 0.95rem;
  transition: all var(--transition); position: relative; overflow: hidden; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--dark); }
.btn-gold:hover { transform: translateY(-2px); }
.glow-btn .btn-glow {
  position: absolute; inset: -2px; border-radius: inherit; z-index: -1;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 0; filter: blur(12px); transition: opacity 0.4s;
}
.glow-btn:hover .btn-glow { opacity: 0.6; }
.btn-glass {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }

/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: all var(--transition); background: transparent;
}
#navbar.scrolled {
  background: rgba(6,6,6,0.92); backdrop-filter: blur(24px);
  padding: 10px 0; border-bottom: 1px solid rgba(201,168,76,0.1);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  display: flex; align-items: center; gap: 10px; color: var(--gold);
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; letter-spacing: 3px;
}
.nav-logo img { height: 36px; border-radius: 4px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--text-muted); font-size: 0.88rem; font-weight: 500;
  transition: color var(--transition); position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-toggle { display: flex; border: 1px solid rgba(201,168,76,0.2); border-radius: 6px; overflow: hidden; }
.lang-toggle button { padding: 6px 14px; font-size: 0.78rem; font-weight: 700; color: var(--text-muted); transition: all var(--transition); }
.lang-toggle button.active { background: var(--gold); color: var(--dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--gold); }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
#hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-img-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: slowZoom 25s ease-in-out infinite alternate;
}
@keyframes slowZoom { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(6,6,6,0.5) 0%, rgba(6,6,6,0.85) 100%);
}
.hero-content { position: relative; z-index: 3; text-align: center; max-width: 800px; margin: 0 auto; padding-top: 80px; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900; line-height: 1.05; margin-bottom: 24px;
}
.hero-sub { font-size: 1.15rem; color: var(--text-muted); max-width: 560px; margin: 0 auto 40px; line-height: 1.8; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trusted { display: flex; align-items: center; gap: 14px; justify-content: center; }
.trusted-avatars { display: flex; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.65rem; color: #fff; border: 2px solid var(--dark);
  margin-right: -8px;
}
.hero-trusted span { font-size: 0.85rem; color: var(--text-muted); }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 1; height: 50px; } 50% { opacity: 0.4; height: 30px; } }
.scroll-indicator span { font-size: 0.6rem; letter-spacing: 3px; color: var(--gold); opacity: 0.6; }

/* Particles */
.particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.particle {
  position: absolute; background: var(--gold); border-radius: 50%;
  opacity: 0; animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.5; } 90% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* ═══════════════════════════════
   MARQUEE
═══════════════════════════════ */
.marquee-strip {
  overflow: hidden; padding: 20px 0;
  border-top: 1px solid rgba(201,168,76,0.1); border-bottom: 1px solid rgba(201,168,76,0.1);
  background: rgba(201,168,76,0.02);
}
.marquee-inner {
  display: flex; gap: 40px; white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.marquee-inner span {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 800;
  color: rgba(201,168,76,0.2); letter-spacing: 4px;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════════
   ABOUT
═══════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.9; }
.about-features { display: flex; gap: 20px; margin-top: 32px; flex-wrap: wrap; }
.about-feat {
  display: flex; align-items: center; gap: 8px; padding: 8px 18px;
  background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50px; font-size: 0.85rem; font-weight: 600;
}
.feat-icon { font-size: 1.1rem; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { padding: 28px; text-align: center; transition: all var(--transition); }
.stat-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: var(--gold);
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; margin-bottom: 12px; }
.stat-bar { height: 3px; background: rgba(201,168,76,0.1); border-radius: 3px; overflow: hidden; }
.stat-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px; transform: scaleX(0); transform-origin: left;
  transition: transform 1.5s ease;
}
.stat-card.visible .stat-bar-fill { transform: scaleX(1); }

/* ═══════════════════════════════
   SERVICES
═══════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.srv-card {
  padding: 36px 28px; transition: all var(--transition); position: relative; overflow: hidden; cursor: pointer;
}
.srv-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-6px); }
.srv-glow {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s; pointer-events: none;
}
.srv-card:hover .srv-glow { opacity: 1; }
.srv-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.srv-icon { font-size: 1.6rem; }
.srv-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.srv-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════
   PORTFOLIO
═══════════════════════════════ */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.port-card { border-radius: 16px; overflow: hidden; cursor: pointer; transition: all var(--transition); }
.port-card:hover { transform: translateY(-8px); }
.port-card.wide { grid-column: span 2; }
.port-img-wrap { position: relative; overflow: hidden; height: 300px; }
.port-card.wide .port-img-wrap { height: 340px; }
.port-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.port-card:hover img { transform: scale(1.08); }
.port-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; background: linear-gradient(to top, rgba(6,6,6,0.95) 0%, rgba(6,6,6,0.3) 50%, transparent 100%);
  opacity: 0; transition: opacity 0.5s;
}
.port-card:hover .port-overlay { opacity: 1; }
.port-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.port-overlay h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; }
.port-overlay p { font-size: 0.85rem; color: var(--text-muted); }

/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.test-card { padding: 32px; transition: all var(--transition); }
.test-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.test-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.test-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-author strong { display: block; font-size: 0.9rem; }
.test-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ═══════════════════════════════
   CTA
═══════════════════════════════ */
.cta-section {
  padding: 100px 0; position: relative; overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.1); border-bottom: 1px solid rgba(201,168,76,0.1);
}
.cta-aurora { position: absolute; inset: 0; overflow: hidden; }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px;
}
.cta-section p { color: var(--text-muted); margin-bottom: 32px; font-size: 1.1rem; }

/* ═══════════════════════════════
   CONTACT
═══════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-details { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: center; gap: 14px; padding: 16px 20px; font-size: 0.92rem; }
.contact-form { padding: 36px; display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form textarea {
  background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border);
  border-radius: 10px; padding: 14px 18px; color: var(--text); font-family: inherit; font-size: 0.9rem;
  transition: border-color var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 20px rgba(201,168,76,0.08); }
.contact-form textarea { min-height: 120px; resize: vertical; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer { background: var(--dark); border-top: 1px solid rgba(201,168,76,0.08); padding: 32px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 28px; border-radius: 4px; }
.footer-logo span { font-family: 'Playfair Display', serif; font-weight: 700; letter-spacing: 2px; color: var(--gold); font-size: 0.85rem; }
footer p { font-size: 0.8rem; color: var(--text-muted); }

/* ═══════════════════════════════
   BACK TO WEBILO
═══════════════════════════════ */
.back-to-webilo {
  position: fixed; bottom: 20px; left: 20px; z-index: 999;
  display: flex; align-items: center; gap: 8px;
  background: rgba(10,10,10,0.9); border: 1px solid rgba(108,63,255,0.3);
  border-radius: 50px; padding: 10px 20px; font-size: 0.8rem; font-weight: 600;
  color: #6c3fff; transition: all var(--transition); backdrop-filter: blur(10px);
}
.back-to-webilo:hover { border-color: #6c3fff; background: rgba(108,63,255,0.1); transform: translateY(-2px); }

/* ═══════════════════════════════
   ACCESSIBILITY
═══════════════════════════════ */
.a11y-btn {
  position: fixed; bottom: 20px; right: 20px; z-index: 1000;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--dark); font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 20px rgba(201,168,76,0.3); transition: all var(--transition);
}
.a11y-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(201,168,76,0.4); }
.a11y-panel {
  position: fixed; bottom: 80px; right: 20px; z-index: 1000;
  background: var(--dark3); border: 1px solid var(--gold); border-radius: 16px;
  padding: 20px; width: 220px; display: none; flex-direction: column; gap: 8px;
  backdrop-filter: blur(20px);
}
.a11y-panel.open { display: flex; }
.a11y-panel h3 { font-size: 0.9rem; color: var(--gold); margin-bottom: 4px; }
.a11y-panel button {
  padding: 10px 14px; background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px; color: var(--text); font-size: 0.82rem; transition: all var(--transition);
  text-align: right; cursor: pointer; font-family: inherit;
}
.a11y-panel button:hover { border-color: var(--gold); background: rgba(201,168,76,0.12); }
body.high-contrast { filter: contrast(1.4); }
body.grayscale { filter: grayscale(1); }
body.high-contrast.grayscale { filter: contrast(1.4) grayscale(1); }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .port-card.wide { grid-column: span 2; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6,6,6,0.98); flex-direction: column; align-items: center;
    justify-content: center; gap: 32px; z-index: 98; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; z-index: 99; }
  .services-grid, .portfolio-grid, .stats-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .port-card.wide { grid-column: span 1; }
  .hero-title { font-size: 2.8rem; }
  .section { padding: 80px 0; }
  .back-to-webilo { bottom: 70px; }
  .about-features { flex-direction: column; }
  .cursor-glow { display: none; }
}

/* ══ TIMELINE ══ */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; margin-top: 60px; }
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: 48px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.4), transparent);
}
.timeline-item { display: flex; gap: 32px; align-items: flex-start; margin-bottom: 40px; }
.timeline-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900; color: var(--gold);
  width: 60px; text-align: center; flex-shrink: 0; line-height: 1;
  margin-top: 8px;
}
.timeline-content {
  flex: 1; padding: 28px 32px; position: relative;
  transition: all var(--transition);
}
.timeline-content:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateX(-6px);
}
.timeline-icon { font-size: 1.8rem; margin-bottom: 12px; }
.timeline-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.timeline-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }
.timeline-duration {
  display: inline-block; margin-top: 14px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold); padding: 4px 14px; border-radius: 20px;
}

/* ══ STYLES MOODBOARD ══ */
.styles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.style-card {
  position: relative; border-radius: 16px; overflow: hidden;
  height: 280px; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.style-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.style-card img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.35;
  transition: all 0.6s ease;
}
.style-card:hover img { opacity: 0.5; transform: scale(1.06); }
.style-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.style-overlay h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.style-overlay p { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.style-palette { display: flex; gap: 8px; }
.swatch {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2); box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ══ FAQ ACCORDION ══ */
.faq-layout {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start;
}
.faq-left .section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.faq-accordion { display: flex; flex-direction: column; gap: 0; margin-top: 0; }
.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 4px; text-align: right; font-size: 0.95rem; font-weight: 600;
  color: var(--text); cursor: pointer; font-family: inherit; gap: 16px;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.4rem; color: var(--gold); flex-shrink: 0; transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.5s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
.faq-a p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.9; padding: 0 4px; }

@media (max-width: 768px) {
  .styles-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .timeline::before { display: none; }
}