/* ==========================================================================
   mareikemutzberg.com — Kaleidoscope Mind brand stylesheet
   Colors sourced from Mareike's real CI: navy, teal, light teal, orange, cerise
   ========================================================================== */

:root {
  --navy: #154e67;
  --teal: #4e8ca5;
  --teal-light: #b0dcdd;
  --orange: #ea8317;
  --cerise: #e60064;

  --ink: #1a1a1a;
  --paper: #fdfcfb;
  --paper-warm: #eeeae9;
  --border: rgba(21, 78, 103, 0.15);

  --font-display: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-lg: 2rem;
  --radius-md: 1rem;
  --radius-sm: 0.5rem;

  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--cerise); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 800;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1em; }

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

section { padding: 72px 0; }
section.tight { padding: 40px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cerise);
  font-weight: 600;
  margin-bottom: 12px;
}

.lede {
  font-size: 1.2rem;
  color: #444;
  max-width: 640px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { background: #d9740f; color: #fff; box-shadow: 0 6px 16px rgba(234,131,23,0.35); }

.btn-secondary {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  text-decoration: underline;
  padding: 13px 8px;
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

/* ---------- header ---------- */
header.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,252,251,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--navy); }
.logo img { height: 34px; width: auto; }

nav.main-nav { display: flex; align-items: center; gap: 22px; }
nav.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
nav.main-nav a:hover { color: var(--cerise); }

.lang-switch { display: flex; gap: 6px; font-size: 0.85rem; font-weight: 600; }
.lang-switch a { padding: 2px 6px; border-radius: 4px; color: var(--navy); }
.lang-switch a.active { background: var(--navy); color: #fff; }

.nav-toggle { display: none; }

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

/* ---------- hero ---------- */
.hero {
  padding: 64px 0 56px;
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-photo img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* ---------- objection block ---------- */
.objection {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
}
.objection h2, .objection h3 { color: #fff; }
.objection .quotes { font-size: 1.15rem; opacity: 0.85; margin-bottom: 18px; }
.objection .pattern { font-size: 1.05rem; margin: 20px auto; max-width: 620px; }
@media (max-width: 640px) { .objection { padding: 32px 20px; } }

/* ---------- cards / grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper-warm);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.card h4 { margin-bottom: 10px; }

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.pill {
  background: var(--teal-light);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- testimonial ---------- */
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.testimonial p { font-style: italic; font-size: 1.05rem; }
.testimonial .who { font-weight: 600; color: var(--navy); font-style: normal; margin-top: 12px; }

/* ---------- section variants ---------- */
.section-alt { background: var(--paper-warm); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy h3, .section-navy h4 { color: #fff; }

.divider { height: 1px; background: var(--border); border: none; margin: 0; }

/* ---------- checklist ---------- */
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; margin: 24px 0; }
@media (max-width: 640px) { .check-list { grid-template-columns: 1fr; } }
.check-list div { padding-left: 28px; position: relative; }
.check-list div::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--cerise); font-weight: 700;
}

/* ---------- phase cycle ---------- */
.phase-cycle-block { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.phase-cycle-block img { max-width: 320px; margin: 0 auto; }
.phase-cycle-block .text { flex: 1; min-width: 260px; }

/* ---------- footer ---------- */
footer.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 56px 0 28px;
  margin-top: 40px;
}
footer.site-footer a { color: #fff; opacity: 0.85; }
footer.site-footer a:hover { opacity: 1; color: var(--teal-light); }
footer.site-footer .small { color: var(--orange); opacity: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { color: var(--teal-light); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; font-size: 0.92rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem; opacity: 0.75;
}
.footer-social { display: flex; gap: 16px; align-items: center; }
.footer-social a { font-size: 1.15rem; opacity: 0.85; }
.footer-social a:hover { opacity: 1; color: var(--teal-light); }

/* ---------- jump nav (Work With Me / Connect hub pages) ---------- */
.subnav {
  position: sticky; top: 64px; z-index: 40;
  display: flex; justify-content: center; gap: 28px;
  background: var(--paper); border-bottom: 1px solid var(--border);
  padding: 14px 0; margin-bottom: 8px; flex-wrap: wrap;
}
.subnav a { font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.subnav a:hover { color: var(--cerise); }

/* ---------- flag / editorial note (dev only, remove before launch) ---------- */
.dev-note {
  background: #fff3cd;
  border: 1px dashed #d9a441;
  color: #7a5300;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin: 16px 0;
}

/* ---------- utility ---------- */
.mt-0 { margin-top: 0; }
.small { font-size: 0.88rem; color: #555; }
