
:root {
  --parchment:  #faf6ef;
  --parchment2: #f3ede2;
  --linen:      #ede5d5;
  --sage-pale:  #e8f0e6;
  --green:      #3d7044;
  --green-mid:  #507a56;
  --green-deep: #2a4f2f;
  --sage:       #7aaa82;
  --terra:      #c4703f;
  --terra-lt:   #d4855a;
  --gold:       #b8912a;
  --gold-lt:    #d4a83c;
  --text:       #2c2820;
  --text-mid:   #5a5048;
  --text-soft:  #8a7d6e;
  --border:     rgba(61,112,68,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--parchment);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 6%;
  background: rgba(250,246,239,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184,145,42,0.15);
  transition: box-shadow 0.4s, padding 0.4s, background 0.4s;
}
nav.scrolled {
  background: rgba(250,246,239,1);
  box-shadow: 0 2px 24px rgba(44,40,32,0.10), 0 1px 0 rgba(184,145,42,0.18);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0;
}
.nav-logo-text {
  font-family: 'Great Vibes', cursive;
  font-size: 1.9rem;
  color: var(--text);
  line-height: 1;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-butterfly {
  height: 1.86em;
  width: auto;
  max-width: 62px;
  opacity: 0.85;
  filter: invert(35%) sepia(30%) saturate(600%) hue-rotate(90deg) brightness(0.7);
  vertical-align: middle;
  margin-left: 0.4rem;
  display: inline-block;
  position: relative;
  top: -3px;
  flex-shrink: 0;
}
/* LK logo in hero */
.lk-logo-img {
  height: 3rem;
  width: auto;
  max-width: 180px;
  opacity: 0.85;
  vertical-align: middle;
  display: inline-block;
}
/* LK logo in footer */
.f-lk-img {
  height: 3rem;
  width: auto;
  max-width: 180px;
  opacity: 0.85;
  display: block;
  margin-top: 0.4rem;
}
.f-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* Luisterkind badge in hero sig */
.luisterkind-badge {
  display: inline-flex;
  align-items: center;
}

.nav-links { display: flex; gap: 2.4rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0; height: 1px;
  background: var(--terra);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--terra); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* ── CANVAS ── */
#cosmos {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: 0.55;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: 100px !important;
  padding-bottom: 3rem !important;
  z-index: 1;
  background: radial-gradient(ellipse at 60% 40%, rgba(122,170,130,0.12), transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(196,112,63,0.07), transparent 50%),
              var(--parchment);
}

/* Rotating mandala — now light & airy */
.mandala-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.mandala-wrap.outer {
  width: 760px; height: 760px;
  animation: spin-slow 100s linear infinite;
  opacity: 0.06;
}
.mandala-wrap.inner {
  width: 500px; height: 500px;
  animation: spin-slow 65s linear infinite reverse;
  opacity: 0.05;
}
@keyframes spin-slow { to { transform: translate(-50%,-50%) rotate(360deg); } }

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1160px;
  width: 100%;
  padding: 0 6%;
  animation: rise 1.4s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes rise {
  from { opacity:0; transform: translateY(32px); }
  to   { opacity:1; transform: translateY(0); }
}

/* Photo side */
.hero-photo-col {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}

.hero-photo-wrap {
  position: relative;
  width: 360px; height: 360px;
}

/* Spinning ring */
.hero-ring {
  position: absolute; inset: -18px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: var(--gold);
  border-right-color: rgba(184,145,42,0.3);
  animation: ring-spin 12s linear infinite;
}
.hero-ring-2 {
  position: absolute; inset: -32px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-bottom-color: rgba(122,170,130,0.4);
  border-left-color: rgba(122,170,130,0.2);
  animation: ring-spin 20s linear infinite reverse;
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

/* Dot ornaments on ring */
.hero-ring-dot {
  position: absolute; inset: -18px;
  border-radius: 50%;
  animation: ring-spin 12s linear infinite;
}
.hero-ring-dot::before,
.hero-ring-dot::after {
  content: '◆';
  position: absolute;
  color: var(--gold);
  font-size: 0.5rem;
}
.hero-ring-dot::before { top: -4px; left: 50%; transform: translateX(-50%); }
.hero-ring-dot::after  { bottom: -4px; left: 50%; transform: translateX(-50%); }

.hero-photo-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sage-pale);
  position: relative;
}
.hero-photo-inner img,
.hero-photo-inner svg {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  border-radius: 50%;
  display: block;
}

/* Breathing glow */
.hero-glow {
  position: absolute;
  width: 340px; height: 80px;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(61,112,68,0.2), transparent 70%);
  filter: blur(16px);
  animation: breathe 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes breathe {
  0%,100% { opacity:0.5; transform: translateX(-50%) scaleX(0.85); }
  50%      { opacity:1;   transform: translateX(-50%) scaleX(1.1); }
}

/* Floating botanical accents */
.leaf-accent {
  position: absolute;
  opacity: 0.18;
  font-size: 3.5rem;
  pointer-events: none;
  animation: leaf-float 7s ease-in-out infinite;
}
.leaf-accent:nth-child(1) { top: 5%; right: -4%; animation-delay: 0s; }
.leaf-accent:nth-child(2) { bottom: 10%; left: -6%; font-size: 2.5rem; animation-delay: 3s; }
@keyframes leaf-float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-14px) rotate(6deg); }
}

/* Text side */
.hero-text-col {}

.hero-eyebrow {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.7rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--terra);
  margin-bottom: 1rem;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--terra);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 1.8rem;
  line-height: 1.5;
}

.hero-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 1.1rem;
}

.hero-sig {
  display: flex; align-items: center; gap: 1.8rem;
  justify-content: flex-start;
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.sig-script {
  font-family: 'Great Vibes', cursive;
  font-size: 2.1rem;
  color: var(--text);
  display: inline-block;
  transform: rotate(-10deg);
  transform-origin: center center;
  padding-left: 20px;
}
.luisterkind-badge {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.lk-sun { color: var(--gold-lt); font-size: 1.2rem; }

.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-fill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green);
  color: #fff;
  padding: 0.85rem 1.9rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.3s, transform 0.2s;
}
.btn-fill:hover { background: var(--green-deep); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--terra);
  color: var(--terra);
  padding: 0.85rem 1.9rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.3s, transform 0.2s;
}
.btn-outline:hover { background: rgba(196,112,63,0.06); transform: translateY(-2px); }

/* ── SERVICES ── */
.services {
  padding: 3.5rem 6%;
  background: var(--parchment2);
  position: relative; z-index: 1;
}

.services::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.sec-header { text-align: center; margin-bottom: 4rem; }
.sec-tag {
  display: block;
  font-size: 0.7rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--terra);
  margin-bottom: 0.7rem;
}
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}
.sec-title em { font-style: italic; color: var(--green); }
.ornament {
  display: flex; align-items: center; gap: 0.9rem;
  width: 140px; margin: 1rem auto 0;
}
.ornament span { flex:1; height:1px; background: rgba(184,145,42,0.3); display:block; }
.ornament i { color: var(--gold); font-style:normal; font-size:0.55rem; }

.services-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px; margin: 0 auto;
}

.service-card {
  background: var(--parchment);
  border: 1px solid rgba(184,145,42,0.12);
  padding: 2.5rem 1.8rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  cursor: pointer;
}
.service-card::after {
  content: '';
  position: absolute; bottom:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--green), var(--sage));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(61,112,68,0.1);
  border-color: rgba(61,112,68,0.2);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card-header {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 0; margin-bottom: 0.75rem;
}
.service-icon-wrap {
  width: 42px; height: 42px; flex-shrink: 0;
}
.service-num {
  position: absolute;
  top: 1.2rem; left: 1.8rem;
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.service-desc {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem; line-height: 1.65;
  color: var(--terra);
}

/* CTA band */
.cta-band {
  background: var(--green);
  padding: 2.25rem 6%;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  position: relative; z-index: 1; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.04), transparent 60%);
}
.cta-band-text { position: relative; }
.cta-band-label {
  font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem; display: block;
}
.cta-band-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff; font-weight: 600;
}
.cta-band-title em { font-style: italic; color: rgba(255,255,255,0.7); }
.cta-band-sub {
  font-size: 0.95rem; color: rgba(255,255,255,0.65);
  line-height: 1.7; margin-top: 0.5rem; max-width: 480px;
}
.btn-light {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; color: var(--green);
  padding: 0.9rem 2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  border-radius: 1px; white-space: nowrap; flex-shrink: 0;
  transition: background 0.3s, transform 0.2s; position: relative;
}
.btn-light:hover { background: var(--linen); transform: translateY(-2px); }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 1.75rem 6% 3.5rem;
  background: var(--sage-pale);
  position: relative; z-index: 1;
  overflow-x: hidden;
}
.testimonials::before {
  content: '';
  position: absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, rgba(61,112,68,0.3), transparent);
}

/* Testimonial arrow slider */
.testimonials-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.t-arrow {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(61,112,68,0.25);
  background: var(--parchment);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.2s, opacity 0.25s;
  box-shadow: 0 2px 12px rgba(61,112,68,0.08);
}
.t-arrow svg { width: 20px; height: 20px; }
.t-arrow:hover { background: var(--green); color: #fff; border-color: var(--green); transform: scale(1.08); }
.t-arrow:disabled { opacity: 0.25; pointer-events: none; }
.testimonials-track-outer {
  flex: 1;
  overflow: hidden;
  min-height: 0;
  align-self: stretch;
}
.testimonials-track {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
/* Dots */
.t-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.8rem;
}
.t-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(61,112,68,0.2);
  border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.t-dot.active { background: var(--green); transform: scale(1.3); }

.t-card {
  background: #fff;
  border: 1px solid rgba(61,112,68,0.1);
  padding: 2.2rem;
  position: relative;
  transition: transform 0.35s, box-shadow 0.35s;
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.t-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(61,112,68,0.1);
}
.t-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 7rem; line-height: 1;
  color: var(--gold); opacity: 0.18;
  position: absolute; top: 0.5rem; right: 1.2rem;
}
.t-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem; line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  flex: 1;
}
.t-line { width: 28px; height: 1px; background: var(--gold); opacity:0.5; margin-bottom: 0.8rem; }
.t-author {
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green);
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  position: relative; z-index: 1;
}

.about-photo {
  position: relative; overflow: hidden;
}
.about-photo img, .about-photo svg {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform 0.7s ease;
}
.about:hover .about-photo img { transform: scale(1.03); }
.about-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(61,112,68,0.12), transparent 60%);
  pointer-events: none;
}

.about-content {
  background: var(--linen);
  padding: 2.5rem 6%;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid rgba(184,145,42,0.12);
}
.about-content .sec-tag { text-align:left; display:block; margin-bottom:0.6rem; }
.about-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--text);
  line-height: 1.15; margin-bottom: 0.3rem;
}
.about-h em { font-style:italic; color:var(--green); }
.about-sub {
  font-family: 'Playfair Display', serif;
  font-style:italic; font-size:1.1rem;
  color:var(--text-soft); margin-bottom:0.9rem;
}
.about-body {
  font-size: 0.97rem; line-height:1.9;
  color: var(--text-mid); margin-bottom:1rem;
}
.about-pull {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  background: rgba(184,145,42,0.05);
  margin: 1.5rem 0;
}
.about-pull p {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size:1.05rem;
  line-height:1.7; color: var(--text);
}
.about-link {
  display: inline-flex; align-items: center; gap:0.5rem;
  color: var(--green); font-size:0.78rem;
  letter-spacing:0.14em; text-transform:uppercase;
  text-decoration:none;
  border-bottom:1px solid rgba(61,112,68,0.3);
  padding-bottom:2px; width:fit-content; margin-top:0.5rem;
  transition: color 0.3s, border-color 0.3s;
}
.about-link:hover { color:var(--terra); border-color:var(--terra); }

/* ── CONTACT ── */
.contact {
  padding: 3.5rem 6% 2.275rem;
  text-align: center;
  background: var(--parchment);
  position: relative; z-index: 1;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,170,130,0.1), transparent 70%);
  top:50%; left:50%; transform:translate(-50%,-50%);
  pointer-events:none;
}
.contact-inner { position:relative; z-index:1; max-width:650px; margin:0 auto; }
.contact-script {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3rem,6vw,5rem);
  color: var(--text);
  line-height: 1.1; margin-bottom:0.5rem;
}
.contact-sub {
  font-family: 'Playfair Display', serif;
  font-style:italic; font-size:1rem;
  color:var(--green); max-width:1100px; margin-left:auto; margin-right:auto; margin-bottom:0.8rem;
}
.contact-body {
  font-size:0.95rem; color:var(--text-mid);
  line-height:1.7; margin-bottom:1rem;
  max-width:1100px; margin-left:auto; margin-right:auto;
}
.contact-pills { display:flex; gap:0.8rem; justify-content:center; flex-wrap:wrap; }
.pill {
  display:inline-flex; align-items:center; gap:0.4rem;
  border:1px solid rgba(61,112,68,0.25);
  color:var(--green-mid); padding:0.7rem 1.4rem;
  font-size:0.82rem; letter-spacing:0.08em;
  text-decoration:none; border-radius:1px;
  transition:background 0.3s, border-color 0.3s, color 0.3s;
}
.pill:hover { background:rgba(61,112,68,0.05); border-color:var(--green); color:var(--green); }

/* ── FOOTER ── */
footer {
  background: #2c2820;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
/* Ghost signature watermark anchored to bottom */
footer::before {
  z-index: 0;
  content: "Naomi Toele";
  font-family: "Great Vibes", cursive;
  font-size: clamp(7rem, 16vw, 14rem);
  color: rgba(255,255,255,0.035);
  position: absolute;
  bottom: -1.8rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
/* Gold gradient top line */
footer::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,145,42,0.4), transparent);
}
.f-main {
  padding: 2.5rem 8% 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.f-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.f-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 2.6rem;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  display: block;
  margin-bottom: 0.2rem;
  transition: color 0.3s;
}
.f-logo:hover { color: var(--terra-lt); }
.f-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255,255,255,0.38);
  font-size: 0.92rem;
  margin-bottom: 1.4rem;
}
.f-lk-img {
  height: 2.4rem;
  width: auto;
  max-width: 160px;
  opacity: 0.65;
  display: block;
  transition: opacity 0.3s;
}
.f-lk-img:hover { opacity: 0.9; }
.f-col-title {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  display: block;
  margin-bottom: 1.2rem;
}
.f-col ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem 1.5rem; }
.f-col ul li { margin-bottom: 0; }
.f-col a {
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 300;
  transition: color 0.3s;
  display: inline-block;
  position: relative;
}
.f-col a::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--terra);
  transition: width 0.3s;
}
.f-col a:hover { color: rgba(255,255,255,0.85); }
.f-col a:hover::after { width: 100%; }
.f-contact-item {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.f-contact-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  opacity: 0.6;
  stroke: rgba(255,255,255,0.7);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.f-contact-item a {
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  transition: color 0.3s;
}
.f-contact-item a:hover { color: var(--terra-lt); }
.f-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.1rem 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.f-bottom a { color: rgba(255,255,255,0.32); text-decoration: none; transition: color 0.3s; }
.f-bottom a:hover { color: var(--terra); }


/* ── ANIMATIONS ── */
.js-loaded .js-loaded .reveal {
  opacity:0; transform:translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }
.d1 { transition-delay:0.1s; }
.d2 { transition-delay:0.2s; }
.d3 { transition-delay:0.3s; }
.d4 { transition-delay:0.4s; }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .services-grid {
  margin-top: 30px; grid-template-columns:repeat(2,1fr); }
  .testimonials-grid { grid-template-columns:repeat(2,1fr); }
  .about { grid-template-columns:1fr; }
  .about-photo { height:420px; }
  .f-main { grid-template-columns:1fr 1fr; }
  .f-bottom a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.3s; }
.f-bottom a:hover { color: var(--terra); }
.f-bottom { grid-column:1/-1; }
}
@media (max-width:768px) {
  .hero-inner { grid-template-columns:1fr; text-align:center; gap:3rem; }
  .hero-eyebrow { justify-content:center; }
  .hero-sig { justify-content:center; }
  .hero-cta-row { justify-content:center; }
  .hero-photo-wrap { width:260px; height:260px; }
  .nav-links { display:none; }
  .cta-band { flex-direction:column; text-align:center; }
  .cta-band-sub { margin:0 auto; }
}
@media (max-width:540px) {
  .services-grid {
  margin-top: 30px; grid-template-columns:1fr; }
  .testimonials-grid { grid-template-columns:1fr; }
  .f-main { grid-template-columns:1fr; }
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(61,112,68,0.3);
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.35s, transform 0.35s, background 0.25s;
  pointer-events: none;
  z-index: 200;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--green-deep); transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; stroke: #fff; }



/* ── INNER PAGE SHARED ── */
.page-hero{
  position:relative;z-index:1;
  padding:6rem 6% 2.5rem;
  background:
    radial-gradient(ellipse at 70% 60%, rgba(122,170,130,0.1), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(196,112,63,0.06), transparent 50%),
    var(--parchment);
  text-align:center;
  border-bottom:1px solid rgba(184,145,42,0.12);
}
.page-eyebrow{font-size:0.7rem;letter-spacing:0.26em;text-transform:uppercase;color:var(--terra);margin-bottom:0.8rem;display:block}
.page-title{font-family:"Great Vibes",cursive;font-size:clamp(3rem,6vw,5rem);color:var(--text);line-height:1.1;margin-bottom:0.5rem}
.page-subtitle{font-family:"Playfair Display",serif;font-style:italic;font-size:1.15rem;color:var(--green);max-width:650px;margin:0 auto;line-height:1.6}

/* ── INTRO ── */
.intro{
  padding:1.875rem 6% 0;max-width:900px;margin:0 auto;
  text-align:center;position:relative;z-index:1;
}
.intro p{font-size:1.05rem;line-height:1.9;color:var(--text-mid)}

/* ── SERVICE DETAIL CARDS ── */
.services-detail{
  padding:2.25rem 6% 3rem;
  position:relative;z-index:1;
}
.service-row{
  display:grid;grid-template-columns:1fr 3fr;
  gap:0;
  max-width:1200px;margin:0 auto 2px;
  border:1px solid rgba(184,145,42,0.1);
}
.service-row:nth-child(even){grid-template-columns:3fr 1fr;}
.service-row:nth-child(even) .service-visual{order:2}
.service-row:nth-child(even) .service-text{order:1}

.service-visual{
  background:var(--sage-pale);
  min-height:320px;
  display:flex;align-items:center;justify-content:center;
  position:relative;overflow:hidden;
}
.service-visual-inner{
  width:120px;height:120px;position:relative;
}
.service-visual-inner svg{width:100%;height:100%}
/* Slow pulse ring */
.service-pulse{
  position:absolute;inset:-20px;border-radius:50%;
  border:1px solid rgba(61,112,68,0.2);
  animation:pulse-ring 3s ease-in-out infinite;
}
.service-pulse:nth-child(2){inset:-40px;animation-delay:1s;opacity:0.5}
@keyframes pulse-ring{
  0%,100%{transform:scale(1);opacity:0.4}
  50%{transform:scale(1.06);opacity:0.8}
}
/* Colour tint per card */
.service-row:nth-child(1) .service-visual{background:linear-gradient(135deg,#e8f0e6,#f3ede2)}
.service-row:nth-child(2) .service-visual{background:linear-gradient(135deg,#f3ede2,#e8f0e6)}
.service-row:nth-child(3) .service-visual{background:linear-gradient(135deg,#f0ead8,#e8f0e6)}
.service-row:nth-child(4) .service-visual{background:linear-gradient(135deg,#e8f0e6,#f0ead8)}

.service-text{
  background:var(--parchment2);
  padding:1.75rem 2rem;
  display:flex;flex-direction:column;justify-content:center;
}
.service-num-tag{font-size:0.62rem;letter-spacing:0.22em;text-transform:uppercase;color:var(--gold);margin-bottom:0.5rem;display:block}
.service-title{font-family:"Playfair Display",serif;font-size:1.7rem;font-weight:600;color:var(--text);margin-bottom:0.4rem}
.service-tagline{font-family:"Playfair Display",serif;font-style:italic;font-size:1rem;color:var(--terra);margin-bottom:1.5rem}
.service-body{font-size:0.97rem;line-height:1.9;color:var(--text-mid);margin-bottom:1.5rem}
.service-questions{list-style:none;margin-bottom:1.8rem}
.service-questions li{
  font-family:"Playfair Display",serif;font-style:italic;
  font-size:0.95rem;color:var(--text-mid);
  padding:0.4rem 0 0.4rem 1.4rem;
  border-bottom:1px solid rgba(184,145,42,0.1);
  position:relative;
}
.service-questions li::before{content:"◆";position:absolute;left:0;color:var(--gold);font-size:0.4rem;top:0.75rem}

/* ── CTA ── */
.page-cta{
  background:var(--green);padding:5rem 6%;
  text-align:center;position:relative;z-index:1;overflow:hidden;
}
.page-cta::before{content:"";position:absolute;inset:0;background:radial-gradient(ellipse at 50% 50%,rgba(255,255,255,0.04),transparent 60%)}
.page-cta-label{font-size:0.68rem;letter-spacing:0.22em;text-transform:uppercase;color:rgba(255,255,255,0.55);margin-bottom:0.8rem;display:block}
.page-cta-title{font-family:"Great Vibes",cursive;font-size:clamp(2.5rem,5vw,4rem);color:#fff;margin-bottom:0.8rem}
.page-cta-sub{font-family:"Playfair Display",serif;font-style:italic;color:rgba(255,255,255,0.7);font-size:1.05rem;margin-bottom:2rem}
.btn-light{display:inline-flex;align-items:center;gap:0.5rem;background:#fff;color:var(--green);padding:0.9rem 2rem;font-family:"Lato",sans-serif;font-size:0.78rem;letter-spacing:0.14em;text-transform:uppercase;text-decoration:none;border-radius:1px;transition:background 0.3s,transform 0.2s}
.btn-light:hover{background:var(--linen);transform:translateY(-2px)}

@media(max-width:900px){
  .service-row{grid-template-columns:1fr !important}
  .service-row .service-visual{
    order:1 !important;
    min-height:0 !important;
    height:auto;
    padding:3.2rem 0 1.5rem;
  }
  .service-row .service-text{order:2 !important; padding:2rem 1.5rem;}
  .service-row:nth-child(even) .service-visual{order:1 !important}
  .service-row:nth-child(even) .service-text{order:2 !important}
  .service-visual-inner{width:48px !important;height:48px !important;}
  .service-pulse{inset:-10px !important;}
  .service-pulse:nth-child(2){inset:-20px !important;}
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(61,112,68,0.3);
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.35s, transform 0.35s, background 0.25s;
  pointer-events: none;
  z-index: 200;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--green-deep); transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; stroke: #fff; }



/* ── OVER MIJ PAGE ── */
.bio-split{
  display:grid;grid-template-columns:1fr 1fr;
  min-height:600px;position:relative;z-index:1;
}
.bio-photo{position:relative;overflow:hidden}
.bio-photo img,.bio-photo svg{width:100%;height:100%;object-fit:cover;object-position:top;display:block}
.bio-photo::after{content:"";position:absolute;inset:0;background:linear-gradient(120deg,rgba(61,112,68,0.1),transparent 60%);pointer-events:none}
/* Layered offset frames */
.bio-photo-frame{position:relative;height:100%;min-height:500px}
.bio-frame-outer{position:absolute;inset:20px 20px 20px -10px;border:1px solid rgba(184,145,42,0.15);transform:rotate(1.5deg);pointer-events:none;z-index:2}
.bio-frame-mid{position:absolute;inset:10px -10px 10px 20px;border:1px solid rgba(61,112,68,0.12);transform:rotate(-1deg);pointer-events:none;z-index:2}

.bio-content{background:var(--linen);padding:2.5rem 6%;display:flex;flex-direction:column;justify-content:center;border-left:1px solid rgba(184,145,42,0.12)}
.sec-tag{display:block;font-size:0.7rem;letter-spacing:0.26em;text-transform:uppercase;color:var(--terra);margin-bottom:0.7rem}
.bio-title{font-family:"Great Vibes",cursive;font-size:clamp(2.5rem,4vw,3.8rem);color:var(--text);line-height:1.15;margin-bottom:0.3rem}
.bio-sub{font-family:"Playfair Display",serif;font-style:italic;font-size:1.1rem;color:var(--text-soft);margin-bottom:1.8rem}
.bio-body{font-size:0.97rem;line-height:1.9;color:var(--text-mid);margin-bottom:1.2rem}
.bio-pull{border-left:3px solid var(--gold);padding:1rem 1.5rem;background:rgba(184,145,42,0.05);margin:0 0 1.5rem 0}
.bio-pull p{font-family:"Playfair Display",serif;font-style:italic;font-size:1.05rem;line-height:1.7;color:var(--text)}

/* TIMELINE */
.timeline-section{
  padding:3.5rem 6% 1.5rem;background:var(--parchment2);
  position:relative;z-index:1;
}
.timeline-section::before{content:"";position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,var(--gold),transparent);opacity:0.3}
.sec-header{text-align:center;margin-bottom:2rem}
.sec-title{font-family:"Playfair Display",serif;font-size:clamp(1.5rem,3vw,2.2rem);font-weight:600;color:var(--text)}
.sec-title em{font-style:italic;color:var(--green)}

.timeline{max-width:800px;margin:0 auto;position:relative;padding-bottom:0}
.timeline::before{content:"";position:absolute;left:50%;top:0;bottom:0;width:1px;background:linear-gradient(to bottom,transparent,rgba(184,145,42,0.3),transparent);transform:translateX(-50%)}
.timeline-item{
  display:grid;grid-template-columns:1fr 60px 1fr;
  gap:0;margin-bottom:1.5rem;align-items:center;
}
.timeline-item:nth-child(odd) .timeline-content{grid-column:1;text-align:right;padding-right:2.5rem}
.timeline-item:nth-child(odd) .timeline-dot{grid-column:2}
.timeline-item:nth-child(odd) .timeline-empty{grid-column:3}
.timeline-item:nth-child(even) .timeline-empty{grid-column:1}
.timeline-item:nth-child(even) .timeline-dot{grid-column:2}
.timeline-item:nth-child(even) .timeline-content{grid-column:3;text-align:left;padding-left:2.5rem}
.timeline-dot{display:flex;align-items:center;justify-content:center;z-index:1}
.timeline-dot-inner{width:14px;height:14px;border-radius:50%;background:var(--gold);box-shadow:0 0 0 4px rgba(184,145,42,0.15)}
.timeline-year{font-size:0.68rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--gold);margin-bottom:0.3rem;display:block}
.timeline-title{font-family:"Playfair Display",serif;font-size:1.1rem;font-weight:600;color:var(--text);margin-bottom:0.3rem}
.timeline-text{font-size:0.9rem;line-height:1.7;color:var(--text-mid)}

@media(max-width:700px){
  .timeline{padding-left:0}
  .timeline::before{left:10px;transform:none}
  .timeline-item{
    display:grid;
    grid-template-columns:28px 1fr;
    gap:0 0.75rem;
    margin-bottom:2.5rem;
    align-items:start;
  }
  .timeline-item .timeline-empty{display:none}
  .timeline-item .timeline-dot,
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot{
    grid-column:1; grid-row:1;
    display:flex; justify-content:center;
    padding-top:1.4rem;
  }
  .timeline-item .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content{
    grid-column:2; grid-row:1;
    text-align:left !important;
    padding:0 !important;
  }
}

/* VALUES */
.values-section{padding:1.5rem 6% 3rem;background:var(--sage-pale);position:relative;z-index:1;border-top:1px solid rgba(184,145,42,0.3)}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;max-width:1000px;margin:1.5rem auto 0}
.values-intro{max-width:820px;margin:0 auto 2rem;text-align:center;font-family:"Playfair Display",serif;font-size:0.95rem;line-height:1.8;color:var(--text-mid)}
.values-intro p:first-child{padding-top:15px}
.values-intro p{margin-bottom:0.9rem}
.values-intro-note{font-style:italic;font-size:0.88rem;color:var(--text-mid);opacity:0.8}
.value-card{background:#fff;border:1px solid rgba(61,112,68,0.1);padding:2.5rem 2rem;text-align:center;transition:transform 0.3s,box-shadow 0.3s}
.value-card:hover{transform:translateY(-5px);box-shadow:0 16px 40px rgba(61,112,68,0.08)}
.value-card-header{display:flex;align-items:center;justify-content:center;gap:1rem;margin-bottom:0.75rem}
.value-icon{font-size:2rem;display:flex;flex-shrink:0;}
.value-icon svg{width:42px;height:42px;}
.value-title{font-family:"Playfair Display",serif;font-size:1.1rem;font-weight:600;color:var(--text);margin-bottom:0;text-align:left}
.value-text{font-size:0.9rem;line-height:1.7;color:var(--text-mid);font-style:italic;font-family:"Playfair Display",serif}
.value-text a{color:var(--green);text-decoration:underline}
.value-list{list-style:none;padding:0;margin:0;font-family:"Playfair Display",serif;font-style:italic;font-size:0.9rem;line-height:1.7;color:var(--text-mid);text-align:center}
.value-list li{margin-bottom:0.4rem;padding-left:0}
.value-list li::before{content:"• ";color:var(--gold)}

/* CTA */
.page-cta{background:var(--green);padding:5rem 6%;text-align:center;position:relative;z-index:1;overflow:hidden}
.page-cta::before{content:"";position:absolute;inset:0;background:radial-gradient(ellipse at 50% 50%,rgba(255,255,255,0.04),transparent 60%)}
.page-cta-label{font-size:0.68rem;letter-spacing:0.22em;text-transform:uppercase;color:rgba(255,255,255,0.55);margin-bottom:0.8rem;display:block}
.page-cta-title{font-family:"Great Vibes",cursive;font-size:clamp(2.5rem,5vw,4rem);color:#fff;margin-bottom:0.8rem}
.page-cta-sub{font-family:"Playfair Display",serif;font-style:italic;color:rgba(255,255,255,0.7);font-size:1.05rem;margin-bottom:2rem}
.btn-light{display:inline-flex;align-items:center;gap:0.5rem;background:#fff;color:var(--green);padding:0.9rem 2rem;font-family:"Lato",sans-serif;font-size:0.78rem;letter-spacing:0.14em;text-transform:uppercase;text-decoration:none;border-radius:1px;transition:background 0.3s,transform 0.2s}
.btn-light:hover{background:var(--linen);transform:translateY(-2px)}

@media(max-width:900px){
  .bio-split{grid-template-columns:1fr}
  .bio-photo-frame{min-height:380px}
  .timeline::before{left:20px}
  .timeline-item{grid-template-columns:40px 1fr}
  .timeline-item:nth-child(odd) .timeline-content,.timeline-item:nth-child(even) .timeline-content{grid-column:2;text-align:left;padding-left:1.5rem;padding-right:0}
  .timeline-item:nth-child(odd) .timeline-dot,.timeline-item:nth-child(even) .timeline-dot{grid-column:1}
  .timeline-empty{display:none}
  .values-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:540px){.values-grid{grid-template-columns:1fr}}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(61,112,68,0.3);
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.35s, transform 0.35s, background 0.25s;
  pointer-events: none;
  z-index: 200;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--green-deep); transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; stroke: #fff; }



/* ── CONTACT PAGE ── */
.contact-main{
  display:grid;grid-template-columns:1fr 1fr;
  max-width:1200px;margin:0 auto;
  padding:6rem 6%;gap:6rem;
  position:relative;z-index:1;
  align-items:start;
}

/* LEFT: info */
.contact-info{}
.sec-tag{display:block;font-size:0.7rem;letter-spacing:0.26em;text-transform:uppercase;color:var(--terra);margin-bottom:0.7rem}
.contact-heading{font-family:"Great Vibes",cursive;font-size:clamp(2.5rem,4vw,3.8rem);color:var(--text);line-height:1.1;margin-bottom:0.4rem}
.contact-sub-txt{font-family:"Playfair Display",serif;font-style:italic;font-size:1.1rem;color:var(--green);margin-bottom:0.9rem}
.contact-body-txt{font-size:0.97rem;color:var(--text-mid);line-height:1.8;margin-bottom:1.5rem}
.contact-sub{font-family:"Playfair Display",serif;font-style:italic;font-size:1.1rem;color:var(--green);margin-bottom:1rem}
.contact-body{font-size:0.97rem;line-height:1.9;color:var(--text-mid);margin-bottom:1rem}

.contact-methods{display:flex;flex-direction:column;gap:1rem;margin-bottom:2.5rem}
.contact-method{
  display:flex;align-items:center;gap:1.2rem;
  padding:1.2rem 1.5rem;
  border:1px solid rgba(61,112,68,0.15);
  background:var(--parchment2);
  text-decoration:none;
  transition:border-color 0.3s,background 0.3s,transform 0.2s;
}
.contact-method:hover{border-color:var(--green);background:var(--sage-pale);transform:translateX(4px)}
.contact-method-icon{width:44px;height:44px;flex-shrink:0;display:flex;align-items:center;justify-content:center;}
.contact-method-icon svg{width:24px;height:24px;stroke:var(--terra);fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;}
.contact-method-label{font-size:0.68rem;letter-spacing:0.16em;text-transform:uppercase;color:var(--gold);display:block;margin-bottom:0.15rem}
.contact-method-value{font-family:"Playfair Display",serif;font-size:1rem;color:var(--text)}

.contact-note{
  border-left:3px solid var(--gold);
  padding:1rem 1.5rem;
  background:rgba(184,145,42,0.05);
}
.contact-note p{font-family:"Playfair Display",serif;font-style:italic;font-size:0.95rem;line-height:1.7;color:var(--text-mid)}

/* RIGHT: form */
.contact-form-wrap{
  background:var(--linen);
  border:1px solid rgba(184,145,42,0.12);
  padding:3rem;
  position:relative;
}
.contact-form-wrap::before{
  content:"";position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--green),var(--sage));
}
.form-title{font-family:"Playfair Display",serif;font-size:1.4rem;font-weight:600;color:var(--text);margin-bottom:0.3rem}
.form-sub{font-family:"Playfair Display",serif;font-style:italic;font-size:0.95rem;color:var(--text-soft);margin-bottom:2rem}

.form-group{margin-bottom:1.4rem}
.form-label{display:block;font-size:0.72rem;letter-spacing:0.14em;text-transform:uppercase;color:var(--text-mid);margin-bottom:0.5rem}
.form-input,.form-select,.form-textarea{
  width:100%;
  padding:0.85rem 1rem;
  border:1px solid rgba(61,112,68,0.2);
  background:var(--parchment);
  color:var(--text);
  font-family:"Lato",sans-serif;
  font-size:0.95rem;
  border-radius:1px;
  transition:border-color 0.3s,box-shadow 0.3s;
  outline:none;
  appearance:none;
}
.form-input:focus,.form-select:focus,.form-textarea:focus{
  border-color:var(--green);
  box-shadow:0 0 0 3px rgba(61,112,68,0.08);
}
.form-textarea{resize:vertical;min-height:120px}
.form-select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5048' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center}

.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}

.btn-submit{
  width:100%;padding:1rem;
  background:var(--green);color:#fff;
  font-family:"Lato",sans-serif;font-size:0.82rem;letter-spacing:0.16em;text-transform:uppercase;
  border:none;border-radius:1px;cursor:pointer;
  transition:background 0.3s,transform 0.2s;
  margin-top:0.5rem;
}
.btn-submit:hover{background:var(--green-deep);transform:translateY(-2px)}

/* FAQ */
.faq-section{padding:6rem 6%;background:var(--sage-pale);position:relative;z-index:1}
.faq-section::before{content:"";position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(61,112,68,0.3),transparent)}
.faq-grid{max-width:900px;margin:3rem auto 0;display:grid;gap:1px;background:rgba(61,112,68,0.1)}
.faq-item{background:var(--parchment);padding:1.8rem 2rem;cursor:pointer;transition:background 0.3s}
.faq-item:hover{background:var(--parchment2)}
.faq-q{font-family:"Playfair Display",serif;font-size:1.05rem;font-weight:600;color:var(--text);display:flex;justify-content:space-between;align-items:center;gap:1rem}
.faq-icon{color:var(--gold);font-size:1rem;flex-shrink:0;transition:transform 0.3s}
.faq-a{font-size:0.95rem;line-height:1.8;color:var(--text-mid);max-height:0;overflow:hidden;transition:max-height 0.4s ease,padding 0.3s}
.faq-item.open .faq-a{max-height:200px;padding-top:1rem}
.faq-item.open .faq-icon{transform:rotate(45deg)}

.sec-header{text-align:center;margin-bottom:0}
.sec-title{font-family:"Playfair Display",serif;font-size:clamp(1.5rem,3vw,2.2rem);font-weight:600;color:var(--text)}
.sec-title em{font-style:italic;color:var(--green)}

@media(max-width:900px){
  .contact-main{grid-template-columns:1fr;gap:3rem;padding:4rem 6%}
  .form-row{grid-template-columns:1fr}
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(61,112,68,0.3);
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.35s, transform 0.35s, background 0.25s;
  pointer-events: none;
  z-index: 200;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--green-deep); transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; stroke: #fff; }




/* ── MOBILE HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(250,246,239,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1.5rem 6%;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(184,145,42,0.12);
  }
  .nav-links.open { display: flex; }
  nav { position: relative; }
}

/* ── ABOUT PHOTO PLACEHOLDER ── */
.hero-photo-placeholder,
.about-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: linear-gradient(135deg, var(--sage-pale), var(--linen));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1rem;
}
.hero-photo-placeholder::after { content: "Naomi Toele"; }
.about-photo-placeholder::after { content: "Foto hier"; }

/* ── LANG SWITCHER ── */
.lang-switcher { display: flex; gap: 0.4rem; align-items: center; }
.lang-btn {
  font-size: 1rem;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s;
  cursor: pointer;
}
.lang-btn.active,
.lang-btn:hover { opacity: 1; }

/* ── TESTIMONIAL MOBILE FIX ── */
@media(max-width:700px){
  .testimonials{ padding: 1.75rem 0 2rem; }
  .testimonials-slider-wrap{
    gap:0;
    align-items:flex-start;
    padding:0;
    margin-top: 2rem;
    justify-content: center;
  }
  .t-arrow{ width:36px; height:36px; flex-shrink:0; margin-top:1rem; }
  .t-arrow svg { width:18px; height:18px; }
  .testimonials-track-outer{
    overflow-x: hidden;
    overflow-y: visible;
  }
  .testimonials-track{ align-items:flex-start; }
  .t-card{
    min-width:0;
    padding:1.5rem 1.25rem;
    box-sizing:border-box;
  }
  .t-dots{ margin-top: 1rem; }
}

/* ── WHATSAPP FLOAT BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
  z-index: 200;
  text-decoration: none;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; color: #fff; fill: #fff; }