/* Centered, accessible Contact block (no JS, no external icons) */
:root{
  --accent: var(--bs-primary, #64a19d);
}

.contact-section{
  padding: 6rem 0 5rem;            /* comfortable spacing below fixed navbar */
}

.contact-card{
  max-width: 680px;
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.contact-icon{
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: var(--accent);
  opacity: .9;
}

.contact-title{
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15;
  font-size: clamp(1.75rem, 2.5vw + .75rem, 2.5rem);
  margin-bottom: .75rem;
  position: relative;
}

.contact-title::after{
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: .5rem auto 0;
  background: var(--accent);
  border-radius: 2px;
  opacity: .8;
}

.contact-email{
  margin: 1rem 0 .25rem;
  font-size: 1.125rem;
}

.contact-email-link{
  color: rgba(255,255,255,.9);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.25);
  padding-bottom: 2px;
}

.contact-email-link:hover{
  color: #fff;
  border-bottom-color: rgba(255,255,255,.45);
}

.contact-note{
  color: rgba(255,255,255,.6);
  margin-top: .5rem;
  font-size: .95rem;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .contact-title{ transition: none; }
}
