.contact-shell { max-width: 640px; margin: 0 auto; padding: 20px 20px 60px; width: 100%; }

.contact-intro { text-align: center; padding: 20px 4px 28px; }
.contact-intro h1 { font-family: 'Quicksand', sans-serif; font-size: clamp(24px, 5vw, 32px); font-weight: 700; margin-bottom: 10px; }
.contact-intro p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 400px; margin: 0 auto; }

.contact-thread { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.c-bubble {
  max-width: 78%;
  padding: 13px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
  text-decoration: none;
  display: block;
  transition: transform 0.12s ease;
}
.c-bubble:hover { transform: translateY(-1px); }
.c-bubble .bubble-label { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; opacity: 0.65; margin-bottom: 4px; }
.c-bubble .bubble-value { font-weight: 700; font-family: 'Quicksand', sans-serif; font-size: 15px; }

.c-bubble.from-me {
  background: var(--surface); border: 1px solid var(--border); color: var(--ink);
  align-self: flex-start; border-bottom-left-radius: 4px;
}
.c-bubble.accent {
  background: var(--terracotta); color: #fff;
  align-self: flex-end; border-bottom-right-radius: 4px;
}
.c-bubble.accent .bubble-label { opacity: 0.8; }

.composer-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px; }
.composer-label { font-family: 'Quicksand', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.composer-sub { font-size: 12.5px; color: var(--muted); margin-bottom: 14px; }

.composer-fields { display: flex; gap: 8px; margin-bottom: 8px; }
.composer-fields input {
  flex: 1; min-width: 0; background: var(--surface-2); border: 1px solid var(--border-md); border-radius: 12px;
  padding: 10px 13px; font-family: 'Nunito', sans-serif; font-size: 13.5px; outline: none; color: var(--ink);
}
.composer-fields input:focus { border-color: var(--terracotta); }

.composer-input-row { display: flex; gap: 8px; align-items: flex-end; }
.composer-input-row textarea {
  flex: 1; min-width: 0; min-height: 56px; max-height: 140px; resize: vertical;
  background: var(--surface-2); border: 1px solid var(--border-md); border-radius: 14px;
  padding: 12px 14px; font-family: 'Nunito', sans-serif; font-size: 14px; outline: none; color: var(--ink);
}
.composer-input-row textarea:focus { border-color: var(--terracotta); }

@media (max-width: 420px) {
  .composer-fields { flex-direction: column; }
}

.composer-send-btn {
  width: 46px; height: 46px; flex-shrink: 0; border: none; border-radius: 14px;
  background: var(--terracotta); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.composer-send-btn:hover:not(:disabled) { opacity: 0.92; }
.composer-send-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.composer-send-btn svg { width: 18px; height: 18px; }

.form-status {
  margin-top: 12px; font-size: 13px; padding: 10px 14px; border-radius: 12px; display: none;
}
.form-status.success { display: block; background: var(--sage-dim); border: 1px solid rgba(52,137,57,0.8); color: #3F5F41; }
.form-status.error { display: block; background: var(--amber-flag-dim); border: 1px solid rgba(216,154,62,0.35); color: #8A5A1A; }
