/*
 * Vertrekstrook (design 2a) — the first intake question, on the homepage.
 *
 * Deliberately card-less: the fields float on the page's own photo background
 * instead of sitting in a white panel, so the hero stays a hero. Readability
 * therefore hangs on each control keeping its own white fill and on the label
 * text staying dark; do not make the labels lighter than #334155.
 *
 * Used by site/index.html and site/start.html; behaviour in assets/tripstart.js.
 * quickstart.css is untouched — /planners.html still needs it.
 */

.tripstart {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}

/* ── The strip itself: destination, two dates, one button ───── */

.tripstart-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-end;
}

.tripstart-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.tripstart-field.tripstart-where {
  flex: 1 1 190px;
  min-width: 150px;
}

.tripstart-dates {
  display: flex;
  gap: 0.75rem;
  flex: 0 1 auto;
}

.tripstart-dates .tripstart-field {
  width: 130px;
}

.tripstart-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #334155;
}

.tripstart-input {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 0.8rem 0.85rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
  width: 100%;
  box-sizing: border-box;
}

.tripstart-input::placeholder {
  color: #94a3b8;
}

.tripstart-where .tripstart-input {
  border-color: var(--brand-primary);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12),
              0 0 0 3px rgba(67, 176, 179, 0.15);
}

.tripstart-input:focus-visible,
.tripstart-submit:focus-visible,
.tripstart-chip:focus-visible,
.tripstart-manual:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

.tripstart-submit {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  border: none;
  border-radius: 14px;
  padding: 0.95rem 1.25rem;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(67, 176, 179, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tripstart-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(67, 176, 179, 0.45);
}

/* ── Suggestion chips + nights counter ───────────────────────── */

.tripstart-under {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.tripstart-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  flex: 1 1 auto;
  min-width: 0;
}

.tripstart-chips-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.tripstart-chip {
  font-family: inherit;
  font-size: 0.75rem;
  color: #334155;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  cursor: pointer;
}

.tripstart-chip:hover {
  background: #fff;
  border-color: var(--brand-primary);
}

.tripstart-nights {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2f8083;
  flex: 0 0 auto;
  white-space: nowrap;
}

/* ── The "wij pakken dit aan als" line ───────────────────────── */

.tripstart-route {
  box-sizing: border-box;
  width: 100%;
  margin: 0.9rem 0 0;
  padding: 0.56rem 0.95rem;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #1e293b;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
}

.tripstart-route:empty {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.tripstart-route-eyebrow {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2f8083;
  margin-right: 0.35rem;
}

.tripstart-route-name {
  color: var(--text-primary);
  font-weight: 700;
}

.tripstart-error {
  margin: 0.7rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #b91c1c;
}

.tripstart-error[hidden] {
  display: none;
}

.tripstart-foot {
  width: fit-content;
  max-width: 100%;
  margin: 0.9rem auto 0;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
}

.tripstart-manual {
  color: #2f8083;
  font-weight: 600;
}

/* ── Compact variant, used by the closing section ────────────── */

.tripstart-compact .tripstart-route,
.tripstart-compact .tripstart-under {
  display: none;
}

/* ── Mobile: stack, dates side by side, full-width button ───── */

@media (max-width: 700px) {
  .tripstart-row {
    gap: 0.65rem;
  }

  .tripstart-field.tripstart-where {
    flex: 1 1 100%;
  }

  .tripstart-dates {
    flex: 1 1 100%;
  }

  .tripstart-dates .tripstart-field {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
  }

  .tripstart-submit {
    flex: 1 1 100%;
    padding: 1rem;
    font-size: 1rem;
  }

  .tripstart-under {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* ═══ Section 2: "Wij kiezen de aanpak, jij houdt het stuur" ═══
 *
 * What the planner-picker grid used to occupy. It shows the three engines,
 * but as outcomes the router chooses between — never as a question, and
 * never as links into a planner (those deep links skipped the intake).
 */

.approach {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 2.2rem 2rem 2rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.approach-head {
  text-align: center;
  margin-bottom: 1.6rem;
}

.approach-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--brand-primary);
}

.approach-head p {
  margin: 0 auto;
  max-width: 56ch;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--brand-primary);
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.approach-step {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
  padding: 1.1rem 1.1rem 1.25rem;
}

.approach-step-num {
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  color: var(--brand-primary);
}

.approach-step:nth-child(2) .approach-step-num { color: var(--brand-accent); }
.approach-step:nth-child(3) .approach-step-num { color: var(--brand-3); }

.approach-step h3 {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.approach-step p {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.approach-outcomes-head {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 1.6rem 0 0.75rem;
}

.approach-outcomes-head .approach-eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}

.approach-outcomes-head .approach-note {
  font-size: 0.78rem;
  color: #94a3b8;
}

.approach-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.approach-outcome {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 0.7rem 0.8rem;
}

.approach-outcome-photo {
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}

.approach-outcome-name {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--text-primary);
}

.approach-outcome-desc {
  font-size: 0.72rem;
  line-height: 1.45;
  color: #64748b;
}

.approach-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.approach-proof-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 0.9rem 1rem 1rem;
}

.approach-proof-svg {
  width: 100%;
  height: auto;
  display: block;
}

.approach-proof-label {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.approach-proof-before .approach-proof-label { color: #dc2626; }
.approach-proof-after .approach-proof-label { color: #16a34a; }

.approach-proof-card p {
  margin: 0.3rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #64748b;
}

@media (max-width: 850px) {
  .approach {
    margin-bottom: 2.5rem;
    padding: 1.6rem 1.1rem 1.4rem;
  }

  .approach-steps,
  .approach-outcomes,
  .approach-proof {
    grid-template-columns: 1fr;
  }
}
