:root {
  --rose:        #F4C2C2;
  --rose-light:  #FFE4E1;
  --blush:       #FFF0F5;
  --gold:        #D4AF37;
  --gold-border: rgba(212,175,55,0.35);
  --white:       #FFFFFF;
  --dark:        #3a2c2c;
  --muted:       #9a7f7f;
}

.contact-page {
  background: var(--blush);
  min-height: 100vh;
}

.cw {
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.5s ease both;
}
.divider-line { flex: 1; height: 0.5px; background: var(--gold); opacity: 0.45; }
.divider-icon { color: var(--gold); font-size: 18px; }

/* Hero */
.hero {
  text-align: center;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s ease both;
}
.hero-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--rose-light);
  border: 1px solid var(--rose);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 26px;
  color: var(--gold);
}
.hero h1 {
  font-size: 28px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.hero p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* Info cards */
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.info-card {
  background: var(--white);
  border: 0.5px solid var(--gold-border);
  border-top: 2px solid var(--gold);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.15);
}
.info-card i {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.info-card .label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.info-card .value {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
}

/* Form card */
.form-card {
  background: var(--white);
  border: 0.5px solid var(--gold-border);
  border-radius: 14px;
  padding: 2rem;
  animation: fadeUp 0.6s 0.2s ease both;
}
.form-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-title::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--gold);
  opacity: 0.3;
}

/* Fields */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.field label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  border: 0.5px solid var(--rose);
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--blush);
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.field-row .field { margin-bottom: 0; }

.char-count {
  font-size: 11px;
  color: var(--muted);
  text-align: right;
  margin-top: 4px;
}

/* Button */
.submit-btn {
  width: 100%;
  margin-top: 8px;
  padding: 13px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--rose);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  transition: opacity 0.2s, transform 0.15s;
}
.submit-btn:hover { opacity: 0.85; }
.submit-btn:active { transform: scale(0.98); }

/* Success */
.success-msg {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
  animation: fadeUp 0.4s ease both;
}
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--rose-light);
  border: 1px solid var(--rose);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 28px;
  color: var(--gold);
}
.success-msg h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}
.success-msg p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 520px) {
  .cards-row { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 22px; }
}