/* ---- Contact page ---- */
.contact-section {
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
  background: var(--paper);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}

/* ---- Left: info cards ---- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info__intro {
  margin-bottom: 8px;
}
.contact-info__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--ink);
}
.contact-info__intro p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-top: 12px;
  max-width: 42ch;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(62,61,60,.08);
}
.contact-list li:first-child {
  padding-top: 0;
}
.contact-list li:last-child {
  border-bottom: none;
}
.contact-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--red);
  margin-top: 2px;
}
.contact-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 2px;
}
.contact-list span {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.5;
}
.contact-list a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .25s ease;
}
.contact-list a:hover {
  color: var(--red);
}

/* Social row */
.contact-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--rose);
  border: 1px solid rgba(155,27,31,.08);
  color: var(--ink);
  transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.contact-socials a:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(155,27,31,.25);
}
.contact-socials a svg {
  width: 18px;
  height: 18px;
}

/* ---- Right: form ---- */
.contact-form-card {
  background: #fff;
  border: 1px solid rgba(62,61,60,.08);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.5vw, 44px);
  box-shadow: 0 20px 50px rgba(62,61,60,.07);
}
.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.contact-form-card > p {
  color: var(--ink-soft);
  font-size: .93rem;
  margin-bottom: clamp(20px, 2.5vw, 30px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group--full {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
}
.form-group label .req {
  color: var(--red);
  margin-left: 2px;
}
.form-input,
.form-select,
.form-textarea {
  padding: .82em 1em;
  border-radius: 12px;
  border: 1.5px solid rgba(62,61,60,.14);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .3s ease, box-shadow .3s ease;
  outline: none;
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(90,88,86,.45);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(155,27,31,.08);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235a5856' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}
.form-submit-row .btn {
  padding: 1em 2.4em;
  font-size: 1.05rem;
}
.form-note {
  font-size: .78rem;
  color: var(--ink-soft);
  max-width: 28ch;
  line-height: 1.45;
}

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(40px, 5vw, 70px) 20px;
  gap: 16px;
}
.form-success.is-visible {
  display: flex;
}
.form-success__ico {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--rose);
  display: grid;
  place-items: center;
}
.form-success__ico svg {
  width: 30px;
  height: 30px;
  color: var(--red);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
}
.form-success p {
  color: var(--ink-soft);
  font-size: .98rem;
  max-width: 36ch;
  line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 920px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    order: -1;
  }
}
@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-submit-row {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .form-note {
    max-width: none;
  }
}

/* ===== Lot 3e ===== */
.contact-info__title { font-family: var(--font-display); font-size: clamp(1.4rem,2.6vw,2rem); font-weight: 800; letter-spacing: -.02em; color: var(--ink); margin-bottom: 8px; }
.contact-info__lead { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.65; margin-bottom: 28px; max-width: 42ch; }
.contact-list--spaced { margin-top: 8px; }
.cf-turnstile--mb { margin-bottom: 16px; }
