/* ============================================================
   Belle Beau Glow
   Kleuren en typografie volgens het merkdocument van Edith.
   ============================================================ */

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/cormorant-garamond.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/cormorant-garamond-italic.woff2') format('woff2');
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('/fonts/source-sans-3.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --olive-deep: #3B4A3F;
  --olive-darker: #2C382F;
  --sage: #7A8B6F;
  --sand: #C2B9A7;
  --sand-soft: #DDD6C8;
  --creme: #F1EDE7;
  --creme-warm: #F7F4EF;
  --black: #0B0B0B;
  --gold: #C9A84C;
  --gold-light: #DFC377;
  --copper: #B66A4A;
  --ink: #2F2F2F;
  --ink-soft: #5C5C58;
  --white: #FFFFFF;

  --serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --sans: 'Source Sans 3', 'Avenir Next', Avenir, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --wrap: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 3px;
  --shadow-soft: 0 1px 2px rgba(11, 11, 11, .04), 0 8px 30px rgba(11, 11, 11, .06);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--creme);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, .96rem + .18vw, 1.075rem);
  font-weight: 400;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.005em;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.5rem, 1.7rem + 3.6vw, 4.35rem); }
h2 { font-size: clamp(1.95rem, 1.5rem + 1.9vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 1.15rem + .6vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

em { font-style: italic; }

/* ---------- Layout ---------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 4vw, 3.5rem); }

.section--dark {
  background: var(--black);
  color: var(--creme);
}
.section--olive {
  background: var(--olive-deep);
  color: var(--creme);
}
.section--sand { background: var(--sand-soft); }
.section--warm { background: var(--creme-warm); }

.section--dark h2, .section--olive h2,
.section--dark h3, .section--olive h3 { color: var(--creme); }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 1.1rem;
}
.section--dark .eyebrow, .section--olive .eyebrow { color: var(--gold); }

.lead {
  font-size: 1.12em;
  color: var(--ink-soft);
  max-width: 46ch;
}
.section--dark .lead, .section--olive .lead { color: rgba(241, 237, 231, .78); }

.center { text-align: center; }
.center .lead, .center .eyebrow { margin-inline: auto; }

.rule {
  width: 46px;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 0 0 1.6rem;
}
.center .rule { margin-inline: auto; }

/* ---------- Knoppen ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05em 2.1em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--gold { background: var(--gold); color: var(--black); }
.btn--gold:hover { background: var(--gold-light); }

.btn--outline-light { border-color: rgba(223, 195, 119, .5); color: var(--gold-light); }
.btn--outline-light:hover { border-color: var(--gold); background: rgba(201, 168, 76, .1); }

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

.btn--outline-dark { border-color: rgba(59, 74, 63, .35); color: var(--olive-deep); }
.btn--outline-dark:hover { border-color: var(--olive-deep); background: rgba(59, 74, 63, .06); }

.btn--sm { padding: .8em 1.5em; font-size: .72rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}
.center .btn-row { justify-content: center; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--olive-deep);
  border-bottom: 1px solid rgba(201, 168, 76, .55);
  padding-bottom: .25em;
  transition: border-color .25s ease, color .25s ease;
}
.textlink:hover { color: var(--copper); border-color: var(--copper); }
.section--dark .textlink, .section--olive .textlink { color: var(--gold-light); }
.section--dark .textlink:hover, .section--olive .textlink:hover { color: var(--white); border-color: var(--white); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 1px solid rgba(201, 168, 76, .18);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
  padding-block: .75rem;
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: clamp(26px, 4.4vw, 38px); width: auto; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.1rem); }

.nav a:not(.btn) {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(241, 237, 231, .8);
  transition: color .2s ease;
}
.nav a:not(.btn):hover, .nav a[aria-current="page"] { color: var(--gold); }

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid rgba(201, 168, 76, .4);
  border-radius: var(--radius);
  color: var(--gold);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: .7em 1.1em;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--black);
    border-bottom: 1px solid rgba(201, 168, 76, .18);
    padding: .5rem var(--gutter) 1.5rem;
  }
  .nav[hidden] { display: none; }
  .nav a:not(.btn) { padding: .95rem 0; border-bottom: 1px solid rgba(241, 237, 231, .08); }
  .nav .btn { margin-top: 1.1rem; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--black);
  color: var(--creme);
  overflow: hidden;
  padding-block: clamp(3rem, 6vw, 5.5rem);
}

.hero::before {
  content: '';
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 90%;
  background: radial-gradient(closest-side, rgba(59, 74, 63, .75), transparent 72%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero h1 { color: var(--creme); margin-bottom: .35em; }
.hero h1 em { color: var(--gold-light); }

.hero__lead { color: rgba(241, 237, 231, .8); max-width: 42ch; }

.hero__visual { position: relative; display: flex; justify-content: center; align-items: flex-end; }

.hero__branch {
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-52%);
  width: min(100%, 430px);
  opacity: .5;
}

.hero__products {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}
.hero__products img { filter: drop-shadow(0 26px 40px rgba(0, 0, 0, .65)); }
.hero__products img:first-child { width: 46%; margin-right: -7%; z-index: 2; }
.hero__products img:last-child { width: 40%; margin-bottom: 4%; }

@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 380px; margin-inline: auto; }
}

/* ---------- USP-balk ---------- */

.uspbar {
  background: var(--olive-deep);
  color: var(--creme);
  padding-block: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
}
.uspbar__title {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 1.2rem + 1.1vw, 2.05rem);
  margin: 0 0 .3rem;
  color: var(--creme);
}
.uspbar p { color: rgba(241, 237, 231, .78); margin: 0; }

/* ---------- Kaarten ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  align-items: stretch;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(59, 74, 63, .1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card--dark { background: var(--black); color: rgba(241, 237, 231, .82); border-color: rgba(201, 168, 76, .22); }
.card--dark h3 { color: var(--creme); }

.card__label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage);
  padding: 1.4rem 1.6rem .2rem;
}
.card--dark .card__label { color: var(--gold); }

.card__body { padding: .6rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
/* Alleen een afsluitende knop zakt naar de onderkant, zodat de knoppen van de
   drie kaarten op één lijn staan. Bij een kaart zonder knop niet, anders
   ontstaat er een gat tussen de kop en de tekst. */
.card__body > .btn:last-child { margin-top: auto; }
.card__body h3 { margin-bottom: .5rem; }

.card__media { background: var(--creme); display: flex; justify-content: center; align-items: center; padding: 1.5rem; }
.card__media img { max-height: 260px; width: auto; }
.card--dark .card__media { background: #141414; }

/* Actielijst */
.actions { list-style: none; margin: .4rem 0 1.5rem; padding: 0; }
.actions li {
  display: flex;
  gap: .9rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(59, 74, 63, .1);
}
.actions li:last-child { border-bottom: 0; }
.actions strong { display: block; font-weight: 600; }
.actions span { font-size: .9rem; color: var(--ink-soft); }
.actions svg { flex: 0 0 20px; width: 20px; height: 20px; margin-top: .3rem; color: var(--gold); }

/* Video */
.video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #141414;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.video iframe, .video video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video--placeholder {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  align-items: center;
  justify-content: center;
  color: rgba(241, 237, 231, .5);
  font-size: .85rem;
  text-align: center;
  padding: 1.5rem;
}
.video--placeholder svg { width: 34px; height: 34px; color: var(--gold); }

/* ---------- Waarden ---------- */

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}
.values__item svg { width: 32px; height: 32px; color: var(--gold); margin: 0 auto .9rem; }
.values__item h3 {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.values__item p { font-size: .9rem; color: rgba(241, 237, 231, .7); margin: 0; }

/* ---------- USP-lijst ---------- */

.usplist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: .9rem clamp(1.5rem, 4vw, 3rem);
}
.usplist li { display: flex; gap: .85rem; align-items: flex-start; }
.usplist svg { flex: 0 0 18px; width: 18px; height: 18px; margin-top: .45rem; color: var(--gold); }

/* ---------- Quote ---------- */

.quote {
  position: relative;
  background: var(--olive-darker);
  color: var(--creme);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  overflow: hidden;
}
.quote__mark {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: min(38%, 280px);
  opacity: .16;
  pointer-events: none;
}
.quote blockquote {
  position: relative;
  margin: 0;
  max-width: 24ch;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 1.3rem + 1.9vw, 2.7rem);
  line-height: 1.24;
  color: var(--creme);
}
.quote blockquote::before {
  content: '“';
  display: block;
  font-family: var(--serif);
  font-size: 3.2em;
  line-height: .55;
  color: var(--gold);
  opacity: .55;
  margin-bottom: .1em;
}

/* ---------- Split (over / oily animals) ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split__visual { display: flex; justify-content: center; }
.split__visual img { width: min(100%, 330px); }

.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--olive-deep);
  margin-top: 1.6rem;
}

/* ---------- Nieuwsbrief ---------- */

.journal {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 800px) { .journal { grid-template-columns: 1fr; } }

.journal__rubrieken { list-style: none; margin: 1.6rem 0 0; padding: 0; }
.journal__rubrieken li { padding: .7rem 0; border-top: 1px solid rgba(59, 74, 63, .16); font-size: .95rem; }
.journal__rubrieken strong { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; display: block; }

form { display: grid; gap: 1rem; }

label {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: .45rem;
}

input[type="text"], input[type="email"], textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(59, 74, 63, .22);
  border-radius: var(--radius);
  padding: .95em 1.05em;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122, 139, 111, .18);
}

.consent {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .85rem;
  line-height: 1.55;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin: 0;
}
.consent input { margin-top: .28rem; flex: 0 0 auto; accent-color: var(--olive-deep); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-msg {
  font-size: .92rem;
  padding: .9em 1.1em;
  border-radius: var(--radius);
  border-left: 3px solid var(--sage);
  background: rgba(122, 139, 111, .12);
}
.form-msg--error { border-color: var(--copper); background: rgba(182, 106, 74, .12); }
.form-msg[hidden] { display: none; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.contact-grid h3 { font-family: var(--sans); font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--sage); }
.contact-grid a { text-decoration: none; border-bottom: 1px solid rgba(201, 168, 76, .5); }
.contact-grid a:hover { color: var(--copper); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--black);
  color: rgba(241, 237, 231, .7);
  padding-block: clamp(3rem, 5vw, 4rem);
  font-size: .93rem;
}
.site-footer__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(241, 237, 231, .1);
}
.site-footer__logo { width: 118px; }
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.75rem;
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { text-decoration: none; transition: color .2s ease; }
.site-footer a:hover { color: var(--gold); }
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.75rem;
  font-size: .85rem;
  color: rgba(241, 237, 231, .5);
}

@media (max-width: 700px) {
  .site-footer__top { grid-template-columns: 1fr; }
}

/* ---------- Artikelpagina ---------- */

.page-hero {
  background: var(--black);
  color: var(--creme);
  padding-block: clamp(3rem, 6vw, 4.75rem);
}
.page-hero h1 { color: var(--creme); margin-bottom: .3em; }
.page-hero p { color: rgba(241, 237, 231, .78); max-width: 52ch; margin: 0; }

.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .5em; }
.prose a { color: var(--olive-deep); text-decoration: underline; text-decoration-color: rgba(201, 168, 76, .6); text-underline-offset: .2em; }
.prose a:hover { color: var(--copper); }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: .95rem; }
.prose th, .prose td { text-align: left; padding: .7em .9em; border-bottom: 1px solid rgba(59, 74, 63, .14); vertical-align: top; }
.prose th { font-family: var(--sans); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); }

/* ---------- 404 ---------- */

.notfound {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
}
.notfound img { width: 130px; margin-bottom: 2rem; }

/* ---------- Toegankelijkheid ---------- */

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--black);
  padding: .8em 1.2em;
  z-index: 100;
  font-weight: 600;
}
.skip:focus { left: .5rem; top: .5rem; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
