@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-v17-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/dm-sans-v17-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/dm-sans-v17-latin-700.woff2') format('woff2');
}

/* ==========================================================================
   Klarity — stylesheet v4
   Editorial Swiss direction. Sharp geometry, serif headlines, grain texture.
   Green #607D3B primary. Amber #E8873A accent.
   No frameworks. No rounded-everything AI slop.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------- */
:root {
  /* Core palette */
  --ink:        #1e2616;
  --ink-soft:   #3d4d28;
  --ink-faint:  #6e8248;

  /* Backgrounds */
  --cream:      #f5f7ef;
  --cream-2:    #ebf0e0;
  --white:      #ffffff;
  --butter:     #fdf3e7;

  /* PRIMARY: Green */
  --green:      #607D3B;
  --green-dk:   #4a6129;
  --green-lt:   #8aaa56;
  --green-wash: #e2ecca;
  --green-mid:  #c8dba0;

  /* ACCENT: Amber */
  --amber:      #E8873A;
  --amber-dk:   #c46a1e;
  --amber-lt:   #f2aa6e;
  --amber-wash: #fce8d2;

  --sun:        #e8c84a;
  --line:       #d4e0b8;
  --line-2:     #b8cfa0;

  /* Dark-section palette (footer, section--ink, print-band) */
  --dark-bg:    #2a3d18;   /* primary dark bg */
  --dark-bg-dk: #1e2a12;   /* deep dark bg */
  --dark-text:  #d8e8b8;   /* body text on dark */
  --dark-head:  #f0f7e0;   /* headings on dark */
  --dark-btn:   #4a6832;   /* ghost btn on dark */
  --dark-muted: #96b06e;   /* muted secondary on dark */

  /* Type — editorial serif/sans pairing */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw:  1180px;
  --pad-section: clamp(4rem, 8vw, 7rem);

  /* Sharp geometry */
  --radius:    6px;
  --radius-sm: 3px;

  --shadow:    8px 10px 0 0 rgba(96, 125, 59, 0.35);
  --shadow-sm: 4px 5px 0 0 rgba(96, 125, 59, 0.22);
  --shadow-amber: 6px 8px 0 0 rgba(232, 135, 58, 0.4);
}

::selection { background: var(--amber); color: var(--white); }
::-moz-selection { background: var(--amber); color: var(--white); }

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--green-dk);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  z-index: 9999;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: top .15s;
}
.skip-link:focus { top: 1rem; }

/* ---- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1.06rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background: var(--cream);
}
/* Grain texture overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
ul { list-style: none; }

/* ---- Typography ---------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 5.8vw, 4.6rem); }
h2 { font-size: clamp(2.1rem, 3.6vw, 3.1rem); max-width: 26ch; }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.55rem); font-weight: 400; }
p  { max-width: 62ch; }

/* Label / eyebrow — left rule, no pill */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0;
  background: none;
  border-radius: 0;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
  flex-shrink: 0;
}

/* ---- Layout helpers ------------------------------------------------------ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.5rem; }
.section { padding-block: var(--pad-section); position: relative; }

/* Green panel */
.section--green {
  background: linear-gradient(180deg, #ecf2de, #f3f7ea);
}
.section--peach { background: linear-gradient(180deg, #f2f7e8, #eef4e0); }

/* Dark section */
.section--ink {
  background: linear-gradient(160deg, var(--dark-bg) 0%, var(--dark-bg-dk) 100%);
  color: var(--dark-text);
}
.section--ink h2, .section--ink h3 { color: var(--dark-head); }
.lead { font-size: 1.18rem; color: var(--ink-soft); line-height: 1.65; }
.section--ink .lead { color: var(--line-2); }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.97rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
  line-height: 1;
  letter-spacing: 0.02em;
}
.btn--primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
  box-shadow: var(--shadow-amber);
}
.btn--primary:hover {
  background: var(--amber-dk);
  border-color: var(--amber-dk);
  transform: translate(-2px, -2px);
  box-shadow: 8px 10px 0 0 rgba(196, 106, 30, 0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-sm);
}
.section--ink .btn--ghost {
  color: var(--dark-text);
  border-color: var(--dark-btn);
}
.section--ink .btn--ghost:hover {
  background: var(--dark-btn);
  color: var(--white);
}
.btn .arrow { transition: transform .14s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* FAQ inside dark sections — keep cards readable */
.section--ink .faq-item {
  background: transparent;
  border-color: rgba(255,255,255,0.12);
}
.section--ink .faq-item[open] { border-color: var(--green-lt); }
.section--ink .faq-item summary { color: var(--dark-head); }
.section--ink .faq-item .faq-body,
.section--ink .faq-item .faq-body-inner { color: var(--green-mid); }
.section--ink .faq-item summary .plus {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.section--ink .faq-item summary .plus::before,
.section--ink .faq-item summary .plus::after { background: var(--line-2); }
.section--ink .faq-item[open] summary .plus { background: var(--green-lt); border-color: var(--green-lt); }
.section--ink .faq-item[open] summary .plus::before,
.section--ink .faq-item[open] summary .plus::after { background: var(--white); }
.section--ink .timeline-step p { color: var(--green-mid); }
.section--ink .timeline-step h3 { color: var(--dark-head); }
.section--ink .timeline-step .ts-num {
  background: rgba(255,255,255,0.12);
  color: var(--dark-head);
  box-shadow: none;
}

/* ---- Green variant button ---- */
.btn--green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: var(--shadow);
}
.btn--green:hover {
  background: var(--green-dk);
  border-color: var(--green-dk);
  transform: translate(-2px, -2px);
  box-shadow: 8px 10px 0 0 rgba(74, 97, 41, 0.45);
}

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--green);
  border-bottom: 3px solid var(--green-dk);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: 0.9rem;
}
.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.logo img {
  height: 36px;
  width: auto;
  display: block;
}
.site-footer .logo img {
  height: 32px;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  transition: color .15s ease;
  position: relative;
  letter-spacing: 0.01em;
}
.nav-links a::after {
  content:"";
  position:absolute; left:0; bottom:-4px;
  width:0; height:2px;
  background: var(--amber);
  transition: width .2s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

/* Vacatures — small secondary link in nav */
.nav-chip {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  transition: all .15s ease;
}
.nav-chip:hover { color: var(--white); border-color: rgba(255,255,255,0.6); }
.nav-chip--active { color: var(--white); border-color: rgba(255,255,255,0.55); }


.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-cta .btn--primary { white-space: nowrap; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem; }
.nav-toggle span { display:block; width:26px; height:2px; background:var(--white); margin:6px 0; transition:.2s; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; padding-block: clamp(2rem, 4.5vw, 4rem); overflow: hidden; }

/* Geometric background accent — hard diagonal stripe */
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 42%;
  height: 100%;
  background: var(--green-wash);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { margin: 1.2rem 0 1.4rem; }
.hero h1 .hl {
  color: var(--amber-dk);
  position: relative;
  white-space: nowrap;
}
.hero h1 .hl::after {
  content:"";
  position:absolute; left:-1%; right:-1%;
  bottom: 0.05em; height: 0.28em;
  background: var(--sun);
  z-index: -1;
  opacity: 0.7;
  transform: skewX(-3deg);
}
.hero .lead { margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero-trust {
  margin-top: 2.2rem; display:flex; align-items:center; gap:0.8rem;
  font-size: 0.92rem; color: var(--ink-soft);
}
.hero-trust .dots { display:flex; }
.hero-trust .dots span {
  width: 36px; height: 36px;
  border-radius: 3px;           /* square-ish, not circles */
  background: var(--green);
  border: 3px solid var(--cream);
  margin-left: -10px;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-body); font-weight:700; color: var(--white); font-size: 0.88rem;
}
.hero-trust .dots span:first-child { margin-left: 0; }
.hero-trust .dots span:nth-child(2){ background: var(--amber); }
.hero-trust .dots span:nth-child(3){ background: var(--green-dk); }

/* Hero visual: photo with hard offset shadow frame */
.hero-visual { position: relative; }
.hero-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 4.4;
  background: var(--green-wash);
  border: 3px solid var(--green);
  box-shadow: 12px 14px 0 0 rgba(96, 125, 59, 0.4);
  transform: none;                            /* no rotation */
}
.hero-photo img { width:100%; height:100%; object-fit: cover; }

/* Stickers — hard border, no blur shadow */
.hero-sticker {
  position: absolute; z-index: 3;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  box-shadow: 4px 4px 0 0 var(--ink);
  display:flex; align-items:center; gap:0.55rem;
  font-weight: 700; color: var(--ink);
  font-size: 0.87rem;
}
.hero-sticker .blip {
  width:9px; height:9px;
  background: var(--green);
  border-radius: 0;           /* square dot */
  animation: blink 2.4s infinite;
}
.hero-sticker--tl { top: 8%; left: -6%; }
.hero-sticker--br { bottom: 10%; right: -5%; }
.hero-sticker--br .blip { background: var(--amber); }
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ==========================================================================
   Photo blocks (picture slots)
   ========================================================================== */
.photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: repeating-linear-gradient(
    -45deg,
    var(--green-wash) 0 12px,
    var(--cream-2) 12px 24px
  );
  border: 2px solid var(--line);
  min-height: 220px;
}
.photo img { width:100%; height:100%; object-fit: cover; display:block; position: relative; z-index:2; }
.photo--tall { aspect-ratio: 3/4; }
.photo--wide { aspect-ratio: 16/10; }
.photo--tilt { transform: rotate(-0.8deg); }

.photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: var(--cream-2);
  border: 2px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.photo-placeholder span {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* Hard offset shadow on photos with tilt */
.photo--frame {
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 0 var(--green);
}

/* photo + text band */
.media-band { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items:center; }
.media-band.flip .media-text { order: 2; }

/* ==========================================================================
   Section heading block
   ========================================================================== */
.section-head { max-width: 58ch; margin-bottom: 3.2rem; }
.section-head h2 { margin: 0.8rem 0 0.9rem; max-width: 100%; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center h2 { margin-inline: auto; }
.section-head.center .eyebrow { justify-content: center; }

/* ==========================================================================
   Micro trust strip
   ========================================================================== */
.microtrust { background: var(--green); border-block: none; }
.microtrust .wrap {
  display:flex; flex-wrap:wrap; gap: 0.5rem 2.5rem; padding-block: 0.95rem;
  font-size: 0.9rem; color: rgba(255,255,255,0.9); justify-content: center;
}
.microtrust .item { display:inline-flex; align-items:flex-start; gap:0.5rem; }
.microtrust .item b { color: var(--white); font-weight: 700; }
.microtrust .item span { line-height: 1.45; }
.microtrust .mark { display: inline-block; width: 8px; height: 8px; background: var(--amber); border-radius: 0; flex-shrink: 0; margin-top: 0.4em; }

/* ==========================================================================
   Problem section
   ========================================================================== */
.problem .wrap { max-width: 860px; }
.problem h2 { margin: 0.8rem 0 1.4rem; }
.problem p + p { margin-top: 1.1rem; }
.problem .punch {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  color: var(--ink);
  margin-top: 2rem; padding: 1.4rem 1.8rem;
  border-left: 5px solid var(--amber);
  background: var(--white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ==========================================================================
   Packages
   ========================================================================== */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.pkg {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: flex; flex-direction: column;
  border: 2px solid var(--ink);
  box-shadow: 4px 5px 0 0 rgba(42, 61, 24, 0.3);
  position: relative;
}
.pkg--featured {
  border-color: var(--amber);
  box-shadow: 4px 5px 0 0 rgba(232, 135, 58, 0.35);
}
.pkg--secure {
  border-color: var(--green);
  box-shadow: 4px 5px 0 0 rgba(74, 104, 50, 0.35);
}
.pkg .tag {
  position:absolute; top:-13px; left: 1.8rem;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: var(--amber);
  padding: 0.35rem 0.8rem; border-radius: 2px;
  box-shadow: 3px 3px 0 0 var(--amber-dk);
}
.pkg .tag.tag--green {
  background: var(--green);
  box-shadow: 3px 3px 0 0 var(--green-dk);
}
.pkg .tag.tag--ink {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 3px 3px 0 0 var(--ink);
}
.pkg h3 { margin-bottom: 0.4rem; }
.pkg .pkg-sub { font-size: 0.98rem; color: var(--ink-faint); margin-bottom: 1.3rem; min-height: 2.8em; }
.pkg .pkg-for { font-size: 0.93rem; color: var(--ink-soft); margin-bottom: 1rem; line-height: 1.55; }
.pkg-features-label { display: block; font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--green); margin-top: 1.4rem; margin-bottom: 0.6rem; }
.pkg ul { margin-bottom: 1.6rem; flex-grow: 1; }
.pkg li { position: relative; padding-left: 1.6rem; margin-bottom: 0.6rem; font-size: 0.97rem; }
.pkg li::before {
  content: "→";
  position:absolute; left:0;
  color: var(--green); font-weight: 700; font-size: 0.85rem;
}
.pkg li.pkg-more { color: var(--ink-soft); font-style: italic; }
.pkg li.pkg-more::before { content: ''; padding-left: 0; }
.pkg .pkg-foot { font-size: 0.84rem; color: var(--ink-faint); border-top: 1px solid var(--line); padding-top: 1rem; margin-top: auto; }
.pkg > .btn { margin-top: auto; }

/* ==========================================================================
   NIS2 band (dark)
   ========================================================================== */
.nis2-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.nis2 h2 { margin: 0.9rem 0 1.2rem; }
.nis2 .lead { margin-bottom: 1.8rem; }
.nis2-badge {
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 2rem;
}
.nis2-badge .big { font-family: var(--font-display); font-size: 3.2rem; color: var(--amber-lt); line-height: 1; }
.nis2-badge .big-label { color: var(--dark-head); font-weight: 600; margin: 0.5rem 0 1.3rem; }
.nis2-badge ul li {
  position: relative; padding-left: 1.5rem; margin-bottom: 0.65rem;
  font-size: 0.95rem; color: var(--line-2);
}
.nis2-badge ul li::before { content: "→"; position:absolute; left:0; color: var(--amber-lt); font-weight:700; }

/* ==========================================================================
   Process / steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.steps.steps--5 { grid-template-columns: repeat(5, 1fr); }
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  border: 2px solid var(--line);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.step .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--green-wash);
  -webkit-text-stroke: 2px var(--green);
  line-height: 1;
  display: block;
  margin-bottom: 0.9rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.95rem; }

/* ==========================================================================
   Team
   ========================================================================== */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.6rem; }
.person {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex; gap: 1.3rem; align-items: flex-start;
  border: 2px solid var(--line);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.person .ph {
  flex-shrink: 0; width: 88px; height: 88px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--green-wash);
  border: 2px solid var(--line);
  position: relative;
}
.person .ph img { width:100%; height:100%; object-fit: cover; }
.person .ph::after {
  content: attr(data-initial);
  position:absolute; inset:0; z-index:1;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-size: 2rem; font-weight:400; color: var(--green);
}
.person .ph img { position:relative; z-index:2; }
.person h3 { margin-bottom: 0.2rem; }
.person .role {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber-dk); margin-bottom: 0.6rem; display: block;
}
.person p { font-size: 0.95rem; }
.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber-dk);
  text-decoration: none;
  margin-top: 0.75rem;
  letter-spacing: 0.01em;
}
.linkedin-link svg {
  fill: var(--amber-dk);
  flex-shrink: 0;
}
.linkedin-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================================
   Reasons / value cards
   ========================================================================== */
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.reasons--4 { grid-template-columns: repeat(4, 1fr); }
.reason {
  padding: 1.8rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 2px solid var(--line);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.reason:nth-child(1) .icon { background: var(--amber-wash); }
.reason:nth-child(2) .icon { background: var(--green-wash); }
.reason:nth-child(3) .icon { background: var(--butter); }
.reason:nth-child(4) .icon { background: var(--cream-2); }
.reason .icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  border: 1.5px solid var(--line);
}
.reason:nth-child(1) .icon svg { stroke: var(--amber-dk); }
.reason:nth-child(2) .icon svg { stroke: var(--green-dk); }
.reason:nth-child(3) .icon svg { stroke: var(--amber); }
.reason:nth-child(4) .icon svg { stroke: var(--green); }
.reason .icon svg { width: 24px; height: 24px; }
.reason h3 { font-size: 1.2rem; margin-bottom: 0.45rem; }
.reason p { font-size: 0.96rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  transition: border-color .15s;
  overflow: hidden;
}
.faq-item[open] { border-color: var(--green); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 1.2rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.12rem; font-weight: 400; color: var(--ink);
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex-shrink: 0; width: 26px; height: 26px;
  background: var(--green-wash);
  border: 1.5px solid var(--line-2);
  border-radius: 2px;
  position: relative; transition: background .15s;
}
.faq-item[open] summary .plus {
  background: var(--green);
  border-color: var(--green);
}
.faq-item summary .plus::before,
.faq-item summary .plus::after {
  content:""; position:absolute; background: var(--green);
  transition: .15s;
}
.faq-item[open] summary .plus::before,
.faq-item[open] summary .plus::after {
  background: var(--white);
}
.faq-item summary .plus::before { width:12px; height:2px; top:11px; left:6px; }
.faq-item summary .plus::after { width:2px; height:12px; top:6px; left:11px; }
.faq-item[open] summary .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item .faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.faq-item[open] .faq-body {
  grid-template-rows: 1fr;
}
.faq-item .faq-body-inner {
  overflow: hidden;
  padding: 0 1.4rem 1.3rem;
  font-size: 0.98rem;
}
.faq-item .faq-body-inner p { max-width: 68ch; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 22ch; margin: 0.9rem auto 1rem; }
.cta-band p { margin: 0 auto 2rem; }
.cta-band .hero-actions { justify-content: center; }

/* ==========================================================================
   Pricing-model explainer
   ========================================================================== */
.pricing-model {
  background: var(--cream);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid; grid-template-columns: 1fr auto;
  gap: 2rem; align-items: center;
  box-shadow: var(--shadow);
}
.pricing-model h2 { margin-bottom: 0.9rem; }

/* ==========================================================================
   Inner page hero
   ========================================================================== */
.page-hero { padding-block: clamp(1.6rem, 3.5vw, 3rem) clamp(2rem, 4vw, 3rem); }
.page-hero h1 { margin: 0.9rem 0 1rem; max-width: 18ch; }
.page-hero .lead { max-width: 60ch; }

/* ==========================================================================
   Location / Town grid
   ========================================================================== */
.towns-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.4rem;
}
.town-card {
  background: var(--white); border: 2px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.4rem; text-decoration: none; color: var(--ink);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
  display: block;
}
.town-card .town-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); margin-bottom: 0.35rem; }
.town-card .town-tag {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green); display: inline-block; margin-bottom: 0.6rem;
}
.town-card p { font-size: 0.92rem; color: var(--ink-soft); max-width: 100%; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: linear-gradient(160deg, var(--dark-bg) 0%, var(--dark-bg-dk) 100%);
  color: var(--line-2); padding-block: 4rem 2rem; font-size: 0.93rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer .footer-tag { margin: 0.9rem 0 0; max-width: 34ch; color: var(--dark-muted); }
.site-footer h4 {
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem;
}
.site-footer a { color: var(--line-2); text-decoration: none; }
.site-footer a:hover { color: var(--amber-lt); }
.site-footer .btn--primary { color: var(--white); }
.site-footer .btn--primary:hover { color: var(--white); }
.site-footer ul li { margin-bottom: 0.55rem; }
.footer-bottom {
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:1rem;
  padding-top: 1.6rem; font-size: 0.84rem; color: var(--ink-faint);
}
.footer-bottom a { color: var(--ink-faint); }


/* ==========================================================================
   Vacature page specific
   ========================================================================== */
.vacature-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  max-width: 720px;
  box-shadow: var(--shadow);
}
.vacature-card .vac-meta {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.6rem;
}
.vacature-card .tag {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 2px; border: 1.5px solid;
}
.tag--green { color: var(--green-dk); border-color: var(--green); background: var(--green-wash); }
.tag--amber { color: var(--amber-dk); border-color: var(--amber); background: var(--amber-wash); }
.vacature-card h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.vacature-card .vac-sub { font-size: 1.05rem; color: var(--ink-faint); margin-bottom: 1.6rem; }
.vacature-card ul { margin: 1.2rem 0 1.6rem; }
.vacature-card li { position: relative; padding-left: 1.5rem; margin-bottom: 0.55rem; font-size: 0.97rem; }
.vacature-card li::before { content: "→"; position:absolute; left:0; color: var(--green); font-weight:700; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .22s ease, transform .22s ease;
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Copy to clipboard
   ========================================================================== */
.copy-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  position: relative;
}
.copy-wrap:hover .copy-btn { opacity: 1; }
.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--green-wash);
  border: 1.5px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
  opacity: 0;
  transition: opacity .15s ease, background .15s ease;
  flex-shrink: 0;
}
.copy-btn:hover { background: var(--green); }
.copy-btn:hover svg { stroke: var(--white); }
.copy-btn svg {
  width: 12px; height: 12px;
  stroke: var(--green-dk);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.copy-toast {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 3px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 10;
}
.copy-toast.show { opacity: 1; }
.site-footer .copy-btn {
  opacity: 0.5;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.site-footer .copy-btn svg { stroke: var(--line-2); }
.site-footer .copy-wrap:hover .copy-btn { opacity: 1; }
.site-footer .copy-toast {
  background: var(--white);
  color: var(--ink);
}

/* ==========================================================================
   Reading progress bar
   ========================================================================== */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: var(--amber);
  z-index: 200;
  transition: width .1s linear;
  pointer-events: none;
  box-shadow: 0 0 6px rgba(232,135,58,0.5);
}

/* ==========================================================================
   Terug naar boven
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.8rem;
  z-index: 99;
  width: 44px; height: 44px;
  background: var(--amber);
  border: 2px solid var(--amber-dk);
  border-radius: var(--radius-sm);
  box-shadow: 4px 4px 0 0 var(--amber-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, background .14s ease;
  text-decoration: none;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--amber-dk);
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 0 var(--amber-dk);
}
.back-to-top svg {
  width: 18px; height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 720px) {
  .towns-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer .btn--primary { width: auto; display: inline-flex; }
}

/* section--paper2 alias (legacy HTML uses this class) */
.section--paper2 { background: linear-gradient(180deg, #f2f7e8, #eef4e0); }



/* Feature list — icon + text, used on printer page */
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem; }
.feature-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white); border: 2px solid var(--line);
  border-radius: var(--radius); padding: 1.3rem;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.feature-item .fi-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--green-wash); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.feature-item .fi-icon svg { width: 20px; height: 20px; stroke: var(--green-dk); }
.feature-item h4 { font-family: var(--font-body); font-size: 0.97rem; font-weight: 700; color: var(--ink); margin-bottom: 0.2rem; }
.feature-item p { font-size: 0.9rem; max-width: 100%; }

/* Problem list — used for "the toner trap" section */
.problem-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.6rem; }
.problem-item {
  background: var(--white); border: 2px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1.3rem;
}
.problem-item h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 0.2rem; }
.problem-item p { font-size: 0.9rem; max-width: 100%; }

/* Project type cards */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2rem; }
.project-card {
  background: var(--white); border: 2px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem 1.6rem;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.project-card .pc-num {
  font-family: var(--font-display);
  font-size: 2.8rem; line-height: 1;
  color: var(--green-wash);
  -webkit-text-stroke: 2px var(--green-lt);
  display: block; margin-bottom: 1rem;
}
.project-card h3 { margin-bottom: 0.45rem; }
.project-card p { font-size: 0.95rem; }

/* How it works — horizontal numbered steps (printer page) */
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: howstep; }
.how-step {
  background: var(--white); border: 2px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem 1.3rem;
  position: relative;
}
.how-step::before {
  counter-increment: howstep;
  content: counter(howstep);
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 400;
  color: var(--white); background: var(--green);
  width: 24px; height: 24px; border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.9rem;
}
.how-step h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; }
.how-step p { font-size: 0.9rem; max-width: 100%; }


/* ==========================================================================
   Reviews / testimonials
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.review-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.review-card blockquote {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  flex-grow: 1;
  border: none;
  padding: 0;
  margin: 0;
}
.review-card .stars {
  display: flex;
  gap: 3px;
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
}
.review-card .avatar-r {
  width: 42px; height: 42px;
  border-radius: 4px;
  background: var(--green-wash);
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-weight: 700; font-size: 1rem;
  color: var(--green-dk);
  flex-shrink: 0;
}
.review-card .reviewer-info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}
.review-card .reviewer-info span {
  font-size: 0.82rem;
  color: var(--ink-faint);
}
.review-source {
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.review-source::before {
  content: "★";
  color: var(--amber);
}

/* Compact review strip (2 reviews side by side, used on Over page) */
.reviews-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}
.review-compact {
  background: var(--white);
  border: 2px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.3rem 1.4rem;
}
.review-compact blockquote {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 0.8rem;
  border: none;
  padding: 0;
}
.review-compact .stars { color: var(--amber); font-size: 0.85rem; margin-bottom: 0.4rem; }
.review-compact strong { font-size: 0.88rem; color: var(--ink); display: block; }
.review-compact span { font-size: 0.8rem; color: var(--ink-faint); }

/* ==========================================================================
   Timeline steps (replaces 3-column step cards)
   ========================================================================== */
.timeline {
  position: relative;
  margin-top: 2.4rem;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 28px;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--green-lt), var(--line));
  z-index: 0;
}
.timeline-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.timeline-step {
  padding-right: 2rem;
}
.timeline-step .ts-num {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
  box-shadow: 4px 4px 0 0 var(--green-dk);
}
.timeline-step h3 {
  font-size: 1.18rem;
  margin-bottom: 0.45rem;
}
.timeline-step p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* 4-step timeline variant (Copilot section) */
.timeline-steps--4 { grid-template-columns: repeat(4, 1fr); }
/* 5-step timeline variant */
.timeline-steps--5 { grid-template-columns: repeat(5, 1fr); }

/* ==========================================================================
   Horizontal reasons strip (replaces 3 reason cards)
   ========================================================================== */
.reasons-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2.4rem;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.reason-item {
  padding: 2rem 1.8rem;
  border-right: 2px solid var(--line);
  background: var(--white);
  position: relative;
}
.reason-item:last-child { border-right: none; }
.reason-item .ri-num {
  font-family: var(--font-display);
  font-size: 3.8rem;
  line-height: 1;
  color: var(--green-wash);
  -webkit-text-stroke: 2px var(--line-2);
  display: block;
  margin-bottom: 0.6rem;
  transition: color .2s ease, -webkit-text-stroke .2s ease;
}
.reason-item h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.reason-item p { font-size: 0.95rem; max-width: 100%; }
.reason-item .ri-tag {
  position: absolute;
  top: 1.8rem; right: 1.8rem;
  width: 36px; height: 36px;
  background: var(--green-wash);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line);
}
.reason-item .ri-tag svg { width: 18px; height: 18px; stroke: var(--green-dk); }

/* ==========================================================================
   Print band (inline homepage promotion)
   ========================================================================== */
.print-band {
  background: linear-gradient(135deg, var(--dark-bg-dk) 0%, var(--dark-bg) 100%);
  border-radius: var(--radius);
  padding: 2.2rem 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-block: var(--pad-section);
  border: none;
}
.print-band .pb-left { flex: 1; }
.print-band .pb-icon {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.print-band h3 {
  font-family: var(--font-display);
  color: var(--dark-head);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  margin-bottom: 0.5rem;
}
.print-band p {
  color: var(--dark-muted);
  font-size: 0.98rem;
  max-width: 52ch;
}
.print-band .pb-right { flex-shrink: 0; }

/* ========== Media queries ========== */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero::before { display: none; }
  .hero-visual { width: 100%; max-width: 320px; margin-inline: auto; margin-top: 2rem; }
  .hero-photo { width: 100%; min-height: 300px; box-shadow: 6px 7px 0 0 rgba(96, 125, 59, 0.35); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  /* Hide floating stickers on tablet/mobile — they overflow */
  .hero-sticker { display: none; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .steps, .steps.steps--5, .reasons, .reasons--4 { grid-template-columns: 1fr; }
  .timeline-steps--4 { grid-template-columns: repeat(2, 1fr); }
  .nis2-grid, .team-grid, .media-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .media-band.flip .media-text { order: 0; }
  .nav-links {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--green-dk);
    border-bottom: 2px solid var(--green);
    padding: 1rem 1.5rem 1.5rem;
    transform: translateY(-130%); transition: transform .25s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 0.85rem 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-toggle { display: block; }
  .nav-cta .btn--ghost { display: none; }
  .pricing-model { grid-template-columns: 1fr; }
  .feature-list, .problem-list { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-compact { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .timeline-steps,
  .timeline-steps--5 { grid-template-columns: 1fr; gap: 1.2rem; }
  .timeline-step { padding-right: 0; }
  .reasons-strip { grid-template-columns: 1fr; border-radius: var(--radius-sm); }
  .reason-item { border-right: none; border-bottom: 2px solid var(--line); }
  .reason-item:last-child { border-bottom: none; }
  .print-band { flex-direction: column; align-items: flex-start; }
  .print-band .pb-right .btn { width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
  .microtrust .wrap { flex-direction: column; align-items: stretch; gap: 0.4rem; }
  .microtrust .item { display: block; text-align: center; }
  .microtrust .mark { display: inline-block; margin-right: 0.5rem; vertical-align: 0.1em; margin-top: 0; }
  .packages-grid { grid-template-columns: 1fr; }
  .timeline-steps--4 { grid-template-columns: 1fr; }
  .steps--5 { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .nav-cta .btn { width: auto; }
  .hero-actions .btn { width: 100%; }
  .nav-cta .btn--primary { font-size: 0.88rem; padding: 0.7rem 1.1rem; }
  .towns-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer .btn--primary { width: 100%; }
  .how-steps { grid-template-columns: 1fr; }
  /* Reduce offset shadows on mobile to prevent overflow */
  .btn--primary {
    box-shadow: 3px 4px 0 0 rgba(232, 135, 58, 0.4);
  }
  .hero-photo {
    box-shadow: 6px 7px 0 0 rgba(96, 125, 59, 0.35);
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .photo-placeholder {
    min-height: 200px;
  }
}
