/* Gladioz — Contact */

.contact-section { padding: 60px 0 120px; }

.c-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.c-form-card {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.c-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--maroon);
}

.c-card-label { color: var(--maroon); display: block; margin-bottom: 32px; }

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.field label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--ink);
  border-radius: 4px;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-weight: 400;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px oklch(0.42 0.13 264 / 0.12);
}
.field textarea { resize: vertical; font-family: var(--sans); line-height: 1.55; }

.chip-select {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.c-chip {
  padding: 8px 14px;
  border: 1px solid var(--rule);
  background: var(--paper);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.3s;
}
.c-chip:hover { border-color: var(--ink); }
.c-chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.c-submit { margin-top: 12px; width: 100%; justify-content: center; padding: 18px; }
.c-helper { margin-top: 12px; font-size: 0.78rem; color: var(--ink-3); text-align: center; }

/* side */
.c-side { display: flex; flex-direction: column; gap: 32px; position: sticky; top: 100px; }

.c-block { padding: 28px; background: var(--paper-2); border: 1px solid var(--rule); border-radius: 6px; }
.c-block > .mono { display: block; margin-bottom: 24px; color: var(--ink-3); }

.c-channel {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  transition: transform 0.4s, padding 0.4s;
}
.c-channel:last-child { border-bottom: 0; }
.c-channel:hover { transform: translateX(4px); }

.c-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--paper);
  border: 1px solid var(--rule);
  transition: all 0.3s;
}
.c-channel.wa:hover .c-icon { background: #25D366; color: white; border-color: #25D366; }
.c-channel.email:hover .c-icon { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.c-channel > div:not(.c-icon) {
  display: flex; flex-direction: column; gap: 2px;
}
.c-label { color: var(--ink-3); }
.c-channel strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--ink); }
.c-meta { font-size: 0.85rem; color: var(--ink-3); }

.c-social { list-style: none; }
.c-social li { padding: 12px 0; border-bottom: 1px solid var(--rule); }
.c-social li:last-child { border-bottom: 0; }
.c-social a {
  display: flex; justify-content: space-between;
  font-family: var(--serif); font-size: 1.05rem;
  transition: color 0.3s;
}
.c-social a:hover { color: var(--maroon); }
.c-social span { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }

.c-quote { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.c-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.4;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-weight: 300;
}

@media (max-width: 960px) {
  .c-grid { grid-template-columns: 1fr; }
  .c-side { position: static; }
  .c-form-card { padding: 32px 24px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}
