body {
  background: #efefef;
  margin: 0;
}

.contact-page {
  padding: clamp(2rem, 4vw, 3rem) 1rem clamp(2.4rem, 5vw, 4rem);
}

.contact-panel {
  border: 1px solid #c5a25c;
  display: grid;
  gap: clamp(1.4rem, 3vw, 3rem);
  grid-template-columns: 1fr 1.15fr;
  margin: 0 auto;
  max-width: 1360px;
  padding: clamp(2rem, 4vw, 3.4rem);
}

.contact-left {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.contact-brand h1 {
  color: #2a2a2a;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(2rem, 2.5vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0;
}

.brand-line {
  border-top: 1px solid #c5a25c;
  display: block;
  margin: 0.55rem auto;
  width: min(360px, 84%);
}

.brand-sub,
.brand-loc {
  color: #2f2f2f;
  font-family: "Times New Roman", Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  margin: 0;
  text-transform: uppercase;
}

.brand-loc {
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  margin-top: 0.3rem;
}

.contact-address,
.contact-email {
  color: #111;
  font-family: "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.05vw, 1.3rem);
  letter-spacing: 0.11em;
  line-height: 1.7;
  margin: 2.3rem 0 0;
  text-transform: uppercase;
}

.contact-email {
  margin-top: 1.8rem;
}

.contact-right h2 {
  color: #1f2f47;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(1.7rem, 2.2vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0 0 1.2rem;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  background: #efefef;
  border: 1px solid #c5c5c5;
  color: #222;
  font-family: "Segoe UI", sans-serif;
  font-size: 1.05rem;
  outline: none;
  padding: 0.85rem 0.9rem;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.phone-row {
  align-items: center;
  border: 1px solid #c5c5c5;
  display: flex;
  overflow: hidden;
}

.country-code {
  border-right: 1px solid #c5c5c5;
  color: #4a4a4a;
  font-family: "Segoe UI", sans-serif;
  font-size: 1rem;
  padding: 0.85rem 0.9rem;
  white-space: nowrap;
}

.phone-row input {
  border: 0;
  flex: 1;
}

.contact-form button {
  background: #c5a25c;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-family: "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0.9rem 1rem;
  text-transform: uppercase;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.78;
}

.contact-page-toast {
  background:
    radial-gradient(circle at top left, rgba(235, 205, 145, 0.18), transparent 38%),
    linear-gradient(135deg, #15120e 0%, #3d2c16 100%);
  border: 1px solid rgba(212, 176, 105, 0.32);
  border-radius: 1rem;
  bottom: 1.4rem;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.2);
  color: #fff7ea;
  display: grid;
  gap: 0.18rem;
  max-width: 340px;
  opacity: 0;
  padding: 1rem 1.05rem;
  pointer-events: none;
  position: fixed;
  right: 1.25rem;
  transform: translateY(18px);
  transition: opacity 0.24s ease, transform 0.24s ease;
  z-index: 1400;
}

.contact-page-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-page-toast.is-error {
  background: linear-gradient(135deg, #451818 0%, #742929 100%);
  border-color: rgba(255, 188, 188, 0.3);
}

.contact-page-toast-title {
  font-family: "Segoe UI", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-page-toast-copy {
  color: rgba(255, 247, 234, 0.9);
  font-family: "Segoe UI", sans-serif;
  font-size: 0.95rem;
  line-height: 1.45;
}

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

  .contact-left {
    align-items: flex-start;
    text-align: left;
  }

  .brand-line {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .contact-page {
    padding: 1.15rem 0.75rem 2rem;
  }

  .contact-panel {
    padding: 1rem;
  }

  .contact-right h2 {
    font-size: 1.4rem;
    letter-spacing: 0.06em;
  }

  .phone-row {
    flex-wrap: nowrap;
  }

  .country-code {
    font-size: 0.92rem;
    padding: 0.8rem 0.72rem;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    font-size: 1rem;
  }

  .contact-page-toast {
    bottom: 1rem;
    left: 0.75rem;
    max-width: none;
    right: 0.75rem;
  }
}
