:root {
    --wine-950: #18070d;
    --wine-900: #2a0c16;
    --red-700: #92142d;
    --red-600: #bd1e3d;
    --gold: #c79550;
    --cream: #fffaf5;
    --ink: #2f1720;
    --muted: #74636a;
    --line: #eee2e5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    min-height: 100vh;
    margin: 0;
    background: radial-gradient(circle at 12% 8%, rgba(199,149,80,.16), transparent 28%), linear-gradient(145deg, var(--wine-950), var(--wine-900));
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    line-height: 1.75;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.page-header {
    width: min(1060px, calc(100% - 36px));
    margin: 0 auto;
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}
.page-brand { display: inline-flex; align-items: center; gap: 11px; font-size: 21px; font-weight: 800; }
.page-brand i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: linear-gradient(145deg, var(--red-600), var(--red-700)); color: #f2d7a9; }
.page-brand strong { color: #e8c68f; }
.back-link { color: rgba(255,255,255,.72); font-size: 13px; font-weight: 700; }
.back-link:hover { color: white; }
.page-shell {
    width: min(1060px, calc(100% - 36px));
    margin: 10px auto 48px;
    padding: clamp(28px, 5vw, 60px);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 32px;
    background: white;
    box-shadow: 0 32px 90px rgba(0,0,0,.28);
}
.page-shell.narrow { width: min(560px, calc(100% - 28px)); }
.eyebrow { color: var(--red-700); font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; line-height: 1.2; }
h1 { margin: 8px 0 12px; color: var(--wine-950); font-size: clamp(34px, 6vw, 52px); }
h2 { margin: 34px 0 8px; color: var(--wine-900); font-size: 24px; }
p, li { color: var(--muted); }
.lead { max-width: 760px; font-size: 16px; }
.updated { display: inline-block; margin-top: 8px; color: #9b8e93; font-size: 12px; }
.form-group { margin-top: 18px; }
.form-group label { display: block; margin-bottom: 7px; color: var(--wine-900); font-size: 12px; font-weight: 800; }
.form-group input { width: 100%; min-height: 52px; padding: 0 15px; border: 1px solid var(--line); border-radius: 14px; outline: 0; color: var(--ink); }
.form-group input:focus { border-color: var(--red-600); box-shadow: 0 0 0 4px rgba(189,30,61,.1); }
.submit { width: 100%; min-height: 54px; margin-top: 22px; border: 0; border-radius: 15px; background: linear-gradient(135deg, var(--red-600), var(--red-700)); color: white; font-weight: 800; cursor: pointer; }
.submit:hover { transform: translateY(-2px); }
.form-message { min-height: 24px; margin: 12px 0 0; text-align: center; font-size: 12px; }
.form-message.error { color: #c83245; }
.form-message.success { color: #267c55; }
.helper { margin-top: 18px; text-align: center; color: var(--muted); font-size: 13px; }
.helper a { color: var(--red-700); font-weight: 800; }
.legal-list { padding-left: 22px; }
.legal-note { margin-top: 30px; padding: 18px; border-left: 4px solid var(--gold); border-radius: 0 14px 14px 0; background: var(--cream); }
@media (max-width: 600px) {
    .page-header { padding: 18px 0; }
    .page-brand { font-size: 17px; }
    .back-link span { display: none; }
    .page-shell { border-radius: 24px; }
}

