/* ==========================================================================
   PAGE HERO (contact) — single-column variant
   Shares .page-hero base styles with about/page-hero; this block tweaks
   the layout to centered + no form card.
   ========================================================================== */
.page-hero--contact .page-hero__grid--single { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.page-hero--contact .page-hero__copy { max-width: 720px; }
.page-hero--contact .page-hero__breadcrumbs { justify-content: center; }
.page-hero--contact .page-hero__actions { margin-top: 22px; }

/* Base .page-hero rules (duplicate from about so this file is self-contained) */
.page-hero { position: relative; padding: 96px 0 80px; color: var(--white); overflow: hidden; isolation: isolate; }
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; z-index: -2; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(130deg, rgba(4, 12, 24, 0.85) 0%, rgba(4, 12, 24, 0.5) 55%, rgba(4, 12, 24, 0.35) 100%); z-index: -1; }
.page-hero__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.page-hero__copy { max-width: 600px; }
.page-hero__breadcrumbs { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 18px; letter-spacing: 0.06em; text-transform: uppercase; }
.page-hero__breadcrumbs a { color: rgba(255,255,255,0.75); }
.page-hero__breadcrumbs a:hover { color: var(--white); }
.page-hero__breadcrumbs [aria-current] { color: var(--white); font-weight: 600; }
.page-hero__title { font-size: 68px; font-weight: 800; line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 18px; }
.page-hero__lead { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.92); max-width: 560px; margin: 0 auto; }

@media (max-width: 1024px) { .page-hero { padding: 72px 0 56px; } .page-hero__title { font-size: 52px; } }
@media (max-width: 768px) { .page-hero { padding: 48px 0 40px; } .page-hero__title { font-size: 36px; } }

/* ==========================================================================
   CONTACT (info + map + form)
   ========================================================================== */
.contact { padding: 88px 0 96px; background: var(--white); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.contact__info { max-width: 520px; }
.contact__title { font-size: 36px; font-weight: 800; color: var(--brand-accent); margin-bottom: 20px; }
.contact__details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.contact__details li { display: flex; align-items: flex-start; gap: 14px; color: var(--text-primary); font-size: 16px; line-height: 1.5; }
.contact__icon { flex: 0 0 24px; color: var(--brand-primary); font-size: 18px; }
.contact__details a { color: var(--text-primary); }
.contact__details a:hover { color: var(--brand-primary); }

.contact__map { aspect-ratio: 4 / 3; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-card); }
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; }

.contact__card { background: var(--brand-accent); color: var(--white); border-radius: 16px; padding: 32px 28px; box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18); max-width: 500px; width: 100%; justify-self: end; }
.contact__card-title { font-size: 24px; font-weight: 700; color: var(--white); text-align: center; margin-bottom: 18px; }
.contact__form { display: grid; gap: 12px; }
.contact__field input, .contact__field textarea { width: 100%; padding: 12px 14px; border: none; border-radius: 6px; font-family: inherit; font-size: 15px; background: var(--white); color: var(--text-primary); resize: vertical; }
.contact__field input::placeholder, .contact__field textarea::placeholder { color: #9aa5b1; }
.contact__field input:focus, .contact__field textarea:focus { outline: 2px solid var(--brand-primary); outline-offset: 1px; }
.contact__consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.5; color: rgba(255, 255, 255, 0.92); }
.contact__consent input { margin-top: 4px; accent-color: var(--brand-primary); }
.contact__consent a { color: var(--white); text-decoration: underline; }
.contact__form-submit { background: var(--brand-primary); color: var(--white); box-shadow: none; margin-top: 6px; width: 100%; }
.contact__form-submit:hover { background: var(--brand-primary-hover); }

@media (max-width: 1024px) {
  .contact { padding: 64px 0 72px; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__card { justify-self: stretch; max-width: none; }
}
@media (max-width: 768px) {
  .contact { padding: 48px 0 56px; }
  .contact__title { font-size: 28px; }
  .contact__card { padding: 22px 20px 28px; }
}
