/* ============================================================
   Contact page — matches about-redesign vibe
   Relies on tokens + base from about-redesign.css
   ============================================================ */

/* ---------- Hero ---------- */
.ct-hero {
  padding-top: 168px;
  text-align: center;
}

.ct-hero .about-shell {
  width: min(860px, 100%);
  margin-inline: auto;
}

.ct-hero .section-kicker {
  justify-content: center;
}

.ct-hero .section-kicker::before {
  content: "";
  width: 48px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.ct-hero h1 {
  margin-top: 20px;
  font-size: clamp(46px, 5vw, 82px);
  line-height: 1.03;
}

.ct-hero h1 em {
  color: var(--about-orange);
  font-family: var(--about-display) !important;
  font-style: normal;
}

.ct-hero-lede {
  margin: 24px auto 0;
  max-width: 620px;
  font-size: 19px;
  color: var(--about-muted);
}

/* ---------- Main grid ---------- */
.ct-main .about-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 3.6vw, 58px);
  align-items: start;
}

/* ---------- Channels (left) ---------- */
.ct-aside {
  display: grid;
  gap: 16px;
  align-content: start;
}

.ct-channel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px 26px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--about-line);
  box-shadow: var(--about-shadow);
}

.ct-channel .card-icon {
  width: 54px;
  height: 54px;
}

.ct-channel h3 {
  font-family: var(--about-display) !important;
  color: var(--about-maroon);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
}

.ct-channel p {
  margin-top: 5px;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1.5;
}

.ct-detailbar {
  margin-top: 4px;
  padding: 26px 28px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 14%, rgba(237, 85, 36, 0.18), transparent 30%),
    linear-gradient(150deg, #7b0f50, #3f0a28);
  color: #fff;
}

.ct-detailbar .ct-detail {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

.ct-detailbar .ct-detail:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ct-detailbar .ct-detail:first-child {
  padding-top: 0;
}

.ct-detailbar .ct-detail span {
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.ct-detailbar .ct-detail strong {
  text-align: right;
  font-weight: 600;
}

/* ---------- Form (right) ---------- */
.ct-form-card {
  padding: clamp(28px, 3vw, 46px);
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--about-line);
  box-shadow: var(--about-shadow);
}

.ct-form-card h2 {
  font-size: clamp(28px, 2.4vw, 38px) !important;
}

.ct-form-card > p {
  margin-top: 12px;
  color: var(--about-muted);
  font-size: 15px;
  line-height: 1.55;
}

.ct-form {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ct-field {
  display: grid;
  gap: 8px;
}

.ct-field label {
  color: var(--about-ink);
  font-size: 13px;
  font-weight: 700;
}

.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--about-line);
  background: var(--about-paper);
  color: var(--about-ink);
  font-family: var(--about-sans);
  font-size: 15px;
}

.ct-field textarea {
  resize: vertical;
  min-height: 120px;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: rgba(29, 23, 21, 0.42);
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  outline: 2px solid var(--about-orange);
  outline-offset: 2px;
  border-color: transparent;
}

.ct-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  background: var(--about-orange);
  color: #fff;
  font-family: var(--about-sans);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.ct-submit:hover {
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .ct-main .about-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .ct-hero {
    padding-top: 132px;
  }
  .ct-form-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Card motion: hover + reveal ---------- */
.ct-channel {
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .ct-channel:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 90px rgba(72, 38, 18, 0.16);
  }
}

.motion-ready .ct-channel.about-scale,
.motion-ready .ct-detailbar.about-scale,
.motion-ready .ct-form-card.about-scale {
  transform: translate3d(0, 30px, 0) scale(0.97);
}

.motion-ready .ct-channel.about-scale.is-visible,
.motion-ready .ct-detailbar.about-scale.is-visible,
.motion-ready .ct-form-card.about-scale.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}
