:root {
  --brown: #3E000C;
  --forest: #1B3022;
  --pink: #FFAFCC;
  --orange: #EC4E20;
  --green: #B1CC74;
  --light-green: #D6DBB2;
  --blue: #002FA7;
  --light-blue: #A2D2FF;
  --paper: #fffaf6;
  --cream: #f8f1ea;
  --text: #1c1716;
  --muted: #6b5f5e;
  --border: rgba(62, 0, 12, 0.12);
  --shadow: 0 20px 60px rgba(27, 48, 34, 0.12);
  --shadow-soft: 0 12px 30px rgba(62, 0, 12, 0.08);
  --radius: 0px;
  --max-width: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 175, 204, 0.25), transparent 26%),
    radial-gradient(circle at 92% 12%, rgba(162, 210, 255, 0.18), transparent 22%),
    radial-gradient(circle at 80% 70%, rgba(177, 204, 116, 0.14), transparent 24%),
    linear-gradient(180deg, #fff8f6 0%, #fdf1f5 42%, #f8f1ea 100%);

  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.brand,
.hero-overlay h1,
.content-block h2,
.section-head h2,
.info-card h3,
.faq-item summary {
  font-family: 'Biorhyme', Georgia, serif;

}


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

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

button {
  font: inherit;
}

::selection {
  background: var(--pink);
  color: var(--brown);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.narrow {
  max-width: 860px;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 246, 0.82);
  border-bottom: 1px solid rgba(62, 0, 12, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: 'Biorhyme', serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.01em;
}

/* MENU */

.menu-toggle {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(62, 0, 12, 0.10);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 13px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--brown);
  transition: transform .25s ease, opacity .25s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(90vw, 380px);
  height: 100dvh;
  background:
    linear-gradient(180deg, rgba(255, 248, 246, 0.98), rgba(252, 241, 245, 0.98));
  z-index: 60;
  transform: translateX(100%);
  transition: transform .35s ease;
  box-shadow: -20px 0 60px rgba(27, 48, 34, 0.12);
}

.menu-open .menu-panel {
  transform: translateX(0);
}

.menu-panel__inner {
  padding: 7rem 2rem 2rem;
  display: grid;
  gap: 1rem;
}

.menu-panel__inner a {
  padding: .95rem 1rem;
  border-radius: 0;
  background: rgba(255, 175, 204, 0.22);
  color: var(--brown);
  font-weight: 700;
  border-left: 3px solid transparent;
}

.menu-panel__inner a.active {
  background: var(--forest);
  color: #fff;
  border-left-color: var(--pink);
}

.menu-kicker {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  margin: 0 0 .75rem;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16, 20, 16, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 55;
}

.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* TYPOGRAFIE */

.hero-overlay h1,
.content-block h2,
.section-head h2,
.info-card h3,
.quote-card footer,
.faq-item summary {
  font-family: 'Biorhyme', serif;
}

.section-head h2,
.content-block h2 {
  color: var(--brown);
  line-height: 1.05;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin: 0;
}

.content-block h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  color: var(--orange);
  font-weight: 700;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.7;
}

.content-block p,
.info-card p,
.quote-card p,
.faq-item p,
.hero-intro p {
  line-height: 1.75;
}

.section-head {
  margin-bottom: 2rem;
}

/* BUTTONS */

.hero-links,
.button-row,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.6rem;
}

.button,
.button-secondary,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .9rem 1.25rem;
  border-radius: 0;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  font-weight: 700;
}

.button:hover,
.button-secondary:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.button {
  background: var(--pink);
  color: var(--brown);
  border: 1px solid rgba(62, 0, 12, 0.14);
  box-shadow: var(--shadow-soft);
}

.button:hover {
  background: #ff9fc3;
}

.button-secondary {
  background: rgba(177, 204, 116, 0.24);
  color: var(--forest);
  border: 1px solid rgba(27, 48, 34, 0.10);
}

.text-link {
  background: rgba(162, 210, 255, 0.20);
  color: var(--blue);
  border: 1px solid rgba(0, 47, 167, 0.10);
}

/* LAYOUT */

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.reverse-mobile .content-block {
  order: 1;
}

/* HERO */

.hero-full {
  position: relative;
  width: 100%;
  min-height: calc(90vh - var(--header-height));
  overflow: hidden;
  background: #ddd;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background:
    linear-gradient(
      180deg,
      rgba(27, 48, 34, 0.10) 0%,
      rgba(62, 0, 12, 0.18) 100%
    );
}

.hero-overlay h1 {
  color: #fff;
  font-size: clamp(3rem, 7vw, 6rem);
  text-align: center;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  max-width: 12ch;
}

.hero-intro {
  padding: 3rem 0 4rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 175, 204, 0.30), rgba(255, 175, 204, 0.10));
}

.hero-intro .container {
  max-width: 860px;
}

.hero-intro .lead {
  margin: 0 auto 1rem;
}

.hero-intro p:not(.lead) {
  max-width: 36rem;
  margin: 0 auto;
}

.hero-intro .hero-links {
  justify-content: center;
}

/* CARDS / BEELD */

.organic-card,
.arch-card,
.circle-card,
.info-card,
.quote-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.organic-card,
.arch-card,
.circle-card {
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.organic-card {
  aspect-ratio: 4 / 3.2;
  border-radius: 0;
  padding: 2rem;
}

.arch-card {
  aspect-ratio: 4 / 4.4;
  border-radius: 999px 999px 0 0;
  padding: 0;
  background: transparent;
}

.arch-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.circle-card {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 175, 204, 0.48), transparent 30%),
    radial-gradient(circle at 70% 70%, rgba(255, 175, 204, 0.22), transparent 32%),
    rgba(255, 255, 255, 0.82);
}

.circle-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 18%;
}

.image-placeholder {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 175, 204, 0.55), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(162, 210, 255, 0.52), transparent 24%),
    radial-gradient(circle at 50% 75%, rgba(177, 204, 116, 0.48), transparent 28%),
    #fff;
}

.image-placeholder span {
  max-width: 12ch;
  font-family: 'Biorhyme', serif;
  font-size: 1.1rem;
  color: var(--brown);
}

/* CONTENT DETAILS */

.highlight-note {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-left: 4px solid var(--orange);
  background: rgba(255, 175, 204, 0.16);
}

.highlight-note p {
  margin: 0;
}

/* GRIDS */

.cards-grid {
  display: grid;
  gap: 1.2rem;
}

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

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* INFO / QUOTES */

.info-card,
.quote-card {
  border-radius: var(--radius);
  padding: 1.5rem;
}

.info-card:nth-child(1) {
  background: rgba(214, 219, 178, 0.40);
}

.info-card:nth-child(2) {
  background: rgba(162, 210, 255, 0.18);
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: .75rem;
  color: var(--brown);
}

.clean-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .8rem;
}

.clean-list li {
  padding: .95rem 1rem;
  background: rgba(255, 255, 255, 0.52);
  border-left: 4px solid var(--green);
  border-radius: 0;
}

.quote-card:nth-child(1) {
  background: rgba(255, 175, 204, 0.36);
}

.quote-card:nth-child(2) {
  background: rgba(255, 175, 204, 0.22);
}

.quote-card p {
  font-size: 1.06rem;
  margin-top: 0;
  margin-bottom: 0;
}

.quote-card footer {
  color: var(--muted);
  font-weight: 700;
}

/* SECTION STYLING */

.muted-section {
  background:
    linear-gradient(
      135deg,
      rgba(214, 219, 178, 0.42),
      rgba(177, 204, 116, 0.20)
    );
}

.accent-section {
  background:
    linear-gradient(
      135deg,
      rgba(255, 175, 204, 0.42),
      rgba(255, 175, 204, 0.18),
      rgba(162, 210, 255, 0.14)
    );
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 175, 204, 0.14);
  border: 1px solid rgba(62, 0, 12, 0.10);
  border-left: 4px solid var(--pink);
  border-radius: 0;
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--brown);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item p {
  margin-bottom: .2rem;
  color: var(--muted);
}

/* CONTACT */

.contact-links a {
  padding: .8rem 1rem;
  border-radius: 0;
  background: rgba(255, 175, 204, 0.32);
  color: var(--brown);
  font-weight: 700;
  border: 1px solid rgba(62, 0, 12, 0.10);
}

/* FOOTER */

.site-footer {
  padding: 1.4rem 0 2rem;
  border-top: 1px solid rgba(62, 0, 12, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .95rem;
}

/* ANIMATION */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .08s;
}

.delay-2 {
  transition-delay: .16s;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .split-layout,
  .two-up,
  .three-up {
    grid-template-columns: 1fr;
  }

  .arch-card {
    aspect-ratio: 4 / 3.4;
  }

  .circle-card {
    width: min(100%, 360px);
    justify-self: center;
  }

  .hero-full {
    min-height: 68vh;
  }

  .hero-overlay h1 {
    font-size: clamp(2.5rem, 10vw, 4.2rem);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .menu-panel__inner {
    padding-top: 6.5rem;
  }

  .brand {
    max-width: 12ch;
  }

  .hero-intro {
    padding: 2.5rem 0 3.5rem;
  }

  .hero-links,
  .button-row,
  .contact-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-secondary,
  .text-link,
  .contact-links a {
    width: 100%;
  }
}

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

  .reveal,
  .menu-panel,
  .menu-backdrop,
  .menu-toggle span {
    transition: none;
  }
}

/* GOOGLE MAPS */

.map-embed {
  margin-top: 1rem;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(62, 0, 12, 0.10);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.6);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 320px;
}
