/* =========================================================================
   Page flourishes — Kontakt / Contact ("contact desk")
   Layout signature: a newspaper "contact desk" — masthead NAP card on the
   left, a stacked column of dotted "directory" lines on the right, then a
   wide map clipping with Anfahrt & Parken beneath. Loaded AFTER styles.css.
   Uses gazette tokens only.
   ========================================================================= */

/* Banner: contact desk dateline sits under the headline */
.contact-banner .dateline { margin-top: 1.2rem; }

/* The "desk" — NAP card beside a directory list */
.desk {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 52rem) { .desk { grid-template-columns: 1fr; } }

/* NAP card — a "clipping" with crimson top rule and serif address */
.nap {
  background: var(--card);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--accent);
  padding: clamp(1.3rem, 3.5vw, 2rem);
}
.nap .kicker { margin-bottom: .6rem; }
.nap__name { font-family: var(--serif); font-size: var(--fs-h3); color: var(--ink); line-height: 1.1; }
.nap address {
  font-style: normal;
  font-family: var(--serif);
  font-size: var(--fs-lead);
  color: var(--body);
  line-height: 1.5;
  margin-top: .7rem;
}
.nap address a { color: inherit; text-decoration: none; }
.nap address a:hover, .nap address a:focus-visible { text-decoration: underline; text-decoration-color: var(--accent); }
.nap__rows { display: grid; gap: .9rem; margin-top: 1.3rem; }
.nap__row { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: baseline; }
.nap__row dt {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.nap__row dd { margin: 0; }
.nap__row dd a { font-weight: 600; text-decoration: none; }
.nap__row dd a:hover { text-decoration: underline; }

/* Directory column — dotted "index" lines for the social/quick links */
.directory { display: grid; gap: 1.4rem; align-content: start; }
.directory__note {
  font-family: var(--serif);
  font-size: var(--fs-lead);
  color: var(--ink);
  line-height: 1.4;
}
.directory__note .lead-mark {
  display: block;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}

/* Map clipping: static OpenStreetMap image in a framed figure */
.mapclip { margin-top: clamp(1.4rem, 3vw, 2rem); }
.map-figure { margin: 0; }
.map-figure a {
  display: block;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--green);
  line-height: 0;
}
.map-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}
@media (max-width: 44rem) { .map-figure img { aspect-ratio: 4 / 3; } }
.map-figure figcaption {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .04em;
  color: var(--muted);
  margin-top: .6rem;
}

/* Club-life photo in the directory column */
.contact-media { margin: 0; }
.contact-media figcaption {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .04em;
  color: var(--muted);
  margin-top: .6rem;
}

/* Community note: a calm green-accented line in the directory column */
.community-note {
  border-left: 4px solid var(--green);
  padding: .2rem 0 .2rem 1rem;
  color: var(--body);
  line-height: 1.55;
}

/* Anfahrt grid — directions text beside the parking callout */
.getthere { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(1.4rem, 4vw, 2.6rem); align-items: start; }
@media (max-width: 52rem) { .getthere { grid-template-columns: 1fr; } }
.getthere h3 { font-size: var(--fs-h3); }
.getthere ul { display: grid; gap: .5rem; margin-top: .9rem; }

/* "Busiest days" strip — mono note rail */
.busy-note {
  border-left: 4px solid var(--gold);
  background: var(--paper-2);
  padding: 1rem 1.2rem;
  font-family: var(--serif);
  font-size: var(--fs-lead);
  color: var(--ink);
  line-height: 1.4;
}
