body {
  background: #efefef;
  margin: 0;
  overflow-x: hidden;
}

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

.contact-panel {
  border: 1px solid #c5a25c;
  box-sizing: border-box;
  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;
  width: 100%;
}

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

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

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

.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;
  min-width: 0;
  width: auto;
}

.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;
}

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

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

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

  .contact-right h2 {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
}

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

  .contact-panel {
    padding: 1.5rem 1rem;
  }

  .contact-address,
  .contact-email {
    font-size: 0.92rem;
    letter-spacing: 0.08em;
  }
}
