﻿/*
Theme Name: Pulso Íntimo
Theme URI: https://pulsointimo.com
Author: Antigravity AI
Description: Custom WordPress theme for Pulso Íntimo - Premium Intimacy Boutique. Beautiful dark aesthetic, interactive wave canvas, and advanced typography glitch effects.
Version: 1.2
License: Proprietary
Text Domain: pulso-intimo
*/
/* ============================================
   PULSO ÃNTIMO â€” Style System
   WordPress-ready: clean CSS custom properties,
   modular sections, no framework dependencies.
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Colors */
  --color-violet: #8B5CF6;
  --color-magenta: #EC4899;
  --color-violet-soft: #C4B5FD;
  --color-violet-dark: #5B21B6;
  --color-magenta-dark: #BE185D;
  --color-bg-primary: #0A0A0A;
  --color-bg-secondary: #111111;
  --color-bg-card: #161618;
  --color-bg-card-hover: #1C1C20;
  --color-text-primary: #F5F5F5;
  --color-text-secondary: #A1A1AA;
  --color-text-muted: #71717A;
  --color-border: rgba(139, 92, 246, 0.15);
  --color-border-hover: rgba(139, 92, 246, 0.4);
  --color-glow: rgba(139, 92, 246, 0.25);

  /* Gradient */
  --gradient-brand: linear-gradient(135deg, var(--color-violet), var(--color-magenta));
  --gradient-brand-h: linear-gradient(90deg, var(--color-violet), var(--color-magenta));
  --gradient-subtle: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(236,72,153,0.1));

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 10vh, 8rem) clamp(1.5rem, 5vw, 6rem);
  --container-max: 1200px;
  --gap-lg: clamp(2rem, 4vw, 4rem);
  --gap-md: clamp(1.25rem, 2.5vw, 2rem);
  --gap-sm: clamp(0.75rem, 1.5vw, 1rem);

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.4s var(--ease-out);
  --transition-slow: 0.7s var(--ease-out);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--color-violet) var(--color-bg-primary);
}

html::-webkit-scrollbar {
  width: 6px;
}
html::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}
html::-webkit-scrollbar-thumb {
  background: var(--color-violet);
  border-radius: var(--radius-full);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ---------- Reveal Animation (scroll-triggered) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   HEADER / NAVIGATION
   WP: header.php / wp_nav_menu()
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem clamp(1.5rem, 5vw, 4rem);
  transition: background var(--transition-base), 
              box-shadow var(--transition-base),
              padding var(--transition-base);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-border);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  cursor: pointer;
}

.logo-pulso {
  font-weight: 700;
  position: relative;
}

.logo-intimo {
  font-weight: 300;
  font-size: 0.85em;
  color: var(--color-text-secondary);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gradient-brand-h);
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--color-text-primary);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all var(--transition-base);
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

.menu-toggle.active span:nth-child(1) {
  top: 50%; transform: translateY(-50%) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) {
  bottom: 50%; transform: translateY(50%) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   WP: template-parts/hero.php
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
}

/* Ambient gradient behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vh;
  background: radial-gradient(ellipse at center,
    rgba(139, 92, 246, 0.12) 0%,
    rgba(236, 72, 153, 0.06) 40%,
    transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* ---- GLITCH EFFECT on PULSO ---- */
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 12vw, 9rem);
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  color: var(--color-violet);
  text-shadow: 0 0 8px rgba(139, 92, 246, 0.3);
}

.hero-title .glitch {
  position: relative;
  display: inline-block;
  animation: glitch-base 3s infinite;
}

/* Shared pseudo-element base */
.hero-title .glitch::before,
.hero-title .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

/* ---- MAGENTA LAYER (key for the color-split impact) ---- */
.hero-title .glitch::before {
  color: var(--color-magenta);
  text-shadow: -3px 0 var(--color-magenta);
  opacity: 0.9;
  animation: glitch-magenta 4s infinite linear;
  clip-path: polygon(
    0 10%, 100% 10%, 100% 15%, 0 15%,
    0 35%, 100% 35%, 100% 42%, 0 42%,
    0 60%, 100% 60%, 100% 65%, 0 65%,
    0 82%, 100% 82%, 100% 88%, 0 88%
  );
}

/* ---- VIOLET DISPLACED LAYER ---- */
.hero-title .glitch::after {
  color: var(--color-violet);
  text-shadow: 3px 0 rgba(139, 92, 246, 0.6);
  opacity: 0.85;
  animation: glitch-violet 3.5s infinite linear;
  clip-path: polygon(
    0 0%, 100% 0%, 100% 8%, 0 8%,
    0 22%, 100% 22%, 100% 32%, 0 32%,
    0 48%, 100% 48%, 100% 58%, 0 58%,
    0 70%, 100% 70%, 100% 78%, 0 78%,
    0 92%, 100% 92%, 100% 100%, 0 100%
  );
}

/* Scan lines wrapper */
.hero-title .glitch-wrapper {
  position: relative;
  display: inline-block;
}

/* Visible scan lines on top */
.hero-title .glitch-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.15) 3px,
    rgba(0, 0, 0, 0.15) 5px
  );
  pointer-events: none;
  z-index: 2;
  animation: scanline-scroll 6s linear infinite;
}

/* ---- BASE TEXT VIBRATION ---- */
@keyframes glitch-base {
  0%, 65%   { transform: translate(0); }
  66%       { transform: translate(-3px, 1px); }
  67%       { transform: translate(2px, -1px); }
  68%       { transform: translate(-1px, 2px); }
  69%, 78%  { transform: translate(0); }
  79%       { transform: translate(2px, -2px); }
  80%       { transform: translate(-3px, 0); }
  81%       { transform: translate(1px, 1px); }
  82%, 100% { transform: translate(0); }
}

/* ---- MAGENTA SLICES â€” aggressive horizontal disruption ---- */
@keyframes glitch-magenta {
  0%, 50% {
    transform: translateX(0);
    clip-path: polygon(
      0 10%, 100% 10%, 100% 15%, 0 15%,
      0 35%, 100% 35%, 100% 42%, 0 42%,
      0 60%, 100% 60%, 100% 65%, 0 65%,
      0 82%, 100% 82%, 100% 88%, 0 88%
    );
    opacity: 0.8;
  }
  51% {
    transform: translateX(12px);
    clip-path: polygon(
      0 5%, 100% 5%, 100% 18%, 0 18%,
      0 28%, 100% 28%, 100% 38%, 0 38%,
      0 55%, 100% 55%, 100% 68%, 0 68%,
      0 78%, 100% 78%, 100% 92%, 0 92%
    );
    opacity: 1;
  }
  53% {
    transform: translateX(-10px);
    clip-path: polygon(
      0 2%, 100% 2%, 100% 12%, 0 12%,
      0 40%, 100% 40%, 100% 52%, 0 52%,
      0 70%, 100% 70%, 100% 75%, 0 75%,
      0 85%, 100% 85%, 100% 95%, 0 95%
    );
    opacity: 1;
  }
  55% {
    transform: translateX(15px);
    clip-path: polygon(
      0 8%, 100% 8%, 100% 22%, 0 22%,
      0 32%, 100% 32%, 100% 45%, 0 45%,
      0 62%, 100% 62%, 100% 72%, 0 72%
    );
    opacity: 0.95;
  }
  57% {
    transform: translateX(-8px);
    clip-path: polygon(
      0 15%, 100% 15%, 100% 25%, 0 25%,
      0 48%, 100% 48%, 100% 58%, 0 58%,
      0 75%, 100% 75%, 100% 85%, 0 85%
    );
    opacity: 0.9;
  }
  59%, 75% {
    transform: translateX(0);
    clip-path: polygon(
      0 10%, 100% 10%, 100% 15%, 0 15%,
      0 35%, 100% 35%, 100% 42%, 0 42%,
      0 60%, 100% 60%, 100% 65%, 0 65%,
      0 82%, 100% 82%, 100% 88%, 0 88%
    );
    opacity: 0.8;
  }
  76% {
    transform: translateX(-14px);
    clip-path: polygon(
      0 0%, 100% 0%, 100% 10%, 0 10%,
      0 25%, 100% 25%, 100% 40%, 0 40%,
      0 52%, 100% 52%, 100% 62%, 0 62%,
      0 80%, 100% 80%, 100% 100%, 0 100%
    );
    opacity: 1;
  }
  78% {
    transform: translateX(10px);
    clip-path: polygon(
      0 12%, 100% 12%, 100% 20%, 0 20%,
      0 45%, 100% 45%, 100% 55%, 0 55%,
      0 68%, 100% 68%, 100% 78%, 0 78%
    );
    opacity: 0.95;
  }
  80%, 100% {
    transform: translateX(0);
    clip-path: polygon(
      0 10%, 100% 10%, 100% 15%, 0 15%,
      0 35%, 100% 35%, 100% 42%, 0 42%,
      0 60%, 100% 60%, 100% 65%, 0 65%,
      0 82%, 100% 82%, 100% 88%, 0 88%
    );
    opacity: 0.8;
  }
}

/* ---- VIOLET SLICES â€” offset timing for layered chaos ---- */
@keyframes glitch-violet {
  0%, 55% {
    transform: translateX(0);
    clip-path: polygon(
      0 0%, 100% 0%, 100% 8%, 0 8%,
      0 22%, 100% 22%, 100% 32%, 0 32%,
      0 48%, 100% 48%, 100% 58%, 0 58%,
      0 70%, 100% 70%, 100% 78%, 0 78%,
      0 92%, 100% 92%, 100% 100%, 0 100%
    );
  }
  56% {
    transform: translateX(-12px);
    clip-path: polygon(
      0 3%, 100% 3%, 100% 15%, 0 15%,
      0 30%, 100% 30%, 100% 42%, 0 42%,
      0 55%, 100% 55%, 100% 65%, 0 65%,
      0 78%, 100% 78%, 100% 90%, 0 90%
    );
  }
  58% {
    transform: translateX(14px);
    clip-path: polygon(
      0 8%, 100% 8%, 100% 18%, 0 18%,
      0 35%, 100% 35%, 100% 48%, 0 48%,
      0 60%, 100% 60%, 100% 70%, 0 70%,
      0 85%, 100% 85%, 100% 95%, 0 95%
    );
  }
  60% {
    transform: translateX(-8px);
    clip-path: polygon(
      0 0%, 100% 0%, 100% 12%, 0 12%,
      0 25%, 100% 25%, 100% 35%, 0 35%,
      0 50%, 100% 50%, 100% 62%, 0 62%,
      0 72%, 100% 72%, 100% 82%, 0 82%
    );
  }
  62%, 80% {
    transform: translateX(0);
    clip-path: polygon(
      0 0%, 100% 0%, 100% 8%, 0 8%,
      0 22%, 100% 22%, 100% 32%, 0 32%,
      0 48%, 100% 48%, 100% 58%, 0 58%,
      0 70%, 100% 70%, 100% 78%, 0 78%,
      0 92%, 100% 92%, 100% 100%, 0 100%
    );
  }
  81% {
    transform: translateX(11px);
    clip-path: polygon(
      0 5%, 100% 5%, 100% 20%, 0 20%,
      0 38%, 100% 38%, 100% 50%, 0 50%,
      0 65%, 100% 65%, 100% 75%, 0 75%,
      0 88%, 100% 88%, 100% 98%, 0 98%
    );
  }
  83% {
    transform: translateX(-13px);
    clip-path: polygon(
      0 2%, 100% 2%, 100% 10%, 0 10%,
      0 28%, 100% 28%, 100% 40%, 0 40%,
      0 52%, 100% 52%, 100% 60%, 0 60%,
      0 75%, 100% 75%, 100% 85%, 0 85%
    );
  }
  85%, 100% {
    transform: translateX(0);
    clip-path: polygon(
      0 0%, 100% 0%, 100% 8%, 0 8%,
      0 22%, 100% 22%, 100% 32%, 0 32%,
      0 48%, 100% 48%, 100% 58%, 0 58%,
      0 70%, 100% 70%, 100% 78%, 0 78%,
      0 92%, 100% 92%, 100% 100%, 0 100%
    );
  }
}

/* Scan line scroll */
@keyframes scanline-scroll {
  0%   { background-position: 0 0; }
  100% { background-position: 0 100vh; }
}

/* Ambient glow behind PULSO */
.hero-title .glitch-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center,
    rgba(139, 92, 246, 0.2) 0%,
    rgba(236, 72, 153, 0.1) 40%,
    transparent 70%);
  z-index: -1;
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.08); }
}

.hero-subtitle {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.2rem, 4vw, 2.5rem);
  letter-spacing: 0.25em;
  color: var(--color-text-secondary);
  margin-top: 0.25em;
}

/* Frequency wave line */
.hero-wave-line {
  width: min(500px, 60vw);
  height: 3px;
  margin: 2rem auto;
  background: var(--gradient-brand-h);
  border-radius: var(--radius-full);
  position: relative;
  overflow: visible;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4),
              0 0 60px rgba(139, 92, 246, 0.1);
  animation: wave-pulse 3s ease-in-out infinite;
}

@keyframes wave-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(139,92,246,0.4), 0 0 60px rgba(139,92,246,0.1); }
  50%      { box-shadow: 0 0 30px rgba(236,72,153,0.5), 0 0 80px rgba(236,72,153,0.15); }
}

.hero-tagline {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--color-text-secondary);
  margin-top: 1rem;
  letter-spacing: 0.08em;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  background: transparent;
  border: 1.5px solid transparent;
  border-image: var(--gradient-brand) 1;
  border-radius: 0; /* border-image doesn't support radius, we use a wrapper trick */
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-base);
}

/* Use pseudo-element for rounded gradient border */
.hero-cta {
  border: none;
  background: var(--color-bg-primary);
  isolation: isolate;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  background: var(--gradient-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: var(--radius-full);
  pointer-events: none;
}

.hero-cta {
  border-radius: var(--radius-full);
}

.hero-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--transition-base);
  border-radius: var(--radius-full);
  z-index: -1;
}

.hero-cta:hover::after {
  opacity: 1;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3);
}

.hero-cta .arrow {
  transition: transform var(--transition-base);
}
.hero-cta:hover .arrow {
  transform: translateX(3px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

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

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-8px); }
}

@keyframes scroll-line {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   SECTION: CATEGORIES
   WP: template-parts/categories.php
   ============================================ */
.categories-section {
  padding: var(--section-padding);
  position: relative;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-violet-soft);
  margin-bottom: var(--gap-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: var(--gap-lg);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}

.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-slow);
  filter: brightness(0.6) saturate(0.8);
}

.category-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.75) saturate(1.1);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background var(--transition-base);
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(139,92,246,0.08) 60%);
}

.category-card-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  transition: transform var(--transition-base);
}

.category-card:hover .category-card-name {
  transform: translateY(-4px);
}

.category-card-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-base);
}

.category-card:hover .category-card-desc {
  opacity: 1;
  transform: translateY(0);
  color: var(--color-text-secondary);
}

/* Glow border on hover */
.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  pointer-events: none;
}

.category-card:hover::after {
  border-color: var(--color-border-hover);
  box-shadow: inset 0 0 30px rgba(139, 92, 246, 0.08),
              0 0 30px rgba(139, 92, 246, 0.1);
}

/* ============================================
   SECTION: MANIFESTO / BRAND STATEMENT
   WP: template-parts/manifesto.php
   ============================================ */
.manifesto-section {
  padding: var(--section-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: 50vh;
  background: radial-gradient(ellipse at center,
    rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.manifesto-quote em {
  font-style: italic;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}

.manifesto-divider {
  width: 80px;
  height: 2px;
  background: var(--gradient-brand-h);
  margin: 2.5rem auto;
  border-radius: var(--radius-full);
}

.manifesto-body {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ============================================
   SECTION: VALUES / FEATURES
   WP: template-parts/values.php
   ============================================ */
.values-section {
  padding: var(--section-padding);
  background: var(--color-bg-secondary);
  position: relative;
}

/* Subtle top/bottom borders */
.values-section::before,
.values-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}
.values-section::before { top: 0; }
.values-section::after  { bottom: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
  margin-top: var(--gap-lg);
}

.value-card {
  padding: 2rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-brand-h);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

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

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gradient-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  border: 1px solid var(--color-border);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ============================================
   SECTION: NEWSLETTER / CTA
   WP: template-parts/newsletter.php
   ============================================ */
.newsletter-section {
  padding: var(--section-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70vw;
  height: 60%;
  background: radial-gradient(ellipse at bottom,
    rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
}

.newsletter-desc {
  font-size: 1rem;
  color: var(--color-text-secondary);
  max-width: 480px;
  margin: 0 auto 2rem;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.newsletter-input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-primary);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.newsletter-input::placeholder {
  color: var(--color-text-muted);
}

.newsletter-input:focus {
  border-color: var(--color-violet);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.newsletter-btn {
  padding: 0.9rem 1.8rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: white;
  background: var(--gradient-brand);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-base);
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.35);
}

.newsletter-disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

/* ============================================
   FOOTER
   WP: footer.php
   ============================================ */
.site-footer {
  padding: clamp(3rem, 8vh, 5rem) clamp(1.5rem, 5vw, 6rem) 2rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-secondary);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--gap-lg);
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  max-width: 280px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--color-violet-soft);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--color-violet);
  color: var(--color-violet-soft);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

/* ============================================
   WAVE DIVIDER (reusable between sections)
   ============================================ */
.wave-divider {
  width: 100%;
  height: 2px;
  max-width: 200px;
  margin: 0 auto;
  background: var(--gradient-brand-h);
  border-radius: var(--radius-full);
  opacity: 0.4;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    border-left: 1px solid var(--color-border);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .menu-toggle {
    display: block;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-sm);
  }

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

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-title {
    letter-spacing: 0.08em;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .category-card {
    aspect-ratio: 4/3;
  }
}
