/* ============================================================================
   coachmarinda.nl — onepager
   Design-tokens overgenomen uit de Performance by Design huisstijl
   (tsrf/assets/css/styles.css). Hex-waarden identiek gehouden.
   ============================================================================ */

:root {
  --ink: #0F1C2D;
  --ink-700: #1F2A38;
  --body: #5F6368;
  --body-invert: #E2E8F0;
  --muted-invert: #94A3B8;

  --brand: #B8613C;
  --brand-dark: #9a5233;
  --sand: #F4A574;

  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --border-subtle: #E2E8F0;
  --border-medium: #CBD5E1;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: 200ms ease;

  --maxw: 1000px;
}

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

html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--body);
  background: var(--white);
}

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

a { color: var(--ink); }

h1, h2, h3 { color: var(--ink); line-height: 1.2; font-weight: 700; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--white); color: var(--ink);
  padding: 0.75rem 1.25rem; z-index: 10;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--sand); outline-offset: 2px; }

/* ===== Knoppen ===== */
.btn {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition);
}
.btn-primary { background: var(--brand); color: var(--white); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost-invert { border: 1px solid var(--muted-invert); color: var(--body-invert); }
.btn-ghost-invert:hover { border-color: var(--white); color: var(--white); }
.btn-outline { border: 1px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }

/* ===== Hero ===== */
.hero { background: var(--ink); padding: 5rem 0 4.5rem; }
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.9rem;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 3.75rem); color: var(--white); }
.hero h1 span { display: block; color: var(--sand); }
.hero-sub {
  color: var(--body-invert);
  font-size: 1.05rem;
  margin: 1rem 0 2rem;
  max-width: 34rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ===== Secties ===== */
section { padding: 4rem 0; }
.section-alt { background: var(--gray-50); border-top: 1px solid var(--border-subtle); }
.section-title { font-size: clamp(1.5rem, 3vw, 1.875rem); }
.section-intro { margin-top: 0.5rem; max-width: 42rem; }

/* ===== Profiel ===== */
.profile { display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: 2.5rem; align-items: start; }
.profile-photo { border-radius: var(--radius-lg); overflow: hidden; }
.fact {
  display: block;
  background: var(--gray-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 0.9rem 1.1rem;
  margin-top: 0.85rem;
  text-decoration: none;
}
a.fact:hover { border-color: var(--border-medium); }
.fact-label { font-size: 0.9rem; color: var(--ink); font-weight: 600; }
.fact-meta { font-size: 0.8rem; color: var(--body); margin-top: 0.15rem; }
.profile p { margin-bottom: 1rem; line-height: 1.8; }

/* ===== Verhaal ===== */
.story {
  background: var(--gray-50);
  border-left: 4px solid var(--brand);
  padding: 1.75rem 2rem;
  max-width: 46rem;
  margin-top: 1.75rem;
}
.story p { line-height: 1.85; margin-bottom: 1.1rem; }
.story p:last-child { margin-bottom: 0; color: var(--ink); font-weight: 600; }

/* ===== Kaarten ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.card p { flex: 1; line-height: 1.7; margin-bottom: 1.2rem; }
.card-link {
  color: var(--brand);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  align-self: flex-start;
}
.card-link:hover { color: var(--brand-dark); text-decoration: underline; }

/* ===== Media ===== */
.media-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.media-row div { max-width: 34rem; }

/* ===== Contact ===== */
.contact { background: var(--ink); }
.contact h2 { color: var(--white); }
.contact-intro { color: var(--body-invert); margin-top: 0.5rem; max-width: 34rem; }
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.tile {
  background: var(--ink-700);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-decoration: none;
  display: block;
  transition: background var(--transition);
}
a.tile:hover { background: #2b3849; }
.tile-label { font-size: 0.75rem; color: var(--muted-invert); text-transform: uppercase; letter-spacing: 0.08em; }
.tile-value { color: var(--white); font-size: 1rem; font-weight: 600; margin-top: 0.35rem; }

footer { background: var(--ink); padding: 0 0 3rem; }
.footer-inner {
  border-top: 1px solid #334155;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted-invert);
}
.footer-inner a { color: var(--body-invert); text-decoration: none; }
.footer-inner a:hover { color: var(--white); text-decoration: underline; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .profile { grid-template-columns: 1fr; gap: 1.75rem; }
  .profile-photo { max-width: 320px; }
  .hero { padding: 3.5rem 0 3rem; }
  section { padding: 3rem 0; }
  .story { padding: 1.5rem 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card, .btn, .tile { transition: none; }
  .card:hover { transform: none; }
}
