:root {
  --bg-dark: #1f140d;
  --bg-deep-green: #163c2f;
  --card: rgba(255, 252, 245, 0.96);
  --text-dark: #1f1a17;
  --text-light: #f6f0e7;
  --muted: #6f675f;
  --gold: #c9a14a;
  --gold-dark: #a88332;
  --input-border: #ddd2c3;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  --radius: 22px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #1f140d 0%, #234b39 100%);
  color: var(--text-light);
}

.contact-page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(201, 161, 74, 0.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.05), transparent 22%);
  pointer-events: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.contact-content {
  padding-right: 20px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d9c18d;
  margin-bottom: 18px;
}

.contact-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.95;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff7eb;
}

.contact-content p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 245, 232, 0.86);
  max-width: 580px;
}

.info-cards {
  margin-top: 34px;
  display: grid;
  gap: 16px;
  max-width: 560px;
}

.info-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #d5b15b, #b78b32);
  color: #1f140d;
  font-weight: 700;
  font-size: 15px;
  margin-top: 2px;
}

.info-card h3 {
  font-size: 16px;
  color: #fff4df;
  margin-bottom: 5px;
  font-weight: 600;
}

.info-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 243, 228, 0.75);
}

.form-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
  color: var(--text-dark);
}

.form-top {
  margin-bottom: 24px;
}

.mini-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.form-top h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 8px;
  color: #231810;
}

.form-top p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #2d241f;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--input-border);
  outline: none;
  background: #fffdfa;
  color: #201a16;
  font-size: 15px;
  transition: 0.25s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 161, 74, 0.12);
}

.form-group.error-field input,
.form-group.error-field select {
  border-color: #d64c4c;
  box-shadow: 0 0 0 4px rgba(214, 76, 76, 0.08);
}

.error {
  min-height: 18px;
  margin-top: 6px;
  font-size: 12px;
  color: #d64c4c;
}

.submit-btn {
  height: 56px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, #d2ad57, #b98c33);
  color: #1f140d;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 10px 24px rgba(185, 140, 51, 0.28);
}

.submit-btn:hover {
  transform: translateY(-2px);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-note {
  font-size: 12px;
  line-height: 1.6;
  color: #7b7168;
  text-align: center;
}

.success-message {
  display: none;
  margin-top: 6px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(22, 92, 51, 0.08);
  color: #165c33;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-content {
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  .contact-page {
    padding: 28px 14px;
    align-items: flex-start;
  }

  .contact-content h1 {
    font-size: 42px;
    line-height: 1;
  }

  .contact-content p {
    font-size: 14px;
  }

  .form-card {
    padding: 22px 16px;
    border-radius: 18px;
  }

  .form-top h2 {
    font-size: 30px;
  }

  .form-group input,
  .form-group select,
  .submit-btn {
    height: 52px;
    font-size: 14px;
  }
}