/* =====================================================================
   Maifeld Live — Infoseiten (FAQ, Kontakt)
   Two quiet pages between the loud ones: the same teal ground, gold
   accents and Archivo Black, but the layout stays out of the way of the
   text. The FAQ borrows the line-up's accordion language (hairlines and
   a plus that turns), Kontakt the tilted cards of the flea market.
   ===================================================================== */

/* ---------- shared bits these pages add ---------- */
.eyebrow {
  font-weight: 800; font-size: .78rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.eyebrow--pink { color: var(--pink-light); }

/* ---------- page head ---------- */
.info-hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(8.5rem, 16vw, 12rem) 0 clamp(3rem, 6vw, 5rem);
  background: linear-gradient(180deg, var(--teal-deep) 0%, var(--teal) 100%);
}
/* one soft stage wash so the head is not a flat block */
.info-hero::before {
  content: ""; position: absolute; inset: -40% -20% auto; height: 120%; z-index: -1;
  background: radial-gradient(50% 55% at 30% 0%, rgba(246, 190, 35, .16), transparent 70%);
  pointer-events: none;
}
/* .info-hero__inner is a .wrap — a max-width here would re-centre it, so the
   line lengths are set on the children instead */
.info-hero__title { max-width: 14ch; font-size: clamp(2.8rem, 9vw, 6rem); }
.info-hero__title em { font-style: normal; color: var(--gold); }
.info-hero__lede {
  margin-top: 1.3rem; max-width: 54ch;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem); font-weight: 300; color: var(--paper-dim);
}

/* jump marks to the groups further down — only on the FAQ */
.info-hero__jump { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2.2rem; }
.info-hero__jump a {
  padding: .5em 1.1em; border: 1.5px solid var(--line); border-radius: 999px;
  font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--paper-dim); transition: color .25s, border-color .25s, background .25s;
}
.info-hero__jump a:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); }

/* ---------- FAQ ---------- */
.faq { padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(4rem, 9vw, 7rem); }

.faq__group + .faq__group { margin-top: clamp(3rem, 7vw, 5rem); }
.faq__cat {
  display: flex; align-items: baseline; gap: 1rem;
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem); line-height: 1; letter-spacing: -.01em;
  color: var(--gold);
  margin-bottom: .4rem; scroll-margin-top: 6rem;
}
.faq__cat::after {
  content: ""; flex: 1 1 auto; height: 1px; background: var(--line);
  transform: translateY(-.25em);
}

.qa { border-bottom: 1px solid var(--line); }
.qa:first-of-type { border-top: 1px solid var(--line); }

.qa__q {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1.5rem;
  padding: 1.25rem 0; cursor: pointer; list-style: none;
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(1.02rem, 2.1vw, 1.35rem); line-height: 1.15; letter-spacing: -.005em;
  transition: color .3s var(--ease-out), padding-left .45s var(--ease-out);
}
.qa__q::-webkit-details-marker { display: none; }
.qa__q:hover { color: var(--gold); padding-left: .6rem; }
.qa[open] > .qa__q { color: var(--gold); }

.qa__plus {
  position: relative; flex: none; width: 38px; height: 38px;
  border: 1.5px solid var(--line); border-radius: 50%;
  transition: border-color .3s, background .3s, transform .5s var(--ease-out);
}
.qa__plus::before, .qa__plus::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 13px; height: 2px;
  background: currentColor; transform: translate(-50%, -50%);
}
.qa__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.qa__q:hover .qa__plus { border-color: var(--gold); }
.qa[open] > .qa__q .qa__plus {
  background: var(--gold); border-color: var(--gold); color: var(--ink);
  transform: rotate(45deg);
}

.qa__a { max-width: 68ch; padding: 0 0 1.8rem; animation: qa-open .5s var(--ease-out); }
.qa__a p { font-size: 1rem; font-weight: 300; line-height: 1.65; color: var(--paper); }
.qa__a p + p, .qa__a ul + p, .qa__a p + ul, .qa__a .qa__facts + p { margin-top: .85rem; }
.qa__a b { font-weight: 700; }
/* :not(.btn) — a button in an answer keeps its own colours */
.qa__a a:not(.btn) { color: var(--gold); text-decoration: underline; text-underline-offset: .2em; }
.qa__a a:not(.btn):hover { color: var(--gold-light); }
.qa__a ul { display: grid; gap: .4rem; }
.qa__a li {
  position: relative; padding-left: 1.15rem;
  font-size: 1rem; font-weight: 300; line-height: 1.6;
}
.qa__a li::before {
  content: ""; position: absolute; left: 0; top: .68em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.qa__a .btn { margin-top: 1.2rem; }
@keyframes qa-open { from { opacity: 0; translate: 0 -8px; } to { opacity: 1; translate: none; } }

/* the answer that is really a fact sheet */
.qa__facts { display: grid; gap: .5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px dashed var(--line); }
.qa__facts div { display: flex; flex-wrap: wrap; gap: .2rem .8rem; font-size: 1rem; font-weight: 300; }
.qa__facts dt { min-width: 7.5rem; font-weight: 700; color: var(--gold); }
.qa__facts dd { margin: 0; }

/* ---------- Kontakt: the three ways in ---------- */
.ways { padding: clamp(1rem, 4vw, 2.5rem) 0 clamp(3rem, 7vw, 5rem); }
.ways__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }

.way {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 2rem 1.7rem 1.8rem;
  background: rgba(239, 246, 254, .055);
  border: 1.5px solid var(--line); border-radius: 16px;
  transition: transform .5s var(--ease-out), background .35s, border-color .35s;
}
.way:nth-child(odd)  { transform: rotate(-1deg); }
.way:nth-child(even) { transform: rotate(.8deg); }
.way:hover { transform: translateY(-6px) rotate(0deg); background: rgba(239, 246, 254, .09); border-color: rgba(239, 246, 254, .3); }

.way__label {
  font-family: var(--display); text-transform: uppercase;
  font-size: .78rem; letter-spacing: .18em; color: var(--gold);
}
.way:nth-child(2) .way__label { color: var(--pink-light); }
.way__title {
  margin: .55rem 0 .8rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem); line-height: .95;
}
.way__text { margin-bottom: 1.6rem; font-size: 1rem; font-weight: 300; line-height: 1.6; color: rgba(239, 246, 254, .74); }
.way .btn { margin-top: auto; }

/* ---------- Kontakt: everything else ---------- */
.reach { padding: 0 0 clamp(4rem, 9vw, 7rem); }
.reach__grid {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding-top: clamp(2rem, 5vw, 3.5rem); border-top: 1px solid var(--line);
}
.reach__mail { font-size: clamp(1.4rem, 4.5vw, 2.6rem); }
.reach__mail a {
  font-family: var(--display); text-transform: uppercase; line-height: 1;
  color: var(--paper); overflow-wrap: anywhere;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 100% 2px; background-repeat: no-repeat; background-position: 0 100%;
  transition: color .3s;
}
.reach__mail a:hover { color: var(--gold); }
.reach__note { margin-top: 1.1rem; max-width: 46ch; font-size: 1rem; font-weight: 300; color: var(--paper-dim); }
.reach__note a { color: var(--gold); text-decoration: underline; text-underline-offset: .2em; }

.reach__card {
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--line); border-radius: 14px;
  background: rgba(6, 42, 51, .5);
}
.reach__card h2 {
  font-family: var(--display); text-transform: uppercase;
  font-size: .8rem; letter-spacing: .16em; color: var(--gold); margin-bottom: .8rem;
}
.reach__card address, .reach__card p {
  font-style: normal; font-size: 1rem; font-weight: 300; line-height: 1.65; color: var(--paper);
}
.reach__card p { margin-top: .8rem; }
.reach__card a { color: var(--gold); text-decoration: underline; text-underline-offset: .2em; }

/* ---------- closing band, shared by both pages ---------- */
.info-next { padding: 0 0 clamp(4rem, 9vw, 7rem); }
.info-next__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.8rem, 4vw, 2.8rem) clamp(1.6rem, 4vw, 2.8rem);
  border: 1.5px solid var(--line); border-radius: 20px;
  background: linear-gradient(120deg, rgba(246, 190, 35, .08), rgba(211, 128, 198, .07));
}
.info-next__text { max-width: 46ch; }
.info-next__text .display { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.info-next__text p { margin-top: .7rem; font-size: 1rem; font-weight: 300; color: var(--paper-dim); }

/* ---------- narrow ---------- */
@media (max-width: 900px) {
  .ways__grid { grid-template-columns: 1fr; }
  .way, .way:nth-child(odd), .way:nth-child(even) { transform: none; }
  .way:hover { transform: translateY(-4px); }
  .reach__grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .qa__q { gap: 1rem; }
  .qa__plus { width: 32px; height: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  .qa__a { animation: none; }
}
