/* ============================================
   ZUNQERIX — Main Stylesheet
   zq-style.css
   ============================================ */

:root {
  --zq-navy: #0a0e1a;
  --zq-navy-mid: #111827;
  --zq-charcoal: #1c2333;
  --zq-charcoal-light: #253047;
  --zq-gold: #c9a84c;
  --zq-gold-light: #e4c06e;
  --zq-gold-dim: #a8863a;
  --zq-cream: #f5f0e8;
  --zq-grey: #9aa3b5;
  --zq-grey-light: #c8cfd9;
  --zq-white: #ffffff;
  --zq-red-accent: #8b2e2e;
  --zq-border: rgba(201, 168, 76, 0.15);
  --zq-border-light: rgba(255,255,255,0.08);
  --zq-gradient-hero: linear-gradient(135deg, #0a0e1a 0%, #111827 50%, #0a0e1a 100%);
  --zq-gradient-gold: linear-gradient(135deg, #c9a84c, #e4c06e);
  --zq-font-display: 'Cormorant Garamond', serif;
  --zq-font-body: 'Jost', sans-serif;
  --zq-font-mono: 'Courier Prime', monospace;
  --zq-shadow: 0 8px 32px rgba(0,0,0,0.4);
  --zq-shadow-gold: 0 4px 24px rgba(201,168,76,0.2);
  --zq-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --zq-radius: 4px;
  --zq-radius-lg: 8px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--zq-navy);
  color: var(--zq-cream);
  font-family: var(--zq-font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--zq-navy); }
::-webkit-scrollbar-thumb { background: var(--zq-gold-dim); border-radius: 3px; }

/* ── Selection ── */
::selection { background: var(--zq-gold); color: var(--zq-navy); }

/* ── Typography Base ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--zq-font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--zq-cream);
}

a {
  color: var(--zq-gold);
  text-decoration: none;
  transition: color var(--zq-transition);
}
a:hover { color: var(--zq-gold-light); }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

img { max-width: 100%; height: auto; display: block; }

/* ── Container ── */
.zq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.zq-container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Spacing ── */
.zq-section {
  padding: 100px 0;
}

.zq-section-tight {
  padding: 60px 0;
}

/* ── Gold Divider ── */
.zq-divider-gold {
  width: 60px;
  height: 2px;
  background: var(--zq-gradient-gold);
  margin: 20px auto 0;
}

.zq-divider-gold-left {
  width: 60px;
  height: 2px;
  background: var(--zq-gradient-gold);
  margin: 20px 0 0;
}

/* ── Section Label ── */
.zq-section-label {
  font-family: var(--zq-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--zq-gold);
  display: block;
  margin-bottom: 12px;
}

/* ── Section Title ── */
.zq-section-title {
  font-family: var(--zq-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--zq-cream);
  margin-bottom: 16px;
}

.zq-section-subtitle {
  font-size: 1.05rem;
  color: var(--zq-grey);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Gold Button ── */
.zq-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--zq-font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--zq-radius);
  cursor: pointer;
  transition: all var(--zq-transition);
  border: none;
  outline: none;
}

.zq-btn-gold {
  background: var(--zq-gradient-gold);
  color: var(--zq-navy);
}
.zq-btn-gold:hover {
  box-shadow: var(--zq-shadow-gold);
  transform: translateY(-2px);
  color: var(--zq-navy);
}

.zq-btn-outline {
  background: transparent;
  border: 1px solid var(--zq-gold);
  color: var(--zq-gold);
}
.zq-btn-outline:hover {
  background: var(--zq-gradient-gold);
  color: var(--zq-navy);
  transform: translateY(-2px);
}

.zq-btn-ghost {
  background: transparent;
  border: 1px solid var(--zq-border-light);
  color: var(--zq-cream);
}
.zq-btn-ghost:hover {
  border-color: var(--zq-gold);
  color: var(--zq-gold);
}

/* ── Navbar ── */
.zq-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--zq-transition);
}

.zq-navbar.zq-scrolled {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid var(--zq-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.zq-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.zq-logo {
  font-family: var(--zq-font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--zq-cream);
  letter-spacing: 0.05em;
}

.zq-logo span {
  color: var(--zq-gold);
}

.zq-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.zq-nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zq-grey-light);
  font-weight: 400;
  transition: color var(--zq-transition);
  position: relative;
}

.zq-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--zq-gold);
  transition: width var(--zq-transition);
}

.zq-nav-links a:hover,
.zq-nav-links a.zq-active {
  color: var(--zq-gold);
}

.zq-nav-links a:hover::after,
.zq-nav-links a.zq-active::after {
  width: 100%;
}

.zq-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.zq-nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--zq-cream);
  transition: all var(--zq-transition);
  display: block;
}

/* ── Hero ── */
.zq-hero-cinematic {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.zq-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?w=1600&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
}

.zq-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,14,26,0.92) 0%,
    rgba(10,14,26,0.7) 50%,
    rgba(10,14,26,0.85) 100%
  );
}

.zq-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.zq-hero-eyebrow {
  font-family: var(--zq-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--zq-gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.zq-hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--zq-gold);
}

.zq-hero-title {
  font-family: var(--zq-font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--zq-cream);
  margin-bottom: 24px;
}

.zq-hero-title em {
  font-style: italic;
  color: var(--zq-gold);
}

.zq-hero-tagline {
  font-size: 1.15rem;
  color: var(--zq-grey-light);
  margin-bottom: 40px;
  min-height: 2em;
  line-height: 1.6;
}

.zq-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.zq-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--zq-grey);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.zq-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--zq-gold), transparent);
  animation: zqScrollPulse 2s ease-in-out infinite;
}

/* ── Stats Bar ── */
.zq-stats-bar {
  background: var(--zq-charcoal);
  border-top: 1px solid var(--zq-border);
  border-bottom: 1px solid var(--zq-border);
  padding: 40px 0;
}

.zq-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.zq-stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--zq-border);
}
.zq-stat-item:last-child { border-right: none; }

.zq-stat-number {
  font-family: var(--zq-font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--zq-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.zq-stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--zq-grey);
}

/* ── Quiz Hub ── */
.zq-quiz-hub {
  background: var(--zq-navy);
}

.zq-quiz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.zq-quiz-card-modern {
  background: var(--zq-charcoal);
  border: 1px solid var(--zq-border);
  border-radius: var(--zq-radius-lg);
  padding: 36px 28px;
  cursor: pointer;
  transition: all var(--zq-transition);
  position: relative;
  overflow: hidden;
}

.zq-quiz-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--zq-gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--zq-transition);
}

.zq-quiz-card-modern:hover {
  border-color: var(--zq-gold-dim);
  transform: translateY(-4px);
  box-shadow: var(--zq-shadow);
}

.zq-quiz-card-modern:hover::before {
  transform: scaleX(1);
}

.zq-quiz-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--zq-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--zq-gold);
  transition: background var(--zq-transition);
}

.zq-quiz-card-modern:hover .zq-quiz-card-icon {
  background: rgba(201,168,76,0.2);
}

.zq-quiz-card-modern h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.zq-quiz-card-modern p {
  font-size: 0.9rem;
  color: var(--zq-grey);
  margin-bottom: 20px;
}

.zq-quiz-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--zq-grey);
}

.zq-quiz-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── Quiz Modal ── */
.zq-quiz-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,14,26,0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.zq-quiz-modal-overlay.zq-active {
  opacity: 1;
  visibility: visible;
}

.zq-quiz-modal {
  background: var(--zq-charcoal);
  border: 1px solid var(--zq-border);
  border-radius: var(--zq-radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.zq-quiz-modal-overlay.zq-active .zq-quiz-modal {
  transform: translateY(0);
}

.zq-quiz-modal-header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--zq-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.zq-quiz-modal-header h3 {
  font-size: 1.4rem;
}

.zq-quiz-modal-body {
  padding: 32px;
}

.zq-quiz-close {
  background: none;
  border: none;
  color: var(--zq-grey);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color var(--zq-transition);
  padding: 4px;
}
.zq-quiz-close:hover { color: var(--zq-cream); }

.zq-quiz-progress-bar {
  height: 3px;
  background: var(--zq-charcoal-light);
  border-radius: 2px;
  margin-bottom: 28px;
  overflow: hidden;
}

.zq-quiz-progress-fill {
  height: 100%;
  background: var(--zq-gradient-gold);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.zq-quiz-question-text {
  font-family: var(--zq-font-display);
  font-size: 1.4rem;
  margin-bottom: 28px;
  line-height: 1.4;
}

.zq-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.zq-quiz-option {
  padding: 14px 20px;
  background: var(--zq-charcoal-light);
  border: 1px solid var(--zq-border);
  border-radius: var(--zq-radius);
  cursor: pointer;
  transition: all var(--zq-transition);
  font-size: 0.95rem;
  text-align: left;
  color: var(--zq-cream);
}

.zq-quiz-option:hover {
  border-color: var(--zq-gold-dim);
  background: rgba(201,168,76,0.08);
}

.zq-quiz-option.zq-correct {
  border-color: #4caf50;
  background: rgba(76,175,80,0.1);
  color: #81c784;
}

.zq-quiz-option.zq-wrong {
  border-color: #f44336;
  background: rgba(244,67,54,0.1);
  color: #e57373;
}

.zq-quiz-counter {
  font-size: 0.82rem;
  color: var(--zq-grey);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.zq-quiz-result-panel {
  text-align: center;
  padding: 20px 0;
}

.zq-quiz-score-display {
  font-family: var(--zq-font-display);
  font-size: 5rem;
  color: var(--zq-gold);
  line-height: 1;
  margin-bottom: 16px;
}

.zq-quiz-score-label {
  font-size: 1.1rem;
  color: var(--zq-grey-light);
  margin-bottom: 8px;
}

.zq-quiz-score-comment {
  font-size: 0.95rem;
  color: var(--zq-grey);
  margin-bottom: 32px;
}

/* ── Gallery ── */
.zq-gallery-section {
  background: var(--zq-charcoal);
}

.zq-gallery-masonry {
  columns: 4;
  column-gap: 16px;
  margin-top: 60px;
}

.zq-gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--zq-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.zq-gallery-item img {
  width: 100%;
  transition: transform 0.5s ease;
}

.zq-gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--zq-cream);
  background: rgba(10,14,26,0.5);
  opacity: 0;
  transition: opacity var(--zq-transition);
}

.zq-gallery-item:hover img { transform: scale(1.05); }
.zq-gallery-item:hover::after { opacity: 1; }

/* ── Lightbox ── */
.zq-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,14,26,0.97);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.zq-lightbox-overlay.zq-active {
  opacity: 1;
  visibility: visible;
}

.zq-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--zq-radius);
  box-shadow: var(--zq-shadow);
}

.zq-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--zq-cream);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--zq-transition);
}
.zq-lightbox-close:hover { color: var(--zq-gold); }

/* ── Editorial Cards ── */
.zq-editorial-section {
  background: var(--zq-navy);
}

.zq-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.zq-article-layout-longread {
  background: var(--zq-charcoal);
  border-radius: var(--zq-radius-lg);
  overflow: hidden;
  border: 1px solid var(--zq-border);
  transition: all var(--zq-transition);
}

.zq-article-layout-longread:hover {
  border-color: var(--zq-gold-dim);
  transform: translateY(-4px);
  box-shadow: var(--zq-shadow);
}

.zq-article-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.zq-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.zq-article-layout-longread:hover .zq-article-thumb img {
  transform: scale(1.04);
}

.zq-article-body {
  padding: 28px;
}

.zq-article-tag {
  font-family: var(--zq-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--zq-gold);
  margin-bottom: 12px;
  display: block;
}

.zq-article-body h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.zq-article-body p {
  font-size: 0.9rem;
  color: var(--zq-grey);
  margin-bottom: 20px;
}

.zq-article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--zq-grey);
  border-top: 1px solid var(--zq-border);
  padding-top: 16px;
}

/* ── Reviews ── */
.zq-reviews-section {
  background: var(--zq-charcoal);
  overflow: hidden;
}

.zq-reviews-carousel {
  margin-top: 60px;
  position: relative;
}

.zq-reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.zq-review-card {
  flex: 0 0 calc(33.33% - 16px);
  background: var(--zq-navy);
  border: 1px solid var(--zq-border);
  border-radius: var(--zq-radius-lg);
  padding: 32px;
}

.zq-review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--zq-gold);
  font-size: 0.9rem;
}

.zq-review-text {
  font-size: 0.95rem;
  color: var(--zq-grey-light);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.zq-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.zq-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--zq-border);
}

.zq-review-author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--zq-cream);
}

.zq-review-author-role {
  font-size: 0.78rem;
  color: var(--zq-grey);
}

.zq-carousel-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.zq-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--zq-border);
  background: transparent;
  color: var(--zq-grey);
  cursor: pointer;
  transition: all var(--zq-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.zq-carousel-btn:hover {
  border-color: var(--zq-gold);
  color: var(--zq-gold);
}

/* ── Team ── */
.zq-team-section {
  background: var(--zq-navy);
}

.zq-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.zq-team-profile-card {
  text-align: center;
  position: relative;
}

.zq-team-photo-wrap {
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
}

.zq-team-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--zq-gradient-gold);
  opacity: 0;
  transition: opacity var(--zq-transition);
  z-index: 0;
}

.zq-team-profile-card:hover .zq-team-photo-wrap::before {
  opacity: 1;
}

.zq-team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--zq-charcoal);
  position: relative;
  z-index: 1;
}

.zq-team-role {
  font-family: var(--zq-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--zq-gold);
  margin-bottom: 8px;
}

.zq-team-name {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.zq-team-bio {
  font-size: 0.85rem;
  color: var(--zq-grey);
  line-height: 1.6;
}

/* ── Features ── */
.zq-features-section {
  background: var(--zq-charcoal);
}

.zq-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.zq-feature-item {
  padding: 36px 28px;
  background: var(--zq-navy);
  border-radius: var(--zq-radius-lg);
  border: 1px solid var(--zq-border);
  transition: all var(--zq-transition);
}

.zq-feature-item:hover {
  border-color: var(--zq-gold-dim);
  transform: translateY(-3px);
}

.zq-feature-icon {
  font-size: 2rem;
  color: var(--zq-gold);
  margin-bottom: 20px;
}

.zq-feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.zq-feature-item p {
  font-size: 0.9rem;
  color: var(--zq-grey);
  margin: 0;
}

/* ── Footer ── */
.zq-footer {
  background: var(--zq-navy);
  border-top: 1px solid var(--zq-border);
  padding: 80px 0 40px;
}

.zq-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.zq-footer-brand-desc {
  font-size: 0.9rem;
  color: var(--zq-grey);
  line-height: 1.7;
  margin: 16px 0 24px;
}

.zq-footer-socials {
  display: flex;
  gap: 12px;
}

.zq-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--zq-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zq-grey);
  font-size: 0.85rem;
  transition: all var(--zq-transition);
}

.zq-social-link:hover {
  border-color: var(--zq-gold);
  color: var(--zq-gold);
}

.zq-footer-heading {
  font-family: var(--zq-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--zq-gold);
  margin-bottom: 20px;
}

.zq-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zq-footer-links a {
  font-size: 0.88rem;
  color: var(--zq-grey);
  transition: color var(--zq-transition);
}
.zq-footer-links a:hover { color: var(--zq-gold); }

.zq-footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--zq-grey);
  margin-bottom: 12px;
}

.zq-footer-contact-item i {
  color: var(--zq-gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.zq-footer-bottom {
  border-top: 1px solid var(--zq-border);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.zq-footer-copy {
  font-size: 0.82rem;
  color: var(--zq-grey);
}

.zq-footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.zq-footer-legal-links a {
  font-size: 0.8rem;
  color: var(--zq-grey);
}

.zq-footer-legal-links a:hover {
  color: var(--zq-gold);
}

/* ── Cookie Banner ── */
.zq-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 480px;
  background: var(--zq-charcoal);
  border: 1px solid var(--zq-border);
  border-radius: var(--zq-radius-lg);
  padding: 24px;
  z-index: 9999;
  box-shadow: var(--zq-shadow);
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.zq-cookie-banner.zq-visible {
  transform: translateY(0);
}

.zq-cookie-banner p {
  font-size: 0.88rem;
  color: var(--zq-grey-light);
  margin-bottom: 16px;
}

.zq-cookie-banner-actions {
  display: flex;
  gap: 10px;
}

/* ── Page Header ── */
.zq-page-header {
  padding: 160px 0 80px;
  background: var(--zq-charcoal);
  border-bottom: 1px solid var(--zq-border);
  position: relative;
  overflow: hidden;
}

.zq-page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.zq-page-header-label {
  font-family: var(--zq-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--zq-gold);
  margin-bottom: 16px;
  display: block;
}

.zq-page-header-title {
  font-family: var(--zq-font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 16px;
}

.zq-page-header-subtitle {
  font-size: 1.05rem;
  color: var(--zq-grey);
  max-width: 560px;
}

/* ── Article Long-form ── */
.zq-article-full-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px;
}

.zq-article-full-content h2 {
  font-size: 1.8rem;
  margin: 48px 0 20px;
  color: var(--zq-cream);
}

.zq-article-full-content h3 {
  font-size: 1.3rem;
  margin: 36px 0 16px;
  color: var(--zq-gold-light);
}

.zq-article-full-content p {
  font-size: 1.05rem;
  color: var(--zq-grey-light);
  line-height: 1.85;
  margin-bottom: 1.5em;
}

.zq-article-full-content img {
  border-radius: var(--zq-radius);
  margin: 40px 0;
  width: 100%;
}

.zq-article-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--zq-radius-lg);
  margin-bottom: 48px;
}

.zq-article-full-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--zq-border);
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.zq-article-full-tag {
  font-family: var(--zq-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--zq-gold);
  background: rgba(201,168,76,0.1);
  padding: 5px 12px;
  border-radius: 2px;
}

.zq-blockquote {
  border-left: 3px solid var(--zq-gold);
  padding: 20px 28px;
  margin: 40px 0;
  background: rgba(201,168,76,0.04);
  border-radius: 0 var(--zq-radius) var(--zq-radius) 0;
}

.zq-blockquote p {
  font-family: var(--zq-font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--zq-cream);
  margin: 0;
}

/* ── Form Styles ── */
.zq-form-group {
  margin-bottom: 24px;
}

.zq-form-label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zq-grey-light);
  margin-bottom: 8px;
}

.zq-form-input,
.zq-form-textarea,
.zq-form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--zq-navy);
  border: 1px solid var(--zq-border);
  border-radius: var(--zq-radius);
  color: var(--zq-cream);
  font-family: var(--zq-font-body);
  font-size: 0.95rem;
  transition: border-color var(--zq-transition);
  outline: none;
}

.zq-form-input:focus,
.zq-form-textarea:focus {
  border-color: var(--zq-gold-dim);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

.zq-form-textarea {
  min-height: 140px;
  resize: vertical;
}

.zq-form-error {
  font-size: 0.8rem;
  color: #f44336;
  margin-top: 5px;
  display: none;
}

.zq-form-error.zq-visible { display: block; }

.zq-captcha-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--zq-navy);
  border: 1px solid var(--zq-border);
  border-radius: var(--zq-radius);
}

.zq-captcha-question {
  font-size: 0.95rem;
  color: var(--zq-grey-light);
}

.zq-captcha-input {
  width: 80px;
  padding: 8px 12px;
  background: var(--zq-charcoal);
  border: 1px solid var(--zq-border);
  border-radius: var(--zq-radius);
  color: var(--zq-cream);
  font-size: 0.95rem;
  text-align: center;
  outline: none;
}

/* ── Breadcrumb ── */
.zq-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--zq-grey);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.zq-breadcrumb a {
  color: var(--zq-grey);
}
.zq-breadcrumb a:hover { color: var(--zq-gold); }
.zq-breadcrumb span { color: var(--zq-gold-dim); }

/* ── Legal pages ── */
.zq-legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px;
}

.zq-legal-content h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
  padding-top: 48px;
  border-top: 1px solid var(--zq-border);
  color: var(--zq-cream);
}

.zq-legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.zq-legal-content p, .zq-legal-content li {
  font-size: 0.97rem;
  color: var(--zq-grey-light);
  line-height: 1.8;
  margin-bottom: 1em;
}

.zq-legal-content ul, .zq-legal-content ol {
  padding-left: 24px;
  margin-bottom: 1.5em;
}

.zq-legal-date {
  font-family: var(--zq-font-mono);
  font-size: 0.78rem;
  color: var(--zq-grey);
  letter-spacing: 0.15em;
  margin-bottom: 40px;
}

/* ── About Timeline ── */
.zq-timeline {
  position: relative;
  padding: 40px 0;
}

.zq-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--zq-border);
  transform: translateX(-50%);
}

.zq-timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
}

.zq-timeline-item:nth-child(even) .zq-timeline-content {
  grid-column: 3;
  grid-row: 1;
}
.zq-timeline-item:nth-child(even) .zq-timeline-dot { grid-column: 2; grid-row: 1; }
.zq-timeline-item:nth-child(even) .zq-timeline-spacer { grid-column: 1; grid-row: 1; }

.zq-timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--zq-gold);
  border: 2px solid var(--zq-navy);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.2);
  flex-shrink: 0;
}

.zq-timeline-content {
  background: var(--zq-charcoal);
  border: 1px solid var(--zq-border);
  border-radius: var(--zq-radius);
  padding: 24px;
}

.zq-timeline-year {
  font-family: var(--zq-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--zq-gold);
  margin-bottom: 8px;
}

.zq-timeline-content h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.zq-timeline-content p {
  font-size: 0.88rem;
  color: var(--zq-grey);
  margin: 0;
}

/* ── About Values ── */
.zq-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.zq-value-item {
  padding: 28px;
  background: var(--zq-charcoal);
  border-radius: var(--zq-radius-lg);
  border-left: 3px solid var(--zq-gold);
}

.zq-value-item h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.zq-value-item p {
  font-size: 0.9rem;
  color: var(--zq-grey);
  margin: 0;
}

/* ── Contact Layout ── */
.zq-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  padding: 80px 0;
}

.zq-contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--zq-border);
}

.zq-contact-info-item:last-child { border-bottom: none; }

.zq-contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--zq-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zq-gold);
  flex-shrink: 0;
}

.zq-contact-info-label {
  font-family: var(--zq-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--zq-grey);
  margin-bottom: 4px;
}

.zq-contact-info-value {
  font-size: 0.95rem;
  color: var(--zq-cream);
}

.zq-map-embed {
  border-radius: var(--zq-radius-lg);
  overflow: hidden;
  border: 1px solid var(--zq-border);
  margin-top: 32px;
}

/* ── Business Hours ── */
.zq-hours-table {
  width: 100%;
  border-collapse: collapse;
}

.zq-hours-table tr td {
  padding: 10px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--zq-border);
}

.zq-hours-table tr:last-child td { border-bottom: none; }

.zq-hours-table td:first-child {
  color: var(--zq-grey-light);
}
.zq-hours-table td:last-child {
  text-align: right;
  color: var(--zq-gold);
}

/* ── Thank You ── */
.zq-thankyou-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.zq-thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--zq-gold);
  margin: 0 auto 28px;
  border: 1px solid var(--zq-border);
}

/* ── SVG Divider ── */
.zq-svg-divider {
  display: block;
  width: 100%;
  line-height: 0;
}

.zq-svg-divider svg {
  width: 100%;
  height: 60px;
}

/* ── Utility ── */
.zq-text-gold { color: var(--zq-gold); }
.zq-text-grey { color: var(--zq-grey); }
.zq-text-center { text-align: center; }
.zq-mt-8 { margin-top: 8px; }
.zq-mt-16 { margin-top: 16px; }
.zq-mt-24 { margin-top: 24px; }
.zq-mt-40 { margin-top: 40px; }
.zq-mb-0 { margin-bottom: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .zq-quiz-grid { grid-template-columns: repeat(2, 1fr); }
  .zq-gallery-masonry { columns: 3; }
  .zq-editorial-grid { grid-template-columns: repeat(2, 1fr); }
  .zq-team-grid { grid-template-columns: repeat(2, 1fr); }
  .zq-features-grid { grid-template-columns: repeat(2, 1fr); }
  .zq-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .zq-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .zq-stat-item { border-right: none; border-bottom: 1px solid var(--zq-border); }
}

@media (max-width: 768px) {
  .zq-section { padding: 70px 0; }
  .zq-nav-links { display: none; }
  .zq-nav-toggle { display: flex; }
  .zq-quiz-grid { grid-template-columns: 1fr; }
  .zq-gallery-masonry { columns: 2; }
  .zq-editorial-grid { grid-template-columns: 1fr; }
  .zq-review-card { flex: 0 0 100%; }
  .zq-team-grid { grid-template-columns: repeat(2, 1fr); }
  .zq-features-grid { grid-template-columns: 1fr; }
  .zq-footer-grid { grid-template-columns: 1fr; }
  .zq-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .zq-timeline::before { left: 20px; }
  .zq-timeline-item { grid-template-columns: auto 1fr; }
  .zq-values-grid { grid-template-columns: 1fr; }
  .zq-footer-bottom { flex-direction: column; text-align: center; }
  .zq-hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .zq-gallery-masonry { columns: 1; }
  .zq-stats-grid { grid-template-columns: 1fr; }
  .zq-team-grid { grid-template-columns: 1fr; }
}

/* ── Mobile Menu ── */
.zq-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--zq-navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.zq-mobile-menu.zq-open {
  transform: translateX(0);
}

.zq-mobile-menu-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.zq-mobile-menu-links a {
  font-family: var(--zq-font-display);
  font-size: 2rem;
  color: var(--zq-cream);
  transition: color var(--zq-transition);
}

.zq-mobile-menu-links a:hover { color: var(--zq-gold); }

.zq-mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--zq-cream);
  font-size: 1.6rem;
  cursor: pointer;
}



.logo{
  max-width: 150px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}