.owner-main {
    padding-top: 0;
    padding-bottom: 56px;
    background: #faf9f7;
}

.owner-hero {
    position: relative;
    min-height: 62vh;
    margin: 0;
    padding: 150px 0 90px;
    background-image: url('https://images.unsplash.com/photo-1459767129954-1b1c1f9b9ace?auto=format&fit=crop&w=1920');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.owner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.36);
}

.owner-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    background: linear-gradient(to bottom, rgba(250, 249, 247, 0) 0%, #faf9f7 100%);
    z-index: 1;
}

.owner-hero-content {
    position: relative;
    z-index: 2;
}

.owner-hero h1 {
    margin: 0 0 12px;
    max-width: 760px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.3vw, 3.8rem);
    line-height: 1.2;
    color: #fff;
}

.owner-hero p {
    margin: 0;
    max-width: 720px;
    color: #f3f3f3;
    font-size: 1.05rem;
}

.owner-form-wrap {
    max-width: 920px;
    margin: -2.5rem auto 0;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 3;
}

.form-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    padding: 20px;
}

.form-head h2 {
    margin: 0 0 8px;
    font-size: 1.45rem;
}

.form-head p {
    margin: 6px 0;
    color: #444;
}

.form-head small {
    color: #6d6d6d;
}

#ownerListingForm {
    margin-top: 18px;
    display: grid;
    gap: 14px;
}

#ownerListingForm label span,
#ownerListingForm legend {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    color: #333;
}

#ownerListingForm input,
#ownerListingForm select,
#ownerListingForm textarea {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    padding: 11px 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    background: #fff;
}

#ownerListingForm fieldset {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 14px;
}

.grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.check {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .6rem;
    margin: 8px 0;
    font-weight: 500;
    background: #f8f7f4;
    border: 1px solid #ece9df;
    border-radius: 12px;
    padding: .65rem .8rem;
    transition: border-color .2s ease, background-color .2s ease;
}

.check:hover {
    border-color: #d7b56d;
    background: #fffaf1;
}

#ownerListingForm .check input[type="checkbox"],
#ownerListingForm .check input[type="radio"] {
    width: auto;
    margin: 0;
    flex: 0 0 auto;
}

.check span {
    display: inline !important;
    margin: 0 !important;
    font-weight: 500 !important;
    line-height: 1.45;
}

.consent-text {
    margin: 0 0 8px;
    color: #4a4a4a;
}

.submit-btn {
    border: none;
    background: #c17956;
    color: #fff;
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 600;
    cursor: pointer;
}

.submit-btn:hover {
    filter: brightness(0.96);
}

.form-notice {
    display: none;
    margin-top: 10px;
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.45;
}

.form-notice.success {
    display: block;
    color: #1f5130;
    background: #e8f6ed;
    border: 1px solid #bfe5cc;
}

.form-notice.error {
    display: block;
    color: #7a1f27;
    background: #fbe9eb;
    border: 1px solid #f2c8cd;
}

.footer {
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .owner-main {
        padding-top: 0;
    }

    .owner-hero {
        min-height: 46vh;
        padding: 120px 0 60px;
    }

    .owner-hero::after {
        height: 110px;
    }

    .owner-form-wrap {
        margin-top: -1.5rem;
    }

    .form-card {
        padding: 16px;
    }

    .grid-two {
        grid-template-columns: 1fr;
    }
}
