:root {
  --bg: #0d1220;
  --panel: rgba(12, 17, 31, 0.94);
  --panel-soft: rgba(255,255,255,0.03);
  --line: rgba(255,255,255,0.08);
  --text: #f6f7fb;
  --muted: #aeb6cb;
  --gold: #d8b24b;
  --gold-2: #f3d884;
  --btn-dark: #151c30;
  --shadow: 0 28px 80px rgba(0,0,0,0.38);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(216,178,75,0.14), transparent 22%),
    linear-gradient(180deg, #0b1020 0%, #141b2d 100%);
}

body.minimal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.wrap {
  width: 100%;
  max-width: 760px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-inner {
  padding: 34px 28px;
}

.logo {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.logo img {
  width: min(100%, 320px);
  border-radius: 8px;
  display: block;
}

.headline {
  text-align: center;
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.subhead {
  text-align: center;
  color: var(--muted);
  margin: 0 auto 22px;
  line-height: 1.5;
  max-width: 40ch;
  font-size: 1rem;
}

.location-line {
  text-align: center;
  color: var(--gold-2);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.button-stack {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  appearance: none;
  border: none;
  border-radius: 18px;
  padding: 17px 18px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.16s ease, opacity 0.16s ease, box-shadow 0.16s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  color: #11182b;
  background: linear-gradient(180deg, #f3d884 0%, #d8b24b 100%);
  box-shadow: 0 12px 28px rgba(216,178,75,0.22);
}

.btn-secondary {
  color: var(--text);
  background: var(--btn-dark);
  border: 1px solid rgba(255,255,255,0.08);
}

.helper {
  margin-top: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.helper a {
  color: var(--text);
}

.form-shell {
  max-width: 620px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

.form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.form-card .card-inner {
  padding: 30px 24px;
}

.form-title {
  margin: 0 0 8px;
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.form-copy {
  text-align: center;
  color: var(--muted);
  margin: 0 auto 24px;
  line-height: 1.5;
  max-width: 38ch;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text);
}

input,
textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--panel-soft);
  color: var(--text);
  font: inherit;
  outline: none;
}

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

input:focus,
textarea:focus {
  border-color: rgba(216,178,75,0.7);
  box-shadow: 0 0 0 3px rgba(216,178,75,0.12);
}

.submit-row {
  margin-top: 10px;
}

.note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  text-align: center;
}

.status {
  min-height: 1.2em;
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
}

.status.success { color: #88e7a8; }
.status.error { color: #ff9a9a; }

.thankyou {
  text-align: center;
}

.thankyou h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.thankyou p {
  margin: 0 auto 14px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 34ch;
}

.location-grid {
  display: grid;
  gap: 12px;
}

.location-link {
  display: block;
  padding: 18px;
  border-radius: 18px;
  text-align: center;
  text-decoration: none;
  background: var(--btn-dark);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-weight: 800;
}

.location-link span {
  display: block;
  color: var(--muted);
  font-weight: 500;
  margin-top: 5px;
  font-size: 0.94rem;
}

@media (max-width: 640px) {
  .card-inner,
  .form-card .card-inner {
    padding: 26px 18px;
  }
}
