/* ============ CONTACT PAGE ============ */

/* ---------- HERO ---------- */
.ct-hero {
  position: relative;
  background: var(--charcoal-1);
  color: #fff;
  padding: 200px 0 100px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ct-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 85% 30%, rgba(53,92,132,0.32), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(53,92,132,0.18), transparent 45%);
}
.ct-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 30% 40%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 30% 40%, black 0%, transparent 75%);
}
.ct-hero__inner {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: end;
}
.ct-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
.ct-hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(53,92,132,0.3);
}
.ct-hero__title {
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.ct-hero__title-accent { color: var(--blue-soft); }
.ct-hero__lede {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin: 0;
}
.ct-hero__meta {
  border-left: 2px solid var(--accent);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

/* live "OPEN FOR INQUIRIES" status — clearly contact-only element */
.ct-hero__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  background: rgba(93, 206, 138, 0.08);
  border: 1px solid rgba(93, 206, 138, 0.3);
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #8FE0A8;
}
.ct-hero__status-pulse {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #5DCE8A;
  flex-shrink: 0;
}
.ct-hero__status-pulse::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(93, 206, 138, 0.55);
  animation: ctPulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  z-index: -1;
}
@keyframes ctPulse {
  0% { transform: scale(0.5); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* faint envelope glyph anchored to the hero — peripheral cue this is the contact page */
.ct-hero__glyph {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-30%);
  width: 320px;
  height: auto;
  color: rgba(122, 155, 194, 0.08);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 980px) {
  .ct-hero__glyph {
    right: -60px;
    top: auto;
    bottom: -20px;
    transform: none;
    width: 240px;
  }
}
.ct-hero__meta-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ct-hero__meta-k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
}
.ct-hero__meta-v {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.04em;
}
.ct-hero__meta-v .num {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ct-hero__meta-v .num span {
  font-size: 14px;
  color: var(--blue-soft);
  margin-left: 2px;
}
@media (max-width: 980px) {
  .ct-hero__inner { grid-template-columns: 1fr; }
  .ct-hero__meta { border-left: none; padding-left: 0; border-top: 2px solid var(--accent); padding-top: 28px; }
}

/* ---------- BODY ---------- */
.ct-body {
  background: var(--gray-paper);
  padding: 90px 0 130px;
}
.ct-body__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px) {
  .ct-body__inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- SIDE PANEL ---------- */
.ct-side {
  position: sticky;
  top: 110px;
  padding-right: 8px;
}
@media (max-width: 980px) {
  .ct-side { position: static; padding-right: 0; }
}
.ct-side__title {
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 18px 0 16px;
  color: var(--charcoal-1);
  text-wrap: balance;
}
.ct-side__lede {
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal-2);
  margin: 0 0 28px;
  max-width: 460px;
}
.ct-side__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
}
.ct-side__list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--gray-line);
  align-items: start;
}
.ct-side__list li:last-child { border-bottom: 1px solid var(--gray-line); }
.ct-side__num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  padding-top: 2px;
}
.ct-side__list strong {
  display: block;
  font-weight: 600;
  color: var(--charcoal-1);
  font-size: 15px;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.ct-side__list span {
  display: block;
  font-size: 14px;
  color: var(--charcoal-2);
  line-height: 1.5;
}
.ct-side__note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--gray-line);
  border-left: 3px solid var(--accent);
}
.ct-side__note-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--accent);
  padding-top: 1px;
  flex-shrink: 0;
  font-weight: 600;
}
.ct-side__note span:last-child {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--charcoal-2);
}

/* ---------- FORM WRAPPER ---------- */
.ct-form-wrap {
  /* contact-card styles come from styles.css */
}
.ct-form-wrap .contact-card {
  max-width: none;
  margin: 0;
}
