/* Shared form controls and the small pieces both pages use: quiet, rounded, unmistakably the same house. */
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-help { font-size: 13px; font-weight: 600; color: var(--rose); display: inline-flex; align-items: center; gap: 8px; padding: 4px 0; border-bottom: 1px solid #d396a866; transition: border-color .25s; }
.hero-help:hover { border-color: var(--rose); }
.hero-help > span { transition: transform .25s; }
.hero-help:hover > span { transform: translateX(4px); }
.page-hero { position: relative; isolation: isolate; padding-top: 70px; padding-bottom: 50px; max-width: 1440px; }
.page-aura { position: absolute; inset: -30% -10% -20%; z-index: -1; pointer-events: none; background: radial-gradient(ellipse at 20% 40%, #f6d1e08c, transparent 40%), radial-gradient(ellipse at 80% 20%, #e8d4eb73, transparent 38%); filter: blur(30px); animation: aura-drift 14s ease-in-out infinite alternate; }
.page-hero h1 { margin-top: 24px; font-size: clamp(54px, 6.4vw, 92px); line-height: 1.04; letter-spacing: -.055em; max-width: 12ch; animation: hero-in .9s .1s both; }
.page-hero h1 em { position: relative; }
.page-hero h1 em:after { content: ''; position: absolute; bottom: -9px; left: 0; right: -4px; height: 11px; border-top: 2px solid #d396a8; border-radius: 50%; transform: rotate(-3deg); }
.page-hero > p { max-width: 520px; margin-top: 30px; font-size: 16px; line-height: 1.85; color: var(--muted); animation: hero-in .9s .25s both; }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; letter-spacing: .01em; }
.field label small { font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: 15px; color: var(--ink); background: #fff; border: 1px solid #e6d2db; border-radius: 14px; padding: 13px 16px; min-height: 50px; transition: border-color .2s, box-shadow .2s; }
.field textarea { min-height: 120px; line-height: 1.6; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #b39ea8; }
.field :is(input, select, textarea):focus { outline: 0; border-color: var(--rose); box-shadow: 0 0 0 4px #d6829f22; }
.field.invalid :is(input, select, textarea) { border-color: #c4506f; background: #fff7f9; }
.field-hint { font-size: 12px; color: var(--muted); }
.amount-input { position: relative; }
.amount-input > span { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-family: var(--display); font-size: 17px; letter-spacing: -.02em; color: var(--rose); pointer-events: none; }
.amount-input input { padding-left: 48px; }
.consent { display: flex; align-items: flex-start; gap: 13px; font-size: 13px; line-height: 1.65; color: var(--muted); cursor: pointer; }
.consent input { width: 20px; height: 20px; margin: 2px 0 0; flex-shrink: 0; accent-color: var(--rose); cursor: pointer; }
.consent.invalid { color: #a43b60; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-footer { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.form-footer .button { gap: 26px; }
.form-status { font-size: 13px; line-height: 1.6; color: var(--muted); flex: 1; min-width: 200px; }
.form-status.error { color: #a43b60; font-weight: 600; }
.form-status:empty { display: none; }
form.sending .button { opacity: .65; pointer-events: none; }
form.sending .button > span { animation: sending-turn 1s linear infinite; }
.form-success { text-align: center; padding: 34px 10px 24px; }
.form-success > span { display: block; font-size: 58px; line-height: 1; color: var(--rose); animation: twinkle 5s ease-in-out infinite; }
.form-success h3 { font-size: clamp(30px, 3vw, 38px); letter-spacing: -.04em; line-height: 1.15; margin: 16px 0 12px; }
.form-success p { color: var(--muted); font-size: 15px; line-height: 1.8; max-width: 460px; margin: 0 auto; }
.form-success p + p { margin-top: 10px; }
@keyframes sending-turn { to { transform: rotate(360deg); } }
@media (max-width: 1050px) {
  .page-hero { padding-top: 50px; }
}
@media (max-width: 760px) {
  .page-hero { padding-top: 34px; padding-bottom: 36px; }
  .page-hero h1 { font-size: clamp(46px, 11vw, 64px); margin-top: 20px; }
  .page-hero > p { font-size: 15px; margin-top: 24px; }
  .field-grid { grid-template-columns: 1fr; gap: 15px; }
  .field input, .field select, .field textarea { font-size: 16px; }
  .form-footer { gap: 14px; }
  .form-footer .button { width: 100%; }
}
