/* Bonlijn marketing — demo website */
:root {
  --ink: #152018;
  --ink-soft: #3d4a40;
  --paper: #f3efe6;
  --paper-2: #e8e2d4;
  --panel: rgba(255, 252, 246, 0.88);
  --line: rgba(21, 32, 24, 0.12);
  --accent: #c45c26;
  --accent-deep: #9a4418;
  --forest: #1f4d3a;
  --forest-soft: #2f6b52;
  --shadow: 0 18px 50px rgba(21, 32, 24, 0.12);
  --radius: 14px;
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
  --shell: min(1120px, calc(100% - 2.5rem));
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(47, 107, 82, 0.18), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(196, 92, 38, 0.12), transparent 50%),
    linear-gradient(180deg, #efe9dc 0%, var(--paper) 40%, #ebe4d6 100%);
  line-height: 1.55;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
}
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(243, 239, 230, 0.82);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.03em;
  min-width: 0;
}

.brand__text {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  min-width: 0;
}

.brand__name { font-size: 1.15rem; }
.brand__tag {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0;
  white-space: nowrap;
}
.brand__mark { border-radius: 8px; flex-shrink: 0; }

.brand--footer .brand__name { font-size: 1.05rem; }
.brand--footer .brand__tag { font-size: 0.75rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.1rem;
}

.site-nav__link {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav__link:hover,
.site-nav__link.is-current {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

.site-nav__actions {
  display: flex;
  gap: 0.5rem;
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font: 600 0.95rem/1 var(--font-sans);
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--accent);
  color: #fffaf4;
}
.btn--primary:hover { background: var(--accent-deep); }
.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover { background: rgba(255,255,255,0.55); }
.btn--light {
  background: #fffdf9;
  color: var(--forest);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn--light:hover { background: #fff; }
.btn--on-dark {
  border-color: rgba(247, 242, 232, 0.4);
  color: #f7f2e8;
}
.btn--on-dark:hover { background: rgba(255, 255, 255, 0.1); }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  padding: 4.5rem 0 3.5rem;
}

.hero--home {
  align-items: center;
  justify-items: center;
  text-align: center;
  min-height: min(72vh, 640px);
  padding: 5rem 0 4rem;
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(15, 28, 20, 0.88) 0%, rgba(31, 77, 58, 0.75) 45%, rgba(15, 28, 20, 0.92) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='900' viewBox='0 0 1600 900'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop stop-color='%231f4d3a'/%3E%3Cstop offset='1' stop-color='%230f1c14'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1600' height='900' fill='url(%23g)'/%3E%3Cg fill='none' stroke='%23c45c26' stroke-opacity='0.35' stroke-width='2'%3E%3Cpath d='M0 620 C280 520 420 740 720 640 S1200 480 1600 560'/%3E%3Cpath d='M0 700 C320 620 500 780 820 700 S1280 580 1600 660'/%3E%3C/g%3E%3Ccircle cx='1180' cy='220' r='160' fill='%23c45c26' fill-opacity='0.12'/%3E%3C/svg%3E") center/cover no-repeat;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

.hero__content { max-width: 36rem; color: #f7f2e8; }
.hero__content--center {
  max-width: 46rem;
  margin-inline: auto;
}

.hero .brand-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  animation: rise 0.7s ease both;
}
.hero .brand-hero__name {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero--home h1 {
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 600;
  color: #fffdf9;
  margin-bottom: 1rem;
  animation: rise 0.75s ease both;
  line-height: 1.12;
}

.hero h1 {
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  font-weight: 500;
  color: #f3ebe0;
  margin-bottom: 0.85rem;
  animation: rise 0.8s ease 0.08s both;
}

.hero .lede,
.hero__lede {
  color: rgba(247, 242, 232, 0.9);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 38rem;
  margin-inline: auto;
  animation: rise 0.85s ease 0.1s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
  animation: rise 0.9s ease 0.2s both;
}

.hero__actions--center {
  justify-content: center;
  margin-top: 2rem;
}

.hero__actions .btn {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.hero .btn--ghost {
  border-color: rgba(247, 242, 232, 0.35);
  color: #f7f2e8;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.section {
  padding: 4.5rem 0;
}
.section--tight { padding: 3rem 0; }
.section__head {
  max-width: 38rem;
  margin-bottom: 2rem;
}
.section__head--center {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}
.section__head--center .lede {
  margin-bottom: 0;
}
.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-soft);
  margin-bottom: 0.5rem;
}
.lede { color: var(--ink-soft); font-size: 1.05rem; }

.feature-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid--cards {
  gap: 1.5rem;
}

.feature-card {
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 24px rgba(21, 32, 24, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.feature-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.feature-card__text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.pricing-teaser {
  background: linear-gradient(135deg, rgba(31, 77, 58, 0.08), rgba(196, 92, 38, 0.08));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 2.5rem 2rem;
  text-align: center;
}

.pricing-teaser__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.pricing-teaser__text {
  color: var(--ink-soft);
  margin: 0 auto 1.25rem;
  max-width: 28rem;
}

.page-home .site-footer {
  margin-top: 0;
}
.feature-block {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  box-shadow: var(--shadow);
}
.feature-block h2,
.feature-block h3 { font-size: 1.35rem; }

.check-list { margin-top: 1rem; }
.check-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.45rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--forest);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}
.price-tier {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.price-tier--featured {
  border-color: rgba(196, 92, 38, 0.45);
  background: linear-gradient(180deg, #fff8f1, #fffdf9);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.price-tier__name { font-size: 1.25rem; }
.price-tier__amount {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  letter-spacing: -0.03em;
}
.price-tier__period { color: var(--ink-soft); font-size: 0.95rem; }
.price-tier .btn { margin-top: auto; align-self: flex-start; }

.cta-band {
  padding: 3rem 0 4.5rem;
}
.cta-band__inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(120deg, var(--forest), #163628 55%, #2a241c);
  color: #f7f2e8;
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem 1.8rem;
  box-shadow: var(--shadow);
}
.cta-band__title { color: #fff; font-size: 1.7rem; }
.cta-band__text { color: rgba(247, 242, 232, 0.85); margin: 0; }
.cta-band__actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.cta-band .btn--ghost {
  border-color: rgba(247, 242, 232, 0.35);
  color: #f7f2e8;
}

.page-hero {
  padding: 3.5rem 0 1.5rem;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.prose {
  max-width: 42rem;
  color: var(--ink-soft);
}
.prose h2 { margin-top: 2rem; color: var(--ink); font-size: 1.4rem; }
.prose h3 { margin-top: 1.25rem; color: var(--ink); font-size: 1.1rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin: 0.35rem 0; }
.form-panel {
  max-width: 32rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.form-panel label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0.85rem 0 0.35rem;
}
.form-panel input,
.form-panel textarea,
.form-panel select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  background: #fffdf9;
}
.form-panel textarea { min-height: 8rem; resize: vertical; }
.form-panel .btn { margin-top: 1.1rem; }
.form-note {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.ok {
  background: #e5f3ea;
  color: #184b2f;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.err {
  background: #f8e6e2;
  color: #7a2a18;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.5rem;
  background: rgba(255, 252, 246, 0.55);
  margin-top: 2rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1.5rem;
}
.site-footer__heading {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.site-footer__list a {
  text-decoration: none;
  color: var(--ink-soft);
  display: inline-block;
  margin-bottom: 0.4rem;
}
.site-footer__list a:hover { color: var(--ink); }
.site-footer__tagline { color: var(--ink-soft); margin-top: 0.6rem; max-width: 18rem; }
.site-footer__bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.site-footer__legal {
  margin-top: 0.75rem;
  max-width: 52rem;
  line-height: 1.45;
  font-size: 0.85rem;
}
.site-footer__legal a {
  color: inherit;
  text-decoration: underline;
}
.site-footer__legal a:hover {
  color: var(--ink);
}

@media (max-width: 900px) {
  .feature-grid,
  .feature-grid--cards,
  .price-grid,
  .site-footer__grid { grid-template-columns: 1fr; }
  .hero--home {
    min-height: auto;
    padding: 3.5rem 0 3rem;
  }
  .hero__actions--center {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions--center .btn {
    width: 100%;
  }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    top: 4.4rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem;
    background: #fffdf8;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav__actions {
    margin: 0.5rem 0 0;
    flex-direction: column;
  }
  .site-header { position: relative; }
  .price-tier--featured { transform: none; }
}

@media (min-width: 601px) and (max-width: 900px) {
  .feature-grid--cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
