/* ===========================================================
   MOYO VISIONS — shared stylesheet (v1 base + subtle effects)
   =========================================================== */

:root {
  --olive-deep: #3a3f1e;
  --olive: #4a4f2c;
  --olive-mid: #5d6336;
  --olive-soft: #8a8e63;
  --cream: #f5ecd5;
  --cream-soft: #faf4e2;
  --sage: #88a8a2;
  --sage-deep: #6e938d;
  --sage-soft: #b6cdc9;
  --text-dark: #2a2d14;
  --text-cream: #faf4e2;
  --text-cream-dim: #d8d3b8;

  --max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-soft: 0 4px 24px rgba(40, 44, 18, 0.08);
  --shadow-md: 0 10px 40px rgba(40, 44, 18, 0.16);

  --serif: "Fraunces", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hand: "Caveat", "Bradley Hand", cursive;

  /* cursor coords */
  --mx: 50vw;
  --my: 50vh;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--cream-soft);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* === Cursor glow (subtle, sage tint) === */
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(136, 168, 162, 0.18) 0%, rgba(136, 168, 162, 0.04) 40%, rgba(136, 168, 162, 0) 65%);
  left: var(--mx);
  top: var(--my);
  transform: translate(-50%, -50%);
  z-index: 0;
  mix-blend-mode: screen;
  transition: opacity 0.2s ease;
}
@media (hover: none) { body::after { display: none; } }

/* === Scroll progress bar === */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--sage);
  z-index: 200;
  transition: width 0.08s linear;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(136, 168, 162, 0.5);
}

main, header, footer { position: relative; z-index: 1; }

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.1rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin: 0 0 1em; }

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity 0.2s ease;
}
a:hover { opacity: 0.7; }

.serif { font-family: var(--serif); }
.hand { font-family: var(--hand); font-weight: 400; }
.italic { font-style: italic; }
.tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

/* === Layout primitives === */
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 32px; }

section { padding: 96px 0; position: relative; }
section.tight { padding: 64px 0; }

.bg-olive { background: var(--olive); color: var(--text-cream); }
.bg-olive-deep { background: var(--olive-deep); color: var(--text-cream); }
.bg-cream { background: var(--cream); color: var(--text-dark); }
.bg-cream-soft { background: var(--cream-soft); color: var(--text-dark); }
.bg-sage { background: var(--sage); color: var(--text-dark); }

.center { text-align: center; }
.muted { opacity: 0.75; }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); opacity: 1; }

.btn-primary { background: var(--sage); color: var(--olive-deep); }
.btn-primary:hover { background: var(--sage-deep); color: var(--text-cream); }

.btn-ghost {
  background: transparent;
  color: var(--text-cream);
  border-color: var(--sage);
}
.btn-ghost:hover { background: var(--sage); color: var(--olive-deep); }

.btn-dark {
  background: var(--olive-deep);
  color: var(--text-cream);
}
.btn-dark:hover { background: var(--olive); }

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--cream);
}
.btn-outline-cream:hover {
  background: var(--cream);
  color: var(--olive-deep);
}

/* === Header / Nav === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--olive);
  color: var(--text-cream);
  padding: 18px 0;
  border-bottom: 1px solid rgba(245, 236, 213, 0.08);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  border-bottom: none;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.brand .brand-mark {
  font-style: italic;
  color: var(--sage);
}
.brand sub {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-cream-dim);
  font-weight: 500;
  vertical-align: middle;
  margin-left: 4px;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  border-bottom: none;
  font-size: 0.96rem;
  padding: 6px 2px;
  position: relative;
  color: var(--text-cream);
}
.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--sage);
}
.nav-cta {
  background: var(--sage);
  color: var(--olive-deep);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border-bottom: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-cta:hover { background: var(--cream); transform: translateY(-1px); }

.menu-toggle { display: none; }

/* === Footer === */
.site-footer {
  background: var(--olive-deep);
  color: var(--text-cream);
  padding: 72px 0 32px;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-grid h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { border-bottom: none; opacity: 0.8; }
.footer-grid a:hover { opacity: 1; color: var(--sage); }

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 236, 213, 0.22);
  border-radius: 50%;
  color: var(--text-cream);
  opacity: 0.85;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease,
    border-color 0.2s ease, transform 0.2s ease;
}
.footer-socials a:hover {
  background: var(--sage);
  color: var(--olive-deep);
  border-color: var(--sage);
  opacity: 1;
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(245, 236, 213, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* === Hero === */
.hero {
  background: var(--olive);
  color: var(--text-cream);
  padding: 88px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--sage);
  border-radius: var(--radius-pill);
}
.hero h1 {
  max-width: 18ch;
  margin-bottom: 28px;
}
.hero h1 .marker {
  display: inline-block;
  background: var(--cream);
  color: var(--olive-deep);
  padding: 0 16px 4px;
  border-radius: var(--radius-md);
  margin: 4px 0;
}
.hero h1 .underline-circle {
  display: inline-block;
  position: relative;
  padding: 0 8px;
  white-space: nowrap;
}
.hero h1 .underline-circle::after {
  content: "";
  position: absolute;
  inset: 8% -2% -10% -2%;
  border: 2px solid var(--sage);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-2deg);
}
.hero-lede {
  max-width: 56ch;
  font-size: 1.12rem;
  opacity: 0.92;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* === Cards & blocks === */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: end;
  padding: 24px 0;
}
.metric { padding: 12px 0; }
.metric .num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 10px;
  color: var(--olive-deep);
}
.metric .label {
  font-size: 0.95rem;
  color: var(--olive-mid);
  max-width: 22ch;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.pillar {
  background: var(--olive-deep);
  border: 1px solid rgba(245, 236, 213, 0.08);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.pillar:hover { transform: translateY(-4px); border-color: var(--sage); }
.pillar.featured {
  background: var(--cream);
  color: var(--olive-deep);
}
.pillar.featured .pillar-tag { color: var(--olive-mid); }

.pillar.soft {
  background: var(--sage-soft);
  color: var(--olive-deep);
  border-color: rgba(74, 79, 44, 0.12);
}
.pillar.soft .pillar-tag { color: var(--olive-mid); }
.pillar.soft p { opacity: 0.92; }
.pillar.soft a {
  color: var(--olive-deep);
  border-bottom: 1.5px solid var(--olive-deep);
}
.pillar-tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
}
.pillar h3 { margin: 0; }
.pillar p { margin: 0; opacity: 0.88; }
.pillar .featured-badge {
  display: inline-block;
  background: var(--sage);
  color: var(--olive-deep);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}

/* === Person / About strip === */
.person {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.person img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.person h2 .hand {
  font-family: var(--hand);
  color: var(--sage);
  font-weight: 400;
  display: inline-block;
  margin-right: 8px;
}

/* === Feature box === */
.feature-box {
  background: var(--olive-soft);
  color: var(--text-cream);
  border-radius: var(--radius-md);
  padding: 36px 44px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.5;
}
.feature-box strong { font-weight: 600; }

/* === Service rows === */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid rgba(245, 236, 213, 0.12);
}
.service-row:first-child { border-top: none; }
.service-row.flip > .service-text { order: 2; }
.service-row.flip > .service-image { order: 1; }
.service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--olive-mid);
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-text .tag { color: var(--sage); margin-bottom: 12px; }
.service-text ul {
  margin: 16px 0 24px;
  padding-left: 0;
  list-style: none;
}
.service-text ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
.service-text ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 16px; height: 1.5px;
  background: var(--sage);
}

/* === Hand-drawn highlights === */
.circle-hl {
  display: inline-block;
  position: relative;
  padding: 0 8px;
}
.circle-hl::after {
  content: "";
  position: absolute;
  inset: -8% -4% -8% -4%;
  border: 2px solid var(--sage);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-3deg);
}

.underline-hand {
  position: relative;
  display: inline-block;
}
.underline-hand::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: -6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  transform: skewX(-12deg) scaleY(0.4);
  opacity: 0.85;
}

/* === Soft bullets === */
.bullets-soft { padding: 0; margin: 0; list-style: none; }
.bullets-soft li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
}
.bullets-soft li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.9;
}

/* === Aside note (handwritten) === */
.aside-note {
  font-family: var(--hand);
  font-size: 1.4rem;
  color: var(--sage);
  display: inline-block;
  transform: rotate(-2deg);
  margin: 8px 0;
}

/* === CTA strip === */
.cta-strip {
  background: var(--olive);
  color: var(--text-cream);
  padding: 80px 32px;
  text-align: center;
  border-radius: var(--radius-lg);
}
.cta-strip h2 { max-width: 22ch; margin: 0 auto 20px; }
.cta-strip p { max-width: 56ch; margin: 0 auto 32px; opacity: 0.85; }

/* === Contact === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 20px;
}
.contact-list li {
  padding: 20px 24px;
  background: var(--olive-deep);
  color: var(--text-cream);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--sage);
}
.contact-list .label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.contact-list a { border-bottom: none; }
.contact-list a:hover { color: var(--sage); }

.contact-form {
  background: var(--cream);
  padding: 36px;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 16px;
}
.contact-form label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--olive-deep);
  display: block;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(74, 79, 44, 0.2);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 1rem;
  background: var(--cream-soft);
  color: var(--olive-deep);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--sage);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .btn { justify-self: start; margin-top: 8px; }

/* === Form disclosure (openklik onderwerp) === */
.form-disclosure {
  border: 1.5px solid rgba(74, 79, 44, 0.2);
  border-radius: var(--radius-md);
  background: var(--cream-soft);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-disclosure[open] {
  border-color: var(--sage);
  box-shadow: 0 4px 16px rgba(40, 44, 18, 0.06);
}
.form-disclosure summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  user-select: none;
  transition: background 0.15s ease;
}
.form-disclosure summary::-webkit-details-marker { display: none; }
.form-disclosure summary:hover { background: rgba(136, 168, 162, 0.08); }
.form-disclosure summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--olive-mid);
  transition: transform 0.25s ease, color 0.2s ease;
  font-family: var(--sans);
  line-height: 1;
}
.form-disclosure[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--sage);
}
.summary-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--olive-deep);
}
.summary-hint {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--olive-mid);
  opacity: 0.85;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.checkbox-list {
  padding: 4px 20px 16px;
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(74, 79, 44, 0.12);
}
.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s ease;
  font-size: 0.95rem;
  color: var(--olive-deep);
  margin: 0 !important;
  line-height: 1.45;
}
.checkbox-option:hover { background: rgba(136, 168, 162, 0.15); }
.checkbox-option input[type="checkbox"] {
  width: auto;
  margin: 4px 0 0;
  padding: 0;
  accent-color: var(--olive-deep);
  flex-shrink: 0;
}

/* === Story page === */
.story-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
}
.story-hero img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
}
.story-hero h1 .hand {
  font-family: var(--hand);
  font-size: 0.7em;
  color: var(--sage);
  font-weight: 400;
  display: block;
  margin-bottom: 8px;
}

.story-prose {
  max-width: 64ch;
  margin: 0 auto;
}
.story-prose p {
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 1.2em;
}
.story-prose .pull {
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.3;
  font-style: italic;
  color: var(--sage);
  border-left: 3px solid var(--sage);
  padding-left: 24px;
  margin: 32px 0;
}

/* === Values grid === */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.values-grid.values-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 980px) {
  .values-grid.values-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
.value-card {
  padding: 28px;
  background: var(--olive-deep);
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 236, 213, 0.08);
}
.value-card .num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--sage);
  display: block;
  margin-bottom: 8px;
  font-style: italic;
}

/* === FAQ === */
.faq-block details {
  border-bottom: 1px solid rgba(245, 236, 213, 0.18);
  padding: 18px 0;
}
.faq-block summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.2rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-block summary::-webkit-details-marker { display: none; }
.faq-block summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--sage);
  font-family: var(--sans);
  font-weight: 300;
  transition: transform 0.2s ease;
}
.faq-block details[open] summary::after { transform: rotate(45deg); }
.faq-block details p { margin-top: 12px; opacity: 0.88; }

/* === Image placeholder helpers === */
.img-placeholder {
  background: linear-gradient(135deg, var(--olive-mid) 0%, var(--olive-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-cream-dim);
  font-family: var(--hand);
  font-size: 1.2rem;
  text-align: center;
  padding: 24px;
}
.img-placeholder.cream {
  background: linear-gradient(135deg, var(--cream) 0%, var(--olive-soft) 100%);
  color: var(--olive-deep);
}

/* === Reviews / Testimonials === */
.reviews-section { background: var(--cream); }
.review-spotlight {
  background: var(--olive);
  color: var(--text-cream);
  padding: 56px 64px;
  border-radius: var(--radius-lg);
  margin: 0 auto 32px;
  position: relative;
  max-width: 920px;
  overflow: hidden;
}
.review-spotlight::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 12rem;
  position: absolute;
  top: -28px; left: 32px;
  color: var(--sage);
  line-height: 1;
  font-weight: 500;
  opacity: 0.35;
  pointer-events: none;
}
.review-spotlight .review-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.4;
  font-style: italic;
  margin: 8px 0 24px;
  position: relative;
  z-index: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: var(--olive-deep);
  color: var(--text-cream);
  border-radius: var(--radius-md);
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(245, 236, 213, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}
.review-card:hover { transform: translateY(-4px); border-color: var(--sage); }
.review-card::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 5rem;
  position: absolute;
  top: -16px; left: 22px;
  color: var(--sage);
  line-height: 1;
  font-weight: 500;
  opacity: 0.45;
  pointer-events: none;
}
.review-card .review-quote {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.5;
  font-style: italic;
  margin: 24px 0 16px;
  z-index: 1;
  position: relative;
}

.review-full {
  margin: 0 0 16px;
}
.review-full summary {
  cursor: pointer;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  user-select: none;
  transition: color 0.2s ease;
}
.review-full summary:hover { color: var(--text-cream); }
.review-full summary::-webkit-details-marker { display: none; }
.review-full summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.2s;
  margin-left: 4px;
}
.review-full[open] summary::after { content: "\2212"; }
.review-full p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 12px 0;
  opacity: 0.86;
  font-style: normal;
  font-family: var(--sans);
}

.review-author {
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(245, 236, 213, 0.18);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.4;
}
.review-company {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  opacity: 0.72;
  margin-top: 2px;
}
.review-spotlight .review-author { border-top-color: rgba(245, 236, 213, 0.22); }

@media (max-width: 880px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-spotlight { padding: 40px 28px; }
  .review-spotlight::before { font-size: 8rem; left: 20px; }
  .review-card { padding: 32px 24px 24px; }
}

/* === Reviews / testimonials === */
.reviews-section {
  background: var(--olive-deep);
  color: var(--text-cream);
  padding: 96px 0;
  position: relative;
}

.review-spotlight {
  background: var(--olive);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  border-left: 6px solid var(--sage);
  max-width: 1000px;
  margin: 0 auto 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-md);
}
.review-spotlight::before {
  content: "\201C";
  position: absolute;
  top: 12px; left: 24px;
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 1;
  color: var(--sage);
  opacity: 0.35;
  pointer-events: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: var(--olive);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border-left: 4px solid var(--sage);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1), border-color 0.25s ease;
}
.review-card:hover { transform: translateY(-4px); border-color: var(--sage-soft); }
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 4px; right: 24px;
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--sage);
  opacity: 0.4;
  pointer-events: none;
}

.review-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--sage);
  margin: 0;
}
.review-spotlight .review-quote {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.45;
  max-width: 56ch;
}

.review-full {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}
.review-full summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage);
  padding: 8px 16px;
  border: 1px solid rgba(136, 168, 162, 0.35);
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  width: fit-content;
}
.review-full summary::-webkit-details-marker { display: none; }
.review-full summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}
.review-full[open] summary::after { content: "−"; }
.review-full summary:hover {
  background: var(--sage);
  color: var(--olive-deep);
  border-color: var(--sage);
}
.review-full[open] summary {
  background: var(--sage);
  color: var(--olive-deep);
  border-color: var(--sage);
  margin-bottom: 16px;
}
.review-full p {
  margin: 0 0 12px;
  opacity: 0.92;
}
.review-full p:last-child { margin-bottom: 0; }

.review-author {
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 236, 213, 0.18);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-company {
  font-weight: 400;
  font-size: 0.85rem;
  opacity: 0.7;
}
.review-author a {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--sage);
  border-bottom: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(136, 168, 162, 0.4);
  margin-top: 4px;
}

/* === Reviews carrousel - CSS animation auto-scroll + JS switch naar manueel === */
.reviews-marquee-wrapper {
  position: relative;
  /* Default: CSS animation runs, geen scrollbare wrapper */
  overflow-x: hidden;
  overflow-y: visible;
  padding: 24px 0 36px;
}
/* Manual mode: JS heeft class toegevoegd, gebruiker kan vrij scrollen */
.reviews-marquee-wrapper.manual-scroll {
  overflow-x: auto;
  scrollbar-width: none;
  /* Belangrijk: pan-x EN pan-y beide toelaten zodat vertical page-scroll
     vanaf deze wrapper blijft werken (de wrapper zelf kan niet verticaal scrollen,
     dus browser doorvoegt verticale touch naar de pagina) */
  touch-action: pan-x pan-y;
}
.reviews-marquee-wrapper.manual-scroll::-webkit-scrollbar { display: none; }

.reviews-marquee-track {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  width: max-content;
  padding: 16px 14px 20px;
  animation: reviews-marquee 80s linear infinite;
}
@keyframes reviews-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* In manual mode geen animation */
.reviews-marquee-wrapper.manual-scroll .reviews-marquee-track {
  animation: none;
}
.reviews-marquee-track .review-card {
  width: 300px;
  min-width: 300px;
  margin: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1),
              box-shadow 0.35s ease,
              border-color 0.3s ease;
  scroll-snap-align: start;
}
/* Subtiele tilts per kaart - zoals op een prikbord */
.reviews-marquee-track .review-card:nth-child(5n+1) { transform: rotate(-1.1deg); }
.reviews-marquee-track .review-card:nth-child(5n+2) { transform: rotate(0.8deg); }
.reviews-marquee-track .review-card:nth-child(5n+3) { transform: rotate(-0.5deg); }
.reviews-marquee-track .review-card:nth-child(5n+4) { transform: rotate(1deg); }
.reviews-marquee-track .review-card:nth-child(5n+5) { transform: rotate(-0.7deg); }
/* Hover: rechttrekken + liften */
.reviews-marquee-track .review-card:hover,
.reviews-marquee-track .review-card:focus-within {
  transform: rotate(0) translateY(-4px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
  border-color: var(--sage-soft);
  z-index: 2;
}
/* Opengeklikte review naar voorgrond */
.reviews-marquee-track .review-card:has(details[open]) {
  z-index: 5;
}
@media (max-width: 720px) {
  .reviews-marquee-track .review-card {
    width: 260px;
    min-width: 260px;
  }
}

/* Review case label - subtle header inside expanded review */
.review-case-label {
  font-family: var(--sans);
  font-size: 0.72rem !important;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sage);
  margin-top: 24px !important;
  margin-bottom: 8px !important;
  opacity: 1 !important;
}

/* === Results / berichtjes grid (compact - 4 op een rij) === */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.result-tile {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--olive);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), box-shadow 0.3s ease;
  aspect-ratio: 4 / 5;
}
.result-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.result-tile:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}
@media (max-width: 880px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 540px; }
}
@media (max-width: 460px) {
  .results-grid { grid-template-columns: 1fr; max-width: 320px; }
}

/* === H2 subtitle (kleiner onder hoofdtitel) === */
.h2-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--olive-mid);
  margin: -8px 0 20px;
  max-width: 56ch;
  opacity: 0.9;
}
.hero-subtitle {
  color: var(--sage);
  font-size: 1.35rem;
  margin: -4px 0 28px;
  opacity: 1;
}

/* === Case block (recruitment pagina) === */
.case-block {
  background: var(--olive);
  border-left: 4px solid var(--sage);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  margin-top: 36px;
  box-shadow: var(--shadow-md);
}
.case-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.4;
  color: var(--sage);
  margin: 0 0 32px;
  max-width: 56ch;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.case-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sage);
  margin: 0 0 8px;
}
.case-grid p:not(.case-label) {
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
  opacity: 0.92;
}
@media (max-width: 720px) {
  .case-block { padding: 32px 24px; }
  .case-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Kleine subtiele noot (bv. "andere vragen?") */
.small-note {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--olive-mid);
  max-width: 56ch;
  padding: 14px 18px;
  border-left: 2px solid var(--sage);
  background: rgba(136, 168, 162, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* === Service section variants (no image) === */
.service-row-simple {
  padding: 56px 0 24px;
  border-top: 1px solid rgba(245, 236, 213, 0.12);
  max-width: 820px;
}
.service-row-simple .service-text .tag { color: var(--sage); margin-bottom: 12px; }
.two-col-list {
  margin: 16px 0 24px;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 32px;
}
.two-col-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
}
.two-col-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 16px; height: 1.5px;
  background: var(--sage);
}
@media (max-width: 720px) {
  .two-col-list { grid-template-columns: 1fr; }
}

/* === Pillars stack (no image, content focused) === */
.pillars-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}
.pillar-block {
  background: rgba(245, 236, 213, 0.04);
  border: 1px solid rgba(245, 236, 213, 0.12);
  border-left: 3px solid var(--sage);
  border-radius: var(--radius-md);
  padding: 32px 32px 28px;
}
.pillar-block .tag {
  color: var(--sage);
  margin-bottom: 12px;
  display: block;
}
.pillar-block h3 { margin: 0 0 14px; }
.pillar-block p { opacity: 0.92; }
.pillar-block ul {
  margin: 16px 0 0;
  padding-left: 0;
  list-style: none;
}
.pillar-block ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
}
.pillar-block ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 16px; height: 1.5px;
  background: var(--sage);
}
@media (max-width: 880px) {
  .pillars-stack { grid-template-columns: 1fr; gap: 24px; }
}

/* === Portrait figure (met foto-credit) === */
.portrait-figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.portrait-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}
.portrait-figure .photo-credit {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: rgba(245, 236, 213, 0.85);
  background: rgba(40, 44, 18, 0.55);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-style: italic;
  font-weight: 500;
}
.story-hero .portrait-figure img {
  aspect-ratio: 3 / 4;
}

/* === Mallorca dual photo block on Over story === */
.mallorca-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 36px;
}
.mallorca-photos figure { margin: 0; }
.mallorca-photos img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}
.mallorca-photos figure:first-child { transform: rotate(-1deg); }
.mallorca-photos figure:last-child { transform: rotate(1deg); }
.mallorca-photos figure:hover { transform: rotate(0) scale(1.02); }
@media (max-width: 720px) {
  .mallorca-photos { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 980px) {
  .review-spotlight { padding: 40px 28px; }
  .review-spotlight::before { font-size: 4.5rem; top: 8px; left: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* === MOYO Manifest (nieuwe compacte versie) === */
.manifest {
  position: relative;
  background: var(--olive-deep);
  color: var(--cream);
  padding: 96px 0 104px;
  overflow: hidden;
  isolation: isolate;
}
.manifest::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(136, 168, 162, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.manifest-aloe {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%) rotate(8deg);
  width: 520px;
  height: auto;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}
.manifest > .wrap { position: relative; z-index: 1; }
.manifest-header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.manifest-header h2 {
  color: var(--cream);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.2;
  margin: 12px 0 0;
}
.manifest-header h2 em {
  color: var(--sage);
  font-style: italic;
}
.manifest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.manifest-card {
  background: rgba(245, 236, 213, 0.04);
  border: 1px solid rgba(245, 236, 213, 0.1);
  border-radius: var(--radius-md);
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), background 0.3s ease, border-color 0.3s ease;
}
.manifest-card:hover {
  transform: translateY(-4px);
  background: rgba(245, 236, 213, 0.07);
  border-color: var(--sage);
}
.manifest-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--sage);
  font-weight: 500;
  display: block;
}
.manifest-phrase {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.3;
  font-weight: 500;
  color: var(--cream);
  margin: 0;
}
.manifest-phrase em {
  color: var(--sage);
  font-style: italic;
}
.manifest-sub {
  font-family: var(--hand);
  font-size: 1.15rem;
  color: var(--sage);
  margin: 0;
  line-height: 1.3;
  opacity: 0.95;
}
@media (max-width: 880px) {
  .manifest-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .manifest-aloe { width: 380px; right: -100px; opacity: 0.06; }
}
@media (max-width: 520px) {
  .manifest-grid { grid-template-columns: 1fr; }
  .manifest { padding: 72px 0 80px; }
}

/* === MOYO Moment (oude sticky scroll - niet meer gebruikt) === */
.moyo-moment {
  position: relative;
  background: var(--olive-deep);
  color: var(--cream);
  height: 360vh;          /* total scroll length: 4 phrases × ~90vh */
  padding: 0;
  overflow: visible;
}
.moyo-moment::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(136, 168, 162, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.moyo-moment-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.moyo-moment-eyebrow {
  position: absolute;
  top: 32px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  z-index: 3;
}
.moyo-moment-progress {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.moyo-moment-progress .dot {
  width: 32px;
  height: 3px;
  background: rgba(245, 236, 213, 0.18);
  border-radius: 2px;
  transition: background 0.4s ease;
}
.moyo-moment-progress .dot.on { background: var(--sage); }

.aloe-bg {
  position: absolute;
  width: clamp(420px, 70vmin, 720px);
  height: auto;
  opacity: 0.25;
  pointer-events: none;
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.5));
  will-change: transform;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1), opacity 0.6s;
}
.moyo-phrases {
  position: relative;
  width: min(900px, 90vw);
  height: 60vh;
  z-index: 2;
}
.moyo-phrase {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.15;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
  margin: 0;
  pointer-events: none;
}
.moyo-phrase em {
  color: var(--sage);
  font-style: italic;
}
.moyo-phrase.active {
  opacity: 1;
  transform: translateY(0);
}
.moyo-phrase small {
  display: block;
  font-family: var(--hand);
  font-size: 1.5rem;
  font-style: normal;
  color: var(--sage);
  margin-top: 16px;
  font-weight: 400;
  opacity: 0.85;
}

@media (max-width: 880px) {
  /* Mobile: gestapeld layout in plaats van sticky scroll */
  .moyo-moment {
    height: auto;
    padding: 72px 0;
    overflow: hidden;
  }
  .moyo-moment-pin {
    position: relative;
    top: auto;
    height: auto;
    padding: 0 24px;
    display: block;
  }
  .moyo-phrases {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 56px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .moyo-phrase {
    position: relative;
    inset: auto;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    padding: 0 8px;
  }
  .moyo-phrase small {
    font-size: 1.2rem;
  }
  .moyo-moment-progress { display: none; }
  .aloe-bg {
    position: absolute !important;
    width: 280px !important;
    opacity: 0.1 !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
}

/* === Reveal-on-scroll (subtle) === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }

/* === Responsive === */
@media (max-width: 880px) {
  body { font-size: 16px; }
  section { padding: 64px 0; }
  .wrap, .wrap-narrow { padding: 0 22px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--olive);
    flex-direction: column;
    align-items: stretch;
    padding: 18px 22px;
    border-top: 1px solid rgba(245, 236, 213, 0.08);
    gap: 12px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; }
  .nav-cta { align-self: flex-start; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1.5px solid var(--sage);
    color: var(--text-cream);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    cursor: pointer;
  }

  .pillar-grid,
  .metric-grid,
  .values-grid,
  .footer-grid,
  .contact-grid,
  .person,
  .story-hero,
  .service-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-row.flip > .service-text { order: 2; }
  .service-row.flip > .service-image { order: 1; }

  .cta-strip { padding: 56px 24px; }
}

@media (max-width: 520px) {
  h1 { font-size: 2rem; }
  .hero { padding: 64px 0 80px; }
  .feature-box { padding: 24px; font-size: 1.05rem; }
}
@media (max-width: 380px) {
  h1 { font-size: 1.7rem; }
}
