/* ============================================
   AKOSUA HEALING — DESIGN SYSTEM CSS v3.0
   Kleuren: #A0522D · #D4A373 · #0D9488 · #F9F6F0
   Lettertypen: Playfair Display · Manrope
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Manrope:wght@400;500;600;700&display=swap');

/* === TOKENS === */
:root {
  --primary:     #A0522D;
  --secondary:   #D4A373;
  --tertiary:    #0D9488;
  --neutral:     #F9F6F0;

  --p-900: #4A1E0A;
  --p-800: #6C3118;
  --p-700: #8B4420;
  --p-400: #C97E56;
  --p-200: #EBB898;
  --p-50:  #FDF4EF;

  --s-700: #B88A5A;
  --s-200: #E8D4B8;
  --s-50:  #F7F0E8;

  --t-800: #076058;
  --t-700: #0A7A6E;
  --t-400: #14B8AC;
  --t-50:  #E6F7F6;

  --n-900: #1C1916;
  --n-800: #3D3732;
  --n-600: #6B645E;
  --n-400: #A89F96;
  --n-200: #D5CCC0;
  --n-100: #EDE8DF;
  --n-50:  #F9F6F0;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Manrope', system-ui, sans-serif;

  --sh-sm: 0 1px 4px rgba(160,82,45,.08);
  --sh-md: 0 4px 16px rgba(160,82,45,.10);
  --sh-lg: 0 8px 32px rgba(160,82,45,.12);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); background: var(--n-50); color: var(--n-800); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
table { border-collapse: collapse; width: 100%; }

/* === NO ORPHANS === */
p { text-wrap: pretty; orphans: 3; widows: 3; }
h1, h2, h3, h4 { text-wrap: balance; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--n-900); line-height: 1.2; }
h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 700; letter-spacing: -.02em; line-height: 1.1; }
h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 600; letter-spacing: -.01em; }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 500; }
h4 { font-size: 18px; font-weight: 600; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
.eyebrow {
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--secondary); display: block; margin-bottom: 12px;
}
.lead { font-size: 18px; line-height: 1.75; color: var(--n-600); }

/* === LAYOUT === */
.wrap     { max-width: 1240px; margin: 0 auto; padding: 0 64px; }
.wrap--sm { max-width: 740px; }
.wrap--md { max-width: 980px; }
section.pad { padding: 80px 0; }
section.pad--xl { padding: 120px 0; }
.bg--sand  { background: var(--s-50); }
.bg--white { background: #fff; }
.bg--primary-soft { background: var(--p-50); }

/* === GRIDS === */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

/* === IMAGE FRAMES === */
.frame { border-radius: 24px; overflow: hidden; }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--portrait { aspect-ratio: 3/4; }
.frame--square   { aspect-ratio: 1; }
.frame--wide     { aspect-ratio: 4/3; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px;
  font-family: var(--sans); font-size: 15px; font-weight: 500; line-height: 1;
  border: none; text-decoration: none; white-space: nowrap;
  transition: background .15s ease-out, transform .15s ease-out, box-shadow .15s ease-out;
}
.btn:hover   { transform: translateY(-1px); box-shadow: var(--sh-md); }
.btn:active  { transform: translateY(0); box-shadow: none; }
.btn--primary  { background: var(--primary); color: #fff; }
.btn--primary:hover  { background: var(--p-700); }
.btn--teal     { background: var(--tertiary); color: #fff; }
.btn--teal:hover     { background: var(--t-700); }
.btn--outlined { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn--outlined:hover { background: var(--p-50); box-shadow: none; }
.btn--white    { background: #fff; color: var(--primary); }
.btn--white:hover    { background: var(--p-50); }
.btn--ghost    { background: transparent; color: var(--n-600); }
.btn--ghost:hover    { color: var(--n-900); box-shadow: none; transform: none; }
.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--lg { padding: 16px 36px; font-size: 16px; }

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(249,246,240,.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--n-100);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px; height: 72px; gap: 32px;
}
.nav__logo img { height: 44px; width: auto; }
.wordmark {
  font-family: var(--serif); font-size: 17px; font-weight: 600;
  letter-spacing: 0.06em; color: var(--primary); white-space: nowrap;
}
.footer .wordmark { color: rgba(255,255,255,.9); font-size: 19px; display: block; margin-bottom: 16px; }
.nav__links {
  display: flex; align-items: center; gap: 36px;
  flex: 1; justify-content: center;
}
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--n-600);
  transition: color .15s; display: flex; align-items: center; gap: 6px;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] { color: var(--primary); }
.nav__links a[aria-current="page"] { font-weight: 600; }
.nav__badge {
  font-size: 10px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; background: var(--s-200);
  color: var(--s-700); padding: 2px 7px; border-radius: 999px;
}
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--n-800); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* === SITE HERO === */
.site-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: min(88vh, 760px); overflow: hidden;
}
.site-hero__content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 96px 64px;
}
.site-hero__title { margin-bottom: 20px; }
.site-hero__lead  { margin-bottom: 32px; max-width: 48ch; }
.site-hero__ctas  { display: flex; flex-wrap: wrap; gap: 12px; }
.site-hero__img   { overflow: hidden; }
.site-hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: 55% top; }

/* === PAGE HERO === */
.page-hero { background: var(--s-50); padding: 64px 0; border-bottom: 1px solid var(--n-100); }
.page-hero .eyebrow { color: var(--s-700); }
.page-hero__lead { max-width: 60ch; }

/* === DIVIDER ACCENT === */
.accent { width: 40px; height: 3px; background: var(--primary); border-radius: 2px; margin: 24px 0; }
.accent--teal { background: var(--tertiary); }
.accent--center { margin-left: auto; margin-right: auto; }

/* === CARDS === */
.card {
  background: #fff; border: 1px solid var(--n-100);
  border-radius: 16px; padding: 40px;
  box-shadow: var(--sh-sm);
  transition: transform .25s ease-in-out, box-shadow .25s ease-in-out;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.card__num   { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.card__title { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--n-900); margin-bottom: 12px; }
.card__body  { font-size: 16px; color: var(--n-600); line-height: 1.65; }

/* === STEP CARDS === */
.steps { display: flex; flex-direction: column; gap: 20px; }
.step {
  display: flex; gap: 24px;
  background: #fff; border: 1px solid var(--n-100);
  border-radius: 16px; padding: 32px;
  box-shadow: var(--sh-sm);
}
.step__num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 999px;
  background: var(--primary); color: #fff;
  font-family: var(--serif); font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step__body p { color: var(--n-600); }
.step__meta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-top: 12px; font-size: 14px; color: var(--n-400); }
.step__price { font-weight: 700; color: var(--primary); font-size: 16px; }

/* === PRICING CARDS === */
.pricing-card {
  background: #fff; border: 1px solid var(--n-100); border-radius: 16px;
  padding: 32px; display: flex; flex-direction: column;
  box-shadow: var(--sh-sm);
  transition: transform .25s ease-in-out, box-shadow .25s ease-in-out;
}
.pricing-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.pricing-card__emoji { font-size: 28px; line-height: 1; margin-bottom: 12px; }
.pricing-card__title { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--n-900); margin-bottom: 8px; }
.pricing-card__desc  { font-size: 15px; color: var(--n-600); line-height: 1.65; flex: 1; }
.pricing-card__foot  {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 1px solid var(--n-100); margin-top: 20px;
}
.pricing-card__dur   { font-size: 14px; color: var(--n-400); }
.pricing-card__price { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--primary); }

/* === CTA BAND === */
.cta-band {
  background: var(--primary); border-radius: 24px;
  padding: 80px 64px; text-align: center;
}
.cta-band h2, .cta-band h3 { color: #fff; margin-bottom: 12px; }
.cta-band .lead { color: rgba(255,255,255,.75); margin-bottom: 40px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta-band .btn--outlined:hover { background: rgba(255,255,255,.15); color: #fff; box-shadow: none; }

/* === 3-STEP CTA GRID === */
.three-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.three-step {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px; padding: 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.three-step__label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.three-step__title { font-family: var(--serif); font-size: 18px; color: #fff; line-height: 1.3; }
.three-step__desc  { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.6; flex: 1; }

/* === CHECK LIST === */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; gap: 12px; font-size: 16px; color: var(--n-600); line-height: 1.55; }
.check-list li::before { content: '—'; color: var(--primary); flex-shrink: 0; font-weight: 700; line-height: 1.55; }
.check-list--cross li::before { content: '×'; color: var(--n-400); }

/* === CONTACT === */
.contact-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--n-100);
}
.contact-item:last-child { border-bottom: none; }
.contact-item__icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 999px;
  background: var(--p-50); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.contact-item__label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--n-400); margin-bottom: 3px; }
.contact-item__value { font-size: 16px; font-weight: 500; color: var(--n-900); }
.contact-item__value a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.contact-item__value a:hover { color: var(--p-700); }

/* === HOURS TABLE === */
.hours-table td { padding: 10px 0; font-size: 15px; border-bottom: 1px solid var(--n-100); }
.hours-table td:last-child { text-align: right; font-weight: 500; }
.hours-table td:first-child { color: var(--n-600); }
.hours-table .closed td { color: var(--n-400); }

/* === BLOCKQUOTE === */
.bq { border-left: 3px solid var(--primary); padding-left: 24px; margin: 32px 0; }
.bq p { font-family: var(--serif); font-size: 22px; font-style: italic; color: var(--n-900); line-height: 1.5; margin: 0; }

/* === BADGE === */
.badge { display: inline-block; font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 999px; }
.badge--sand  { background: var(--s-200); color: var(--s-700); }
.badge--teal  { background: var(--t-50); color: var(--t-700); }

/* === TWO-COL VOOR/NIET-VOOR === */
.two-col-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.two-col-lists h3 { margin-bottom: 20px; }

/* === PLACEHOLDER === */
.placeholder-hero {
  min-height: 60vh; display: flex; align-items: center;
  justify-content: center; text-align: center;
  padding: 120px 64px;
}
.placeholder-icon { font-size: 64px; margin-bottom: 24px; }

/* === FOOTER === */
.footer { background: var(--n-900); color: #fff; padding: 80px 64px 40px; }
.footer__grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 64px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 24px;
}
.footer__logo img { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: .85; margin-bottom: 16px; }
.footer__tagline { font-family: var(--serif); font-style: italic; font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.6; max-width: 22ch; }
.footer__col h4 { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.footer__col li + li { margin-top: 8px; }
.footer__col a { font-size: 15px; color: rgba(255,255,255,.65); transition: color .15s; }
.footer__col a:hover { color: #fff; }
.footer__col a.disabled { opacity: .3; pointer-events: none; cursor: default; }
.footer__contact p { font-size: 15px; color: rgba(255,255,255,.65); margin-bottom: 6px; }
.footer__contact p:last-child { margin-bottom: 0; }
.footer__contact a { color: rgba(255,255,255,.65); transition: color .15s; }
.footer__contact a:hover { color: #fff; }
.footer__hours td { padding: 6px 0; font-size: 14px; color: rgba(255,255,255,.6); border-bottom: 1px solid rgba(255,255,255,.07); }
.footer__hours td:last-child { text-align: right; color: rgba(255,255,255,.85); }
.footer__hours .closed td { opacity: .4; }
.footer__bottom { max-width: 1240px; margin: 0 auto; display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.35); }

/* === RESPONSIVE: 1024px === */
@media (max-width: 1024px) {
  .wrap { padding: 0 40px; }
  .nav  { padding: 0 40px; }
  .footer { padding: 64px 40px 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .site-hero__content { padding: 64px 40px; }
}

/* === RESPONSIVE: 768px === */
@media (max-width: 768px) {
  /* Nav */
  .nav__links, .nav__cta { display: none; }
  .nav { padding: 0 24px; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--n-50); border-bottom: 1px solid var(--n-100);
    padding: 24px; gap: 20px; z-index: 199;
  }
  .nav.is-open .nav__links a { font-size: 16px; color: var(--n-800); }
  .nav.is-open .nav__cta {
    display: block; margin: 0 24px 24px;
    text-align: center; width: calc(100% - 48px);
  }

  /* Hero */
  .site-hero { grid-template-columns: 1fr; min-height: auto; }
  .site-hero__img { aspect-ratio: 4/3; max-height: 400px; }
  .site-hero__content { padding: 48px 24px; }
  .site-hero__ctas { flex-direction: column; }
  .site-hero__ctas .btn { justify-content: center; }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 40px; }
  .three-steps { grid-template-columns: 1fr; }
  .two-col-lists { grid-template-columns: 1fr; }

  /* Page hero */
  .page-hero { padding: 40px 0; }

  /* Misc */
  .wrap { padding: 0 24px; }
  section.pad  { padding: 56px 0; }
  section.pad--xl { padding: 80px 0; }
  .cta-band { padding: 48px 24px; border-radius: 16px; }
  .footer { padding: 48px 24px 32px; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 6px; }
}

/* === RESPONSIVE: 480px === */
@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .btn { width: 100%; justify-content: center; }
  .btn--sm, .btn--ghost { width: auto; }
  .placeholder-hero { padding: 80px 24px; }
}
