@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
    --ink: #17231f;
    --muted: #69756d;
    --paper: #f6f6f1;
    --line: #dfe3dc;
    --accent: #c8e86b;
    --deep: #244c43;
    --white: #fff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

/* ---------- Header ---------- */

.site-header {
    height: 78px;
    padding: 0 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    letter-spacing: -0.4px;
}

.brand strong {
    font-weight: 700;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    /*background: var(--deep);*/
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
}

nav {
    display: flex;
    gap: 28px;
    color: var(--muted);
    font-size: 14px;
}

nav a:hover,
.text-link:hover {
    color: var(--deep);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

/* ---------- Buttons ---------- */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 0;
    border-radius: 2px;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 14px;
}

.button span {
    font-size: 19px;
    line-height: 0;
}

.button-dark {
    background: var(--deep);
    color: var(--white);
}

.button-accent {
    background: var(--accent);
    color: var(--ink);
}

.button-light {
    background: var(--white);
    color: var(--deep);
}

.button.small {
    padding: 9px 14px;
    font-size: 12px;
    gap: 8px;
}

.icon-btn {
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 2px;
    width: 36px;
    height: 36px;
    font-size: 15px;
}

.text-link {
    background: none;
    border: 0;
    padding: 0;
    font-weight: 600;
    color: var(--deep);
}

.full {
    width: 100%;
}

/* ---------- Hero ---------- */

.hero {
    min-height: 570px;
    padding: 94px 7vw 74px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(
        120deg,
        #dbe9cc 0%,
        #f6f6f1 54%,
        #e9ded0 100%
    );
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 11px;
    color: var(--muted);
    font-weight: 700;
    margin: 0 0 18px;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: -3px;
    max-width: 780px;
    margin: 0;
}

.hero h1 em {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.hero-intro {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 500px;
}

/* ---------- Search ---------- */

.search-panel {
    background: var(--white);
    padding: 20px;
    box-shadow: 0 12px 40px #244c4312;
}

.search-tabs {
    display: flex;
    gap: 24px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 18px;
}

.tab {
    background: none;
    border: 0;
    padding: 0 0 12px;
    color: var(--muted);
    font-weight: 600;
}

.tab.active {
    color: var(--deep);
    border-bottom: 2px solid var(--deep);
}

.search-fields {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    gap: 14px;
    align-items: end;
}

label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

input,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--paper);
    padding: 13px;
    color: var(--ink);
    outline: none;
}

input:focus,
select:focus {
    border-color: var(--deep);
}

textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--paper);
    padding: 13px;
    font: inherit;
    resize: vertical;
}

/* ---------- General Sections ---------- */

.section {
    padding: 90px 7vw;
}

.alt-bg {
    background: #eef1e9;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw;
}

.intro-grid h2 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    max-width: 500px;
    margin: 0;
}

.intro-grid > p {
    font-size: 20px;
    line-height: 1.55;
    color: var(--muted);
    align-self: end;
    max-width: 460px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 28px;
}

.section-heading h2 {
    font-size: 30px;
    letter-spacing: -1px;
    margin: 0;
}

.section-heading a {
    font-weight: 600;
    color: var(--deep);
}

/* ---------- Stats ---------- */

.stat-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    align-items: center;
    gap: 24px;
    background: var(--deep);
    color: var(--white);
}

.stat-band div {
    border-left: 1px solid #ffffff38;
    padding-left: 20px;
}

.stat-band strong {
    display: block;
    font-size: 32px;
}

.stat-band span {
    color: #b6c8c0;
    font-size: 13px;
}

/* ---------- Footer ---------- */

.site-footer {
    padding: 46px 7vw;
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 13px;
}

.site-footer .brand {
    color: var(--ink);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
}

/* ---------- Flash Messages ---------- */

.flash {
    margin: 16px 7vw;
    padding: 13px 16px;
    background: var(--white);
    border-left: 3px solid var(--deep);
    font-size: 14px;
}

.flash.error {
    border-color: #be5c48;
}

.flash.success {
    border-color: #6f9d51;
}

/* ---------- Auth ---------- */

.auth-wrap {
    min-height: calc(100vh - 180px);
    display: grid;
    place-items: center;
    padding: 50px 20px;
}

.auth-card {
    width: min(100%, 430px);
    background: var(--white);
    padding: 42px;
    box-shadow: 0 18px 60px #244c4310;
}

.auth-card h1 {
    font-size: 34px;
    letter-spacing: -1px;
    margin: 0 0 30px;
}

.auth-card form {
    display: grid;
    gap: 18px;
}

.auth-card .button {
    margin-top: 8px;
}

.muted {
    color: var(--muted);
    line-height: 1.6;
}

.muted a {
    color: var(--deep);
    font-weight: 600;
}

/* ---------- Empty / Admin Panel ---------- */

.empty-state,
.admin-panel {
    margin-top: 36px;
    padding: 32px;
    border: 1px dashed #bfc9c0;
    color: var(--muted);
}

.admin-panel {
    background: var(--white);
    border: 0;
    max-width: 650px;
}

.admin-panel h2 {
    font-size: 26px;
    margin: 0 0 12px;
}

.admin-panel p:last-child {
    color: var(--muted);
    line-height: 1.6;
}

/* ---------- Badges ---------- */

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    background: var(--white);
    color: var(--deep);
}

.badge-accent {
    background: var(--accent);
    color: var(--ink);
}

.badge-verified {
    background: var(--deep);
    color: var(--white);
}

.badge-purpose {
    background: var(--ink);
    color: var(--white);
}

/* ---------- Grids ---------- */

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.why-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.why-grid strong,
.steps-grid strong {
    display: block;
    font-size: 18px;
    margin: 10px 0 6px;
}

.steps-grid span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    background: var(--deep);
    color: var(--accent);
    border-radius: 50%;
    font-weight: 700;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.testimonial-card {
    background: var(--white);
    padding: 26px;
    margin: 0;
    border-left: 3px solid var(--accent);
}

.testimonial-card footer {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
}

.testimonial-card footer span {
    color: var(--muted);
    font-size: 12px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.blog-card {
    display: block;
    background: var(--white);
}

.blog-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.blog-card div {
    padding: 16px;
}

.blog-card small {
    color: var(--muted);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
}

.blog-card strong {
    display: block;
    margin-top: 6px;
    font-size: 16px;
}

/* ---------- FAQ ---------- */

.faq-list details {
    background: var(--white);
    padding: 16px 20px;
    margin-bottom: 10px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
}

.faq-list p {
    color: var(--muted);
    margin-bottom: 0;
}

/* ---------- Locations ---------- */

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.location-card {
    background: var(--white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-bottom: 3px solid var(--accent);
}

.location-card span {
    color: var(--muted);
    font-size: 12px;
}

/* ---------- Property Card ---------- */

.property-card {
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.pc-media {
    position: relative;
    display: block;
}

.pc-media img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.pc-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.pc-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0;
    background: #ffffffd9;
    font-size: 16px;
}

.pc-favorite.is-favorite {
    color: #be5c48;
}

.pc-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pc-title {
    font-weight: 700;
    font-size: 16px;
}

.pc-location {
    color: var(--muted);
    font-size: 13px;
    margin: 0;
}

.pc-price {
    font-weight: 700;
    font-size: 18px;
    margin: 0;
}

.pc-price small {
    color: var(--muted);
    font-weight: 500;
    font-size: 12px;
}

.pc-meta {
    list-style: none;
    display: flex;
    gap: 12px;
    padding: 0;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    flex-wrap: wrap;
}

.pc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
}

.pc-date {
    color: var(--muted);
    font-size: 11px;
}

.pc-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* ---------- Listing Page ---------- */

.listing-header {
    padding: 50px 7vw 0;
}

.listing-header h1 {
    font-size: 36px;
    letter-spacing: -1px;
    margin: 0 0 8px;
}

.listing-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    padding: 30px 7vw 90px;
    align-items: start;
}

.filter-panel {
    background: var(--white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 20px;
}

.filter-panel fieldset {
    border: 0;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-panel legend {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 0 6px;
}

.checkbox-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.checkbox-row input {
    width: auto;
}

.results-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 18px;
}

.sort-form label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.sort-form select {
    width: auto;
}

.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 36px;
}

.pagination a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: var(--white);
    color: var(--deep);
    font-weight: 600;
}

.pagination a.active {
    background: var(--deep);
    color: var(--white);
}

/* ---------- Property Details ---------- */

.breadcrumb {
    padding: 20px 7vw 0;
    color: var(--muted);
    font-size: 13px;
}

.breadcrumb a {
    color: var(--muted);
}

.property-gallery {
    padding: 16px 7vw 0;
    display: grid;
    gap: 10px;
}

.gallery-main img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.gallery-thumbs img {
    width: 110px;
    height: 78px;
    object-fit: cover;
    cursor: pointer;
    flex: none;
}

.property-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    padding: 30px 7vw 60px;
    align-items: start;
}

.property-main h1 {
    font-size: 32px;
    letter-spacing: -1px;
    margin: 14px 0 4px;
}

.price-lg {
    font-size: 28px;
    font-weight: 700;
    margin: 16px 0;
}

.price-lg small {
    color: var(--muted);
    font-weight: 500;
    font-size: 14px;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 16px;
    background: var(--white);
    padding: 20px;
    margin-bottom: 24px;
}

.spec-grid strong {
    display: block;
    font-size: 16px;
}

.spec-grid span {
    color: var(--muted);
    font-size: 12px;
}

.property-section {
    margin-bottom: 30px;
}

.property-section h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.amenities-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}

.amenities-list li {
    background: var(--white);
    padding: 10px 14px;
    font-size: 13px;
}

.map-embed iframe {
    width: 100%;
    height: 280px;
    border: 0;
    margin-top: 10px;
}

.share-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.share-buttons a {
    color: var(--deep);
    font-weight: 600;
}

.contact-card {
    background: var(--white);
    padding: 24px;
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stacked-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--line);
    padding-top: 14px;
}

.stacked-form summary {
    cursor: pointer;
    font-weight: 600;
    padding-bottom: 4px;
}

.stacked-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

/* ---------- Compare ---------- */

.compare-table-wrap {
    padding: 0 7vw 60px;
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.compare-table th,
.compare-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    font-size: 13px;
}

.compare-table thead img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    display: block;
    margin-bottom: 8px;
}

.compare-table thead th {
    vertical-align: top;
}

/* ---------- Forms ---------- */

.property-form,
.admin-form {
    max-width: 820px;
    padding: 0 7vw 80px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.admin-form {
    padding: 0;
    max-width: none;
}

.property-form fieldset,
.admin-form fieldset {
    border: 0;
    background: var(--white);
    padding: 22px;
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(220px, 1fr)
    );
    gap: 16px;
}

.property-form legend,
.admin-form legend {
    grid-column: 1 / -1;
    font-weight: 700;
    font-size: 16px;
    padding: 0 0 6px;
}

/* ---------- Customer Dashboard ---------- */

.dash-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 30px;
    padding: 40px 7vw 80px;
}

.dash-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dash-nav a {
    padding: 10px 12px;
    color: var(--muted);
    font-size: 14px;
}

.dash-nav a.active,
.dash-nav a:hover {
    background: var(--white);
    color: var(--deep);
    font-weight: 600;
}

.dash-panel h1 {
    font-size: 28px;
    margin: 0 0 20px;
}

/* ---------- Admin ---------- */

.admin-body {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 250px;
    background: var(--deep);
    color: var(--white);
    padding: 34px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-sidebar .brand {
    margin-bottom: 60px;
}

/*.admin-sidebar .brand-mark {*/
/*    background: var(--accent);*/
/*    color: var(--deep);*/
/*}*/

.admin-sidebar .eyebrow {
    color: #a8bdb4;
    margin-top: 0;
}

.side-link {
    padding: 12px;
    color: #b8cac3;
    font-size: 14px;
    border-left: 2px solid transparent;
}

.side-link.active,
.side-link:hover {
    color: var(--accent);
    border-left-color: var(--accent);
}

.admin-main {
    flex: 1;
    padding: 30px 5vw;
    background: #f8f9f5;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
    margin-bottom: 60px;
    font-size: 13px;
}

.admin-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 40px;
}

.admin-heading h1 {
    margin: 0;
    font-size: 38px;
    letter-spacing: -1.5px;
}

/* ---------- KPI ---------- */

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.kpi {
    background: var(--white);
    padding: 24px;
    border-top: 3px solid var(--accent);
}

.kpi span,
.kpi small {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.kpi strong {
    display: block;
    font-size: 40px;
    margin: 20px 0 10px;
}

/* ---------- Admin Tables ---------- */

.table-wrap {
    overflow-x: auto;
    background: var(--white);
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.table th,
.table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    white-space: nowrap;
}

.table th {
    color: var(--muted);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.4px;
}

.table img.thumb {
    width: 56px;
    height: 40px;
    object-fit: cover;
}

/* ---------- Status ---------- */

.status-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    background: #eef1e9;
    color: var(--deep);
}

.status-pill.pending {
    background: #fbe9d0;
    color: #9a5b12;
}

.status-pill.rejected,
.status-pill.disabled,
.status-pill.cancelled {
    background: #fbe0dc;
    color: #8a2f21;
}

.status-pill.published,
.status-pill.active,
.status-pill.approved,
.status-pill.confirmed,
.status-pill.completed,
.status-pill.converted {
    background: #dcefd9;
    color: #2f6b28;
}

/* ---------- Admin Filters ---------- */

.filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    background: var(--white);
    padding: 16px;
}

.filter-bar label {
    font-size: 11px;
}

.filter-bar input,
.filter-bar select {
    min-width: 160px;
}

.inline-form {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.inline-form select,
.inline-form input {
    padding: 6px 8px;
    min-width: auto;
}

/* ---------- Charts ---------- */

.chart-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.chart-grid .admin-panel {
    max-width: none;
}

/* ---------- Image Manager ---------- */

.image-manager {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.image-manager figure {
    margin: 0;
    position: relative;
    width: 140px;
}

.image-manager img {
    width: 140px;
    height: 100px;
    object-fit: cover;
}

.image-manager figcaption {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    margin-top: 4px;
}

/* ---------- Tags ---------- */

.tag-checklist {
    display: grid;
    grid-template-columns: repeat(
        auto-fill,
        minmax(160px, 1fr)
    );
    gap: 8px;
    grid-column: 1 / -1;
}

/* ---------- Mobile Navigation ---------- */

.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    justify-content: space-around;
    padding: 8px 0;
    z-index: 50;
}

.mobile-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 10px;
    color: var(--muted);
}

.mobile-nav a span {
    font-size: 18px;
}

/* ---------- Tablet / Mobile ---------- */

@media (max-width: 900px) {
    .listing-layout,
    .property-layout,
    .dash-layout {
        grid-template-columns: 1fr;
    }

    .chart-grid {
        grid-template-columns: 1fr;
    }

    .why-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    body {
        padding-bottom: 64px;
    }

    .mobile-nav {
        display: flex;
    }
}

@media (max-width: 800px) {
    .site-header {
        padding: 0 20px;
    }

    .site-header nav,
    .header-actions .text-link {
        display: none;
    }

    .hero {
        padding: 65px 20px 40px;
        min-height: 600px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .search-fields {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 20px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .intro-grid h2 {
        font-size: 34px;
    }

    .stat-band {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-band .button {
        grid-column: 1 / -1;
    }

    .site-footer {
        padding: 36px 20px;
        gap: 20px;
        flex-direction: column;
    }

    .admin-body {
        display: block;
    }

    .admin-sidebar {
        width: 100%;
        padding: 20px;
        min-height: auto;
    }

    .admin-sidebar .brand {
        margin-bottom: 20px;
    }

    .admin-sidebar .side-link {
        display: none;
    }

    .admin-main {
        padding: 20px;
    }

    .admin-topbar {
        margin-bottom: 35px;
    }

    .admin-heading {
        align-items: start;
        gap: 20px;
        flex-direction: column;
    }

    .kpi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .auth-card {
        padding: 30px;
    }
}
