.contact-page {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.86), transparent 34%),
    linear-gradient(180deg, #fff1cf 0%, #fff8e8 100%);
}

.contact-hero {
  padding: clamp(58px, 8vw, 105px) 24px 56px;
  background:
    linear-gradient(135deg, rgba(255, 248, 232, 0.98), rgba(255, 241, 207, 0.90)),
    radial-gradient(circle at 78% 25%, rgba(212, 177, 95, 0.22), transparent 34%);
}

.contact-hero h1 {
  width: min(980px, 100%);
  margin: 0;
  color: var(--navy-2);
  font-size: clamp(44px, 7vw, 86px);
  line-height: .98;
  letter-spacing: -0.06em;
}

.contact-hero h1 span {
  color: #bd9342;
}

.contact-lead {
  width: min(850px, 100%);
  margin: 24px 0 0;
  color: #4b5563;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.66;
}

.contact-section {
  padding: clamp(54px, 7vw, 92px) 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.info-card,
.mini-card,
.contact-form-card {
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(16,47,77,.08);
}

.info-card {
  padding: clamp(26px, 4vw, 38px);
  background: #0a2138;
  color: #fff;
}

.info-card h2,
.form-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.info-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  margin-top: 22px;
  align-items: start;
}

.info-item span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(255,255,255,.10);
}

.info-item strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
}

.info-item p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}

.mini-card {
  margin-top: 18px;
  padding: 24px;
  background: rgba(255,255,255,.78);
}

.mini-card h3 {
  margin: 0 0 8px;
  color: var(--navy-2);
  font-size: 23px;
}

.mini-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
}

.small-link {
  display: inline-flex;
  padding: 11px 15px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

.contact-form-card {
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255,255,255,.82);
}

.form-heading p {
  width: min(640px, 100%);
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field.full {
  grid-column: 1 / -1;
}

.contact-field label {
  color: var(--navy-2);
  font-weight: 800;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(16,47,77,.16);
  border-radius: 16px;
  padding: 14px 15px;
  background: rgba(255,255,255,.86);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.contact-field textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(16,47,77,.42);
  box-shadow: 0 0 0 4px rgba(16,47,77,.08);
  background: #fff;
}

.contact-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
  accent-color: var(--navy);
}

.contact-consent a {
  color: var(--navy-2);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-actions {
  margin-top: 26px;
}

.contact-submit {
  border: 0;
  min-height: 54px;
  padding: 0 25px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(16,47,77,.22);
  transition: transform .22s ease, opacity .22s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
}

.contact-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
}

.contact-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 15px;
  font-size: 15px;
  line-height: 1.45;
}

.contact-status.error {
  display: block;
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fecaca;
}

.contact-status.success {
  display: block;
  color: #166534;
  background: #dcfce7;
  border: 1px solid #86efac;
}

.contact-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .contact-hero,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    width: 100%;
  }
}
