/* ============================================================
   Light&Shadows — Dark, atmospheric, a little witchy
   Curiosity cabinet meets cozy cat sanctuary
   ============================================================ */

/* ── Custom properties ───────────────────────────────────── */
:root {
  --bg-deep:       #0b0a12;
  --bg-card:      #13111d;
  --bg-subtle:    #1c1927;
  --border:       rgba(180, 140, 90, 0.12);
  --border-lit:   rgba(180, 140, 90, 0.35);

  --text:         #e8dfc8;
  --text-muted:   #9b9180;
  --text-faint:   #5a5248;

  --gold:         #c9a96e;
  --gold-light:   #e8c98a;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body:  'Crimson Text', Georgia, serif;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Base ────────────────────────────────────────────────── */
body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--border-lit); border-radius: 3px; }

/* ── Selection ──────────────────────────────────────────── */
::selection { background: rgba(201, 169, 110, 0.25); color: var(--gold-light); }

/* ── Container ───────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--gold-light);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; color: var(--gold); }

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

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

blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--text-muted);
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0;
}

strong { color: var(--gold); font-weight: 600; }

/* ── Nav ─────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 10, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--gold); }

.logo-bracket {
  color: var(--text-faint);
  font-weight: 400;
}

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

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

/* 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: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 20% 80%, rgba(140, 80, 20, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 60% 90% at 85% 15%, rgba(70, 40, 100, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 55% 55%, rgba(201, 169, 110, 0.06) 0%, transparent 75%);
  pointer-events: none;
}

/* Noise texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

/* Cross-hatch subtle pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: float-orb 12s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(100, 60, 20, 0.12);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(80, 40, 120, 0.1);
  bottom: 20%;
  right: -5%;
  animation-delay: -4s;
  animation-duration: 15s;
}

.hero-orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(201, 169, 110, 0.08);
  top: 50%;
  left: 40%;
  animation-delay: -8s;
  animation-duration: 10s;
}

@keyframes float-orb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fade-up 0.8s ease-out 0.2s forwards;
}

.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.75rem;
  color: var(--gold-light);
  opacity: 0;
  animation: fade-up 0.8s ease-out 0.4s forwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.85;
  opacity: 0;
  animation: fade-up 0.8s ease-out 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s ease-out 0.8s forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fade-up 0.8s ease-out 1.2s forwards;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

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

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 1.9rem;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201, 169, 110, 0.35);
}

.btn-ghost {
  border: 1px solid var(--border-lit);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ── Page Header ─────────────────────────────────────────── */
.page-header {
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(100, 70, 30, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-header .container { position: relative; z-index: 1; }

.page-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fade-up 0.7s ease-out 0.1s forwards;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  opacity: 0;
  animation: fade-up 0.7s ease-out 0.25s forwards;
}

/* ── Section Heading ─────────────────────────────────────── */
.section-heading {
  font-size: 1.4rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 400;
}

.section-heading::before,
.section-heading::after {
  content: '──';
  margin: 0 0.75rem;
  color: var(--border-lit);
}

/* ── Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered cards */
.reveal-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Home: Intro cards ───────────────────────────────────── */
.home-intro {
  padding: 5rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.intro-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.75rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.intro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.intro-card:hover {
  border-color: var(--border-lit);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.intro-card:hover::before { opacity: 1; }

.intro-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.intro-card h2 {
  font-size: 1.6rem;
  margin-bottom: 0.85rem;
}

.intro-card p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.75;
}

.intro-link {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-style: italic;
  color: var(--gold);
  transition: color 0.2s, letter-spacing 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.intro-link:hover { color: var(--gold-light); letter-spacing: 0.1em; }

/* ── Home: Quote ─────────────────────────────────────────── */
.home-quote {
  padding: 4rem 0;
  background: var(--bg-subtle);
  position: relative;
}

.home-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a96e' fill-opacity='0.015'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* ── Home: Divider ──────────────────────────────────────── */
.home-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem 0;
  color: var(--text-faint);
}

.home-divider::before,
.home-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border));
}

.home-divider::after {
  background: linear-gradient(90deg, var(--border), transparent);
}

.home-divider span {
  font-size: 1.2rem;
  color: var(--border-lit);
}

/* ── Shop ────────────────────────────────────────────────── */
.shop-coming-soon {
  padding: 5rem 0;
}

.coming-soon-card {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.coming-soon-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.coming-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}

.coming-soon-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.coming-soon-card p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.coming-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.category-pill {
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border-lit);
  border-radius: 99px;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s;
}

.category-pill:hover { border-color: var(--gold); color: var(--gold); }

.coming-note {
  font-size: 0.9rem;
  color: var(--text-faint);
}

/* Shop preview grid */
.shop-preview {
  padding: 4rem 0 6rem;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.preview-card:hover {
  border-color: var(--border-lit);
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.preview-illustration {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.preview-illustration::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.preview-illustration svg {
  width: 56px;
  height: 56px;
  color: var(--border-lit);
  transition: color 0.3s, transform 0.3s;
}

.preview-card:hover .preview-illustration svg {
  color: var(--gold);
  transform: scale(1.1);
}

.preview-card h3 {
  padding: 1.5rem 1.75rem 0.5rem;
  font-size: 1.15rem;
}

.preview-card p {
  padding: 0 1.75rem 1.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Rescue ──────────────────────────────────────────────── */
.rescue-intro {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.rescue-lead {
  font-size: 1.18rem;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.rescue-note {
  font-size: 0.95rem;
  color: var(--text-faint);
}

.rescue-cats {
  padding: 5rem 0;
}

.cats-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cat-card {
  display: flex;
  gap: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.cat-card:hover {
  border-color: var(--border-lit);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.cat-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-subtle);
  border: 1px solid var(--border-lit);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cat-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 40%, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
}

.cat-avatar svg {
  width: 38px;
  height: 38px;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.cat-info { flex: 1; }

.cat-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.cat-meta {
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}

.cat-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.cat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cat-tag {
  padding: 0.22rem 0.75rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.78rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s;
}

.cat-tag:hover { border-color: var(--gold); color: var(--gold); }

/* Rescue CTA */
.rescue-cta {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.rescue-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(80, 50, 20, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border-lit);
  border-radius: 4px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: 1.7rem;
  margin-bottom: 0.85rem;
}

.cta-box p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── About ────────────────────────────────────────────────── */
.about-body {
  padding: 4.5rem 0 7rem;
}

.about-prose {
  max-width: 680px;
  margin: 0 auto;
}

.about-block {
  margin-bottom: 4rem;
}

.about-block h2 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-serif);
}

.about-block p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  margin-top: auto;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 120px;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(100, 70, 30, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-brand .nav-logo {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-faint);
}

.footer-links {
  display: flex;
  gap: 2.25rem;
}

.footer-links a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(11, 10, 18, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.5rem;
    z-index: 99;
  }

  .nav-links.open { display: flex; }

  .intro-grid { grid-template-columns: 1fr; }

  .preview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cat-card {
    flex-direction: column;
    gap: 1.25rem;
  }

  .cat-avatar {
    width: 64px;
    height: 64px;
  }
}

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

  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; text-align: center; }

  .coming-soon-card { padding: 2.5rem 1.75rem; }
  .cat-card { padding: 1.75rem; }
}