/* ============================================================
   Rossenaar Marketing — warm, persoonlijk, niet techy
   Kleuren uit het logo: navy, blauw, teal en frisgroen,
   gecombineerd met warme crèmetinten.
   ============================================================ */

:root {
  /* Logokleuren */
  --navy: #1c3667;
  --blue: #2563a8;
  --teal: #2a7d6c;
  --green: #6cab3f;

  /* Warme basis */
  --cream: #faf6ef;
  --sand: #f3ebdd;
  --white: #ffffff;
  --ink: #2b3a53;
  --ink-soft: #5c6b84;

  --radius: 22px;
  --shadow: 0 10px 30px rgba(28, 54, 103, 0.08);
  --shadow-hover: 0 16px 40px rgba(28, 54, 103, 0.14);

  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1.05rem;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 550;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }

.accent-green { color: var(--green); }

/* ===== Knoppen ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: var(--font-body);
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(108, 171, 63, 0.35);
}
.btn-primary:hover { background: #5f9a35; box-shadow: 0 12px 26px rgba(108, 171, 63, 0.4); }

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(28, 54, 103, 0.25);
}
.btn-secondary:hover { background: #162c56; }

.btn-ghost {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }

.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(28, 54, 103, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-logo { height: 52px; width: auto; }

.brand-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand-name em {
  font-style: normal;
  color: var(--teal);
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--teal); }

.nav-cta {
  background: var(--sand);
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  color: var(--navy) !important;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: #ebdfc9; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(160deg, #fdfbf7 0%, #f2ede2 60%, #ece9de 100%);
  overflow: hidden;
  padding: 5.5rem 0 7rem;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
}
.hero-blob-1 {
  width: 420px; height: 420px;
  background: var(--green);
  top: -120px; right: -100px;
  opacity: 0.22;
}
.hero-blob-2 {
  width: 360px; height: 360px;
  background: var(--teal);
  bottom: -140px; left: -120px;
  opacity: 0.18;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.hero-sub {
  margin: 1.4rem 0 2rem;
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 1.1rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-style: italic;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 2rem;
  text-align: center;
  transform: rotate(2deg);
  max-width: 340px;
  margin: 0 auto;
}
.hero-card-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.2rem;
}
.hero-card p {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.5;
}
.hero-card-sign {
  display: block;
  margin-top: 0.9rem;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 90px; }

/* ===== Waarden ===== */
.values { padding: 3.5rem 0 1rem; }

.values-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value {
  text-align: center;
  padding: 1rem;
}
.value-icon {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 0.6rem;
}
.value h3 { margin-bottom: 0.4rem; }
.value p { color: var(--ink-soft); font-size: 0.98rem; }

/* ===== Secties algemeen ===== */
section { scroll-margin-top: 90px; }

.section-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3rem;
}

.section-kicker {
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.section-sub {
  color: var(--ink-soft);
  margin-top: 0.8rem;
}

/* ===== Diensten ===== */
.services { padding: 4.5rem 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
}
.service-icon svg { width: 28px; height: 28px; }

.icon-navy  { background: rgba(28, 54, 103, 0.1);  color: var(--navy); }
.icon-teal  { background: rgba(42, 125, 108, 0.12); color: var(--teal); }
.icon-green { background: rgba(108, 171, 63, 0.14); color: var(--green); }
.icon-blue  { background: rgba(37, 99, 168, 0.1);   color: var(--blue); }

.service-card h3 { margin-bottom: 0.6rem; }
.service-card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ===== Over Danny ===== */
.about {
  background: var(--sand);
  padding: 5rem 0;
  border-radius: 60px 60px 0 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-photo {
  aspect-ratio: 4 / 5;
  max-width: 380px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  transform: rotate(-2deg);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(1deg);
  background: var(--white);
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow);
}

.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1.1rem; color: var(--ink-soft); }

.about-list {
  list-style: none;
  margin: 1.4rem 0 2rem;
}
.about-list li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: rgba(108, 171, 63, 0.18);
  color: var(--green);
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.link-linkedin {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(37, 99, 168, 0.25);
  transition: border-color 0.2s ease;
}
.link-linkedin:hover { border-color: var(--blue); }

/* ===== Werkwijze ===== */
.process {
  background: var(--sand);
  padding: 3rem 0 5.5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.process-step:nth-child(3) .step-number { background: var(--blue); }
.process-step:nth-child(5) .step-number { background: var(--green); }

.process-step h3 { margin-bottom: 0.5rem; }
.process-step p { color: var(--ink-soft); font-size: 0.98rem; }

.process-arrow {
  align-self: center;
  font-size: 1.8rem;
  color: var(--teal);
  opacity: 0.6;
}

/* ===== Verhalen ===== */
.stories { padding: 5rem 0; }

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  max-width: 62rem;
  margin: 0 auto;
  align-items: start;
}

.story-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.story-card blockquote {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.story-card.expanded blockquote {
  display: block;
  -webkit-line-clamp: none;
}

.story-toggle {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  margin-top: -0.6rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--teal);
  cursor: pointer;
  border-bottom: 2px solid rgba(42, 125, 108, 0.25);
  transition: border-color 0.2s ease;
}
.story-toggle:hover { border-color: var(--teal); }
.story-toggle.hidden { display: none; }

.story-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.story-card figcaption div { display: flex; flex-direction: column; }
.story-card figcaption strong { color: var(--navy); }
.story-card figcaption span:not(.story-avatar) {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.story-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.avatar-teal  { background: var(--teal); }
.avatar-green { background: var(--green); }
.avatar-navy  { background: var(--navy); }

/* ===== Contact ===== */
.contact {
  background: linear-gradient(160deg, var(--navy) 0%, #234a86 60%, var(--teal) 130%);
  border-radius: 60px 60px 0 0;
  padding: 5rem 0;
  color: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-text h2 {
  color: var(--white);
  margin-bottom: 1.2rem;
}
.contact-text .section-kicker { color: #9fd67a; }
.contact-text p { color: rgba(255, 255, 255, 0.85); }

.contact-details {
  list-style: none;
  margin-top: 2rem;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  font-weight: 600;
}
.contact-details a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: border-color 0.2s ease;
}
.contact-details a:hover { border-color: var(--white); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  box-shadow: 0 24px 60px rgba(10, 24, 52, 0.35);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 2px solid #e5ddcc;
  background: #fdfbf7;
  color: var(--ink);
  transition: border-color 0.2s ease;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.contact-form ::placeholder { color: #a3aabb; }

.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
  font-weight: 400;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  font-size: 0.92rem;
  text-align: center;
  font-weight: 600;
  margin-top: -0.4rem;
}
.form-status:empty { display: none; }
.form-status.success { color: var(--teal); }
.form-status.error { color: #c0392b; }

.contact-form button[disabled] {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

/* ===== Footer ===== */
.site-footer {
  background: #142647;
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand img {
  width: 96px;
  background: var(--white);
  border-radius: 16px;
  padding: 8px;
  margin-bottom: 1rem;
}

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer h4 {
  color: var(--white);
  font-family: var(--font-head);
  margin-bottom: 0.5rem;
  font-weight: 550;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer a:hover { color: #9fd67a; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.3rem 0;
  text-align: center;
  font-size: 0.9rem;
}

/* ===== Reveal-animaties ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

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

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero { padding: 3.5rem 0 6rem; }

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

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

  .process-grid { grid-template-columns: 1fr; }
  .process-arrow { transform: rotate(90deg); justify-self: center; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 6%;
    gap: 1.1rem;
    border-bottom: 1px solid rgba(28, 54, 103, 0.1);
    box-shadow: var(--shadow);
    display: none;
  }
  .site-nav.open { display: flex; }

  .brand-name { font-size: 1.05rem; }
  .brand-logo { height: 44px; }
}
