/* ═══════════════════════════════════════════════
   KORMAR Marketing v2 — Design System & Styles
   ═══════════════════════════════════════════════ */

:root {
  --brown-deep: #4D362E;
  --brown-warm: #6d6660;
  --brown-light: #9a8e86;
  --baby-yellow: #FEF3D5;
  --baby-yellow-soft: #FBEAA0;
  --baby-yellow-deep: #F5DC7A;
  --yellow-cta: #FEF3D5;
  --cream: #FEF3D5;
  --cream-light: #FFF8E1;
  --cream-dark: #F2E4B8;
  --warm-white: #FFFAEC;

  --text-primary: var(--brown-deep);
  --text-secondary: var(--brown-warm);
  --bg: var(--cream);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Tenor Sans', 'Gill Sans', sans-serif;

  --section-pad: clamp(48px, 6vw, 88px);
  --container: min(1140px, 88vw);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.75;
  font-size: clamp(15px, 1.1vw, 17px);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; cursor: pointer; background: none; }

/* Grain overlay */
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9998; opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ── Typography ─────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-primary);
  text-wrap: pretty;
}
h1 { font-size: clamp(2.8rem, 5.5vw, 4.8rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.2rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.5rem); }
p { text-wrap: pretty; }

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--brown-deep); color: var(--cream);
  padding: 8px 16px; border-radius: 0 0 8px 8px; z-index: 9999; font-size: 14px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Accessibility-friendly hide (visible to screen readers & crawlers, not visually). */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.container { width: var(--container); margin: 0 auto; }
.section { padding: var(--section-pad) 5vw; }

/* Label with line */
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brown-warm); margin-bottom: 20px;
}
.section-label::before {
  content: ''; width: 24px; height: 1px; background: var(--brown-light);
}

/* ── Buttons ─────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; font-family: var(--font-body);
  font-size: clamp(13px, 0.95vw, 15px); letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 60px; transition: all 0.35s cubic-bezier(.25,.46,.45,.94);
  white-space: nowrap;
  position: relative; overflow: hidden;
  isolation: isolate;
}
.btn span { display: inline-block; transition: transform 0.4s cubic-bezier(.34,1.56,.64,1); }
.btn:hover span { transform: translateX(5px); }

.btn-primary {
  background: var(--brown-deep); color: var(--cream);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--baby-yellow-deep) 0%, var(--baby-yellow-soft) 100%);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(.76,0,.24,1);
  z-index: -1;
}
.btn-primary:hover {
  color: var(--brown-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245,220,122,0.4);
}
.btn-primary:hover::before { transform: translateY(0); }

.btn-outline {
  border: 1.5px solid var(--brown-deep); color: var(--brown-deep); background: transparent;
}
.btn-outline::before {
  content: ''; position: absolute; inset: 0;
  background: var(--brown-deep);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(.76,0,.24,1);
  z-index: -1;
}
.btn-outline:hover {
  color: var(--cream); transform: translateY(-2px);
  border-color: var(--brown-deep);
  box-shadow: 0 10px 28px rgba(77,54,46,0.22);
}
.btn-outline:hover::before { transform: translateX(0); }
.btn-accent {
  background: var(--baby-yellow-soft); color: var(--brown-deep); font-weight: 600;
  position: relative; overflow: hidden;
}
.btn-accent::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  transform: translateX(-100%); transition: transform 0.7s;
}
.btn-accent:hover { background: var(--baby-yellow-deep); transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245,220,122,0.35);
}
.btn-accent:hover::before { transform: translateX(100%); }

/* ═══════════════════════════════
   NAVIGATION
   ═══════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5vw; transition: all 0.4s; background: transparent;
}
.site-nav.scrolled {
  background: rgba(254,243,213,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(77,54,46,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1300px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; transition: transform 0.3s; }
.nav-logo:hover { transform: scale(1.04); }
.nav-logo img {
  height: 38px; width: auto;
}
.nav-links {
  display: flex; align-items: center; gap: 8px; list-style: none;
}
.nav-links a {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brown-warm); transition: color 0.3s; padding: 8px 16px;
  border-radius: 40px; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--brown-deep); }
.nav-links a.active { background: rgba(77,54,46,0.05); }
.nav-cta-link {
  background: var(--brown-deep) !important; color: var(--cream) !important;
  padding: 10px 24px !important; border-radius: 60px !important;
  transition: all 0.3s !important;
}
.nav-cta-link:hover { background: #3a2820 !important; transform: translateY(-1px); }

/* Mobile */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 26px; padding: 4px 0; }
.nav-toggle span { display: block; height: 1.5px; background: var(--brown-deep); border-radius: 2px; }
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--cream);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-heading); font-size: 1.6rem; color: var(--brown-deep); }
.mobile-menu a:hover { opacity: 0.6; }
.mobile-close {
  position: absolute; top: 20px; right: 5vw;
  font-size: 22px; color: var(--brown-deep);
}

/* ═══════════════════════════════
   HERO
   ═══════════════════════════════ */
.hero {
  min-height: 82vh; display: flex; align-items: center;
  padding: 100px 5vw 40px; position: relative; overflow: hidden;
}
.hero-content {
  max-width: 1300px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 5vw, 80px); align-items: center;
}
.hero-text { max-width: 600px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; background: rgba(77,54,46,0.05);
  border-radius: 40px; font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brown-warm); margin-bottom: 28px;
}
.pill-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--brown-deep);
  animation: pulse-dot 2.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(77,54,46,0.4);
}
@keyframes pulse-dot {
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:0.4; transform:scale(0.6); }
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--brown-warm); }
.hero-sub {
  font-size: clamp(15px, 1.2vw, 18px); color: var(--text-secondary);
  margin-bottom: 36px; max-width: 480px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero photo - floating card above buttons */
.hero-photo {
  position: relative;
  margin: 32px 0 36px;
  max-width: 380px;
  transform: rotate(-1.2deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-photo:hover { transform: rotate(0deg) translateY(-4px); }
.hero-photo img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 
    0 24px 48px -16px rgba(77, 54, 46, 0.28),
    0 8px 16px -8px rgba(77, 54, 46, 0.18),
    0 0 0 1px rgba(77, 54, 46, 0.06);
  display: block;
}
.hero-photo-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  background: rgba(254, 243, 213, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 40px;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown-deep);
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(77, 54, 46, 0.12);
}
.hero-photo-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--brown-deep);
  animation: pulse-dot 2.5s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(77,54,46,0.4);
}

/* Arc visual */
.hero-arc {
  position: relative; width: 100%; max-width: 440px; aspect-ratio: 1;
  margin: 0 auto;
}
.arc-spinner {
  position: absolute; inset: 0;
  animation: spin 28s linear infinite;
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brown-warm);
}
@keyframes spin { to { transform: rotate(360deg); } }
.arc-char { display: block; }
.arc-ring {
  position: absolute; border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.arc-ring.ring-1 {
  width: 82%; height: 82%;
  border: 1px solid rgba(77,54,46,0.07);
}
.arc-ring.ring-2 {
  width: 64%; height: 64%;
  border: 1px solid rgba(77,54,46,0.05);
}
.arc-ring.ring-3 {
  width: 50%; height: 50%;
  background: rgba(245,220,122,0.20);
  border: 1px solid rgba(77,54,46,0.04);
}
.arc-logo {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 32%; z-index: 2;
  filter: drop-shadow(0 4px 16px rgba(77,54,46,0.08));
}

/* Floating tags */
.arc-tag {
  position: absolute; padding: 7px 16px;
  background: var(--warm-white); border-radius: 40px;
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brown-warm); box-shadow: 0 2px 16px rgba(77,54,46,0.05);
  white-space: nowrap; z-index: 3;
}
.tag-1 { top: 5%; right: 2%; animation: tagfloat 4.5s ease-in-out infinite; }
.tag-2 { top: 30%; right: -12%; animation: tagfloat 4.5s ease-in-out 0.6s infinite; }
.tag-3 { bottom: 18%; right: -4%; animation: tagfloat 4.5s ease-in-out 1.2s infinite; }
.tag-4 { bottom: 5%; left: 2%; animation: tagfloat 4.5s ease-in-out 1.8s infinite; }
.tag-5 { top: 25%; left: -10%; animation: tagfloat 4.5s ease-in-out 2.4s infinite; }
@keyframes tagfloat {
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-7px); }
}

/* subtle background shapes */
.hero-bg-el {
  position: absolute; pointer-events: none; opacity: 0.018;
}
.hero-bg-el.el-1 { top: -8%; right: -3%; width: 55vw; max-width: 700px; }
.hero-bg-el.el-2 { bottom: -15%; left: -8%; width: 40vw; max-width: 500px; transform: rotate(20deg); }

/* ═══════════════════════════════
   ABOUT
   ═══════════════════════════════ */
.about {
  background: var(--cream-light);
  position: relative; overflow: hidden;
}
.about-watermark-logo {
  position: absolute; top: 50%; right: -8%;
  transform: translateY(-50%);
  width: clamp(280px, 38vw, 540px);
  opacity: 0.05;
  pointer-events: none; user-select: none;
}
.about-watermark-small {
  position: absolute; top: 12%; left: 4%;
  width: clamp(80px, 8vw, 120px);
  opacity: 0.04;
  pointer-events: none; user-select: none;
  transform: rotate(-12deg);
}
.about-header { 
  max-width: 1140px; 
  margin: 0 auto clamp(36px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
}
.about-header-text { max-width: 700px; }
.about-title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.25; margin-top: 8px;
}
.about-team-photo {
  position: relative;
  width: clamp(140px, 14vw, 200px);
  margin: 0;
  transform: rotate(1.5deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-team-photo:hover { transform: rotate(0deg) translateY(-3px); }
.about-team-photo img {
  width: 100%; height: auto; display: block;
  border-radius: 10px;
  box-shadow: 
    0 18px 36px -12px rgba(77, 54, 46, 0.24),
    0 6px 12px -6px rgba(77, 54, 46, 0.14),
    0 0 0 1px rgba(77, 54, 46, 0.06);
}
.about-team-photo figcaption {
  position: absolute;
  bottom: -8px; left: 50%;
  transform: translateX(-50%);
  background: var(--brown-deep);
  color: var(--cream);
  padding: 5px 14px;
  border-radius: 40px;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(77, 54, 46, 0.25);
}
.about-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px); max-width: 1140px; margin: 0 auto;
}
.about-col p {
  color: var(--text-secondary); margin-bottom: 20px; line-height: 1.85;
}
.about-accent {
  font-family: var(--font-heading); font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--text-primary) !important;
  padding-left: 20px; border-left: 2px solid var(--baby-yellow-deep);
  margin: 28px 0 !important;
  line-height: 1.5;
}
.about-bold {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--text-primary) !important;
  font-weight: 700;
}

/* ═══════════════════════════════
   SERVICES — card grid
   ═══════════════════════════════ */
.services { background: var(--cream); position: relative; overflow: hidden; }
.services-watermark {
  position: absolute; bottom: -8%; left: -6%;
  width: clamp(240px, 28vw, 420px);
  opacity: 0.035; pointer-events: none; user-select: none;
  transform: rotate(8deg);
}
.services .section-header {
  max-width: 600px; margin-bottom: clamp(28px, 3.5vw, 48px);
}
.services .section-header p { color: var(--text-secondary); margin-top: 12px; }

/* Services feature: prominent 2-col photo + text */
.services-feature {
  max-width: 1140px; margin: 0 auto clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
}
.services-photo {
  position: relative;
  margin: 0;
  transform: rotate(-1.5deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.services-photo:hover { transform: rotate(0deg) translateY(-4px); }
.services-photo img {
  width: 100%; height: auto;
  max-height: 620px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow:
    0 32px 64px -20px rgba(77, 54, 46, 0.35),
    0 12px 24px -10px rgba(77, 54, 46, 0.22),
    0 0 0 1px rgba(77, 54, 46, 0.06);
  display: block;
}
.services-photo-badge {
  position: absolute;
  top: 20px; right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px 9px 14px;
  background: rgba(254, 243, 213, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 40px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-deep);
  font-weight: 500;
  box-shadow: 0 6px 16px rgba(77, 54, 46, 0.15);
}
.services-photo-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brown-deep);
  animation: pulse-dot 2.5s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(77,54,46,0.4);
}
.services-feature-text .section-label { margin-bottom: 18px; }
.services-feature-text h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.18;
  margin-bottom: 22px;
}
.services-feature-text p {
  color: var(--text-secondary);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 460px;
}
.services-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brown-deep);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 400;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: gap 0.3s, transform 0.3s;
}
.services-feature-link:hover {
  gap: 14px;
  transform: translateX(2px);
}
.services-feature-link span { font-style: normal; }
.services-grid {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2vw, 26px);
}
.service-card-wide { grid-column: 1 / -1; }
.service-card {
  position: relative; overflow: hidden;
  background: var(--warm-white);
  border: 1px solid rgba(77,54,46,0.08);
  border-radius: 16px;
  padding: clamp(22px, 2.4vw, 32px);
  transition: transform 0.45s cubic-bezier(.25,.46,.45,.94),
              box-shadow 0.45s,
              border-color 0.45s,
              background 0.45s;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(254,243,213,0.5) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.5s;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(77,54,46,0.10);
  border-color: rgba(245,220,122,0.5);
}
.service-card:hover::before { opacity: 1; }
.service-card-glyph {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--baby-yellow);
  border-radius: 12px;
  color: var(--brown-deep);
  margin-bottom: 18px;
  transition: transform 0.5s cubic-bezier(.34,1.56,.64,1), background 0.5s;
}
.service-card-glyph svg { width: 24px; height: 24px; }
.service-card:hover .service-card-glyph {
  transform: rotate(-8deg) scale(1.08);
  background: var(--baby-yellow-soft);
}
.service-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 1.55vw, 1.4rem);
}
.service-card p {
  color: var(--text-secondary); line-height: 1.7;
  font-size: clamp(14px, 1vw, 15.5px);
}
.service-card-corner {
  position: absolute; top: 18px; right: 18px;
  width: 18px; height: 18px;
  border-top: 1.5px solid rgba(77,54,46,0.18);
  border-right: 1.5px solid rgba(77,54,46,0.18);
  transition: all 0.4s;
}
.service-card:hover .service-card-corner {
  width: 28px; height: 28px;
  border-color: var(--brown-deep);
}

/* ═══════════════════════════════
   PARTNERS STRIP
   ═══════════════════════════════ */
.partners-strip {
  position: relative;
  padding: clamp(28px, 3.5vw, 44px) 5vw;
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
  border-top: 1px solid rgba(77,54,46,0.06);
  border-bottom: 1px solid rgba(77,54,46,0.06);
  overflow: hidden;
}
.partners-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: clamp(14px, 2vw, 22px);
}
.partners-label-wrap {
  display: flex; align-items: center; gap: 14px;
  width: 100%; max-width: 640px;
}
.partners-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,54,46,0.25), transparent);
}
.partners-label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brown-warm); white-space: nowrap;
  font-family: var(--font-body);
}
.partners-logos {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(36px, 6vw, 80px);
  width: 100%; flex-wrap: wrap;
}
.partner-logo {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 4px 12px;
  transition: transform 0.4s cubic-bezier(.25,.46,.45,.94);
}
.partner-logo img {
  width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(50%) opacity(0.65);
  transition: filter 0.5s cubic-bezier(.25,.46,.45,.94), transform 0.5s;
}
.partner-logo[data-partner="scheepens"] img { max-height: 42px; max-width: 200px; }
.partner-logo[data-partner="librije"] img { max-height: 90px; max-width: 80px; }
.partner-logo[data-partner="reset"] img { max-height: 70px; max-width: 160px; }
.partner-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}
.partner-logo::after {
  content: ''; position: absolute;
  left: 50%; bottom: -8px;
  width: 0; height: 2px;
  background: var(--baby-yellow-deep);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.45s cubic-bezier(.25,.46,.45,.94);
}
.partner-logo:hover::after { width: 70%; }

/* ═══════════════════════════════
   AI BLOCK — brown immersive section
   ═══════════════════════════════ */
.ai-block {
  background: var(--brown-deep);
  color: var(--cream);
  position: relative; overflow: hidden;
}
.ai-block::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(254,243,213,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(245,220,122,0.05) 0%, transparent 55%);
  pointer-events: none;
}
.ai-block .section-label { color: rgba(254,243,213,0.5); }
.ai-block .section-label::before { background: rgba(254,243,213,0.25); }
.ai-block h2 { color: var(--cream); }
.story-inner {
  transform-origin: bottom left;
  will-change: transform;
  padding: clamp(48px, 5.5vw, 72px) 5vw clamp(72px, 8vw, 110px);
  position: relative;
}
.ai-content {
  max-width: 720px; margin: 0 auto; text-align: center;
  position: relative; z-index: 2;
}
.ai-content h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-style: italic; margin-bottom: 20px; line-height: 1.3;
}
.ai-content p {
  color: rgba(254,243,213,0.75); font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.75; margin-bottom: 12px;
}

/* Animated mountain peaks bg */
.ai-mountains {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}

/* Floating logos */
.ai-floating-logos {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.ai-float-logo {
  position: absolute;
  opacity: 0.06;
  animation: ai-floater linear infinite;
}
@keyframes ai-floater {
  0%   { transform: translateY(15px) rotate(-3deg); }
  50%  { transform: translateY(-15px) rotate(3deg); }
  100% { transform: translateY(15px) rotate(-3deg); }
}
.ai-peak {
  position: absolute;
  width: 0; height: 0;
  border-left: 90px solid transparent;
  border-right: 90px solid transparent;
  border-bottom: 130px solid rgba(254,243,213,0.05);
  animation: peak-rise 9s ease-in-out infinite;
}
.ai-peak-1 { left: 4%; bottom: 0; animation-delay: 0s; }
.ai-peak-2 {
  left: 14%; bottom: 0;
  border-left-width: 70px; border-right-width: 70px; border-bottom-width: 100px;
  border-bottom-color: rgba(254,243,213,0.07);
  animation-delay: 1.5s;
}
.ai-peak-3 {
  right: 18%; bottom: 0;
  border-left-width: 110px; border-right-width: 110px; border-bottom-width: 160px;
  border-bottom-color: rgba(254,243,213,0.04);
  animation-delay: 3s;
}
.ai-peak-4 {
  right: 6%; bottom: 0;
  border-left-width: 75px; border-right-width: 75px; border-bottom-width: 110px;
  border-bottom-color: rgba(245,220,122,0.06);
  animation-delay: 4.5s;
}
.ai-peak-5 {
  left: 42%; bottom: 0;
  border-left-width: 60px; border-right-width: 60px; border-bottom-width: 85px;
  border-bottom-color: rgba(254,243,213,0.04);
  animation-delay: 6s;
}
@keyframes peak-rise {
  0%, 100% { transform: translateY(8px); opacity: 0.7; }
  50% { transform: translateY(-12px); opacity: 1; }
}

/* Subtle animated grid */
.ai-grid-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(254,243,213,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254,243,213,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-drift 24s linear infinite;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
@keyframes grid-drift {
  to { background-position: 60px 60px; }
}

/* Animated pulse CTA */
.ai-cta-pulse {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  margin-top: 24px;
  padding: 18px 38px;
  background: var(--baby-yellow);
  color: var(--brown-deep);
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1),
              box-shadow 0.4s, background 0.4s;
  box-shadow: 0 8px 28px rgba(254,243,213,0.18);
  overflow: visible;
  z-index: 2;
}
.ai-cta-pulse-ring,
.ai-cta-pulse-ring-2 {
  position: absolute; inset: 0;
  border-radius: 60px;
  border: 2px solid var(--baby-yellow);
  animation: cta-ripple 2.4s cubic-bezier(.25,.46,.45,.94) infinite;
  pointer-events: none;
  z-index: -1;
}
.ai-cta-pulse-ring-2 { animation-delay: 1.2s; }
@keyframes cta-ripple {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}
.ai-cta-pulse-arrow {
  display: inline-block; transition: transform 0.4s;
}
.ai-cta-pulse:hover {
  transform: translateY(-3px) scale(1.03);
  background: var(--baby-yellow-soft);
  box-shadow: 0 14px 38px rgba(254,243,213,0.32);
}
.ai-cta-pulse:hover .ai-cta-pulse-arrow {
  transform: translateX(6px);
}

/* ═══════════════════════════════
   VISION
   ═══════════════════════════════ */
.vision {
  background: var(--brown-deep); color: var(--cream); position: relative; overflow: hidden;
}
.vision h2, .vision h3 { color: var(--cream); }
.vision .section-label { color: rgba(245,240,228,0.4); }
.vision .section-label::before { background: rgba(245,240,228,0.2); }
.vision-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px); max-width: 1140px; margin: clamp(36px, 4vw, 56px) auto 0;
  align-items: start;
}
.vision-text p {
  color: rgba(245,240,228,0.7); margin-bottom: 22px; line-height: 1.85;
}
.vision-quote {
  font-family: var(--font-heading); font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: var(--cream); line-height: 1.4;
  padding: 32px; padding-left: 28px;
  border-left: 2px solid var(--baby-yellow);
  background: rgba(242,237,170,0.04);
  border-radius: 0 12px 12px 0;
  margin-top: 20px;
}
.vision-bg-mark {
  position: absolute; right: -3%; bottom: -8%;
  width: 45vw; max-width: 500px; opacity: 0.04; pointer-events: none;
}

/* ═══════════════════════════════
   CONTACT — beleving + animatie
   ═══════════════════════════════ */
.contact {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative; overflow: hidden;
}
.contact-deco {
  position: absolute; pointer-events: none; z-index: 0;
  border-radius: 50%;
  filter: blur(60px);
}
.contact-deco-1 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(245,220,122,0.45), transparent 70%);
  top: -100px; left: -80px;
  animation: blob-drift-a 14s ease-in-out infinite;
}
.contact-deco-2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(77,54,46,0.10), transparent 70%);
  bottom: -80px; right: -60px;
  animation: blob-drift-b 17s ease-in-out infinite;
}
@keyframes blob-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 30px) scale(1.12); }
}
@keyframes blob-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, -20px) scale(1.08); }
}
.contact-layout {
  max-width: 1140px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 5vw, 80px); align-items: center;
}
.contact-text h2 { margin-bottom: 20px; }
.contact-text > p {
  color: var(--text-secondary); font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.85; margin-bottom: 32px;
}
.contact-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.contact-email-text {
  position: relative;
  font-size: clamp(14px, 1vw, 16px); color: var(--brown-warm);
  letter-spacing: 0.04em; transition: all 0.3s;
}
.contact-email-text::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px; background: var(--brown-deep);
  transition: width 0.4s;
}
.contact-email-text:hover { color: var(--brown-deep); }
.contact-email-text:hover::after { width: 100%; }

/* Card */
.contact-card {
  position: relative; overflow: hidden;
  background: var(--warm-white); border-radius: 24px;
  padding: clamp(32px, 3.5vw, 48px) clamp(28px, 3vw, 44px);
  text-align: center;
  box-shadow: 0 14px 50px rgba(77,54,46,0.10);
  border: 1px solid rgba(254,243,213,0.6);
  transition: transform 0.5s cubic-bezier(.25,.46,.45,.94), box-shadow 0.5s;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 64px rgba(77,54,46,0.14);
}
.contact-card-shine {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(120deg, transparent 40%, rgba(254,243,213,0.7) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 1s cubic-bezier(.25,.46,.45,.94);
}
.contact-card:hover .contact-card-shine { transform: translateX(100%); }

.contact-card-logo-wrap {
  width: 76px; height: 76px;
  margin: 0 auto 22px;
  border-radius: 18px;
  background: var(--baby-yellow);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(77,54,46,0.10);
  transition: transform 0.5s cubic-bezier(.34,1.56,.64,1), background 0.5s;
}
.contact-card:hover .contact-card-logo-wrap {
  transform: rotate(-6deg) scale(1.06);
  background: var(--baby-yellow-soft);
}
.contact-card-logo { width: 46px; height: auto; object-fit: contain; opacity: 1; margin: 0; }
.contact-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.contact-card > p {
  color: var(--text-secondary); font-size: 14px; line-height: 1.7; margin-bottom: 22px;
}
.contact-detail-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--brown-warm);
  padding: 8px 0;
  border-top: 1px dashed rgba(77,54,46,0.10);
  justify-content: center;
}
.contact-detail-row:first-of-type { border-top: 1px dashed rgba(77,54,46,0.15); margin-top: 4px; }
.contact-detail-row a { color: var(--brown-deep); font-weight: 600; transition: color 0.3s; }
.contact-detail-row a:hover { color: var(--baby-yellow-deep); }
.contact-detail-icon {
  display: inline-flex; width: 22px; height: 22px;
  align-items: center; justify-content: center;
  color: var(--brown-warm);
  background: var(--baby-yellow); border-radius: 6px;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 12px; height: 12px; }

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
.site-footer {
  background: var(--brown-deep); color: rgba(245,240,228,0.55);
  padding: 52px 5vw;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 40px; align-items: center;
}
.footer-brand {
  display: flex; align-items: center; gap: 14px;
  padding: 4px 16px 4px 4px;
  background: rgba(254,243,213,0.06);
  border: 1px solid rgba(254,243,213,0.10);
  border-radius: 14px;
  transition: all 0.4s;
}
.footer-brand:hover {
  background: rgba(254,243,213,0.10);
  border-color: rgba(254,243,213,0.18);
}
.footer-mark {
  width: 42px; height: 42px; object-fit: cover;
  border-radius: 10px; opacity: 1;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.footer-name {
  font-family: var(--font-heading); font-size: 16px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--baby-yellow);
}
.footer-meta { text-align: center; font-size: 13px; line-height: 1.7; }
.footer-meta a { transition: color 0.3s; }
.footer-meta a:hover { color: var(--cream); }
.footer-divider {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(245,240,228,0.2); display: inline-block;
  vertical-align: middle; margin: 0 10px;
}
.footer-legal {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 4px; font-size: 12px;
}
.footer-legal a { transition: color 0.3s; }
.footer-legal a:hover { color: var(--cream); }

/* ═══════════════════════════════
   COMING SOON
   ═══════════════════════════════ */
.coming-soon-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: var(--brown-deep); color: rgba(245,240,228,0.7);
  text-align: center; padding: 10px 20px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
}
.coming-soon-bar strong { color: var(--baby-yellow-deep); font-weight: 600; }

/* ═══════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(.25,.46,.45,.94),
              transform 0.65s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-arc { max-width: 320px; margin-top: 24px; }
  .hero-photo { margin: 32px auto 0; max-width: 340px; }
  .tag-2, .tag-5 { display: none; }
  .about-header { grid-template-columns: 1fr; gap: 32px; }
  .about-team-photo { width: 160px; justify-self: start; }
  .about-body { grid-template-columns: 1fr; }
  .about-watermark-logo, .about-watermark-small { display: none; }
  .services-feature { grid-template-columns: 1fr; gap: 36px; }
  .services-feature-text { text-align: left; }
  .services-photo img { max-height: 480px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: auto; }
  .vision-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-card { max-width: 400px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-legal { align-items: center; }
}
@media (max-width: 600px) {
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 48px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .hero-photo { max-width: 100%; }
  .services-photo img { max-height: 380px; }
  .services-photo-badge { top: 14px; right: 14px; font-size: 10px; padding: 7px 12px; }
}
