:root {
  --primary: #A54E5C;
  --secondary: #DFA1AB;
  --accent: #EAB0B8;
  --soft: #F1DDE0;
  --light: #F7F2F3;
  --dark: #2A1520;
  --text: #2C1A1E;
  --muted: #7A5560;
  --white: #FFFFFF;
  --line: rgba(165, 78, 92, .18);
  --shadow: 0 22px 70px rgba(42, 21, 32, .10);
  --radius: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(circle at 18% 12%, rgba(223, 161, 171, .30), transparent 28rem),
    radial-gradient(circle at 88% 30%, rgba(234, 176, 184, .22), transparent 24rem),
    var(--light);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.nav {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(247, 242, 243, .92);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 78px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  height: 48px;
  object-fit: cover;
  padding: 3px;
  width: 48px;
}

.brand-name {
  color: var(--dark);
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-by {
  color: var(--muted);
  display: block;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:hover { color: var(--primary); }

.form-shell {
  padding: clamp(42px, 7vw, 82px) clamp(20px, 5vw, 78px) 76px;
}

.form-layout {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  grid-template-columns: minmax(260px, .44fr) minmax(0, .56fr);
  margin: 0 auto;
  max-width: 1180px;
}

.intro-panel,
.form-panel {
  background: rgba(255, 255, 255, .90);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-panel {
  align-self: start;
  padding: clamp(28px, 5vw, 46px);
  position: sticky;
  top: 104px;
}

.eyebrow,
.section-kicker {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--dark);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(38px, 5vw, 58px);
  margin-bottom: 18px;
}

.price-pill {
  background: var(--soft);
  border-radius: 999px;
  color: var(--primary);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 18px;
  padding: 8px 13px;
  text-transform: uppercase;
}

.intro-body,
.intro-note,
.mini-note,
.field-hint {
  color: var(--muted);
}

.intro-body {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.intro-note {
  background: var(--light);
  border: 1px solid rgba(165, 78, 92, .11);
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.75;
  padding: 16px;
}

.progress {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin-top: 28px;
}

.progress li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  padding: 11px 10px;
  text-align: center;
}

.progress li:first-child {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.form-panel {
  padding: clamp(26px, 5vw, 44px);
}

.form-section + .form-section {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 30px;
}

.form-section h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 10px;
}

.mini-note {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.field-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 7px;
}

.field.full { grid-column: 1 / -1; }

label,
.checkbox-label {
  color: var(--dark);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  background: var(--white);
  border: 1px solid rgba(165, 78, 92, .24);
  border-radius: var(--radius);
  color: var(--text);
  min-height: 48px;
  padding: 12px 13px;
  width: 100%;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(165, 78, 92, .13);
  outline: none;
}

.field-hint {
  font-size: 12px;
  line-height: 1.5;
}

.checkbox-row {
  align-items: flex-start;
  background: var(--light);
  border: 1px solid rgba(165, 78, 92, .11);
  border-radius: var(--radius);
  display: flex;
  gap: 12px;
  padding: 16px;
}

.checkbox-row input {
  flex: 0 0 auto;
  margin-top: 3px;
  min-height: auto;
  width: auto;
}

.button {
  align-items: center;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: .11em;
  min-height: 48px;
  padding: 14px 22px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
  white-space: nowrap;
}

.button.primary {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
}

.button.primary:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-1px);
}

.form-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  margin-top: 28px;
}

.secure-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  max-width: 320px;
}

.footer {
  background: #211019;
  color: rgba(255, 255, 255, .66);
  padding: 44px clamp(20px, 5vw, 78px) 30px;
}

.footer-inner {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.2fr .8fr;
  margin: 0 auto;
  max-width: 1180px;
}

.footer h3 {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, .56);
  font-size: 13px;
  line-height: 1.7;
  text-decoration: none;
}

.footer ul {
  display: grid;
  gap: 7px;
  list-style: none;
}

.footer a:hover { color: var(--accent); }

@media (max-width: 920px) {
  .form-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .intro-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    gap: 14px;
    overflow-x: auto;
    width: 100%;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .progress {
    grid-template-columns: 1fr;
  }

  .form-actions,
  .button {
    width: 100%;
  }
}
