/* ==========================================================================
   Kinesitherapie Fix Heule — stylesheet
   ========================================================================== */

:root {
  --dark: #405455;
  --dark-deep: #303F40;
  --coral: #DC977B;
  --coral-light: #E9B8A5;
  --cream: #F8F7F2;
  --ink: #2A3536;
  --white: #FFFFFF;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(42, 53, 54, 0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
#top, #team, #specialisaties, #contact { scroll-margin-top: 90px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ---------- stitch signature element ---------- */
.stitch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto;
  width: fit-content;
}
.stitch span {
  width: 2px;
  height: 14px;
  background: currentColor;
  border-radius: 1px;
  opacity: 0.55;
  transform: rotate(12deg);
}
.stitch.on-dark { color: var(--coral-light); }
.stitch.on-light { color: var(--coral); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line-dark);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.86rem;
}
nav.main-nav a {
  color: var(--ink);
  opacity: 0.75;
  transition: opacity 0.15s ease;
  white-space: nowrap;
}
nav.main-nav a:hover { opacity: 1; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background: var(--coral);
  color: var(--white) !important;
  padding: 11px 18px;
  border-radius: 100px;
  opacity: 1 !important;
  font-weight: 600;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  background: rgba(64,84,85,0.07);
  transition: background 0.15s ease, color 0.15s ease;
}
.header-social a:hover { background: var(--coral); color: var(--white); }
.header-social svg { width: 15px; height: 15px; fill: currentColor; }

/* ---------- hero ---------- */
.hero {
  background:
    linear-gradient(180deg, rgba(48,63,64,0.90), rgba(48,63,64,0.94)),
    url('../images/praktijk-1.jpg') center 35% / cover no-repeat;
  color: var(--cream);
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(217,138,108,0.16), transparent 55%);
  pointer-events: none;
}
.hero .wrap { position: relative; }
.eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--coral-light);
  margin-bottom: 22px;
}
.hero h1 {
  text-align: center;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  max-width: 720px;
  margin: 0 auto 24px;
}
.hero-lede {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  color: rgba(251,248,244,0.82);
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.94rem;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
}
.btn-primary:hover { background: #c9754f; }
.btn-ghost {
  border-color: var(--line);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--coral-light); color: var(--coral-light); }

.hero-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251,248,244,0.08);
  border: 1px solid var(--line);
  color: var(--cream);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.social-btn:hover { background: var(--coral); border-color: var(--coral); color: var(--white); }
.social-btn svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- gallery ---------- */
.gallery-section { padding: 90px 0; background: var(--dark); }
.gallery-section .section-head h2 { color: var(--cream); }
.gallery-section .section-head p { color: rgba(251,248,244,0.75); }
.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.section-head .stitch { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); color: var(--dark); }
.section-head p { color: rgba(43,51,48,0.65); margin-top: 12px; }

.carousel {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(15,20,20,0.35);
}
.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}
.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  aspect-ratio: 3 / 2;
  background: var(--dark-deep);
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(248,247,242,0.92);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.carousel-arrow svg { width: 20px; height: 20px; }
.carousel-arrow:hover { background: var(--white); transform: translateY(-50%) scale(1.06); }
.carousel-arrow.prev { left: 18px; }
.carousel-arrow.next { right: 18px; }
.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 100px;
  background: rgba(248,247,242,0.5);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.carousel-dots button.active { width: 26px; background: var(--coral); }

@media (max-width: 640px) {
  .carousel-slide { aspect-ratio: 4 / 3; }
  .carousel-arrow { width: 38px; height: 38px; }
  .carousel-arrow.prev { left: 10px; }
  .carousel-arrow.next { right: 10px; }
}

/* ---------- intro / about ---------- */
.about-section {
  background: var(--white);
  padding: 90px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-grid h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); color: var(--dark); margin-bottom: 20px; }
.about-grid p { color: rgba(43,51,48,0.72); font-size: 1.02rem; }
.about-facts {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
.about-facts div {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 0.95rem;
}
.about-facts strong { color: var(--dark); min-width: 120px; }

/* ---------- specialisaties ---------- */
.specialisaties-section { padding: 90px 0; }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.spec-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  padding: 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.spec-thumb {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  margin-bottom: 18px;
  background: var(--cream);
}
.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(46,56,51,0.08);
}
.spec-num {
  position: absolute;
  top: 40px;
  left: 40px;
  background: rgba(248,247,242,0.92);
  color: var(--coral);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 4px 11px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(42,53,54,0.12);
}
.spec-card h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: 10px; }
.spec-card p { font-size: 0.9rem; color: rgba(43,51,48,0.68); margin: 0; }

@media (max-width: 960px) {
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- team ---------- */
.team-section {
  background: var(--dark);
  color: var(--cream);
  padding: 90px 0;
}
.team-section .section-head h2 { color: var(--cream); }
.team-section .section-head p { color: rgba(251,248,244,0.68); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: rgba(251,248,244,0.05);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--dark-deep);
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-body { padding: 26px 28px 30px; }
.team-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 4px; }
.team-role { color: var(--coral-light); font-size: 0.85rem; margin-bottom: 14px; }
.team-card p.bio {
  font-size: 0.9rem;
  color: rgba(251,248,244,0.75);
  margin-bottom: 16px;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.team-tags span {
  font-size: 0.76rem;
  border: 1px solid var(--line);
  padding: 5px 11px;
  border-radius: 100px;
  color: rgba(251,248,244,0.85);
}

/* ---------- contact ---------- */
.contact-section { padding: 90px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  padding: 36px;
}
.contact-card h3 { color: var(--dark); font-size: 1.2rem; margin-bottom: 20px; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.contact-list li { display: flex; gap: 12px; font-size: 0.95rem; }
.contact-list li b { color: var(--dark); min-width: 90px; }
.review-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  color: var(--coral);
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.15s ease;
}
.review-link:hover { opacity: 0.75; }
.review-link svg { width: 18px; height: 18px; fill: var(--coral); flex-shrink: 0; }
.map-embed {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  min-height: 260px;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 260px; border: 0; }

/* ---------- football page hero ---------- */
.page-hero {
  background: var(--dark);
  color: var(--cream);
  padding: 70px 0 60px;
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero-kicker {
  font-size: 0.95rem;
  color: rgba(251,248,244,0.65);
  margin: 0 0 14px;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.page-hero p { max-width: 540px; margin: 18px auto 0; color: rgba(251,248,244,0.8); }
.page-hero-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.page-hero-content { flex: 1 1 auto; min-width: 0; }
.page-hero-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  flex-shrink: 0;
}

.injury-list { padding: 70px 0; }

.injury-block {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  overflow: hidden;
}
.injury-block summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.injury-block summary::-webkit-details-marker { display: none; }
.injury-summary-text { display: flex; flex-direction: column; gap: 4px; }
.injury-eyebrow {
  color: var(--coral);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.injury-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dark);
}
.injury-toggle {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.injury-toggle::before,
.injury-toggle::after {
  content: "";
  position: absolute;
  background: var(--coral);
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.injury-toggle::before { width: 22px; height: 2px; top: 10px; left: 0; }
.injury-toggle::after { width: 2px; height: 22px; top: 0; left: 10px; }
details[open] .injury-toggle::after { transform: rotate(90deg); opacity: 0; }

.injury-content {
  padding: 0 32px 36px;
  border-top: 1px solid var(--line-dark);
}
.injury-intro { color: rgba(43,51,48,0.7); font-size: 0.95rem; max-width: 680px; margin: 22px 0 28px; }

.video-list { display: grid; gap: 32px; }
.video-item {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 24px;
  align-items: center;
}
.video-slot {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--dark-deep);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-slot iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-placeholder {
  color: rgba(251,248,244,0.55);
  font-size: 0.75rem;
  text-align: center;
  padding: 12px;
}
.video-info { padding-top: 4px; }
.video-num {
  display: inline-block;
  font-family: var(--font-display);
  color: var(--coral);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.video-info p { color: rgba(43,51,48,0.75); font-size: 0.94rem; margin: 0; }
.video-reps {
  display: block;
  margin-top: 8px;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .video-item { grid-template-columns: 1fr; gap: 12px; }
  .injury-block summary { padding: 20px 22px; }
  .injury-content { padding: 0 22px 28px; }
  .page-hero-row { flex-direction: column; gap: 20px; }
  .page-hero-logo { width: 90px; height: 90px; }
}

/* ---------- footer ---------- */
footer {
  background: var(--dark);
  color: rgba(251,248,244,0.75);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.footer-grid h4 {
  font-family: var(--font-display);
  color: var(--coral-light);
  font-weight: 500;
  margin-bottom: 14px;
  font-size: 1rem;
}
.footer-grid p, .footer-grid a { font-size: 0.9rem; opacity: 0.85; display: block; margin-bottom: 8px; }
.footer-bottom {
  padding-top: 24px;
  font-size: 0.8rem;
  opacity: 0.55;
  text-align: center;
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  nav.main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    z-index: 49;
  }
  nav.main-nav.open { max-height: 400px; }
  nav.main-nav a {
    padding: 16px 32px;
    border-bottom: 1px solid var(--line-dark);
    opacity: 1;
  }
  .nav-cta { border-radius: 0; text-align: center; }
  .nav-toggle { display: flex; }
  .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .spec-grid, .team-grid { grid-template-columns: 1fr; }
  .header-social {
    justify-content: center;
    padding: 16px 32px;
    gap: 16px;
    border-bottom: 1px solid var(--line-dark);
  }
  nav.main-nav .header-social a { padding: 0; border-bottom: 0; }
}

