/* ═══════════════════════════════════════════════════
   Contact — split hero + form stage
   ═══════════════════════════════════════════════════ */

.ct-page { overflow-x: clip; }

.ct-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 4px;
  transition: color 0.35s var(--ease-out), border-color 0.35s var(--ease-out), gap 0.35s var(--ease-out);
}
.ct-text-link i {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.35s var(--ease-out);
}
.ct-text-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
  gap: 14px;
}
.ct-text-link:hover i {
  transform: rotate(45deg) translate(2px, -2px);
}

.ct-hero {
  padding: 120px 0 0;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 50% 40% at 8% 18%, var(--accent-subtle), transparent 55%),
    var(--bg-base);
}
.ct-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0;
  min-height: min(48svh, 480px);
  align-items: stretch;
}
.ct-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 56px) clamp(20px, 3vw, 36px) clamp(40px, 5vw, 56px) 0;
  max-width: 36rem;
}
.ct-hero__copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 0 0 16px;
  max-width: 12ch;
}
.ct-hero__copy h1 .hl { color: var(--accent); }
.ct-hero__copy > p {
  margin: 0 0 26px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 40ch;
}
.ct-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
}
.ct-hero__meta {
  display: grid;
  grid-template-columns: 1fr;
  border-left: 1px solid var(--border);
  background: var(--bg-section-alt);
}
.ct-hero__meta > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 28px;
  border-bottom: 1px solid var(--border);
  justify-content: center;
}
.ct-hero__meta > div:last-child { border-bottom: none; }
.ct-hero__meta span {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.ct-hero__meta strong {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.ct-stage {
  padding: clamp(56px, 8vw, 100px) 0;
  background: var(--bg-base);
}
.ct-stage__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.ct-side__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.ct-side h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 0 0 16px;
}
.ct-side > p {
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.ct-side__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}
.ct-side__list li {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.ct-side__list span {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.ct-side__list strong,
.ct-side__list a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
}
.ct-side__list a:hover { color: var(--accent); }

.ct-panel {
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: clamp(24px, 3.5vw, 40px);
}
.ct-panel__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}
.ct-panel__note {
  margin: 0 0 28px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.ct-panel .fn-form { max-width: none; }
.ct-panel .fn-form-success {
  text-align: left;
  padding: 24px 0 0;
}
.ct-panel .checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}
.ct-panel .checkbox-group label {
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  align-items: flex-start;
  line-height: 1.35;
}

@media (max-width: 960px) {
  .ct-hero__grid,
  .ct-stage__grid { grid-template-columns: 1fr; }
  .ct-hero__copy { max-width: none; padding: 40px 0 32px; }
  .ct-hero__meta {
    border-left: none;
    border-top: 1px solid var(--border);
    grid-template-columns: repeat(3, 1fr);
  }
  .ct-hero__meta > div {
    padding: 20px 16px;
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
  .ct-hero__meta > div:last-child { border-right: none; }
}

@media (max-width: 600px) {
  .ct-hero__copy h1 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
    max-width: none;
    line-height: 1.05;
    overflow-wrap: normal;
    word-break: normal;
  }
  .ct-hero__meta { grid-template-columns: 1fr; }
  .ct-hero__meta > div {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .ct-hero__meta > div:last-child { border-bottom: none; }
  .ct-panel {
    padding: 20px 16px;
  }
  .ct-panel .checkbox-group {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .ct-panel .checkbox-group label {
    min-height: 48px;
    padding: 12px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ct-text-link,
  .ct-text-link i { transition: none; }
}
