:root {
  --dark: #0e0f12;
  --dark-soft: #15171c;
  --gold: #c6a75e;
  --text: #eaeaea;
  --muted: #9a9a9a;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text)!important;
  line-height: 1.7;
}

h3,p{
  color: var(--text);
}

/* HERO */
.hero {
  height: 100vh;
  background: linear-gradient(to bottom, rgba(0,0,0,.6), var(--dark)),
              url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') center/cover;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
  margin-left: 8%;
}

.tagline {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  margin: 20px 0;
}

.hero p {
  color: var(--muted);
  margin-bottom: 30px;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  background-color: #000;
  color: var(--gold);
  text-decoration: none;
  transition: .3s;
}

.btn-primary:hover {
  background: var(--gold);
  color: #000;
}

.full {
  width: 100%;
  text-align: center;
}

/* SECTIONS */
.section {
  padding: 100px 0;
}

.section.dark {
  background: var(--dark-soft);
}

.container {
  width: 85%;
  max-width: 1200px;
  margin: auto;
}

.narrow {
  max-width: 700px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 25px;
}

/* GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: var(--dark-soft);
  padding: 40px;
  border: 1px solid #222;
}

/* STEPS */
.steps {
  display: flex;
  justify-content: space-between;
}

.step span {
  color: var(--gold);
  font-size: 28px;
  font-family: 'Playfair Display', serif;
}

/* LIST */
.list-elegant li {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 12px;
  position: relative;
}

.list-elegant li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* FORM */
.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}
a {
  color: var(--gold);
  text-decoration: none;
}
input, select, textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #333;
  padding: 12px;
  color: var(--text);
}
.form-check input {
  width: auto;
  margin-right: 10px;
}
.form-check {
    display: flex;
    align-items: center; 
    gap: 10px;
    margin: 20px 0;
}
.form-check span a {
    color: var(--gold);
    text-decoration: underline;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 40px;
  color: var(--muted);
  font-size: 13px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(14,15,18,0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.navbar a {
  margin-left: 30px;
  color: #eaeaea;
  text-decoration: none;
  font-size: 14px;
}

.btn-login {
  margin-left: 30px;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: .3s;
}

.btn-login:hover {
  background: var(--gold);
  color: #000;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--dark-soft);
  padding: 50px;
  width: 100%;
  max-width: 420px;
  border: 1px solid #222;
  position: relative;
}

.modal-content h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.subtitle {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 30px;
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 22px;
  cursor: pointer;
  color: var(--muted);
}

.form-group {
  margin-bottom: 20px;
}

input {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid #333;
  color: #fff;
}

.form-options {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 25px;
}

.full {
  width: 100%;
}