/* ============ Page-specific: contact.html ============ */
/* Depends on the design tokens defined in css/style.css and the shared layout in css/page.css */

.page-hero {
  background:
    linear-gradient(180deg, rgba(6,7,5,0.72) 0%, rgba(6,7,5,0.82) 100%),
    url('../assets/contact-hero.jpg');
  background-size: cover;
  background-position: center;
}

.page-hero-small {
  padding: 130px 0 110px;
  text-align: center;
}
.page-hero-small .kicker {
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.page-hero-small h1 { font-size: 3.6rem; }

@media (max-width: 800px) {
  .page-hero-small { padding: 90px 0 70px; }
  .page-hero-small h1 { font-size: 2.6rem; }
}

.contact-info .contact-credentials {
  margin-top: 20px;
  font-size: 0.95rem;
}

.contact-info h2 { font-size: 2.4rem; }
.contact-info p { font-size: 1.25rem; max-width: 480px; }
.contact-list li { font-size: 1.25rem; }
.contact-list svg {
  width: 26px;
  height: 26px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-list li a {
  transition: color 0.2s ease;
}
.contact-list li:has(a):hover svg {
  color: var(--gold-light);
  transform: scale(1.12);
}
.contact-list li a:hover {
  color: var(--gold-light);
}

.contact-form input,
.contact-form textarea {
  font-size: 1.05rem;
  padding: 18px 18px;
}
.contact-form textarea { min-height: 190px; }
.contact-form button {
  font-size: 1.1rem;
  padding: 20px 38px;
}
