/* Contact: large tappable contact cards beside the form */
.contact-section { padding-top: clamp(40px, 5vw, 72px); }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.contact-info h2 { font-size: clamp(32px, 3.4vw, 46px); }
.contact-info .lead { margin-top: 18px; font-size: 17px; }

.contact-cards { list-style: none; margin: clamp(28px, 3vw, 40px) 0 0; padding: 0; display: grid; gap: 14px; }
.contact-card { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 18px; min-height: 96px; padding: 18px 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); color: var(--navy); transition: border-color .3s, box-shadow .3s, transform .3s var(--ease); }
.contact-card:hover, .contact-card:focus-visible { border-color: var(--blue); box-shadow: 0 22px 44px -30px rgba(11,37,50,.6); transform: translateY(-3px); }
.contact-card:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.cc-icon { width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center; background: var(--navy); color: var(--blue); transition: background .3s, color .3s; }
.cc-icon svg { width: 28px; height: 28px; }
.contact-card:hover .cc-icon, .contact-card:focus-visible .cc-icon { background: var(--blue); color: var(--ink); }
.cc-text { display: grid; gap: 3px; min-width: 0; }
.cc-text small { font-family: var(--font-head); font-weight: 500; font-size: 15px; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-deep); }
.cc-text strong { font-family: var(--font-head); font-weight: 600; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.05; letter-spacing: .01em; overflow-wrap: anywhere; }
.cc-text em { font-style: normal; font-size: 14px; font-weight: 600; color: var(--muted); }
.cc-go { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue-deep); transition: transform .3s var(--ease), background .3s; }
.cc-go svg { width: 18px; height: 18px; }
.contact-card:hover .cc-go { transform: translateX(4px); background: var(--blue); color: var(--ink); }

.contact-social { display: flex; align-items: center; gap: 14px; margin-top: 26px; font-family: var(--font-head); font-weight: 500; font-size: 16px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.contact-social a { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--navy); transition: background .25s, color .25s, border-color .25s; }
.contact-social a:hover, .contact-social a:focus-visible { background: var(--navy); color: var(--white); border-color: var(--navy); }
.contact-social svg { width: 22px; height: 22px; }

.contact-form-wrap { position: sticky; top: 104px; }
.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: clamp(24px, 3vw, 40px); gap: 20px; }
.contact-form-title { font-size: clamp(28px, 2.6vw, 36px); color: var(--navy); }
.contact-form-intro { margin: -8px 0 4px; font-size: 17px; line-height: 1.55; color: var(--text); }
.contact-submit { width: 100%; min-height: 58px; font-size: 21px; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-wrap { position: static; }
}
@media (max-width: 480px) {
  .contact-card { grid-template-columns: auto minmax(0, 1fr); padding: 16px; gap: 14px; }
  .cc-go { display: none; }
  .cc-icon { width: 52px; height: 52px; }
}
@media (prefers-reduced-motion: reduce) { .contact-card, .cc-icon, .cc-go { transition: none; } }
