/* ========================================
   MyApexPhysique — Editorial Design
   ======================================== */

:root {
  --red: #c0392b;
  --red-light: #e74c3c;
  --red-glow: rgba(192, 57, 43, 0.15);
  --red-glow-strong: rgba(192, 57, 43, 0.3);

  --bg: #0b0b0b;
  --bg-elevated: #111111;
  --bg-card: #141414;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  --text: #f0ece6;
  --text-dim: #8a8680;
  --text-muted: #5a5650;

  --sans: 'Outfit', -apple-system, sans-serif;
  --mono: 'Space Grotesk', monospace;
  --serif: 'Instrument Serif', Georgia, serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Fluid type scale (320px → 1280px) */
  --text-xs:   clamp(0.6875rem, 0.65rem + 0.18vw, 0.75rem);
  --text-sm:   clamp(0.8125rem, 0.78rem + 0.18vw, 0.875rem);
  --text-base: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);
  --text-md:   clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  --text-lg:   clamp(1.0625rem, 1rem + 0.3vw, 1.125rem);
  --text-xl:   clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
  --text-2xl:  clamp(1.25rem, 1.05rem + 1vw, 1.5rem);
  --text-3xl:  clamp(1.5rem, 1.15rem + 1.75vw, 2.25rem);
  --text-4xl:  clamp(1.75rem, 1.3rem + 2.25vw, 2.75rem);
  --text-5xl:  clamp(2rem, 1.4rem + 3vw, 3.25rem);
  --text-6xl:  clamp(2.5rem, 1.6rem + 4.5vw, 4.5rem);

  /* Fluid spacing scale */
  --space-xs:  clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
  --space-sm:  clamp(0.5rem, 0.4rem + 0.5vw, 0.875rem);
  --space-md:  clamp(0.875rem, 0.7rem + 0.9vw, 1.5rem);
  --space-lg:  clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  --space-xl:  clamp(2rem, 1.5rem + 2.5vw, 4rem);
  --space-2xl: clamp(3rem, 2rem + 5vw, 6rem);

  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Film grain ---- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: 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)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ---- Custom cursor ---- */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(192, 57, 43, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s;
}

body:hover .cursor { opacity: 1; }

/* ---- Utility ---- */
.text-red { color: var(--red-light); }
.text-stroke {
  -webkit-text-stroke: 1.5px var(--text);
  color: transparent;
}

.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}

/* ---- Buttons ---- */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: var(--red);
  color: white;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  border-radius: 4px;
  cursor: none;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--red-glow-strong);
}

.btn-main:hover::before { opacity: 1; }

.btn-arrow {
  display: inline-flex;
  transition: transform 0.35s var(--ease);
}

.btn-main:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-text {
  position: relative;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-dim);
  cursor: none;
  transition: color 0.3s;
}

.btn-underline {
  display: block;
  height: 1px;
  background: var(--text-dim);
  transform-origin: left;
  transition: transform 0.4s var(--ease), background 0.3s;
  margin-top: 2px;
}

.btn-text:hover { color: var(--text); }
.btn-text:hover .btn-underline { background: var(--red); transform: scaleX(1.2); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: 1px solid var(--border-hover);
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-dim);
  cursor: none;
  transition: all 0.35s var(--ease);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red-light);
  background: var(--red-glow);
}

.btn-full { width: 100%; justify-content: center; }

/* ---- Image placeholders ---- */
.img-placeholder {
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  border: 1px dashed var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--text-muted);
  z-index: 1;
}

/* Hide placeholder when image loads */
img:not([src=""]) + .img-placeholder { display: none; }
img[src=""] { display: none; }
img:not([src=""]):not([alt=""]) { display: block; }

/* Force show placeholder if image fails */
.img-placeholder-wide {
  font-size: 1.25rem;
  font-family: var(--mono);
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.5s var(--ease);
}

.nav.scrolled {
  padding: 0.75rem 0;
  background: rgba(11, 11, 11, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

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

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.3s;
  position: relative;
  cursor: none;
}

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

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 0.5rem 1rem !important;
  background: var(--red-glow);
  border: 1px solid rgba(192, 57, 43, 0.25);
  border-radius: 4px;
  color: var(--red-light) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--red) !important;
  color: white !important;
  border-color: var(--red) !important;
}

.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.4s var(--ease);
  transform-origin: center;
}

/* ---- Hero ---- */
.hero {
  padding: clamp(7rem, 12vh, 10rem) 0 clamp(4rem, 8vh, 6rem);
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--red);
}

.hero-title {
  font-family: var(--sans);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--red-light);
}

.hero-dot {
  color: var(--red);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-hover);
}

.hero-stat-num {
  display: block;
  font-family: var(--mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.hero-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.125rem;
}

/* Hero images */
.hero-image-stack {
  position: relative;
  height: 520px;
}

.hero-img {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
}

.hero-img-1 {
  width: 280px;
  height: 380px;
  top: 0;
  left: 0;
  z-index: 2;
  transform: rotate(-2deg);
  transition: transform 0.6s var(--ease);
}

.hero-img-1:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-img-2 {
  width: 240px;
  height: 320px;
  bottom: 0;
  right: 0;
  z-index: 1;
  transform: rotate(3deg);
  transition: transform 0.6s var(--ease);
}

.hero-img-2:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-float-tag {
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  background: var(--bg);
  border: 1px solid var(--border-hover);
  border-left: 2px solid var(--red);
  padding: 0.75rem 1rem;
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  line-height: 1.5;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

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

/* ---- Marquee ---- */
.marquee-wrap {
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-elevated);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Problem ---- */
.problem {
  padding: clamp(5rem, 10vh, 8rem) 0;
}

.problem-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.problem-left {
  position: sticky;
  top: 100px;
  align-self: start;
}

.problem-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

@media (max-width: 1024px) {
  .problem-left { position: static; top: auto; }
}

.problem-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.problem-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.problem-item:first-child {
  border-top: 1px solid var(--border);
}

.problem-item:hover {
  padding-left: 0.75rem;
}

.problem-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
  flex-shrink: 0;
  padding-top: 0.25rem;
}

.problem-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.problem-item p {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ---- Filosofie ---- */
.filosofie {
  padding: clamp(5rem, 10vh, 8rem) 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.filosofie-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.filosofie-header {
  margin-bottom: 3.5rem;
}

.filosofie-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.filosofie-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.filosofie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  container-type: inline-size;
}

.filosofie-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.25rem 2rem;
  transition: all 0.5s var(--ease);
  overflow: hidden;
}

.card-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(225deg, var(--red-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

.filosofie-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.filosofie-card:hover .card-corner { opacity: 1; }

.filosofie-card-num {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--red);
  opacity: 0.4;
  margin-bottom: 1.25rem;
  transition: opacity 0.4s;
}

.filosofie-card:hover .filosofie-card-num { opacity: 0.8; }

.filosofie-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.filosofie-card p {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ---- Big Image ---- */
.big-image-section {
  padding: 0;
}

.big-image-inner {
  max-width: 100%;
}

.big-image-wrapper {
  position: relative;
  height: clamp(300px, 50vh, 500px);
  overflow: hidden;
}

.big-image-wrapper img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  filter: grayscale(40%) contrast(1.1);
  transform: translateY(-15%);
}

.big-image-wrapper .img-placeholder-wide {
  height: 100%;
  background: var(--bg-card);
}

.big-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11, 11, 11, 0.9) 0%, rgba(11, 11, 11, 0.4) 60%, rgba(11, 11, 11, 0.7) 100%);
  display: flex;
  align-items: center;
  padding: 0 clamp(2rem, 6vw, 6rem);
}

.big-image-overlay blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  line-height: 1.4;
  max-width: 600px;
  color: var(--text);
}

.big-image-overlay cite {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--red);
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

/* ---- Over Willem ---- */
.over {
  padding: clamp(5rem, 10vh, 8rem) 0;
}

.over-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.over-img-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.over-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
}

.over-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.over-story {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.over-story p {
  font-size: 1.0625rem;
  color: var(--text-dim);
  line-height: 1.75;
}

.over-story em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--text);
}

.over-story strong { color: var(--text); }

.over-numbers {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.over-num {
  display: block;
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red-light);
}

.over-num-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.125rem;
}

/* ---- Reviews ---- */
.reviews {
  padding: clamp(6rem, 14vh, 10rem) 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(200px, 40vw, 560px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red-glow-strong), transparent);
  opacity: 0.5;
}

.reviews-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.reviews-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 720px;
}

.reviews-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  container-type: inline-size;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(2rem, 3.5vw, 3rem);
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red-glow-strong), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.review-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

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

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--red);
  font-size: 0.9375rem;
}

.review-date {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.review-text {
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  color: var(--text-dim);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 2rem;
}

.review-text strong { color: var(--text); }

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red-glow);
  border: 1px solid rgba(192, 57, 43, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.review-author strong {
  display: block;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
}

.review-author span:last-child {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.1875rem;
}

/* ---- Filosofie intro (subhead) ---- */
.filosofie-intro {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 640px;
}

/* ---- Contact ---- */
.contact {
  padding: clamp(5rem, 10vh, 8rem) 0;
  position: relative;
}

.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

@media (max-width: 960px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Sticky contact header — staat boven aan de sectie terwijl het form scrollt */
.contact-header {
  position: sticky;
  top: 100px;
  align-self: start;
}

@media (max-width: 960px) {
  .contact-header { position: static; top: auto; }
}

.contact-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.contact-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.contact-desc {
  font-size: 1.0625rem;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 460px;
}

/* Contact form */
.contact-form-wrap { width: 100%; min-width: 0; }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.contact-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.contact-form .form-field { margin-bottom: 1rem; }

.contact-form .form-field label {
  display: block;
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--text);
  outline: none;
  transition: all 0.35s var(--ease);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8680' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--sans);
  line-height: 1.5;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.contact-form .btn-main { margin-top: 0.5rem; }

.form-status {
  min-height: 1.25rem;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  text-align: center;
  color: var(--text-dim);
  transition: color 0.3s;
}

.form-status.success { color: #34c77d; }
.form-status.error { color: var(--red-light); }

.contact-form .wp-privacy {
  margin-top: 0.5rem;
}

/* ---- WhatsApp floating button ---- */
.wa-float {
  position: fixed;
  bottom: clamp(1.25rem, 3vw, 1.75rem);
  right: clamp(1.25rem, 3vw, 1.75rem);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.25rem 0.75rem 0.75rem;
  background: #25D366;
  color: white;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  opacity: 0;
  transform: translateY(16px) scale(0.92);
  pointer-events: none;
}

.wa-float.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5), 0 6px 16px rgba(0,0,0,0.25);
}

.wa-icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.wa-pulse {
  position: absolute;
  top: 50%;
  left: calc(0.75rem + 16px);
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  animation: wa-pulse 2.2s cubic-bezier(0.33, 0, 0.66, 1) infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.55; }
  70% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

.wa-label {
  position: relative;
  z-index: 2;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .wa-pulse { animation: none; opacity: 0; }
}

/* ---- Whitepaper ---- */
.whitepaper {
  padding: clamp(5rem, 10vh, 8rem) 0;
}

.whitepaper-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.wp-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}

.wp-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.wp-desc {
  font-size: 1.0625rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.wp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wp-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-dim);
}

.wp-check {
  color: var(--red);
  font-weight: bold;
}

.wp-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
}

.wp-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--text);
  outline: none;
  transition: all 0.35s var(--ease);
  cursor: none;
}

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

.form-field input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.wp-form .btn-main { margin-top: 0.5rem; }

.wp-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.footer-top {
  padding: clamp(4rem, 8vh, 6rem) 0;
  border-bottom: 1px solid var(--border);
}

.footer-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.footer-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--red-light);
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.875rem;
}

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

.footer-links-row a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color 0.3s;
  cursor: none;
}

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

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

/* ---- Reveal animations ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.filosofie-grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.filosofie-grid [data-reveal]:nth-child(3) { transition-delay: 0.2s; }

.problem-right [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.problem-right [data-reveal]:nth-child(3) { transition-delay: 0.2s; }

/* ---- Magnetic button effect ---- */
[data-tilt] {
  transition: transform 0.5s var(--ease);
}

/* ========================================
   Responsive — Tablet (max 1024px)
   ======================================== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-left { text-align: center; }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stat-row {
    justify-content: center;
  }

  .hero-image-stack {
    height: 420px;
    margin: 0 auto;
    max-width: 480px;
  }

  .hero-img-1 {
    left: 50%;
    transform: translateX(-75%) rotate(-2deg);
  }

  .hero-img-2 {
    right: auto;
    left: 50%;
    transform: translateX(-10%) rotate(3deg);
  }

  .hero-float-tag { display: none; }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .problem-title {
    margin-bottom: 0;
  }

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

  .over-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .over-image {
    display: flex;
    justify-content: center;
  }

  .over-img-wrapper {
    max-width: 420px;
    width: 100%;
    aspect-ratio: 4/5;
  }

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

  .whitepaper-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-desc { max-width: 100%; }
}

/* ========================================
   Responsive — Mobile (max 768px)
   ======================================== */
@media (max-width: 768px) {
  /* Hide custom cursor on touch devices */
  .cursor, .cursor-follower { display: none !important; }
  body { cursor: auto; }
  a, button, input { cursor: auto; }

  /* --- Nav mobile --- */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 11, 11, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
  }

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

  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a::after { display: none; }

  .nav-links .nav-cta {
    margin-top: 1rem;
    text-align: center;
    border-bottom: none;
    padding: 0.875rem 1rem !important;
    display: block;
  }

  .nav-toggle { display: flex; }

  /* --- Hero mobile --- */
  .hero {
    padding: 6rem 0 3rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn-main {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }

  .hero-image-stack {
    height: 360px;
    max-width: 100%;
  }

  .hero-img-1 {
    width: 55%;
    max-width: 220px;
    height: 300px;
    left: 5%;
    transform: rotate(-2deg);
  }

  .hero-img-2 {
    width: 50%;
    max-width: 200px;
    height: 260px;
    left: auto;
    right: 5%;
    transform: rotate(3deg);
  }

  .hero-stat-row {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-stat-divider {
    display: none;
  }

  /* --- Marquee mobile --- */
  .marquee-content {
    font-size: 0.6875rem;
    gap: 1.25rem;
  }

  /* --- Problem mobile --- */
  .problem-inner {
    gap: 2rem;
  }

  .problem-title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    text-align: center;
  }

  .problem-item {
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .problem-item:hover {
    padding-left: 0;
  }

  /* --- Filosofie mobile --- */
  .filosofie-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .filosofie-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .filosofie-card {
    padding: 1.75rem 1.5rem;
  }

  /* --- Big image mobile --- */
  .big-image-wrapper {
    height: clamp(250px, 40vh, 350px);
  }

  .big-image-overlay {
    padding: 0 1.5rem;
  }

  .big-image-overlay blockquote {
    font-size: clamp(1.125rem, 4.5vw, 1.5rem);
  }

  .big-image-overlay cite {
    font-size: 0.75rem;
  }

  /* --- Over mobile --- */
  .over-inner {
    gap: 2.5rem;
  }

  .over-img-wrapper {
    max-width: 100%;
    aspect-ratio: 4/5;
  }

  .over-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .over-story p {
    font-size: 1rem;
  }

  .over-numbers {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .over-num {
    font-size: 1.5rem;
  }

  .over-num-label {
    font-size: 0.6875rem;
  }

  /* --- Reviews mobile --- */
  .reviews-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .review-card {
    padding: 1.75rem 1.5rem;
  }

  .review-text {
    font-size: 1rem;
  }

  .review-top {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  /* --- Whitepaper mobile --- */
  .wp-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .wp-form {
    padding: 2rem 1.5rem;
  }

  .wp-list li {
    font-size: 0.875rem;
  }

  /* --- Contact mobile --- */
  .contact-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .contact-desc { font-size: 1rem; }

  .contact-form { padding: 1.75rem 1.25rem; }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 1rem; /* voorkom iOS auto-zoom */
  }

  /* --- WhatsApp float mobile: icon-only --- */
  .wa-float {
    padding: 0;
    width: 56px;
    height: 56px;
    justify-content: center;
    bottom: 1rem;
    right: 1rem;
  }

  .wa-label { display: none; }

  .wa-pulse {
    left: 50%;
    width: 56px;
    height: 56px;
  }

  /* --- Footer mobile --- */
  .footer-cta h2 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .footer-actions {
    flex-direction: column;
    width: 100%;
  }

  .footer-actions .btn-main,
  .footer-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

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

  .footer-links-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

/* ========================================
   Responsive — Small mobile (max 480px)
   ======================================== */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-image-stack {
    height: 300px;
  }

  .hero-img-1 {
    width: 58%;
    max-width: 190px;
    height: 260px;
    left: 2%;
  }

  .hero-img-2 {
    width: 52%;
    max-width: 175px;
    height: 220px;
    right: 2%;
  }

  .problem-title {
    font-size: 1.625rem;
  }

  .filosofie-title {
    font-size: 1.625rem;
  }

  .filosofie-card {
    padding: 1.5rem 1.25rem;
  }

  .filosofie-card-num {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .over-numbers {
    justify-content: space-between;
    gap: 1rem;
  }

  .over-num-item {
    text-align: center;
    flex: 1;
  }

  .review-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }

  .big-image-wrapper {
    height: 220px;
  }

  .big-image-overlay blockquote {
    font-size: 1rem;
  }

  .wp-form {
    padding: 1.5rem 1.25rem;
  }

  .form-field input {
    padding: 0.8125rem 0.875rem;
    font-size: 1rem; /* prevents iOS zoom */
  }
}

/* ========================================
   Touch device overrides
   ======================================== */
@media (hover: none) and (pointer: coarse) {
  .cursor, .cursor-follower { display: none !important; }
  body, a, button, input { cursor: auto; }

  /* Disable hover-only effects on touch */
  .filosofie-card:hover,
  .review-card:hover,
  .problem-item:hover {
    transform: none;
    box-shadow: none;
    padding-left: 0;
  }

  /* Larger touch targets */
  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .btn-main, .btn-outline {
    min-height: 48px;
  }

  .form-field input {
    min-height: 48px;
    font-size: 1rem; /* prevent iOS auto-zoom */
  }
}

/* ========================================
   Landscape phone
   ======================================== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 5rem 0 2rem;
    min-height: auto;
  }

  .hero-image-stack {
    height: 240px;
  }

  .hero-img-1 { height: 220px; width: 160px; }
  .hero-img-2 { height: 180px; width: 140px; }

  .big-image-wrapper {
    height: 200px;
  }
}
