/* ============================================================
   Zorgvilla Nova — design system
   Warm, persoonlijk, thuis. Editorial luxury, geen template.
   ============================================================ */

:root {
  --paper: #FAF6F0;
  --paper-deep: #F1EAE0;
  --ink: #2A2521;
  --ink-soft: #5F574D;
  --ink-faint: #8A8177;
  --green: #00CC99;
  --green-deep: #0B7A60;
  --green-shade: #095E4B;
  --green-whisper: #E9F5EF;
  --gold: #D9A441;
  --white: #FFFFFF;
  --hairline: rgba(42, 37, 33, 0.08);
  --shell: rgba(42, 37, 33, 0.045);
  --radius-xl: 2rem;
  --radius-inner: calc(2rem - 0.4rem);
  --ease-lux: cubic-bezier(0.32, 0.72, 0, 1);
  --shadow-float: 0 24px 70px -30px rgba(42, 37, 33, 0.28);
  --shadow-soft: 0 14px 44px -22px rgba(42, 37, 33, 0.22);
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Filmkorrel voor papiergevoel */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

::selection { background: var(--green); color: var(--white); }

/* ---------- Typografie ---------- */

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 420;
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 90;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); font-weight: 480; }

.lead {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 38em;
}

p { max-width: 65ch; }

em { font-family: var(--font-serif); font-style: italic; }

a { color: var(--green-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green-shade); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--hairline);
  background: var(--white);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}

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

.wrap { width: min(1160px, calc(100% - 2.5rem)); margin-inline: auto; }
.wrap-wide { width: min(1320px, calc(100% - 2rem)); margin-inline: auto; }

section { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
section.tight { padding-block: clamp(3rem, 6vw, 5.5rem); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
}

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

@media (max-width: 860px) {
  .split, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .split { gap: 2.2rem; }
}

/* ---------- Navigatie: zwevend eiland ---------- */

.nav-shell {
  position: fixed;
  top: 1.1rem;
  left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: rgba(250, 246, 240, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(42, 37, 33, 0.09);
  box-shadow: 0 12px 40px -18px rgba(42, 37, 33, 0.35);
  border-radius: 999px;
  padding: 0.5rem 0.6rem 0.5rem 1.1rem;
  max-width: calc(100vw - 2rem);
}

.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-logo img { height: 34px; width: auto; }
.nav-logo span {
  font-family: var(--font-serif);
  font-size: 1.06rem;
  font-weight: 550;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-links { display: flex; align-items: center; gap: 0.2rem; list-style: none; }
.nav-links a {
  display: block;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: all 0.45s var(--ease-lux);
}
.nav-links a:hover { color: var(--ink); background: rgba(42, 37, 33, 0.05); }
.nav-links a[aria-current="page"] { color: var(--green-deep); background: var(--green-whisper); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  padding: 0.55rem 0.6rem 0.55rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.5s var(--ease-lux);
}
.nav-cta .dot {
  width: 1.7rem; height: 1.7rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  transition: transform 0.5s var(--ease-lux);
}
.nav-cta:hover { background: var(--green-shade); color: var(--white); }
.nav-cta:hover .dot { transform: translate(2px, -1px) scale(1.06); }
.nav-cta:active { transform: scale(0.98); }

/* Hamburger */
.nav-burger {
  display: none;
  position: relative;
  width: 2.6rem; height: 2.6rem;
  border: none;
  border-radius: 50%;
  background: rgba(42, 37, 33, 0.06);
  cursor: pointer;
}
.nav-burger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 1.05rem; height: 1.6px;
  background: var(--ink);
  transition: transform 0.5s var(--ease-lux);
}
.nav-burger span:nth-child(1) { transform: translate(-50%, calc(-50% - 3.5px)); }
.nav-burger span:nth-child(2) { transform: translate(-50%, calc(-50% + 3.5px)); }
body.menu-open .nav-burger span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

/* Mobiel menu-overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(250, 246, 240, 0.9);
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s var(--ease-lux), visibility 0.55s;
}
body.menu-open .menu-overlay { opacity: 1; visibility: visible; }
.menu-overlay ul { list-style: none; text-align: center; display: grid; gap: 0.4rem; }
.menu-overlay a {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 7vw, 2.6rem);
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
  transform: translateY(1.6rem);
  opacity: 0;
  transition: transform 0.7s var(--ease-lux), opacity 0.7s var(--ease-lux);
}
.menu-overlay a:hover { color: var(--green-deep); }
body.menu-open .menu-overlay a { transform: translateY(0); opacity: 1; }
body.menu-open .menu-overlay li:nth-child(1) a { transition-delay: 0.08s; }
body.menu-open .menu-overlay li:nth-child(2) a { transition-delay: 0.14s; }
body.menu-open .menu-overlay li:nth-child(3) a { transition-delay: 0.2s; }
body.menu-open .menu-overlay li:nth-child(4) a { transition-delay: 0.26s; }
body.menu-open .menu-overlay li:nth-child(5) a { transition-delay: 0.32s; }
body.menu-open .menu-overlay li:nth-child(6) a { transition-delay: 0.38s; }

@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .nav { padding: 0.45rem 0.5rem 0.45rem 1rem; gap: 0.7rem; }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 999px;
  padding: 0.8rem 0.7rem 0.8rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.55s var(--ease-lux);
}
.btn .dot {
  width: 2.1rem; height: 2.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  transition: transform 0.55s var(--ease-lux);
}
.btn:hover .dot { transform: translate(2px, -1px) scale(1.07); }
.btn:active { transform: scale(0.98); }

.btn-primary { background: var(--green-deep); color: var(--white); }
.btn-primary .dot { background: rgba(255, 255, 255, 0.16); color: var(--white); }
.btn-primary:hover { background: var(--green-shade); }

.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink .dot { background: var(--green); color: var(--ink); }
.btn-ink:hover { background: #17130F; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(42, 37, 33, 0.18);
}
.btn-ghost .dot { background: rgba(42, 37, 33, 0.07); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }

/* ---------- Dubbel-bezel fotolijsten ---------- */

.frame {
  background: var(--shell);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  padding: 0.4rem;
  box-shadow: var(--shadow-soft);
}
.frame > img, .frame > .frame-core {
  border-radius: var(--radius-inner);
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25);
}

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

.hero {
  position: relative;
  min-height: max(100dvh, 46rem);
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(2.5rem, 6vh, 5rem);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(120% 95% at 18% 95%, rgba(23, 18, 14, 0.68) 0%, rgba(23, 18, 14, 0) 64%),
    linear-gradient(to top, rgba(23, 18, 14, 0.88) 0%, rgba(23, 18, 14, 0.46) 45%, rgba(23, 18, 14, 0.1) 82%);
}
/* Canvas met exacte foto-verhouding (4066x2466): gedraagt zich als object-fit cover,
   maar houdt de hart-marker pixelvast op de villa. */
.hero-media {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: max(100vw, calc(max(100dvh, 46rem) * 1.6487));
  height: max(100dvh, 46rem, 60.65vw);
  z-index: 1;
}
.hero-media img { width: 100%; height: 100%; }
@media (min-width: 701px) and (max-width: 1100px) {
  /* Tablet: schuif de crop iets naar links zodat de villa + hart in beeld blijven,
     en zet het label boven het hart zodat het de kop nooit raakt */
  .hero-media { transform: translate(-58%, -50%); }
  .hero-marker .marker-label {
    right: auto;
    left: 50%;
    top: auto;
    bottom: calc(100% + 0.6rem);
    transform: translateX(-50%);
  }
  .hero-marker:hover .marker-label { transform: translateX(-50%) scale(1.05); }
}
@media (max-width: 700px) {
  /* Zoom in op de villa en til hem naar de vrije zone boven de kop */
  .hero-media {
    height: calc(max(100dvh, 46rem) * 1.58);
    width: calc(max(100dvh, 46rem) * 1.58 * 1.6487);
    transform: translate(-64%, -68%);
  }
}
.hero-inner { position: relative; z-index: 2; color: var(--white); }

/* Hart-marker op de villa */
.hero-marker {
  position: absolute;
  left: 70.2%; top: 51.6%;
  transform: translate(-50%, -50%);
  width: 2.6rem; height: 2.6rem;
  z-index: 3;
  display: block;
  text-decoration: none;
}
.marker-label {
  position: absolute;
  right: calc(100% + 0.65rem);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
  transition: transform 0.5s var(--ease-lux);
}
.hero-marker:hover .marker-label { transform: translateY(-50%) scale(1.05); }
.marker-heart {
  position: relative;
  display: grid;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}
.marker-heart svg {
  width: 1.15rem; height: 1.15rem;
  fill: var(--green-deep);
  animation: heartbeat 2.6s ease-in-out infinite;
}
.marker-heart::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0, 204, 153, 0.7);
  animation: marker-ring 2.6s ease-out infinite;
}
@keyframes heartbeat {
  0%, 38%, 100% { transform: scale(1); }
  10% { transform: scale(1.25); }
  20% { transform: scale(1); }
  28% { transform: scale(1.12); }
}
@keyframes marker-ring {
  0% { transform: scale(0.7); opacity: 0.9; }
  70% { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}
.hero h1 { color: var(--white); max-width: 13em; text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.4); }
.hero .hero-slogan {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: rgba(255, 255, 255, 0.96);
  margin-top: 1.2rem;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.45);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.4rem;
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.4);
}
.hero-strip strong { display: block; font-family: var(--font-serif); font-size: 1.35rem; font-weight: 480; color: var(--white); }

/* Subpagina-hero (compacter, op papier) */
.page-head { padding-top: clamp(8rem, 16vh, 11rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.page-head .lead { margin-top: 1.3rem; }

/* ---------- Sterren & reviews ---------- */

.stars { display: inline-flex; gap: 0.22rem; color: var(--gold); font-size: 1.05rem; letter-spacing: 0.05em; }

.review-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  padding: 2rem 2rem 1.7rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.review-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
}
.review-card figcaption { font-size: 0.9rem; color: var(--ink-faint); }
.review-card figcaption strong { color: var(--ink-soft); font-weight: 600; }

/* Volledig verhaal (verhalen-pagina) */
.story {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.story summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.9rem 2.1rem;
  transition: background 0.4s var(--ease-lux);
}
.story summary::-webkit-details-marker { display: none; }
.story summary:hover { background: rgba(42, 37, 33, 0.025); }
.story summary h3 { margin-bottom: 0.3rem; }
.story summary .sub { font-size: 0.9rem; color: var(--ink-faint); }
.story .chev {
  flex: none;
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--paper);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: transform 0.5s var(--ease-lux), background 0.5s var(--ease-lux);
}
.story[open] .chev { transform: rotate(45deg); background: var(--green-whisper); color: var(--green-deep); }
.story-body { padding: 0 2.1rem 2.2rem; }
.story-body p { margin-bottom: 1.1rem; font-size: 1.02rem; }
.story-body .quote-mark {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-soft);
}

/* ---------- Feature-kaarten ---------- */

.card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.card .icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--green-whisper);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.98rem; color: var(--ink-soft); }

/* Spec-rij (wonen) */
.specs { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }
.spec {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.spec::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex: none; }

/* ---------- Galerij ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery .frame { padding: 0.3rem; }
.gallery .frame img { height: 100%; }
.g-wide { grid-column: span 8; }
.g-tall { grid-column: span 4; grid-row: span 2; }
.g-half { grid-column: span 6; }
.g-third { grid-column: span 4; }
@media (max-width: 860px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .g-wide, .g-tall, .g-half, .g-third { grid-column: span 1; grid-row: span 1; }
}

/* ---------- Donkere secties ---------- */

.section-ink {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.section-ink h2, .section-ink h3 { color: var(--white); }
.section-ink p { color: rgba(250, 246, 240, 0.78); }

/* ---------- Formulier ---------- */

.form-grid { display: grid; gap: 1.1rem; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.45rem;
  color: var(--ink-soft);
}
.field input, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(42, 37, 33, 0.14);
  border-radius: 1.1rem;
  padding: 0.9rem 1.15rem;
  transition: border-color 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux);
}
.field textarea { min-height: 9.5rem; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-deep);
  box-shadow: 0 0 0 4px rgba(0, 204, 153, 0.14);
}
.form-note { font-size: 0.85rem; color: var(--ink-faint); }
.form-status { font-weight: 600; font-size: 0.95rem; }
.form-status.ok { color: var(--green-deep); }
.form-status.err { color: #A4442C; }
.hp { position: absolute; left: -5000px; opacity: 0; pointer-events: none; }

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

.info-row { display: flex; align-items: flex-start; gap: 1rem; }
.info-row .icon {
  flex: none;
  width: 2.7rem; height: 2.7rem;
  border-radius: 50%;
  background: var(--green-whisper);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}
.info-row strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-faint); font-weight: 600; margin-bottom: 0.15rem; }
.info-row a { color: var(--ink); text-decoration: none; }
.info-row a:hover { color: var(--green-deep); }

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

footer {
  background: var(--ink);
  color: rgba(250, 246, 240, 0.75);
  margin-top: clamp(3rem, 7vw, 6rem);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2.5rem;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
footer .foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 246, 240, 0.12);
}
@media (max-width: 860px) { footer .foot-grid { grid-template-columns: 1fr; } }
footer img.foot-logo { height: 44px; width: auto; margin-bottom: 1.2rem; }
footer h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.5);
  margin-bottom: 1.1rem;
}
footer ul { list-style: none; display: grid; gap: 0.55rem; }
footer a { color: rgba(250, 246, 240, 0.85); text-decoration: none; font-size: 0.95rem; }
footer a:hover { color: var(--green); }
footer .foot-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2.2rem;
  font-size: 0.82rem;
  color: rgba(250, 246, 240, 0.45);
}
footer .foot-slogan { font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; color: rgba(250, 246, 240, 0.85); max-width: 24em; }

/* ---------- Scroll-onthulling ---------- */

.reveal {
  opacity: 0;
  transform: translateY(2.6rem);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease-lux), transform 0.9s var(--ease-lux), filter 0.9s var(--ease-lux);
}
.reveal.in { opacity: 1; transform: translateY(0); filter: blur(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ---------- Diversen ---------- */

.center { text-align: center; }
.center p, .center .lead { margin-inline: auto; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; }

.skip-link {
  position: absolute;
  top: -100px; left: 1rem;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 0.8rem 0.8rem;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* Statische modus (screenshots/QA via ?static) */
html.static { scroll-behavior: auto; }
html.static .hero { min-height: 700px; }
