


.act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--forest);
  color: #ffffff;
  border: none;
  border-radius: var(--corner);
  padding: 1rem 2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.act:hover { transform: scale(1.03); background: var(--forest-deep); color: #ffffff; }
.act:focus-visible { outline: 3px solid var(--rosegold); outline-offset: 3px; }
.act--ghost { background: transparent; color: var(--forest-deep); border: 1px solid var(--forest); }
.act--ghost:hover { background: var(--sheet-leaf); color: var(--forest-deep); }
.act--wide { width: 100%; }


.chip {
  background: linear-gradient(140deg, var(--forest-deep) 0%, var(--forest) 100%);
  color: #ffffff;
  border-radius: var(--corner);
  padding: 1.75rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  transform-origin: center;
}
.chip:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(5, 46, 22, 0.4); z-index: 10; position: relative; }
.chip h3 { color: #ffffff; margin-bottom: var(--fluid-gap-s); }
.chip p { color: rgba(255, 255, 255, 0.88); }
.chip .tag { display: block; font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--rosegold-lo); margin-bottom: 0.6rem; }

.chip--plum { background: linear-gradient(140deg, var(--aubergine) 0%, var(--aubergine-lo) 100%); }
.chip--plum:hover { box-shadow: 0 12px 40px rgba(60, 43, 78, 0.4); }

.slip {
  background: #ffffff;
  border: 1px solid var(--hairline);
  border-radius: var(--corner);
  padding: 1.5rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}
.slip:hover { transform: scale(1.03); box-shadow: 0 12px 34px rgba(60, 43, 78, 0.16); }
.slip h3 { margin-bottom: 0.4rem; }
.slip p { color: var(--ink-quiet); }
.slip .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.2rem; height: 2.2rem; border-radius: 999px;
  background: var(--sheet-leaf); color: var(--forest-deep);
  font-weight: 700; margin-bottom: var(--fluid-gap-s);
}


.rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--fluid-gap-m);
}
.rail-hint { font-size: 0.78rem; color: var(--ink-faint); margin-top: 0.4rem; }


@media (max-width: 767px) {
  .rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 4%;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.75rem;
    scrollbar-width: thin;
  }
  .rail > * { min-width: 78%; flex: 0 0 auto; scroll-snap-align: start; }
}

@media (min-width: 768px) {
  .rail { grid-template-columns: repeat(2, 1fr); }
  .rail-hint { display: none; }
}
@media (min-width: 1024px) {
  .rail--three { grid-template-columns: repeat(3, 1fr); }
}


.mix { display: flex; flex-direction: column; gap: 0; }
.mix li {
  display: flex; flex-wrap: wrap; gap: 0.35rem 1rem;
  padding: 0.85rem 0; border-bottom: 1px solid var(--hairline);
}
.mix li:last-child { border-bottom: none; }
.mix .name { font-weight: 600; color: var(--forest-deep); width: 100%; }
.mix .role { color: var(--ink-quiet); font-size: 0.95rem; }
@media (min-width: 768px) { .mix .name { width: 32%; } .mix .role { width: 60%; } }

.fact-strip { display: flex; flex-wrap: wrap; gap: var(--fluid-gap-m); margin-top: var(--fluid-gap-l); }
.fact { border-left: 3px solid var(--rosegold); padding-left: 0.9rem; }
.fact .big { display: block; font-size: var(--fluid-step-1); font-weight: 700; color: var(--forest-deep); }
.fact .cap { font-size: 0.82rem; color: var(--ink-faint); }


.order-card {
  background: #ffffff;
  border: 1px solid var(--hairline);
  border-top: 5px solid var(--forest);
  border-radius: var(--corner);
  padding: var(--fluid-gap-l);
  box-shadow: 0 18px 44px rgba(60, 43, 78, 0.14);
}
.order-card h3 { margin-bottom: 0.3rem; }
.order-card .sub { color: var(--ink-quiet); font-size: 0.92rem; margin-bottom: var(--fluid-gap-m); }
.field { margin-bottom: var(--fluid-gap-m); }
.field label { display: block; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-quiet); margin-bottom: 0.35rem; }
.field input[type="text"], .field input[type="tel"] {
  width: 100%;
  padding: 0.85rem 4%;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: var(--sheet-soft);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.field input:focus { outline: none; border-color: var(--forest); background: #ffffff; }
.consent { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: var(--fluid-gap-m); }
.consent input { margin-top: 0.25rem; width: 18px; height: 18px; accent-color: var(--forest); flex: 0 0 auto; }
.consent span { font-size: 0.85rem; color: var(--ink-quiet); }
.form-note { font-size: 0.8rem; color: var(--ink-faint); margin-top: var(--fluid-gap-s); }
.form-errors {
  background: #fdf2f4; border: 1px solid #e9bcc4; color: #7a2436;
  border-radius: 12px; padding: 0.8rem 1rem; margin-bottom: var(--fluid-gap-m); font-size: 0.9rem;
}
.form-errors li { padding-left: 1rem; position: relative; }
.form-errors li::before { content: "\2022"; position: absolute; left: 0; }
.form-done {
  background: var(--sheet-leaf); border: 1px solid #bbe7c9; color: var(--forest-deep);
  border-radius: var(--corner); padding: var(--fluid-gap-l); text-align: center;
}
.form-done .mark { font-size: 2rem; display: block; margin-bottom: 0.4rem; color: var(--forest); }

.steps { counter-reset: schritt; }
.steps li { position: relative; padding-left: 3rem; margin-bottom: var(--fluid-gap-m); }
.steps li::before {
  counter-increment: schritt; content: counter(schritt);
  position: absolute; left: 0; top: 0;
  width: 2.1rem; height: 2.1rem; border-radius: 999px;
  background: var(--forest); color: #ffffff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem;
}
.steps strong { display: block; margin-bottom: 0.15rem; }
.steps span { color: var(--ink-quiet); font-size: 0.95rem; }


.order-thumb {
  width: 60%;
  max-width: 220px;
  border-radius: var(--corner);
  filter: drop-shadow(0 18px 32px rgba(60, 43, 78, 0.24));
}


.asof-thread { display: flex; flex-direction: column; max-width: 44rem; margin: 0 auto; }
.asof-thread .q, .asof-thread .a { max-width: 85%; padding: 0.85rem 1.1rem; margin: 0.4rem 0; }
.asof-thread .q {
  background: var(--forest); color: #ffffff;
  align-self: flex-end; border-radius: 16px 16px 4px 16px;
  font-weight: 600;
}
.asof-thread .a {
  background: #ffffff; color: var(--ink);
  align-self: flex-start; border-radius: 16px 16px 16px 4px;
  border: 1px solid var(--hairline);
}
.asof-thread .a p { margin-bottom: 0; color: var(--ink-quiet); }
@media (min-width: 768px) { .asof-thread .q, .asof-thread .a { max-width: 75%; } }


.perch {
  position: fixed;
  right: 4%;
  bottom: 4%;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 56px;
  padding: 0.9rem 1.4rem;
  border: none;
  border-radius: 999px;
  background: var(--forest-deep);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(5, 46, 22, 0.38);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.perch:hover { transform: scale(1.03); background: var(--forest); }
.perch .dot { width: 9px; height: 9px; border-radius: 999px; background: var(--rosegold-lo); flex: 0 0 auto; }

.perch-sheet {
  position: fixed;
  right: 4%;
  bottom: calc(4% + 72px);
  z-index: 1001;
  width: 92%;
  max-width: 340px;
  background: #ffffff;
  border: 1px solid var(--hairline);
  border-top: 5px solid var(--forest);
  border-radius: var(--corner);
  box-shadow: 0 22px 54px rgba(60, 43, 78, 0.28);
  padding: var(--fluid-gap-l);
}
.perch-sheet__head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--fluid-gap-s); margin-bottom: var(--fluid-gap-s); }
.perch-sheet__head h3 { font-size: var(--fluid-step-1); }
.perch-sheet__shut {
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; margin: -10px -10px 0 0;
  color: var(--ink-quiet); position: relative;
}
.perch-sheet__shut::before { content: "\00d7"; font-size: 28px; line-height: 1; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.perch-sheet__shut:hover { color: var(--forest-deep); }
