/* Contact page */

.contact-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(120% 90% at 18% 8%, #dfe6f7 0%, #eef1f5 42%, #f4f6f9 100%);
  /* top padding clears the fixed nav */
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
}

/* Decorative SVG motif — thin diagonal pipe lines + a node mark,
   matching the design exactly. Sits bottom-right, low opacity. */

.contact-section__motif {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 62%;
  height: 88%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

@media (max-width: 720px) {
  .contact-section__motif {
    width: 90%;
    height: 60%;
    opacity: 0.35;
  }
}

/* Content */

.contact-section__content {
  position: relative;
  z-index: 2;
  padding-top: var(--space-9);
  padding-bottom: var(--space-9);
}

.contact-section__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.06;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-top: var(--space-4);
  color: #16181d;
}

@media (max-width: 960px) {
  .contact-section__heading {
    font-size: 44px;
  }
}

@media (max-width: 560px) {
  .contact-section__heading {
    font-size: 34px;
  }
}

/* Card grid — 3 across, matches design 1:1 */

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

@media (max-width: 960px) {
  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(20, 24, 29, 0.07);
  border-radius: 18px;
  padding: 38px 34px 34px;
  box-shadow: 0 18px 40px -22px rgba(30, 44, 90, 0.35);
}

.contact-card__eyebrow {
  font-family: var(--font-detail);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #8a8f99;
  margin-bottom: 20px;
}

.contact-card__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #16181d;
  margin: 0 0 14px;
}

.contact-card__body {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.55;
  color: #5c616b;
  margin: 0 0 34px;
}

.contact-card__cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #0a0a0b;
  color: #fff;
  font-family: var(--font-cta);
  font-weight: 600;
  font-size: 15.5px;
  height: 54px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.contact-card__cta:hover {
  background: var(--color-orange);
  color: #0a0a0b;
}

/* The Google Calendar widget renders its own button into this host;
   it's kept off-screen and proxied by .contact-card__cta so all three
   cards share one visual button style (see inline script in contact.html). */

.contact-card__booking-host {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
