:root {
  --ink: #121c22;
  --muted: #5c6568;
  --paper: #f8f7f2;
  --soft: #ebe8df;
  --mint: #d9e2df;
  --sage: #60716f;
  --forest: #102c34;
  --clay: #9a6748;
  --gold: #b89857;
  --white: #ffffff;
  --line: rgba(18, 28, 34, .12);
  --shadow: 0 18px 60px rgba(18, 28, 34, .16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(250, 249, 245, .9);
  border-bottom: 1px solid rgba(36, 48, 47, .1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 13px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.main-nav a:hover {
  background: rgba(16, 44, 52, .08);
  color: var(--forest);
}

.main-nav .nav-cta {
  background: var(--forest);
  color: var(--white);
}

.main-nav .nav-cta:hover {
  background: var(--clay);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(36, 48, 47, .16);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(96px, 12vw, 150px) clamp(20px, 6vw, 90px) clamp(32px, 7vw, 80px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 23, 30, .9), rgba(8, 23, 30, .62) 48%, rgba(8, 23, 30, .16));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 28%;
}

.hero-content {
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.deep .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: .98;
}

h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}

.intro {
  max-width: 660px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(18px, 2.1vw, 24px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  isolation: isolate;
  overflow: hidden;
  padding: 12px 18px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:focus-visible,
.coffee-link:focus-visible,
.scratch-item:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.button::after {
  content: "";
  position: absolute;
  inset: -45% -35%;
  z-index: -1;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 247, 210, .72) 50%, transparent 65%);
  transform: translateX(-120%) rotate(8deg);
  transition: transform .8s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translateX(120%) rotate(8deg);
}

.button.primary {
  background: linear-gradient(135deg, #8c573d, #b98756);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(92, 53, 33, .32);
}

.button.primary:hover {
  box-shadow: 0 20px 46px rgba(92, 53, 33, .38);
}

.button.secondary {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .35);
  color: var(--white);
}

.contact .button.secondary {
  background: var(--white);
  border-color: rgba(36, 48, 47, .16);
  color: var(--ink);
}

.hero-card {
  width: min(100%, 390px);
  justify-self: end;
  padding: 24px;
  background: rgba(250, 249, 245, .94);
  border: 1px solid rgba(200, 167, 99, .35);
  border-top: 4px solid rgba(200, 167, 99, .8);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.hero-card span {
  color: var(--muted);
}

.section {
  position: relative;
  padding: clamp(70px, 9vw, 128px) clamp(20px, 6vw, 90px);
  scroll-margin-top: 86px;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(20px, 6vw, 90px);
  right: clamp(20px, 6vw, 90px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.text-block {
  color: var(--muted);
  font-size: 19px;
}

.fit-check {
  padding-top: clamp(92px, 10vw, 148px);
  padding-bottom: clamp(86px, 10vw, 138px);
  background:
    linear-gradient(180deg, var(--paper), var(--soft));
}

.fit-check .section-heading {
  margin-bottom: clamp(42px, 6vw, 66px);
}

.scratch-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1060px;
  margin: 0 auto;
}

.scratch-board::after {
  content: attr(data-count-label);
  position: absolute;
  top: -50px;
  right: 0;
  border: 1px solid rgba(20, 45, 40, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: var(--forest);
  font-size: 13px;
  font-weight: 850;
  padding: 8px 12px;
}

.scratch-item {
  position: relative;
  min-height: 112px;
  border: 1px solid rgba(20, 45, 40, .16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(244, 242, 236, .96)),
    repeating-linear-gradient(-12deg, transparent 0 9px, rgba(20, 45, 40, .025) 10px 11px);
  box-shadow: 0 12px 34px rgba(23, 35, 33, .06);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 17px;
  font-weight: 820;
  line-height: 1.35;
  overflow: hidden;
  padding: 20px;
  text-align: left;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.scratch-item::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .36), transparent 58%),
    rgba(215, 225, 220, .2);
  pointer-events: none;
  transform: translateX(0);
  transition: transform .5s ease, opacity .35s ease;
}

.scratch-item::after {
  content: "✓";
  position: absolute;
  right: 18px;
  bottom: 13px;
  color: var(--clay);
  font-size: 22px;
  font-weight: 900;
  opacity: 0;
  transform: scale(.7) rotate(-8deg);
  transition: opacity .2s ease, transform .2s ease;
}

.scratch-item:hover {
  border-color: rgba(139, 96, 73, .5);
  transform: translateY(-2px);
}

.scratch-item.is-scratched {
  color: rgba(31, 45, 43, .52);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(159, 107, 79, .72);
}

.scratch-item.is-scratched::before {
  opacity: 0;
  transform: translateX(105%);
}

.scratch-item.is-scratched::after {
  opacity: 1;
  transform: scale(1) rotate(-8deg);
}

.warm {
  background: var(--soft);
}

.deep {
  background: var(--forest);
  color: var(--white);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading.narrow {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.deep .section-heading p {
  color: rgba(255, 255, 255, .76);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.five {
  grid-template-columns: repeat(5, minmax(180px, 1fr));
}

.panel,
.mini-card,
.faq details,
.contact-form {
  background: var(--white);
  border: 1px solid rgba(36, 48, 47, .1);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(36, 48, 47, .08);
}

.panel,
.mini-card,
.faq details {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.panel:hover,
.mini-card:hover,
.faq details:hover {
  border-color: rgba(159, 107, 79, .22);
  box-shadow: 0 18px 48px rgba(36, 48, 47, .11);
  transform: translateY(-2px);
}

.panel {
  min-height: 320px;
  padding: clamp(24px, 4vw, 42px);
}

.panel.accent {
  background: linear-gradient(145deg, #102c34, #1a3e46);
  color: var(--white);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--clay);
  font-weight: 900;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list span {
  border-radius: 999px;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .13);
  padding: 9px 12px;
}

.proof {
  background:
    linear-gradient(180deg, rgba(248, 247, 242, .98), rgba(235, 232, 223, .9));
}

.proof-scene {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(280px, .95fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: stretch;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.proof-photo {
  position: relative;
  margin: 0;
}

.proof-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: 46% 50%;
}

.proof-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: min(360px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: rgba(8, 23, 30, .78);
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  padding: 10px 12px;
  backdrop-filter: blur(12px);
}

.proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(16, 44, 52, .98), rgba(23, 39, 36, .96));
  box-shadow: 0 18px 54px rgba(18, 28, 34, .13);
  color: var(--white);
  padding: clamp(28px, 5vw, 54px);
}

.proof-copy .eyebrow {
  color: var(--gold);
}

.proof-copy h3 {
  max-width: 640px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 500;
  line-height: 1.05;
}

.proof-copy p {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.signal-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  position: relative;
  color: rgba(255, 255, 255, .82);
  font-weight: 720;
  padding-left: 24px;
}

.signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid article {
  min-height: 174px;
  padding: 24px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(36, 48, 47, .11);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(36, 48, 47, .06);
}

.proof-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1;
}

.proof-grid span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.feature-row img,
.portrait img,
.image-band img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.feature-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.feature-content p {
  color: var(--muted);
  font-size: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stats div {
  min-height: 104px;
  padding: 18px;
  background: #edf2f0;
  border: 1px solid rgba(16, 44, 52, .1);
  border-radius: var(--radius);
}

.stats strong {
  display: block;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps article {
  min-height: 280px;
  padding: 30px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  background: var(--gold);
  border-radius: 50%;
  color: var(--forest);
  font-weight: 900;
}

.steps p {
  color: rgba(255, 255, 255, .78);
}

.wandelgebied {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: end;
  padding: clamp(90px, 10vw, 150px) clamp(20px, 6vw, 90px);
  scroll-margin-top: 86px;
  overflow: hidden;
}

.wandelgebied::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 23, 30, .9), rgba(8, 23, 30, .5) 54%, rgba(8, 23, 30, .14));
}

.wandelgebied-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.wandelgebied-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wandelgebied-content {
  max-width: 760px;
  color: var(--white);
}

.wandelgebied-content .eyebrow {
  color: var(--gold);
}

.wandelgebied-content p {
  color: rgba(255, 255, 255, .78);
  font-size: 19px;
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(280px, 760px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.portrait {
  position: relative;
}

.portrait::before,
.portrait::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 2px solid rgba(159, 107, 79, .72);
  border-radius: calc(var(--radius) + 4px);
}

.portrait::before {
  inset: -14px auto auto -14px;
  width: 42%;
  height: 34%;
  border-right: 0;
  border-bottom: 0;
}

.portrait::after {
  right: -14px;
  bottom: -14px;
  width: 46%;
  height: 38%;
  border-left: 0;
  border-top: 0;
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-position: 50% 48%;
}

.crossed {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.crossed::after {
  content: "";
  position: absolute;
  left: -.08em;
  right: -.08em;
  top: 54%;
  height: .08em;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--clay) 14%, var(--clay) 86%, transparent);
  transform: scaleX(0) rotate(-5deg);
  transform-origin: left center;
}

.about.in-view .crossed::after,
.about:hover .crossed::after,
.about:target .crossed::after {
  animation: strike .8s cubic-bezier(.2, .9, .2, 1) forwards;
}

.about.in-view .crossed:nth-of-type(2)::after,
.about:hover .crossed:nth-of-type(2)::after,
.about:target .crossed:nth-of-type(2)::after {
  animation-delay: .18s;
}

@keyframes strike {
  to {
    transform: scaleX(1) rotate(-5deg);
  }
}

.about p {
  color: var(--muted);
  font-size: 18px;
}

.coffee-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 18px;
  border: 1px solid rgba(139, 96, 73, .38);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(238, 235, 227, .9));
  box-shadow: 0 14px 34px rgba(23, 35, 33, .08);
  color: var(--forest);
  font-weight: 850;
  overflow: hidden;
  padding: 8px 18px 8px 10px;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.coffee-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(184, 154, 90, .16), transparent 34%);
  opacity: .8;
  pointer-events: none;
}

.coffee-link:hover {
  border-color: rgba(139, 96, 73, .7);
  box-shadow: 0 18px 44px rgba(23, 35, 33, .12);
  transform: translateY(-2px);
}

.coffee-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eadfce;
  box-shadow: inset 0 0 0 1px rgba(139, 96, 73, .22);
}

.coffee-icon::before {
  content: "";
  width: 14px;
  height: 10px;
  border: 2px solid var(--forest);
  border-right-width: 3px;
  border-radius: 0 0 7px 7px;
}

.coffee-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  margin-left: 17px;
  border: 2px solid var(--forest);
  border-left: 0;
  border-radius: 0 8px 8px 0;
}

.mini-card {
  position: relative;
  min-height: 180px;
  padding: 22px;
}

.mini-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--clay), var(--gold));
  opacity: .72;
}

.mini-card h3 {
  color: var(--forest);
  font-size: 18px;
}

.mini-card p {
  color: var(--muted);
  font-size: 15px;
}

.faq-list {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  gap: 12px;
}

.faq details {
  padding: 0 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
  padding: 20px 0;
}

.faq details p {
  color: var(--muted);
  margin-bottom: 22px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(320px, 500px);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  padding: clamp(70px, 9vw, 128px) clamp(20px, 6vw, 90px);
  background:
    linear-gradient(90deg, rgba(8, 23, 30, .96), rgba(16, 44, 52, .88)),
    url("assets/coaching-ruimte.png") center / cover;
  color: var(--white);
}

.contact p {
  color: rgba(255, 255, 255, .75);
  font-size: 18px;
}

.contact .contact-meta {
  margin-top: 18px;
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
}

.contact-meta a {
  color: var(--white);
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: clamp(20px, 3vw, 28px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(36, 48, 47, .18);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(20px, 6vw, 90px);
  background: #172724;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1080px) {
  .grid.five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-scene {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }
}

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

  .main-nav {
    position: absolute;
    top: 73px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid rgba(36, 48, 47, .12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .hero,
  .split,
  .grid.two,
  .feature-row,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .scratch-board {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
  }

  .hero-media img {
    object-position: 58% 30%;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(8, 23, 30, .94), rgba(8, 23, 30, .72) 58%, rgba(8, 23, 30, .3));
  }

  .hero-card {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .brand span {
    max-width: 170px;
    line-height: 1.15;
  }

  .hero {
    padding-inline: 18px;
  }

  .section,
  .wandelgebied,
  .contact {
    padding-inline: 18px;
  }

  .stats,
  .grid.five,
  .proof-grid,
  .scratch-board {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .proof-photo img {
    min-height: 300px;
  }

  .proof-photo figcaption {
    position: static;
    max-width: none;
    margin-top: 10px;
    background: rgba(8, 23, 30, .9);
  }
}
