/* ── Eyebrow ── */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

/* ── Section numbers ── */
.section-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2rem;
  color: var(--accent);
}

/* ── Dividers ── */
.divider {
  height: 1px;
  background: var(--warm);
  margin: 2.8rem 0;
}

.divider-v {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--faint), transparent);
  align-self: stretch;
}

/* ── Card ── */
.card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--warm);
  border-radius: 2px;
  padding: 3rem;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  padding: 1.1rem 3.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(196, 105, 58, 0.25);
}

.btn-secondary {
  background: none;
  border: none;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: color 0.25s ease;
  text-decoration: none;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.btn-secondary:hover {
  color: var(--ink);
}

.btn-secondary:hover::after {
  width: 100%;
}

/* ── Form fields ── */
.field {
  margin-bottom: 2.8rem;
}

.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--warm);
  padding: 0.6rem 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s ease;
  border-radius: 0;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--accent);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--faint);
}

/* ── Error / success messages ── */
.msg-error {
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 1.2rem;
  display: none;
}

.msg-error.visible {
  display: block;
}

.msg-success {
  font-size: 0.8rem;
  color: #4a7c59;
  margin-top: 1.2rem;
  display: none;
}

.msg-success.visible {
  display: block;
}


.field-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.field-checkbox input[type="checkbox"] {
  margin-top: 0.15rem;
  accent-color: var(--accent);
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
