/* ============================================
   CONTACT page styles
   ============================================ */

.ct-hero {
  padding: clamp(72px, 8vw, 120px) 0 clamp(32px, 4vw, 48px);
  text-align: center;
}

.ct-hero .eyebrow { justify-content: center; }

.ct-hero h1 {
  font-size: clamp(48px, 6vw, 84px);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-top: 20px;
}

.ct-hero .lead {
  margin: 22px auto 0;
  font-size: clamp(17px, 1.4vw, 20px);
}

.ct-body {
  padding: clamp(40px, 5vw, 72px) 0 clamp(80px, 9vw, 140px);
}

.ct-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

/* Form */
.ct-form-card {
  background: var(--bg-pure);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}

.ct-form-card h2 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.018em;
  margin-bottom: 8px;
}

.ct-form-card .sub {
  color: var(--ink-3);
  font-size: 14.5px;
  margin-bottom: 28px;
}

.ct-form-card form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

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

.ct-form-card .btn {
  margin-top: 6px;
  align-self: flex-start;
  font-size: 15px;
  padding: 16px 28px;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 32px 16px;
}

.form-success .check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-success .check svg { width: 28px; height: 28px; }

.form-success h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.018em;
}

.form-success p {
  color: var(--ink-3);
  max-width: 40ch;
  font-size: 14.5px;
}

/* Sidebar */
.ct-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-card {
  background: var(--bg-pure);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  transition: all 0.2s var(--ease);
}

.ct-card:hover {
  border-color: #d4d8d0;
}

.ct-card .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.ct-card .lbl::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--green);
}

.ct-card .val {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ct-card .val a:hover { color: var(--green-dark); }

.ct-card .val svg {
  width: 14px;
  height: 14px;
  color: var(--ink-4);
  flex-shrink: 0;
}

.ct-card .note {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 6px;
  line-height: 1.5;
}

.ct-card.dark {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  position: relative;
  overflow: hidden;
}

.ct-card.dark::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63,143,111,0.32), transparent 70%);
  bottom: -80px;
  right: -80px;
}

.ct-card.dark .lbl { color: #9b9f9b; position: relative; }
.ct-card.dark .lbl::before { background: var(--green); }
.ct-card.dark .val { color: white; position: relative; }
.ct-card.dark .note { color: #9b9f9b; position: relative; }
.ct-card.dark .val a:hover { color: var(--green); }

.ct-people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ct-person {
  background: var(--bg-pure);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.ct-person .name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.012em;
}

.ct-person .role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-top: 4px;
}

.ct-person a {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}

.ct-person a:hover { color: var(--green-dark); }

@media (max-width: 820px) {
  .ct-grid { grid-template-columns: 1fr; }
}

/* Hours / response strip */
.response-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink-2);
  background: var(--green-tint);
  border: 1px solid #cfe5d8;
  border-radius: 999px;
  padding: 8px 16px 8px 12px;
  align-self: flex-start;
  margin-bottom: 24px;
}

.response-strip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(63,143,111,0.18);
  animation: pulse 1.8s var(--ease) infinite;
}

.response-strip strong { font-weight: 500; color: var(--ink); }
