.report-page {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px 90px 28px;
}

.report-hero {
    padding: 60px 0 34px 0;
}

.report-hero-inner {
    max-width: 760px;
}

.report-hero h1 {
    margin: 0 0 16px 0;
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1.02;
}

.report-intro {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 720px;
}

.report-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: start;
}

.report-form-card,
.report-map-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
}

.card-head {
    margin-bottom: 22px;
}

.card-head h2 {
    margin: 0 0 8px 0;
    font-size: 1.35rem;
}

.card-head p {
    margin: 0;
    color: var(--muted);
}

.report-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-block {
    padding-top: 6px;
    border-top: 1px solid var(--line);
}

.form-block:first-child {
    padding-top: 0;
    border-top: none;
}

.block-label {
    margin: 0 0 14px 0;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.form-group {
    margin-bottom: 14px;
    position: relative;
}

label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
}

input,
select,
textarea,
button {
    width: 100%;
    font-size: 16px;
    font-family: inherit;
}

input,
select,
textarea {
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 10px;
    background: #fff;
    color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.note {
    margin-top: 6px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.35;
}

.extra-space {
    margin-top: 10px;
}

.button-stack {
    display: grid;
    gap: 12px;
    margin-top: 6px;
}

.btn-dark {
    background: var(--dark);
    color: white;
}

.btn-dark:hover {
    background: #333333;
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border: 1px solid rgba(0, 0, 0, 0.16);
}

.btn-outline-dark:hover {
    background: #f4f4f1;
}

#map {
    width: 100%;
    height: 560px;
    border-radius: 14px;
    border: 1px solid var(--line);
    overflow: hidden;
}

.map-actions {
    margin-top: 14px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.status-box {
    margin-top: 14px;
    background: #f7f7f4;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--muted);
}

.success-box {
    margin-top: 12px;
    background: #edf7ef;
    border: 1px solid #d3e6d6;
    color: #2d6a31;
    border-radius: 12px;
    padding: 12px 14px;
    display: none;
}

.result-box {
    margin-top: 14px;
    display: none;
}

.result-box h3 {
    margin: 0 0 8px 0;
    font-size: 1rem;
}

pre {
    margin: 0;
    background: #111;
    color: #a7f3d0;
    padding: 14px;
    border-radius: 12px;
    overflow-x: auto;
    white-space: pre-wrap;
}

.map-note {
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.92rem;
}

.suggestions {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    max-height: 230px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.10);
}

.suggestion-item {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #efefef;
    line-height: 1.35;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: #f6f6f3;
}

.photo-preview-wrap {
    margin-top: 10px;
}

.preview-image {
    max-width: 100%;
    max-height: 220px;
    display: none;
    border-radius: 12px;
    border: 1px solid var(--line);
}

@media (max-width: 1000px) {
    .report-layout {
        grid-template-columns: 1fr;
    }

    #map {
        height: 460px;
    }
}

@media (max-width: 760px) {
    .report-page {
        padding: 0 18px 70px 18px;
    }

    .report-form-card,
    .report-map-card {
        padding: 20px;
    }

    #map {
        height: 360px;
    }
}