/* ==========================================================
   Lokaal Verrast — huisstijl uit de brochure Kerst 2026
   Crème  #F7F6EA · Donkergroen #344231 · Sage #A8C383
   Middengroen #557554 · Display: Playfair Display · Body: Quicksand
   ========================================================== */

:root {
  --cream: #F7F6EA;
  --cream-deep: #EFEDDD;
  --forest: #344231;
  --forest-soft: #43543F;
  --sage: #A8C383;
  --sage-soft: #DDE6C8;
  --green-mid: #557554;
  --ink: #4C5347;
  --white: #FDFCF6;
  --radius: 20px;
  --radius-lg: 28px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Quicksand', 'Trebuchet MS', sans-serif;
  --shadow: 0 10px 30px rgba(52, 66, 49, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1.0625rem;
}

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

.container { width: min(1100px, 92%); margin-inline: auto; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--forest);
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 0.9rem; }
h3 { font-size: 1.25rem; }

p + p { margin-top: 0.9em; }

a { color: var(--green-mid); }

:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Eyebrow-pill (signatuur uit de brochure) ---------- */
.eyebrow {
  display: inline-block;
  background: var(--sage);
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4em 1.2em;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.eyebrow-light { background: var(--sage); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 234, 0.92);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled { box-shadow: 0 4px 20px rgba(52, 66, 49, 0.12); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
}

.logo span + span { margin-top: 2px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.site-nav a:hover { color: var(--green-mid); }

.nav-cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 0.55em 1.3em;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-cta:hover { background: var(--green-mid); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--forest);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Hero ---------- */
.hero { padding-block: clamp(3rem, 8vw, 5.5rem) clamp(3rem, 7vw, 5rem); }

.hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage);
}

.hero-sub {
  margin-top: 1.2rem;
  font-size: 1.15rem;
  max-width: 34em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

/* ---------- Knoppen ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  padding: 0.85em 1.7em;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

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

.btn-primary { background: var(--forest); color: var(--cream); }
.btn-primary:hover { background: var(--green-mid); }

.btn-ghost {
  color: var(--forest);
  border: 2px solid var(--forest);
}

.btn-ghost:hover { background: var(--forest); color: var(--cream); }

/* ---------- Secties ---------- */
.section { padding-block: clamp(3.5rem, 8vw, 6rem); }

.section-tint { background: var(--cream-deep); }

.narrow { max-width: 46em; }

.narrow + .narrow { margin-top: 2rem; }

.two-col {
  display: grid;
  gap: 1.5rem 3rem;
  margin-block: 1.5rem 2.2rem;
}

/* ---------- Split-layout (verhaal) ---------- */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.split-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
}

.split-image.tall img {
  object-fit: cover;
  max-height: 640px;
}

.quote {
  margin-top: 2rem;
  border-left: 4px solid var(--sage);
  padding-left: 1.2rem;
}

.quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--green-mid);
  line-height: 1.4;
}

.quote cite {
  display: block;
  margin-top: 0.6rem;
  font-style: normal;
  font-weight: 600;
  color: var(--forest);
  font-size: 0.95rem;
}

/* ---------- Bannerbeelden ---------- */
.banner-image { margin-block: 2rem; }

.banner-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.overlay-figure { position: relative; }

.overlay-figure figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 3.5rem 2rem 1.8rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: linear-gradient(to top, rgba(30, 40, 27, 0.85), transparent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  text-align: center;
  line-height: 1.35;
}

.overlay-figure figcaption span { color: var(--sage); }

/* ---------- Redenenlijst (waarom) ---------- */
.reasons {
  counter-reset: reden;
  list-style: none;
  margin-top: 2.5rem;
}

.reasons li {
  counter-increment: reden;
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid rgba(52, 66, 49, 0.15);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  color: var(--forest);
}

.reasons li::before {
  content: counter(reden) ".";
  font-size: 1.05rem;
  color: var(--green-mid);
  min-width: 1.6em;
}

/* ---------- Sage quote-paneel ---------- */
.quote-panel {
  background: var(--sage);
  border-radius: var(--radius);
  padding: 1.8rem 2.2rem;
  text-align: center;
}

.quote-panel p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--forest);
  font-size: clamp(1.05rem, 2.3vw, 1.3rem);
  line-height: 1.5;
}

/* ---------- Personalisatie-opties ---------- */
.option-grid {
  display: grid;
  gap: 1.2rem;
  margin-block: 2.2rem;
}

.option-card {
  background: var(--white);
  border: 1.5px solid var(--sage);
  border-radius: var(--radius);
  padding: 1.4rem 1.7rem;
}

.option-card h3 { margin-bottom: 0.35rem; }

.option-card p { font-size: 0.98rem; }

.photo-trio {
  display: grid;
  gap: 1.2rem;
  margin-block: 2.2rem 1.6rem;
}

.photo-trio img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 5 / 8;
  object-fit: cover;
}

.italic-note {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--green-mid);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.45;
  max-width: 32em;
}

/* ---------- Werkwijze-stappen ---------- */
.steps {
  counter-reset: stap;
  list-style: none;
  margin-top: 2rem;
}

.steps li {
  counter-increment: stap;
  position: relative;
  padding: 1.3rem 0 1.3rem 3.4rem;
  border-bottom: 1px solid rgba(52, 66, 49, 0.15);
}

.steps li::before {
  content: counter(stap);
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest);
  font-weight: 700;
  display: grid;
  place-items: center;
}

.steps h3 { margin-bottom: 0.25rem; font-size: 1.35rem; }

/* ---------- Themakaarten ---------- */
.theme-grid {
  display: grid;
  gap: 1.3rem;
  margin-block: 2.2rem;
}

.theme-card {
  background: var(--sage);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  color: var(--forest);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.theme-card svg {
  width: 52px;
  height: 52px;
  margin-inline: auto;
  color: var(--forest);
}

.theme-label {
  display: block;
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}

.theme-card h3 { margin-top: 0.4rem; }

.theme-card p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* ---------- Productgrid ---------- */
.product-grid {
  display: grid;
  gap: 1.3rem;
  margin-top: 2.2rem;
}

.product-grid figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--green-mid);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45em 1.2em;
  border-radius: 999px;
}

/* ---------- Teamgrid ---------- */
.team-grid {
  display: grid;
  gap: 1.3rem;
  margin-block: 2.2rem 1.8rem;
}

.team-grid figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.team-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Contact (donkergroen) ---------- */
.section-dark {
  background: var(--forest);
  color: var(--cream);
}

.section-dark h2 { color: var(--white); }

.section-dark .narrow p { color: rgba(247, 246, 234, 0.88); }

.contact-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: start;
}

.qr-card {
  background: var(--sage-soft);
  border-radius: var(--radius);
  padding: 1.6rem;
  text-align: center;
  text-decoration: none;
  color: var(--forest);
  display: block;
  max-width: 300px;
}

.qr-card img {
  width: 100%;
  max-width: 220px;
  margin-inline: auto;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}

.qr-card span {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1.5;
}

.qr-card strong { font-size: 1.05rem; }

.contact-details {
  font-style: normal;
  display: grid;
  gap: 1.4rem;
}

.contact-details h3 {
  color: var(--sage);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact-details p { color: var(--cream); font-size: 1.05rem; }

.contact-details a { color: var(--cream); }

.contact-tagline {
  margin-top: 3rem;
  text-align: center;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 999px;
  padding: 0.8em 1.5em;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-mid);
  color: var(--cream);
  padding-block: 1.6rem;
}

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

.logo-footer { color: var(--cream); font-size: 0.9rem; }

.site-footer a { color: var(--cream); }

.site-footer p { font-size: 0.9rem; }

/* ---------- Zwevende CTA ---------- */
.floating-cta {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 60;
  background: var(--forest);
  color: var(--cream);
  text-decoration: none;
  border-radius: 16px;
  padding: 0.7rem 1.2rem;
  box-shadow: 0 8px 24px rgba(30, 40, 27, 0.35);
  line-height: 1.3;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}

.floating-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-cta:hover { background: var(--green-mid); }

.floating-cta-small {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
}

.floating-cta-big {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ---------- Tablet en groter ---------- */
@media (min-width: 640px) {
  .hero-inner { grid-template-columns: 1.05fr 1fr; }
  .two-col { grid-template-columns: 1fr 1fr; }
  .option-grid { grid-template-columns: 1fr 1fr; }
  .option-card.wide { grid-column: 1 / -1; }
  .photo-trio { grid-template-columns: repeat(3, 1fr); }
  .theme-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-grid .span-2 { grid-column: 1 / -1; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-grid .span-2 { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: auto 1fr; gap: 3rem; }
  .contact-details { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1.15fr 0.85fr; gap: 3.5rem; }
  .theme-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Mobiel menu ---------- */
@media (max-width: 820px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 4% 1.2rem;
    box-shadow: 0 12px 24px rgba(52, 66, 49, 0.15);
    display: none;
  }

  .site-nav.open { display: flex; }

  .site-nav a {
    padding: 0.7rem 0;
    width: 100%;
    font-size: 1.05rem;
  }

  .nav-cta {
    margin-top: 0.6rem;
    text-align: center;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ---------- Klein mobiel ---------- */
@media (max-width: 480px) {
  body { font-size: 1rem; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .photo-trio { grid-template-columns: 1fr; }
  .photo-trio img { aspect-ratio: 4 / 5; }
  .quote-panel { padding: 1.4rem 1.3rem; }
  .floating-cta { right: 0.8rem; bottom: 0.8rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .theme-card:hover { transform: none; }
  .floating-cta { transition: none; }
}
