:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #16161f;
  --fg: #e8e6e1;
  --fg-muted: #8a8880;
  --fg-dim: #5a5850;
  --accent: #c9a84c;
  --accent-glow: rgba(201, 168, 76, 0.15);
  --accent-bright: #e0c060;
  --border: rgba(201, 168, 76, 0.12);
  --border-subtle: rgba(255, 255, 255, 0.04);
  --radius: 12px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ═══ HERO ═══ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  text-align: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 50% 40%, var(--accent-glow), transparent),
    radial-gradient(circle 300px at 20% 80%, rgba(201, 168, 76, 0.05), transparent),
    radial-gradient(circle 400px at 80% 20%, rgba(201, 168, 76, 0.03), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.accent {
  color: var(--accent);
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ═══ SECTION LABEL ═══ */

.section-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
  text-align: center;
}

/* ═══ NICHES ═══ */

.niches {
  padding: 6rem 2rem;
  background: var(--bg);
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.niche-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.niche-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.niche-symbol {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.niche-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.niche-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ═══ PRODUCTS ═══ */

.products {
  padding: 6rem 2rem;
  background: var(--bg-elevated);
}

.products-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.product-item {
  text-align: center;
  padding: 2rem 1rem;
}

.product-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.product-item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

.product-item p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ═══ CLOSING ═══ */

.closing {
  padding: 8rem 2rem;
  text-align: center;
  background: var(--bg);
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--accent);
}

.closing-content {
  max-width: 600px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* ═══ FOOTER ═══ */

.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  background: var(--bg);
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-dim);
  font-style: italic;
}

/* ═══ RESPONSIVE ═══ */

@media (max-width: 768px) {
  .niches-grid {
    grid-template-columns: 1fr;
  }

  .products-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .hero {
    padding: 3rem 1.5rem;
    min-height: 90vh;
  }

  .niche-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .products-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .lede {
    font-size: 1rem;
  }
}
/* ═══ HERO ACTIONS ═══ */

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: all 0.25s ease;
}

.hero-btn--primary {
  background: var(--accent);
  color: #0a0a0f;
}
.hero-btn--primary:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.hero-btn--ghost {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
}
.hero-btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* ═══ NICHE CARD LINK STATE ═══ */

a.niche-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.niche-cta {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  transition: letter-spacing 0.2s ease;
}

a.niche-card:hover .niche-cta {
  letter-spacing: 0.2em;
}

/* ═══ NAV ═══ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-nav.nav-scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 2rem;
  border-color: var(--border-subtle);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }

.nav-cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: #0a0a0f;
  background: var(--accent);
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}

/* Dropdown */
.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: -1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 200px;
  padding: 0.5rem 0;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.nav-dropdown-wrap:hover .nav-dropdown { display: block; }
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.dropdown-item:hover {
  color: var(--accent);
  background: var(--bg-elevated);
}
.dropdown-symbol {
  font-size: 0.75rem;
  color: var(--accent);
  width: 16px;
  text-align: center;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg-muted);
  transition: all 0.25s;
}

/* ═══ PAGE HEADER (gallery, about inner pages) ═══ */

.page-header {
  padding: 10rem 2rem 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse 600px 400px at 50% 0%, var(--accent-glow), transparent);
}
.page-header-inner { max-width: 720px; margin: 0 auto; }

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1rem;
  color: var(--fg);
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ═══ GALLERY FILTERS ═══ */

.gallery-filters, .niche-filter-bar {
  padding: 2rem 2rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.filter-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-bottom: 1.5rem;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  text-decoration: none;
  transition: all 0.2s;
}
.filter-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.filter-pill--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0f;
}
.niche-pill--mystery:hover { border-color: #b8966a; color: #b8966a; }
.niche-pill--gaming:hover  { border-color: #6a8fb8; color: #6a8fb8; }
.niche-pill--tech:hover    { border-color: #6ab89a; color: #6ab89a; }
.niche-pill--street:hover  { border-color: var(--fg-muted); color: var(--fg); }

/* ═══ DESIGN GRID ═══ */

.design-grid-section {
  padding: 3rem 2rem 6rem;
  background: var(--bg);
}

.design-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.design-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.design-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

/* Design preview — niche-specific visual treatments */
.design-card-preview {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.design-preview-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  position: relative;
}

/* Ancient Mysteries — warm ochre + geometric */
.design-visual--ancient-mysteries {
  background: linear-gradient(135deg, #1a1408 0%, #0f0c05 100%);
  border-bottom: 1px solid rgba(184, 150, 106, 0.2);
}
.design-visual--ancient-mysteries .design-preview-symbol {
  font-size: 3rem;
  color: #b8966a;
  line-height: 1;
  filter: drop-shadow(0 0 16px rgba(184, 150, 106, 0.4));
}
.design-visual--ancient-mysteries .design-preview-title {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  color: rgba(184, 150, 106, 0.7);
  text-align: center;
}

/* Gaming — electric blue/indigo */
.design-visual--gaming {
  background: linear-gradient(135deg, #080d1a 0%, #050810 100%);
  border-bottom: 1px solid rgba(106, 143, 184, 0.2);
}
.design-visual--gaming .design-preview-symbol {
  font-size: 3rem;
  color: #6a8fb8;
  line-height: 1;
  filter: drop-shadow(0 0 16px rgba(106, 143, 184, 0.5));
}
.design-visual--gaming .design-preview-title {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  color: rgba(106, 143, 184, 0.7);
  text-align: center;
}

/* Tech Humor — terminal green */
.design-visual--tech-humor {
  background: linear-gradient(135deg, #050f0a 0%, #020806 100%);
  border-bottom: 1px solid rgba(106, 184, 154, 0.2);
}
.design-visual--tech-humor .design-preview-symbol {
  font-size: 3rem;
  color: #6ab89a;
  line-height: 1;
  filter: drop-shadow(0 0 16px rgba(106, 184, 154, 0.4));
  font-family: var(--font-body);
}
.design-visual--tech-humor .design-preview-title {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: rgba(106, 184, 154, 0.7);
  text-align: center;
}

/* Minimal Street — bone white / stark */
.design-visual--minimal-street {
  background: linear-gradient(135deg, #111114 0%, #0c0c0f 100%);
  border-bottom: 1px solid rgba(232, 230, 225, 0.08);
}
.design-visual--minimal-street .design-preview-symbol {
  font-size: 2.2rem;
  color: rgba(232, 230, 225, 0.6);
  line-height: 1;
  font-family: var(--font-display);
  font-weight: 700;
}
.design-visual--minimal-street .design-preview-title {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  color: rgba(232, 230, 225, 0.35);
  text-align: center;
}

/* Design card body */
.design-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.design-niche-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.design-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
}

.design-tagline {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-style: italic;
}

.design-description {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.design-products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.product-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--fg-dim);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
}
.product-tag--more {
  border-color: var(--border);
  color: var(--fg-muted);
}

.design-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
}

.marketplace-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s;
}
.marketplace-btn--rb {
  background: rgba(255, 64, 28, 0.1);
  border: 1px solid rgba(255, 64, 28, 0.25);
  color: #ff7a5a;
}
.marketplace-btn--rb:hover {
  background: rgba(255, 64, 28, 0.18);
  border-color: rgba(255, 64, 28, 0.5);
}
.marketplace-btn--tp {
  background: rgba(24, 160, 100, 0.1);
  border: 1px solid rgba(24, 160, 100, 0.25);
  color: #4db880;
}
.marketplace-btn--tp:hover {
  background: rgba(24, 160, 100, 0.18);
  border-color: rgba(24, 160, 100, 0.5);
}
.marketplace-btn--etsy {
  background: rgba(240, 103, 45, 0.1);
  border: 1px solid rgba(240, 103, 45, 0.25);
  color: #f0803e;
}
.marketplace-btn--etsy:hover {
  background: rgba(240, 103, 45, 0.18);
  border-color: rgba(240, 103, 45, 0.5);
}

/* ═══ NICHE PAGE HEADER ═══ */

.niche-header {
  padding: 9rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.niche-header--ancient-mysteries {
  background: radial-gradient(ellipse 700px 500px at 50% 30%, rgba(184, 150, 106, 0.12), transparent);
}
.niche-header--gaming {
  background: radial-gradient(ellipse 700px 500px at 50% 30%, rgba(106, 143, 184, 0.12), transparent);
}
.niche-header--tech-humor {
  background: radial-gradient(ellipse 700px 500px at 50% 30%, rgba(106, 184, 154, 0.1), transparent);
}
.niche-header--minimal-street {
  background: radial-gradient(ellipse 700px 500px at 50% 30%, rgba(232, 230, 225, 0.04), transparent);
}

.niche-header-inner { max-width: 680px; margin: 0 auto; }

.niche-hero-symbol {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: block;
  font-family: var(--font-display);
}
.niche-header--ancient-mysteries .niche-hero-symbol { color: #b8966a; }
.niche-header--gaming .niche-hero-symbol { color: #6a8fb8; }
.niche-header--tech-humor .niche-hero-symbol { color: #6ab89a; }

.niche-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0.75rem 0 1.25rem;
  color: var(--fg);
}

.niche-hero-desc {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* ═══ ABOUT PAGE ═══ */

.about-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  background: radial-gradient(ellipse 600px 400px at 50% 0%, var(--accent-glow), transparent);
}
.about-hero-inner { max-width: 720px; margin: 0 auto; }
.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 0.75rem;
  color: var(--fg);
}

.about-body {
  padding: 4rem 2rem 8rem;
  background: var(--bg);
}
.about-content {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.about-block p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.85;
  margin-top: 1rem;
}
.about-block p em { color: var(--fg); font-style: italic; }
.about-block-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.about-niches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.about-niche-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.25s;
}
.about-niche-card:hover { border-color: var(--border); }
.about-niche-symbol {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-family: var(--font-display);
}
.about-niche--mystery .about-niche-symbol { color: #b8966a; }
.about-niche--gaming .about-niche-symbol  { color: #6a8fb8; }
.about-niche--tech .about-niche-symbol    { color: #6ab89a; }
.about-niche-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.about-niche-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-top: 0;
}

.about-marketplaces {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.marketplace-badge {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.25s, transform 0.2s;
}
.marketplace-badge:hover {
  border-color: var(--border);
  transform: translateX(4px);
}
.marketplace-badge-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}
.marketplace-badge-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.about-block--cta {
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 3rem;
  gap: 0;
}
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2.5rem;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.about-cta-btn:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

/* ═══ ERROR PAGE ═══ */

.error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  gap: 1.25rem;
}

/* ═══ FOOTER (extended) ═══ */

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.footer-brand-col { flex-shrink: 0; }
.footer-links-col {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 0.25rem;
}
.footer-link {
  font-size: 0.88rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-dim);
}

/* ═══ RESPONSIVE (additions) ═══ */

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .site-nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(12px);
    padding: 1.5rem 2rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-subtle);
  }
  .nav-dropdown-wrap:hover .nav-dropdown { display: none; }
  .site-nav.nav-open .nav-dropdown-wrap:hover .nav-dropdown { display: block; position: static; background: var(--bg-elevated); border: none; box-shadow: none; padding: 0.25rem 0 0.25rem 1rem; }
  .design-grid { grid-template-columns: 1fr; }
  .about-niches-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-links-col { gap: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
}
