/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--dark);
  min-height: 100vh;
}

.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.header {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
}

.logo-sub {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--soft);
  text-transform: uppercase;
  margin-top: 1px;
}

.location-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--soft);
  background: var(--gold-pale);
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: .5px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .3px;
}

.step-sub {
  font-size: 12px;
  color: var(--soft);
  margin-top: 2px;
  letter-spacing: .3px;
}

.section {
  margin-bottom: 2.5rem;
}