/* ============================================================
   JURISTLEXONLINE.NL — CONTACT PAGE
   ============================================================ */

.page-hero {
  position: relative;
  background: var(--navy-deep);
  padding: 160px 0 80px;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(190, 150, 80, 0.025) 80px,
    rgba(190, 150, 80, 0.025) 81px
  );
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero__title {
  color: var(--off-white);
  margin-bottom: 1rem;
}

.page-hero__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-subtitle);
  color: rgba(250, 250, 248, 0.75);
  max-width: none;
  line-height: 1.6;
}

.contact-section {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid rgba(8, 42, 71, 0.08);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.contact-form__title {
  margin-bottom: 0.75rem;
}

.contact-form__intro {
  margin-bottom: 2rem;
  max-width: none;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.contact-form__actions {
  margin-top: 0.5rem;
}

.contact-notice {
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--gold);
  font-size: var(--text-small);
}

.contact-notice--success {
  background: rgba(190, 150, 80, 0.1);
  color: var(--navy);
}

.contact-notice--error {
  background: rgba(180, 40, 40, 0.08);
  border-left-color: #b42828;
  color: #7a1f1f;
}

.contact-info {
  position: sticky;
  top: 110px;
}

.contact-info__block {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(8, 42, 71, 0.08);
}

.contact-info__block:first-child {
  padding-top: 0;
}

.contact-info__label {
  font-family: var(--font-display);
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}

.contact-info__value {
  font-size: var(--text-body);
  color: var(--navy);
  line-height: 1.6;
}

.contact-info__value a {
  color: var(--navy);
  text-decoration: none;
}

.contact-info__value a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.contact-info__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.contact-info__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: var(--text-small);
  color: var(--anthracite);
  border-bottom: 1px solid rgba(8, 42, 71, 0.06);
}

.contact-info__list li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.65rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    position: static;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 140px 0 60px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }
}
