/* ==========================================================================
   DNH Artful Living — Component Styles
   ========================================================================== */

/* ==========================================================================
   Layout Utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container--narrow {
  max-width: var(--content-default);
}

.section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-32));
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.header--scrolled {
  border-bottom-color: var(--color-divider);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  gap: var(--space-4);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}

.header__logo svg,
.header__logo img {
  height: 55px;
  width: auto;
}

[data-theme="dark"] .header__logo img,
[data-theme="dark"] .footer__logo img {
  filter: invert(1);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.header__nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-6);
}

.header__nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
  padding-block: var(--space-1);
  letter-spacing: 0.02em;
}

.header__nav-link:hover,
.header__nav-link--active {
  color: var(--color-text);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
  width: 100%;
}

.header__controls {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  background: transparent;
}

.header__toggle:hover {
  background: var(--color-surface-offset);
  color: var(--color-text);
}

.header__lang-toggle {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: var(--space-1) var(--space-3);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-full);
}

.header__lang-toggle:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

/* Mobile menu button */
.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.header__menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

@media (max-width: 768px) {
  .header__menu-btn {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 90;
  }

  .header__nav.open {
    opacity: 1;
    pointer-events: all;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
  }

  .header__nav-link {
    font-size: var(--text-xl);
    font-family: var(--font-display);
  }
}

/* ==========================================================================
   Hero Sections
   ========================================================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-block: var(--space-20);
}

.hero--home {
  min-height: 90vh;
  background: linear-gradient(
    135deg,
    #5B2D8E 0%,
    #2E1065 10%,
    #7B3FA0 20%,
    #E87722 32%,
    #D4A017 42%,
    #C4D600 52%,
    #00897B 62%,
    #1565C0 72%,
    #6B3FA0 82%,
    #E87722 92%,
    #5B2D8E 100%
  );
  background-size: 400% 400%;
  animation: heroGradient 18s ease infinite;
}

@keyframes heroGradient {
  0%   { background-position: 0% 0%; }
  25%  { background-position: 100% 50%; }
  50%  { background-position: 50% 100%; }
  75%  { background-position: 0% 50%; }
  100% { background-position: 0% 0%; }
}

.hero--home::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, oklch(0.85 0.15 90 / 0.3), transparent 60%),
    radial-gradient(ellipse at 80% 30%, oklch(0.5 0.2 300 / 0.3), transparent 50%),
    radial-gradient(ellipse at 50% 80%, oklch(0.6 0.18 170 / 0.25), transparent 55%);
  animation: heroOverlay 14s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes heroOverlay {
  0%   { opacity: 0.6; transform: scale(1); }
  50%  { opacity: 1; transform: scale(1.15); }
  100% { opacity: 0.6; transform: scale(1); }
}

.hero__ripple-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.hero--home {
  cursor: crosshair;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding-inline: var(--space-6);
  pointer-events: none;
}

.hero__content a,
.hero__content button {
  pointer-events: auto;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 40px oklch(0 0 0 / 0.3);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: oklch(1 0 0 / 0.88);
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.hero--page {
  min-height: 50vh;
  background: var(--color-surface-offset);
}

.hero--page .hero__tagline {
  color: var(--color-text);
  text-shadow: none;
  font-size: var(--text-3xl);
}

.hero--page .hero__subtitle {
  color: var(--color-text-muted);
}

/* When a hero has a background image: dark overlay + white text */
.hero--page.has-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    oklch(0 0 0 / 0.5) 0%,
    oklch(0 0 0 / 0.65) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero--page.has-bg-image .hero__content {
  position: relative;
  z-index: 2;
}

.hero--page.has-bg-image .hero__tagline {
  color: #ffffff;
  text-shadow: 0 2px 24px oklch(0 0 0 / 0.7), 0 1px 4px oklch(0 0 0 / 0.5);
}

.hero--page.has-bg-image .hero__subtitle {
  color: oklch(1 0 0 / 0.95);
  text-shadow: 0 2px 16px oklch(0 0 0 / 0.6), 0 1px 4px oklch(0 0 0 / 0.4);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
/* ── Base button (solid, works on any background) ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn--primary {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px oklch(from var(--color-primary) l c h / 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn--accent {
  background: var(--color-accent, #E87722);
  color: #ffffff;
  border-color: var(--color-accent, #E87722);
}

.btn--accent:hover {
  background: #d06a1a;
  border-color: #d06a1a;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn--white {
  background: #ffffff;
  color: var(--color-primary);
  border-color: #ffffff;
}

.btn--white:hover {
  background: var(--color-primary-highlight);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px oklch(1 0 0 / 0.3);
}

.btn--warm {
  background: var(--color-warm);
  color: #ffffff;
  border-color: var(--color-warm);
}

.btn--warm:hover {
  background: var(--color-warm-hover);
  border-color: var(--color-warm-hover);
  transform: translateY(-1px);
}

/* ── Frosted glass override: only inside hero ── */
.hero--home .btn {
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  backdrop-filter: blur(16px) saturate(1.6);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 2px 16px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero--home .btn--white {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.hero--home .btn--white:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero--home .btn--outline {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.hero--home .btn--outline:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: clamp(var(--space-8), 5vw, var(--space-16));
}

.section-header__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  display: block;
}

.section-header__title {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.section-header__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
  margin-inline: auto;
}

/* ==========================================================================
   Featured Works / Cards
   ========================================================================== */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

@media (max-width: 768px) {
  .works-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.work-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0.4) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.8) brightness(1.1);
  backdrop-filter: blur(24px) saturate(1.8) brightness(1.1);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 16px 48px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(255, 255, 255, 0.3);
}

.work-card__image {
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  font-style: italic;
  position: relative;
  overflow: hidden;
}

.work-card__image--1 {
  background: linear-gradient(135deg, #5B2D8E 0%, #E87722 60%, #C4D600 100%);
}
.work-card__image--2 {
  background: linear-gradient(135deg, #4A1A8A 0%, #C4D600 50%, #E87722 100%);
}
.work-card__image--3 {
  background: linear-gradient(135deg, #E87722 0%, #5B2D8E 60%, #C4D600 100%);
}

.work-card__image span {
  background: oklch(0 0 0 / 0.2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  color: oklch(1 0 0 / 0.7);
  font-style: normal;
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
}

.work-card__body {
  padding: var(--space-5) var(--space-5) var(--space-6);
}

.work-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.work-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.work-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.work-card__price {
  display: inline-block;
  margin-top: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-primary);
}

/* ==========================================================================
   Values Section
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

@media (max-width: 960px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.value-card {
  position: relative;
  text-align: center;
  padding: var(--space-8) var(--space-4);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.35) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.8) brightness(1.1);
  backdrop-filter: blur(24px) saturate(1.8) brightness(1.1);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.03),
    0 8px 32px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.05),
    0 16px 48px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(255, 255, 255, 0.25);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
}

.value-card__icon svg {
  width: 32px;
  height: 32px;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.value-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-inline: auto;
}

/* ── Liquid Glass: specular highlight shimmer ── */
.work-card::after,
.value-card::after,
.belief-card::after,
.kernwaarde-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.35) 35%,
    rgba(255, 255, 255, 0.08) 45%,
    transparent 55%
  );
  opacity: 0.6;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.work-card:hover::after,
.value-card:hover::after,
.belief-card:hover::after,
.kernwaarde-card:hover::after {
  opacity: 1;
}

/* Ensure card content sits above the shimmer */
.value-card > *,
.belief-card > *,
.kernwaarde-card > * {
  position: relative;
  z-index: 2;
}

/* ── Liquid Glass: dark mode adaptation ── */
[data-theme="dark"] .work-card,
[data-theme="dark"] .value-card,
[data-theme="dark"] .belief-card,
[data-theme="dark"] .kernwaarde-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 50%,
    rgba(255, 255, 255, 0.06) 100%
  );
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .work-card:hover,
[data-theme="dark"] .value-card:hover,
[data-theme="dark"] .belief-card:hover,
[data-theme="dark"] .kernwaarde-card:hover {
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.2),
    0 16px 48px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .work-card::after,
[data-theme="dark"] .value-card::after,
[data-theme="dark"] .belief-card::after,
[data-theme="dark"] .kernwaarde-card::after {
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.12) 35%,
    rgba(255, 255, 255, 0.03) 45%,
    transparent 55%
  );
}

/* ==========================================================================
   Quote / Manifest Section
   ========================================================================== */
.quote-section {
  background: var(--color-primary);
  color: #ffffff;
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, oklch(0.7 0.15 90 / 0.15), transparent 60%),
    radial-gradient(ellipse at 70% 100%, oklch(0.6 0.2 30 / 0.15), transparent 60%);
}

.quote-section .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.quote-section__text {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.quote-section__attr {
  font-size: var(--text-sm);
  opacity: 0.7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
  background: var(--color-surface-offset);
  text-align: center;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.cta-section__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 550px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

.cta-section__buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   About Page
   ========================================================================== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}

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

.about-portrait {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #5B2D8E 0%, #E87722 50%, #C4D600 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-portrait span {
  background: oklch(0 0 0 / 0.2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  color: oklch(1 0 0 / 0.7);
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
}

.about-text h2 {
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-5);
  color: var(--color-text);
}

.about-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.about-vision {
  max-width: 800px;
  margin-inline: auto;
}

.about-vision h2 {
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-5);
  color: var(--color-text);
  text-align: center;
}

.about-vision p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.against-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

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

.against-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
}

.against-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-warm);
}

.against-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-3);
  color: var(--color-text);
  padding-left: var(--space-4);
}

.against-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  padding-left: var(--space-4);
}


/* Beliefs Grid (10 beliefs) */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
}

@media (min-width: 900px) {
  .beliefs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.belief-card {
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.35) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
  -webkit-backdrop-filter: blur(24px) saturate(1.8) brightness(1.1);
  backdrop-filter: blur(24px) saturate(1.8) brightness(1.1);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.03),
    0 8px 32px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.belief-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.05),
    0 16px 48px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(255, 255, 255, 0.25);
}

.belief-card__number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-primary);
  opacity: 0.35;
  margin-bottom: var(--space-2);
  line-height: 1;
}

.belief-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.belief-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Kernwaarden Grid (4 values) */
.kernwaarden-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

@media (min-width: 900px) {
  .kernwaarden-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.kernwaarde-card {
  position: relative;
  text-align: center;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.35) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.8) brightness(1.1);
  backdrop-filter: blur(24px) saturate(1.8) brightness(1.1);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.03),
    0 8px 32px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.kernwaarde-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.05),
    0 16px 48px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(255, 255, 255, 0.25);
}

.kernwaarde-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-surface-offset, #f5f0eb);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.kernwaarde-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.kernwaarde-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   Gallery Page
   ========================================================================== */
.gallery-filters {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(var(--space-8), 5vw, var(--space-12));
}

.gallery-filter {
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1.5px solid var(--color-border);
  background: transparent;
  letter-spacing: 0.02em;
}

.gallery-filter:hover,
.gallery-filter.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.gallery-grid {
  columns: 3;
  column-gap: var(--space-5);
}

@media (max-width: 960px) {
  .gallery-grid {
    columns: 2;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    columns: 1;
  }
}

.gallery-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
  break-inside: avoid;
  margin-bottom: var(--space-5);
}

.gallery-item {
  margin-bottom: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover,
.gallery-item-link:hover .gallery-item {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.gallery-item__image {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  color: oklch(1 0 0 / 0.6);
  position: relative;
}

.gallery-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item__image img,
.gallery-item-link:hover .gallery-item__image img {
  transform: scale(1.05);
}

.gallery-item__image span {
  background: oklch(0 0 0 / 0.2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
}

.gallery-item__image--1 { aspect-ratio: 3/4; background: linear-gradient(160deg, #5B2D8E, #E87722); }
.gallery-item__image--2 { aspect-ratio: 1/1; background: linear-gradient(160deg, #C4D600, #4A1A8A); }
.gallery-item__image--3 { aspect-ratio: 4/5; background: linear-gradient(160deg, #E87722, #5B2D8E, #C4D600); }
.gallery-item__image--4 { aspect-ratio: 3/4; background: linear-gradient(160deg, #4A1A8A, #C4D600); }
.gallery-item__image--5 { aspect-ratio: 1/1; background: linear-gradient(160deg, #5B2D8E, #C4D600, #E87722); }
.gallery-item__image--6 { aspect-ratio: 5/4; background: linear-gradient(160deg, #E87722, #4A1A8A); }

.gallery-item__body {
  padding: var(--space-4) var(--space-5);
}

.gallery-item__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.gallery-item__desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.gallery-item__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--color-warm);
  color: #ffffff;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-top: var(--space-2);
}

/* ==========================================================================
   Workshops Page
   ========================================================================== */
.workshop-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

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

.workshop-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.workshop-card__icon {
  width: 56px;
  height: 56px;
  margin-inline: auto;
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  color: var(--color-primary);
}

.workshop-card__icon--1 { background: var(--color-primary-highlight); }
.workshop-card__icon--2 { background: var(--color-warm-highlight); }
.workshop-card__icon--3 { background: var(--color-accent-highlight); }

.workshop-card__icon svg {
  width: 28px;
  height: 28px;
}

.workshop-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.workshop-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.workshop-card__meta {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}

.events-list {
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.event-item {
  display: flex;
  gap: var(--space-5);
  align-items: center;
  padding: var(--space-5) var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.3s ease;
}

.event-item:hover {
  box-shadow: var(--shadow-md);
}

.event-item__date {
  text-align: center;
  flex-shrink: 0;
  min-width: 60px;
}

.event-item__day {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
}

.event-item__month {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.event-item__info {
  flex: 1;
}

.event-item__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.event-item__detail {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.event-item__spots {
  display: inline-block;
  margin-top: var(--space-1);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent, #9aab00);
  letter-spacing: 0.02em;
}

.event-item__spots--low {
  color: var(--color-warm, #E87722);
}

@media (max-width: 480px) {
  .event-item {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Booking Modal
   ========================================================================== */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.booking-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal__content {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  width: 90%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.booking-modal.open .booking-modal__content {
  transform: translateY(0);
}

.booking-modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: var(--space-2);
}

.booking-modal__close:hover {
  color: var(--color-text);
}

.booking-modal__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-1);
  padding-right: var(--space-8);
}

.booking-modal__meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.booking-modal__field {
  margin-bottom: var(--space-4);
}

.booking-modal__field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.booking-modal__field input,
.booking-modal__field select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: var(--text-sm);
  font-family: var(--font-body);
}

.booking-modal__field input:focus,
.booking-modal__field select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.15);
}

.booking-modal__submit {
  width: 100%;
  margin-top: var(--space-2);
}

.booking-modal__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
  padding: var(--space-6) 0;
}

.booking-modal__success p {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.6;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-highlight);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.contact-info p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--color-surface-offset);
  color: var(--color-text-muted);
  transition: all 0.25s ease;
}

.social-link:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.social-link svg {
  width: 22px;
  height: 22px;
}

.newsletter-box {
  background: var(--color-surface-offset);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  border: 1px solid var(--color-border);
}

.newsletter-box h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.newsletter-box p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  margin-inline: auto;
}

.newsletter-form {
  display: flex;
  gap: var(--space-3);
  max-width: 420px;
  margin-inline: auto;
}

.newsletter-form input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
  font-size: var(--text-sm);
  color: var(--color-text);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-primary);
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--color-surface-offset);
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-12);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-8);
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.footer__brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  line-height: 1.6;
  max-width: 320px;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__bottom p,
.footer__bottom a {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer__bottom a:hover {
  color: var(--color-primary);
}

.footer__logo svg,
.footer__logo img {
  height: 45px;
  width: auto;
}

/* ==========================================================================
   Stats Section (Social Proof — Cijfers)
   ========================================================================== */
.stats-section {
  padding-block: clamp(var(--space-10), 5vw, var(--space-16));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  display: inline;
}

.stat-item__plus {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--color-primary);
  opacity: 0.6;
}

.stat-item__label {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
  background: var(--color-surface-offset);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

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

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

.testimonial-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: var(--color-warm, #E87722);
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-card__text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.testimonial-card__role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ==========================================================================
   Newsletter Lead Magnet
   ========================================================================== */
.newsletter-section {
  background: var(--color-bg);
}

.newsletter-lead {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
  background: linear-gradient(135deg, var(--color-surface-offset), var(--color-bg));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl, var(--radius-lg));
  padding: clamp(var(--space-8), 4vw, var(--space-12));
}

@media (max-width: 768px) {
  .newsletter-lead {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.newsletter-lead__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  margin-top: var(--space-2);
  margin-bottom: var(--space-3);
}

.newsletter-lead__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  max-width: 540px;
}

.newsletter-lead__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.newsletter-lead__fields {
  display: flex;
  gap: var(--space-3);
}

@media (max-width: 640px) {
  .newsletter-lead__fields {
    flex-direction: column;
  }
}

.newsletter-lead__fields input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: var(--text-sm);
  font-family: var(--font-body);
}

.newsletter-lead__fields input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.15);
}

.newsletter-lead__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  align-self: flex-start;
}

@media (max-width: 768px) {
  .newsletter-lead__btn {
    align-self: center;
  }
}

.newsletter-lead__privacy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-1);
}

/* Book visual */
.newsletter-lead__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .newsletter-lead__visual {
    order: -1;
  }
}

.newsletter-lead__book {
  width: 160px;
  height: 210px;
  perspective: 600px;
}

.newsletter-lead__book-cover {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--color-primary), var(--color-warm, #E87722));
  border-radius: 4px 12px 12px 4px;
  box-shadow:
    -4px 0 8px rgba(0,0,0,0.15),
    inset -2px 0 4px rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-6) var(--space-4);
  transform: rotateY(-8deg);
  transition: transform 0.4s ease;
}

.newsletter-lead__book:hover .newsletter-lead__book-cover {
  transform: rotateY(0deg);
}

.newsletter-lead__book-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: var(--space-2);
}

.newsletter-lead__book-subtitle {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.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; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Color decoration elements
   ========================================================================== */
.color-stripe {
  height: 4px;
  background: linear-gradient(90deg, #5B2D8E, #E87722, #C4D600, #4A1A8A);
  width: 100%;
}

/* ==========================================================================
   Gallery Item Cards (Projects & Exhibitions)
   ========================================================================== */
.gallery-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-8);
}

.gallery-item-card {
  text-decoration: none;
  color: var(--color-text);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface-offset);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.gallery-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gallery-item-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.gallery-item-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0, 1);
}

.gallery-item-card:hover .gallery-item-card__image img {
  transform: scale(1.05);
}

.gallery-item-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-divider);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.gallery-item-card__body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.gallery-item-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.3;
}

.gallery-item-card__meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.gallery-item-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-top: var(--space-2);
}

/* ── Gallery Sub-navigation ──────────── */
.gallery-subnav {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.gallery-subnav__link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-8);
  background: var(--color-surface-offset);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  flex: 1;
  text-align: center;
  justify-content: center;
}

.gallery-subnav__link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--color-bg);
}

.gallery-subnav__link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Breadcrumb ──────────────────────── */
.breadcrumb {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--color-text);
}

.breadcrumb span[aria-hidden] {
  margin-inline: var(--space-2);
  opacity: 0.5;
}

/* ==========================================================================
   Responsive refinements
   ========================================================================== */
@media (max-width: 480px) {
  .hero__tagline {
    font-size: var(--text-2xl);
  }

  .hero--page .hero__tagline {
    font-size: var(--text-xl);
  }

  .section-header__title {
    font-size: var(--text-xl);
  }

  .quote-section__text {
    font-size: var(--text-xl);
  }

  .cta-section__title {
    font-size: var(--text-xl);
  }

  .btn {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-xs);
  }

  .event-item {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Shop Page — Product Grid & Cards
   ========================================================================== */
.shop-filters {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}

/* ---------- Collection Filter Pills ---------- */
.collection-filters {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-5);
  justify-content: flex-start;
}

.collection-filters::-webkit-scrollbar {
  height: 4px;
}

.collection-filters::-webkit-scrollbar-track {
  background: transparent;
}

.collection-filters::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: var(--radius-full);
}

.collection-pill {
  flex-shrink: 0;
  padding: var(--space-1) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.collection-pill:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.collection-pill.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* ---------- Product Count ---------- */
.product-count {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

/* ---------- No Results ---------- */
.shop-no-results {
  text-align: center;
  color: var(--color-text-faint);
  font-size: var(--text-sm);
  padding: var(--space-12) 0;
  grid-column: 1 / -1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1060px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card__image {
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  position: relative;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__image span {
  background: oklch(0 0 0 / 0.2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  color: oklch(1 0 0 / 0.7);
  font-style: normal;
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
}

/* Product card gradient placeholders — 8 unique gradients */
.product-card__image--1 { background: linear-gradient(135deg, #5B2D8E 0%, #E87722 60%, #C4D600 100%); }
.product-card__image--2 { background: linear-gradient(135deg, #4A1A8A 0%, #C4D600 50%, #E87722 100%); }
.product-card__image--3 { background: linear-gradient(160deg, #5B2D8E 0%, #E87722 100%); }
.product-card__image--4 { background: linear-gradient(160deg, #C4D600 0%, #4A1A8A 100%); }
.product-card__image--5 { background: linear-gradient(135deg, #E87722 0%, #5B2D8E 60%, #C4D600 100%); }
.product-card__image--6 { background: linear-gradient(135deg, #C4D600 0%, #E87722 50%, #5B2D8E 100%); }
.product-card__image--7 { background: linear-gradient(160deg, #4A1A8A 0%, #E87722 50%, #C4D600 100%); }
.product-card__image--8 { background: linear-gradient(160deg, #E87722 0%, #4A1A8A 60%, #5B2D8E 100%); }

.product-card__body {
  padding: var(--space-5) var(--space-5) var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__category {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-highlight);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.product-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-4);
}

/* ---------- Variant Selector ---------- */
.product-card__variant-selector {
  margin-bottom: var(--space-4);
}

.variant-select {
  width: 100%;
  padding: var(--space-2) var(--space-3);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.6875rem;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-surface);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-2) center;
  padding-right: var(--space-6);
  transition: border-color 0.2s ease;
  text-overflow: ellipsis;
  overflow: hidden;
}

.variant-select:hover,
.variant-select:focus {
  border-color: var(--color-primary);
  outline: none;
}

[data-theme="dark"] .variant-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-4);
  flex-wrap: wrap;
  margin-top: auto;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}

.btn--sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-xs);
}

/* ---------- Load More ---------- */
.load-more-container {
  display: flex;
  justify-content: center;
  padding-top: clamp(var(--space-8), 4vw, var(--space-12));
}

.load-more-btn {
  min-width: 200px;
}

/* ==========================================================================
   Cart Icon in Header
   ========================================================================== */
.header__cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  background: transparent;
}

.header__cart-btn:hover {
  background: var(--color-surface-offset);
  color: var(--color-text);
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 4px;
}

/* ==========================================================================
   Cart Drawer (slide-in from right)
   ========================================================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: oklch(0 0 0 / 0.4);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 90vw);
  background: var(--color-bg);
  z-index: 210;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-lg);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6);
  border-bottom: 1px solid var(--color-divider);
  flex-shrink: 0;
}

.cart-drawer__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
}

.cart-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
}

.cart-drawer__close:hover {
  background: var(--color-surface-offset);
  color: var(--color-text);
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-6);
}

.cart-drawer__empty {
  text-align: center;
  color: var(--color-text-faint);
  font-size: var(--text-sm);
  padding-top: var(--space-10);
}

.cart-drawer__footer {
  padding: var(--space-6);
  border-top: 1px solid var(--color-divider);
  flex-shrink: 0;
}

.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

.cart-drawer__checkout {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   Cart Item Rows
   ========================================================================== */
.cart-item {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-divider);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.cart-item__name {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
}

.cart-item__line-price {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.cart-item__qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 600;
}

.cart-item__qty-btn:hover {
  background: var(--color-surface-offset);
  color: var(--color-text);
  border-color: var(--color-text-muted);
}

.cart-item__qty {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  min-width: 20px;
  text-align: center;
}

.cart-item__remove {
  font-size: var(--text-xs);
  color: var(--color-error);
  margin-left: auto;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cart-item__remove:hover {
  color: var(--color-error);
  opacity: 0.8;
}

/* ==========================================================================
   Checkout Modal
   ========================================================================== */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: oklch(0 0 0 / 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: var(--space-6);
}

.checkout-modal.open {
  opacity: 1;
  pointer-events: all;
}

.checkout-modal__content {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-modal.open .checkout-modal__content {
  transform: scale(1) translateY(0);
}

.checkout-modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
}

.checkout-modal__close:hover {
  background: var(--color-surface-offset);
  color: var(--color-text);
}

.checkout-modal__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
}

.checkout-modal__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.checkout-modal__message {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 400px;
  margin-inline: auto;
}

/* ==========================================================================
   Policy Pages
   ========================================================================== */
.policy-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  line-height: 1.8;
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
}

.policy-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-content a:hover {
  color: var(--color-warm);
}

/* ── Hide Workshops from navigation (page kept, link hidden) ── */
li:has(> [data-i18n="nav.workshops"]),
[data-i18n="nav.workshops"],
a[href="workshops.html"].btn {
  display: none !important;
}

/* ==========================================================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   Mobile-first responsive design for all devices
   ========================================================================== */

/* ── Touch Target Minimum Size (44px) ── */
@media (max-width: 768px) {
  .header__cart-btn,
  .header__toggle,
  .header__lang-toggle,
  .header__menu-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .cart-item__qty-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  button.btn {
    min-height: 44px;
    padding: var(--space-3) var(--space-6);
  }

  .header__nav-link {
    padding: var(--space-3) var(--space-4);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* ── Header Navigation Mobile Menu Overlay ── */
@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    inset: 0;
    top: var(--header-height, 80px);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    z-index: 200;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .header__nav.open {
    display: flex;
    opacity: 1;
    pointer-events: all;
  }

  .header__nav-list {
    flex-direction: column;
    padding: var(--space-6) 0;
  }

  .header__nav-link {
    display: block;
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--color-divider);
    width: 100%;
    font-size: var(--text-base);
  }

  .header__nav-link:hover {
    background: var(--color-surface-offset);
  }

  .header__menu-btn {
    display: flex !important;
  }

  .header__menu-btn span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  }

  .header__menu-btn span:nth-child(1) {
    top: 8px;
  }

  .header__menu-btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .header__menu-btn span:nth-child(3) {
    bottom: 8px;
  }

  .header__menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .header__menu-btn.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }

  .header__menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* ── Product/Works Grid - Mobile Single Column ── */
@media (max-width: 768px) {
  .works-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Values Grid - Mobile Stack ── */
@media (max-width: 768px) {
  .values-grid,
  .kernwaarden-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* ── Stats Grid - Mobile 2 Columns then 1 Column ── */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* ── Testimonials Grid - Mobile Single Column ── */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Gallery Items Grid - Mobile Single Column ── */
@media (max-width: 768px) {
  .gallery-items-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Newsletter Section - Stacked Layout on Mobile ── */
@media (max-width: 768px) {
  .newsletter-lead {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
  }

  .newsletter-lead__content {
    order: 2;
  }

  .newsletter-lead__visual {
    order: 1;
  }

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

  .newsletter-lead__fields {
    flex-direction: column;
    gap: var(--space-4);
    width: 100%;
  }

  .newsletter-lead__fields input {
    width: 100%;
  }

  .newsletter-lead__btn {
    width: 100%;
  }
}

/* ── Footer - Stacked Layout on Mobile ── */
@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__brand {
    text-align: left;
  }

  .footer__heading {
    margin-top: var(--space-4);
  }
}

/* ── Contact Form Grid - Mobile Stack ── */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .form-grid input,
  .form-grid textarea,
  .form-grid select {
    grid-column: 1;
  }
}

/* ── Cart Drawer Responsive Width ── */
@media (max-width: 480px) {
  .cart-drawer {
    max-width: 100%;
    width: 100vw;
    border-radius: 0;
  }

  .cart-drawer__header {
    position: sticky;
    top: 0;
    background: var(--color-bg);
    z-index: 10;
  }
}

/* ── Modal Responsiveness ── */
@media (max-width: 768px) {
  .checkout-modal {
    padding: var(--space-4);
  }

  .checkout-modal__content {
    max-width: 100%;
    padding: var(--space-6) var(--space-4);
    border-radius: var(--radius-lg);
  }

  .checkout-modal__close {
    width: 40px;
    height: 40px;
  }
}

/* ── Beliefs Grid - Mobile Stack ── */
@media (max-width: 768px) {
  .beliefs-grid,
  .against-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Content Grid - Mobile Single Column ── */
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-grid--sm {
    grid-template-columns: 1fr;
  }

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

/* ── Profile Form Grid - Mobile Stack ── */
@media (max-width: 768px) {
  .profile-form__grid {
    grid-template-columns: 1fr;
  }
}

/* ── CTA Section - Mobile Stack ── */
@media (max-width: 768px) {
  .cta-section__buttons {
    flex-direction: column;
  }

  .cta-section__buttons .btn {
    width: 100%;
  }
}

/* ── Prevent Horizontal Scroll on All Devices ── */
@media (max-width: 768px) {
  body,
  html {
    overflow-x: hidden;
  }

  .container {
    padding: var(--space-4);
  }

  main,
  footer,
  header {
    overflow-x: hidden;
  }
}

/* ── Flexible Typography Scaling ── */
@media (max-width: 640px) {
  h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }

  h3 {
    font-size: clamp(1rem, 3vw, 1.25rem);
  }

  .hero__tagline {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  .section-header__title {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }
}

/* ── Header Spacing and Layout Mobile ── */
@media (max-width: 768px) {
  .header {
    padding: var(--space-4) 0;
  }

  .header__inner {
    gap: var(--space-4);
    padding: 0 var(--space-4);
  }

  .header__controls {
    gap: var(--space-3);
  }

  .header__logo img {
    max-height: 40px;
  }
}

/* ── Hero Section Mobile ── */
@media (max-width: 768px) {
  .hero {
    padding: var(--space-12) var(--space-4);
  }

  .hero__content {
    padding: var(--space-8) var(--space-4);
  }

  .hero__subtitle {
    font-size: var(--text-base);
  }
}

/* ── Section Padding Mobile ── */
@media (max-width: 768px) {
  .section {
    padding: var(--space-12) 0;
  }

  .section-header {
    margin-bottom: var(--space-8);
  }

  .section-header__label {
    font-size: var(--text-xs);
  }

  .section-header__desc {
    font-size: var(--text-sm);
  }
}

/* ── Card Sizing Mobile ── */
@media (max-width: 768px) {
  .value-card,
  .testimonial-card,
  .stat-item {
    padding: var(--space-6) var(--space-4);
  }
}

/* ── Button Sizing Mobile ── */
@media (max-width: 768px) {
  .btn {
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-sm);
    gap: var(--space-2);
  }

  .btn svg {
    width: 16px;
    height: 16px;
  }
}

/* ── Spacing Adjustments for Small Screens ── */
@media (max-width: 480px) {
  .section {
    padding: var(--space-8) 0;
  }

  .container {
    padding: var(--space-4);
  }

  .section-header {
    margin-bottom: var(--space-6);
  }

  .hero {
    padding: var(--space-10) var(--space-4);
  }

  .section-header__title {
    margin-bottom: var(--space-4);
  }

  .section-header__desc {
    margin-top: var(--space-2);
  }
}

/* ── Ensure No Layout Shift on Mobile Menu Toggle ── */
@media (max-width: 768px) {
  html.menu-open {
    overflow: hidden;
  }
}

/* ── Image Responsiveness ── */
@media (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }

  .gallery-item img,
  .product-item img {
    width: 100%;
    height: auto;
  }
}
