.baptism-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #b88a32;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.baptism-kicker::before {
    content: "";
    width: 30px;
    height: 1px;
    background: currentColor;
}

.baptism-landing-hero {
    min-height: 620px;
    display: flex;
    align-items: center;
    background-color: #17382f;
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 150px 0 90px;
}

.baptism-landing-hero__content {
    max-width: 680px;
}

.baptism-landing-hero h1 {
    color: #fff;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1;
    margin: 18px 0 22px;
}

.baptism-landing-hero p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
    line-height: 1.65;
    max-width: 620px;
}

.baptism-landing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.baptism-landing-section,
.baptism-create-section {
    padding: 96px 0;
    background: #f6f8f5;
}

.baptism-feature-list {
    display: grid;
    gap: 12px;
}

.baptism-feature-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #243f38;
    font-weight: 700;
}

.baptism-feature-list i {
    color: #b88a32;
}

.baptism-preview-stack {
    position: relative;
    min-height: 420px;
}

.baptism-preview-stack img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(28, 54, 47, 0.18);
}

.baptism-preview-note {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: min(310px, calc(100% - 48px));
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(23, 56, 47, 0.18);
}

.baptism-preview-note strong,
.baptism-preview-note span {
    display: block;
}

.baptism-preview-note strong {
    color: #17382f;
    font-size: 18px;
    margin-bottom: 4px;
}

.baptism-preview-note span {
    color: #66756f;
    line-height: 1.55;
}

.baptism-create-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.6fr);
    gap: 48px;
    align-items: start;
}

.baptism-create-intro {
    padding-top: 24px;
}

.baptism-create-intro h1 {
    color: #17382f;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    margin: 18px 0;
}

.baptism-create-intro p {
    color: #61716b;
    font-size: 19px;
    line-height: 1.7;
    max-width: 560px;
}

.baptism-create-panel {
    background: #fff;
    border: 1px solid #dde8e1;
    border-radius: 8px;
    box-shadow: 0 20px 56px rgba(31, 58, 50, 0.12);
    padding: 30px;
}

.baptism-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.baptism-field {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.baptism-field label,
.baptism-field > span {
    color: #263b35;
    font-weight: 800;
    font-size: 13px;
}

.baptism-input {
    width: 100%;
    height: 48px;
    border: 1px solid #cfddd6;
    border-radius: 6px;
    padding: 0 14px;
    color: #20352f;
    background: #fff;
}

.baptism-input:focus {
    border-color: #b88a32;
    outline: 3px solid rgba(184, 138, 50, 0.16);
}

.baptism-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 6px;
    background: #17382f;
    color: #fff;
    font-weight: 800;
}

.baptism-form-errors {
    color: #b42318;
    font-size: 13px;
}

@media (max-width: 900px) {
    .baptism-landing-hero {
        min-height: 560px;
        padding: 130px 0 70px;
    }

    .baptism-create-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .baptism-landing-hero__actions,
    .baptism-form-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .baptism-create-panel {
        padding: 22px;
    }
}
