/* ===========================================================
   Doesjka Sports — Personal Training Amstelveen
   =========================================================== */

:root {
  /* ---- Palet "Rose & Copper" ---- */
  --rosewood: #7B454B;
  --rose:     #B86F68;
  --copper:   #C79578;
  --blush:    #E7C9B8;
  --ivory:    #F3E7DF;

  --color-rosewood:       #7B454B;
  --color-burnished-rose: #B86F68;
  --color-soft-copper:    #C79578;
  --color-blush-linen:    #E7C9B8;
  --color-petal-ivory:    #F3E7DF;

  /* ---- Semantische tekstkleuren ---- */
  --color-text-on-dark-primary:   #F3E7DF;
  --color-text-on-dark-secondary: #D2C6C1;
  --color-text-on-dark-accent:    #C79578;
  --color-text-on-light-primary:  #2B1C1C;
  --color-text-on-light-heading:  #7B454B;
  --color-text-on-light-muted:    #5E4A48;

  /* ---- Typografie ---- */
  --font-display: "Newsreader", Georgia, serif;
  --font-body:    "Manrope", Arial, sans-serif;

  --black: #0e0d0c;
  --black-2: #161412;
  --black-3: #1d1a17;
  --cream: #F3E7DF;
  --cream-2: #E7C9B8;
  --gold: #C79578;
  --gold-light: #D9AE93;
  --gold-dark: #7B454B;
  --text: #2B1C1C;
  --text-muted: #5E4A48;
  --text-light: #b8b1a6;
  --white: #ffffff;
  --border-dark: rgba(255, 255, 255, 0.10);
  --border-light: rgba(123, 69, 75, 0.14);

  --serif: var(--font-display);
  --sans: var(--font-body);
  --script: var(--font-display);

  --maxw: 1200px;
  --radius: 4px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}
.btn-gold { background: var(--gold); color: #111; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.35); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn-outline-dark { background: transparent; border-color: rgba(0,0,0,0.2); color: var(--text); }
.btn-outline-dark:hover { background: rgba(0,0,0,0.05); }

/* ===========================================================
   Header
   =========================================================== */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 92px;
}
/* Mid-size desktops (1081–1229px): compact nav so logo, menu and CTA never touch */
@media (min-width: 1081px) and (max-width: 1229px) {
  .header-inner { gap: 18px; }
  .main-nav ul { gap: 16px; }
  .main-nav a { font-size: 11.5px; letter-spacing: 0.06em; }
  .logo-img { height: 44px; }
  .header-cta .btn { padding: 12px 16px; font-size: 12px; }
}
/* Below 1081px the 7-item menu can't fit next to logo + CTA: use the burger menu */
@media (max-width: 1080px) {
  .main-nav {
    position: absolute;
    top: 92px; left: 0; right: 0;
    background: var(--black-2);
    border-top: 1px solid var(--border-dark);
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .main-nav.open { max-height: 420px; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 14px 24px; }
  .main-nav li { width: 100%; border-bottom: 1px solid var(--border-dark); }
  .main-nav a { display: block; padding: 14px 0; }
  .main-nav a.active::after { display: none; }
  .header-cta .nav-toggle { display: block; }
}
.logo { color: #fff; }
.logo .logo-name {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.14em;
  font-weight: 600;
}
.logo .logo-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-top: 2px;
  padding-left: 2px;
}

.main-nav ul { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -10px;
  height: 2px; background: var(--gold);
}
.has-dropdown > a::after { content: " ⌄"; }

.header-cta { display: flex; align-items: center; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 30px; height: 22px; position: relative;
}
.nav-toggle span {
  position: absolute; left: 0; height: 2px; width: 100%;
  background: #fff; transition: 0.3s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #141210;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Static hero photo — keep Doesjka's head/upper body in frame */
.hero-photo { object-position: 50% 22%; }
@media (max-width: 720px) {
  /* Mobile: lighter, vertical scrim so Doesjka stays clear up top,
     darker toward the bottom where the text + buttons sit */
  .hero-photo { object-position: 50% 24%; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(10,9,8,0.18) 0%, rgba(10,9,8,0.22) 40%, rgba(10,9,8,0.62) 74%, rgba(10,9,8,0.85) 100%);
  }
  .hero h1, .hero .hero-sub, .hero p.lead {
    text-shadow: 0 2px 16px rgba(0,0,0,0.65);
  }
  /* Doesjka's face fully visible: hide the lead text and push heading down */
  .hero p.lead { display: none; }
  .hero .hero-inner { padding-top: 325px; padding-bottom: 44px; }
  .hero .hero-sub { margin-bottom: 22px; }
  .hero .hero-inner h1 { margin-bottom: 12px; font-size: 37px; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(10,9,8,0.92) 0%, rgba(10,9,8,0.58) 46%, rgba(10,9,8,0.12) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 130px 0 70px; max-width: 640px; }
.hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 16px;
}
.hero h1 .accent { color: var(--gold); }
.hero-sub {
  font-family: var(--script);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.15;
  color: rgba(255,255,255,0.95);
  margin: 0 0 30px;
}
.hero-sub .accent { color: var(--gold); }
.hero p.lead {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item svg { width: 22px; height: 22px; stroke: var(--gold); flex-shrink: 0; }
.trust-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.35;
}

/* ===========================================================
   Pillars / Focus section
   =========================================================== */
.section { padding: 96px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 17px; }

.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.pillar {
  text-align: center;
  padding: 16px 18px;
  position: relative;
}
.pillar:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 14%; bottom: 14%;
  width: 1px; background: var(--border-light);
}
.pillar-icon {
  width: 58px; height: 58px;
  margin: 0 auto 22px;
}
.pillar-icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; }
.pillar h3 { font-size: 19px; margin-bottom: 14px; }
.pillar p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ===========================================================
   Over Doesjka
   =========================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; padding-bottom: 46px; padding-right: 46px; }
.about-img-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-img-inset {
  position: absolute;
  right: 0; bottom: 0;
  width: 52%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--cream);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.about-text h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 22px; }
.about-text p { color: var(--text-muted); font-size: 16px; margin-bottom: 18px; max-width: 460px; }
.about-text .btn { margin-top: 12px; }

/* ===========================================================
   Approach (dark)
   =========================================================== */
.approach { background: var(--black); color: #fff; padding: 0; }
.approach-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 90px;
}
.approach-text .eyebrow { color: var(--gold); }
.approach-text h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 24px; }
.approach-text > p {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  max-width: 460px;
  margin-bottom: 30px;
}
.check-list { margin-bottom: 38px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 9px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.88);
}
.check-list li svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }

.approach-visual { position: relative; }
.approach-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.55)),
    url("../img/lifestyle.jpg") 42% center / cover no-repeat,
    var(--black-3);
  border-radius: var(--radius);
}
.quote-card {
  position: absolute;
  right: -10px;
  bottom: 36px;
  background: var(--black-2);
  border: 1px solid var(--border-dark);
  border-left: 3px solid var(--gold);
  padding: 30px 34px;
  max-width: 300px;
  border-radius: var(--radius);
}
.quote-card .qmark { font-family: var(--serif); font-size: 56px; color: var(--gold); line-height: 0.6; display: block; height: 26px; }
.quote-card p {
  font-family: var(--script);
  font-style: italic;
  font-size: 23px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 14px;
}
.quote-card cite { font-family: var(--script); font-style: italic; color: var(--gold); font-size: 18px; }

/* Results */
.results { border-top: 1px solid var(--border-dark); padding: 90px 0 100px; }
.results h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 8px; }
.results > .container > p.sub { color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.results-grid {
  display: grid;
  grid-template-columns: 2.7fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.results-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.insta-card {
  background: var(--black-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.insta-card .reel {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  object-fit: cover;
  display: block;
}
.insta-meta { padding: 22px 22px 24px; }
.insta-meta svg { width: 24px; height: 24px; stroke: var(--gold); margin-bottom: 12px; }
.insta-meta p { font-size: 13.5px; color: rgba(255,255,255,0.78); margin-bottom: 18px; line-height: 1.5; }
.insta-meta .btn { padding: 12px 20px; font-size: 12px; }

/* ===========================================================
   Blog
   =========================================================== */
.blog { background: var(--cream); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(0,0,0,0.10); }
.blog-thumb { display: block; overflow: hidden; aspect-ratio: 3 / 2; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 26px 26px 30px; }
.blog-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 14px;
}
.blog-body h3 { font-size: 20px; line-height: 1.3; margin-bottom: 12px; }
.blog-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.blog-link {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}
.blog-link:hover { color: var(--gold-dark); }

/* ===========================================================
   Testimonials
   =========================================================== */
.testimonials { background: var(--cream-2); }
.testimonials .section-head h2 { font-size: clamp(28px, 3.6vw, 40px); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi-card {
  background: var(--white);
  padding: 34px 30px;
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(0,0,0,0.05);
}
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 18px; font-size: 15px; }
.testi-card p { font-size: 15px; color: #3a3630; line-height: 1.65; margin-bottom: 20px; }
.testi-card cite { font-style: normal; font-weight: 500; color: var(--text-muted); font-size: 14px; }

/* ===========================================================
   CTA band
   =========================================================== */
.cta-band {
  background: var(--black-2);
  color: #fff;
  padding: 60px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,0.65); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===========================================================
   Footer
   =========================================================== */
.site-footer { background: var(--black); color: rgba(255,255,255,0.6); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .logo-name { font-family: var(--serif); font-size: 24px; letter-spacing: 0.14em; color: #fff; }
.footer-brand .logo-sub { display: block; font-size: 10px; letter-spacing: 0.42em; color: var(--gold); margin: 2px 0 18px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 260px; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; font-size: 14px; }
.footer-contact svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-socials { display: flex; gap: 12px; margin-top: 18px; }
.footer-socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  transition: all 0.2s;
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); }
.footer-socials a:hover svg { stroke: #111; }
.footer-socials svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.8); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--gold); }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
  .pillars { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .pillar::after { display: none; }
  .approach-top { grid-template-columns: 1fr; gap: 50px; }
  .approach-visual { max-width: 460px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { max-width: 460px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 92px; left: 0; right: 0;
    background: var(--black-2);
    border-top: 1px solid var(--border-dark);
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .main-nav.open { max-height: 420px; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 14px 24px; }
  .main-nav li { width: 100%; border-bottom: 1px solid var(--border-dark); }
  .main-nav a { display: block; padding: 14px 0; }
  .main-nav a.active::after { display: none; }
  .nav-toggle { display: block; }
  .header-cta .btn { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .quote-card { position: static; max-width: none; margin-top: -40px; }
  .hero { min-height: auto; }
  /* Make the hero eyebrow pop on mobile — bold gold label with accent rule */
  .hero .eyebrow {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold-light);
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.55);
  }
  .hero .eyebrow::after {
    content: "";
    display: block;
    width: 46px;
    height: 3px;
    margin-top: 11px;
    background: var(--gold);
    border-radius: 2px;
  }
}

/* ===========================================================
   INNER PAGES — shared components
   =========================================================== */

/* Page banner */
.page-banner {
  position: relative;
  color: #fff;
  padding: 168px 0 70px;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}
.page-banner .pb-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-banner::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,9,8,0.82), rgba(10,9,8,0.72));
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 16px; }
.page-banner p { color: rgba(255,255,255,0.82); font-size: 18px; max-width: 600px; margin: 0 auto; }
.breadcrumb { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold); }

/* Intro / lead block */
.lead-block { text-align: center; max-width: 760px; margin: 0 auto; }
.lead-block h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 20px; }
.lead-block p { color: var(--text-muted); font-size: 17px; margin-bottom: 16px; }

/* Service rows (alternating) */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}
.service-row:last-child { margin-bottom: 0; }
.service-row.reverse .service-media { order: 2; }
.service-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0,0,0,0.12);
}
.service-info .eyebrow { margin-bottom: 12px; }
.service-info h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }
.service-info > p { color: var(--text-muted); font-size: 16px; margin-bottom: 22px; }
.service-info .check-list li { color: var(--text); }
.service-info .check-list svg { stroke: var(--gold-dark); }
.service-info .btn { margin-top: 26px; }

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 60px; height: 60px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold);
}
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
  transform: translateY(-8px);
}
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #111;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  padding: 6px 16px; border-radius: 20px;
}
.price-card h3 { font-size: 22px; margin-bottom: 8px; }
.price-card .price-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 22px; min-height: 40px; }
.price-amount { font-family: var(--serif); font-size: 44px; color: var(--text); margin-bottom: 4px; }
.price-amount span { font-family: var(--sans); font-size: 15px; color: var(--text-muted); }
.price-card .price-per { font-size: 13px; color: var(--text-muted); margin-bottom: 26px; }
.price-features { margin-bottom: 30px; flex: 1; }
.price-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 14.5px; color: #3a3630;
  border-bottom: 1px solid var(--border-light);
}
.price-features svg { width: 16px; height: 16px; stroke: var(--gold-dark); flex-shrink: 0; margin-top: 3px; }
.price-card .btn { width: 100%; justify-content: center; }

/* FAQ accordion */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  font-family: var(--serif);
  font-size: 19px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--gold-dark);
  font-size: 26px;
  font-family: var(--sans);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { padding: 0 4px 24px; color: var(--text-muted); font-size: 15px; line-height: 1.65; max-width: 700px; }

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-num { font-family: var(--serif); font-size: clamp(38px, 5vw, 54px); color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: var(--text-muted); letter-spacing: 0.04em; }
.stats-row.on-dark .stat-label { color: rgba(255,255,255,0.7); }

/* Transformations gallery */
.transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.transform-card { border-radius: var(--radius); overflow: hidden; position: relative; }
.transform-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.transform-card .tc-tag {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(14,13,12,0.78); color: #fff;
  font-size: 12px; letter-spacing: 0.06em;
  padding: 7px 13px; border-radius: 20px;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.contact-form { background: var(--white); padding: 40px; border-radius: 8px; box-shadow: 0 18px 50px rgba(0,0,0,0.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 7px; letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  padding: 13px 15px;
  border: 1px solid #d8d2c8;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 12.5px; color: var(--text-muted); margin-top: 14px; text-align: center; }

.contact-info h3 { font-size: 24px; margin-bottom: 10px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 26px; }
.contact-info ul li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-info svg { width: 20px; height: 20px; stroke: var(--gold-dark); flex-shrink: 0; margin-top: 3px; }
.contact-info .ci-label { font-weight: 500; font-size: 15px; display: block; margin-bottom: 2px; }
.contact-info .ci-val { color: var(--text-muted); font-size: 14px; }
.contact-info .map {
  margin-top: 8px;
  height: 200px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2a2622, #15120f);
  display: grid; place-items: center;
  color: var(--text-light); font-size: 14px;
}

/* Newsletter */
.newsletter { background: var(--cream-2); text-align: center; }
.newsletter h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 12px; }
.newsletter p { color: var(--text-muted); margin-bottom: 28px; }
.newsletter form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter input {
  flex: 1; font-family: var(--sans); font-size: 15px;
  padding: 14px 16px; border: 1px solid #d8d2c8; border-radius: var(--radius); background: #fff;
}
.newsletter input:focus { outline: none; border-color: var(--gold); }

/* Section tints */
.tint { background: var(--cream-2); }
.dark-section { background: var(--black); color: #fff; }
.dark-section .section-head h2 { color: #fff; }
.dark-section .section-head p { color: rgba(255,255,255,0.65); }

@media (max-width: 980px) {
  .service-row { grid-template-columns: 1fr; gap: 30px; }
  .service-row.reverse .service-media { order: 0; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .transform-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .transform-grid { grid-template-columns: 1fr; }
  .newsletter form { flex-direction: column; }
}

/* ===========================================================
   ARTICLE / LEGAL prose
   =========================================================== */
.page-banner.compact { padding: 150px 0 56px; }
.article-meta {
  display: flex; justify-content: center; gap: 16px; align-items: center;
  margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.7);
}
.article-meta .blog-tag { color: var(--gold); margin: 0; }
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.article-body { max-width: 760px; margin: 0 auto; }
.article-body > p { font-size: 17px; color: #3a3630; line-height: 1.75; margin-bottom: 22px; }
.article-body .intro { font-size: 20px; color: var(--text); line-height: 1.6; margin-bottom: 30px; }
.article-body h2 { font-size: 28px; margin: 44px 0 16px; }
.article-body h3 { font-size: 21px; margin: 32px 0 12px; }
.article-body ul, .article-body ol { margin: 0 0 22px 0; padding-left: 0; }
.article-body ul li, .article-body ol li {
  position: relative; padding-left: 30px; margin-bottom: 12px;
  font-size: 16.5px; color: #3a3630; line-height: 1.6;
}
.article-body ul li::before {
  content: ""; position: absolute; left: 4px; top: 9px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}
.article-body ol { counter-reset: item; }
.article-body ol li { counter-increment: item; }
.article-body ol li::before {
  content: counter(item); position: absolute; left: 0; top: 0;
  font-family: var(--serif); color: var(--gold-dark); font-weight: 600;
}
.article-body blockquote {
  border-left: 3px solid var(--gold); padding: 6px 0 6px 26px; margin: 30px 0;
  font-family: var(--script); font-style: italic; font-size: 24px; color: var(--text); line-height: 1.4;
}
.article-body strong { color: var(--text); font-weight: 500; }

.author-box {
  display: flex; align-items: center; gap: 20px;
  max-width: 760px; margin: 50px auto 0;
  padding: 28px; background: var(--cream-2); border-radius: 8px;
}
.author-box img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-box h4 { font-size: 18px; margin-bottom: 4px; }
.author-box p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

.back-link { display: inline-block; margin-bottom: 10px; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-dark); }
.back-link:hover { color: var(--gold); }

/* ===========================================================
   SHOP / PRODUCTS (Beyuna)
   =========================================================== */
.usp-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.usp { display: flex; align-items: center; gap: 12px; justify-content: center; }
.usp svg { width: 26px; height: 26px; stroke: var(--gold); flex-shrink: 0; }
.usp span { font-size: 14px; font-weight: 500; letter-spacing: 0.02em; }

.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(0,0,0,0.10); }
.product-thumb { aspect-ratio: 1/1; background: var(--ivory); overflow: hidden; position: relative; }
.product-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 26px; }
.product-flag {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: #111;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  padding: 5px 12px; border-radius: 20px;
}
.product-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; margin-bottom: 8px; }
.product-body h3 { font-size: 21px; margin-bottom: 8px; }
.product-desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; flex: 1; margin-bottom: 14px; }
.product-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.badge-pill {
  font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold-dark); border: 1px solid #e0d6c4; border-radius: 20px;
  padding: 4px 10px;
}
.product-price { font-family: var(--serif); font-size: 26px; color: var(--text); }
.product-price small { font-family: var(--sans); font-size: 12px; color: var(--text-muted); display: block; font-weight: 400; letter-spacing: 0.02em; }
.product-actions { display: flex; gap: 10px; margin-top: 18px; }
.product-actions .btn { flex: 1; justify-content: center; padding: 12px 10px; font-size: 11px; }

.usp-bar.on-dark .usp span { color: #fff; }

@media (max-width: 980px) {
  .usp-bar { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .usp-bar { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   VIDEO TESTIMONIAL
   =========================================================== */
.vtesti-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.vtesti-video {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.vtesti-video video, .vtesti-video img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vtesti-info .quote-mark { font-family: var(--serif); font-size: 60px; color: var(--gold); line-height: 0.4; display: block; height: 30px; }
.vtesti-info blockquote {
  font-family: var(--script); font-style: italic;
  font-size: clamp(24px, 3vw, 34px); line-height: 1.35; color: #fff; margin-bottom: 24px;
}
.vtesti-info cite { font-style: normal; color: var(--gold); font-size: 15px; letter-spacing: 0.04em; display: block; margin-bottom: 28px; }
.vtesti-info cite strong { display:block; font-family: var(--serif); font-size: 19px; color:#fff; font-style: normal; margin-bottom: 2px; }
@media (max-width: 820px) {
  .vtesti-grid { grid-template-columns: 1fr; gap: 32px; justify-items: center; text-align: center; }
  .vtesti-video { max-width: 460px; }
  .vtesti-info cite { margin-left:auto;margin-right:auto; }
}

/* Subtitle overlay for testimonial video */
.vtesti-video { position: relative; }
.vtesti-cap {
  position: absolute;
  left: 50%; bottom: 14%;
  transform: translateX(-50%);
  width: 88%;
  text-align: center;
  font-size: 16px;
  line-height: 1.35;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
}
.vtesti-cap.show { opacity: 1; }
.vtesti-cap span {
  background: rgba(0,0,0,0.55);
  padding: 3px 10px;
  border-radius: 5px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Real Doesjka logo image */
.logo-img { height: 52px; width: auto; display: block; }
.footer-brand .footer-logo { height: 54px; width: auto; margin-bottom: 18px; }
@media (max-width: 720px) { .logo-img { height: 44px; } }

/* Personal training video showcase */
.pt-video-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  max-width: 960px;
  margin: 0 auto;
}
.pt-video-wrap video, .pt-video-wrap img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }

/* Calendly booking on contact page */
.contact-booking {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
}
.contact-booking .calendly-inline-widget {
  border-radius: 6px;
  overflow: hidden;
  min-width: 280px;
}

/* Floating WhatsApp button (mobile) */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(0,0,0,0.28);
  z-index: 300;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
@media (max-width: 900px) { .wa-float { display: flex; } }

/* Instagram card without reel video (homepage results) */
.insta-card.no-reel { justify-content: center; }
.insta-card.no-reel .insta-meta { padding: 32px 26px; }

/* Reel with burned-in style Dutch subtitle overlay */
.reel-wrap { position: relative; }
.insta-card .reel-wrap { flex: 1 1 auto; min-height: 0; }
.insta-card .reel-sub { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-cap {
  position: absolute; left: 7%; right: 7%; bottom: 8%;
  text-align: center; font-size: 13px; line-height: 1.3; font-weight: 500;
  color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.9);
  pointer-events: none; opacity: 0; transition: opacity 0.15s; z-index: 2;
}
.reel-cap.show { opacity: 1; }
.reel-cap span {
  background: rgba(0,0,0,0.62); padding: 3px 8px; border-radius: 5px;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}

/* Language switcher (bilingual) */
.lang-switch{display:inline-flex;align-items:center;gap:6px;margin-right:14px;padding:8px 12px;border:1px solid rgba(255,255,255,0.32);border-radius:var(--radius);font-size:12px;letter-spacing:.08em;font-weight:500;color:rgba(255,255,255,0.92);transition:.2s;white-space:nowrap}
.lang-switch:hover{border-color:var(--gold);color:var(--gold)}
.lang-switch .flag{font-size:15px;line-height:1}
@media(max-width:720px){.lang-switch{margin-right:8px;padding:7px 9px}}

/* ===========================================================
   PALET & TYPOGRAFIE — "Rose & Copper" + Newsreader/Manrope
   (uitgerold 6 aug 2026; herstelpunt: ~/website-backup/2026-08-06-goud)
   =========================================================== */
/* ===========================================================
   Doesjka Sports — THEMA "Rose & Copper"  (preview)
   Laadt ná styles.css en vervangt uitsluitend de champagne/
   goudbeige ondersteunende kleuren. Typografie, spacing,
   layout, content en de donkere basis blijven ongewijzigd.
   =========================================================== */

/* ===========================================================
   1. PRIMAIRE CTA'S  — Burnished Rose, hover Rosewood
   =========================================================== */
.btn-gold {
  background: var(--rose);
  color: #111;                   /* contrast 4.96:1 — WCAG AA */
}
.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--rosewood);
  color: #fff;                   /* contrast 7.5:1 — WCAG AAA */
  transform: translateY(-2px);
}
.btn-gold:active { background: var(--rosewood); color: #fff; transform: translateY(0); }
.btn-gold[disabled], .btn-gold:disabled {
  background: var(--blush); color: rgba(17,17,17,0.45);
  cursor: not-allowed; transform: none;
}

/* ===========================================================
   2. ACTIEVE / GEVULDE ELEMENTEN — Burnished Rose
   =========================================================== */
.price-badge,
.product-flag        { background: var(--rose); color: #111; }
.price-card.featured { border-color: var(--rose); }
.footer-socials a:hover { background: var(--rose); border-color: var(--rose); }

/* ===========================================================
   3. FOCUS-STATES — zichtbaar en toegankelijk
   =========================================================== */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.newsletter input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(184, 111, 104, 0.18);
}
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

/* ===========================================================
   4. RESTERENDE HARDGECODEERDE BEIGE-TINTEN
   =========================================================== */
.form-group input,
.form-group select,
.form-group textarea,
.newsletter input    { border-color: rgba(123, 69, 75, 0.20); }   /* was #d8d2c8 */
.badge-pill          { border-color: var(--blush); }              /* was #e0d6c4 */


/* ===========================================================
   5. TYPOGRAFIE — Newsreader (display) + Manrope (functioneel)
   Het handschriftfont (Cormorant Garamond) vervalt; cursieve
   accenten gaan naar Newsreader Italic.
   =========================================================== */

/* ---- gewichten per rol (groottes ongewijzigd) ---- */
h1, h2, h3, h4        { font-family: var(--font-display); font-weight: 400; }
h2, h3                { font-weight: 500; }
body, p, li, td, th   { font-family: var(--font-body); font-weight: 400; }
.main-nav a,
.lang-switch          { font-family: var(--font-body); font-weight: 500; }
.btn                  { font-family: var(--font-body); font-weight: 600; }
.eyebrow, .blog-tag,
.price-badge, .product-flag,
.breadcrumb, .stat-label,
.form-group label     { font-family: var(--font-body); font-weight: 600; }
.form-group input, .form-group select,
.form-group textarea, .newsletter input,
.form-note, .form-error { font-family: var(--font-body); font-weight: 400; }

/* ---- editorial cursieve accenten → Newsreader Italic ---- */
.hero-sub,
.quote-card p, .quote-card cite,
.vtesti-info blockquote,
.testi-card cite,
.article-body blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

/* ===========================================================
   6. TEKSTKLEUREN — semantisch per achtergrondcontext
   =========================================================== */

/* ---- LICHT: body, koppen, links ---- */
body                     { color: var(--color-text-on-light-primary); }
h1, h2, h3, h4           { color: var(--color-text-on-light-heading); }
.section-head p,
.lead-block p,
.pillar p, .blog-card p,
.price-desc, .price-per,
.form-note               { color: var(--color-text-on-light-muted); }
.article-body a,
.contact-info a,
.blog-link               { color: var(--color-rosewood); }
/* Hover op licht: tekst blijft Rosewood (WCAG AA op ivory, blush én wit),
   Burnished Rose komt terug als onderstreping — accent zonder contrastverlies. */
.article-body a:hover,
.contact-info a:hover,
.blog-link:hover {
  color: var(--color-rosewood);
  text-decoration: underline;
  text-decoration-color: var(--color-burnished-rose);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* ---- DONKER: primaire tekst en koppen ---- */
.hero, .approach, .dark-section, .cta-band, .site-footer,
.page-banner, .results   { color: var(--color-text-on-dark-primary); }
.hero h1, .hero h2,
.approach h2, .approach h3,
.dark-section h2, .dark-section h3,
.dark-section .section-head h2,
.cta-band h2, .page-banner h1,
.results h2,
.quote-card p,
.vtesti-info blockquote,
.vtesti-info cite strong,
.usp-bar.on-dark .usp span,
.footer-brand .logo-name,
.logo                    { color: var(--color-text-on-dark-primary); }

/* ---- DONKER: secundaire tekst ---- */
.hero p.lead,
.approach-text > p,
.check-list li,
.trust-item span,
.results > .container > p.sub,
.insta-meta p,
.cta-inner p,
.site-footer,
.page-banner p,
.breadcrumb a,
.stats-row.on-dark .stat-label,
.dark-section .section-head p,
.article-meta            { color: var(--color-text-on-dark-secondary); }

/* ---- DONKER: accenten + navigatie ---- */
.eyebrow,
.approach-text .eyebrow,
.hero h1 .accent         { color: var(--color-text-on-dark-accent); }
.main-nav a,
.lang-switch             { color: var(--color-text-on-dark-primary); }
.main-nav a:hover,
.main-nav a.active,
.lang-switch:hover       { color: var(--color-text-on-dark-accent); }
.main-nav a.active::after { background: var(--color-soft-copper); }
.site-footer a           { color: var(--color-text-on-dark-secondary); }
.site-footer a:hover     { color: var(--color-text-on-dark-accent); }

/* ---- HERO: subheadline in blush, benadrukt woord in copper ---- */
.hero-sub                { color: var(--color-blush-linen); }
.hero-sub .accent        { color: var(--color-soft-copper); }

/* ---- Zuiver wit alleen waar maximaal contrast nodig is
        (kleine tekst boven drukke fotografie/video) ---- */
.reel-cap, .vtesti-cap,
.transform-card .tc-tag  { color: #FFFFFF; }

/* ===========================================================
   7. KNOPPEN & STATES
   =========================================================== */
.btn-gold                { background: var(--color-burnished-rose); color: #1B1112; }
.btn-gold:hover,
.btn-gold:focus-visible  { background: var(--color-rosewood); color: var(--color-petal-ivory); }
.btn-gold:active         { background: var(--color-rosewood); color: var(--color-petal-ivory); }
.btn-outline             { color: var(--color-text-on-dark-primary); border-color: var(--color-rosewood); }
.btn-outline:hover       { border-color: var(--color-soft-copper); color: var(--color-soft-copper); background: rgba(199,149,120,0.08); }
.btn-outline-dark        { color: var(--color-rosewood); border-color: var(--color-rosewood); }
.btn-outline-dark:hover  { background: rgba(123,69,75,0.07); }

a:focus-visible, button:focus-visible,
.btn:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--color-soft-copper);
  outline-offset: 3px;
}
.form-group input:focus, .form-group select:focus,
.form-group textarea:focus, .newsletter input:focus {
  border-color: var(--color-soft-copper);
  box-shadow: 0 0 0 3px rgba(199,149,120,0.22);
}
::placeholder            { color: #8A7A76; opacity: 1; }
.form-error, .error      { color: #8E2F3A; font-family: var(--font-body); font-weight: 500; }

/* mobiele hero-eyebrow: ook Soft Copper (was de lichte variant) */
@media (max-width: 720px) {
  .hero .eyebrow { color: var(--color-soft-copper); }
  .hero .eyebrow::after { background: var(--color-soft-copper); }
}

/* ---- donkere secties: voorkom dat licht-context kleuren doorlekken
        (specificiteit moet .service-info > p verslaan) ---- */
.dark-section .eyebrow,
.approach .eyebrow,
.results .eyebrow,
.hero .eyebrow          { color: var(--color-text-on-dark-accent); }
.dark-section p,
.dark-section .service-info > p,
.approach .service-info > p,
.dark-section li        { color: var(--color-text-on-dark-secondary); }
.dark-section h3        { color: var(--color-text-on-dark-primary); }
