@import url('/css/variables.css');
@import url('/css/layout.css');
@import url('/css/navigation.css');
@import url('/css/cards.css');
@import url('/css/buttons.css');
@import url('/css/forms.css');
@import url('/css/dashboard.css');
@import url('/css/places.css');
@import url('/css/utilities.css');
@import url('/css/growthhub.css');

/* Compact button used on Explore place cards */

.explore-experience-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    min-width: 135px;
    height: 34px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    align-self: flex-start;
    margin-top: 10px;
}

/* =========================================================
   SIDEBAR ACCOUNT CONTROLS
========================================================= */

.sidebar-logout-form {
    margin: 0;
    padding: 0;
}

.sidebar-logout-button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    border-radius: 10px;
}

    .sidebar-logout-button:hover {
        background: rgba(255, 255, 255, 0.08);
        color: white;
    }

.topbar-account {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-user {
    padding: 7px 13px;
    border: 1px solid var(--hp-grey-200);
    border-radius: 999px;
    background: var(--hp-cream);
    color: var(--hp-forest);
    font-size: 12px;
    font-weight: 600;
}

/* =========================================================
   IDENTITY PAGES
========================================================= */

.identity-body {
    min-height: 100vh;
    margin: 0;
    background: radial-gradient( circle at top left, rgba(184, 144, 61, 0.12), transparent 34% ), linear-gradient( 135deg, #eef3ed, #f8f5ec );
    color: var(--hp-forest);
    font-family: "Inter", sans-serif;
}

.identity-site-header {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 40px;
    border-bottom: 1px solid rgba(15, 62, 48, 0.10);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
}

.identity-site-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

    .identity-site-brand img {
        display: block;
        width: 118px;
        height: 58px;
        object-fit: contain;
    }

.identity-return-link {
    color: var(--hp-forest);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

    .identity-return-link:hover {
        color: var(--hp-gold);
    }

.identity-main {
    min-height: calc(100vh - 78px);
}

.identity-page {
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}

.identity-card {
    width: 100%;
    max-width: 590px;
    padding: 38px;
    border: 1px solid rgba(15, 62, 48, 0.08);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 60px rgba(15, 62, 48, 0.13);
}

.identity-brand {
    margin-bottom: 28px;
}

.identity-brand-centred {
    text-align: center;
}

.identity-brand h1 {
    margin: 0 0 9px;
    color: var(--hp-forest);
    font-family: "Playfair Display", serif;
    font-size: 38px;
    line-height: 1.08;
}

.identity-brand p {
    max-width: 460px;
    margin: 0 auto;
    color: var(--hp-grey-600);
    font-size: 14px;
    line-height: 1.55;
}

.identity-form {
    display: grid;
    gap: 18px;
}

.identity-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.identity-validation:empty {
    display: none;
}

.identity-field-help {
    margin: 7px 0 0;
    color: var(--hp-grey-600);
    font-size: 11px;
    line-height: 1.4;
}

.identity-terms {
    color: var(--hp-grey-600);
    font-size: 12px;
    line-height: 1.5;
}

.identity-submit-button {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
}

.identity-divider {
    position: relative;
    margin: 27px 0 20px;
    text-align: center;
}

    .identity-divider::before {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        left: 0;
        height: 1px;
        background: var(--hp-grey-200);
    }

    .identity-divider span {
        position: relative;
        padding: 0 12px;
        background: white;
        color: var(--hp-grey-600);
        font-size: 12px;
    }

.identity-external-logins {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.identity-footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 25px;
    color: var(--hp-grey-600);
    font-size: 13px;
}

    .identity-footer a {
        color: var(--hp-gold);
        font-weight: 700;
        text-decoration: none;
    }

        .identity-footer a:hover {
            text-decoration: underline;
        }

@media (max-width: 650px) {
    .identity-site-header {
        min-height: 68px;
        padding: 9px 20px;
    }

    .identity-site-brand img {
        width: 96px;
        height: 48px;
    }

    .identity-return-link {
        font-size: 11px;
    }

    .identity-page {
        min-height: calc(100vh - 68px);
        padding: 28px 16px;
    }

    .identity-card {
        padding: 26px 22px;
        border-radius: 20px;
    }

    .identity-brand h1 {
        font-size: 31px;
    }

    .identity-form-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   HOST ONBOARDING
========================================================= */

.host-onboarding-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    gap: 32px;
    margin-bottom: 24px;
    padding: 38px;
    border-radius: 24px;
    background: var(--hp-forest);
    color: white;
    box-shadow: var(--hp-shadow-small);
}

.host-onboarding-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #d5bd7d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.host-onboarding-hero h1 {
    margin: 0 0 12px;
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 42px;
    line-height: 1.08;
}

.host-onboarding-hero-content > p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.65;
}

.host-onboarding-summary {
    display: grid;
    gap: 10px;
}

    .host-onboarding-summary > div {
        display: grid;
        grid-template-columns: 34px minmax(0, 1fr);
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.07);
    }

    .host-onboarding-summary strong {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #d5bd7d;
        color: var(--hp-forest);
    }

    .host-onboarding-summary span {
        color: white;
        font-size: 13px;
        font-weight: 600;
    }

.host-onboarding-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
    gap: 24px;
    align-items: start;
}

.host-onboarding-form {
    display: grid;
    gap: 20px;
    margin-top: 22px;
}

.hp-form-help {
    margin: 7px 0 0;
    color: var(--hp-grey-600);
    font-size: 11px;
    line-height: 1.45;
}

.host-terms-box {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 13px;
    padding: 17px;
    border: 1px solid var(--hp-grey-200);
    border-radius: 15px;
    background: var(--hp-cream);
    cursor: pointer;
}

    .host-terms-box input {
        width: 18px;
        height: 18px;
        margin-top: 2px;
        accent-color: var(--hp-forest);
    }

    .host-terms-box strong {
        display: block;
        margin-bottom: 5px;
        color: var(--hp-forest);
    }

    .host-terms-box small {
        display: block;
        color: var(--hp-grey-600);
        line-height: 1.5;
    }

.host-onboarding-benefits {
    display: grid;
    gap: 20px;
}

.host-benefit-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
}

    .host-benefit-item > span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 13px;
        background: var(--hp-cream);
        font-size: 20px;
    }

    .host-benefit-item strong {
        display: block;
        margin-bottom: 4px;
        color: var(--hp-forest);
    }

    .host-benefit-item p {
        margin: 0;
        color: var(--hp-grey-600);
        font-size: 12px;
        line-height: 1.5;
    }

@media (max-width: 950px) {
    .host-onboarding-hero,
    .host-onboarding-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .host-onboarding-hero {
        padding: 26px 22px;
    }

        .host-onboarding-hero h1 {
            font-size: 34px;
        }
}

/* =========================================================
   MY PROFILE
========================================================= */

.profile-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.profile-eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--hp-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.profile-member-badge {
    padding: 9px 14px;
    border: 1px solid var(--hp-grey-200);
    border-radius: 999px;
    background: white;
    color: var(--hp-grey-600);
    font-size: 12px;
    font-weight: 600;
}

.profile-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
    gap: 24px;
    align-items: start;
}

.profile-main-card {
    min-width: 0;
}

.profile-form {
    display: grid;
    gap: 20px;
    margin-top: 22px;
}

.profile-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.profile-section-divider {
    height: 1px;
    margin: 8px 0;
    background: var(--hp-grey-200);
}

.profile-sidebar {
    display: grid;
    gap: 24px;
}

.profile-status-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.profile-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--hp-forest);
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 21px;
    font-weight: 700;
}

.profile-status-heading h2 {
    margin: 0 0 4px;
    color: var(--hp-forest);
    font-family: "Playfair Display", serif;
    font-size: 23px;
}

.profile-status-heading p {
    margin: 0;
    color: var(--hp-grey-600);
    font-size: 12px;
}

.profile-status-list,
.profile-payment-checks {
    display: grid;
}

    .profile-status-list > div,
    .profile-payment-checks > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        padding: 13px 0;
        border-bottom: 1px solid var(--hp-grey-200);
    }

    .profile-status-list span,
    .profile-payment-checks span {
        color: var(--hp-grey-600);
        font-size: 12px;
    }

    .profile-status-list strong,
    .profile-payment-checks strong {
        color: var(--hp-forest);
        font-size: 12px;
    }

.profile-payment-status {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
    margin: 20px 0;
    padding: 16px;
    border-radius: 15px;
}

    .profile-payment-status > span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        font-weight: 800;
    }

    .profile-payment-status strong {
        display: block;
        margin-bottom: 4px;
    }

    .profile-payment-status p {
        margin: 0;
        font-size: 12px;
        line-height: 1.5;
    }

.profile-payment-ready {
    background: #e4f4e7;
    color: #256237;
}

    .profile-payment-ready > span {
        background: #c8e8cf;
    }

.profile-payment-pending {
    background: #fff3d8;
    color: #805d0c;
}

    .profile-payment-pending > span {
        background: #f2dda9;
    }

.profile-payment-not-connected {
    background: var(--hp-cream);
    color: var(--hp-forest);
}

    .profile-payment-not-connected > span {
        background: white;
        box-shadow: var(--hp-shadow-small);
    }

.profile-stripe-button {
    width: 100%;
    justify-content: center;
    margin-bottom: 8px;
}

    .profile-stripe-button:disabled {
        cursor: not-allowed;
        opacity: 0.65;
    }

.profile-coming-soon {
    margin: 0 0 16px;
    color: var(--hp-grey-600);
    font-size: 11px;
    text-align: center;
}

.profile-become-host-card {
    text-align: center;
}

.profile-host-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: var(--hp-cream);
    font-size: 25px;
}

.profile-become-host-card p {
    margin: 10px 0 20px;
    color: var(--hp-grey-600);
    font-size: 13px;
    line-height: 1.6;
}

.hp-alert {
    margin-bottom: 20px;
    padding: 14px 17px;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 600;
}

.hp-alert-success {
    border: 1px solid #bedfc6;
    background: #e4f4e7;
    color: #256237;
}

@media (max-width: 980px) {
    .profile-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .profile-page-header {
        flex-direction: column;
    }

    .profile-form-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   PLACE PUBLISHING READINESS
========================================================= */

.place-publishing-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.place-ready-badge {
    border: 1px solid #c6dfcc;
    background: #e5f3e8;
    color: #28623a;
}

.place-publishing-summary {
    margin-top: 18px;
    padding: 16px;
    border: 1px solid var(--hp-grey-200);
    border-radius: 16px;
    background: var(--hp-cream);
}

.place-publishing-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

    .place-publishing-heading > div {
        display: grid;
        gap: 3px;
    }

    .place-publishing-heading strong {
        color: var(--hp-forest);
        font-size: 14px;
    }

    .place-publishing-heading span {
        color: var(--hp-grey-600);
        font-size: 11px;
    }

.place-setup-action {
    flex: 0 0 auto;
    color: var(--hp-gold) !important;
    font-size: 12px !important;
    font-weight: 700;
}

.place-progress-track {
    overflow: hidden;
    width: 100%;
    height: 8px;
    margin: 13px 0;
    border-radius: 999px;
    background: rgba(15, 62, 48, 0.10);
}

.place-progress-fill {
    height: 100%;
    border-radius: inherit;
    background: var(--hp-forest);
    transition: width 0.3s ease;
}

.place-requirement-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.place-requirement-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
}

    .place-requirement-chip i {
        font-style: normal;
        font-weight: 800;
    }

    .place-requirement-chip.complete {
        background: #e4f2e7;
        color: #28623a;
    }

    .place-requirement-chip.incomplete {
        border: 1px solid #e1d8c6;
        background: white;
        color: var(--hp-grey-600);
    }

.place-next-step {
    margin: 13px 0 0;
    color: var(--hp-grey-600);
    font-size: 11px;
    line-height: 1.45;
}

    .place-next-step strong {
        color: var(--hp-forest);
    }

@media (max-width: 750px) {
    .place-publishing-heading {
        flex-direction: column;
        gap: 8px;
    }

    .place-setup-action {
        align-self: flex-start;
    }
}

/* =========================================================
   EDIT PLACE PUBLISHING NOTE
========================================================= */

.place-edit-publishing-note {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
    padding: 16px;
    border: 1px solid var(--hp-grey-200);
    border-radius: 15px;
    background: var(--hp-cream);
}

    .place-edit-publishing-note > span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: white;
        box-shadow: var(--hp-shadow-small);
    }

    .place-edit-publishing-note strong {
        display: block;
        margin-bottom: 5px;
        color: var(--hp-forest);
    }

    .place-edit-publishing-note p {
        margin: 0;
        color: var(--hp-grey-600);
        font-size: 12px;
        line-height: 1.5;
    }

/* =========================================================
   PLACE PUBLISHING PANEL
========================================================= */

.place-header-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.place-publishing-panel {
    margin-bottom: 24px;
}

.place-publishing-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.place-publishing-percentage {
    color: var(--hp-forest);
    font-family: "Playfair Display", serif;
    font-size: 34px;
}

.place-publishing-requirements {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.place-publishing-requirement {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    padding: 13px;
    border: 1px solid var(--hp-grey-200);
    border-radius: 14px;
}

    .place-publishing-requirement.complete {
        background: #e8f3ea;
    }

    .place-publishing-requirement.incomplete {
        background: var(--hp-cream);
    }

.place-publishing-requirement-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    color: var(--hp-forest);
    font-weight: 800;
}

.place-publishing-requirement strong {
    display: block;
    color: var(--hp-forest);
    font-size: 12px;
}

.place-publishing-requirement p {
    margin: 4px 0 0;
    color: var(--hp-grey-600);
    font-size: 10px;
    line-height: 1.4;
}

.place-publishing-requirement a {
    grid-column: 2;
    color: var(--hp-gold);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.place-publishing-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--hp-grey-200);
}

    .place-publishing-footer p {
        margin: 5px 0 0;
        color: var(--hp-grey-600);
        font-size: 12px;
    }

.place-publishing-ready,
.place-publishing-live {
    color: #28623a;
}

.hp-alert-error {
    border: 1px solid #edc1bd;
    background: #fbe8e6;
    color: #8b3028;
}

@media (max-width: 1050px) {
    .place-publishing-requirements {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .place-publishing-panel-header,
    .place-publishing-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .place-publishing-requirements {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   IDENTITY LOGIN
   ========================================================= */

.identity-page {
    width: min(1180px, calc(100% - 40px));
    margin: 56px auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
    gap: 32px;
    align-items: stretch;
}

.identity-card,
.identity-feature-panel {
    border-radius: 28px;
    padding: 42px;
    box-shadow: 0 18px 50px rgba(16, 58, 44, 0.1);
}

.identity-card {
    background: #ffffff;
}

.identity-card-header {
    margin-bottom: 30px;
}

    .identity-card-header h1,
    .identity-feature-panel h2 {
        margin: 8px 0 12px;
        font-family: "Playfair Display", serif;
        color: var(--hp-green-dark, #123f31);
    }

    .identity-card-header h1 {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .identity-card-header p,
    .identity-feature-panel > p {
        margin: 0;
        color: #66716c;
        line-height: 1.7;
    }

.identity-eyebrow {
    color: #b58b3f;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.identity-form {
    display: grid;
    gap: 20px;
}

.identity-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.identity-inline-link,
.identity-support-links a {
    color: #235943;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
}

    .identity-inline-link:hover,
    .identity-support-links a:hover {
        text-decoration: underline;
    }

.identity-password-wrapper {
    position: relative;
}

    .identity-password-wrapper .hp-input {
        padding-right: 76px;
    }

.identity-password-toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #235943;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
}

.identity-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #46534d;
    cursor: pointer;
}

    .identity-checkbox input {
        width: 18px;
        height: 18px;
        accent-color: #174c39;
    }

.identity-submit-button,
.identity-secondary-button {
    width: 100%;
    justify-content: center;
}

.identity-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 28px 0 18px;
    color: #8a938f;
    font-size: 0.85rem;
}

    .identity-divider::before,
    .identity-divider::after {
        content: "";
        height: 1px;
        flex: 1;
        background: #e4e7e4;
    }

.identity-support-links {
    margin-top: 18px;
    text-align: center;
}

.identity-feature-panel {
    background: linear-gradient( 145deg, rgba(15, 58, 43, 0.98), rgba(27, 82, 61, 0.96) );
    color: #ffffff;
}

    .identity-feature-panel h2 {
        color: #ffffff;
        font-size: clamp(2rem, 3.5vw, 3rem);
    }

    .identity-feature-panel > p {
        color: rgba(255, 255, 255, 0.76);
    }

.identity-feature-list {
    margin-top: 36px;
    display: grid;
    gap: 24px;
}

    .identity-feature-list > div {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 16px;
        align-items: start;
    }

        .identity-feature-list > div > span {
            width: 44px;
            height: 44px;
            display: grid;
            place-items: center;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.12);
            font-size: 1.25rem;
        }

    .identity-feature-list strong {
        display: block;
        margin-bottom: 5px;
    }

    .identity-feature-list p {
        margin: 0;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.55;
        font-size: 0.92rem;
    }

.identity-validation-summary:empty {
    display: none;
}

@media (max-width: 900px) {
    .identity-page {
        grid-template-columns: 1fr;
        margin: 30px auto;
    }

    .identity-feature-panel {
        order: -1;
    }
}

@media (max-width: 600px) {
    .identity-page {
        width: min(100% - 24px, 1180px);
    }

    .identity-card,
    .identity-feature-panel {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .identity-label-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }
}

/* =========================================================
   CONVERSATIONS
========================================================= */

.explore-host-question-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

    .explore-host-question-card p {
        margin-bottom: 0;
    }

.conversation-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.7fr);
    gap: 24px;
    align-items: start;
}

.conversation-thread {
    display: grid;
    gap: 16px;
}

.conversation-message {
    max-width: 82%;
    padding: 16px 18px;
    border-radius: 18px;
}

    .conversation-message.guest {
        justify-self: end;
        background: var(--hp-forest);
        color: white;
        border-bottom-right-radius: 5px;
    }

    .conversation-message.host {
        justify-self: start;
        background: var(--hp-cream);
        color: var(--hp-grey-800);
        border-bottom-left-radius: 5px;
    }

.conversation-message-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 8px;
    font-size: 12px;
}

    .conversation-message-header span {
        opacity: 0.72;
    }

.conversation-message p {
    margin: 0;
    white-space: pre-wrap;
    line-height: 1.6;
}

.conversation-reply-form {
    margin-top: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--hp-grey-200);
}

@media (max-width: 800px) {
    .explore-host-question-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .conversation-page-grid {
        grid-template-columns: 1fr;
    }

    .conversation-message {
        max-width: 94%;
    }
}

/* =========================================================
   HOST CONVERSATION INBOX
========================================================= */

.host-conversation-header {
    margin-bottom: 28px;
}

.host-conversation-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.host-conversation-summary-card {
    padding: 20px;
    border: 1px solid var(--hp-grey-200);
    border-radius: 18px;
    background: #ffffff;
    color: var(--hp-forest);
    text-decoration: none;
    box-shadow: var(--hp-shadow-sm);
}

    .host-conversation-summary-card.active {
        background: var(--hp-forest);
        color: #ffffff;
    }

    .host-conversation-summary-card span {
        display: block;
        margin-bottom: 8px;
        font-size: 13px;
    }

    .host-conversation-summary-card strong {
        display: block;
        font-size: 28px;
    }

.host-conversation-list {
    display: grid;
    gap: 16px;
}

.host-conversation-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px;
    border: 1px solid var(--hp-grey-200);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--hp-shadow-sm);
}

    .host-conversation-card.unread {
        border-left: 5px solid var(--hp-gold);
    }

.host-conversation-card-main {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
}

.host-conversation-avatar {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    border-radius: 50%;
    background: var(--hp-forest);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.host-conversation-card-content {
    min-width: 0;
}

.host-conversation-card-heading {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

    .host-conversation-card-heading h2 {
        margin: 3px 0 0;
        font-family: "Playfair Display", serif;
        font-size: 22px;
        color: var(--hp-forest);
    }

.host-conversation-place {
    color: var(--hp-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.host-conversation-card-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.conversation-unread-badge {
    padding: 5px 9px;
    border-radius: 999px;
    background: #fff2cc;
    color: #765300;
    font-size: 11px;
    font-weight: 700;
}

.host-conversation-guest {
    margin: 8px 0 4px;
    color: var(--hp-grey-600);
    font-size: 13px;
}

.host-conversation-preview {
    max-width: 750px;
    margin: 0 0 6px;
    overflow: hidden;
    color: var(--hp-grey-700);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.host-conversation-time {
    color: var(--hp-grey-500);
    font-size: 11px;
}

.conversation-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .conversation-header-actions form {
        margin: 0;
    }

@media (max-width: 900px) {
    .host-conversation-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .host-conversation-card {
        align-items: stretch;
        flex-direction: column;
    }

        .host-conversation-card > .hp-button {
            width: 100%;
            justify-content: center;
        }
}

@media (max-width: 600px) {
    .host-conversation-summary {
        grid-template-columns: 1fr;
    }

    .host-conversation-card-heading,
    .conversation-header-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ====================================================
   APPLICATION FOOTER
==================================================== */

.content-area {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

.app-footer {
    margin-top: auto;
    border-top: 1px solid #e4ded3;
    background: #faf8f4;
}

.app-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 18px 28px;
    font-size: 13px;
    color: #68736e;
}

.app-footer-brand {
    white-space: nowrap;
}

.app-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

    .app-footer-links a {
        color: #466056;
        text-decoration: none;
    }

        .app-footer-links a:hover {
            color: #153f31;
            text-decoration: underline;
        }

/* =========================================
   ADMIN CASE FILTERS
========================================= */

.admin-case-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 20px;
}

.admin-case-filter {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    border: 1px solid #e3e0d8;
    border-radius: 999px;
    background: #f7f4ed;
    color: #173f32;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

    .admin-case-filter:hover {
        background: #eee9de;
        color: #173f32;
        text-decoration: none;
    }

    .admin-case-filter.active {
        background: #173f32;
        border-color: #173f32;
        color: #ffffff;
    }

.admin-case-filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(23, 63, 50, 0.10);
    font-size: 12px;
    font-weight: 700;
}

.admin-case-filter.active .admin-case-filter-count {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.host-booking-status-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid #e4dfd3;
    border-radius: 999px;
    background: #f7f4ec;
    color: #153f32;
    font-size: 0.875rem;
    font-weight: 600;
}

    .host-booking-status-info span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 22px;
        height: 22px;
        padding: 0 6px;
        border-radius: 999px;
        background: #e8ede7;
        font-size: 0.75rem;
    }

.hp-svg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #7ca63c;
    line-height: 1;
}

    .hp-svg-icon svg {
        display: block;
        width: 100%;
        height: 100%;
    }

.facility-icon .hp-svg-icon {
    width: 28px;
    height: 28px;
}

.experience-icon .hp-svg-icon {
    width: 28px;
    height: 28px;
}

.experience-type-icon .hp-svg-icon {
    width: 28px;
    height: 28px;
}

/* =========================================================
   EXPLORE SEARCH
   ========================================================= */

.explore-search {
    display: grid;
    grid-template-columns: minmax(220px, 1.6fr) minmax(120px, 0.7fr) minmax(160px, 1fr) minmax(160px, 1fr) auto;
    gap: 10px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
}

    .explore-search input,
    .explore-search select,
    .explore-search button {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .explore-search input,
    .explore-search select {
        height: 52px;
    }

    .explore-search button {
        min-height: 52px;
        white-space: nowrap;
    }


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {
    .explore-search {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .explore-search input {
            grid-column: 1 / -1;
        }

        .explore-search button {
            grid-column: 1 / -1;
        }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {
    .explore-hero {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

        .explore-hero > div {
            width: 100%;
            max-width: 100%;
            min-width: 0;
        }

    .explore-search {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 12px;
    }

        .explore-search input,
        .explore-search select,
        .explore-search button {
            display: block;
            width: 100%;
            max-width: 100%;
            min-width: 0;
            margin: 0;
        }

        .explore-search button {
            min-height: 52px;
        }
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Fix mobile explore search control shapes */
@media (max-width: 640px) {
    .explore-search input,
    .explore-search select,
    .explore-search button {
        height: 58px;
        min-height: 58px;
        border-radius: 16px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .explore-search select {
        appearance: auto;
        background-color: #ffffff;
    }

    .explore-search input {
        border-radius: 30px;
    }

    .explore-search button {
        border-radius: 30px;
    }
}

/* =========================================================
   MOBILE HEADER AND NAVIGATION
   ========================================================= */

.mobile-header {
    display: none;
}

@media (max-width: 768px) {
    .mobile-header {
        position: sticky;
        top: 0;
        z-index: 1100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 76px;
        padding: 8px 18px;
        background: var(--hp-forest);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-sizing: border-box;
    }

    .mobile-header-brand {
        display: flex;
        align-items: center;
        height: 100%;
    }

        .mobile-header-brand img {
            display: block;
            width: 125px;
            height: 58px;
            object-fit: contain;
        }

    .mobile-menu-button {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 46px;
        height: 46px;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        cursor: pointer;
    }

        .mobile-menu-button span {
            display: block;
            width: 21px;
            height: 2px;
            border-radius: 999px;
            background: #ffffff;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .mobile-menu-button.mobile-open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .mobile-menu-button.mobile-open span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-button.mobile-open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

    .app-layout {
        display: block;
    }

    .sidebar {
        position: fixed;
        top: 76px;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1090;
        display: none;
        width: 100%;
        height: calc(100vh - 76px);
        overflow-y: auto;
        padding: 24px 22px 40px;
        box-sizing: border-box;
    }

        .sidebar.mobile-open {
            display: block;
        }

    .sidebar-brand {
        display: none;
    }

    .sidebar-nav {
        width: 100%;
    }

        .sidebar-nav a,
        .sidebar-logout-button {
            min-height: 52px;
        }

    .content-area {
        width: 100%;
        min-width: 0;
    }
}

/* =========================================================
   MOBILE EXPLORE SEARCH - COMPACT OVERRIDE
   Keep this at the very bottom of site.css
   ========================================================= */

@media screen and (max-width: 640px) {

    body .explore-hero.explore-hero-compact {
        width: auto !important;
        margin: 24px 16px 0 !important;
        padding: 24px 20px !important;
        border-radius: 26px !important;
        box-sizing: border-box !important;
    }

        body .explore-hero.explore-hero-compact > div {
            width: 100% !important;
            max-width: 100% !important;
        }

        body .explore-hero.explore-hero-compact h1 {
            margin: 0 0 8px !important;
            padding: 0 !important;
            font-size: 36px !important;
            line-height: 1.02 !important;
            letter-spacing: -0.5px !important;
        }

        body .explore-hero.explore-hero-compact > div > p {
            margin: 0 0 17px !important;
            padding: 0 !important;
            font-size: 16px !important;
            line-height: 1.4 !important;
        }

        body .explore-hero.explore-hero-compact .explore-search {
            display: flex !important;
            flex-direction: column !important;
            gap: 7px !important;
            width: 100% !important;
            max-width: 100% !important;
            margin: 0 !important;
            padding: 0 !important;
            background: transparent !important;
            border: 0 !important;
            border-radius: 0 !important;
            box-shadow: none !important;
        }

            body .explore-hero.explore-hero-compact .explore-search input,
            body .explore-hero.explore-hero-compact .explore-search select,
            body .explore-hero.explore-hero-compact .explore-search button {
                display: block !important;
                width: 100% !important;
                max-width: 100% !important;
                min-width: 0 !important;
                height: 48px !important;
                min-height: 48px !important;
                max-height: 48px !important;
                margin: 0 !important;
                padding: 0 16px !important;
                font-size: 16px !important;
                line-height: 48px !important;
                box-sizing: border-box !important;
            }

            body .explore-hero.explore-hero-compact .explore-search input,
            body .explore-hero.explore-hero-compact .explore-search select {
                background-color: #ffffff !important;
                border-radius: 13px !important;
            }

            body .explore-hero.explore-hero-compact .explore-search input {
                border-radius: 24px !important;
            }

            body .explore-hero.explore-hero-compact .explore-search select {
                appearance: auto !important;
                -webkit-appearance: menulist !important;
                padding-top: 0 !important;
                padding-bottom: 0 !important;
            }

            body .explore-hero.explore-hero-compact .explore-search button {
                height: 50px !important;
                min-height: 50px !important;
                max-height: 50px !important;
                margin-top: 2px !important;
                padding: 0 16px !important;
                border-radius: 25px !important;
                font-size: 17px !important;
                font-weight: 700 !important;
                line-height: 50px !important;
            }

    body .explore-section {
        scroll-margin-top: 88px !important;
    }
}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

.contact-page-intro {
    margin-bottom: 28px;
}

.contact-page-title {
    margin-top: 8px;
}

.contact-page-subtitle {
    max-width: 700px;
}

@media (max-width: 640px) {
    .contact-page {
        padding: 8px 0 28px;
    }

    .contact-page-intro {
        margin-bottom: 18px;
    }

    .contact-page-title {
        margin: 6px 0 10px;
        font-size: 42px;
        line-height: 1.05;
        letter-spacing: -0.5px;
    }

    .contact-page-subtitle {
        max-width: none;
        margin-bottom: 0;
        font-size: 17px;
        line-height: 1.5;
    }

    .contact-page > .hp-card {
        padding: 24px 20px;
        border-radius: 22px;
    }
}

@media (max-width: 380px) {
    .contact-page-title {
        font-size: 38px;
    }

    .contact-page-subtitle {
        font-size: 16px;
    }
}

/* =========================================================
   MOBILE PLACE WORKSPACE HEADER
   ========================================================= */

@media screen and (max-width: 768px) {

    /* Prevent the page title and account email overlapping */
    .topbar {
        min-height: 58px;
        padding: 10px 16px;
    }

        .topbar > strong {
            display: block;
            min-width: 0;
            overflow: hidden;
            font-size: 17px;
            line-height: 1.3;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

    .topbar-account {
        display: none;
    }

    /* Tighten the space around the workspace */
    .main-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hp-back-link {
        margin-bottom: 14px;
        font-size: 14px;
    }

    /* Change the large side-by-side hero into a compact card */
    .place-workspace-hero {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: 16px;
        overflow: hidden;
        border-radius: 20px;
    }

    .place-workspace-image {
        width: 100%;
        min-height: 0;
        height: 190px;
        border-radius: 0;
        background-position: center;
        background-size: cover;
    }

    .place-workspace-content {
        padding: 18px;
    }

    .place-workspace-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

        .place-workspace-header h1 {
            margin: 0 0 5px;
            font-size: 27px;
            line-height: 1.08;
            overflow-wrap: anywhere;
        }

        .place-workspace-header p {
            margin: 0;
            font-size: 13px;
        }

    .place-header-actions {
        width: 100%;
        justify-content: flex-start;
        gap: 8px;
    }

    .place-workspace-description {
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.5;
    }

    .place-workspace-content .facility-list {
        margin-top: 12px;
    }

    /* Keep workspace tabs usable without wrapping over several rows */
    .place-tabs {
        display: flex;
        gap: 6px;
        margin-bottom: 16px;
        padding-bottom: 5px;
        overflow-x: auto;
        scrollbar-width: none;
        white-space: nowrap;
    }

        .place-tabs::-webkit-scrollbar {
            display: none;
        }

        .place-tabs a {
            flex: 0 0 auto;
            padding: 10px 13px;
            font-size: 13px;
        }
}

/* =========================================================
   HIDE DESKTOP TOPBAR ON MOBILE
   ========================================================= */

@media screen and (max-width: 768px) {
    .topbar {
        display: none;
    }
}

/* =========================================================
   MOBILE HOST PLACES LIST - COMPACT CARDS
   ========================================================= */

@media screen and (max-width: 768px) {

    .places-page-header {
        align-items: flex-start;
        margin-bottom: 22px;
    }

        .places-page-header .page-title {
            margin-bottom: 8px;
            font-size: 48px;
            line-height: 1;
        }

        .places-page-header .page-subtitle {
            margin-bottom: 18px;
            font-size: 17px;
            line-height: 1.45;
        }

        .places-page-header .hp-button {
            min-height: 46px;
            padding: 11px 20px;
        }

    .place-card-list {
        gap: 14px;
    }

    .place-wide-card {
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr);
        min-height: 150px;
        overflow: hidden;
        border-radius: 18px;
    }

    .place-wide-image {
        width: 112px;
        min-height: 150px;
        height: 100%;
        border-radius: 0;
        background-position: center;
        background-size: cover;
    }

    .place-wide-image-empty {
        min-height: 150px;
    }

    .place-wide-image-empty-content {
        padding: 10px;
        text-align: center;
    }

        .place-wide-image-empty-content span {
            font-size: 22px;
        }

        .place-wide-image-empty-content strong {
            font-size: 11px;
        }

        .place-wide-image-empty-content small {
            display: none;
        }

    .place-wide-content {
        min-width: 0;
        padding: 15px;
    }

    .place-wide-topline {
        align-items: flex-start;
        gap: 8px;
    }

        .place-wide-topline h2 {
            margin: 0 0 4px;
            font-size: 23px;
            line-height: 1.05;
            overflow-wrap: anywhere;
        }

    .place-location {
        margin: 0;
        font-size: 12px;
        line-height: 1.35;
    }

    .place-publishing-badges {
        flex: 0 0 auto;
    }

        .place-publishing-badges .hp-badge {
            padding: 5px 8px;
            font-size: 10px;
        }

    .place-description {
        display: -webkit-box;
        margin: 10px 0 0;
        overflow: hidden;
        font-size: 12px;
        line-height: 1.4;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .place-wide-content > .facility-list {
        display: none;
    }

    .place-publishing-summary {
        margin-top: 12px;
        padding: 11px 12px;
        border-radius: 12px;
    }

    .place-publishing-heading {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

        .place-publishing-heading strong {
            font-size: 12px;
        }

        .place-publishing-heading > div > span {
            display: none;
        }

    .place-setup-action {
        font-size: 11px !important;
        white-space: nowrap;
    }

    .place-progress-track {
        height: 6px;
        margin: 9px 0 0;
    }

    .place-requirement-list,
    .place-next-step {
        display: none;
    }

    .place-card-divider {
        display: none;
    }

    .place-wide-stats {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-top: 12px;
        padding-top: 0;
    }

    .place-stat {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .place-stat-icon {
        display: none;
    }

    .place-stat strong {
        font-size: 13px;
    }

    .place-stat span {
        font-size: 10px;
    }

    .place-stat:nth-child(3) {
        display: none;
    }

    .place-card-arrow {
        margin-left: auto;
        font-size: 20px;
    }
}

@media screen and (max-width: 420px) {

    .place-wide-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .place-wide-image {
        width: 96px;
    }

    .place-wide-content {
        padding: 13px;
    }

    .place-wide-topline {
        flex-direction: column;
    }

        .place-wide-topline h2 {
            font-size: 21px;
        }
}

/* =========================================================
   MOBILE HOST BOOKINGS
========================================================= */

.host-bookings-mobile-list {
    display: none;
}

@media screen and (max-width: 768px) {

    .host-bookings-page-header {
        margin-bottom: 16px;
    }

        .host-bookings-page-header .profile-eyebrow {
            margin-bottom: 5px;
        }

        .host-bookings-page-header .page-title {
            margin: 0 0 8px;
            font-size: 46px;
            line-height: 1;
        }

        .host-bookings-page-header .page-subtitle {
            max-width: none;
            margin: 0;
            font-size: 17px;
            line-height: 1.45;
        }

    .admin-case-filters {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        margin: 14px 0 18px;
        padding-bottom: 5px;
        overflow-x: auto;
        scrollbar-width: none;
    }

        .admin-case-filters::-webkit-scrollbar {
            display: none;
        }

    .admin-case-filter {
        flex: 0 0 auto;
        min-height: 42px;
        padding: 9px 14px;
        font-size: 13px;
        white-space: nowrap;
    }

    .admin-case-filter-count {
        min-width: 21px;
        height: 21px;
        font-size: 11px;
    }

    .host-bookings-card {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

        .host-bookings-card > .editable-card-header {
            display: none;
        }

    .host-bookings-desktop-table {
        display: none;
    }

    .host-bookings-mobile-list {
        display: grid;
        gap: 14px;
    }

    .host-booking-mobile-card {
        padding: 18px;
        border: 1px solid var(--hp-grey-200);
        border-radius: 18px;
        background: white;
        box-shadow: var(--hp-shadow-small);
    }

    .host-booking-mobile-heading {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--hp-grey-200);
    }

    .host-booking-reference {
        display: block;
        margin-bottom: 5px;
        color: var(--hp-gold);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .host-booking-mobile-heading h3 {
        margin: 0 0 4px;
        color: var(--hp-forest);
        font-family: "Playfair Display", serif;
        font-size: 23px;
        line-height: 1.1;
    }

    .host-booking-mobile-heading p {
        margin: 0;
        color: var(--hp-grey-600);
        font-size: 13px;
    }

    .host-booking-mobile-heading .booking-status-badge {
        flex: 0 0 auto;
        font-size: 10px;
        white-space: nowrap;
    }

    .host-booking-mobile-details {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 18px;
        padding: 16px 0;
    }

        .host-booking-mobile-details > div {
            min-width: 0;
        }

        .host-booking-mobile-details span {
            display: block;
            margin-bottom: 3px;
            color: var(--hp-grey-600);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .host-booking-mobile-details strong {
            display: block;
            color: var(--hp-forest);
            font-size: 13px;
            line-height: 1.35;
            overflow-wrap: anywhere;
        }

        .host-booking-mobile-details small {
            display: block;
            margin-top: 2px;
            color: var(--hp-grey-600);
            font-size: 11px;
        }

    .host-booking-mobile-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-top: 14px;
        border-top: 1px solid var(--hp-grey-200);
    }

        .host-booking-mobile-footer > span {
            color: var(--hp-grey-600);
            font-size: 11px;
            line-height: 1.4;
        }

        .host-booking-mobile-footer .hp-button {
            flex: 0 0 auto;
            min-height: 40px;
            padding: 9px 14px;
            font-size: 12px;
        }
}

@media screen and (max-width: 420px) {

    .host-bookings-page-header .page-title {
        font-size: 42px;
    }

    .host-booking-mobile-heading {
        flex-direction: column;
    }

    .host-booking-mobile-details {
        grid-template-columns: 1fr 1fr;
        gap: 13px;
    }

    .host-booking-mobile-footer {
        align-items: stretch;
        flex-direction: column;
    }

        .host-booking-mobile-footer .hp-button {
            width: 100%;
            justify-content: center;
        }
}

/* =========================================================
   MOBILE HOST CONVERSATIONS
========================================================= */

.host-conversations-mobile-list {
    display: none;
}

@media screen and (max-width: 768px) {

    .host-conversations-page-header {
        margin-bottom: 16px;
    }

        .host-conversations-page-header .profile-eyebrow {
            margin-bottom: 5px;
        }

        .host-conversations-page-header .page-title {
            margin: 0 0 8px;
            font-size: 42px;
            line-height: 1;
            overflow-wrap: anywhere;
        }

        .host-conversations-page-header .page-subtitle {
            max-width: none;
            margin: 0;
            font-size: 17px;
            line-height: 1.45;
        }

    .host-conversations-card {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

        .host-conversations-card > .editable-card-header {
            display: none;
        }

    .host-conversations-desktop-table {
        display: none;
    }

    .host-conversations-mobile-list {
        display: grid;
        gap: 14px;
    }

    .host-conversation-mobile-card {
        padding: 18px;
        border: 1px solid var(--hp-grey-200);
        border-radius: 18px;
        background: white;
        box-shadow: var(--hp-shadow-small);
    }

        .host-conversation-mobile-card.unread {
            border-left: 5px solid var(--hp-gold);
        }

    .host-conversation-mobile-heading {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--hp-grey-200);
    }

    .host-conversation-mobile-place {
        display: block;
        margin-bottom: 5px;
        color: var(--hp-gold);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .host-conversation-mobile-heading h3 {
        margin: 0 0 5px;
        color: var(--hp-forest);
        font-family: "Playfair Display", serif;
        font-size: 22px;
        line-height: 1.15;
        overflow-wrap: anywhere;
    }

    .host-conversation-mobile-heading p {
        margin: 0;
        color: var(--hp-grey-600);
        font-size: 13px;
    }

    .host-conversation-mobile-status {
        display: flex;
        flex: 0 0 auto;
        align-items: flex-end;
        flex-direction: column;
        gap: 7px;
    }

        .host-conversation-mobile-status .hp-badge,
        .host-conversation-mobile-status .conversation-unread-badge {
            font-size: 10px;
            white-space: nowrap;
        }

    .host-conversation-mobile-preview {
        padding: 16px 0;
    }

        .host-conversation-mobile-preview > span {
            display: block;
            margin-bottom: 6px;
            color: var(--hp-grey-600);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .host-conversation-mobile-preview p {
            display: -webkit-box;
            margin: 0;
            overflow: hidden;
            color: var(--hp-grey-700);
            font-size: 14px;
            line-height: 1.55;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
        }

    .host-conversation-mobile-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-top: 14px;
        border-top: 1px solid var(--hp-grey-200);
    }

        .host-conversation-mobile-footer span {
            color: var(--hp-grey-600);
            font-size: 11px;
            line-height: 1.4;
        }

        .host-conversation-mobile-footer .hp-button {
            flex: 0 0 auto;
            min-height: 40px;
            padding: 9px 14px;
            font-size: 12px;
        }
}

@media screen and (max-width: 420px) {

    .host-conversations-page-header .page-title {
        font-size: 38px;
    }

    .host-conversation-mobile-heading {
        flex-direction: column;
    }

    .host-conversation-mobile-status {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .host-conversation-mobile-footer {
        align-items: stretch;
        flex-direction: column;
    }

        .host-conversation-mobile-footer .hp-button {
            width: 100%;
            justify-content: center;
        }
}

/* =========================================================
   MOBILE CONVERSATION DETAILS
========================================================= */

@media screen and (max-width: 768px) {

    .conversation-details-header {
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 18px;
    }

    .conversation-details-heading {
        min-width: 0;
    }

    .conversation-details-header .profile-eyebrow {
        margin-bottom: 6px;
    }

    .conversation-details-header .page-title {
        margin: 0 0 8px;
        font-size: 42px;
        line-height: 1.02;
        letter-spacing: -0.5px;
        overflow-wrap: anywhere;
    }

    .conversation-details-header .page-subtitle {
        margin: 0;
        font-size: 17px;
        line-height: 1.4;
    }

    .conversation-details-header .conversation-header-actions {
        width: 100%;
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

        .conversation-details-header .conversation-header-actions form {
            flex: 1 1 220px;
        }

        .conversation-details-header .conversation-header-actions .hp-button {
            width: 100%;
            justify-content: center;
            min-height: 44px;
            padding: 10px 16px;
            font-size: 14px;
        }

    .conversation-thread {
        padding: 18px;
    }

    .conversation-message {
        max-width: 94%;
        padding: 14px 15px;
    }

    .conversation-message-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
        margin-bottom: 7px;
    }

        .conversation-message-header span {
            font-size: 11px;
        }

    .conversation-message p {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 420px) {

    .conversation-details-header .page-title {
        font-size: 36px;
    }

    .conversation-details-header .page-subtitle {
        font-size: 16px;
    }

    .conversation-details-header .conversation-header-actions {
        flex-direction: column;
    }

        .conversation-details-header .conversation-header-actions form {
            width: 100%;
            flex-basis: auto;
        }
}

/* =========================================================
   HELP CENTRE
========================================================= */

.help-centre-page {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.help-centre-hero {
    max-width: 760px;
    margin-bottom: 34px;
}

    .help-centre-hero .page-title {
        margin: 8px 0 12px;
    }

.help-centre-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.help-centre-audience-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 20px;
    min-width: 0;
    padding: 30px;
    border: 1px solid var(--hp-grey-200);
    border-radius: 24px;
    background: white;
    color: inherit;
    text-decoration: none;
    box-shadow: var(--hp-shadow-small);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

    .help-centre-audience-card:hover {
        transform: translateY(-3px);
        border-color: rgba(181, 139, 63, 0.45);
        color: inherit;
        box-shadow: 0 20px 45px rgba(21, 63, 49, 0.12);
    }

/*
    Keep the Host Help card the same colour as the Guest Help card.
    This class is retained in case it is used in the view.
*/
.help-centre-host-card {
    background: white;
}

.help-centre-audience-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: var(--hp-forest);
    font-size: 28px;
}

.help-centre-audience-card h2 {
    margin: 4px 0 10px;
    color: var(--hp-forest);
    font-family: "Playfair Display", serif;
    font-size: 30px;
    line-height: 1.12;
}

.help-centre-audience-card p {
    margin: 0;
    color: var(--hp-grey-600);
    font-size: 14px;
    line-height: 1.65;
}

.help-centre-card-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--hp-gold);
    font-size: 13px;
    font-weight: 700;
}

.help-centre-contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 26px;
}

@media screen and (max-width: 768px) {

    .help-centre-hero {
        margin-bottom: 22px;
    }

        .help-centre-hero .page-title {
            margin: 6px 0 10px;
            font-size: 42px;
            line-height: 1.02;
        }

        .help-centre-hero .page-subtitle {
            font-size: 17px;
            line-height: 1.5;
        }

    .help-centre-audience-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .help-centre-audience-card {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 15px;
        padding: 20px;
        border-radius: 19px;
    }

    .help-centre-audience-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 21px;
    }

    .help-centre-audience-card h2 {
        font-size: 24px;
    }

    .help-centre-card-link {
        margin-top: 13px;
    }

    .help-centre-contact-card {
        align-items: stretch;
        flex-direction: column;
        padding: 22px;
    }

        .help-centre-contact-card .hp-button {
            width: 100%;
            justify-content: center;
        }
}

/* =========================================================
   HOST HELP
========================================================= */

.help-category {
    margin-top: 40px;
}

    .help-category h2 {
        margin-bottom: 18px;
        color: var(--hp-forest);
        font-size: 28px;
    }

.help-article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}

.help-article-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px;
    background: white;
    border: 1px solid var(--hp-grey-200);
    border-radius: 18px;
    color: inherit;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

    .help-article-card:hover {
        transform: translateY(-2px);
        border-color: rgba(181, 139, 63, 0.45);
        color: inherit;
        box-shadow: 0 16px 30px rgba(21, 63, 49, 0.10);
    }

    .help-article-card strong {
        color: var(--hp-forest);
        font-size: 18px;
    }

    .help-article-card span {
        color: var(--hp-grey-600);
        line-height: 1.5;
    }

/* =========================================================
   HELP ARTICLES
========================================================= */

.help-article-page {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.help-article-header {
    max-width: 780px;
    margin-bottom: 30px;
}

.help-article-category {
    margin: 8px 0 4px;
    color: var(--hp-gold);
    font-size: 13px;
    font-weight: 700;
}

.help-article-header .page-title {
    margin: 0 0 12px;
}

.help-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: start;
    gap: 24px;
}

.help-article-content {
    padding: 36px;
}

    .help-article-content section + section {
        margin-top: 34px;
        padding-top: 30px;
        border-top: 1px solid var(--hp-grey-200);
    }

    .help-article-content h2 {
        margin: 0 0 14px;
        color: var(--hp-forest);
        font-family: "Playfair Display", serif;
        font-size: 27px;
        line-height: 1.2;
    }

    .help-article-content p {
        margin: 0 0 15px;
        color: var(--hp-grey-700);
        font-size: 15px;
        line-height: 1.75;
    }

    .help-article-content ul,
    .help-article-content ol {
        margin: 16px 0 0;
        padding-left: 23px;
        color: var(--hp-grey-700);
    }

    .help-article-content li {
        margin-bottom: 10px;
        padding-left: 4px;
        line-height: 1.6;
    }

.help-article-callout {
    margin-top: 30px;
    padding: 22px;
    border-left: 4px solid var(--hp-gold);
    border-radius: 0 14px 14px 0;
    background: var(--hp-cream);
}

    .help-article-callout strong {
        display: block;
        margin-bottom: 6px;
        color: var(--hp-forest);
    }

    .help-article-callout p {
        margin: 0;
    }

.help-example {
    margin-top: 18px;
    padding: 20px;
    border-radius: 14px;
}

.help-example-good {
    border: 1px solid rgba(38, 112, 83, 0.2);
    background: rgba(38, 112, 83, 0.07);
}

.help-example > span {
    display: block;
    margin-bottom: 7px;
    color: var(--hp-forest);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.help-example p {
    margin: 0;
}

.help-article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.help-article-sidebar-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 22px;
}

    .help-article-sidebar-card .profile-eyebrow {
        margin-bottom: 12px;
    }

    .help-article-sidebar-card > a:not(.hp-button) {
        padding: 10px 0;
        border-bottom: 1px solid var(--hp-grey-200);
        color: var(--hp-grey-700);
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
    }

        .help-article-sidebar-card > a:not(.hp-button):hover {
            color: var(--hp-gold);
        }

        .help-article-sidebar-card > a:not(.hp-button):last-of-type {
            border-bottom: 0;
        }

    .help-article-sidebar-card p {
        margin: 0 0 15px;
        color: var(--hp-grey-600);
        font-size: 13px;
        line-height: 1.6;
    }

    .help-article-sidebar-card .hp-button {
        width: 100%;
        justify-content: center;
    }

@media screen and (max-width: 900px) {

    .help-article-layout {
        grid-template-columns: 1fr;
    }

    .help-article-sidebar {
        order: 2;
    }
}

@media screen and (max-width: 768px) {

    .help-article-header {
        margin-bottom: 22px;
    }

        .help-article-header .page-title {
            font-size: 39px;
            line-height: 1.05;
        }

        .help-article-header .page-subtitle {
            font-size: 16px;
            line-height: 1.5;
        }

    .help-article-content {
        padding: 22px;
    }

        .help-article-content section + section {
            margin-top: 26px;
            padding-top: 24px;
        }

        .help-article-content h2 {
            font-size: 24px;
        }

    .help-article-sidebar-card {
        padding: 20px;
    }
}

.help-article-sidebar-card > a.active {
    color: var(--hp-forest);
    font-weight: 800;
}

    .help-article-sidebar-card > a.active::before {
        content: "→";
        margin-right: 7px;
        color: var(--hp-gold);
    }

/* =========================================================
   HELP ARTICLE STATUS GUIDE
========================================================= */

.help-status-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.help-status-item {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 13px;
    padding: 16px;
    border: 1px solid var(--hp-grey-200);
    border-radius: 14px;
    background: var(--hp-cream);
}

    .help-status-item strong {
        display: block;
        margin-bottom: 4px;
        color: var(--hp-forest);
    }

    .help-status-item p {
        margin: 0;
        font-size: 14px;
        line-height: 1.55;
    }

.help-status-indicator {
    width: 14px;
    height: 14px;
    margin-top: 4px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
}

.help-status-available {
    background: #dcefe4;
}

.help-status-blocked {
    background: #f3d69a;
}

.help-status-booked {
    background: #e6b3aa;
}

.help-status-closed {
    background: #d7d7d7;
}

/* =========================================================
   HOST CALENDAR
========================================================= */

.host-calendar-card {
    padding: 24px;
}

.host-calendar-toolbar {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: end;
    gap: 28px;
}

.host-calendar-filter {
    margin: 0;
}

.host-calendar-navigation {
    display: grid;
    grid-template-columns: auto minmax(180px, 1fr) auto;
    align-items: center;
    gap: 18px;
}

    .host-calendar-navigation h2 {
        margin: 0;
        color: var(--hp-forest);
        font-family: var(--hp-font-heading);
        font-size: 34px;
        text-align: center;
    }

.host-calendar-legend {
    justify-content: flex-end;
    margin: 24px 0 16px;
}

.host-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
}

.host-calendar-day-name {
    padding: 8px 6px;
    color: var(--hp-grey-600);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.host-calendar-cell {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 125px;
    padding: 13px;
    border: 1px solid var(--hp-grey-200);
    border-radius: 16px;
    background: var(--hp-white);
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

    .host-calendar-cell:hover {
        transform: translateY(-2px);
        border-color: rgba(181, 139, 63, 0.45);
        box-shadow: var(--hp-shadow-small);
    }

.host-calendar-date {
    color: var(--hp-forest);
    font-size: 18px;
    font-weight: 800;
}

.host-calendar-empty {
    margin-top: 10px;
    color: var(--hp-grey-500);
    font-size: 11px;
}

@media (max-width: 1000px) {
    .host-calendar-toolbar {
        grid-template-columns: 1fr;
    }

    .host-calendar-legend {
        justify-content: flex-start;
    }
}

@media (max-width: 750px) {
    .host-calendar-navigation {
        grid-template-columns: 1fr 1fr;
    }

        .host-calendar-navigation h2 {
            grid-column: 1 / -1;
            grid-row: 1;
            font-size: 28px;
        }

    .host-calendar-grid {
        grid-template-columns: 1fr;
    }

    .host-calendar-day-name {
        display: none;
    }

    .host-calendar-cell {
        min-height: 90px;
    }
}

.host-calendar-empty-cell {
    min-height: 125px;
}

.host-calendar-cell-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.host-calendar-item-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 23px;
    height: 23px;
    padding: 0 7px;
    border-radius: 999px;
    background: var(--hp-cream);
    color: var(--hp-forest);
    font-size: 11px;
    font-weight: 800;
}

.host-calendar-items {
    display: grid;
    gap: 6px;
    margin-top: 10px;
}

.host-calendar-item {
    display: block;
    min-width: 0;
    padding: 8px 9px;
    border-left: 3px solid var(--hp-forest);
    border-radius: 9px;
    background: var(--hp-white);
    color: var(--hp-forest);
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

    .host-calendar-item:hover {
        transform: translateY(-1px);
        color: var(--hp-forest);
        box-shadow: var(--hp-shadow-small);
    }

    .host-calendar-item strong,
    .host-calendar-item span,
    .host-calendar-item small {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .host-calendar-item strong {
        font-size: 12px;
    }

    .host-calendar-item span,
    .host-calendar-item small {
        margin-top: 2px;
        font-size: 10px;
    }

.host-calendar-item-place {
    margin-bottom: 3px;
    color: var(--hp-grey-600);
    font-weight: 700;
}

.host-calendar-item.requested {
    border-left-color: #c89416;
    background: #fffaf0;
}

.host-calendar-item.accepted,
.host-calendar-item.awaiting-payment {
    border-left-color: #3276b1;
    background: #f4f8fd;
}

.host-calendar-item.paid,
.host-calendar-item.confirmed {
    border-left-color: #2f7a46;
    background: #f2f8f3;
}

.host-calendar-item.blocked {
    border-left-color: var(--hp-warning);
    background: #fff8e8;
}

.host-calendar-item.closed {
    border-left-color: var(--hp-grey-500);
    background: var(--hp-grey-100);
}

.host-calendar-cell-requested {
    box-shadow: inset 0 0 0 2px rgba(200, 148, 22, 0.2);
}

.host-calendar-cell-booked {
    box-shadow: inset 0 0 0 2px rgba(47, 122, 70, 0.18);
}

.host-calendar-cell-blocked {
    background: rgba(237, 155, 0, 0.06);
}

.host-calendar-cell-closed {
    background: var(--hp-grey-100);
}

.host-calendar-no-places {
    padding: 60px 20px;
    text-align: center;
}

    .host-calendar-no-places h2 {
        margin: 0 0 8px;
        color: var(--hp-forest);
        font-family: var(--hp-font-heading);
        font-size: 32px;
    }

    .host-calendar-no-places p {
        margin: 0 0 22px;
        color: var(--hp-grey-600);
    }

@media (max-width: 750px) {
    .host-calendar-empty-cell {
        display: none;
    }

    .host-calendar-cell {
        min-height: 90px;
    }
}

/* =========================================================
   HOST DASHBOARD
========================================================= */

.host-dashboard {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    color: #173d31;
}

    .host-dashboard *,
    .host-dashboard *::before,
    .host-dashboard *::after {
        box-sizing: border-box;
    }


/* =========================================================
   HERO
========================================================= */

.host-dashboard-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 38px 42px;
    margin-bottom: 24px;
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient( circle at top right, rgba(213, 179, 107, 0.22), transparent 34% ), linear-gradient( 135deg, #123c2e 0%, #1b5140 100% );
    border-radius: 26px;
    box-shadow: 0 16px 44px rgba(17, 57, 44, 0.14);
}

    .host-dashboard-hero::after {
        position: absolute;
        right: -70px;
        bottom: -95px;
        width: 240px;
        height: 240px;
        content: "";
        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 50%;
    }

.host-dashboard-hero-content,
.host-dashboard-hero-actions {
    position: relative;
    z-index: 1;
}

.host-dashboard-eyebrow,
.host-dashboard-panel-eyebrow {
    margin-bottom: 8px;
    color: #c99e4c;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.host-dashboard-hero h1 {
    margin: 0 0 8px;
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 3.6vw, 3.15rem);
    font-weight: 500;
    line-height: 1.08;
}

.host-dashboard-hero p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.65;
}

.host-dashboard-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.host-dashboard-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

    .host-dashboard-button:hover {
        transform: translateY(-1px);
    }

.host-dashboard-button--gold {
    color: #173d31;
    background: #d5b36b;
}

    .host-dashboard-button--gold:hover {
        color: #173d31;
        background: #e1c27f;
    }

.host-dashboard-button--light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

    .host-dashboard-button--light:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.14);
    }


/* =========================================================
   SUMMARY CARDS
========================================================= */

.host-dashboard-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.host-dashboard-summary-card {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 15px;
    padding: 22px;
    color: #173d31;
    background: #ffffff;
    border: 1px solid #e8e8e2;
    border-radius: 20px;
    box-shadow: 0 8px 26px rgba(24, 61, 49, 0.055);
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

    .host-dashboard-summary-card:hover {
        color: #173d31;
        border-color: #d7c392;
        box-shadow: 0 13px 32px rgba(24, 61, 49, 0.09);
        transform: translateY(-2px);
    }

.host-dashboard-summary-icon {
    display: flex;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.25rem;
    font-weight: 800;
}

.host-dashboard-summary-icon--attention {
    color: #875b18;
    background: #fff3d7;
}

.host-dashboard-summary-icon--payment {
    color: #63511e;
    background: #f2eddc;
}

.host-dashboard-summary-icon--booking {
    color: #216346;
    background: #e4f1ea;
}

.host-dashboard-summary-icon--message {
    color: #315a75;
    background: #e8f1f7;
}

.host-dashboard-summary-content {
    min-width: 0;
}

.host-dashboard-summary-value {
    margin-bottom: 3px;
    color: #153f31;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.85rem;
    font-weight: 600;
    line-height: 1;
}

.host-dashboard-summary-label {
    overflow: hidden;
    color: #263f36;
    font-size: 0.9rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.host-dashboard-summary-description {
    margin-top: 3px;
    overflow: hidden;
    color: #84908b;
    font-size: 0.75rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.host-dashboard-summary-arrow {
    margin-left: auto;
    color: #a1aaa6;
    font-size: 1.15rem;
}


/* =========================================================
   DASHBOARD GRID
========================================================= */

.host-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(350px, 0.85fr);
    align-items: start;
    gap: 24px;
}

.host-dashboard-main-column,
.host-dashboard-side-column {
    display: grid;
    min-width: 0;
    gap: 24px;
}


/* =========================================================
   PANELS
========================================================= */

.host-dashboard-panel {
    min-width: 0;
    padding: 26px;
    background: #ffffff;
    border: 1px solid #e8e8e2;
    border-radius: 22px;
    box-shadow: 0 8px 26px rgba(24, 61, 49, 0.05);
}

.host-dashboard-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

    .host-dashboard-panel-header h2 {
        margin: 0;
        color: #173d31;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 1.52rem;
        font-weight: 600;
        line-height: 1.2;
    }

.host-dashboard-panel-link {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 7px;
    padding-top: 3px;
    color: #94702f;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
}

    .host-dashboard-panel-link:hover {
        color: #153f31;
    }


/* =========================================================
   NEEDS ATTENTION
========================================================= */

.host-dashboard-attention-panel {
    border-color: #ead9ad;
    background: linear-gradient( 135deg, #ffffff 0%, #fffcf4 100% );
}

.host-dashboard-alert-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    color: #875b18;
    background: #fff0cb;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.host-dashboard-attention-list {
    display: grid;
    gap: 10px;
}

.host-dashboard-attention-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    color: #173d31;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid #eee8d8;
    border-radius: 15px;
    text-decoration: none;
    transition: border-color 0.18s ease, transform 0.18s ease;
}

    .host-dashboard-attention-item:hover {
        color: #173d31;
        border-color: #d9bf80;
        transform: translateX(2px);
    }

.host-dashboard-attention-symbol {
    display: flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    font-size: 1rem;
    font-weight: 800;
}

.host-dashboard-attention-symbol--request {
    background: #fff0ca;
}

.host-dashboard-attention-symbol--message {
    background: #e8f1f7;
}

.host-dashboard-attention-symbol--payment {
    background: #eee9d9;
}

.host-dashboard-attention-text {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: 3px;
}

    .host-dashboard-attention-text strong {
        color: #25453a;
        font-size: 0.88rem;
    }

    .host-dashboard-attention-text span {
        color: #7e8a85;
        font-size: 0.77rem;
        line-height: 1.45;
    }

.host-dashboard-attention-link {
    color: #92702e;
    font-size: 0.76rem;
    font-weight: 800;
}


/* =========================================================
   BOOKING CARDS
========================================================= */

.host-dashboard-booking-list {
    display: grid;
    gap: 12px;
}

.host-dashboard-booking-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 17px;
    background: #fbfbf8;
    border: 1px solid #e9e9e3;
    border-radius: 17px;
}

.host-dashboard-date-tile {
    display: flex;
    width: 56px;
    min-height: 63px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e3e3dc;
    border-radius: 13px;
}

    .host-dashboard-date-tile span {
        color: #9b7838;
        font-size: 0.62rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .host-dashboard-date-tile strong {
        color: #173d31;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 1.65rem;
        line-height: 1.05;
    }

.host-dashboard-booking-body {
    min-width: 0;
}

.host-dashboard-booking-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 7px;
}

.host-dashboard-booking-body h3 {
    margin: 0 0 2px;
    overflow: hidden;
    color: #173d31;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.08rem;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.host-dashboard-booking-experience {
    margin-bottom: 8px;
    overflow: hidden;
    color: #6f7d77;
    font-size: 0.8rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.host-dashboard-reference {
    color: #9ca5a1;
    font-size: 0.65rem;
    white-space: nowrap;
}

.host-dashboard-booking-details {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    color: #73817b;
    font-size: 0.72rem;
}

.host-dashboard-booking-action {
    display: flex;
    align-items: center;
}

.host-dashboard-small-button {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 9px 15px;
    color: #ffffff;
    background: #153f31;
    border: 1px solid #153f31;
    border-radius: 999px;
    font-size: 0.73rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

    .host-dashboard-small-button:hover {
        color: #ffffff;
        background: #20523f;
    }

.host-dashboard-small-button--outline {
    color: #173d31;
    background: #ffffff;
    border-color: #cad3ce;
}

    .host-dashboard-small-button--outline:hover {
        color: #173d31;
        background: #f3f6f4;
    }


/* =========================================================
   BOOKING STATUS
========================================================= */

.host-dashboard-status {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 0.61rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.host-dashboard-status--requested {
    color: #805614;
    background: #fff0c7;
}

.host-dashboard-status--accepted,
.host-dashboard-status--awaiting-payment {
    color: #705e20;
    background: #f1ecd8;
}

.host-dashboard-status--confirmed,
.host-dashboard-status--paid {
    color: #1e6343;
    background: #dff0e7;
}

.host-dashboard-status--declined,
.host-dashboard-status--cancelled {
    color: #8a3a3a;
    background: #f7e3e3;
}

.host-dashboard-status--default {
    color: #59645f;
    background: #eaeeec;
}


/* =========================================================
   SEVEN DAY CALENDAR
========================================================= */

.host-dashboard-week {
    display: grid;
    gap: 9px;
}

.host-dashboard-week-day {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    min-height: 69px;
    padding: 10px;
    background: #fafaf7;
    border: 1px solid #ebebe5;
    border-radius: 14px;
}

.host-dashboard-week-day--today {
    background: #f5f8f6;
    border-color: #c8d9d1;
}

.host-dashboard-week-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e4e6e2;
}

    .host-dashboard-week-date span {
        color: #9b7838;
        font-size: 0.62rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .host-dashboard-week-date strong {
        color: #173d31;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 1.35rem;
        line-height: 1;
    }

    .host-dashboard-week-date small {
        margin-top: 2px;
        color: #89938f;
        font-size: 0.61rem;
        text-transform: uppercase;
    }

.host-dashboard-week-items {
    display: grid;
    align-content: center;
    gap: 6px;
    min-width: 0;
}

.host-dashboard-week-empty {
    color: #a1aaa6;
    font-size: 0.73rem;
}

.host-dashboard-week-booking {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 7px 9px;
    color: #173d31;
    background: #ffffff;
    border-left: 3px solid #c8a45d;
    border-radius: 7px;
    text-decoration: none;
}

    .host-dashboard-week-booking:hover {
        color: #173d31;
        background: #f7f8f6;
    }

    .host-dashboard-week-booking strong,
    .host-dashboard-week-booking span,
    .host-dashboard-week-booking small {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .host-dashboard-week-booking strong {
        font-size: 0.72rem;
    }

    .host-dashboard-week-booking span {
        color: #697771;
        font-size: 0.66rem;
    }

    .host-dashboard-week-booking small {
        color: #929c98;
        font-size: 0.61rem;
    }


/* =========================================================
   CONVERSATIONS
========================================================= */

.host-dashboard-conversation-list {
    display: grid;
    gap: 9px;
}

.host-dashboard-conversation {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 11px;
    padding: 13px;
    color: #173d31;
    background: #fafaf7;
    border: 1px solid #e9e9e3;
    border-radius: 14px;
    text-decoration: none;
    transition: border-color 0.18s ease, background-color 0.18s ease;
}

    .host-dashboard-conversation:hover {
        color: #173d31;
        background: #f6f8f6;
        border-color: #cad7d1;
    }

.host-dashboard-conversation-avatar {
    display: flex;
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #315d4d;
    border-radius: 50%;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1rem;
}

.host-dashboard-conversation-content {
    min-width: 0;
    flex: 1;
}

.host-dashboard-conversation-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

    .host-dashboard-conversation-heading strong {
        overflow: hidden;
        font-size: 0.79rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .host-dashboard-conversation-heading span {
        flex-shrink: 0;
        color: #9ba49f;
        font-size: 0.63rem;
    }

.host-dashboard-conversation-place {
    margin-top: 2px;
    overflow: hidden;
    color: #937031;
    font-size: 0.67rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.host-dashboard-conversation-subject {
    margin-top: 4px;
    overflow: hidden;
    color: #485b53;
    font-size: 0.72rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.host-dashboard-conversation p {
    display: -webkit-box;
    margin: 4px 0 0;
    overflow: hidden;
    color: #78847f;
    font-size: 0.7rem;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.host-dashboard-unread-count {
    display: flex;
    min-width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    color: #ffffff;
    background: #c39a4a;
    border-radius: 999px;
    font-size: 0.61rem;
    font-weight: 800;
}


/* =========================================================
   PLACES
========================================================= */

.host-dashboard-place-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}

.host-dashboard-place-count {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 11px;
    padding: 15px;
    color: #173d31;
    background: #fafaf7;
    border: 1px solid #e8e8e2;
    border-radius: 14px;
    text-decoration: none;
}

    .host-dashboard-place-count:hover {
        color: #173d31;
        border-color: #d2c18f;
    }

.host-dashboard-place-count-icon {
    display: flex;
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    align-items: center;
    justify-content: center;
    background: #eef3ef;
    border-radius: 12px;
}

.host-dashboard-place-count div:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.host-dashboard-place-count strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
    line-height: 1;
}

.host-dashboard-place-count span {
    margin-top: 3px;
    overflow: hidden;
    color: #7b8782;
    font-size: 0.68rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* =========================================================
   QUICK ACTIONS
========================================================= */

.host-dashboard-quick-actions {
    display: grid;
    gap: 9px;
}

    .host-dashboard-quick-actions > a {
        display: grid;
        grid-template-columns: 39px minmax(0, 1fr) auto;
        align-items: center;
        gap: 11px;
        padding: 12px;
        color: #173d31;
        background: #fafaf7;
        border: 1px solid #e9e9e3;
        border-radius: 13px;
        text-decoration: none;
    }

        .host-dashboard-quick-actions > a:hover {
            color: #173d31;
            background: #f5f7f5;
            border-color: #cad7d1;
        }

.host-dashboard-quick-icon {
    display: flex;
    width: 39px;
    height: 39px;
    align-items: center;
    justify-content: center;
    background: #edf2ef;
    border-radius: 11px;
}

.host-dashboard-quick-actions > a > span:nth-child(2) {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.host-dashboard-quick-actions strong {
    font-size: 0.77rem;
}

.host-dashboard-quick-actions small {
    margin-top: 2px;
    overflow: hidden;
    color: #87928d;
    font-size: 0.65rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.host-dashboard-quick-actions > a > span:last-child {
    color: #9aa49f;
}


/* =========================================================
   EMPTY STATES
========================================================= */

.host-dashboard-empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 145px;
    padding: 24px;
    color: #718079;
    background: #fafaf7;
    border: 1px dashed #d9ddd9;
    border-radius: 16px;
}

.host-dashboard-empty-state--compact {
    min-height: 100px;
}

.host-dashboard-empty-state--side {
    min-height: 125px;
}

.host-dashboard-empty-icon {
    display: flex;
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    align-items: center;
    justify-content: center;
    color: #315d4d;
    background: #eaf1ed;
    border-radius: 50%;
    font-size: 1.12rem;
    font-weight: 800;
}

.host-dashboard-empty-state h3 {
    margin: 0 0 4px;
    color: #395248;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.05rem;
}

.host-dashboard-empty-state p {
    max-width: 430px;
    margin: 0;
    color: #87928d;
    font-size: 0.75rem;
    line-height: 1.55;
}


/* =========================================================
   RESPONSIVE DASHBOARD
========================================================= */

@media (max-width: 1250px) {

    .host-dashboard-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .host-dashboard-grid {
        grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
    }

    .host-dashboard-booking-card {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .host-dashboard-booking-action {
        grid-column: 2;
        justify-content: flex-start;
    }
}


@media (max-width: 1020px) {

    .host-dashboard-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .host-dashboard-side-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }

        .host-dashboard-side-column
        .host-dashboard-panel:first-child {
            grid-column: 1 / -1;
        }
}


@media (max-width: 768px) {

    .host-dashboard-hero {
        align-items: flex-start;
        flex-direction: column;
        padding: 29px 24px;
        border-radius: 20px;
    }

    .host-dashboard-hero-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .host-dashboard-button {
        flex: 1;
    }

    .host-dashboard-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .host-dashboard-summary-card {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 17px;
    }

    .host-dashboard-summary-arrow {
        position: absolute;
        top: 17px;
        right: 17px;
    }

    .host-dashboard-summary-label,
    .host-dashboard-summary-description {
        white-space: normal;
    }

    .host-dashboard-panel {
        padding: 20px;
        border-radius: 18px;
    }

    .host-dashboard-side-column {
        grid-template-columns: minmax(0, 1fr);
    }

        .host-dashboard-side-column
        .host-dashboard-panel:first-child {
            grid-column: auto;
        }

    .host-dashboard-booking-card {
        grid-template-columns: 50px minmax(0, 1fr);
        align-items: start;
        gap: 12px;
        padding: 14px;
    }

    .host-dashboard-date-tile {
        width: 50px;
        min-height: 58px;
    }

    .host-dashboard-booking-action {
        grid-column: 1 / -1;
    }

    .host-dashboard-small-button {
        width: 100%;
    }

    .host-dashboard-booking-topline {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .host-dashboard-reference {
        white-space: normal;
    }
}


@media (max-width: 520px) {

    .host-dashboard-summary {
        grid-template-columns: minmax(0, 1fr);
    }

    .host-dashboard-summary-card {
        align-items: center;
        flex-direction: row;
    }

    .host-dashboard-panel-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .host-dashboard-panel-link {
        padding-top: 0;
    }

    .host-dashboard-attention-item {
        align-items: flex-start;
    }

    .host-dashboard-attention-link {
        display: none;
    }

    .host-dashboard-place-summary {
        grid-template-columns: minmax(0, 1fr);
    }

    .host-dashboard-week-day {
        grid-template-columns: 54px minmax(0, 1fr);
    }

    .host-dashboard-empty-state {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================================
   PLACE WORKSPACE EMPTY COVER IMAGE
========================================================= */

.place-workspace-image-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    padding: 36px;
    background: linear-gradient( 135deg, #f4f1e8 0%, #ebe6d9 100% );
}

.place-image-empty-content {
    display: flex;
    max-width: 360px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.place-image-empty-icon {
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(21, 63, 49, 0.1);
    border-radius: 50%;
    font-size: 1.45rem;
    box-shadow: 0 8px 22px rgba(21, 63, 49, 0.08);
}

.place-image-empty-content strong {
    margin-bottom: 7px;
    color: #173d31;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
}

.place-image-empty-content p {
    max-width: 300px;
    margin: 0 0 18px;
    color: #78847f;
    font-size: 0.85rem;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .place-workspace-image-empty {
        min-height: 220px;
        padding: 28px 20px;
    }
}

/* =========================================================
   MY BOOKINGS
========================================================= */

.my-bookings-page {
    width: 100%;
}

.my-bookings-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    padding: 34px 36px;
    background: linear-gradient( 135deg, #123c2e 0%, #1c5642 100% );
    border-radius: 22px;
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(21, 63, 49, 0.14);
}

.my-bookings-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #d5b36b;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.my-bookings-hero h1 {
    margin: 0 0 8px;
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.4rem;
    font-weight: 600;
}

.my-bookings-hero p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.my-bookings-section {
    margin-bottom: 34px;
}

.my-bookings-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

    .my-bookings-section-header h2 {
        margin: 0 0 4px;
        color: #173d31;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 1.65rem;
    }

    .my-bookings-section-header p {
        margin: 0;
        color: #78847f;
        font-size: 0.92rem;
    }

.my-bookings-count {
    display: inline-flex;
    min-width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    background: #f0ece2;
    border-radius: 999px;
    color: #173d31;
    font-size: 0.85rem;
    font-weight: 700;
}

.my-bookings-list {
    display: grid;
    gap: 18px;
}

.my-booking-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(21, 63, 49, 0.09);
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(21, 63, 49, 0.07);
}

.my-booking-card-muted {
    opacity: 0.88;
}

.my-booking-card-main {
    padding: 24px 26px;
}

.my-booking-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.my-booking-place-label {
    display: block;
    margin-bottom: 5px;
    color: #b58b3f;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.my-booking-card h3 {
    margin: 0;
    color: #173d31;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.4rem;
}

.my-booking-status {
    flex-shrink: 0;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.booking-status-requested {
    background: #fff4d8;
    color: #9a6a08;
}

.booking-status-accepted,
.booking-status-payment {
    background: #e8f0ff;
    color: #315f9c;
}

.booking-status-confirmed {
    background: #e5f5ec;
    color: #2f7953;
}

.booking-status-completed {
    background: #ecefeD;
    color: #5c6964;
}

.booking-status-cancelled,
.booking-status-declined {
    background: #fbe8e5;
    color: #a34436;
}

.booking-status-default {
    background: #ecefed;
    color: #5c6964;
}

.my-booking-details {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.my-booking-detail {
    padding: 14px 16px;
    background: #f8f6f1;
    border-radius: 14px;
}

.my-booking-detail-label {
    display: block;
    margin-bottom: 5px;
    color: #89928e;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.my-booking-detail strong {
    color: #33453e;
    font-size: 0.92rem;
    line-height: 1.45;
}

.my-booking-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 26px;
    background: #fbfaf7;
    border-top: 1px solid rgba(21, 63, 49, 0.07);
}

.my-booking-reference {
    color: #88918d;
    font-size: 0.78rem;
    font-weight: 600;
}

.my-booking-link {
    color: #173d31;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

    .my-booking-link:hover {
        text-decoration: underline;
    }

.my-bookings-empty {
    padding: 52px 30px;
    text-align: center;
}

.my-bookings-empty-icon {
    margin-bottom: 14px;
    font-size: 2.4rem;
}

.my-bookings-empty h2 {
    margin: 0 0 10px;
    color: #173d31;
    font-family: "Playfair Display", Georgia, serif;
}

.my-bookings-empty p {
    margin: 0 0 22px;
    color: #78847f;
}

@media (max-width: 900px) {
    .my-booking-details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .my-bookings-hero {
        padding: 28px 22px;
        border-radius: 18px;
    }

        .my-bookings-hero h1 {
            font-size: 2rem;
        }

    .my-booking-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .my-booking-details {
        grid-template-columns: 1fr;
    }

    .my-booking-card-main {
        padding: 21px 19px;
    }

    .my-booking-card-footer {
        align-items: flex-start;
        flex-direction: column;
        padding: 15px 19px;
    }
}

/* =========================================================
   SIDEBAR NAVIGATION REFINEMENTS
========================================================= */

.sidebar-brand {
    display: flex;
    justify-content: center;
    padding: 28px 24px 30px;
}

.sidebar-logo {
    width: 178px;
    max-width: 100%;
    height: auto;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.sidebar-brand:hover .sidebar-logo {
    transform: scale(1.02);
    opacity: 0.96;
}


/* =========================================================
   NAVIGATION SECTIONS
========================================================= */

.sidebar-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 26px 20px 10px;
    color: #d8b66d;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

    .sidebar-section::after {
        content: "";
        flex: 1;
        height: 1px;
        background: rgba(216, 182, 109, 0.3);
    }

    .sidebar-section:first-child {
        margin-top: 8px;
    }


/* =========================================================
   NAVIGATION LINKS
========================================================= */

.sidebar-nav-link,
.sidebar-nav > a,
.sidebar-logout-button {
    position: relative;
    display: flex;
    width: calc(100% - 24px);
    min-height: 46px;
    align-items: center;
    gap: 13px;
    margin: 2px 12px;
    padding: 11px 16px;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 11px;
    color: rgba(255, 255, 255, 0.88);
    font-family: inherit;
    font-size: 0.94rem;
    font-weight: 500;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

    .sidebar-nav-link:hover,
    .sidebar-nav > a:hover,
    .sidebar-logout-button:hover {
        background: rgba(255, 255, 255, 0.07);
        color: #ffffff;
        transform: translateX(3px);
    }

    .sidebar-nav-link.active {
        background: linear-gradient( 90deg, rgba(216, 182, 109, 0.19), rgba(216, 182, 109, 0.08) );
        color: #ffffff;
        box-shadow: inset 3px 0 0 #d8b66d, 0 5px 18px rgba(0, 0, 0, 0.08);
    }

        .sidebar-nav-link.active::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 14px;
            width: 6px;
            height: 6px;
            background: #d8b66d;
            border-radius: 50%;
            transform: translateY(-50%);
        }

.sidebar-nav-icon {
    display: inline-flex;
    width: 22px;
    min-width: 22px;
    align-items: center;
    justify-content: center;
    font-size: 0.94rem;
    line-height: 1;
    transition: transform 0.18s ease;
}

.sidebar-nav-link:hover .sidebar-nav-icon,
.sidebar-nav > a:hover .sidebar-nav-icon,
.sidebar-logout-button:hover .sidebar-nav-icon {
    transform: scale(1.08);
}


/* =========================================================
   LOGOUT
========================================================= */

.sidebar-logout-form {
    margin: 0;
    padding: 0;
}

.sidebar-logout-button {
    color: rgba(255, 255, 255, 0.82);
}


/* =========================================================
   SIDEBAR SPACING
========================================================= */

.sidebar-nav {
    padding-bottom: 28px;
}

    .sidebar-nav > a:last-of-type {
        margin-bottom: 0;
    }


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 768px) {
    .sidebar-brand {
        padding: 22px 20px 24px;
    }

    .sidebar-logo {
        width: 158px;
    }

    .sidebar-section {
        margin-top: 22px;
    }

    .sidebar-nav-link,
    .sidebar-nav > a,
    .sidebar-logout-button {
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }
}

/* =========================================================
   PREMIUM PUBLIC PLACE HERO
========================================================= */

.public-place-navigation {
    margin-bottom: 14px;
}

.public-place-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a67d31;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.18s ease, transform 0.18s ease;
}

    .public-place-back-link:hover {
        color: #153f31;
        transform: translateX(-3px);
    }

.public-place-premium-hero {
    overflow: hidden;
    margin-bottom: 20px;
    background: #ffffff;
    border: 1px solid rgba(21, 63, 49, 0.09);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(21, 63, 49, 0.11);
}

.public-place-premium-image {
    position: relative;
    display: block;
    width: 100%;
    min-height: 520px;
    padding: 0;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

    .public-place-premium-image::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(7, 28, 21, 0.9) 0%, rgba(7, 28, 21, 0.65) 39%, rgba(7, 28, 21, 0.14) 70%, rgba(7, 28, 21, 0.05) 100% );
    }

    .public-place-premium-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 0deg, rgba(5, 21, 16, 0.42) 0%, transparent 42% );
    }

.public-place-premium-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0);
    transition: background 0.25s ease;
}

.public-place-premium-image:hover
.public-place-premium-overlay {
    background: rgba(255, 255, 255, 0.035);
}

.public-place-premium-image:focus-visible {
    outline: 3px solid #d5b36b;
    outline-offset: 4px;
}

.public-place-premium-content {
    position: absolute;
    top: 50%;
    left: 48px;
    z-index: 2;
    display: flex;
    width: min(600px, calc(100% - 96px));
    flex-direction: column;
    align-items: flex-start;
    transform: translateY(-50%);
}

.public-place-premium-eyebrow {
    margin-bottom: 13px;
    color: #e2bd68;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.public-place-premium-title {
    margin-bottom: 10px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 0.98;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.public-place-premium-location {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 600;
}

.public-place-premium-description {
    max-width: 570px;
    color: rgba(255, 255, 255, 0.91);
    font-size: 17px;
    line-height: 1.65;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.public-place-premium-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.public-place-premium-facility {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.public-place-photo-action {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 17px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 999px;
    color: #153f31;
    font-size: 14px;
    font-weight: 750;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: background 0.2s ease, transform 0.2s ease;
}

.public-place-premium-image:hover
.public-place-photo-action {
    background: #ffffff;
    transform: translateY(-2px);
}

.public-place-hero-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 22px 18px 28px;
    background: #ffffff;
}

.public-place-hero-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.public-place-reassurance-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #66746e;
    font-size: 13px;
    font-weight: 600;
}

    .public-place-reassurance-item > span {
        display: inline-flex;
        width: 19px;
        height: 19px;
        align-items: center;
        justify-content: center;
        background: #edf5f0;
        border-radius: 999px;
        color: #287151;
        font-size: 11px;
        font-weight: 800;
    }

.public-place-hero-button {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 190px;
}

/* =========================================================
   COOKIE CONSENT
========================================================= */

.cookie-consent[hidden],
.cookie-preferences[hidden],
.cookie-preferences-backdrop[hidden] {
    display: none !important;
}

.cookie-consent {
    position: fixed;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 2000;
    opacity: 0;
    transform: translateY(24px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

    .cookie-consent.cookie-consent-visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

.cookie-consent-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
    width: min(1080px, 100%);
    margin: 0 auto;
    padding: 25px 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    background: var(--hp-forest);
    color: white;
    box-shadow: 0 24px 70px rgba(8, 32, 24, 0.32);
}

.cookie-consent-copy {
    max-width: 700px;
}

.cookie-consent-eyebrow {
    display: block;
    margin-bottom: 6px;
    color: #d5bd7d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cookie-consent-copy h2,
.cookie-preferences-header h2 {
    margin: 0 0 8px;
    font-family: "Playfair Display", serif;
}

.cookie-consent-copy h2 {
    color: white;
    font-size: 26px;
}

.cookie-consent-copy p {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.6;
}

.cookie-consent-copy a {
    color: #d5bd7d;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

    .cookie-consent-copy a:hover {
        color: white;
        text-decoration: underline;
    }

.cookie-consent-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 9px;
    min-width: 340px;
}

.cookie-button {
    min-height: 43px;
    padding: 10px 17px;
    border-radius: 999px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

    .cookie-button:hover {
        transform: translateY(-1px);
    }

    .cookie-button:focus-visible,
    .cookie-preferences-close:focus-visible,
    .app-footer-cookie-link:focus-visible {
        outline: 3px solid rgba(213, 189, 125, 0.55);
        outline-offset: 3px;
    }

.cookie-button-primary {
    border: 1px solid #d5bd7d;
    background: #d5bd7d;
    color: var(--hp-forest);
}

    .cookie-button-primary:hover {
        border-color: white;
        background: white;
    }

.cookie-button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

    .cookie-button-secondary:hover {
        background: rgba(255, 255, 255, 0.16);
    }

.cookie-button-link {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 4px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
}

    .cookie-button-link:hover {
        color: white;
        text-decoration: underline;
        transform: none;
    }

.cookie-preferences-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2005;
    opacity: 0;
    background: rgba(7, 25, 19, 0.62);
    backdrop-filter: blur(4px);
    transition: opacity 0.18s ease;
}

    .cookie-preferences-backdrop.cookie-preferences-visible {
        opacity: 1;
    }

.cookie-preferences {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 2010;
    width: min(620px, calc(100% - 32px));
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    border: 1px solid var(--hp-grey-200);
    border-radius: 24px;
    background: white;
    box-shadow: 0 28px 90px rgba(7, 28, 21, 0.34);
    opacity: 0;
    transform: translate(-50%, -47%) scale(0.98);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

    .cookie-preferences.cookie-preferences-visible {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

.cookie-preferences-open {
    overflow: hidden;
}

.cookie-preferences-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 26px 20px;
    border-bottom: 1px solid var(--hp-grey-200);
}

    .cookie-preferences-header h2 {
        color: var(--hp-forest);
        font-size: 28px;
    }

.cookie-preferences-close {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid var(--hp-grey-200);
    border-radius: 50%;
    background: var(--hp-cream);
    color: var(--hp-forest);
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}

.cookie-preferences-content {
    padding: 0 26px;
}

.cookie-preference-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid var(--hp-grey-200);
}

    .cookie-preference-row:last-child {
        border-bottom: 0;
    }

.cookie-preference-copy strong,
.cookie-preference-copy label {
    display: block;
    margin-bottom: 5px;
    color: var(--hp-forest);
    font-size: 14px;
    font-weight: 750;
}

.cookie-preference-copy p {
    margin: 0;
    color: var(--hp-grey-600);
    font-size: 12px;
    line-height: 1.55;
}

.cookie-always-active {
    padding: 7px 10px;
    border-radius: 999px;
    background: #e4f2e7;
    color: #28623a;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.cookie-toggle {
    position: relative;
    display: inline-flex;
    flex: 0 0 52px;
    width: 52px;
    height: 30px;
    cursor: pointer;
}

    .cookie-toggle input {
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;
    }

.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #ccd4d0;
    transition: background-color 0.18s ease;
}

    .cookie-toggle-slider::before {
        content: "";
        position: absolute;
        top: 4px;
        left: 4px;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: white;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
        transition: transform 0.18s ease;
    }

.cookie-toggle input:checked +
.cookie-toggle-slider {
    background: var(--hp-forest);
}

    .cookie-toggle input:checked +
    .cookie-toggle-slider::before {
        transform: translateX(22px);
    }

.cookie-toggle input:focus-visible +
.cookie-toggle-slider {
    outline: 3px solid rgba(184, 144, 61, 0.32);
    outline-offset: 3px;
}

.cookie-preferences-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px 26px 24px;
    border-top: 1px solid var(--hp-grey-200);
    background: var(--hp-cream);
}

    .cookie-preferences-footer
    .cookie-button-secondary {
        border-color: var(--hp-grey-200);
        background: white;
        color: var(--hp-forest);
    }

.app-footer-cookie-link {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #466056;
    font: inherit;
    cursor: pointer;
}

    .app-footer-cookie-link:hover {
        color: #153f31;
        text-decoration: underline;
    }

@media (max-width: 760px) {
    .cookie-consent {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }

    .cookie-consent-inner {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 21px;
        border-radius: 19px;
    }

    .cookie-consent-actions {
        grid-template-columns: 1fr;
        min-width: 0;
    }

    .cookie-button-link {
        grid-column: auto;
    }

    .cookie-preferences-footer {
        flex-direction: column-reverse;
    }

        .cookie-preferences-footer
        .cookie-button {
            width: 100%;
        }
}

@media (max-width: 480px) {
    .cookie-consent-copy h2 {
        font-size: 23px;
    }

    .cookie-consent-copy p {
        font-size: 12px;
    }

    .cookie-preferences {
        width: calc(100% - 20px);
        max-height: calc(100vh - 20px);
        border-radius: 20px;
    }

    .cookie-preferences-header,
    .cookie-preferences-content {
        padding-right: 20px;
        padding-left: 20px;
    }

    .cookie-preference-row {
        gap: 15px;
    }

    .cookie-preferences-footer {
        padding: 18px 20px 21px;
    }
}

.hp-button-spinner {
    width: 1rem;
    height: 1rem;
    display: inline-block;
    margin-right: 0.5rem;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    vertical-align: -0.15rem;
    animation: hp-button-spin 0.7s linear infinite;
}

@keyframes hp-button-spin {
    to {
        transform: rotate(360deg);
    }
}

form[data-submitting="true"] {
    cursor: wait;
}

    form[data-submitting="true"] button[type="submit"] {
        cursor: wait;
    }

/* =========================================================
   HOST MARKETING LANDING PAGE
========================================================= */

.host-landing-page {
    --host-landing-forest: #123f31;
    --host-landing-forest-light: #1f5b46;
    --host-landing-green: #7ca63c;
    --host-landing-gold: #b58b3f;
    --host-landing-cream: #f6f2e8;
    --host-landing-soft: #f8faf7;
    --host-landing-text: #273b34;
    --host-landing-muted: #66736d;
    --host-landing-border: rgba(18, 63, 49, 0.12);
    --host-landing-shadow: 0 24px 60px rgba(18, 63, 49, 0.12);
    width: 100%;
    min-width: 0;
    margin: -28px;
    margin-bottom: 0;
    overflow: hidden;
    background: #ffffff;
    color: var(--host-landing-text);
    font-family: "Inter", sans-serif;
}

.host-landing-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.host-landing-header {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 88px;
    padding: 12px max(32px, calc((100vw - 1180px) / 2));
    border-bottom: 1px solid var(--host-landing-border);
    background: rgba(255, 255, 255, 0.96);
}

.host-landing-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

    .host-landing-brand img {
        display: block;
        width: 126px;
        height: 62px;
        object-fit: contain;
    }

.host-landing-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.host-landing-header-link {
    color: var(--host-landing-forest);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

    .host-landing-header-link:hover {
        color: var(--host-landing-gold);
    }

.host-landing-header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--host-landing-forest);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.18s ease, background-color 0.18s ease;
}

    .host-landing-header-button:hover {
        transform: translateY(-1px);
        background: var(--host-landing-forest-light);
        color: #ffffff;
    }


/* =========================================================
   SHARED TYPOGRAPHY AND BUTTONS
========================================================= */

.host-landing-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: var(--host-landing-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.host-landing-primary-button,
.host-landing-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.host-landing-primary-button {
    background: var(--host-landing-forest);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(18, 63, 49, 0.22);
}

    .host-landing-primary-button:hover {
        transform: translateY(-2px);
        background: var(--host-landing-forest-light);
        color: #ffffff;
        box-shadow: 0 18px 36px rgba(18, 63, 49, 0.26);
    }

    .host-landing-primary-button span {
        font-size: 18px;
        line-height: 1;
    }

.host-landing-secondary-button {
    border: 1px solid var(--host-landing-border);
    background: rgba(255, 255, 255, 0.75);
    color: var(--host-landing-forest);
}

    .host-landing-secondary-button:hover {
        transform: translateY(-2px);
        background: #ffffff;
        color: var(--host-landing-forest);
    }


/* =========================================================
   HERO
========================================================= */

.host-landing-hero {
    position: relative;
    padding: 82px 0 88px;
    background: radial-gradient( circle at 18% 10%, rgba(181, 139, 63, 0.12), transparent 36% ), linear-gradient( 145deg, #f6f3e9 0%, #eef4ec 58%, #e8f0e8 100% );
}

    .host-landing-hero::after {
        content: "";
        position: absolute;
        right: -140px;
        bottom: -180px;
        width: 480px;
        height: 480px;
        border-radius: 50%;
        background: rgba(124, 166, 60, 0.09);
    }

.host-landing-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    gap: 72px;
    align-items: center;
}

.host-landing-hero-copy h1 {
    max-width: 690px;
    margin: 0;
    color: var(--host-landing-forest);
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 5.6vw, 76px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.host-landing-hero-intro {
    max-width: 670px;
    margin: 26px 0 0;
    color: var(--host-landing-muted);
    font-size: 18px;
    line-height: 1.72;
}

.host-landing-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.host-landing-hero-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 22px;
    margin-top: 27px;
}

    .host-landing-hero-reassurance span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: var(--host-landing-forest);
        font-size: 13px;
        font-weight: 600;
    }

    .host-landing-hero-reassurance strong {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 21px;
        height: 21px;
        border-radius: 50%;
        background: rgba(124, 166, 60, 0.16);
        color: #5d812b;
        font-size: 11px;
    }


/* =========================================================
   HERO LANDSCAPE ILLUSTRATION
========================================================= */

.host-landing-hero-visual {
    min-width: 0;
}

.host-landing-visual-scene {
    position: relative;
    min-height: 510px;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.76);
    border-radius: 38px;
    background: linear-gradient( 180deg, #dce9dd 0%, #f4e6c1 44%, #91ae67 45%, #597746 100% );
    box-shadow: var(--host-landing-shadow);
}

.host-landing-sun {
    position: absolute;
    top: 68px;
    right: 74px;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: rgba(255, 239, 181, 0.95);
    box-shadow: 0 0 60px rgba(255, 227, 139, 0.82);
}

.host-landing-hill {
    position: absolute;
    right: -70px;
    bottom: 60px;
    left: -70px;
    border-radius: 50% 50% 0 0;
}

.host-landing-hill-back {
    height: 235px;
    background: #78945c;
    transform: rotate(-4deg);
}

.host-landing-hill-front {
    bottom: -88px;
    height: 330px;
    background: #496a3c;
    transform: rotate(5deg);
}

.host-landing-tree {
    position: absolute;
    left: 52px;
    bottom: 132px;
    width: 145px;
    height: 260px;
}

.host-landing-tree-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 145px;
    height: 180px;
    border-radius: 52% 48% 46% 54%;
    background: radial-gradient( circle at 35% 30%, #6f9251, #3d673d 72% );
    box-shadow: 24px 18px 0 -10px #476f42, -19px 27px 0 -14px #5d8349;
}

.host-landing-tree-trunk {
    position: absolute;
    bottom: 0;
    left: 64px;
    width: 25px;
    height: 130px;
    border-radius: 12px;
    background: #76583b;
}

.host-landing-cabin {
    position: absolute;
    right: 78px;
    bottom: 135px;
    width: 145px;
    height: 114px;
}

.host-landing-cabin-roof {
    position: absolute;
    top: 0;
    left: -15px;
    width: 175px;
    height: 54px;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    background: #3d4f39;
}

.host-landing-cabin-body {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 72px;
    background: #aa7d4f;
}

.host-landing-cabin-door {
    position: absolute;
    bottom: 0;
    left: 55px;
    width: 35px;
    height: 55px;
    background: #604a35;
}

.host-landing-visual-card {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: min(310px, calc(100% - 44px));
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 22px 44px rgba(17, 50, 39, 0.2);
    backdrop-filter: blur(12px);
}

.host-landing-visual-card-label {
    display: block;
    margin-bottom: 5px;
    color: var(--host-landing-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.host-landing-visual-card > strong {
    display: block;
    margin-bottom: 13px;
    color: var(--host-landing-forest);
    font-family: "Playfair Display", serif;
    font-size: 21px;
}

.host-landing-visual-card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 0;
    border-top: 1px solid var(--host-landing-border);
    color: var(--host-landing-muted);
    font-size: 12px;
}

    .host-landing-visual-card-row b {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: rgba(124, 166, 60, 0.16);
        color: #5f842d;
    }


/* =========================================================
   TRUST STRIP
========================================================= */

.host-landing-trust-strip {
    border-top: 1px solid var(--host-landing-border);
    border-bottom: 1px solid var(--host-landing-border);
    background: #ffffff;
}

.host-landing-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

    .host-landing-trust-grid > div {
        display: grid;
        gap: 4px;
        padding: 28px 26px;
        border-right: 1px solid var(--host-landing-border);
        text-align: center;
    }

        .host-landing-trust-grid > div:last-child {
            border-right: 0;
        }

    .host-landing-trust-grid strong {
        color: var(--host-landing-forest);
        font-family: "Playfair Display", serif;
        font-size: 23px;
    }

    .host-landing-trust-grid span {
        color: var(--host-landing-muted);
        font-size: 12px;
    }


/* =========================================================
   SHARED SECTIONS
========================================================= */

.host-landing-section {
    padding: 100px 0;
}

.host-landing-section-soft {
    background: var(--host-landing-soft);
}

.host-landing-section-heading {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

    .host-landing-section-heading h2,
    .host-landing-platform-copy h2,
    .host-landing-founder-grid h2,
    .host-landing-faq-intro h2,
    .host-landing-final-cta h2 {
        margin: 0;
        color: var(--host-landing-forest);
        font-family: "Playfair Display", serif;
        font-size: clamp(36px, 4.5vw, 56px);
        font-weight: 600;
        line-height: 1.06;
        letter-spacing: -0.025em;
    }

    .host-landing-section-heading p,
    .host-landing-platform-copy > p,
    .host-landing-founder-grid > div > p,
    .host-landing-faq-intro > p {
        margin: 20px 0 0;
        color: var(--host-landing-muted);
        font-size: 16px;
        line-height: 1.75;
    }


/* =========================================================
   PLACE TYPES
========================================================= */

.host-landing-place-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.host-landing-place-card {
    position: relative;
    min-width: 0;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--host-landing-border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(18, 63, 49, 0.07);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

    .host-landing-place-card::after {
        content: "";
        position: absolute;
        right: -42px;
        bottom: -54px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: rgba(124, 166, 60, 0.08);
    }

    .host-landing-place-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 42px rgba(18, 63, 49, 0.12);
    }

.host-landing-place-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 21px;
    border-radius: 17px;
    background: var(--host-landing-cream);
    font-size: 25px;
}

.host-landing-place-card h3 {
    margin: 0 0 10px;
    color: var(--host-landing-forest);
    font-family: "Playfair Display", serif;
    font-size: 24px;
}

.host-landing-place-card p {
    margin: 0;
    color: var(--host-landing-muted);
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   STEPS
========================================================= */

.host-landing-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.host-landing-step {
    position: relative;
    padding: 34px 30px 32px;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(18, 63, 49, 0.08);
}

.host-landing-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 25px;
    border-radius: 50%;
    background: var(--host-landing-forest);
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 21px;
    font-weight: 700;
}

.host-landing-step h3 {
    margin: 0 0 10px;
    color: var(--host-landing-forest);
    font-family: "Playfair Display", serif;
    font-size: 25px;
}

.host-landing-step p {
    margin: 0;
    color: var(--host-landing-muted);
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   PLATFORM SECTION
========================================================= */

.host-landing-platform-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
    gap: 78px;
    align-items: center;
}

.host-landing-platform-copy h2 {
    max-width: 600px;
}

.host-landing-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

    .host-landing-feature-list > div {
        display: grid;
        grid-template-columns: 45px minmax(0, 1fr);
        gap: 13px;
        align-items: start;
    }

        .host-landing-feature-list > div > span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 43px;
            height: 43px;
            border-radius: 14px;
            background: var(--host-landing-cream);
            font-size: 20px;
        }

    .host-landing-feature-list strong {
        display: block;
        margin-bottom: 4px;
        color: var(--host-landing-forest);
        font-size: 13px;
    }

    .host-landing-feature-list p {
        margin: 0;
        color: var(--host-landing-muted);
        font-size: 11px;
        line-height: 1.55;
    }


/* =========================================================
   DASHBOARD MOCK-UP
========================================================= */

.host-landing-dashboard-preview {
    overflow: hidden;
    border: 8px solid #ffffff;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--host-landing-shadow);
}

.host-landing-browser-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 48px;
    padding: 0 17px;
    background: #eef0ec;
}

    .host-landing-browser-bar > span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #c1c8c3;
    }

    .host-landing-browser-bar > div {
        flex: 1;
        max-width: 250px;
        margin-left: 11px;
        padding: 7px 13px;
        border-radius: 999px;
        background: #ffffff;
        color: #8a948e;
        font-size: 9px;
    }

.host-landing-dashboard-shell {
    display: grid;
    grid-template-columns: 142px minmax(0, 1fr);
    min-height: 440px;
}

.host-landing-dashboard-menu {
    display: grid;
    align-content: start;
    gap: 7px;
    padding: 25px 15px;
    background: var(--host-landing-forest);
}

    .host-landing-dashboard-menu strong {
        margin-bottom: 21px;
        color: #ffffff;
        font-family: "Playfair Display", serif;
        font-size: 15px;
    }

    .host-landing-dashboard-menu span {
        padding: 9px 11px;
        border-radius: 9px;
        color: rgba(255, 255, 255, 0.65);
        font-size: 9px;
    }

        .host-landing-dashboard-menu span.active {
            background: rgba(255, 255, 255, 0.12);
            color: #ffffff;
        }

.host-landing-dashboard-content {
    padding: 25px;
    background: #f7f8f5;
}

.host-landing-dashboard-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 19px;
}

    .host-landing-dashboard-heading div {
        display: grid;
        gap: 4px;
    }

    .host-landing-dashboard-heading span {
        color: var(--host-landing-gold);
        font-size: 7px;
        font-weight: 800;
        letter-spacing: 0.13em;
    }

    .host-landing-dashboard-heading strong {
        color: var(--host-landing-forest);
        font-family: "Playfair Display", serif;
        font-size: 23px;
    }

    .host-landing-dashboard-heading i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #ffffff;
        font-style: normal;
    }

.host-landing-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

    .host-landing-dashboard-stats > div {
        padding: 13px;
        border-radius: 13px;
        background: #ffffff;
    }

    .host-landing-dashboard-stats span {
        display: block;
        margin-bottom: 7px;
        color: #7a857f;
        font-size: 8px;
    }

    .host-landing-dashboard-stats strong {
        color: var(--host-landing-forest);
        font-family: "Playfair Display", serif;
        font-size: 21px;
    }

.host-landing-dashboard-panel,
.host-landing-dashboard-calendar {
    margin-top: 13px;
    padding: 16px;
    border-radius: 14px;
    background: #ffffff;
}

.host-landing-dashboard-panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

    .host-landing-dashboard-panel-title strong,
    .host-landing-dashboard-calendar > strong {
        color: var(--host-landing-forest);
        font-size: 10px;
    }

    .host-landing-dashboard-panel-title span {
        color: var(--host-landing-gold);
        font-size: 8px;
        font-weight: 700;
    }

.host-landing-dashboard-place {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.host-landing-dashboard-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 46px;
    border-radius: 10px;
    background: var(--host-landing-cream);
    font-size: 19px;
}

.host-landing-dashboard-place div {
    display: grid;
    gap: 5px;
}

.host-landing-dashboard-place strong {
    color: var(--host-landing-forest);
    font-size: 10px;
}

.host-landing-dashboard-place div span {
    color: #5d8b41;
    font-size: 8px;
    font-weight: 700;
}

.host-landing-dashboard-calendar > div {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
    margin-top: 13px;
}

.host-landing-dashboard-calendar span {
    padding: 11px 3px;
    border-radius: 8px;
    background: #f2f3ef;
    color: #86908a;
    font-size: 7px;
    font-weight: 700;
    text-align: center;
}

    .host-landing-dashboard-calendar span.available {
        background: #e3efde;
        color: #4d7a39;
    }


/* =========================================================
   FOUNDER SECTION
========================================================= */

.host-landing-founder-section {
    padding: 95px 0;
    background: radial-gradient( circle at top right, rgba(181, 139, 63, 0.14), transparent 34% ), var(--host-landing-forest);
}

.host-landing-founder-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 76px;
    align-items: center;
}

.host-landing-founder-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin-bottom: 20px;
    padding: 7px 14px;
    border: 1px solid rgba(215, 190, 126, 0.38);
    border-radius: 999px;
    background: rgba(215, 190, 126, 0.11);
    color: #e2ca8c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.host-landing-founder-grid h2 {
    color: #ffffff;
}

.host-landing-founder-grid > div > p {
    color: rgba(255, 255, 255, 0.72);
}

.host-landing-founder-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

    .host-landing-founder-benefits > div {
        padding: 23px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.07);
    }

    .host-landing-founder-benefits span {
        display: block;
        margin-bottom: 15px;
        color: #ddc27f;
        font-family: "Playfair Display", serif;
        font-size: 20px;
    }

    .host-landing-founder-benefits p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
        font-size: 12px;
        line-height: 1.6;
    }


/* =========================================================
   HOST CONTROL CARDS
========================================================= */

.host-landing-control-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

    .host-landing-control-grid article {
        padding: 28px 25px;
        border: 1px solid var(--host-landing-border);
        border-radius: 22px;
        background: #ffffff;
    }

        .host-landing-control-grid article > span {
            display: block;
            margin-bottom: 20px;
            font-size: 27px;
        }

    .host-landing-control-grid h3 {
        margin: 0 0 9px;
        color: var(--host-landing-forest);
        font-family: "Playfair Display", serif;
        font-size: 22px;
    }

    .host-landing-control-grid p {
        margin: 0;
        color: var(--host-landing-muted);
        font-size: 12px;
        line-height: 1.6;
    }


/* =========================================================
   FAQ
========================================================= */

.host-landing-faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1.28fr);
    gap: 80px;
    align-items: start;
}

.host-landing-faq-intro {
    position: sticky;
    top: 30px;
}

.host-landing-faq-list {
    display: grid;
    gap: 12px;
}

    .host-landing-faq-list details {
        overflow: hidden;
        border: 1px solid var(--host-landing-border);
        border-radius: 18px;
        background: #ffffff;
    }

    .host-landing-faq-list summary {
        position: relative;
        padding: 21px 55px 21px 22px;
        color: var(--host-landing-forest);
        font-size: 14px;
        font-weight: 700;
        list-style: none;
        cursor: pointer;
    }

        .host-landing-faq-list summary::-webkit-details-marker {
            display: none;
        }

        .host-landing-faq-list summary::after {
            content: "+";
            position: absolute;
            top: 50%;
            right: 21px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 27px;
            height: 27px;
            border-radius: 50%;
            background: var(--host-landing-cream);
            color: var(--host-landing-forest);
            font-size: 18px;
            font-weight: 500;
            transform: translateY(-50%);
        }

    .host-landing-faq-list details[open] summary::after {
        content: "−";
    }

    .host-landing-faq-list details p {
        margin: 0;
        padding: 0 22px 22px;
        color: var(--host-landing-muted);
        font-size: 13px;
        line-height: 1.7;
    }


/* =========================================================
   FINAL CALL TO ACTION
========================================================= */

.host-landing-final-cta {
    padding: 100px 0;
    background: radial-gradient( circle at top left, rgba(215, 190, 126, 0.16), transparent 30% ), linear-gradient( 145deg, #123f31, #1d5944 );
    text-align: center;
}

.host-landing-final-cta-inner {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.host-landing-final-cta h2 {
    max-width: 760px;
    color: #ffffff;
}

.host-landing-final-cta p {
    max-width: 620px;
    margin: 18px auto 30px;
    color: rgba(255, 255, 255, 0.73);
    font-size: 16px;
    line-height: 1.65;
}

.host-landing-primary-button-light {
    background: #ffffff;
    color: var(--host-landing-forest);
    box-shadow: 0 15px 34px rgba(0, 0, 0, 0.18);
}

    .host-landing-primary-button-light:hover {
        background: var(--host-landing-cream);
        color: var(--host-landing-forest);
    }

.host-landing-final-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 11px;
}


/* =========================================================
   MOBILE CTA
========================================================= */

.host-landing-mobile-cta {
    display: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .host-landing-page {
        margin: -24px;
        margin-bottom: 0;
    }

    .host-landing-hero-grid,
    .host-landing-platform-grid,
    .host-landing-founder-grid {
        gap: 46px;
    }

    .host-landing-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    }

    .host-landing-platform-grid {
        grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.2fr);
    }
}

@media (max-width: 950px) {

    .host-landing-hero {
        padding: 64px 0 70px;
    }

    .host-landing-hero-grid,
    .host-landing-platform-grid,
    .host-landing-founder-grid,
    .host-landing-faq-layout {
        grid-template-columns: 1fr;
    }

    .host-landing-hero-copy {
        text-align: center;
    }

        .host-landing-hero-copy h1,
        .host-landing-hero-intro {
            margin-right: auto;
            margin-left: auto;
        }

    .host-landing-hero-actions,
    .host-landing-hero-reassurance {
        justify-content: center;
    }

    .host-landing-hero-visual {
        width: min(620px, 100%);
        margin: 0 auto;
    }

    .host-landing-place-grid,
    .host-landing-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .host-landing-control-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .host-landing-platform-copy {
        text-align: center;
    }

        .host-landing-platform-copy h2,
        .host-landing-platform-copy > p {
            margin-right: auto;
            margin-left: auto;
        }

    .host-landing-feature-list {
        text-align: left;
    }

    .host-landing-dashboard-preview {
        width: min(720px, 100%);
        margin: 0 auto;
    }

    .host-landing-founder-grid > div:first-child {
        text-align: center;
    }

    .host-landing-founder-grid h2,
    .host-landing-founder-grid > div > p {
        margin-right: auto;
        margin-left: auto;
    }

    .host-landing-faq-intro {
        position: static;
        max-width: 700px;
        text-align: center;
        margin: 0 auto;
    }

    .host-landing-faq-list {
        width: min(780px, 100%);
        margin: 0 auto;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .host-landing-page {
        margin: 0;
        padding-bottom: 78px;
    }

    .host-landing-container {
        width: min(100% - 32px, 1180px);
    }

    .host-landing-header {
        min-height: 68px;
        padding: 7px 17px;
    }

    .host-landing-brand img {
        width: 104px;
        height: 52px;
    }

    .host-landing-header-actions {
        gap: 10px;
    }

    .host-landing-header-link {
        display: none;
    }

    .host-landing-header-button {
        min-height: 39px;
        padding: 9px 15px;
        font-size: 11px;
    }

    .host-landing-hero {
        padding: 51px 0 55px;
    }

    .host-landing-eyebrow {
        font-size: 10px;
    }

    .host-landing-hero-copy h1 {
        font-size: 48px;
    }

    .host-landing-hero-intro {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.6;
    }

    .host-landing-hero-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .host-landing-primary-button,
    .host-landing-secondary-button {
        width: 100%;
    }

    .host-landing-hero-reassurance {
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }

    .host-landing-visual-scene {
        min-height: 420px;
        border-width: 7px;
        border-radius: 28px;
    }

    .host-landing-tree {
        left: 20px;
        transform: scale(0.8);
        transform-origin: bottom left;
    }

    .host-landing-cabin {
        right: 30px;
        transform: scale(0.82);
        transform-origin: bottom right;
    }

    .host-landing-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .host-landing-trust-grid > div {
            border-bottom: 1px solid var(--host-landing-border);
        }

            .host-landing-trust-grid > div:nth-child(2) {
                border-right: 0;
            }

            .host-landing-trust-grid > div:nth-child(3),
            .host-landing-trust-grid > div:nth-child(4) {
                border-bottom: 0;
            }

    .host-landing-section,
    .host-landing-founder-section,
    .host-landing-final-cta {
        padding: 72px 0;
    }

    .host-landing-section-heading {
        margin-bottom: 38px;
    }

        .host-landing-section-heading h2,
        .host-landing-platform-copy h2,
        .host-landing-founder-grid h2,
        .host-landing-faq-intro h2,
        .host-landing-final-cta h2 {
            font-size: 39px;
        }

    .host-landing-place-grid,
    .host-landing-steps,
    .host-landing-founder-benefits,
    .host-landing-control-grid {
        grid-template-columns: 1fr;
    }

    .host-landing-feature-list {
        grid-template-columns: 1fr;
    }

    .host-landing-dashboard-shell {
        grid-template-columns: 105px minmax(0, 1fr);
        min-height: 390px;
    }

    .host-landing-dashboard-menu {
        padding: 20px 10px;
    }

    .host-landing-dashboard-content {
        padding: 17px;
    }

    .host-landing-dashboard-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .host-landing-mobile-cta {
        position: fixed;
        right: 10px;
        bottom: 10px;
        left: 10px;
        z-index: 1200;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 12px 13px 12px 17px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 18px;
        background: rgba(18, 63, 49, 0.97);
        box-shadow: 0 14px 34px rgba(18, 63, 49, 0.3);
        backdrop-filter: blur(12px);
    }

        .host-landing-mobile-cta > div {
            display: grid;
            gap: 3px;
        }

        .host-landing-mobile-cta strong {
            color: #ffffff;
            font-size: 12px;
        }

        .host-landing-mobile-cta span {
            color: rgba(255, 255, 255, 0.68);
            font-size: 9px;
        }

        .host-landing-mobile-cta a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 39px;
            padding: 9px 15px;
            border-radius: 999px;
            background: #ffffff;
            color: var(--host-landing-forest);
            font-size: 11px;
            font-weight: 800;
            text-decoration: none;
            white-space: nowrap;
        }
}

@media (max-width: 520px) {

    .host-landing-hero-copy h1 {
        font-size: 42px;
    }

    .host-landing-visual-scene {
        min-height: 380px;
    }

    .host-landing-visual-card {
        right: 13px;
        bottom: 13px;
        left: 13px;
        width: auto;
    }

    .host-landing-trust-grid strong {
        font-size: 20px;
    }

    .host-landing-trust-grid > div {
        padding: 22px 13px;
    }

    .host-landing-place-card,
    .host-landing-step {
        padding: 25px 22px;
    }

    .host-landing-dashboard-preview {
        border-width: 5px;
        border-radius: 19px;
    }

    .host-landing-dashboard-shell {
        grid-template-columns: 80px minmax(0, 1fr);
    }

    .host-landing-dashboard-menu strong {
        font-size: 11px;
    }

    .host-landing-dashboard-menu span {
        padding: 8px 6px;
        font-size: 7px;
    }

    .host-landing-dashboard-content {
        padding: 13px;
    }

    .host-landing-dashboard-heading strong {
        font-size: 18px;
    }

    .host-landing-dashboard-stats {
        gap: 6px;
    }

        .host-landing-dashboard-stats > div {
            padding: 9px;
        }

        .host-landing-dashboard-stats strong {
            font-size: 16px;
        }
}

/* =========================================================
   HOST LANDING REAL HERO PHOTOGRAPH
========================================================= */

.host-landing-hero-photo {
    position: relative;
    min-height: 510px;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.78);
    border-radius: 38px;
    background: var(--host-landing-forest);
    box-shadow: var(--host-landing-shadow);
}

    .host-landing-hero-photo::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, rgba(8, 34, 25, 0.02) 30%, rgba(8, 34, 25, 0.72) 100% );
        pointer-events: none;
    }

    .host-landing-hero-photo > img {
        display: block;
        width: 100%;
        height: 510px;
        object-fit: cover;
        object-position: center;
        transition: transform 0.7s ease;
    }

    .host-landing-hero-photo:hover > img {
        transform: scale(1.025);
    }

.host-landing-photo-message {
    position: absolute;
    right: 28px;
    bottom: 27px;
    left: 28px;
    z-index: 2;
    padding: 23px 25px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 21px;
    background: rgba(15, 54, 41, 0.76);
    color: #ffffff;
    backdrop-filter: blur(12px);
}

    .host-landing-photo-message > span {
        display: block;
        margin-bottom: 7px;
        color: #dec681;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 0.15em;
    }

    .host-landing-photo-message > strong {
        display: block;
        font-family: "Playfair Display", serif;
        font-size: 25px;
        line-height: 1.15;
    }

    .host-landing-photo-message > p {
        max-width: 390px;
        margin: 8px 0 0;
        color: rgba(255, 255, 255, 0.76);
        font-size: 12px;
        line-height: 1.55;
    }

@media (max-width: 768px) {
    .host-landing-hero-photo {
        min-height: 420px;
        border-width: 7px;
        border-radius: 28px;
    }

        .host-landing-hero-photo > img {
            height: 420px;
        }

    .host-landing-photo-message {
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 19px;
        border-radius: 17px;
    }

        .host-landing-photo-message > strong {
            font-size: 22px;
        }
}

@media (max-width: 520px) {
    .host-landing-hero-photo,
    .host-landing-hero-photo > img {
        min-height: 380px;
        height: 380px;
    }
}

/* =====================================================
   ADMIN SUPPORT MODE
===================================================== */

.support-mode-banner {
    position: relative;
    z-index: 5000;
    background: #fff3cd;
    border-bottom: 2px solid #d39e00;
    color: #4f3c00;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.support-mode-banner-content {
    width: min(100% - 32px, 1400px);
    margin: 0 auto;
    padding: 11px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

    .support-mode-banner-content > div {
        display: flex;
        flex-direction: column;
        gap: 2px;
        line-height: 1.35;
    }

        .support-mode-banner-content > div > strong {
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

    .support-mode-banner-content span {
        font-size: 0.92rem;
    }

.support-mode-end-form {
    margin: 0;
    flex: 0 0 auto;
}

.support-mode-end-button {
    border: 1px solid #806200;
    border-radius: 8px;
    background: #ffffff;
    color: #4f3c00;
    padding: 8px 13px;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
}

    .support-mode-end-button:hover {
        background: #fff9e8;
    }

    .support-mode-end-button:disabled {
        cursor: wait;
        opacity: 0.75;
    }

@media (max-width: 700px) {
    .support-mode-banner-content {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .support-mode-end-button {
        width: 100%;
    }

    .support-mode-end-form {
        width: 100%;
    }
}

/* =====================================================
   ADMIN HOSTS
===================================================== */

.admin-host-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.admin-host-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 820px;
}

    .admin-host-table th,
    .admin-host-table td {
        padding: 16px 14px;
        border-bottom: 1px solid #e8e4da;
        text-align: left;
        vertical-align: middle;
    }

    .admin-host-table th {
        color: #516159;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .admin-host-table tbody tr:last-child td {
        border-bottom: 0;
    }

.admin-host-identity {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

    .admin-host-identity > strong {
        color: #153f31;
    }

    .admin-host-identity > span:not(.hp-badge) {
        color: #6d746f;
        font-size: 0.88rem;
    }

.admin-host-actions {
    text-align: right !important;
}

    .admin-host-actions form {
        display: inline-block;
        margin: 0;
    }