/* Dagmar Voss - KOPP coaching Haarlem
   Mobile-first, calm, modern. */

:root {
  --ink: #1f2421;
  --ink-soft: #55605a;
  --ink-faint: #7c867f;
  --cream: #faf7f2;
  --cream-deep: #f3ede4;
  --surface: #ffffff;
  --line: #e6ded2;
  --green: #2a5b4e;
  --green-deep: #1d4239;
  --green-soft: #e8f0ec;
  --sand: #c98a5b;
  --sand-soft: #fbeee2;
  --wa: #0f7a40;
  --wa-deep: #0b5e31;

  --radius: 16px;
  --radius-lg: 26px;
  --shadow: 0 1px 2px rgba(31, 36, 33, .04), 0 8px 24px rgba(31, 36, 33, .06);
  --shadow-lg: 0 2px 4px rgba(31, 36, 33, .05), 0 18px 48px rgba(31, 36, 33, .1);

  --wrap: 1120px;
  --prose: 68ch;
  --pad: clamp(1.15rem, 5vw, 2rem);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Lora", Georgia, "Times New Roman", serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.05rem, 7.2vw, 3.55rem); }
h2 { font-size: clamp(1.55rem, 4.6vw, 2.35rem); }
h3 { font-size: clamp(1.18rem, 3.1vw, 1.42rem); }
p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green-deep); }

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

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.prose { max-width: var(--prose); }
.center { margin-inline: auto; text-align: center; }
.lead { font-size: clamp(1.06rem, 2.6vw, 1.22rem); color: var(--ink-soft); }
.eyebrow {
  font-size: .76rem; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--sand);
  margin: 0 0 .85rem; font-family: var(--sans);
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 12px 0;
}
.skip:focus { left: 0; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 242, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 4.25rem;
}
.brand {
  font-family: var(--serif); font-size: 1.16rem; font-weight: 600;
  letter-spacing: -.02em; color: var(--ink); text-decoration: none;
  display: flex; flex-direction: column; line-height: 1.12;
}
.brand span {
  font-family: var(--sans); font-size: .62rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--sand);
  margin-top: .22rem;
}

.nav-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: .55rem .95rem;
  font: inherit; font-size: .88rem; font-weight: 500; color: var(--ink);
  cursor: pointer;
}
.nav-toggle svg { width: 17px; height: 17px; }
.nav-toggle[aria-expanded="true"] .i-open,
.nav-toggle[aria-expanded="false"] .i-close { display: none; }

.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: .15rem;
}
.site-nav a:not(.btn) {
  display: block; padding: .78rem .9rem; border-radius: 12px;
  color: var(--ink); text-decoration: none; font-weight: 500;
}
.site-nav a:not(.btn):hover { background: var(--cream-deep); }
.site-nav a:not(.btn)[aria-current="page"] { color: var(--green); background: var(--green-soft); }

@media (max-width: 899px) {
  .site-nav {
    display: none;
    padding: .5rem 0 1.15rem;
    border-top: 1px solid var(--line);
  }
  .site-nav.is-open { display: block; }
  .site-nav .nav-cta { margin-top: .7rem; }
  .site-nav .btn { width: 100%; justify-content: center; }
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav { display: block !important; border: 0; padding: 0; }
  .site-nav ul { flex-direction: row; align-items: center; gap: .1rem; }
  .site-nav a:not(.btn) { padding: .5rem .72rem; font-size: .93rem; }
  .site-nav .nav-cta { margin-left: .55rem; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .92rem 1.5rem; border-radius: 999px;
  font-family: var(--sans); font-size: .97rem; font-weight: 600; line-height: 1;
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
  min-height: 48px;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--green); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--green-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--green); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface); border-color: var(--green); color: var(--green-deep); }
.btn-sm { padding: .62rem 1.05rem; font-size: .88rem; min-height: 40px; }
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: .7rem; }

/* ---------- sections ---------- */
section { padding-block: clamp(3rem, 8vw, 5.5rem); }
.sec-tight { padding-block: clamp(2.25rem, 5.5vw, 3.5rem); }
.sec-cream { background: var(--cream-deep); }
.sec-white { background: var(--surface); }
.sec-green { background: var(--green); color: #fff; }
.sec-green h2, .sec-green h3 { color: #fff; }
.sec-green .lead, .sec-green p { color: rgba(255, 255, 255, .84); }
.sec-green .eyebrow { color: #e9c19c; }
.sec-green a:not(.btn) { color: #fff; }

/* ---------- hero ---------- */
.hero { padding-block: clamp(2.5rem, 7vw, 5rem) clamp(2.75rem, 7vw, 5rem); }
.hero-grid { display: grid; gap: clamp(1.75rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.06fr .94fr; } }
.hero h1 { margin-bottom: .45em; }
.hero h1 em {
  font-style: normal; color: var(--green);
  background: linear-gradient(transparent 62%, var(--sand-soft) 62%);
}
.hero-media { position: relative; }
.hero-media img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3; object-fit: cover; width: 100%;
}
.hero-badge {
  position: absolute; left: clamp(.8rem, 3vw, 1.4rem); bottom: clamp(-.8rem, -2vw, -1.1rem);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: .7rem 1rem; box-shadow: var(--shadow);
  font-size: .82rem; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: .5rem;
}
.hero-badge svg { width: 16px; height: 16px; color: var(--green); flex: none; }

.trust {
  display: flex; flex-wrap: wrap; gap: .5rem .55rem;
  list-style: none; margin: 1.6rem 0 0; padding: 0;
}
.trust li {
  display: inline-flex; align-items: center; gap: .42rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: .42rem .85rem;
  font-size: .82rem; font-weight: 500; color: var(--ink-soft);
}
.trust svg { width: 14px; height: 14px; color: var(--green); flex: none; }

/* ---------- cards ---------- */
.grid { display: grid; gap: 1.1rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.3rem, 3.4vw, 1.85rem);
  display: flex; flex-direction: column; gap: .6rem;
}
.card-link { text-decoration: none; color: inherit; transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
.card-link:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: #d7cbb9; color: inherit; }
.card h3 { margin: 0; }
.card p { color: var(--ink-soft); font-size: .96rem; margin: 0; }
.card-more {
  margin-top: auto; padding-top: .55rem;
  font-size: .9rem; font-weight: 600; color: var(--green);
  display: inline-flex; align-items: center; gap: .35rem;
}
.card-more svg { width: 15px; height: 15px; transition: transform .16s ease; }
.card-link:hover .card-more svg { transform: translateX(3px); }
.card-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--green-soft); color: var(--green);
  display: grid; place-items: center; margin-bottom: .3rem;
}
.card-icon svg { width: 21px; height: 21px; }

/* ---------- symptom list ---------- */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
@media (min-width: 700px) { .checks { grid-template-columns: repeat(2, 1fr); column-gap: 1.6rem; } }
.checks li {
  position: relative; padding-left: 1.85rem;
  font-size: .98rem; color: var(--ink-soft);
}
.checks li::before {
  content: ""; position: absolute; left: 0; top: .58em;
  width: .5rem; height: .5rem; border-radius: 50%;
  background: var(--sand);
}
.sec-green .checks li { color: rgba(255, 255, 255, .86); }
.sec-green .checks li::before { background: #e9c19c; }

/* ---------- quote ---------- */
.quote {
  font-family: var(--serif); font-size: clamp(1.35rem, 3.9vw, 2rem);
  line-height: 1.32; letter-spacing: -.015em; margin: 0;
  text-wrap: balance;
}
.quote-cite {
  display: block; margin-top: 1.1rem;
  font-family: var(--sans); font-size: .87rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; font-style: normal;
  color: var(--sand);
}

/* ---------- price ---------- */
.price-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
}
.price-tag {
  font-family: var(--serif); font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 600; color: var(--green); line-height: 1; letter-spacing: -.02em;
}
.price-tag small { font-family: var(--sans); font-size: .9rem; font-weight: 500; color: var(--ink-faint); display: block; margin-top: .5rem; letter-spacing: 0; }
.price-note { font-size: .93rem; color: var(--ink-soft); margin-top: 1.1rem; }

/* ---------- details / faq / books ---------- */
.acc { border-top: 1px solid var(--line); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary {
  list-style: none; cursor: pointer;
  padding: 1.15rem 2.5rem 1.15rem 0; position: relative;
  font-weight: 600; font-size: 1.02rem; color: var(--ink);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: ""; position: absolute; right: .4rem; top: 50%;
  width: .58rem; height: .58rem; margin-top: -.42rem;
  border-right: 2px solid var(--green); border-bottom: 2px solid var(--green);
  transform: rotate(45deg); transition: transform .2s ease;
}
.acc details[open] summary::after { transform: rotate(-135deg); margin-top: -.18rem; }
.acc .acc-body { padding: 0 0 1.35rem; color: var(--ink-soft); font-size: .97rem; max-width: var(--prose); }
.acc .acc-body p { margin-bottom: .8em; }

.books { columns: 1; }
@media (min-width: 760px) { .books { columns: 2; column-gap: 2.4rem; } }
.books details { break-inside: avoid; }

/* ---------- contact ---------- */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
.contact-list a, .contact-list .row {
  display: flex; align-items: center; gap: .9rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1rem 1.15rem;
  text-decoration: none; color: var(--ink); font-weight: 500;
  transition: border-color .15s ease, transform .15s ease;
}
.contact-list a:hover { border-color: var(--green); transform: translateY(-1px); }
.contact-ico {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  background: var(--green-soft); color: var(--green);
  display: grid; place-items: center;
}
.contact-ico svg { width: 19px; height: 19px; }
.contact-list small { display: block; font-size: .78rem; font-weight: 500; color: var(--ink-faint); }

.map-frame {
  border: 0; width: 100%; height: 300px;
  border-radius: var(--radius); box-shadow: var(--shadow);
  background: var(--cream-deep);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--cream-deep); color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-block: clamp(2.5rem, 6vw, 3.75rem) 1.75rem;
  font-size: .93rem;
}
.site-footer h4 { color: var(--ink); font-family: var(--sans); font-size: .76rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; margin-bottom: .9rem; }
.site-footer a:not(.btn) { color: var(--ink-soft); text-decoration: none; }
.site-footer a:not(.btn):hover { color: var(--green-deep); text-decoration: underline; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; } }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer-brand { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); margin-bottom: .5rem; }
.socials { display: flex; gap: .6rem; margin-top: 1.1rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 11px;
  border: 1px solid var(--line); background: var(--surface);
  display: grid; place-items: center; color: var(--green);
  transition: border-color .15s ease, transform .15s ease;
}
.socials a:hover { border-color: var(--green); color: var(--green-deep); transform: translateY(-1px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: 2.25rem; padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .5rem 1.25rem;
  justify-content: space-between; font-size: .84rem; color: var(--ink-faint);
}

/* ---------- crisis note ---------- */
.crisis {
  background: var(--sand-soft); border: 1px solid #ecd6c0;
  border-radius: var(--radius); padding: 1.1rem 1.25rem;
  font-size: .9rem; color: #7a5334;
}
.crisis strong { color: #5f3f26; }

/* ---------- whatsapp ---------- */
.btn-wa { background: var(--wa); color: #fff; box-shadow: var(--shadow); }
.btn-wa:hover { background: var(--wa-deep); color: #fff; }
/* on the deep-green band a dark green button would disappear */
.sec-green .btn-wa { background: #25d366; color: #0a3d21; }
.sec-green .btn-wa:hover { background: #45de81; color: #0a3d21; }
.contact-ico.is-wa { background: #e4f7ea; color: var(--wa-deep); }

.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.75rem); bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 85; display: none; align-items: center; gap: .55rem;
  padding: .85rem 1.15rem; border-radius: 999px;
  background: var(--wa); color: #fff; text-decoration: none;
  font-weight: 600; font-size: .95rem;
  box-shadow: 0 6px 22px rgba(16, 92, 51, .28);
  transition: transform .15s ease, background .15s ease;
}
.wa-float:hover { background: var(--wa-deep); color: #fff; transform: translateY(-2px); }
.wa-float svg { width: 22px; height: 22px; flex: none; }
@media (min-width: 900px) { .wa-float { display: inline-flex; } }

/* ---------- mobile sticky CTA ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .45rem;
  padding: .6rem var(--pad) calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(250, 247, 242, .94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.mobile-cta .btn { width: 100%; padding-inline: .45rem; font-size: .85rem; gap: .35rem; }
.mobile-cta .btn svg { width: 17px; height: 17px; }
@media (max-width: 359px) { .mobile-cta .btn { font-size: .78rem; } }
@media (min-width: 900px) { .mobile-cta { display: none; } }
@media (max-width: 899px) { body { padding-bottom: 4.6rem; } }

/* ---------- misc ---------- */
.page-head { padding-block: clamp(2.25rem, 6vw, 3.75rem) clamp(1.5rem, 4vw, 2.5rem); }
.crumbs { font-size: .84rem; color: var(--ink-faint); margin-bottom: 1rem; }
.crumbs a { color: var(--ink-faint); text-decoration: none; }
.crumbs a:hover { color: var(--green); text-decoration: underline; }
.figure { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.figure img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.figure-portrait img { aspect-ratio: 4 / 5; }
.rule { border: 0; border-top: 1px solid var(--line); margin-block: clamp(2rem, 5vw, 3rem); }
.stack > * + * { margin-top: 1.5rem; }
.tight { margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
