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

body {
  font-family: 'Outfit', sans-serif;
  background: #000;
  color: #fff;
  min-height: 100vh;
}

.bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(196,102,43,0.08), transparent 70%),
              radial-gradient(ellipse 60% 40% at 30% 60%, rgba(45,90,61,0.06), transparent 60%);
  z-index: 0;
}

.page { position: relative; z-index: 1; }

/* Typography */
.tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a84c;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 .dot { color: #c4662b; }

h2 {
  font-size: 1.8rem;
  font-weight: 200;
  letter-spacing: -0.01em;
}

.subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* Buttons & Inputs */
input, select, textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.8rem 1rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}

input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.25); }
input:focus, select:focus, textarea:focus { border-color: rgba(201,168,76,0.5); }
textarea { resize: vertical; min-height: 80px; }

select {
  background: #000;
  cursor: pointer;
}

select option { background: #111; color: #fff; }

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.required::after { content: ' *'; color: #c9a84c; }

.btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 0.85rem 2rem;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.btn:hover { background: rgba(255,255,255,0.9); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover { background: rgba(255,255,255,0.05); }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.card {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.card:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(255,255,255,0.02);
}

.card-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.card h3 {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.card .card-btn {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a84c;
}

/* Hero banner */
.hero-banner {
  position: relative;
  width: 100%;
  height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-banner .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.hero-banner .hero-content .tag {
  margin-bottom: 1rem;
}

.hero-banner .hero-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 200;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.hero-banner .hero-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .hero-banner { height: 520px; }
}

/* Form page layout */
.form-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.form-page .back {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 2rem;
}

.form-page .back:hover { color: #fff; }

.form-header {
  margin-bottom: 2.5rem;
}

.form-header p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  line-height: 1.6;
}

.form-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.form-section:last-of-type { border-bottom: none; }

.section-title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1.2rem;
}

.field { margin-bottom: 1rem; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Checkboxes */
.checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.checkbox-group.inline { grid-template-columns: repeat(3, auto); justify-content: start; gap: 1.5rem; }

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: #c9a84c;
}

/* Radio */
.radio-group { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  margin-bottom: 0;
}

.radio-group input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #c9a84c;
}

/* Success state */
.success-state {
  text-align: center;
  padding: 4rem 2rem;
}

.success-state .icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.success-state h2 {
  font-size: 1.5rem;
  font-weight: 200;
  margin-bottom: 0.75rem;
}

.success-state p {
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  max-width: 400px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

/* Divider */
.divider {
  width: 40px;
  height: 1px;
  background: rgba(201,168,76,0.3);
  margin: 2rem auto;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 640px) {
  .cards { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .radio-group { flex-direction: column; gap: 0.5rem; }
  .checkbox-group, .checkbox-group.inline { grid-template-columns: 1fr; }
}
