.cd {
  min-height: calc(100vh - 73px);
  padding: 80px 40px;
  display: flex;
  align-items: center;
}

.cd__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
  width: 100%;
}

.cd__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}

.cd__sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.6;
}

.cd__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cd__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cd__input,
.cd__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  background: var(--bg-3);
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.cd__input::placeholder,
.cd__textarea::placeholder {
  color: var(--text-faint);
}

.cd__input:focus,
.cd__textarea:focus {
  border-color: var(--accent-bright);
  background-color: rgba(235, 241, 248, 0.95);
}

.cd__textarea {
  min-height: 130px;
  resize: none;
}

.btn--accent {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  background-color: var(--accent-bright);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  letter-spacing: 0.02em;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.btn--accent:hover {
  background-color: #2880c4;
  box-shadow: 0 4px 24px rgba(53, 146, 212, 0.38);
  transform: translateY(-1px);
}

.btn--accent:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

.btn--accent:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Info column */
.cd__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-light);
  margin-bottom: 20px;
  background-color: var(--bg-3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.cd__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cd__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.cd__name {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.cd__address {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

.cd__link {
  font-size: 0.85rem;
  color: var(--accent-bright);
  text-decoration: none;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.cd__link:hover { opacity: 0.75; }

.cd__link:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
}

.cd__socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cd__socials a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.cd__socials a:hover {
  border-color: var(--border-light);
  color: var(--text);
  background: rgba(28, 110, 164, 0.04);
}

.cd__socials a:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

.cd__socials svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .cd { padding: 56px 20px; align-items: flex-start; }
  .cd__inner { grid-template-columns: 1fr; gap: 48px; }
  .cd__info-col { order: -1; }
  .cd__row { grid-template-columns: 1fr; }
}
