:root {
  --royal: #0c1a3c;
  --royal-deep: #060d22;
  --royal-light: #16294f;
  --gold: #a8842c;
  --gold-dark: #6f571d;
  --gold-light: #c9a548;
  --text: #e9e4d4;
  --text-muted: #9aa3ba;
  --gold-gradient: linear-gradient(135deg, #6f571d 0%, #c9a548 50%, #8f6f24 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg, var(--royal) 0%, var(--royal-deep) 100%);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 3rem 1.5rem;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.logo {
  width: 280px;
  max-width: 70%;
  height: auto;
  margin: 0 auto 0.5rem;
  display: block;
}

.logo-small {
  width: 130px;
  margin: 0 auto 1.2rem;
  display: block;
}

h1 {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.divider {
  width: 72px;
  height: 1px;
  margin: 1.4rem auto;
  background: var(--gold);
  border-radius: 1px;
}

.address {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
}

.address .name {
  font-weight: 400;
  color: var(--text);
}

.btn {
  display: inline-block;
  margin-top: 2.8rem;
  padding: 0.85rem 2.8rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-light);
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--royal-deep);
}

.btn:active {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--royal-deep);
}

form {
  margin-top: 2.2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.45rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  padding: 0.7rem 0.9rem;
  background: rgba(6, 13, 34, 0.6);
  border: 1px solid var(--royal-light);
  border-bottom: 1px solid var(--gold-dark);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: rgba(6, 13, 34, 0.9);
}

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

form .btn {
  margin-top: 0.8rem;
  align-self: center;
}

.form-success {
  margin-top: 1rem;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gold-light);
  text-align: center;
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
}

.back-link:hover {
  color: var(--gold-light);
}

footer {
  margin-top: 3.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(168, 132, 44, 0.35);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

@media (max-width: 480px) {
  h1 { font-size: 1.2rem; letter-spacing: 0.16em; }
  .logo { width: 220px; }
}
