@page {
    size: A4 portrait;
    margin: 0;
}

#printable-report {
    display: none;
    background: #ffffff;
    color: #111214;
    font-family: 'DM Sans', sans-serif;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}

@media print {
    html, body {
        width: 210mm !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #ffffff !important;
    }

    body > * {
        display: none !important;
    }

    #printable-report {
        display: block !important;
        width: 210mm !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

.report-page {
    width: 210mm;
    min-height: 297mm;
    padding: 15mm 13mm;
    box-sizing: border-box;
    background:
        radial-gradient(circle at 50% 4%, rgba(198, 90, 90, 0.035), transparent 28%),
        #ffffff;
}

.report-header {
    text-align: center;
    padding-bottom: 5mm;
    border-bottom: 1px solid #D8D8D3;
    margin-bottom: 5.5mm;
}

.report-logo {
    width: 42mm;
    height: auto;
    margin: 0 auto 3mm;
}

.report-title {
    font-family: 'Playfair Display', serif;
    font-size: 28pt;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    margin: 0;
}

.report-title-rule {
    width: 8mm;
    height: 1px;
    background: #D8D8D3;
    margin: 3mm auto 5mm;
}

.report-info-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
    gap: 0;
}

.report-info-item {
    min-height: 12mm;
    padding: 0 8mm;
    border-left: 1px solid #D8D8D3;
}

.report-info-item:first-child {
    border-left: none;
    padding-left: 0;
}

.report-info-item:last-child {
    padding-right: 0;
}

.report-info-item label {
    display: block;
    color: #3f4144;
    font-size: 8.5pt;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 2.5mm;
}

.report-info-item p {
    color: #111214;
    font-size: 11.5pt;
    line-height: 1.35;
    margin: 0;
}

.report-section {
    margin: 0 0 5mm;
    padding-bottom: 5mm;
    border-bottom: 1px solid #D8D8D3;
    break-inside: avoid;
}

.report-section:last-of-type {
    break-inside: auto;
    margin-bottom: 3mm;
    padding-bottom: 4mm;
}

.report-section-title {
    display: flex;
    align-items: baseline;
    gap: 2.5mm;
    font-family: 'DM Sans', sans-serif;
    font-size: 10pt;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    color: #111214;
    text-transform: uppercase;
    margin: 0 0 5mm;
}

.report-section-title span {
    color: #D94F4F;
}

.report-section-title em {
    color: #111214;
    font-style: normal;
    letter-spacing: 0.06em;
}

.report-list {
    display: grid;
    gap: 4mm;
    align-items: start;
}

.report-list-1 {
    grid-template-columns: 1fr;
}

.report-list-2 {
    grid-template-columns: 1fr 1fr;
}

.report-list-3 {
    grid-template-columns: repeat(3, 1fr);
}

.report-list-4 {
    grid-template-columns: repeat(4, 1fr);
}

.report-item-card {
    display: grid;
    grid-template-columns: minmax(25mm, 31mm) 1fr;
    gap: 4mm;
    align-items: center;
    min-width: 0;
    break-inside: avoid;
}

.report-list-4 .report-item-card {
    display: block;
}

.report-list-2 .report-item-card + .report-item-card,
.report-list-3 .report-item-card + .report-item-card {
    border-left: 1px solid #D8D8D3;
    padding-left: 4mm;
}

.report-item-img {
    width: 31mm;
    height: 23mm;
    overflow: hidden;
    background: #F3F1ED;
    border-radius: 2px;
}

.report-list-4 .report-item-img {
    width: 100%;
    height: 26mm;
    margin-bottom: 3mm;
}

.report-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.report-item-details h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 10.2pt;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 2.4mm;
    color: #111214;
}

.report-item-details p {
    color: #4f5256;
    font-size: 9.2pt;
    line-height: 1.35;
    margin: 0 0 1.8mm;
}

.report-spaces-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6mm;
    align-items: center;
}

.report-space-item {
    display: grid;
    grid-template-columns: 14mm 1fr;
    gap: 4mm;
    align-items: center;
}

.report-space-icon {
    width: 14mm;
    height: 14mm;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FCEEEE;
    color: #D94F4F;
}

.report-space-icon svg {
    width: 7mm;
    height: 7mm;
}

.report-space-item h4 {
    font-size: 10pt;
    line-height: 1.2;
    margin: 0 0 2mm;
}

.report-space-item p {
    color: #6B6A65;
    font-size: 9.5pt;
    margin: 0;
}

.report-footer {
    text-align: center;
    padding-top: 1mm;
}

.report-footer p {
    color: #4f5256;
    font-size: 11pt;
    line-height: 1.45;
    margin: 0 0 1.5mm;
}
