@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

/*
=========================================================
ZENITH LUXURY HOMES
SELL / LEASE YOUR PROPERTY
Page-specific CSS

This stylesheet is deliberately based on the typography,
spacing, proportions and responsive system used by
about.css.

Shared header/footer remain in css/style.css.
=========================================================
*/

body.sell-property-page {
    --about-ink: #11110f;
    --about-ink-soft: #1a1916;
    --about-cream: #f6f3ed;
    --about-paper: #fbfaf7;
    --about-white: #ffffff;
    --about-gold: #c7a15a;
    --about-gold-light: #d9bb7d;
    --about-taupe: #b8afa1;
    --about-muted: #77736b;
    --about-line: rgba(17, 17, 15, .12);
    --about-dark-line: rgba(255, 255, 255, .15);

    --about-serif: "Cormorant Garamond", Georgia, serif;
    --about-sans: "DM Sans", Arial, sans-serif;
    --about-container: 1320px;

    margin: 0;
    background: var(--about-paper);
    color: var(--about-ink);
    font-family: var(--about-sans);
    overflow-x: hidden;
}

.sell-property-page *,
.sell-property-page *::before,
.sell-property-page *::after {
    box-sizing: border-box;
}

.sell-property-page a {
    color: inherit;
    text-decoration: none;
}

.sell-property-page img {
    display: block;
    max-width: 100%;
}

.sell-property-page h1,
.sell-property-page h2,
.sell-property-page h3,
.sell-property-page p {
    margin-top: 0;
}

.sell-property-page h1,
.sell-property-page h2,
.sell-property-page h3 {
    font-family: var(--about-serif);
    font-weight: 400;
}

.sell-property-page p {
    margin-bottom: 0;
}

.sell-property-page main {
    width: 100%;
    display: block;
    overflow: visible;
}


/* =========================================================
   SHARED PAGE CONTAINER
========================================================= */

.sell-property-page .container {
    width: min(calc(100% - 64px), var(--about-container));
    margin: 0 auto;
}


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


.sell-property-hero {
    position: relative;
    min-height: min(880px, 100vh);
    height: 100vh;
    max-height: 980px;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(7, 7, 6, .88) 0%,
            rgba(7, 7, 6, .72) 38%,
            rgba(7, 7, 6, .38) 72%,
            rgba(7, 7, 6, .48) 100%
        ),
        url("../assets/images/luxury-cta-4.jpg") center center / cover no-repeat;
}
.sell-property-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            rgba(7, 7, 6, .90) 0%,
            rgba(7, 7, 6, .62) 45%,
            rgba(7, 7, 6, .22) 100%
        ),
        linear-gradient(
            0deg,
            rgba(7, 7, 6, .72) 0%,
            rgba(7, 7, 6, .12) 58%,
            transparent 100%
        );
    pointer-events: none;
}


/*
 * Keep the decorative rings, but make them much quieter.
 * The rings should support the composition rather than compete
 * with the typography.
 */
.sell-property-hero::before {
    content: "";
    position: absolute;
    z-index: 0;
    right: -125px;
    top: 50%;
    width: 690px;
    height: 690px;
    transform: translateY(-50%);
    border: 1px solid rgba(199, 161, 90, .10);
    border-radius: 50%;
    pointer-events: none;
}

.sell-property-hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: -25px;
    top: 50%;
    width: 500px;
    height: 500px;
    transform: translateY(-50%);
    border: 1px solid rgba(199, 161, 90, .09);
    border-radius: 50%;
    pointer-events: none;
}


/*
 * IMPORTANT:
 * The PHP has:
 *
 * <div class="container sell-property-hero-content">
 *
 * The element itself is the content container.
 * It is positioned like .about-hero-content rather than
 * being treated as a nested container.
 */
.sell-property-hero-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: max(32px, calc((100% - var(--about-container)) / 2));
    width: min(700px, calc(100% - 64px));
    transform: translateY(-43%);
}


/* =========================================================
   HERO EYEBROW
   Matched to .about-eyebrow
========================================================= */

.sell-property-eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 25px;
    color: var(--about-gold-light);
    font-family: var(--about-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .25em;
    line-height: 1;
    text-transform: uppercase;
}

.sell-property-eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    flex: 0 0 32px;
    background: currentColor;
}


/* =========================================================
   HERO TITLE
   Deliberately identical in scale to about.css
========================================================= */

.sell-property-hero h1 {
    max-width: 680px;
    margin-bottom: 24px;
    color: #fff;
    font-family: var(--about-serif);
    font-size: clamp(45px, 8vw, 125px);
    font-weight: 400;
    line-height: .82;
    letter-spacing: -.045em;
}

/*
 * The PHP uses a span for the second line.
 * The about page uses an italic second line, so use the
 * same treatment here.
 */
.sell-property-hero h1 span {
    display: block;
    color: var(--about-gold-light);
    font-style: italic;
    font-weight: 400;
}


/* =========================================================
   HERO DESCRIPTION
   Matched to .about-hero-content > p
========================================================= */

.sell-property-hero-content > p {
    max-width: 510px;
    margin-bottom: 37px;
    color: rgba(255, 255, 255, .78);
    font-family: var(--about-sans);
    font-size: 15px;
    line-height: 1.8;
}


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

.sell-property-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.sell-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    min-height: 54px;
    padding: 0 25px;
    border: 1px solid transparent;
    font-family: var(--about-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1;
    text-transform: uppercase;
    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.sell-btn span:last-child {
    font-family: var(--about-sans);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
}

.sell-btn:hover {
    transform: translateY(-2px);
}

.sell-btn-primary {
    min-width: 248px;
    background: var(--about-gold-light);
    color: var(--about-ink);
}

.sell-btn-primary:hover {
    background: var(--about-gold);
    color: #fff;
}

.sell-btn-secondary {
    min-width: 220px;
    border-color: rgba(255, 255, 255, .38);
    background: transparent;
    color: #fff;
}

.sell-btn-secondary:hover {
    border-color: var(--about-gold-light);
    color: var(--about-gold-light);
}


/* =========================================================
   INTRODUCTION
   Proportions follow the about story section.
========================================================= */

.sell-property-intro {
    background: var(--about-paper);
    color: var(--about-ink);
}

.sell-property-intro > .container {
    padding: 145px 0;
}

.sell-property-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 100px;
    align-items: end;
}

.sell-property-intro-heading h2 {
    max-width: 760px;
    margin-bottom: 0;
    font-family: var(--about-serif);
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 500;
    line-height: .91;
    letter-spacing: -.035em;
}

.sell-property-label {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 25px;
    color: var(--about-gold);
    font-family: var(--about-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .24em;
    line-height: 1;
    text-transform: uppercase;
}

.sell-property-label::before {
    content: "";
    width: 30px;
    height: 1px;
    flex: 0 0 30px;
    background: currentColor;
}

.sell-property-intro-text {
    max-width: 480px;
    padding-bottom: 7px;
}

.sell-property-intro-text p {
    margin-bottom: 22px;
    color: var(--about-muted);
    font-family: var(--about-sans);
    font-size: 14px;
    line-height: 1.9;
}

.sell-property-intro-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SERVICES
   Same visual system as dark About sections.
========================================================= */

.sell-property-services {
        background:
        linear-gradient(
            90deg,
            rgba(7, 7, 6, .88) 60%,
            rgba(7, 7, 6, .72) 68%,
            rgba(7, 7, 6, .38) 75%,
            rgba(7, 7, 6, .48) 10%
        ),
        url("../assets/images/luxury-cta-7.jpg") ;
    color: #fff;
}

.sell-property-services > .container {
    padding: 145px 0 0;
}

.sell-property-section-heading {
    max-width: 850px;
    margin-bottom: 75px;
}

.sell-property-services .sell-property-label {
    color: var(--about-gold-light);
}

.sell-property-section-heading h2 {
    max-width: 920px;
    margin-bottom: 0;
    color: #fff;
    font-family: var(--about-serif);
    font-size: clamp(44px, 6vw, 88px);
    font-weight: 500;
    line-height: .87;
    letter-spacing: -.04em;
}

.sell-property-section-heading h2 span {
    color: var(--about-gold-light);
    font-style: italic;
    font-weight: 400;
}

.sell-property-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--about-dark-line);
}

.sell-property-service {
    min-width: 0;
    min-height: 365px;
    display: flex;
    flex-direction: column;
    padding: 38px 34px 48px;
    border-right: 1px solid var(--about-dark-line);
}

.sell-property-service:first-child {
    padding-left: 0;
}

.sell-property-service:last-child {
    padding-right: 0;
    border-right: 0;
}

.service-number {
    display: block;
    margin-bottom: auto;
    color: var(--about-gold-light);
    font-family: var(--about-sans);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .15em;
}

.sell-property-service h3 {
    max-width: 270px;
    margin: 52px 0 0;
    color: #fff;
    font-family: var(--about-serif);
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.025em;
}

.sell-property-service p {
    max-width: 285px;
    margin-top: 18px;

    color: rgba(255, 255, 255, .56);
    font-family: var(--about-sans);
    font-size: 12px;
    line-height: 1.8;
    
}


/* =========================================================
   PROCESS / HOW IT WORKS
========================================================= */

.sell-property-process {
    background: var(--about-cream);
    color: var(--about-ink);
}

.sell-property-process > .container {
    padding: 145px 0;
}

.sell-property-process .sell-property-section-heading {
    margin-bottom: 75px;
}

.sell-property-process .sell-property-label {
    color: var(--about-gold);
}

.sell-property-process .sell-property-section-heading h2 {
    color: var(--about-ink);
}

.sell-property-process .sell-property-section-heading h2 span {
    color: var(--about-gold);
}

.sell-property-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sell-process-step {
    min-width: 0;
    min-height: 310px;
    padding: 42px 46px 50px;
    border-top: 1px solid var(--about-line);
    border-right: 1px solid var(--about-line);
}

.sell-process-step:first-child {
    padding-left: 0;
}

.sell-process-step:last-child {
    padding-right: 0;
    border-right: 0;
}

.sell-process-step > span {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(155, 121, 55, .42);
    border-radius: 50%;
    color: var(--about-gold);
    font-family: var(--about-sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
}

.sell-process-step h3 {
    max-width: 320px;
    margin: 48px 0 0;
    color: var(--about-ink);
    font-family: var(--about-serif);
    font-size: 34px;
    font-weight: 500;
    line-height: .95;
    letter-spacing: -.035em;
}

.sell-process-step p {
    max-width: 340px;
    margin-top: 17px;
    color: var(--about-muted);
    font-family: var(--about-sans);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
   Follows .about-cta proportions.
========================================================= */

.sell-property-final-cta {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    
    background:
        linear-gradient(
            90deg,
            rgba(7, 7, 6, .88) 0%,
            rgba(7, 7, 6, .72) 38%,
            rgba(7, 7, 6, .38) 72%,
            rgba(7, 7, 6, .48) 100%
        ),
        url("../assets/images/luxury-cta-3.jpeg") center center / cover no-repeat;
    color: #fff;
}

.sell-property-final-cta::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -180px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(199, 161, 90, .16);
    border-radius: 50%;
    pointer-events: none;
}

.sell-property-final-cta::after {
    content: "";
    position: absolute;
    top: -15px;
    right: -115px;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(199, 161, 90, .09);
    border-radius: 50%;
    pointer-events: none;
}

.sell-property-final-cta > .container {
    position: relative;
    z-index: 1;
}

.sell-property-final-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 100px 0;
}

.sell-property-final-content .sell-property-label {
    color: var(--about-gold-light);
}

.sell-property-final-content h2 {
    margin-bottom: 27px;
    color: #fff;
    font-family: var(--about-serif);
    font-size: clamp(58px, 7vw, 105px);
    font-weight: 500;
    line-height: .84;
    letter-spacing: -.045em;
}

.sell-property-final-content h2 span {
    display: inline;
    color: var(--about-gold-light);
    font-style: italic;
    font-weight: 400;
}

.sell-property-final-content p {
    max-width: 520px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, .67);
    font-family: var(--about-sans);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   REVEAL
   Same motion language as about.css
========================================================= */

.sell-property-page .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity .8s cubic-bezier(.2, .7, .2, 1),
        transform .8s cubic-bezier(.2, .7, .2, 1);
    transition-delay: var(--delay, 0ms);
}

.sell-property-page .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   FLOATING WHATSAPP
   Shared component owns the main styling.
========================================================= */

.sell-property-page .floating-whatsapp {
    z-index: 2000;
}


/* =========================================================
   TABLET — 1100px
========================================================= */

@media (max-width: 1100px) {

    .sell-property-page .container {
        width: min(calc(100% - 48px), var(--about-container));
    }

    .sell-property-hero-content {
        left: 24px;
        width: min(700px, calc(100% - 48px));
    }

    .sell-property-hero h1 {
        font-size: clamp(62px, 8vw, 100px);
    }

    .sell-property-intro-grid {
        gap: 60px;
    }

    .sell-property-services > .container,
    .sell-property-process > .container {
        padding-top: 110px;
    }

    .sell-property-service {
        padding-right: 24px;
        padding-left: 24px;
    }

    .sell-property-service:first-child {
        padding-left: 0;
    }

    .sell-property-service:last-child {
        padding-right: 0;
    }

    .sell-property-process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sell-process-step {
        padding-right: 30px;
        padding-left: 30px;
    }

    .sell-process-step:first-child {
        padding-left: 0;
    }

    .sell-process-step:last-child {
        padding-right: 0;
    }
}


/* =========================================================
   TABLET / MOBILE — 820px
========================================================= */

@media (max-width: 820px) {

    .sell-property-page .container {
        width: calc(100% - 40px);
    }

    .sell-property-hero {
        min-height: 720px;
        height: 92vh;
    }

    .sell-property-hero-content {
        top: 50%;
        left: 20px;
        width: calc(100% - 40px);
        transform: translateY(-42%);
    }

    .sell-property-eyebrow {
        font-size: 9px;
    }

    .sell-property-hero h1 {
        max-width: 680px;
        font-size: clamp(64px, 16vw, 100px);
        line-height: .82;
    }

    .sell-property-hero-content > p {
        max-width: 450px;
        font-size: 13px;
    }

    .sell-property-actions {
        gap: 20px;
    }

    .sell-property-intro > .container,
    .sell-property-process > .container {
        padding-top: 95px;
        padding-bottom: 95px;
    }

    .sell-property-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .sell-property-intro-heading h2,
    .sell-property-section-heading h2 {
        font-size: clamp(52px, 14vw, 76px);
    }

    .sell-property-intro-text {
        max-width: 480px;
        padding-bottom: 0;
    }

    .sell-property-services > .container {
        padding-top: 95px;
    }

    .sell-property-section-heading {
        margin-bottom: 50px;
    }

    .sell-property-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sell-property-service {
        min-height: 330px;
        padding: 34px 25px 42px;
        border-bottom: 1px solid var(--about-dark-line);
    }

    .sell-property-service:first-child {
        padding-left: 0;
    }

    .sell-property-service:nth-child(2) {
        padding-right: 0;
        border-right: 0;
    }

    .sell-property-service:nth-child(3) {
        padding-left: 0;
        border-bottom: 0;
    }

    .sell-property-service:nth-child(4) {
        padding-right: 0;
        border-right: 0;
        border-bottom: 0;
    }

    .sell-property-process-grid {
        grid-template-columns: 1fr;
    }

    .sell-process-step,
    .sell-process-step:first-child,
    .sell-process-step:last-child {
        min-height: auto;
        padding: 42px 0 48px;
        border-right: 0;
        border-bottom: 1px solid var(--about-line);
    }

    .sell-process-step:last-child {
        border-bottom: 0;
    }

    .sell-property-final-cta {
        min-height: 570px;
    }

    .sell-property-final-content {
        padding: 75px 0;
    }

    .sell-property-final-content h2 {
        font-size: clamp(58px, 7vw, 90px);
    }
}


/* =========================================================
   MOBILE — 520px
========================================================= */

@media (max-width: 520px) {

    .sell-property-page .container {
        width: calc(100% - 30px);
    }

    .sell-property-hero {
        min-height: 680px;
        height: 88vh;
    }

    .sell-property-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(7, 7, 6, .88),
                rgba(7, 7, 6, .38)
            ),
            linear-gradient(
                0deg,
                rgba(7, 7, 6, .76),
                transparent 55%
            );
    }

    .sell-property-hero-content {
        top: 50%;
        left: 15px;
        width: calc(100% - 30px);
        transform: translateY(-42%);
    }

    .sell-property-eyebrow {
        gap: 10px;
        margin-bottom: 22px;
        font-size: 8px;
        letter-spacing: .22em;
    }

    .sell-property-eyebrow::before {
        width: 28px;
        flex-basis: 28px;
    }

    .sell-property-hero h1 {
        max-width: 100%;
        margin-bottom: 20px;
        font-size: 63px;
        line-height: .84;
        letter-spacing: -.045em;
    }

    .sell-property-hero-content > p {
        max-width: 340px;
        margin-bottom: 28px;
        font-size: 12px;
        line-height: 1.7;
    }

    .sell-property-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .sell-btn,
    .sell-btn-primary,
    .sell-btn-secondary {
        min-height: 50px;
        min-width: 0;
        width: auto;
    }

    .sell-btn-primary {
        padding-right: 22px;
        padding-left: 22px;
    }

    .sell-btn-secondary {
        padding-right: 22px;
        padding-left: 22px;
    }

    .sell-property-hero::before {
        width: 470px;
        height: 470px;
        top: 38%;
        right: -290px;
    }

    .sell-property-hero::after {
        width: 335px;
        height: 335px;
        top: 38%;
        right: -215px;
    }


    /* INTRO */

    .sell-property-intro > .container {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .sell-property-intro-heading h2,
    .sell-property-section-heading h2 {
        font-size: 51px;
        line-height: .89;
    }

    .sell-property-label {
        gap: 10px;
        margin-bottom: 22px;
        font-size: 8px;
        letter-spacing: .20em;
    }

    .sell-property-label::before {
        width: 26px;
        flex-basis: 26px;
    }

    .sell-property-intro-text p {
        font-size: 12px;
        line-height: 1.8;
    }


    /* SERVICES */

    .sell-property-services > .container {
        padding-top: 78px;
    }

    .sell-property-section-heading {
        margin-bottom: 46px;
    }

    .sell-property-service-grid {
        grid-template-columns: 1fr;
    }

    .sell-property-service,
    .sell-property-service:first-child,
    .sell-property-service:last-child,
    .sell-property-service:nth-child(2),
    .sell-property-service:nth-child(3),
    .sell-property-service:nth-child(4) {
        min-height: auto;
        padding: 34px 0 42px;
        border-right: 0;
        border-bottom: 1px solid var(--about-dark-line);
    }

    .sell-property-service:last-child {
        border-bottom: 0;
    }

    .sell-property-service h3 {
        max-width: 100%;
        margin-top: 56px;
        font-size: 28px;
        line-height: .98;
    }

    .sell-property-service p {
        max-width: 100%;
        font-size: 12px;
        line-height: 1.8;
    }


    /* PROCESS */

    .sell-property-process > .container {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .sell-property-process .sell-property-section-heading {
        margin-bottom: 46px;
    }

    .sell-process-step,
    .sell-process-step:first-child,
    .sell-process-step:last-child {
        padding: 34px 0 42px;
    }

    .sell-process-step h3 {
        margin-top: 38px;
        font-size: 29px;
        line-height: .95;
    }

    .sell-process-step p {
        font-size: 12px;
        line-height: 1.8;
    }


    /* FINAL CTA */

    .sell-property-final-cta {
        min-height: 550px;
    }

    .sell-property-final-content {
        padding: 75px 0;
    }

    .sell-property-final-content h2 {
        font-size: 56px;
        line-height: .85;
    }

    .sell-property-final-content p {
        max-width: 340px;
        margin-bottom: 28px;
        font-size: 12px;
        line-height: 1.7;
    }

    .sell-property-final-content .sell-btn {
        width: 100%;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .sell-property-page *,
    .sell-property-page *::before,
    .sell-property-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .sell-property-page .reveal {
        opacity: 1;
        transform: none;
    }
}
