/* ===========================================================
   Care2You Advies & Audit — stylesheet
   =========================================================== */

:root {
  --bordeaux: #7A4256;
  --bordeaux-light: #916474;
  --bordeaux-border: #A47E8C;
  --bordeaux-dark: #462631;
  --copper: #B6713F;
  --copper-hover: #C38A61;
  --green: #5C9B6F;
  --green-light: #9BC2A8;
  --cream: #FAF6F3;
  --card-light: #E8EDE9;
  --border-light: #DCE3E8;
  --text-dark: #2B2420;
  --text-body: #3A4A52;
  --text-on-dark: #D6E2E8;
  --muted: #8A8580;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Source Sans 3', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

.font-serif { font-family: Georgia, 'Times New Roman', serif; }

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

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- shared text styles ---------- */
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow.on-dark { color: var(--green-light); }
.eyebrow.on-light { color: var(--green); }

.section-title {
  font-family: Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px 0;
}
.section-sub {
  font-size: 18px;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 0 48px 0;
}

/* ---------- navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 243, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand img { height: 36px; width: auto; }
.nav-brand span {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--bordeaux);
}
.nav-brand span em { color: var(--copper); font-style: normal; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--bordeaux); }
.nav-cta {
  font-size: 15px;
  font-weight: 600;
  background: var(--bordeaux);
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: 100px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--bordeaux-light); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--bordeaux);
  padding: 8px;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 8px 24px 24px;
  border-top: 1px solid var(--border-light);
  background: var(--cream);
}
.nav-mobile a {
  font-size: 16px;
  font-weight: 500;
  color: var(--bordeaux);
}
.nav-mobile.open { display: flex; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- hero ---------- */
.hero {
  background: var(--bordeaux);
  position: relative;
  overflow: hidden;
  padding: 80px 0 120px;
}
.hero-ambient {
  position: absolute;
  top: -40px;
  right: -80px;
  width: 480px;
  opacity: 0.14;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero h1 {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  color: var(--cream);
  margin: 0 0 28px 0;
}
.hero h1 em { color: var(--copper); font-style: italic; }
.hero-desc {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
  color: var(--text-on-dark);
  font-weight: 300;
  margin: 0 0 20px 0;
}
.hero-tagline {
  font-size: 17px;
  font-weight: 600;
  color: var(--green-light);
  line-height: 1.5;
  margin: 0 0 32px 0;
  max-width: 600px;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-on-dark);
  border: 1px solid var(--bordeaux-border);
  border-radius: 100px;
  padding: 8px 18px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--copper);
  color: var(--bordeaux-dark);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--copper-hover); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-on-dark);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid var(--bordeaux-border);
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: var(--text-on-dark); }

/* ---------- intro ---------- */
.intro { background: var(--cream); padding: 96px 0 64px; }
.intro-content { max-width: 720px; }
.intro h2 { font-size: clamp(26px, 3.2vw, 34px); color: var(--bordeaux); }
.intro p {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--text-body);
  margin: 0 0 18px 0;
}

/* ---------- PDCA ---------- */
.pdca-section { background: var(--cream); padding: 64px 0 96px; }
.pdca-wrap { display: flex; flex-direction: column; align-items: center; margin: 32px 0 48px; }
.pdca-wrap svg { width: 230px; height: 230px; }
.pdca-arc { transition: stroke-dasharray 0.05s linear; }
.pdca-caption {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 720px) {
  .steps-grid { grid-template-columns: 1fr; }
}
.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 32px 36px;
  overflow: hidden;
}
.step-card .num {
  position: absolute;
  right: -4px;
  top: -20px;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 110px;
  color: var(--card-light);
  line-height: 1;
  user-select: none;
}
.step-card .stap {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--copper);
  margin-bottom: 10px;
}
.step-card h3 {
  position: relative;
  z-index: 1;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--bordeaux);
  margin: 0 0 10px 0;
}
.step-card p {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-body);
  margin: 0;
}

/* ---------- check & act ---------- */
.checkact { background: var(--cream); padding: 64px 0 96px; }
.subsection-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}
.threecol {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 760px) {
  .threecol { grid-template-columns: 1fr; }
}
.c4-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 28px;
}
.c4-card .ico, .sf-row .ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.c4-card .ico { background: var(--card-light); }
.c4-card h4 {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--bordeaux);
  margin: 0 0 10px 0;
}
.c4-card p { font-size: 15px; line-height: 1.5; color: var(--text-body); margin: 0; }

.sf-row { display: flex; align-items: flex-start; gap: 14px; }
.sf-row .ico { background: var(--bordeaux); flex-shrink: 0; margin-bottom: 0; }
.sf-row h4 {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--bordeaux);
  margin: 0 0 6px 0;
}
.sf-row p { font-size: 14.5px; line-height: 1.5; color: var(--text-body); margin: 0; }

/* ---------- services ---------- */
.services { background: var(--bordeaux); padding: 96px 0; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--bordeaux-light);
  border: 1px solid var(--bordeaux-border);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.service-card .ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bordeaux-dark);
  border: 1px solid rgba(182, 113, 63, 0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-card h3 {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--cream);
  margin: 0 0 8px 0;
}
.service-card p { font-size: 15px; line-height: 1.55; color: var(--text-on-dark); margin: 0; }

/* ---------- testimonial ---------- */
.testimonial { background: var(--cream); padding: 72px 0; text-align: center; }
.testimonial blockquote {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.6;
  color: var(--bordeaux);
  max-width: 700px;
  margin: 0 auto;
}
.testimonial .src {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

/* ---------- traject ---------- */
.traject { background: var(--cream); padding: 0 0 96px; }
.traject-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 760px) {
  .traject-grid { grid-template-columns: 1fr; }
}
.traject-step .num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bordeaux);
  color: var(--cream);
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.traject-step h3 {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--bordeaux);
  margin: 0 0 8px 0;
}
.traject-step p { font-size: 15.5px; line-height: 1.55; color: var(--text-body); margin: 0; }

/* ---------- about ---------- */
.about { background: var(--cream); padding: 0 0 96px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-text h2 { font-size: clamp(26px, 3vw, 32px); color: var(--bordeaux); }
.about-text p { font-size: 17px; line-height: 1.6; color: var(--text-body); margin: 0 0 16px 0; }
.about-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 36px;
}
.about-card ul { list-style: none; margin: 0 0 24px 0; padding: 0; }
.about-card li {
  display: flex;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.45;
}
.about-card li:last-child { margin-bottom: 0; }
.chk { color: var(--copper); flex-shrink: 0; margin-top: 2px; }
.matter-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--border-light);
  padding-top: 22px;
  margin-bottom: 14px;
}
.matter-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--card-light);
  border-radius: 100px;
  padding: 5px 13px;
  margin: 0 6px 8px 0;
}

/* ---------- insights ---------- */
.insights { background: var(--cream); padding: 96px 0; }
.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 760px) {
  .insights-grid { grid-template-columns: 1fr; }
}
.insight-card .ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--card-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.insight-card h3 {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--bordeaux);
  margin: 0 0 12px 0;
  line-height: 1.3;
}
.insight-card p { font-size: 15px; line-height: 1.55; color: var(--text-body); margin: 0; }

/* ---------- contact ---------- */
.contact { background: var(--bordeaux); padding: 96px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact h2 { font-size: clamp(26px, 3.2vw, 34px); color: var(--cream); margin-bottom: 20px; }
.contact-info p { font-size: 17px; line-height: 1.6; color: var(--text-on-dark); max-width: 420px; margin: 0; }
.contact-reply {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-light);
  font-size: 15px;
  font-weight: 600;
}
.contact-pricing {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-on-dark);
  max-width: 420px;
}
.contact-form {
  background: var(--cream);
  border-radius: 10px;
  padding: 40px;
}
.ff { margin-bottom: 20px; }
.ff label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.ff input, .ff textarea {
  width: 100%;
  border: 1px solid #D8D2C2;
  border-radius: 6px;
  background: #fff;
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  color: var(--text-dark);
  resize: vertical;
}
.ff input:focus, .ff textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(182, 113, 63, 0.15);
}
.submit-btn {
  width: 100%;
  background: var(--text-dark);
  color: var(--cream);
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}
.submit-btn:hover { background: #1a1512; }
.submit-btn:disabled { opacity: 0.6; cursor: default; }
.form-success {
  text-align: center;
  padding: 40px 0;
}
.form-success svg { color: var(--copper); margin-bottom: 18px; }
.form-success h3 {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text-dark);
  margin: 0 0 10px 0;
}
.form-success p { font-size: 16px; color: var(--text-body); margin: 0; }
.form-error {
  margin-top: 14px;
  font-size: 14px;
  color: #B6713F;
  font-weight: 600;
}

/* ---------- footer ---------- */
.footer { background: var(--bordeaux-dark); padding: 36px 0; }
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, serif;
  font-weight: 700;
  color: var(--text-on-dark);
}
.footer-brand img { height: 26px; width: auto; opacity: 0.95; }

/* ---------- generic section spacing helper ---------- */
section { scroll-margin-top: 80px; }
