:root {
  --espresso:       #332A24;
  --espresso-mid:   #3D3529;
  --espresso-light: #4A4038;
  --terra:          #6B3026;
  --terra-light:    #7A3D31;
  --dorado:         #C4955A;
  --dorado-light:   #D4A96E;
  --salie:          #B0A49E;
  --salie-light:    #C8BFBA;
  --zand:           #C4955A;
  --linnen:         #E8E8D5;
  --melk:           #F8F3F0;
  --grijs:          #B0A49E;
  --wit:            #FFFFFF;
  --tekst-zacht:    #2C2820;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body:  'Jost', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--espresso);
  background: var(--melk);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* Flex columns default to min-width:auto (content-based), which stops children
   from shrinking below their natural content width and causes horizontal
   overflow on narrow screens. Reset it so children shrink to the viewport. */
body > * { min-width: 0; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--espresso);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  padding: 0 2.5rem;
  height: calc(100px - (28px * var(--nav-shrink, 0)));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  contain: layout style paint;
  will-change: height;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: calc(46px - (10px * var(--nav-shrink, 0)));
  width: auto;
  display: block;
  will-change: height;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
  justify-self: center;
}
nav > div:last-of-type {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248,245,240,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--melk); }
.nav-cta {
  background: var(--dorado);
  color: var(--espresso);
  border: none;
  border-radius: 999px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--dorado-light); }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
  margin-left: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--melk);
  transition: all 0.28s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 100px; left: 0; right: 0;
  background: var(--espresso);
  border-top: 0.5px solid rgba(255,255,255,0.08);
  padding: 0.5rem 2rem 1.5rem;
  z-index: 99;
  flex-direction: column;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,245,240,0.65);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--melk); }

/* ── LANG SWITCHER ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 3px;
  margin-right: 0.75rem;
}
.lang-btn {
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 5px 10px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,245,240,0.45);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.lang-btn.active { background: var(--melk); color: var(--espresso); }
.lang-btn:hover:not(.active) { color: var(--melk); }

/* ── HERO ── */
.hero-wrap { background: var(--melk); height: 100vh; overflow: hidden; }
.hero {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0;
  overflow: hidden;
}
.hero-text {
  animation: fadeUp 0.9s ease both;
  padding: 140px 4rem 100px 5rem;
  max-width: 640px;
  min-width: 0;
}
.hero-photo { height: 100vh; position: relative; overflow: hidden; }
.hero-slider { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--terra);
}
.hero-h1 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--espresso);
  margin-bottom: 2rem;
}
.hero-h1 em { color: var(--terra); font-style: italic; }
.hero-sub {
  font-size: 21px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--tekst-zacht);
  max-width: 560px;
  margin-bottom: 3rem;
}
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn-outline.btn-outline--hero { padding: 16px 52px; font-size: 13px; background: var(--terra); border-color: var(--terra); color: var(--melk); }
.btn-outline.btn-outline--hero:hover { background: transparent; border-color: var(--terra); color: var(--terra); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--terra);
  color: var(--melk);
  border: none;
  border-radius: 999px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--terra-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--espresso);
  border-radius: 999px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--terra); color: var(--terra); transform: translateY(-1px); }
.pains-cta-wrap { display: flex; justify-content: center; width: 100%; margin-top: 2rem; }
.btn-pains {
  display: inline-block;
  border: 1px solid var(--melk);
  border-radius: 999px;
  padding: 17px 51px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--melk);
  text-decoration: none;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}
.btn-pains:hover { background: transparent; color: var(--melk); border-color: rgba(248,243,240,0.28); }

/* ── ESPRESSO BAND ── */
.espresso-band { background: var(--espresso); padding: 5rem 2.5rem; }
.espresso-band-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.band-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  color: var(--melk);
  line-height: 1.2;
}
.band-title span { color: var(--dorado); }
.band-cta {
  background: var(--dorado);
  color: var(--espresso);
  border: none;
  border-radius: 999px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: background 0.2s;
}
.band-cta:hover { background: var(--dorado-light); }

/* ── SECTIONS ── */
.section {
  padding: 100px 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
#servicios { padding-top: 20px; }
#servicios .section-eyebrow { margin-bottom: 0.5rem; }
#servicios .section-title { margin-bottom: 0.5rem; }
#servicios .section-sub { margin-bottom: 1rem; font-size: 21px; }
.section-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--terra);
  display: inline-block;
}
.section-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--terra);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--tekst-zacht);
  max-width: 500px;
  margin-bottom: 3.5rem;
}

/* ── HOW IT WORKS — TIMELINE ── */
.timeline {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}
.timeline-track {
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--linnen);
  overflow: hidden;
}
.timeline-progress {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 0%;
  background: var(--terra);
  transition: height 0.08s linear;
}
.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding-bottom: 4rem;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-dot {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--linnen);
  background: var(--melk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  font-weight: 600;
  color: var(--terra);
  position: relative;
  z-index: 1;
  transition: background 0.4s, border-color 0.4s, color 0.4s;
}
.timeline-dot.active {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--melk);
}
.timeline-content { padding-top: 10px; }
.timeline-title { font-size: 17px; font-weight: 500; color: var(--espresso); margin-bottom: 0.45rem; letter-spacing: 0.02em; }
.timeline-desc  { font-size: 15px; font-weight: 300; color: var(--tekst-zacht); line-height: 1.75; }

/* ── HOE DECOR — mapas NL/Barcelona + avión animado ── */
#hoe { position: relative; overflow: visible; padding-top: 60px; }
.hoe-decor { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hoe-flight-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
#hoe-reveal-rect { transition: height 1.8s cubic-bezier(0.4,0,0.2,1); }
.hoe-map { position: absolute; width: 150px; height: 150px; }
.hoe-map-nl { width: 230px; height: 230px; top: 45px; right: -160px; }
.hoe-map-bcn { width: 230px; height: 230px; bottom: 15px; left: -160px; }
.hoe-map img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.92;
}
.hoe-pin-icon {
  position: absolute;
  width: 30px;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -92%);
  filter: drop-shadow(0 2px 4px rgba(51,42,36,0.35));
}
.hoe-plane {
  position: absolute;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin: -29px 0 0 -29px;
  left: 103%;
  top: 17.5%;
  transform: rotate(180deg);
  transition: left 1.8s cubic-bezier(0.4,0,0.2,1), top 1.8s cubic-bezier(0.4,0,0.2,1), transform 1.8s cubic-bezier(0.4,0,0.2,1);
}
.hoe-plane img { width: 100%; height: 100%; object-fit: contain; display: block; filter: drop-shadow(0 2px 3px rgba(51,42,36,0.3)); }

/* ── STAPPENPLAN CARDS ── */
#hoe .section-eyebrow,
#hoe .section-title,
#hoe .section-sub {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
#hoe .section-sub { font-size: 21px; }
.stappenplan {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}
.stap-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #fff;
  border-radius: 18px;
  padding: 1.4rem 1.75rem;
  box-shadow: 0 2px 18px rgba(51,42,36,0.07);
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease, opacity 0.4s ease;
}
.stap-card:hover { box-shadow: 0 6px 28px rgba(51,42,36,0.12); transform: translateY(-2px); }

/* Scroll highlight states */
.stappenplan-scroll-active .stap-card { opacity: 0.35; }
.stappenplan-scroll-active .stap-card.stap-active {
  opacity: 1;
  background: var(--terra);
  box-shadow: 0 6px 28px rgba(107,48,38,0.28);
  transform: translateY(-2px);
}
.stap-card .stap-label-text,
.stap-card .stap-num,
.stap-card .stap-bar,
.stap-card .stap-title,
.stap-card .stap-desc { transition: color 0.4s ease, background 0.4s ease, opacity 0.4s ease; }
.stap-card .stap-icon-wrap svg { transition: stroke 0.4s ease, opacity 0.4s ease; }
.stap-card.stap-active .stap-label-text    { color: rgba(248,243,240,0.55); }
.stap-card.stap-active .stap-num           { color: var(--melk); }
.stap-card.stap-active .stap-bar           { background: rgba(248,243,240,0.3); }
.stap-card.stap-active .stap-icon-wrap svg { stroke: var(--melk); opacity: 1; }
.stap-card.stap-active .stap-title         { color: var(--melk); }
.stap-card.stap-active .stap-desc          { color: var(--melk); opacity: 0.88; }
.stap-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  flex-shrink: 0;
  gap: 0.5rem;
}
.stap-label-text {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--salie);
  line-height: 1;
}
.stap-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--espresso);
  line-height: 1;
}
.stap-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stap-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--espresso);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.7;
}
.stap-bar {
  width: 1px;
  align-self: stretch;
  background: rgba(51,42,36,0.18);
  flex-shrink: 0;
}
.stap-body { flex: 1; }
.stap-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--terra);
  margin-bottom: 0.35rem;
}
.stap-desc {
  font-size: 18px;
  font-weight: 300;
  color: var(--espresso);
  line-height: 1.65;
  opacity: 0.82;
}

/* ── PAIN POINTS ── */
.pains-scroll-driver { height: 200vh; background: var(--espresso); }
.pains-scroll-driver .pains-section { position: sticky; top: 0; min-height: 100vh; }
.pains-section { padding: 100px 2.5rem; background: var(--espresso); }
.pains-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.pains-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--melk);
  margin-bottom: 1rem;
}
.pains-sub { font-size: 22px; font-weight: 300; color: rgba(248,245,240,0.55); line-height: 1.8; }
.pain-list { display: flex; flex-direction: column; gap: 1rem; }
.pain-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 1.5rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
  border-left: 3px solid transparent;
  transition: opacity 0.45s ease, border-left-color 0.45s ease;
}
.pain-item:first-child { border-top: 0.5px solid rgba(255,255,255,0.07); }
.pains-section.pain-scroll-active .pain-item             { opacity: 0.32; }
.pains-section.pain-scroll-active .pain-item.pain-active { opacity: 1; border-left-color: var(--melk); }
.pain-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pain-icon svg { width: 26px; height: 26px; stroke: var(--linnen); stroke-width: 1.3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.pain-text-title { font-size: 21px; font-weight: 400; color: var(--melk); margin-bottom: 6px; font-family: var(--font-serif); font-style: italic; }
.pain-text-desc  { font-size: 18px; font-weight: 300; color: rgba(248,245,240,0.6); line-height: 1.75; letter-spacing: 0.01em; }

/* ── SERVICIOS / AANBOD ── */
.aanbod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 1.25rem;
}
.aanbod-card {
  background: var(--wit);
  border-radius: 18px;
  border: 0.5px solid var(--linnen);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.aanbod-card:hover { transform: translateY(-10px); box-shadow: 0 24px 48px rgba(44,40,32,0.18); }
.aanbod-card.reveal.visible:hover { transform: translateY(-10px); box-shadow: 0 24px 48px rgba(44,40,32,0.18); }
.aanbod-img {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.03em;
}
.aanbod-img.a1 { background: linear-gradient(135deg, var(--espresso) 0%, var(--espresso-mid) 100%); color: var(--melk); }
.aanbod-img.a2 { background: linear-gradient(135deg, var(--terra) 0%, var(--terra-light) 100%); color: var(--melk); }
.aanbod-img.a3 { background: linear-gradient(135deg, var(--dorado) 0%, var(--dorado-light) 100%); color: var(--espresso); }
.aanbod-body { padding: 1rem 1.25rem 0.75rem; flex: 1; }
.aanbod-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zand);
  margin-bottom: 0.6rem;
}
.aanbod-badge .d { width: 6px; height: 6px; border-radius: 50%; background: var(--zand); }
.aanbod-title { font-size: 17px; font-weight: 400; color: var(--espresso); line-height: 1.3; margin-bottom: 0.75rem; }
.aanbod-features { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.aanbod-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  font-weight: 300;
  color: var(--tekst-zacht);
  line-height: 1.45;
}
.aanbod-features svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: none;
  stroke: var(--terra);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.aanbod-card:nth-child(1) .aanbod-features svg { stroke: var(--espresso); }
.aanbod-card:nth-child(3) .aanbod-features svg { stroke: var(--dorado); }
.aanbod-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--terra);
  cursor: pointer;
  transition: color 0.2s;
}
.aanbod-more::after { content: '→'; transition: transform 0.2s; }
.aanbod-more:hover { color: var(--terra-light); }
.aanbod-more:hover::after { transform: translateX(3px); }
.aanbod-footer {
  padding: 0.7rem 1.25rem;
  border-top: 0.5px solid var(--linnen);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.aanbod-price { font-family: var(--font-serif); font-style: italic; font-size: 20px; color: var(--espresso); }
.aanbod-price span { font-family: var(--font-body); font-size: 11px; font-weight: 300; color: var(--tekst-zacht); font-style: normal; }

/* ── SERVICIOS / MODAL ── */
.aanbod-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.aanbod-modal.is-open { opacity: 1; visibility: visible; transition: opacity 0.3s ease; }
.aanbod-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(51,42,36,0.55);
  backdrop-filter: blur(3px);
}
.aanbod-modal-panel {
  position: relative;
  background: var(--wit);
  border-radius: 24px;
  max-width: 520px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s ease;
  border-top: 5px solid var(--espresso);
}
.aanbod-modal.is-open .aanbod-modal-panel { transform: translateY(0) scale(1); }
.aanbod-modal-a2 .aanbod-modal-panel,
.aanbod-modal .aanbod-modal-a2 { border-top-color: var(--terra); }
.aanbod-modal-a3 .aanbod-modal-panel,
.aanbod-modal .aanbod-modal-a3 { border-top-color: var(--dorado); }
.aanbod-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--melk);
  color: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.aanbod-modal-close:hover { background: var(--linnen); }
.aanbod-modal-close svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.aanbod-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zand);
  margin-bottom: 0.75rem;
}
.aanbod-modal-badge .d { width: 6px; height: 6px; border-radius: 50%; background: var(--zand); }
.aanbod-modal-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}
.aanbod-modal-desc { font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--tekst-zacht); margin-bottom: 1.5rem; }
.aanbod-modal-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.75rem; }
.aanbod-modal-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 300; color: var(--espresso); line-height: 1.5; }
.aanbod-modal-features svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; fill: none; stroke: var(--terra); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.aanbod-modal-a1 .aanbod-modal-features svg { stroke: var(--espresso); }
.aanbod-modal-a3 .aanbod-modal-features svg { stroke: var(--dorado); }
.aanbod-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--linnen);
}
.aanbod-modal-price { font-family: var(--font-serif); font-style: italic; font-size: 24px; color: var(--espresso); }
.aanbod-modal-price span { font-family: var(--font-body); font-size: 12px; font-weight: 300; color: var(--tekst-zacht); font-style: normal; }
.aanbod-modal-cta {
  background: var(--terra);
  color: var(--melk);
  border: none;
  border-radius: 999px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.aanbod-modal-footer-solo { justify-content: flex-end; }
.aanbod-modal-cta:hover { background: var(--terra-light); }
body.aanbod-modal-open { overflow: hidden; }

/* ── ABOUT ── */
.over-section { padding: 100px 2.5rem; background: var(--melk); }
.over-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  grid-template-rows: auto 1fr;
  column-gap: 6rem;
  row-gap: 1.5rem;
  align-items: start;
}
/* En el HTML el título va antes que la foto (para poder mostrarlo así en
   móvil), pero en escritorio se mantiene la foto a la izquierda ocupando
   toda la altura y el título+texto a la derecha, en su orden original. */
.over-header { grid-column: 2; grid-row: 1; }
.over-text   { grid-column: 2; grid-row: 2; }
.over-avatar {
  grid-column: 1;
  grid-row: 1 / -1;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  max-width: 480px;
  justify-self: center;
  min-width: 0;
}
.over-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.over-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.over-body { font-size: 18px; font-weight: 300; line-height: 1.9; color: var(--tekst-zacht); margin-bottom: 2rem; }
.over-quote {
  border-left: 2px solid var(--terra);
  padding-left: 1.25rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.5;
}

/* ── CONTACT WHATSAPP CTA ── */
.contact-section { padding: 100px 2.5rem; max-width: 700px; margin: 0 auto; text-align: center; }
#contact .section-sub { font-size: 19px; }
.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 420px;
  margin: 2.5rem auto 0;
  padding: 18px 24px;
  border-radius: 999px;
  background: var(--terra);
  color: var(--melk);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.whatsapp-cta:hover { background: var(--terra-light); transform: translateY(-1px); }
.whatsapp-cta-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--melk);
  color: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-cta-icon svg { width: 22px; height: 22px; }
.whatsapp-cta-text {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.whatsapp-cta-label { font-size: 13px; font-weight: 500; letter-spacing: 0.02em; }
.whatsapp-cta-number { font-size: 11px; opacity: 0.8; font-weight: 300; }
.whatsapp-cta-arrow { font-size: 18px; flex-shrink: 0; }
.contact-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  max-width: 480px;
  margin: 2.5rem auto 0;
}
.contact-step { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; flex: 1; }
.contact-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(196,149,90,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-step-icon svg { width: 19px; height: 19px; stroke: var(--espresso); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.contact-step-num { font-family: var(--font-serif); font-style: italic; font-size: 13px; color: var(--terra); }
.contact-step-text { font-size: 12px; color: var(--tekst-zacht); line-height: 1.4; text-align: center; }
.contact-step-divider { width: 32px; height: 1px; background: rgba(51,42,36,0.15); margin-top: 22px; flex-shrink: 0; }

/* ── LEGAL PAGES (privacy / legal notice / cookies) ── */
.legal-section { padding: 80px 2.5rem 120px; max-width: 720px; margin: 0 auto; }
.legal-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--terra);
  margin-bottom: 0.5rem;
}
.legal-updated { font-size: 12px; color: var(--tekst-zacht); opacity: 0.7; margin-bottom: 3rem; }
.legal-content h2 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--espresso);
  margin: 2.5rem 0 0.75rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--tekst-zacht);
}

/* ── COOKIE CONSENT BANNER ── */
.cookie-banner {
  position: fixed;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 999;
  max-width: 640px;
  margin: 0 auto;
  background: var(--espresso);
  color: var(--melk);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  transform: translateY(140%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner-text { flex: 1; font-size: 12.5px; font-weight: 300; line-height: 1.6; }
.cookie-banner-text a { color: var(--melk); text-decoration: underline; text-underline-offset: 2px; margin-left: 6px; white-space: nowrap; }
.cookie-banner-actions { display: flex; flex-shrink: 0; }
.cookie-banner-accept {
  background: var(--terra);
  color: var(--melk);
  border: none;
  border-radius: 999px;
  padding: 11px 22px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.cookie-banner-accept:hover { background: var(--terra-light); }

/* ── QUOTE BAND ── */
.quote-band { background: var(--espresso); padding: 90px 2rem; }
.quote-band-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.quote-band-ornament {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}
.quote-band-line { flex: 1; height: 1px; background: var(--terra); opacity: 0.55; }
.quote-band-diamond { color: var(--terra); font-size: 9px; flex-shrink: 0; }
.quote-band-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 400;
  color: var(--melk);
  line-height: 1.55;
  margin-bottom: 1.8rem;
}
.quote-band-attr {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--salie);
  text-transform: uppercase;
}

/* ── FOOTER SEPARATOR ── */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--melk);
  opacity: 0.75;
}

/* ── FOOTER ── */
footer {
  background: var(--espresso);
  padding: 3rem 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: auto;
}
.footer-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 1.25rem;
}
.footer-row .footer-logo { justify-self: start; }
.footer-row .footer-social { justify-self: center; }
.footer-row .footer-links { justify-self: end; }
.footer-logo { font-family: var(--font-serif); font-style: italic; font-size: 20px; color: var(--melk); text-decoration: none; }
.footer-logo span { color: var(--dorado); }
.footer-copy { font-size: 11px; font-weight: 300; color: rgba(248,245,240,0.35); letter-spacing: 0.08em; text-align: center; }
.footer-links { display: flex; align-items: center; gap: 1.5rem; }
.footer-links-title { display: none; }
.footer-links a { font-size: 11px; font-weight: 300; color: rgba(248,245,240,0.45); text-decoration: none; letter-spacing: 0.1em; transition: color 0.2s; }
.footer-links a:hover { color: var(--dorado); }
.footer-social { display: flex; align-items: center; gap: 1.35rem; }
.footer-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(248,245,240,0.55);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--dorado); }
.footer-phone-icon { width: 17px; height: 17px; stroke: currentColor; stroke-width: 1.4; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.footer-social-icon { display: flex; color: rgba(248,245,240,0.55); transition: color 0.2s; }
.footer-social-icon:hover { color: var(--dorado); }
.footer-social-icon svg { width: 17px; height: 17px; stroke: currentColor; stroke-width: 1.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ── INTAKE FORM (formulario-cliente, página oculta) ── */
.intake-section { max-width: 760px; margin: 0 auto; padding: 60px 2.5rem 120px; }
.intake-header { text-align: center; margin-bottom: 2.5rem; }
.intake-header .section-sub { max-width: 560px; margin-left: auto; margin-right: auto; }
.intake-fieldset {
  background: var(--wit);
  border: 0.5px solid var(--linnen);
  border-radius: 18px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
}
.intake-legend {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--terra);
  line-height: 1.3;
}
.intake-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
  margin-top: 1.25rem;
}
.intake-field { display: flex; flex-direction: column; gap: 0.4rem; }
.intake-field--full { grid-column: 1 / -1; }
.intake-field label,
.intake-field-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--espresso);
}
.intake-field-label { margin-top: 1.5rem; margin-bottom: 0.5rem; }
.intake-form input[type="text"],
.intake-form input[type="email"],
.intake-form input[type="tel"],
.intake-form input[type="number"],
.intake-form input[type="date"],
.intake-form select,
.intake-form textarea {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--tekst-zacht);
  background: var(--melk);
  border: 0.5px solid var(--linnen);
  border-radius: 10px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.intake-form textarea { resize: vertical; font-family: var(--font-body); }
.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus { border-color: var(--terra); }
.intake-checks { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; margin-top: 1rem; }
.intake-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 300;
  color: var(--tekst-zacht);
  cursor: pointer;
}
.intake-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--terra); flex-shrink: 0; }
.intake-submit-row { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-top: 1rem; }
.intake-status { font-size: 13px; text-align: center; }
.intake-status.is-success { color: #4d7c5f; }
.intake-status.is-error { color: var(--terra); }

/* Selector de prefijo + número de teléfono */
.intake-phone-group { display: flex; gap: 0.5rem; }
.intake-phone-group input[type="tel"] { flex: 1; min-width: 0; }

/* Campo de texto libre para "Otro" */
.intake-otro-input { margin-top: 0.6rem; }

/* Selector desplegable personalizado (prefijo de teléfono) */
.intake-select-custom { position: relative; flex: 0 0 128px; }
.intake-select-trigger {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--tekst-zacht);
  background: var(--melk);
  border: 0.5px solid var(--linnen);
  border-radius: 10px;
  padding: 11px 26px 11px 14px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  transition: border-color 0.2s;
}
.intake-select-trigger:focus,
.intake-select-trigger.is-open { border-color: var(--terra); outline: none; }
.intake-select-trigger::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 45%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--tekst-zacht);
  border-bottom: 1.5px solid var(--tekst-zacht);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
.intake-select-panel {
  position: absolute;
  z-index: 200;
  top: calc(100% + 6px);
  left: 0;
  width: 240px;
  max-width: calc(100vw - 3rem);
  background: var(--wit);
  border: 0.5px solid var(--linnen);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(44,40,32,0.15);
  max-height: 260px;
  overflow-y: auto;
  padding: 0.4rem;
  display: none;
}
.intake-select-panel.is-open { display: block; }
.intake-select-option {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--tekst-zacht);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.intake-select-option:hover { background: var(--linnen); }
.intake-select-option.is-selected { color: var(--terra); font-weight: 500; }

/* Autocompletado personalizado (zona/barrio) */
.intake-autocomplete { position: relative; }
.intake-autocomplete-panel {
  position: absolute;
  z-index: 200;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--wit);
  border: 0.5px solid var(--linnen);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(44,40,32,0.15);
  max-height: 220px;
  overflow-y: auto;
  padding: 0.4rem;
  display: none;
}
.intake-autocomplete-panel.is-open { display: block; }
.intake-autocomplete-option {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--tekst-zacht);
  transition: background 0.15s;
}
.intake-autocomplete-option:hover { background: var(--linnen); }
.intake-autocomplete-empty { padding: 8px 10px; font-size: 12px; color: var(--salie); }

/* Selector múltiple de zona/barrio (chips) */
.intake-tags-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  background: var(--melk);
  border: 0.5px solid var(--linnen);
  border-radius: 10px;
  padding: 7px 8px;
  min-height: 44px;
  transition: border-color 0.2s;
}
.intake-tags-box:focus-within { border-color: var(--terra); }
.intake-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--dorado-light);
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 400;
  border-radius: 20px;
  padding: 4px 6px 4px 10px;
  white-space: nowrap;
}
.intake-tag button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--terra);
  font-size: 15px;
  line-height: 1;
  padding: 0 2px;
}
.intake-tags-box input[type="text"] {
  flex: 1;
  min-width: 90px;
  border: none !important;
  background: none !important;
  padding: 4px !important;
}

/* Panel de agradecimiento tras enviar el formulario */
.intake-success-panel {
  text-align: center;
  padding: 3rem 1rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.intake-success-panel .section-title,
.intake-success-panel .section-sub { max-width: 560px; }
.intake-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--terra);
  color: var(--melk);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tooltips de ayuda (?) junto a etiquetas */
.intake-label-row { display: flex; align-items: center; gap: 6px; position: relative; }
.intake-tooltip-trigger {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--salie);
  background: var(--melk);
  color: var(--terra);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.intake-tooltip-trigger:hover,
.intake-tooltip-trigger.is-open { background: var(--terra); color: var(--melk); border-color: var(--terra); }
.intake-tooltip-panel {
  position: absolute;
  z-index: 250;
  top: calc(100% + 8px);
  left: 0;
  width: 260px;
  max-width: calc(100vw - 3rem);
  background: var(--wit);
  border: 0.5px solid var(--linnen);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(44,40,32,0.15);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--tekst-zacht);
  display: none;
}
.intake-tooltip-panel.is-open { display: block; }

/* Selector de fecha personalizado */
.intake-date-input { cursor: pointer; background-image: none !important; }
.intake-datepicker {
  position: absolute;
  z-index: 200;
  background: var(--wit);
  border: 0.5px solid var(--linnen);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(44,40,32,0.15);
  padding: 1rem 1.1rem 1.2rem;
  width: 300px;
  display: none;
}
.intake-datepicker.is-open { display: block; }
.intake-datepicker-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.intake-datepicker-month {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--terra);
}
.intake-datepicker-nav {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--espresso);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s;
}
.intake-datepicker-nav:hover { background: var(--linnen); }
.intake-datepicker-nav svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.intake-datepicker-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.intake-datepicker-daylabel { font-size: 10px; font-weight: 500; text-align: center; color: var(--salie); padding-bottom: 4px; text-transform: uppercase; }
.intake-datepicker-day {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--tekst-zacht);
  padding: 7px 0;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.intake-datepicker-day:hover { background: var(--linnen); }
.intake-datepicker-day.is-today { color: var(--terra); font-weight: 500; }
.intake-datepicker-day.is-selected { background: var(--terra); color: var(--melk); }
.intake-datepicker-day.is-outside { color: rgba(44,40,32,0.25); }
.intake-datepicker-day[disabled] { opacity: 0.3; cursor: not-allowed; }
.intake-datepicker-day[disabled]:hover { background: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  min-width: 0;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── HOE PAGE — STICKY SCROLL ── */
.hoe-scroll-driver {
  position: relative;
  height: 220vh;
}
.hoe-scroll-sticky {
  position: sticky;
  top: 100px;
}

/* ── TABLET ── */
@media (max-width: 1024px) {
  .nav-logo-img { height: 40px; }

  .hero { grid-template-columns: 1fr 1fr; }
  .hero-text { padding: 120px 2.5rem 80px 3rem; }
  .hero-eyebrow { font-size: 12px; }
  .hero-sub { font-size: 20px; }

  .aanbod-grid { grid-template-columns: 1fr 1fr; }
  .aanbod-modal-panel { padding: 2rem; max-width: 460px; }

  .pains-sub { font-size: 21px; }
  .pain-text-desc { font-size: 17px; }

  .over-avatar { max-width: 340px; }
  .over-body { font-size: 17px; }

  #contact .section-sub { font-size: 18px; }

  .hoe-decor { display: none; }
  #hoe { padding-top: 40px; }

  #hoe .section-eyebrow,
  #hoe .section-title,
  #hoe .section-sub { max-width: 100%; margin-left: 0; margin-right: 0; }
  #hoe .section-sub { font-size: 18px; }
  .stappenplan { max-width: 100%; }
  .stap-card { padding: 1.2rem 1.5rem; gap: 1rem; }
  .stap-num { font-size: 2rem; }
  .stap-title { font-size: 19px; }
  .stap-desc { font-size: 17px; }

  .section { padding: 80px 2rem; }
  #servicios { padding-top: 40px; }
  .pains-section { padding: 80px 2rem; }
  .legal-section { padding: 80px 2rem 100px; }

  .contact-steps { max-width: 420px; gap: 1rem; }
  .contact-step-divider { margin-top: 20px; }

  .intake-section { padding: 50px 1.5rem 100px; }
  .intake-fieldset { padding: 1.5rem; }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; grid-template-columns: auto 1fr auto; }
  .nav-logo-img { height: 32px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .lang-switcher { margin-right: 0; }
  .lang-btn { padding: 5px 7px; font-size: 9px; }

  .hero-wrap { height: auto; overflow: visible; }
  .hero { display: block; height: auto; overflow: visible; }
  .hero-text {
    min-height: calc(100vh * 0.8);
    min-height: calc(100dvh * 0.8);
    padding: calc(100px + 1.75rem) 1.25rem 2.5rem;
    display: flex;
    flex-direction: column;
  }
  .hero-text::before { content: ''; flex: 0.4 0 0; }
  .hero-text::after  { content: ''; flex: 1.6 0 0; }
  .hero-eyebrow { font-size: 11px; }
  .hero-sub { font-size: 19px; }
  .hero-photo { height: 55vw; min-height: 260px; }

  .btn-outline.btn-outline--hero { padding: 14px 36px; font-size: 12px; }

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

  .pains-sub { font-size: 20px; }
  .pain-text-desc { font-size: 17px; }

  .aanbod-grid { grid-template-columns: 1fr; }
  .aanbod-modal { padding: 1rem; }
  .aanbod-modal-panel { padding: 1.75rem; max-height: 90vh; }
  .aanbod-modal-title { font-size: 22px; }
  .aanbod-modal-footer { flex-direction: column; align-items: stretch; gap: 0.9rem; }
  .aanbod-modal-cta { text-align: center; }

  .pains-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .pains-title, .pains-sub { text-align: center; }

  .over-inner { grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
  .over-header, .over-avatar, .over-text { grid-column: 1; grid-row: auto; }
  .over-avatar { max-width: 100%; aspect-ratio: 3/4; }

  .whatsapp-cta { max-width: 100%; padding: 14px 18px; gap: 14px; }
  .whatsapp-cta-icon { width: 36px; height: 36px; }
  .whatsapp-cta-icon svg { width: 20px; height: 20px; }

  .footer-row { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-row .footer-logo,
  .footer-row .footer-social,
  .footer-row .footer-links { justify-self: center; }
  .footer-social { justify-content: center; flex-wrap: wrap; }
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    max-width: 280px;
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 0.5px solid rgba(255,255,255,0.12);
  }
  .footer-links-title {
    display: block;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(248,245,240,0.55);
    margin-bottom: 0.15rem;
  }

  .section { padding: 60px 1.25rem; }
  #hoe { padding-top: 24px; }
  #servicios { padding-top: 24px; }
  .pains-section { padding: 60px 1.25rem; }
  .over-section { padding: 60px 1.25rem; }
  #over { padding-top: 24px; }
  .contact-section { padding: 60px 1.25rem; }
  .contact-steps { max-width: 100%; gap: 0.5rem; padding: 0 0.25rem; }
  .contact-step-icon { width: 36px; height: 36px; }
  .contact-step-icon svg { width: 16px; height: 16px; }
  .contact-step-num { font-size: 11px; }
  .contact-step-text { font-size: 10.5px; }
  .contact-step-divider { width: 16px; margin-top: 18px; }
  .legal-section { padding: 60px 1.25rem 80px; }
  .legal-content h2 { font-size: 12px; margin-top: 2rem; }
  .legal-content p { font-size: 14px; }

  .intake-section { padding: 40px 1.1rem 80px; }
  .intake-fieldset { padding: 1.25rem 1.1rem; }
  .intake-legend { font-size: 19px; }
  .intake-grid { grid-template-columns: 1fr; gap: 1rem; }
  .intake-checks { gap: 0.6rem 1rem; }
  .intake-datepicker { width: calc(100vw - 3.2rem); max-width: 300px; }
  .intake-select-panel { width: min(240px, calc(100vw - 3.2rem)); }
  .intake-autocomplete-panel { max-height: 180px; }

  .cookie-banner { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; flex-direction: column; align-items: stretch; gap: 0.9rem; padding: 1.1rem 1.25rem; }
  .cookie-banner-accept { width: 100%; }

  .stappenplan { gap: 0.75rem; }
  .stap-card { padding: 0.9rem 1rem; gap: 0.75rem; }
  .stap-left { min-width: 48px; gap: 0.35rem; }
  .stap-num { font-size: 1.6rem; }
  .stap-icon-wrap svg { width: 18px; height: 18px; }
  .stap-title { font-size: 18px; }
  .stap-desc { font-size: 17px; }

  .section-title { font-size: 2rem; }
  .section-sub { font-size: 14px; }
  #hoe .section-sub { font-size: 16px; }
  #servicios .section-sub { font-size: 16px; }
  #contact .section-sub { font-size: 15px; }
  .aanbod-features li { font-size: 14px; }
  .over-body { font-size: 16px; }
}
