/* BRIDGE — contact & reservation page */

.contact-intro {
  padding-top: calc(var(--space-2xl) + var(--space-lg));
}

.contact-grid__inner {
  display: grid;
  gap: var(--space-lg);
}

.contact-info {
  display: grid;
  gap: var(--space-md);
}

.contact-info__block h3 {
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-accent-strong);
  margin-bottom: var(--space-2xs);
}

.contact-info__block a {
  display: block;
  margin-top: 2px;
}

.contact-info__note {
  color: var(--color-text-muted);
  font-size: var(--fs-small);
}

.contact-map {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
}

@media (min-width: 960px) {
  .contact-grid__inner {
    grid-template-columns: 1fr 1.2fr;
  }
}

.reservation {
  background: var(--color-stone-100);
}

/* ---- Mobile-specific pass ----
   Below 720px this page had no hero photography to justify the ~200px of
   desktop top padding (tuned to clear a fixed header over a hero image, but
   Kontakt has no hero), and a flat list of headings read as an unstyled
   scaled-down desktop page rather than a page composed for a phone. */
@media (max-width: 720px) {
  .contact-intro {
    padding-top: calc(var(--space-xl) + var(--space-2xs));
  }

  .contact-grid__inner {
    gap: var(--space-md);
  }

  .contact-info {
    gap: var(--space-sm);
  }

  .contact-info__block {
    padding: var(--space-sm);
    background: var(--color-surface);
    border: var(--line-hairline) solid var(--color-line);
    border-radius: var(--radius-md);
  }

  /* Bigger tap target for the social links than the default text line-height gives */
  .contact-info__block a {
    padding-block: var(--space-2xs);
    margin-top: 0;
  }

  .form-submit {
    justify-content: stretch;
  }

  .form-submit .btn {
    flex: 1;
    justify-content: center;
  }
}
