/* ============================================================
   CONTACT.CSS — contact.html specific styles
   ============================================================ */

/* ── PAGE HEADER ── */
.contact-page-hero {
  padding: calc(var(--nav-height) + 80px) 0 64px;
  border-bottom: 1px solid var(--border);
}

.contact-page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  max-width: 680px;
  margin-bottom: 18px;
}
.contact-page-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
}

.contact-page-hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.78;
}

/* ── CONTACT LAYOUT ── */
.contact-main-section {
  padding: 80px 0 100px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

/* Left: contact details */
.contact-details {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}

.contact-details h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.contact-details > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.clink {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 14.5px;
  color: var(--text);
  transition: color .18s;
}
.clink:hover { color: var(--accent); }

.cicon {
  width: 40px; height: 40px;
  min-width: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: var(--surface);
  transition: border-color .18s;
}
.clink:hover .cicon { border-color: var(--accent); }

.contact-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  padding: 18px 20px;
  background: var(--surface-alt);
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* Right: Calendly embed */
.calendly-container {
  max-width: 900px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .contact-details { position: static; }
  .calendly-container { max-width: 100%; }
}

@media (max-width: 600px) {
  .contact-main-section { padding: 60px 0 80px; }
  .contact-page-hero { padding-bottom: 48px; }
}
