/* ---------- hero ---------- */
.adv-hero { padding-block: clamp(2.25rem, 5.5vw, 4rem) clamp(1.5rem, 4vw, 2.25rem); }
.adv-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.adv-hero h1 { font-size: clamp(2.3rem, 4.4vw, 3.4rem); margin-top: 0.6rem; }
.adv-hero .lede { margin-top: 1.2rem; max-width: 40ch; }
.adv-hero .hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.adv-hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.adv-hero-media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .adv-hero-grid { grid-template-columns: 1fr; }
  .adv-hero-media { order: -1; aspect-ratio: 16/10; }
}

/* ---------- values in action ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--parchment);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px -18px rgba(38,53,15,0.3); }
.value-card img { width: 2.6rem; height: 2.6rem; object-fit: contain; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.1rem; }
.value-card p { margin-top: 0.5rem; font-size: 0.92rem; color: var(--wood); }

@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Signature — the waymarked journey (Erlebnis & Abenteuer)
   A light, rounded trail panel with alternating photo/text steps — each
   step pairs a real photo with a small icon "waypoint" chip, the same
   line-icon language used in the values grid above.
   ========================================================================== */
.journey {
  background: var(--mist);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
}
.journey .section-head { display: block; text-align: center; }
.journey .eyebrow { justify-content: center; }
.journey .eyebrow::before { display: none; }
.journey-lede { color: var(--wood); margin-top: 1rem; max-width: 42ch; margin-inline: auto; }

.steps {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
}
.step {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.step.rev { grid-template-columns: 1.1fr 0.9fr; }
.step.rev .step-art { order: 2; }
.step.rev .step-text { order: 1; }

.step-art { position: relative; height: 15rem; }
.art-main {
  position: absolute;
  width: 78%;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 36px -18px rgba(38,51,42,.35);
  left: 0; top: 0;
}
.art-main img { width: 100%; height: 100%; object-fit: cover; }
.art-chip {
  position: absolute;
  width: 9rem;
  height: 9rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 26px -12px rgba(38,51,42,.4);
  border: 5px solid var(--mist);
  right: 2%; bottom: -1.4rem;
  z-index: 1;
}
.art-chip img { width: 100%; height: 100%; object-fit: cover; }
.step.rev .art-main { left: auto; right: 0; }
.step.rev .art-chip { right: auto; left: 2%; }

.art-chip-2 {
  position: absolute;
  width: 7rem;
  height: 7rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 26px -12px rgba(38,51,42,.4);
  border: 5px solid var(--mist);
  right: 6%;
  top: -1.2rem;
  z-index: 1;
}
.art-chip-2 img { width: 100%; height: 100%; object-fit: cover; }

.art-main img,
.art-chip img,
.art-chip-2 img { cursor: zoom-in; transition: transform 0.4s var(--ease); }
.art-main img:hover,
.art-chip img:hover,
.art-chip-2 img:hover { transform: scale(1.04); }

.step-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.step-text h3 { font-size: 1.5rem; }
.step-dur {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--forest);
  margin-top: 0.4rem;
}
.step-text p { color: var(--wood); margin-top: 0.9rem; font-size: 0.97rem; max-width: 46ch; }

@media (max-width: 760px) {
  .step,
  .step.rev { grid-template-columns: 1fr; }
  .step-art,
  .step.rev .step-art { order: -1; }
  .step-text,
  .step.rev .step-text { order: 0; }
  .step-art { height: 13rem; margin-bottom: 1rem; }
  .art-chip-2 { width: 5rem; height: 5rem; right: 4%; top: -0.8rem; }
}

/* ---------- care values (5-up) ---------- */
.care-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}
.care-card { text-align: center; padding-inline: 0.5rem; }
.care-card img { width: 2.2rem; height: 2.2rem; object-fit: contain; margin-inline: auto; margin-bottom: 0.9rem; }
.care-card h3 { font-size: 1.05rem; }
.care-card p { margin-top: 0.4rem; font-size: 0.88rem; color: var(--wood); }

@media (max-width: 900px) {
  .care-grid { grid-template-columns: repeat(3, 1fr); row-gap: 2rem; }
}
@media (max-width: 560px) {
  .care-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- weekday schedule & practical info ---------- */
.weekday { background: var(--mist); }
.weekday-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.weekday-card {
  background: var(--parchment);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.4rem 1.7rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.weekday-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px -18px rgba(38,53,15,0.3); }
.weekday-day {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.weekday-card h3 { font-size: 1.05rem; margin-top: 0.5rem; line-height: 1.3; }
.weekday-age {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--forest);
  background: var(--sand);
  border-radius: 999px;
  padding: 0.25em 0.7em;
}
.weekday-card p { margin-top: 0.8rem; font-size: 0.9rem; color: var(--wood); line-height: 1.5; }

.weekday-note {
  margin-top: 1.4rem;
  font-size: 0.88rem;
  color: var(--wood);
  max-width: 62ch;
}

.practical-info {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.weekday-closing {
  margin-top: clamp(2rem, 4vw, 2.8rem);
  padding-top: clamp(2rem, 4vw, 2.8rem);
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  max-width: 60ch;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .weekday-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .weekday-grid { grid-template-columns: 1fr; }
}

