/* ============================================================
   CONTACT PAGE — split layout (form left / info right)
   Brand tokens live in css/styles.css.
   ============================================================ */

body { background: var(--soft); }

/* ── HERO (CoCE-style entry glow, same as legal pages) ────── */
.ct-hero {
  position: relative;
  isolation: isolate;
  padding: calc(var(--nav-height) + 56px) var(--section-pad-h) 64px;
  overflow: hidden;
  background: var(--soft);
}
.ct-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 140% 40% at 50% -8%,
      rgba(124,58,237,0.38) 0%,
      rgba(124,58,237,0.22) 14%,
      rgba(124,58,237,0.10) 28%,
      rgba(124,58,237,0.04) 40%,
      transparent 50%),
    radial-gradient(ellipse 60% 48% at -5% -5%,
      rgba(124,58,237,0.24) 0%,
      rgba(124,58,237,0.14) 22%,
      rgba(124,58,237,0.06) 45%,
      rgba(124,58,237,0.015) 65%,
      transparent 78%);
}
.ct-hero-inner {
  position: relative; z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.ct-hero .section-label {
  color: var(--purple);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
  display: inline-block;
}
.ct-hero h1 {
  font-family: var(--font-body);
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -2px;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 20px;
  text-wrap: balance;
}
.ct-hero h1 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--purple);
}
.ct-hero p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--mid);
  max-width: 580px;
  margin: 0 auto;
}


/* ── BODY: form + info split ──────────────────────────────── */
.ct-body {
  background: white;
  padding: 80px var(--section-pad-h) 120px;
}
.ct-body-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}


/* ── FORM ─────────────────────────────────────────────────── */
.ct-form-wrap {
  background: white;
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 36px 36px 32px;
  box-shadow: 0 4px 24px rgba(28,18,41,0.04);
}
.ct-form-head {
  margin-bottom: 28px;
}
.ct-form-head h2 {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: -0.6px;
  margin-bottom: 8px;
}
.ct-form-head p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--mid);
  margin: 0;
}

.ct-form { display: flex; flex-direction: column; gap: 18px; }
.ct-field { display: flex; flex-direction: column; gap: 6px; }
.ct-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--soft);
  border: 1.5px solid var(--hairline);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
}
.ct-field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.55;
  font-family: var(--font-body);
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: var(--purple);
  background: white;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}
.ct-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ct-submit {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--yellow);
  color: var(--ink);
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.ct-submit:hover {
  background: var(--purple);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(124,58,237,0.3);
}
.ct-submit svg { width: 16px; height: 16px; stroke-width: 2.2; fill: none; stroke: currentColor; }

.ct-form-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--mid);
  text-align: center;
  line-height: 1.5;
}
.ct-form-note a { color: var(--purple); text-decoration: none; border-bottom: 1px solid rgba(124,58,237,0.3); }
.ct-form-note a:hover { border-bottom-color: var(--purple); }


/* ── INFO COLUMN ──────────────────────────────────────────── */
.ct-info { display: flex; flex-direction: column; gap: 16px; }
.ct-info-card {
  background: white;
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 24px 24px 22px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.ct-info-card:hover {
  border-color: var(--purple-mid);
  transform: translateY(-2px);
}
.ct-info-card-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--lavender);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.ct-info-card-icon svg {
  width: 18px; height: 18px;
  stroke: var(--purple); stroke-width: 2;
  fill: none;
}
.ct-info-card h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.ct-info-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--mid);
  margin: 0 0 12px;
}
.ct-info-card a {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(124,58,237,0.3);
  transition: border-color 0.2s ease;
}
.ct-info-card a:hover { border-bottom-color: var(--purple); }
.ct-info-card a svg {
  width: 12px; height: 12px;
  stroke: currentColor; stroke-width: 2.5; fill: none;
  transition: transform 0.2s ease;
}
.ct-info-card a:hover svg { transform: translateX(3px); }


/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .ct-body-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ct-form-wrap { padding: 28px 24px 26px; }
}
@media (max-width: 600px) {
  .ct-hero { padding: calc(var(--nav-height) + 36px) 20px 48px; }
  .ct-body { padding: 56px 20px 80px; }
  .ct-field-row { grid-template-columns: 1fr; }
}
