/* Contact page */

.contact-hero {
  background: #080f0e;
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, oklch(0.28 0.09 168) 0%, #080f0e 65%);
  pointer-events: none;
}

.contact-hero-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.contact-kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: oklch(0.75 0.13 168);
  margin: 0 0 0.75rem;
}

.contact-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.04;
  color: #fff;
  margin: 0 0 1rem;
}

.contact-sub {
  max-width: 620px;
  margin: 0 auto 2rem;
  font-size: 15px;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.5rem;
  border-radius: 999px;
  background: #047c68;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(4, 124, 104, 0.24);
  transition: background 0.15s, box-shadow 0.15s;
}

.contact-email:hover {
  background: #036b5a;
  box-shadow: 0 12px 30px rgba(4, 124, 104, 0.28);
}

.contact-section {
  padding: 5rem 0;
  background: var(--background);
}

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

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

.contact-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 230px;
}

.contact-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #047c68;
  margin: 0;
}

.contact-card-title {
  font-size: 20px;
  line-height: 1.15;
  font-weight: 900;
  margin: 0;
}

.contact-card-copy {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin: 0;
}

.contact-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid #047c68;
  color: #047c68;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.contact-card-link:hover {
  background: #047c68;
  color: #fff;
}

.contact-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-heading {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.contact-copy {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.75;
  margin: 0;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 14px;
  color: #374151;
  line-height: 1.65;
}

.contact-list a {
  color: #047c68;
  font-weight: 700;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-check {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #dff8ef;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.contact-check::after {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 2px solid #047c68;
  border-bottom: 2px solid #047c68;
  transform: rotate(-45deg) translateY(-1px);
}

@media (max-width: 860px) {
  .contact-hero {
    padding: 3.5rem 0;
  }

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

  .contact-detail-grid {
    gap: 2rem;
  }
}
