/* Park page: Übernachten and Gut zu wissen as one milk band in two lanes,
   a vertical rule between them. Both lanes run the same accordion (pk-acc):
   the three ways to sleep are 400-character entries, so as open cards the
   left lane stood three times taller than the FAQ and the band lost a whole
   screen to it. As rows the lanes end on nearly the same line. Both lane
   headers close on the same hairline. Below 900px the lanes stack.
   Tokens from park-prose.css (--pk-*). */

.pk-close.pk-section { padding: clamp(44px, 4.8vw, 68px) 0; }

.pk-close__lanes {
    --pk-close-gap: clamp(28px, 3.6vw, 54px);
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    column-gap: 0;
    row-gap: 36px;
    align-items: start;
}
.pk-close__lanes--single { grid-template-columns: minmax(0, 1fr); }

.pk-close__lane--stay { padding-right: var(--pk-close-gap); }
/* The rule rides on the second lane, so a lane standing alone never draws one. */
.pk-close__lane--faq {
    padding-left: var(--pk-close-gap);
    border-left: 1px solid var(--pk-line-strong, #cfc7b8);
}
.pk-close__lanes--single .pk-close__lane--stay { padding-right: 0; }
.pk-close__lanes--single .pk-close__lane--faq {
    padding-left: 0;
    border-left: 0;
}

/* ── The two lane headers ──────────────────────────────────────────── */
/* A fixed floor under the heading keeps both hairlines on one line even
   when one h2 wraps and the other does not. */
.pk-close__header {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 84px;
    margin-bottom: 6px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--pk-line-strong, #cfc7b8);
}
.pk-close__header .pk-eyebrow { margin-bottom: 12px; }
.pk-close__h2 {
    font-size: clamp(22px, 2.3vw, 28px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--pk-ink, #111214);
    margin: 0;
    max-width: 22ch;
}

/* ── The accordion, shared by both lanes ───────────────────────────── */
.pk-acc {
    display: flex;
    flex-direction: column;
}
.pk-acc__item {
    border-bottom: 1px solid var(--pk-line-strong, #cfc7b8);
}
.pk-acc__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 17px 0;
    cursor: pointer;
    user-select: none;
    list-style: none;
}
.pk-acc__q::-webkit-details-marker { display: none; }
.pk-acc__q:focus-visible { outline: 2px solid #FF6A00; outline-offset: 3px; }
.pk-acc__q-text {
    flex: 1;
    min-width: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0;
    color: var(--pk-ink, #111214);
    margin: 0;
}
.pk-acc__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(17, 18, 20, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(17, 18, 20, .6);
    font-size: 16px;
    line-height: 1;
    font-weight: 300;
    transition: border-color .18s, background .18s, color .18s;
}
.pk-acc__icon::before { content: "+"; }
.pk-acc__item[open] .pk-acc__icon {
    background: #FF6A00;
    border-color: #FF6A00;
    color: #fff;
}
.pk-acc__item[open] .pk-acc__icon::before { content: "\2212"; }
.pk-acc__a {
    font-size: 15px;
    line-height: 1.7;
    color: var(--pk-text-62, rgba(17, 18, 20, .62));
    padding: 0 32px 20px 0;
}
.pk-acc__a p { margin: 0 0 12px; }
.pk-acc__a p:last-child { margin-bottom: 0; }
.pk-acc__a a { color: var(--pk-orange-text, #B84A00); }

/* ── The stay row: the kind of bed first, then the place ───────────── */
/* One fixed column for the type turns the three entries into a table the
   reader scans down: Lodge, Tented Camp, Campingplatz. */
.pk-acc__q-text--stay {
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.pk-acc__tag {
    flex: 0 0 96px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--pk-orange, #FF6A00);
}
.pk-acc__title { min-width: 0; }
/* The answer lines up under the place, not under the type column. */
.pk-acc__a--stay { padding-left: 108px; }

/* ── Narrow ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .pk-acc__tag { flex-basis: 84px; }
    .pk-acc__a--stay { padding-left: 96px; }
}
@media (max-width: 900px) {
    .pk-close__lanes { grid-template-columns: minmax(0, 1fr); }
    .pk-close__lane--stay { padding-right: 0; }
    .pk-close__lane--faq {
        padding-left: 0;
        border-left: 0;
    }
    .pk-close__header { min-height: 0; }
}
@media (max-width: 600px) {
    .pk-close__lanes { row-gap: 28px; }
    .pk-close__header { margin-bottom: 4px; padding-bottom: 14px; }
    .pk-acc__q { padding: 15px 0; }
    .pk-acc__a { padding-right: 0; }
    /* No room for a type column on a phone: the kind of bed goes above the
       place, the answer back to the left edge. */
    .pk-acc__q-text--stay {
        display: block;
    }
    .pk-acc__tag {
        display: block;
        margin-bottom: 5px;
    }
    .pk-acc__a--stay { padding-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .pk-acc__icon { transition: none; }
}
