/* Salairy — fonts via Google Fonts CDN (Inter + Roboto Slab) */

:root {
  --c-bg: #f1f2e9;
  --c-bg-soft: #fbfbf5;
  --c-surface: #ffffff;
  --c-text: #170c30;
  --c-text-2: #524a72;
  --c-text-3: #6c6585;
  --c-ink-deep: #021027;
  --c-brand: #525bfc;
  --c-brand-hot: #0822e4;
  --c-lavender: #c3c8ff;
  --c-lavender-soft: #e6e8ff;
  --c-warm: #ebe9e0;
  --c-pink: #f277ac;
  --c-rose: #ee3b5c;
  --c-yellow: #fcee52;
  --c-green: #86ee92;
  --b-soft: rgba(23,12,48,0.08);
  --b-mid: rgba(23,12,48,0.12);
  --f-display: "Roboto Slab", "Yetson Serif", Georgia, serif;
  --f-body: "Inter", system-ui, -apple-system, sans-serif;
  --r-sm: 8px; --r-md: 16px; --r-lg: 24px; --r-pill: 9999px;
  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);
  --sec: clamp(72px, 11vw, 144px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--f-body);
  font-weight: 400; font-size: 17px; line-height: 1.6;
  color: var(--c-text); background: var(--c-bg);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--c-brand); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--c-brand-hot); }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  margin: 0; font-family: var(--f-display);
  font-weight: 500; letter-spacing: -0.02em;
  line-height: 1.05; color: var(--c-ink-deep);
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--c-text); }
em { font-style: italic; color: var(--c-text-2); }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--c-text); color: var(--c-bg); padding: 12px 16px; border-radius: var(--r-md); z-index: 100; }
.skip-link:focus { left: 16px; top: 16px; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding-inline: var(--pad); position: relative; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; font-family: var(--f-body);
  font-weight: 500; font-size: 15px; letter-spacing: -0.005em;
  border-radius: var(--r-pill); border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap; text-align: center; cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--c-brand); color: #fff; }
.btn-primary:hover { background: var(--c-brand-hot); color: #fff; }
.btn-ghost { background: transparent; color: var(--c-ink-deep); border-color: var(--b-mid); }
.btn-ghost:hover { border-color: var(--c-ink-deep); background: rgba(23,12,48,0.04); }
.section-cta { margin-top: 24px; }

.sally-mark { display: inline-block; flex-shrink: 0; }
.sally-mark--sm { width: 36px; height: 36px; }
.sally-mark svg, .sally-mark img { width: 100%; height: 100%; display: block; }
img.sally-mark { display: block; object-fit: contain; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(241,242,233,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--b-soft);
}
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; padding-block: 14px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--c-ink-deep); font-family: var(--f-display); font-size: 22px; font-weight: 500; letter-spacing: -0.015em; justify-self: start; }
.brand-name { font-weight: 500; }
.primary-nav { justify-self: center; background: rgba(255,255,255,0.55); border: 1px solid var(--b-soft); border-radius: var(--r-pill); padding: 4px 6px; }
.primary-nav ul { display: flex; align-items: center; gap: 4px; }
.primary-nav a { display: inline-flex; align-items: center; color: var(--c-ink-deep); font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: var(--r-pill); transition: background .18s ease; }
.primary-nav a:hover { background: var(--c-bg); }
.header-cta { padding: 10px 18px; font-size: 14px; justify-self: end; }
.nav-toggle { display: none; flex-direction: column; gap: 4px; width: 40px; height: 40px; border: 1px solid var(--b-mid); border-radius: var(--r-md); background: transparent; align-items: center; justify-content: center; justify-self: end; }
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--c-ink-deep); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.mobile-nav { display: none; border-top: 1px solid var(--b-soft); background: var(--c-bg); }
.mobile-nav ul { display: flex; flex-direction: column; padding: 16px var(--pad) 24px; gap: 4px; }
.mobile-nav a { display: block; padding: 12px 0; color: var(--c-ink-deep); font-weight: 500; font-size: 17px; border-bottom: 1px solid var(--b-soft); }
.mobile-nav a.btn { margin-top: 12px; border-bottom: none; text-align: center; }

/* Hero */
.hero { position: relative; padding: clamp(60px, 9vw, 120px) 0 clamp(64px, 9vw, 120px); overflow: hidden; }
.hero-inner { max-width: 920px; position: relative; z-index: 1; }
.hero-bloom-a, .hero-bloom-b, .hero-bloom-c { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }
.hero-bloom-a { width: 720px; height: 720px; top: -240px; left: -160px; background: radial-gradient(circle, var(--c-lavender) 0%, var(--c-brand) 50%, transparent 75%); opacity: 0.5; }
.hero-bloom-b { width: 540px; height: 540px; top: 5%; right: -200px; background: radial-gradient(circle, #b6e3ff 0%, var(--c-lavender) 60%, transparent 80%); opacity: 0.5; }
.hero-bloom-c { width: 420px; height: 420px; bottom: -50px; left: 40%; background: radial-gradient(circle, var(--c-yellow) 0%, transparent 70%); opacity: 0.22; }

.eyebrow { font-family: var(--f-body); font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-text-2); margin-bottom: 20px; display: inline-flex; align-items: center; gap: 8px; }
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--c-brand); }

.hero-title { font-size: clamp(40px, 6.5vw, 76px); line-height: 1.04; letter-spacing: -0.025em; font-weight: 500; margin: 0 0 20px; color: var(--c-ink-deep); max-width: 18ch; }
.hero-title em { font-style: italic; color: var(--c-brand); }
.hero-tag { font-family: var(--f-display); font-style: italic; font-size: clamp(18px, 1.6vw, 22px); color: var(--c-text-2); margin: 0 0 32px; letter-spacing: -0.015em; }
.hero-tag span { color: var(--c-brand); font-weight: 500; }

.hero-body { font-size: clamp(16px, 1.3vw, 18px); line-height: 1.6; color: var(--c-text-2); max-width: 60ch; margin-bottom: 32px; }
.hero-body strong { color: var(--c-text); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* Sections — alle op dezelfde bg voor zachte overgangen, ritme via cards + blooms */
.section { padding-block: var(--sec); position: relative; }
.section--soft { background: transparent; }

/* Atmosferische blooms tussen secties — zachte visuele rust ipv harde randen */
.section::before {
  content: ""; position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%; filter: blur(100px);
  pointer-events: none; z-index: 0;
  opacity: 0.18;
}
.section--soft::before {
  top: 10%; left: -120px;
  background: radial-gradient(circle, var(--c-lavender) 0%, transparent 70%);
}
.section .container { position: relative; z-index: 1; }

.section-grid { display: grid; grid-template-columns: 240px 1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.section-grid-label { position: sticky; top: 100px; }
.section-grid-content { max-width: 800px; }
.section-title { font-size: clamp(30px, 4.4vw, 52px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 500; margin-bottom: 32px; color: var(--c-ink-deep); }
.section-title em { font-style: italic; color: var(--c-brand); }

.prose p { font-size: 17px; line-height: 1.65; color: var(--c-text-2); margin-bottom: 1.1em; }

.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 20px 0 24px; }
.feature-list--single { grid-template-columns: 1fr; }
.feature-list li { position: relative; padding-left: 28px; font-size: 16px; line-height: 1.5; color: var(--c-ink-deep); }
.feature-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 14px; border-radius: 50%; background: var(--c-lavender); border: 2px solid var(--c-brand); }

/* Pillars */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.pillar { background: #fff; border: 1px solid var(--b-soft); border-radius: var(--r-lg); padding: 24px; }
.pillar-num { display: none; }
.pillar h4 { font-family: var(--f-display); font-size: 20px; font-weight: 500; margin-bottom: 8px; color: var(--c-ink-deep); letter-spacing: -0.015em; }
.pillar p { font-size: 15px; line-height: 1.55; color: var(--c-text-2); margin: 0; }

/* Sally section */
.section-sally { background: var(--c-bg); padding-block: var(--sec); position: relative; overflow: hidden; }
.sally-intro { max-width: 760px; margin-bottom: 56px; }
.sally-tagline { font-family: var(--f-display); font-style: italic; font-size: clamp(20px, 2vw, 26px); color: var(--c-text-2); max-width: 50ch; letter-spacing: -0.015em; line-height: 1.3; margin: -16px 0 0; }

.platform-shot { position: relative; margin: 0 0 56px; padding: clamp(20px, 3vw, 40px) 0; border-radius: var(--r-lg); }
.platform-bloom { position: absolute; inset: -10% -5% -10% -5%; background: radial-gradient(ellipse at 50% 50%, var(--c-lavender) 0%, transparent 60%), radial-gradient(circle at 30% 70%, var(--c-brand) 0%, transparent 50%), radial-gradient(circle at 80% 20%, var(--c-pink) 0%, transparent 45%); filter: blur(80px); opacity: 0.45; pointer-events: none; z-index: 0; }
.platform-shot img { position: relative; z-index: 1; width: 100%; height: auto; border-radius: 18px; box-shadow: 0 20px 60px rgba(23,12,48,0.18); border: 1px solid var(--b-soft); background: #fff; }

.sally-prose { max-width: 720px; margin: 0 auto 56px; }
.sally-prose p { font-size: 17px; line-height: 1.65; color: var(--c-text-2); margin-bottom: 1em; }
.sally-prose strong { color: var(--c-text); }
.sally-prose em { color: var(--c-text-2); font-style: italic; }

/* Workflow timeline */
.workflow-block { max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid var(--b-soft); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 48px); }
.workflow-title { font-family: var(--f-display); font-size: clamp(22px, 2.4vw, 30px); font-weight: 500; letter-spacing: -0.02em; margin-bottom: 32px; color: var(--c-ink-deep); }
.workflow { display: flex; flex-direction: column; }
.workflow li { display: grid; grid-template-columns: 36px 1fr; gap: 16px; padding: 14px 0; position: relative; }
.workflow li:not(:last-child)::after { content: ""; position: absolute; left: calc(16px - 0.75px); top: 46px; bottom: 0; width: 1.5px; background: var(--b-mid); }
.wf-num { width: 32px; height: 32px; border-radius: 50%; background: var(--c-brand); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; position: relative; z-index: 1; }
.workflow h4 { font-family: var(--f-body); font-weight: 600; font-size: 16px; color: var(--c-ink-deep); margin: 4px 0 4px; letter-spacing: -0.01em; }
.workflow p { font-size: 14px; color: var(--c-text-2); line-height: 1.55; margin: 0; }

/* Audience shift divider — markeert overgang van klant- naar branchegenoten-blok */
.audience-shift {
  padding: clamp(40px, 6vw, 64px) 0;
  text-align: center;
  position: relative;
}
.audience-shift .container {
  display: flex; align-items: center; gap: 24px;
  justify-content: center;
}
.shift-rule {
  flex: 1; max-width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--b-mid) 50%, transparent);
}
.shift-label {
  font-family: var(--f-body); font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; color: var(--c-text-2);
  margin: 0; max-width: 60ch;
  font-style: italic;
}

/* Onze strategie — zelfde bg voor zachte overgang */
.section-strategy { background: transparent; padding-block: var(--sec); position: relative; overflow: hidden; }
.section-strategy::before {
  content: ""; position: absolute;
  top: -10%; right: -120px;
  width: 520px; height: 520px;
  border-radius: 50%; filter: blur(100px);
  background: radial-gradient(circle, var(--c-yellow) 0%, transparent 70%);
  opacity: 0.2; pointer-events: none; z-index: 0;
}
.strategy-shape { position: absolute; top: -150px; right: -200px; width: 720px; height: 720px; filter: blur(50px); opacity: 0.3; pointer-events: none; z-index: 0; }
.strategy-shape svg { width: 100%; height: 100%; }
.strategy-card { position: relative; z-index: 1; background: var(--c-surface); border: 1px solid var(--b-soft); border-radius: var(--r-lg); padding: clamp(40px, 6vw, 80px); box-shadow: 0 8px 30px rgba(23,12,48,0.06); max-width: 1080px; margin: 0 auto; }
.strategy-card .section-title { max-width: 18ch; }
.strategy-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.strategy-steps li { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 24px; background: var(--c-bg-soft); border: 1px solid var(--b-soft); border-radius: var(--r-md); }
.strat-num { display: none; }
.strategy-steps h4 { font-family: var(--f-display); font-size: 19px; font-weight: 500; color: var(--c-ink-deep); margin-bottom: 6px; letter-spacing: -0.015em; }
.strategy-steps p { font-size: 14px; color: var(--c-text-2); line-height: 1.55; margin: 0; }

/* Values */
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.value { background: #fff; border: 1px solid var(--b-soft); border-radius: var(--r-md); padding: 20px; }
.value h4 { font-family: var(--f-display); font-size: 22px; font-weight: 500; margin-bottom: 6px; color: var(--c-ink-deep); letter-spacing: -0.015em; }
.value p { font-size: 14px; line-height: 1.5; color: var(--c-text-2); margin: 0; }

/* Contact — twee duidelijke ingangen */
.section-contact { padding-bottom: clamp(80px, 12vw, 160px); padding-top: var(--sec); background: transparent; position: relative; }
.section-contact::before {
  content: ""; position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, var(--c-lavender) 0%, transparent 70%);
  filter: blur(80px); opacity: 0.25; pointer-events: none; z-index: 0;
}
.contact-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.contact-head .eyebrow { justify-content: center; }
.contact-head .section-title { margin-bottom: 12px; }
.contact-lead { font-size: 17px; color: var(--c-text-2); margin: 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; }
.contact-card-dual { background: var(--c-surface); border: 1px solid var(--b-soft); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 40px); position: relative; overflow: hidden; }
.contact-card-dual::before { content: ""; position: absolute; top: -80px; right: -80px; width: 220px; height: 220px; background: radial-gradient(circle, var(--c-lavender) 0%, transparent 70%); filter: blur(40px); opacity: 0.6; pointer-events: none; }
.contact-card-dual:nth-child(2)::before { background: radial-gradient(circle, var(--c-yellow) 0%, transparent 70%); opacity: 0.5; }
.contact-card-dual > * { position: relative; z-index: 1; }
.contact-card-dual h3 { font-family: var(--f-display); font-size: clamp(22px, 2vw, 28px); font-weight: 500; color: var(--c-ink-deep); margin: 8px 0 12px; letter-spacing: -0.015em; }
.contact-card-dual p { font-size: 15px; line-height: 1.55; color: var(--c-text-2); margin-bottom: 24px; }
.contact-card-dual .btn { margin-bottom: 12px; }
.contact-email { display: block; font-size: 14px; font-weight: 500; color: var(--c-text-2); }
.contact-email:hover { color: var(--c-brand); }

/* Footer */
.site-footer { background: var(--c-ink-deep); color: rgba(241,242,233,0.7); padding-top: clamp(64px, 8vw, 96px); padding-bottom: 32px; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; top: 0; right: 0; width: 600px; height: 600px; background: radial-gradient(circle, var(--c-brand) 0%, transparent 60%); filter: blur(80px); opacity: 0.18; pointer-events: none; }
.brand-on-dark .brand-name { color: var(--c-bg); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(241,242,233,0.12); position: relative; z-index: 1; }
.footer-tagline { margin-top: 16px; font-size: 15px; max-width: 38ch; line-height: 1.6; }
.footer-nav-title { font-family: var(--f-body); font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(241,242,233,0.5); margin-bottom: 16px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-contact a { color: var(--c-bg); font-size: 15px; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--c-lavender); }
.footer-bottom { padding-top: 24px; font-size: 13px; color: rgba(241,242,233,0.5); position: relative; z-index: 1; }

/* Responsive */
@media (max-width: 1080px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .primary-nav { padding: 4px; }
  .primary-nav a { padding: 8px 10px; font-size: 13px; }
  .pillars { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .strategy-steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .section-grid { grid-template-columns: 1fr; gap: 24px; }
  .section-grid-label { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .feature-list { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav:not([hidden]) { display: block; }
  .footer-inner { grid-template-columns: 1fr; }
  .header-inner { grid-template-columns: auto auto; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero { padding-top: 32px; }
  .hero-bloom-a, .hero-bloom-b { opacity: 0.4; }
  .platform-shot { padding: 12px 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
@media print {
  .site-header, .nav-toggle, .mobile-nav, .hero-bloom-a, .hero-bloom-b, .hero-bloom-c, .platform-bloom, .site-footer { display: none; }
}
