:root {
    --gold: #C4953A;
    --gold-light: #E2C190;
    --cream: #F2EDE6;
    --dark: #1A0E05;
    --surface: #251508;
    --surface-2: #321E0E;
    --warm: #F5E8D0;
    --farbe-fehler: #a33;
    --farbe-erfolg: #2f7d4f;
    --schatten: 0 6px 18px rgba(26, 14, 5, .08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--warm);
    color: var(--dark);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 0 60px;
}

.header {
    position: relative;
    text-align: center;
    padding: 32px 20px 52px;
    margin-bottom: 12px;
    background: var(--dark);
    color: var(--cream);
    overflow: hidden;
}

.header::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 50%;
    width: 260px;
    height: 260px;
    transform: translateX(-50%);
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: .3;
    pointer-events: none;
}

.header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23F5E8D0' d='M0,64L48,58.7C96,53,192,43,288,48C384,53,480,75,576,80C672,85,768,75,864,64C960,53,1056,43,1152,48C1248,53,1344,75,1392,85.3L1440,96L1440,120L0,120Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.logo {
    max-width: 160px;
    margin-bottom: 16px;
    position: relative;
}

.header h1, .header .untertitel {
    position: relative;
}

.gold-line {
    display: inline-block;
    width: 4rem;
    height: 10px;
    margin-top: 14px;
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 10'%3E%3Cpath d='M0,5 Q8,0 16,5 T32,5 T48,5 T64,5' fill='none' stroke='%23C4953A' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.header h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--cream);
}

.header .untertitel {
    display: block;
    margin-top: 6px;
    font-size: 0.75rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
}

main.container > *:not(.header) {
    padding-left: 20px;
    padding-right: 20px;
}

h2 {
    font-size: 1.15rem;
    color: var(--gold);
}

.seiten-intro {
    margin-bottom: 8px;
}

.rechtstext section {
    margin-bottom: 28px;
}

.rechtstext .stand {
    color: #8a7f6f;
    font-size: 0.85rem;
}

.section-label {
    font-size: .7rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.hinweis {
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    background: #fff;
    border-left: 3px solid var(--gold);
    border-radius: 12px;
    box-shadow: var(--schatten);
}

.hinweis-fehler {
    background: #fbeaea;
    border-left-color: var(--farbe-fehler);
    color: var(--farbe-fehler);
}

.hinweis-erfolg {
    background: #eaf6ee;
    border-left-color: var(--farbe-erfolg);
    color: var(--farbe-erfolg);
}

.teilnahme-formular {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.teilnahme-formular label {
    font-size: 0.9rem;
    font-weight: 600;
}

.teilnahme-formular input[type="text"],
.teilnahme-formular input[type="email"] {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
}

.teilnahme-formular input[type="text"]:focus,
.teilnahme-formular input[type="email"]:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(196, 149, 58, .15);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: normal;
}

.checkbox-label input {
    margin-top: 3px;
}

button, .btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 999px;
    padding: 13px 20px;
    font-family: inherit;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 6px 16px rgba(196, 149, 58, .3);
    transition: background .2s, transform .2s, box-shadow .2s;
}

button:hover, .btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(196, 149, 58, .4);
}

.info-seite section {
    margin-bottom: 28px;
}

.info-schritte {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-schritte li {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #fff;
    padding: 14px 16px;
    border-left: 3px solid var(--gold);
    border-radius: 12px;
    box-shadow: var(--schatten);
}

.info-schritte .nr {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: var(--warm);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    line-height: 1;
}

.preise-tabelle {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.9rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--schatten);
}

.preise-tabelle td {
    padding: 10px 12px;
    border-bottom: 1px solid #e2ddd5;
}

.preise-tabelle tr:last-child td {
    border-bottom: none;
}

.preise-tabelle td:first-child {
    width: 3.6rem;
}

.preise-tabelle td:first-child span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--warm);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
}

.zeitraum {
    background: linear-gradient(135deg, var(--surface-2), var(--surface));
    color: var(--cream);
    padding: 18px 16px;
    text-align: center;
    border-radius: 14px;
    box-shadow: var(--schatten);
}

.zeitraum strong {
    color: var(--gold-light);
}

.share-bereich {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #e2ddd5;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.share-buttons button {
    margin-top: 0;
}

.share-status {
    font-size: 0.9rem;
    min-height: 1.2em;
    margin-top: 10px;
}

.footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: #8a7f6f;
}

.footer a {
    color: #8a7f6f;
}
