/*
Theme Name: Codemark
Theme URI: https://codemark.nl
Author: Codemark
Author URI: https://codemark.nl
Description: Custom WordPress theme for Codemark — Webdesign & Development Studio. Mobile-first, performance-optimized, fully aligned with the Codemark Brand Guidelines v2.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: codemark
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
*/

/* ═══════════════════════════════════════════════════════════════
   CODEMARK THEME — Mobile-First CSS
   Brand Guide v2 compliant
   ═══════════════════════════════════════════════════════════════ */

/* ────────────────────────────────
   0. RESET & CUSTOM PROPERTIES
   ──────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* ── Brand Colors (from Brand Guide v2) ── */
  --coral: #FF6B5B;
  --peach: #FFB088;
  --gold: #FFCC70;
  --dark: #1A1A2E;
  --dark-mid: #252540;
  --text: #1A1A1A;
  --text-muted: #6B6B88;
  --text-dim: #9494A8;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --light-bg: #F5F4F8;

  /* ── Gradients ── */
  --grad: linear-gradient(135deg, #FF6B5B, #FFB088, #FFCC70);
  --grad-text: linear-gradient(135deg, #FF6B5B 0%, #FFB088 50%, #FFCC70 100%);

  /* ── Derived / Semantic ── */
  --bg: var(--off-white);
  --bg-elevated: var(--white);
  --bg-card: var(--white);
  --bg-card-hover: #F5F2EF;
  --bg-warm: var(--light-bg);
  --border: rgba(26, 26, 46, 0.07);
  --border-hover: rgba(26, 26, 46, 0.14);

  /* ── Radii ── */
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --radius-full: 50px;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);

  /* ── Spacing ── */
  --section-px: 28px;
  --section-py: clamp(64px, 10vh, 140px);
  --container: 1280px;

  /* ── Typography ── */
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ── Selection ── */
::selection { background: var(--coral); color: #fff; }


/* ────────────────────────────────
   1. UTILITY CLASSES
   ──────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--section-px);
  padding-right: var(--section-px);
}

.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

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

.bg-light { background: var(--light-bg); }
.bg-white { background: var(--bg-elevated); }

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Skip link — visible on focus */
.skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 14px 28px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--dark);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 999;
  border-radius: 0 0 var(--radius-sm) 0;
  box-shadow: var(--shadow-md);
}


/* ────────────────────────────────
   2. BUTTONS
   ──────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.25s, box-shadow 0.25s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.15);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--text);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.92rem;
  border: 1px solid var(--border-hover);
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--text-dim);
  background: var(--bg-card-hover);
}

.btn-gradient {
  background: var(--grad);
  color: var(--dark);
  font-weight: 700;
}

.btn-gradient:hover {
  box-shadow: 0 12px 40px rgba(255, 107, 91, 0.25);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.25s;
}

.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow {
  transform: translateX(3px);
}


/* ────────────────────────────────
   3. NAVIGATION
   ──────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(28px, 4vw, 80px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.site-nav.scrolled {
  background: rgba(250, 250, 250, 0.92);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(27, 42, 74, 0.06);
}

/* Nav on dark hero pages — before scroll */
.has-dark-hero .site-nav:not(.scrolled) {
  background: rgba(26, 26, 46, 0.6);
}

.has-dark-hero .site-nav:not(.scrolled) .nav-wordmark {
  color: #fff;
}

.has-dark-hero .site-nav:not(.scrolled) .nav-menu a {
  color: rgba(255, 255, 255, 0.7);
}

.has-dark-hero .site-nav:not(.scrolled) .nav-menu a:hover {
  color: #fff;
}

.has-dark-hero .site-nav:not(.scrolled) .nav-toggle span {
  background: #fff;
}

/* ── Logo ── */
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.nav-wordmark {
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1;
}

.nav-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
  margin-left: 2px;
  vertical-align: super;
  box-shadow: 0 0 8px rgba(255, 107, 91, 0.5);
  position: relative;
  top: -2px;
}

/* ── Nav links (hidden on mobile) ── */
.nav-menu {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 500;
  transition: color 0.25s;
}

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

.nav-menu .nav-cta {
  background: var(--dark);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: transform 0.25s, box-shadow 0.25s;
}

.nav-menu .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(26, 26, 46, 0.15);
  color: #fff;
}

/* ── Hamburger ── */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

/* ── Mobile drawer ── */
.nav-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(250, 250, 250, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 24px clamp(28px, 4vw, 80px) 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 99;
}

.nav-drawer.open {
  transform: translateY(0);
}

.nav-drawer a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav-drawer a:last-child {
  border-bottom: none;
}

.nav-drawer a:hover {
  color: var(--coral);
}

.nav-drawer .nav-cta-mobile {
  margin-top: 12px;
  text-align: center;
  background: var(--dark);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  border-bottom: none;
}


/* ────────────────────────────────
   4. HERO
   ──────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(100px, 16vh, 200px) clamp(28px, 4vw, 80px) 0;
}

.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding-bottom: clamp(48px, 12vh, 140px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 20px 8px 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  animation: fadeUp 0.8s ease;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 107, 91, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(255, 107, 91, 0); }
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  width: 100%;
  justify-content: center;
}

/* ── Hero Images ── */
.hero-images {
  position: relative;
  height: 300px;
  margin-top: 40px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-img {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform 0.4s ease;
}

.hero-img:hover { transform: translateY(-4px) scale(1.01); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

.hero-img-1 { width: 60%; height: 70%; top: 5%; left: 0; z-index: 2; }
.hero-img-2 { width: 48%; height: 55%; top: 20%; right: 0; z-index: 1; border: 4px solid var(--bg); }
.hero-img-3 { display: none; }

.hero-float-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  z-index: 10;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatBadge 3s ease-in-out infinite alternate;
}

.hero-float-badge.badge-1 { bottom: 20%; right: -2%; }
.hero-float-badge.badge-2 { top: 0; right: 15%; }

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}


/* ────────────────────────────────
   5. TECH STRIP
   ──────────────────────────────── */
.tech-strip {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-elevated);
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.tech-strip-label {
  text-align: center;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.tech-marquee {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

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

.tech-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--text-dim);
  font-size: 0.84rem;
  font-weight: 500;
  opacity: 0.7;
}


/* ────────────────────────────────
   6. SERVICES
   ──────────────────────────────── */
.services-section {
  padding-top: var(--section-py); padding-bottom: var(--section-py);
}

.services-header {
  text-align: center;
  margin-bottom: 48px;
}

.services-header .section-desc {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.4s;
}

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

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

.service-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 91, 0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.service-card h3 {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
}

.service-tag {
  background: rgba(255, 107, 91, 0.08);
  color: var(--coral);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
}


/* ────────────────────────────────
   7. HIGHLIGHT BANNER
   ──────────────────────────────── */
.highlight-banner {
  background: var(--dark);
  border-radius: var(--radius);
  padding: clamp(36px, 6vh, 72px) clamp(28px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.highlight-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 85%, rgba(255, 107, 91, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(107, 197, 232, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.highlight-item {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  align-items: start;
}

.highlight-item .hi-icon {
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  flex-shrink: 0;
}

.highlight-item h3 {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.highlight-item p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}


/* ────────────────────────────────
   8. PROCESS / WERKWIJZE
   ──────────────────────────────── */
.process-section {
  padding-top: var(--section-py); padding-bottom: var(--section-py);
}

.process-header {
  margin-bottom: 48px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process-step {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  display: flex;
  gap: 16px;
  transition: all 0.3s;
}

.process-step:hover {
  background: var(--bg-card-hover);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transform: translateX(4px);
}

.step-number {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.4;
  flex-shrink: 0;
}

.process-step h3 {
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.process-image {
  display: none;
}


/* ────────────────────────────────
   9. TESTIMONIALS
   ──────────────────────────────── */
.testimonials-section {
  padding-top: var(--section-py); padding-bottom: var(--section-py);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-header .section-desc {
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--light-bg);
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-family: var(--font);
  font-size: 0.86rem;
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.76rem;
  color: var(--text-dim);
}


/* ────────────────────────────────
   10. PORTFOLIO
   ──────────────────────────────── */
.portfolio-section {
  padding-top: var(--section-py); padding-bottom: var(--section-py);
}

.portfolio-header {
  text-align: center;
  margin-bottom: 48px;
}

.portfolio-header .section-desc {
  margin: 0 auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
}

.portfolio-visual {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-item:hover .portfolio-visual {
  transform: scale(1.03);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(transparent, rgba(26, 26, 46, 0.8));
}

.portfolio-overlay h3 {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #fff;
}

.portfolio-overlay span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}


/* ────────────────────────────────
   11. STATS
   ──────────────────────────────── */
.stats-section {
  background: var(--dark);
  border-radius: var(--radius);
  padding: clamp(40px, 8vh, 80px) clamp(28px, 4vw, 60px);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 85%, rgba(255, 107, 91, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(107, 197, 232, 0.12) 0%, transparent 45%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}


/* ────────────────────────────────
   12. HOSTING PRICING
   ──────────────────────────────── */
.hosting-section {
  padding-top: var(--section-py); padding-bottom: var(--section-py);
}

.hosting-header {
  text-align: center;
  margin-bottom: 48px;
}

.hosting-header .section-desc {
  margin: 0 auto;
}

.hosting-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.hosting-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.hosting-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hosting-card.popular {
  border: 2px solid var(--coral);
  box-shadow: 0 8px 40px rgba(255, 107, 91, 0.1);
}

.hosting-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: var(--dark);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hosting-card h3 {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.hosting-subtitle {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.hosting-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.hosting-price .amount {
  font-family: var(--font);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hosting-price .period {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.hosting-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.hosting-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.hosting-features .check {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 91, 0.08);
  color: var(--coral);
  border-radius: 50%;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.hosting-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-full);
  text-align: center;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  margin-top: auto;
}

.hosting-btn.primary {
  background: var(--dark);
  color: #fff;
}

.hosting-btn.primary:hover {
  box-shadow: 0 8px 30px rgba(26, 26, 46, 0.15);
  transform: translateY(-1px);
}

.hosting-btn.secondary {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border-hover);
}

.hosting-btn.secondary:hover {
  background: var(--bg-card-hover);
}


/* ────────────────────────────────
   13. ABOUT
   ──────────────────────────────── */
.about-section {
  padding-top: var(--section-py); padding-bottom: var(--section-py);
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}

.about-value {
  display: flex;
  align-items: start;
  gap: 12px;
}

.about-value-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 91, 0.08);
  border-radius: 12px;
  font-size: 1.1rem;
}

.about-value h4 {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.about-value p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* ── About image grid ── */
.about-image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 32px;
  height: auto;
}

.about-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 200px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ────────────────────────────────
   14. FAQ
   ──────────────────────────────── */
.faq-section {
  padding-top: var(--section-py); padding-bottom: var(--section-py);
  max-width: 760px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header .section-desc {
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--coral); }

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 107, 91, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--coral);
  transition: transform 0.3s, background 0.3s;
  font-weight: 300;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 107, 91, 0.12);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 0 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ────────────────────────────────
   15. CTA SECTION
   ──────────────────────────────── */
.cta-section {
  padding-top: var(--section-py); padding-bottom: var(--section-py);
}

.cta-box {
  border-radius: 24px;
  overflow: hidden;
  background: var(--dark);
  text-align: center;
  position: relative;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 85%, rgba(255, 107, 91, 0.25) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(107, 197, 232, 0.15) 0%, transparent 45%);
  pointer-events: none;
}

.cta-content {
  padding: clamp(48px, 8vh, 100px) clamp(28px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cta-content .section-label { color: rgba(255, 255, 255, 0.35); }
.cta-content .section-title { color: #fff; }
.cta-content .section-desc {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
  text-align: center;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 420px;
}

.cta-actions .btn-primary {
  background: var(--grad);
  color: var(--dark);
  font-weight: 700;
  justify-content: center;
}

.cta-actions .btn-primary:hover {
  box-shadow: 0 12px 40px rgba(255, 107, 91, 0.25);
}

.cta-actions .btn-secondary {
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  background: transparent;
  box-shadow: none;
  justify-content: center;
}

.cta-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
}


/* ────────────────────────────────
   16. FOOTER
   ──────────────────────────────── */
.site-footer {
  padding: clamp(48px, 8vh, 80px) clamp(28px, 4vw, 80px) 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-tagline {
  color: var(--text-dim);
  font-size: 0.84rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-col li {
  margin-bottom: 10px;
  color: var(--text-dim);
  font-size: 0.84rem;
  transition: color 0.2s;
}

.footer-col a {
  color: var(--text-dim);
  font-size: 0.84rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 0.76rem;
  color: var(--text-dim);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: var(--text-dim);
  font-size: 0.82rem;
  transition: color 0.2s;
}

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


/* ────────────────────────────────
   17. ANIMATIONS
   ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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


/* ────────────────────────────────
   18. WORDPRESS SPECIFICS
   ──────────────────────────────── */

/* WP Admin bar offset */
.admin-bar .site-nav { top: 32px; }

/* Gutenberg alignment support */
.alignwide {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* WP Block editor compatibility */
.wp-block-image img { border-radius: var(--radius-sm); }
.wp-block-gallery { gap: 12px; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 48px 0;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.pagination a:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.pagination .current {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

/* WP Post/Page content */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 1.5em 0 0.5em;
}

.entry-content h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.entry-content h2 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
.entry-content h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.entry-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25em;
  font-size: 1rem;
}

.entry-content a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.entry-content a:hover { color: var(--dark); }

.entry-content img {
  border-radius: var(--radius-sm);
  margin: 2em 0;
}

.entry-content blockquote {
  border-left: 3px solid var(--coral);
  padding: 16px 24px;
  margin: 2em 0;
  background: rgba(255, 107, 91, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-muted);
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.25em;
  color: var(--text-muted);
}

.entry-content li {
  margin-bottom: 0.5em;
  list-style: disc;
}

.entry-content ol li {
  list-style: decimal;
}


/* ────────────────────────────────
   19. BREADCRUMBS
   ──────────────────────────────── */
.breadcrumbs {
  font-size: 0.78rem;
  color: var(--text-dim);
  padding: 16px 0 24px;
  line-height: 1.6;
}

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

.breadcrumbs a:hover {
  color: var(--coral);
}

.breadcrumbs [aria-current="page"] {
  color: var(--text);
  font-weight: 500;
}

.breadcrumb-sep {
  margin: 0 6px;
  color: var(--text-dim);
}


/* ────────────────────────────────
   20. SVG BUTTON ICONS
   ──────────────────────────────── */
.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.btn-primary:hover .btn-icon,
.btn-secondary:hover .btn-icon {
  transform: translateX(3px);
}


/* ────────────────────────────────
   21. PORTFOLIO FEATURED
   ──────────────────────────────── */
.portfolio-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.portfolio-featured-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.portfolio-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-featured:hover .portfolio-featured-img img {
  transform: scale(1.03);
}

.portfolio-featured-content {
  padding: 8px 32px 32px;
}

.portfolio-featured-content h3 {
  font-family: var(--font);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.portfolio-featured-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 560px;
}

.portfolio-grid-small {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Portfolio tags — readable on dark overlay */
.portfolio-tags {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.portfolio-overlay span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}


/* ────────────────────────────────
   22. WP NAV MENU STYLING
   ──────────────────────────────── */
/* WP nav menu outputs <li><a> — style them like inline links */
.nav-menu .menu-item {
  list-style: none;
}

.nav-menu .menu-item a {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 500;
  transition: color 0.25s;
  text-decoration: none;
}

.nav-menu .menu-item a:hover {
  color: var(--text);
}

/* Style the last menu item as CTA button */
.nav-menu .menu-item:last-child a {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: transform 0.25s, box-shadow 0.25s;
  background: var(--grad);
  color: var(--dark);
  font-weight: 700;
  justify-content: center;
}

.nav-menu .menu-item:last-child a:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(255, 107, 91, 0.25);
}

/* WP nav outputs <ul class="menu"> — reset styles */
.nav-menu .menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Mobile drawer — WP menu items */
.nav-drawer .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-drawer .menu-item a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  text-decoration: none;
}

.nav-drawer .menu-item:last-child a {
  border-bottom: none;
  margin-top: 12px;
  text-align: center;
  background: var(--dark);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
}


/* ────────────────────────────────
   23. SUBPAGE HERO
   ──────────────────────────────── */
.page-hero {
  padding: 180px 0 72px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 85%, rgba(255, 107, 91, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(107, 197, 232, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

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

.page-hero .section-label {
  color: rgba(255, 255, 255, 0.35);
}

.page-hero h1 {
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 16px;
  max-width: 640px;
}

.page-hero p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.5);
  max-width: 520px;
  line-height: 1.7;
}

/* ── Contact form (native styling) ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-info-card h3 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.contact-info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 91, 0.08);
  border-radius: 10px;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg-elevated);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 107, 91, 0.1);
}

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

/* ── Diensten detail cards (subpage) ── */
.dienst-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.dienst-detail:last-child { border-bottom: none; }

.dienst-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.dienst-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dienst-detail-content h2 {
  font-family: var(--font);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.dienst-detail-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≥ 640px)
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: auto;
  }

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

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

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .about-image-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 320px;
  }

  .about-img {
    height: auto;
  }

  .about-img:first-child {
    grid-row: 1 / 3;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

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

  .hero-img-3 {
    display: block;
    width: 35%;
    height: 30%;
    bottom: 0;
    left: 15%;
    z-index: 3;
    border: 4px solid var(--bg);
  }

  .hero-images {
    height: 380px;
  }

  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }

  .cta-actions .btn-primary,
  .cta-actions .btn-secondary {
    width: auto;
  }

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


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — DESKTOP (≥ 968px)
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 968px) {
  :root {
    --section-px: 0px;
  }

  /* Nav */
  .nav-menu {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }

  .dienst-detail {
    grid-template-columns: 1fr 1fr;
  }

  .dienst-detail:nth-child(even) .dienst-detail-img {
    order: 2;
  }

  .portfolio-featured {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .nav-drawer {
    display: none !important;
  }

  .site-nav {
    height: 80px;
  }

  /* Hero — two-column */
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
  }

  .hero-images {
    height: 460px;
    margin-top: 0;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Highlight */
  .highlight-banner {
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
  }

  .highlight-item {
    flex-direction: column;
    align-items: center;
  }

  /* Process — two-column with image */
  .process-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .process-image {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }

  .process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 480px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hosting */
  .hosting-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* About */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-image-grid {
    height: 480px;
    margin-top: 0;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — LARGE DESKTOP (≥ 1200px)
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  }
}


/* ═══════════════════════════════════════════════════════════════
   WP ADMIN BAR — mobile offset
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 782px) {
  .admin-bar .site-nav { top: 46px; }
  .admin-bar .nav-drawer { top: 118px; }
}
