:root {
    color-scheme: light;
    --ink: #1e1a16;
    --muted: #6a6056;
    --paper: #fbf7f1;
    --line: #e7dccc;
    --accent: #f06c2f;
    --accent-strong: #d3541b;
    --accent-2: #2a7f62;
    --shadow: 0 24px 60px rgba(30, 26, 22, 0.18);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    background: radial-gradient(1200px 700px at 80% -10%, rgba(240, 108, 47, 0.22), transparent 60%),
        radial-gradient(900px 600px at 10% 20%, rgba(42, 127, 98, 0.18), transparent 65%),
        #f6f1ea;
    color: var(--ink);
    min-height: 100vh;
}

.page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 20px 60px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.85), rgba(251, 247, 241, 0.6));
    border-radius: 24px;
    padding: 32px 36px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(231, 220, 204, 0.7);
    animation: lift 0.8s ease forwards;
}

.hero__content {
    max-width: 620px;
}

.hero__eyebrow {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    color: var(--accent-2);
    font-weight: 600;
}

.hero h1 {
    font-family: "Fraunces", "Georgia", serif;
    font-size: clamp(32px, 4vw, 46px);
    margin: 0 0 16px;
}

.hero__lead {
    margin: 0;
    font-size: 17px;
    color: var(--muted);
    line-height: 1.6;
}

.hero__badge {
    background: var(--ink);
    color: #fff;
    padding: 16px 20px;
    border-radius: 18px;
    text-align: right;
    min-width: 180px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    align-self: center;
}

.banner {
    padding: 16px 20px;
    border-radius: 14px;
    font-weight: 600;
    animation: fadeIn 0.4s ease forwards;
}

.banner--success {
    background: rgba(42, 127, 98, 0.12);
    border: 1px solid rgba(42, 127, 98, 0.4);
    color: #1f5945;
}

.banner--error {
    background: rgba(219, 64, 64, 0.12);
    border: 1px solid rgba(219, 64, 64, 0.35);
    color: #7a1d1d;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}

.info-card,
.form-card {
    background: var(--paper);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(231, 220, 204, 0.75);
}

.info-card {
    animation: lift 0.8s ease 0.1s forwards;
    opacity: 0;
    transform: translateY(10px);
}

.info-card h2 {
    font-family: "Fraunces", "Georgia", serif;
    margin: 0 0 12px;
    font-size: 26px;
}

.info-card ul {
    margin: 0 0 18px;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.6;
}

.info-card__callout {
    border-radius: 16px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--line);
    margin-bottom: 12px;
}

.info-card__label {
    margin: 0 0 6px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--accent-2);
    font-weight: 600;
}

.info-card__value {
    margin: 0;
    font-weight: 600;
}

.info-card__value a {
    color: inherit;
    text-decoration: none;
}

.info-card__value a:hover {
    text-decoration: underline;
}

.form-card {
    animation: lift 0.8s ease 0.2s forwards;
    opacity: 0;
    transform: translateY(10px);
}

.form-card__header h2 {
    font-family: "Fraunces", "Georgia", serif;
    margin: 0 0 8px;
    font-size: 26px;
}

.form-card__header p {
    margin: 0 0 20px;
    color: var(--muted);
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 14px;
    color: var(--muted);
}

.field span {
    font-weight: 600;
    color: var(--ink);
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(240, 108, 47, 0.2);
}

.field em {
    font-style: normal;
    color: #b0442b;
    font-size: 13px;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.button {
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(240, 108, 47, 0.35);
}

.field--honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.footer {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

@keyframes lift {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 800px) {
    .hero {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__badge {
        align-self: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
