/*
Theme Name: Zevo
Theme URI: https://zevo.nl/
Author: Zevo.nl
Description: Eigen WordPress theme voor Zevo.nl. Alle frontend CSS staat uitsluitend in dit theme.
Version: 1.0.1
Text Domain: zevo
Requires at least: 6.0
Requires PHP: 8.0
*/

:root {
  --orange: #ff5a18;
  --orange-dark: #d93d00;
  --red: #df2e38;
  --green: #008a70;
  --yellow: #f2bd00;
  --ink: #2a2926;
  --muted: #68645e;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: #ddd8cf;
  --soft: #f4f0e8;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 18px 50px rgba(42, 41, 38, .11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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;
}

body.admin-bar .site-header {
  top: 32px;
}

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

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, .95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221, 216, 207, .85);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -.05em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--orange);
  position: relative;
  transform: rotate(-5deg);
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, .08);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--white);
  border-radius: 3px;
}

.brand-mark::before {
  width: 19px;
  height: 6px;
  left: 9px;
  top: 9px;
  transform: rotate(-33deg);
}

.brand-mark::after {
  width: 19px;
  height: 6px;
  left: 10px;
  top: 22px;
  transform: rotate(-33deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.primary-menu,
.primary-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu {
  display: flex;
  gap: 28px;
  align-items: center;
  font-weight: 750;
  font-size: .96rem;
}

.primary-menu a:hover,
.primary-menu a:focus-visible {
  color: var(--orange-dark);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 850;
  border: 2px solid transparent;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
  cursor: pointer;
}

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(255, 90, 24, .22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.button-secondary {
  background: var(--white);
  border-color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--soft);
}

.header-cta {
  flex: 0 0 auto;
}

.hero {
  padding: 78px 0 64px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 62px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 5px;
  border-radius: 9px;
  background: var(--yellow);
}

.eyebrow-on-dark {
  color: #ffd25a;
}

h1,
h2,
h3 {
  line-height: 1.05;
  margin: 0;
  letter-spacing: -.045em;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  max-width: 760px;
}

h1 .accent {
  color: var(--orange);
}

.hero-copy {
  max-width: 680px;
  font-size: 1.18rem;
  color: var(--muted);
  margin: 26px 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  margin-top: 20px;
  font-size: .92rem;
  color: var(--muted);
  font-weight: 650;
}

.visual {
  position: relative;
  min-height: 500px;
}

.shape {
  position: absolute;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.shape-main {
  inset: 45px 32px 40px 38px;
  background: var(--green);
  transform: rotate(4deg);
}

.shape-red {
  width: 190px;
  height: 190px;
  right: -10px;
  top: 0;
  background: var(--red);
  transform: rotate(17deg);
}

.shape-yellow {
  width: 150px;
  height: 150px;
  left: 0;
  bottom: 0;
  background: var(--yellow);
  border-radius: 50%;
}

.visual-card {
  position: absolute;
  z-index: 3;
  left: 70px;
  right: 70px;
  top: 92px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.mini-tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 850;
  font-size: .76rem;
}

.visual-card h3 {
  font-size: 2rem;
  margin: 18px 0 10px;
}

.visual-card p {
  margin: 0;
  color: var(--muted);
}

.choice-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 15px;
  background: var(--soft);
  border-radius: 14px;
  font-weight: 800;
}

.choice span:last-child {
  color: var(--green);
}

.trust-strip {
  padding: 0 0 30px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
}

.trust-item {
  padding: 22px 24px;
  text-align: center;
  font-weight: 850;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item small {
  display: block;
  color: var(--muted);
  font-weight: 650;
  margin-top: 4px;
}

.section {
  padding: 90px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  max-width: 760px;
}

.section-head p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 270px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 950;
  font-size: 1.1rem;
  margin-bottom: 38px;
}

.icon.orange {
  background: var(--orange);
}

.icon.green {
  background: var(--green);
}

.icon.red {
  background: var(--red);
}

.card h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
  margin: 0 0 24px;
}

.text-link {
  font-weight: 900;
  color: var(--orange-dark);
}

.feature {
  background: var(--ink);
  color: var(--white);
  border-radius: 34px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  overflow: hidden;
}

.feature h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
}

.feature p {
  color: #e7e2da;
  font-size: 1.08rem;
  max-width: 600px;
}

.feature-points {
  display: grid;
  gap: 13px;
}

.feature-point {
  background: #3a3834;
  border: 1px solid #4e4b45;
  border-radius: 16px;
  padding: 17px 19px;
  font-weight: 800;
  display: flex;
  gap: 12px;
  align-items: center;
}

.tick {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 950;
}

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

.topic {
  padding: 28px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.topic:hover,
.topic:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.topic h3 {
  font-size: 1.35rem;
  letter-spacing: -.02em;
}

.topic p {
  margin: 7px 0 0;
  color: var(--muted);
}

.arrow {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--soft);
  font-size: 1.4rem;
  font-weight: 900;
}

.cta {
  padding: 40px 0 92px;
}

.cta-box {
  background: var(--orange);
  color: var(--white);
  border-radius: 34px;
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-box h2 {
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  max-width: 650px;
}

.cta-box p {
  margin: 13px 0 0;
  color: #fff2eb;
  max-width: 650px;
}

.cta-box .button {
  background: var(--white);
  color: var(--ink);
  white-space: nowrap;
}

.content-shell {
  padding: 72px 0 92px;
}

.content-layout {
  width: min(100%, 860px);
}

.entry-header {
  margin-bottom: 34px;
}

.entry-title {
  font-size: clamp(2.7rem, 6vw, 5rem);
  overflow-wrap: anywhere;
}

.entry-meta {
  margin-top: 14px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 650;
}

.entry-content {
  font-size: 1.08rem;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin: 1.7em 0 .55em;
}

.entry-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.entry-content h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote {
  margin: 0 0 1.25em;
}

.entry-content a {
  color: var(--orange-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content blockquote {
  margin-inline: 0;
  padding: 18px 22px;
  border-left: 5px solid var(--orange);
  background: var(--soft);
  border-radius: 0 16px 16px 0;
}

.entry-content img {
  border-radius: 18px;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  background: var(--white);
}

.entry-content th,
.entry-content td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  text-align: left;
}

.archive-list {
  display: grid;
  gap: 18px;
}

.archive-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.archive-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin-bottom: 12px;
}

.archive-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.pagination {
  margin-top: 36px;
}

.nav-links.page-numbers,
.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  font-weight: 800;
}

.page-numbers.current {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: fixed !important;
  top: 10px;
  left: 10px;
  z-index: 99999;
  width: auto;
  height: auto;
  padding: 12px 16px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 10px;
}

.site-footer {
  background: #383632;
  color: var(--white);
  padding: 44px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}

.footer-title {
  font-weight: 900;
  margin-bottom: 10px;
}

.footer-copy {
  color: #d8d4cc;
  max-width: 390px;
}

.footer-links {
  display: grid;
  gap: 9px;
  color: #e7e2da;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.copyright {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid #56534d;
  color: #c8c3bb;
  font-size: .88rem;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .nav {
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 0 0 18px 18px;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-menu {
    display: grid;
    gap: 4px;
  }

  .primary-menu a {
    display: block;
    padding: 12px 10px;
    border-radius: 10px;
  }

  .primary-menu a:hover,
  .primary-menu a:focus-visible {
    background: var(--soft);
  }

  .hero {
    padding-top: 48px;
  }

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

  .visual {
    min-height: 430px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

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

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

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

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 600px) {
  body.admin-bar .site-header {
    top: 0;
  }

  .wrap {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero {
    padding-bottom: 42px;
  }

  h1 {
    font-size: 3.35rem;
  }

  .visual {
    min-height: 365px;
  }

  .visual-card {
    left: 26px;
    right: 26px;
    top: 66px;
    padding: 22px;
  }

  .shape-main {
    inset: 35px 8px 22px 18px;
  }

  .shape-red {
    width: 120px;
    height: 120px;
  }

  .shape-yellow {
    width: 110px;
    height: 110px;
  }

  .section {
    padding: 68px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line) !important;
  }

  .trust-item:last-child {
    border-bottom: 0 !important;
  }

  .feature,
  .cta-box {
    padding: 30px 24px;
    border-radius: 26px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
