/* ── CONTACT SECTION (dark theme – consolidated & cleaned) ── */
.contact-section {
  background: #020202;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 96px 0;
}

.contact-section .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}

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

.contact-section .section-eyebrow::before {
  background: rgba(255,255,255,0.14);   /* slightly stronger than 0.15 for visibility */
}

.contact-section .section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 0;
}

.contact-section .section-title span {
  color: var(--muted);
  font-weight: 300;
}

.contact-subtitle,
.contact-section p {
  font-size: 14px;
  color: rgba(240,237,232,0.45);   /* or var(--muted) if you prefer */
  line-height: 1.9;
  font-weight: 300;
  max-width: 460px;
  margin: 14px auto 40px;
}

.contact-buttons {
  display: flex;
  gap: 12px;               /* slightly more breathing room than 10px */
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-white {
  padding: 12px 26px;
  background: rgba(255,255,255,0.1);
  color: var(--text);
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);   /* assuming you have --radius defined */
  transition: all 0.2s;
  display: inline-block;
}

.btn-white:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.36);
}

.btn-ghost-w {
  padding: 12px 26px;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  transition: all 0.2s;
  display: inline-block;
}

.btn-ghost-w:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.28);
}

.contact-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.contact-link:hover {
  color: var(--text);
}

.contact-link:hover svg {
  fill: var(--text);
}