/* =========================================================
   ZENITH LUXURY HOMES
   HOMEPAGE — PREMIUM EDITORIAL SYSTEM
   ========================================================= */

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


/* =========================================================
   01. FOUNDATION
   ========================================================= */

.home-page {
    --zl-black: #151512;
    --zl-black-2: #1d1d19;
    --zl-black-3: #272620;

    --zl-cream: #f7f4ed;
    --zl-cream-2: #eee9de;
    --zl-paper: #fbfaf7;
    --zl-white: #ffffff;

    --zl-gold: #c7a45d;
    --zl-gold-light: #dfc78d;
    --zl-gold-dark: #9b7937;

    --zl-text: #191916;
    --zl-muted: #77736a;
    --zl-muted-2: #9b978e;

    --zl-border: #e2ddd2;
    --zl-border-dark: rgba(255,255,255,.13);

    --zl-display: "Cormorant Garamond", Georgia, serif;
    --zl-body: "DM Sans", Arial, sans-serif;

    --zl-container: 1320px;

    color: var(--zl-text);
    background: var(--zl-paper);

    font-family: var(--zl-body);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.home-page a,
.home-page button,
.home-page input,
.home-page select {
    -webkit-tap-highlight-color: transparent;
}

.home-page a {
    color: inherit;
}

.home-page button,
.home-page input,
.home-page select {
    font: inherit;
}

.home-page button {
    border-radius: 0;
}

.home-page ::selection {
    color: #fff;
    background: var(--zl-black);
}

.home-container {
    width: min(
        var(--zl-container),
        calc(100% - 72px)
    );

    margin-inline: auto;
}


/* =========================================================
   02. HEADER
   ========================================================= */

.zl-site-header {
    position: fixed;
    z-index: 100;

    top: 0;
    left: 0;
    right: 0;

    color: #fff;

    border-bottom: 1px solid rgba(255,255,255,.13);

    background:
        linear-gradient(
            180deg,
            rgba(8,8,7,.55),
            rgba(8,8,7,.08)
        );

    transition:
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.zl-site-header.is-scrolled {
    color: var(--zl-text);

    border-color: rgba(20,20,17,.08);

    background:
        rgba(250,249,246,.96);

    box-shadow:
        0 10px 35px rgba(20,20,17,.08);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.zl-header-inner {
    width: min(
        var(--zl-container),
        calc(100% - 72px)
    );

    min-height: 94px;

    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


/* =========================================================
   03. LOGO
   ========================================================= */

.zl-brand {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}

.zl-brand-image {
    width: 116px;
    height: 76px;

    object-fit: contain;
    object-position: center;

    transition:
        transform .35s ease;
}

.zl-brand:hover .zl-brand-image {
    transform: translateY(-1px);
}


/* =========================================================
   04. NAVIGATION
   ========================================================= */

.zl-main-nav {
    display: flex;
    align-items: center;

    gap: 42px;
}

.zl-main-nav a {
    position: relative;

    padding: 36px 0;

    color: currentColor;

    font-size: 12px;
    font-weight: 500;

    text-decoration: none;

    transition:
        color .25s ease;
}

.zl-main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 27px;

    height: 1px;

    background: var(--zl-gold-light);

    transform:
        scaleX(0);

    transform-origin: left;

    transition:
        transform .3s ease;
}

.zl-main-nav a:hover::after,
.zl-main-nav a.active::after {
    transform: scaleX(1);
}

.zl-site-header.is-scrolled
.zl-main-nav a::after {
    background: var(--zl-gold-dark);
}


/* =========================================================
   05. HEADER CTA
   ========================================================= */

.zl-header-actions {
    display: flex;
    align-items: center;

    gap: 15px;
}

.zl-header-cta {
    min-height: 48px;

    padding: 0 21px;

    display: inline-flex;
    align-items: center;

    gap: 18px;

    color: #fff !important;

    background: var(--zl-black);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .15em;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        background .3s ease,
        transform .3s ease;
}

.zl-header-cta:hover {
    background: var(--zl-gold);
    color: var(--zl-black) !important;

    transform: translateY(-2px);
}

.cta-arrow {
    font-size: 15px;
}

.zl-menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    padding: 0;

    border: 1px solid currentColor;

    color: currentColor;
    background: transparent;

    cursor: pointer;
}

.zl-menu-toggle span {
    display: block;

    width: 17px;
    height: 1px;

    margin: 4px auto;

    background: currentColor;

    transition:
        transform .3s ease;
}


/* =========================================================
   06. HERO
   ========================================================= */

.zl-home-hero {
    position: relative;

    height: max(
        760px,
        100svh
    );

    min-height: 680px;

    overflow: hidden;

    color: #fff;

    background: var(--zl-black);

    isolation: isolate;
}

.hero-slides {
    position: absolute;

    inset: 0;
}

.hero-slide {
    position: absolute;

    inset: 0;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .9s ease,
        visibility .9s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-media {
    position: absolute;

    inset: 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #292923,
            #10100e
        );
}

.hero-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform:
        scale(1.045);

    transition:
        transform 7s
        cubic-bezier(.2,.7,.2,1);
}

.hero-slide.is-active
.hero-media img {
    transform:
        scale(1);
}

.hero-static-media {
    background:
        linear-gradient(
            110deg,
            #1a1a17,
            #292820
        ),
        url("../assets/images/home-hero.jpg")
        center /
        cover
        no-repeat;
}

.hero-fallback {
    width: 100%;
    height: 100%;

    background:
        radial-gradient(
            circle at 75% 30%,
            #39372e,
            transparent 34%
        ),
        linear-gradient(
            120deg,
            #121210,
            #292720
        );
}


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

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(8,8,7,.91) 0%,
            rgba(8,8,7,.72) 28%,
            rgba(8,8,7,.39) 56%,
            rgba(8,8,7,.23) 80%,
            rgba(8,8,7,.43) 100%
        ),
        linear-gradient(
            0deg,
            rgba(5,5,4,.58),
            transparent 48%,
            rgba(5,5,4,.18)
        );
}


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

.hero-slide-content {
    position: relative;

    z-index: 3;

    width: min(
        var(--zl-container),
        calc(100% - 72px)
    );

    height: 100%;

    margin-inline: auto;

    display: flex;
    align-items: center;
}

.hero-copy {
    position: relative;

    width: min(790px, 72vw);

    padding-top: 55px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;

    gap: 13px;

    color: var(--zl-gold-light);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .25em;

    text-transform: uppercase;

    animation:
        heroCopyIn .8s
        .15s
        both;
}

.hero-line {
    width: 42px;
    height: 1px;

    background: currentColor;
}

.hero-index {
    position: absolute;

    top: 0;
    right: 0;

    color:
        rgba(255,255,255,.50);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .18em;
}

.hero-index span {
    margin: 0 7px;

    color: var(--zl-gold);
}

.hero-copy h1 {
    max-width: 900px;

    margin: 32px 0 0;

    font-family: var(--zl-display);

    font-size:
        clamp(
            5rem,
            8vw,
            9rem
        );

    font-weight: 500;

    line-height: .78;

    letter-spacing: -.052em;

    animation:
        heroCopyIn .9s
        .28s
        both;
}

.hero-copy h1 span,
.hero-copy h1 em {
    display: block;
}

.hero-copy h1 em {
    margin-top: 7px;

    color: var(--zl-gold-light);

    font-style: italic;

    font-weight: 500;
}

.hero-description {
    max-width: 535px;

    margin: 34px 0 0;

    color:
        rgba(255,255,255,.74);

    font-size: 14px;

    line-height: 1.85;

    animation:
        heroCopyIn .9s
        .42s
        both;
}

.hero-property {
    width: min(610px, 100%);

    margin-top: 28px;
    padding-top: 19px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    border-top:
        1px solid
        rgba(255,255,255,.18);

    animation:
        heroCopyIn .9s
        .54s
        both;
}

.hero-property-type {
    color: var(--zl-gold-light);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .18em;

    text-transform: uppercase;
}

.hero-property h2 {
    max-width: 430px;

    margin: 6px 0 4px;

    font-family: var(--zl-display);

    font-size: 25px;
    font-weight: 500;

    line-height: 1.05;
}

.hero-property p {
    margin: 0;

    color:
        rgba(255,255,255,.55);

    font-size: 10px;
}

.hero-property > strong {
    flex-shrink: 0;

    color: #fff;

    font-family: var(--zl-display);

    font-size: 28px;
    font-weight: 500;
}

.hero-actions {
    margin-top: 28px;

    display: flex;
    align-items: center;

    gap: 30px;

    animation:
        heroCopyIn .9s
        .65s
        both;
}


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

.zl-button {
    min-height: 52px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;

    border: 1px solid transparent;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .15em;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.zl-button:hover {
    transform: translateY(-2px);
}

.zl-button-gold {
    color: var(--zl-black);

    background: var(--zl-gold-light);

    border-color: var(--zl-gold-light);
}

.zl-button-gold:hover {
    color: var(--zl-black);

    background: #fff;

    border-color: #fff;
}

.zl-button-dark {
    color: #fff;

    background: var(--zl-black);

    border-color: var(--zl-black);
}

.zl-button-dark:hover {
    color: var(--zl-black);

    background: var(--zl-gold-light);

    border-color: var(--zl-gold-light);
}

.zl-text-link {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: rgba(255,255,255,.80);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .15em;

    text-decoration: none;
    text-transform: uppercase;
}

.zl-text-link span {
    font-size: 14px;

    transition:
        transform .3s ease;
}

.zl-text-link:hover {
    color: #fff;
}

.zl-text-link:hover span {
    transform: translateX(4px);
}

.light-link {
    color: rgba(255,255,255,.70);
}


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

.hero-controls {
    position: absolute;

    z-index: 6;

    right: max(
        36px,
        calc(
            (100vw - var(--zl-container))
            / 2
        )
    );

    bottom: 50px;

    display: flex;
    align-items: center;

    gap: 15px;
}

.hero-control {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border: 1px solid
        rgba(255,255,255,.27);

    color: #fff;
    background:
        rgba(10,10,8,.26);

    cursor: pointer;

    font-size: 15px;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.hero-control:hover {
    color: var(--zl-black);

    border-color: var(--zl-gold-light);

    background: var(--zl-gold-light);
}

.hero-progress {
    display: flex;

    gap: 6px;
}

.hero-dot {
    position: relative;

    width: 34px;
    height: 18px;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.hero-dot span {
    position: absolute;

    left: 0;
    right: 0;

    top: 50%;

    height: 1px;

    background:
        rgba(255,255,255,.35);

    transform:
        translateY(-50%);

    transition:
        background .3s ease;
}

.hero-dot.is-active span {
    background: var(--zl-gold-light);
}

.hero-scroll {
    position: absolute;

    z-index: 6;

    left: max(
        36px,
        calc(
            (100vw - var(--zl-container))
            / 2
        )
    );

    bottom: 43px;

    display: flex;
    align-items: center;

    gap: 13px;

    color:
        rgba(255,255,255,.65);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .20em;

    text-decoration: none;

    text-transform: uppercase;
}

.hero-scroll i {
    position: relative;

    width: 30px;
    height: 1px;

    background: var(--zl-gold-light);
}

.hero-scroll i::after {
    content: "";

    position: absolute;

    right: 0;
    top: -3px;

    width: 7px;
    height: 7px;

    border-right: 1px solid var(--zl-gold-light);
    border-bottom: 1px solid var(--zl-gold-light);

    transform:
        rotate(45deg);
}


/* =========================================================
   07. SEARCH
========================================================= */

.home-search-wrap {
    position: relative;

    z-index: 20;

    margin-top: -70px;
}

.home-search {
    display: grid;

    grid-template-columns:
        270px
        1fr;

    min-height: 132px;

    background: #fff;

    box-shadow:
        0 25px 65px
        rgba(20,20,17,.13);
}

.search-intro {
    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    color: #fff;

    background: var(--zl-black);
}

.search-intro span {
    color: var(--zl-gold-light);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .19em;

    text-transform: uppercase;
}

.search-intro h2 {
    margin: 10px 0 0;

    font-family: var(--zl-display);

    font-size: 30px;
    font-weight: 500;

    line-height: 1;
}

.home-search-form {
    display: grid;

    grid-template-columns:
        1.35fr
        1fr
        1fr
        150px;

    align-items: stretch;
}

.home-search-field {
    padding: 27px 20px;

    border-right:
        1px solid
        var(--zl-border);
}

.home-search-field label {
    display: block;

    margin-bottom: 12px;

    color: var(--zl-muted);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .17em;

    text-transform: uppercase;
}

.field-control {
    display: flex;
    align-items: center;

    min-height: 31px;
}

.field-icon {
    margin-right: 9px;

    color: var(--zl-gold-dark);

    font-size: 18px;
}

.field-control input,
.field-control select {
    width: 100%;

    min-width: 0;

    padding: 0;

    border: 0;
    outline: 0;

    color: var(--zl-text);

    background: transparent;

    font-size: 12px;
}

.field-control input::placeholder {
    color: #aaa69c;
}

.home-search-button {
    border: 0;

    color: #fff;

    background: var(--zl-black);

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 22px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .15em;

    text-transform: uppercase;

    transition:
        background .3s ease;
}

.home-search-button:hover {
    background: var(--zl-gold);
    color: var(--zl-black);
}

.home-search-button span:last-child {
    font-size: 15px;
}


/* =========================================================
   08. BRAND INTRO
========================================================= */

.brand-intro {
    padding: 150px 0 135px;

    background: var(--zl-paper);
}

.brand-intro-grid {
    display: grid;

    grid-template-columns:
        100px
        minmax(0, 1.25fr)
        minmax(280px, .75fr);

    gap: 45px;
}

.brand-intro-number {
    color: var(--zl-gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .16em;
}

.section-kicker {
    display: inline-block;

    color: var(--zl-gold-dark);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .20em;

    text-transform: uppercase;
}

.section-kicker.light {
    color: var(--zl-gold-light);
}

.brand-intro-copy h2 {
    max-width: 780px;

    margin: 19px 0 0;

    font-family: var(--zl-display);

    font-size:
        clamp(
            3.3rem,
            5vw,
            5.5rem
        );

    font-weight: 500;

    line-height: .91;

    letter-spacing: -.045em;
}

.brand-intro-copy h2 em {
    color: var(--zl-gold-dark);

    font-style: italic;
}

.brand-intro-text {
    align-self: end;

    padding-bottom: 5px;
}

.brand-intro-text p {
    margin: 0 0 25px;

    color: var(--zl-muted);

    font-size: 13px;

    line-height: 1.9;
}

.underlined-link {
    display: inline-flex;
    align-items: center;

    gap: 15px;

    padding-bottom: 7px;

    border-bottom: 1px solid var(--zl-gold);

    color: var(--zl-text);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .15em;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        color .25s ease,
        gap .25s ease;
}

.underlined-link:hover {
    color: var(--zl-gold-dark);

    gap: 20px;
}


/* =========================================================
   09. FEATURED COLLECTION
========================================================= */

.featured-collection {
    padding: 115px 0 125px;

    background: #fff;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 47px;
}

.section-header h2,
.hot-header h2,
.type-header h2,
.latest-header h2 {
    margin: 15px 0 0;

    font-family: var(--zl-display);

    font-size:
        clamp(
            3rem,
            4.5vw,
            4.8rem
        );

    font-weight: 500;

    line-height: .95;

    letter-spacing: -.04em;
}

.section-header-right {
    max-width: 360px;
}

.section-header-right p {
    margin: 0 0 20px;

    color: var(--zl-muted);

    font-size: 12px;

    line-height: 1.8;
}

.collection-carousel {
    position: relative;
}

.collection-track {
    display: flex;

    gap: 22px;

    overflow-x: auto;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    padding-bottom: 12px;
}

.collection-track::-webkit-scrollbar {
    display: none;
}

.collection-card {
    flex:
        0 0
        calc(
            (100% - 44px) / 3
        );

    min-width: 0;

    scroll-snap-align: start;
}

.collection-image {
    position: relative;

    display: block;

    height: 470px;

    overflow: hidden;

    color: #fff;

    background: var(--zl-black);

    text-decoration: none;
}

.collection-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .9s
        cubic-bezier(.2,.7,.2,1);
}

.collection-card:hover
.collection-image img {
    transform: scale(1.05);
}

.collection-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.20),
            transparent 45%,
            rgba(0,0,0,.72)
        );
}

.collection-card-top {
    position: absolute;

    z-index: 2;

    top: 18px;
    left: 18px;

    display: flex;
    gap: 6px;
}

.collection-card-top span {
    padding: 8px 10px;

    color: #fff;

    background:
        rgba(15,15,13,.68);

    border: 1px solid
        rgba(255,255,255,.11);

    backdrop-filter: blur(10px);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.collection-card-top .hot-label {
    color: var(--zl-black);

    background: var(--zl-gold-light);

    border-color: var(--zl-gold-light);
}

.collection-view {
    position: absolute;

    z-index: 3;

    right: 18px;
    bottom: 18px;

    padding: 10px 12px;

    color: #fff;

    border: 1px solid
        rgba(255,255,255,.25);

    background:
        rgba(15,15,13,.35);

    opacity: 0;

    transform:
        translateY(8px);

    backdrop-filter: blur(10px);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;

    transition:
        opacity .3s ease,
        transform .3s ease;
}

.collection-card:hover
.collection-view {
    opacity: 1;

    transform:
        translateY(0);
}

.collection-view span {
    margin-left: 8px;

    font-size: 13px;
}

.image-fallback {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    font-family: var(--zl-display);

    font-size: 100px;

    color: var(--zl-gold);

    background:
        radial-gradient(
            circle,
            #323127,
            #141411
        );
}

.collection-card-body {
    padding: 19px 2px 0;

    display: flex;
    justify-content: space-between;

    gap: 25px;
}

.collection-type {
    color: var(--zl-gold-dark);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .16em;

    text-transform: uppercase;
}

.collection-card-body h3 {
    margin: 8px 0 5px;

    font-family: var(--zl-display);

    font-size: 27px;
    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -.02em;
}

.collection-card-body p {
    margin: 0;

    color: var(--zl-muted);

    font-size: 10px;
}

.collection-card-body > strong {
    flex-shrink: 0;

    color: var(--zl-text);

    font-family: var(--zl-display);

    font-size: 22px;

    font-weight: 500;
}

.carousel-controls {
    margin-top: 28px;

    display: flex;
    align-items: center;

    gap: 15px;
}

.carousel-controls button,
.hot-controls button {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid var(--zl-border);

    color: var(--zl-text);

    background: transparent;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.carousel-controls button:hover,
.hot-controls button:hover {
    color: #fff;

    border-color: var(--zl-black);

    background: var(--zl-black);
}

.carousel-line,
.hot-progress {
    width: 130px;
    height: 1px;

    overflow: hidden;

    background: var(--zl-border);
}

.carousel-line span,
.hot-progress span {
    display: block;

    width: 0;
    height: 100%;

    background: var(--zl-gold);

    transition:
        width .25s ease;
}


/* =========================================================
   10. STATS
========================================================= */

.stats-band {
    color: #fff;

    background: var(--zl-black);
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.stat-item {
    min-height: 190px;

    padding: 40px 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right:
        1px solid
        rgba(255,255,255,.10);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item > strong {
    color: var(--zl-gold-light);

    font-family: var(--zl-display);

    font-size: 43px;

    font-weight: 500;

    line-height: 1;
}

.stat-item > span {
    max-width: 170px;

    margin-top: 10px;

    color:
        rgba(255,255,255,.48);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .10em;

    line-height: 1.6;

    text-transform: uppercase;
}

.stat-statement > span {
    margin-top: 0;

    color: var(--zl-gold-light);

    font-size: 8px;
}

.stat-statement > strong {
    max-width: 180px;

    margin-top: 8px;

    color: #fff;

    font-family: var(--zl-display);

    font-size: 27px;

    line-height: 1.05;
}


/* =========================================================
   11. PROPERTY TYPES
========================================================= */

.type-section {
    padding: 125px 0 135px;

    background: var(--zl-cream);
}

.type-header {
    align-items: flex-end;
}

.type-header > p {
    max-width: 390px;

    margin: 0;

    color: var(--zl-muted);

    font-size: 12px;

    line-height: 1.85;
}

.type-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.type-card {
    position: relative;

    min-height: 340px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #34322b,
            #151512
        );

    text-decoration: none;
}

.type-card:nth-child(1),
.type-card:nth-child(4) {
    min-height: 400px;
}

.type-card img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s
        cubic-bezier(.2,.7,.2,1);
}

.type-card:hover img {
    transform: scale(1.06);
}

.type-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.06),
            rgba(0,0,0,.78)
        );
}

.type-content {
    position: relative;

    z-index: 2;

    width: 100%;

    padding: 26px;
}

.type-content > span {
    color: var(--zl-gold-light);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .16em;

    text-transform: uppercase;
}

.type-content h3 {
    margin: 8px 0 20px;

    font-family: var(--zl-display);

    font-size: 30px;
    font-weight: 500;

    line-height: 1;
}

.type-content b {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .13em;

    text-transform: uppercase;
}

.type-content i {
    font-size: 14px;

    font-style: normal;

    transition:
        transform .3s ease;
}

.type-card:hover .type-content i {
    transform:
        translate(3px,-3px);
}


/* =========================================================
   12. HOT LISTINGS
========================================================= */

.hot-section {
    padding: 125px 0 130px;

    color: #fff;

    background:
        radial-gradient(
            circle at 78% 15%,
            rgba(199,164,93,.10),
            transparent 28%
        ),
        var(--zl-black);
}

.hot-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;

    margin-bottom: 45px;
}

.hot-header h2 {
    color: #fff;
}

.hot-header-copy {
    max-width: 360px;
}

.hot-header-copy p {
    margin: 0;

    color:
        rgba(255,255,255,.53);

    font-size: 12px;

    line-height: 1.8;
}

.hot-track {
    display: flex;

    gap: 20px;

    overflow-x: auto;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    padding-bottom: 10px;
}

.hot-track::-webkit-scrollbar {
    display: none;
}

.hot-card {
    flex:
        0 0
        calc(
            (100% - 40px) / 3
        );

    scroll-snap-align: start;

    min-width: 0;
}

.hot-image {
    position: relative;

    display: block;

    height: 330px;

    overflow: hidden;

    background: #26251f;

    color: #fff;

    text-decoration: none;
}

.hot-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s
        cubic-bezier(.2,.7,.2,1);
}

.hot-card:hover .hot-image img {
    transform: scale(1.05);
}

.hot-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.12),
            transparent 55%,
            rgba(0,0,0,.48)
        );
}

.hot-image-fallback {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    color: var(--zl-gold);

    font-family: var(--zl-display);

    font-size: 90px;

    background:
        linear-gradient(
            135deg,
            #343228,
            #151512
        );
}

.hot-card-label {
    position: absolute;

    z-index: 2;

    top: 16px;
    left: 16px;

    padding: 8px 10px;

    color: var(--zl-black);

    background: var(--zl-gold-light);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.hot-card-arrow {
    position: absolute;

    z-index: 2;

    right: 16px;
    bottom: 16px;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    color: #fff;

    border: 1px solid
        rgba(255,255,255,.30);

    background:
        rgba(0,0,0,.25);

    backdrop-filter: blur(8px);

    transition:
        background .3s ease,
        color .3s ease;
}

.hot-card:hover .hot-card-arrow {
    color: var(--zl-black);

    background: var(--zl-gold-light);
}

.hot-card-content {
    padding: 17px 2px 0;
}

.hot-card-content > span {
    color: var(--zl-gold-light);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .15em;

    text-transform: uppercase;
}

.hot-card-content h3 {
    margin: 8px 0 4px;

    color: #fff;

    font-family: var(--zl-display);

    font-size: 27px;

    font-weight: 500;

    line-height: 1;
}

.hot-card-content > p {
    margin: 0;

    color:
        rgba(255,255,255,.43);

    font-size: 10px;
}

.hot-card-bottom {
    margin-top: 16px;
    padding-top: 13px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    border-top:
        1px solid
        rgba(255,255,255,.10);
}

.hot-card-bottom strong {
    color: var(--zl-gold-light);

    font-family: var(--zl-display);

    font-size: 23px;

    font-weight: 500;
}

.hot-card-bottom div {
    color:
        rgba(255,255,255,.45);

    font-size: 8px;
}

.hot-controls {
    margin-top: 30px;

    display: flex;
    align-items: center;

    gap: 14px;
}

.hot-controls button {
    color: #fff;

    border-color:
        rgba(255,255,255,.16);
}

.hot-controls button:hover {
    border-color: var(--zl-gold-light);
}

.hot-progress {
    background:
        rgba(255,255,255,.13);
}


/* =========================================================
   13. WHY ZENITH
========================================================= */

.why-section {
    padding: 135px 0;

    background: var(--zl-paper);
}

.why-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .88fr)
        minmax(0, 1fr);

    gap: 100px;

    align-items: center;
}

.why-visual {
    position: relative;

    min-height: 680px;
}

.why-image {
    position: absolute;

    top: 0;
    right: 0;

    width: 88%;
    height: 620px;

    background:
        linear-gradient(
            90deg,
            rgba(20,20,17,.10),
            transparent
        ),
        url("../assets/images/why-zenith.jpg")
        center /
        cover
        no-repeat;

    box-shadow:
        0 30px 70px
        rgba(20,20,17,.13);
}

.why-number {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 180px;
    height: 180px;

    display: grid;
    place-items: center;

    color: var(--zl-gold-light);

    background: var(--zl-black);

    font-family: var(--zl-display);

    font-size: 75px;

    border:
        1px solid
        rgba(199,164,93,.35);
}

.why-copy {
    max-width: 630px;
}

.why-copy h2 {
    margin: 18px 0 25px;

    font-family: var(--zl-display);

    font-size:
        clamp(
            3.1rem,
            4.7vw,
            5rem
        );

    font-weight: 500;

    line-height: .91;

    letter-spacing: -.045em;
}

.why-copy h2 em {
    display: block;

    color: var(--zl-gold-dark);

    font-style: italic;
}

.why-lead {
    max-width: 540px;

    margin: 0;

    color: var(--zl-muted);

    font-size: 13px;

    line-height: 1.9;
}

.why-points {
    margin: 35px 0 32px;
}

.why-point {
    display: grid;

    grid-template-columns: 35px 1fr;

    gap: 18px;

    padding: 19px 0;

    border-top:
        1px solid
        var(--zl-border);
}

.why-point:last-child {
    border-bottom:
        1px solid
        var(--zl-border);
}

.why-point > span {
    color: var(--zl-gold-dark);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .10em;
}

.why-point h3 {
    margin: 0 0 5px;

    font-family: var(--zl-display);

    font-size: 22px;

    font-weight: 500;
}

.why-point p {
    margin: 0;

    color: var(--zl-muted);

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   14. LATEST
========================================================= */

.latest-section {
    padding: 125px 0;

    background: #fff;
}

.latest-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;
}

.circle-link {
    width: 94px;
    height: 94px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 4px;

    color: var(--zl-text);

    border:
        1px solid
        var(--zl-border);

    border-radius: 50%;

    text-decoration: none;

    transition:
        color .3s ease,
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.circle-link span {
    font-size: 7px;
    font-weight: 700;

    letter-spacing: .13em;

    text-transform: uppercase;
}

.circle-link b {
    font-size: 17px;
}

.circle-link:hover {
    color: #fff;

    border-color: var(--zl-black);

    background: var(--zl-black);

    transform: rotate(-8deg);
}

.latest-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 45px 23px;
}

.latest-card {
    min-width: 0;

    color: var(--zl-text);

    text-decoration: none;
}

.latest-image {
    position: relative;

    height: 330px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #333128,
            #151512
        );
}

.latest-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s
        cubic-bezier(.2,.7,.2,1);
}

.latest-card:hover .latest-image img {
    transform: scale(1.045);
}

.latest-fallback {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    color: var(--zl-gold);

    font-family: var(--zl-display);

    font-size: 80px;
}

.latest-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.06),
            transparent 55%,
            rgba(0,0,0,.43)
        );
}

.latest-status {
    position: absolute;

    top: 16px;
    left: 16px;

    padding: 8px 10px;

    color: #fff;

    background:
        rgba(20,20,17,.68);

    border:
        1px solid
        rgba(255,255,255,.10);

    backdrop-filter: blur(8px);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: .13em;

    text-transform: uppercase;
}

.latest-info {
    padding-top: 18px;
}

.latest-info > span {
    color: var(--zl-gold-dark);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .15em;

    text-transform: uppercase;
}

.latest-info h3 {
    margin: 7px 0 4px;

    font-family: var(--zl-display);

    font-size: 27px;

    font-weight: 500;

    line-height: 1;
}

.latest-info > p {
    margin: 0;

    color: var(--zl-muted);

    font-size: 10px;
}

.latest-meta {
    margin-top: 15px;
    padding-top: 12px;

    display: flex;
    justify-content: space-between;

    border-top:
        1px solid
        var(--zl-border);
}

.latest-meta strong {
    font-family: var(--zl-display);

    font-size: 21px;

    font-weight: 500;
}

.latest-meta span {
    align-self: center;

    color: var(--zl-muted);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .10em;

    text-transform: uppercase;
}


/* =========================================================
   15. EDITORIAL LOCATION
========================================================= */

.editorial-section {
    position: relative;

    min-height: 680px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #fff;

    background: var(--zl-black);

    isolation: isolate;
}

.editorial-image {
    position: absolute;

    inset: 0;

    z-index: -2;

    background:
        url("../assets/images/location-editorial.jpg")
        center /
        cover
        no-repeat;
}

.editorial-overlay {
    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        linear-gradient(
            90deg,
            rgba(9,9,7,.94) 0%,
            rgba(9,9,7,.73) 42%,
            rgba(9,9,7,.29) 75%,
            rgba(9,9,7,.50) 100%
        );
}

.editorial-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 80px;
}

.editorial-copy {
    max-width: 760px;

    padding: 100px 0;
}

.editorial-copy h2 {
    margin: 20px 0 25px;

    font-family: var(--zl-display);

    font-size:
        clamp(
            4rem,
            6.5vw,
            7rem
        );

    font-weight: 500;

    line-height: .84;

    letter-spacing: -.05em;
}

.editorial-copy h2 em {
    color: var(--zl-gold-light);

    font-style: italic;
}

.editorial-copy p {
    max-width: 520px;

    margin: 0 0 30px;

    color:
        rgba(255,255,255,.63);

    font-size: 13px;

    line-height: 1.85;
}

.editorial-side {
    min-width: 190px;

    margin-bottom: 100px;

    padding-left: 25px;

    border-left:
        1px solid
        rgba(255,255,255,.18);
}

.editorial-side > span {
    color: var(--zl-gold-light);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .15em;
}

.editorial-side p {
    margin: 17px 0 0;

    color:
        rgba(255,255,255,.67);

    font-family: var(--zl-display);

    font-size: 24px;

    line-height: 1.12;
}


/* =========================================================
   16. FINAL CTA
========================================================= */

.home-final-cta {
    position: relative;

    overflow: hidden;

    color: #fff;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(199,164,93,.11),
            transparent 25%
        ),
        var(--zl-black);
}

.home-final-glow {
    position: absolute;

    top: -230px;
    right: -180px;

    width: 500px;
    height: 500px;

    border:
        1px solid
        rgba(199,164,93,.16);

    border-radius: 50%;
}

.home-final-glow::after {
    content: "";

    position: absolute;

    inset: 65px;

    border:
        1px solid
        rgba(199,164,93,.10);

    border-radius: 50%;
}

.final-cta-content {
    position: relative;

    z-index: 2;

    max-width: 850px;

    padding: 125px 0 135px;
}

.final-cta-content h2 {
    margin: 20px 0;

    font-family: var(--zl-display);

    font-size:
        clamp(
            4rem,
            6.2vw,
            7rem
        );

    font-weight: 500;

    line-height: .84;

    letter-spacing: -.05em;
}

.final-cta-content h2 em {
    display: block;

    color: var(--zl-gold-light);

    font-style: italic;
}

.final-cta-content p {
    max-width: 570px;

    margin: 0 0 30px;

    color:
        rgba(255,255,255,.56);

    font-size: 13px;

    line-height: 1.85;
}

.final-actions {
    display: flex;
    align-items: center;

    gap: 30px;
}

.final-mark {
    position: absolute;

    right: 4%;
    bottom: -40px;

    color:
        rgba(199,164,93,.08);

    font-family: var(--zl-display);

    font-size: 390px;

    font-weight: 500;

    line-height: .7;

    pointer-events: none;
}


/* =========================================================
   17. FOOTER
========================================================= */

.zl-home-footer {
    color:
        rgba(255,255,255,.62);

    background: #10100e;
}

.footer-main {
    padding: 75px 0 55px;

    display: grid;

    grid-template-columns:
        1.8fr
        .75fr
        .75fr
        1.2fr;

    gap: 55px;
}

.footer-logo {
    display: inline-flex;

    text-decoration: none;
}

.footer-logo img {
    width: 135px;
    height: 82px;

    object-fit: contain;
}

.footer-brand p {
    margin: 15px 0 0;

    color:
        rgba(255,255,255,.38);

    font-family: var(--zl-display);

    font-size: 18px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 11px;
}

.footer-column > span {
    margin-bottom: 7px;

    color: var(--zl-gold-light);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .17em;

    text-transform: uppercase;
}

.footer-column a {
    color:
        rgba(255,255,255,.54);

    font-size: 10px;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}

.footer-column a:hover {
    color: #fff;

    transform: translateX(3px);
}

.footer-contact a:first-of-type {
    color: #fff;

    font-family: var(--zl-display);

    font-size: 21px;
}

.footer-bottom {
    padding: 20px 0 27px;

    display: flex;
    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.09);

    color:
        rgba(255,255,255,.29);

    font-size: 8px;

    letter-spacing: .03em;
}


/* =========================================================
   18. REVEAL ANIMATIONS
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(24px);

    transition:
        opacity .8s ease,
        transform .8s
        cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
    opacity: 1;

    transform:
        translateY(0);
}

@keyframes heroCopyIn {

    from {
        opacity: 0;

        transform:
            translateY(25px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   19. TABLET
========================================================= */

@media (max-width: 1100px) {

    .home-container,
    .zl-header-inner,
    .hero-slide-content {
        width:
            calc(100% - 52px);
    }

    .zl-main-nav {
        gap: 25px;
    }

    .home-search {
        grid-template-columns:
            220px 1fr;
    }

    .home-search-form {
        grid-template-columns:
            1fr 1fr 1fr 125px;
    }

    .brand-intro-grid {
        grid-template-columns:
            55px
            1fr;
    }

    .brand-intro-text {
        grid-column: 2;
        max-width: 480px;
    }

    .collection-card {
        flex-basis:
            calc(
                (100% - 22px) / 2
            );
    }

    .stats-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(-n+2) {
        border-bottom:
            1px solid
            rgba(255,255,255,.10);
    }

    .type-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .hot-card {
        flex-basis:
            calc(
                (100% - 20px) / 2
            );
    }

    .why-grid {
        gap: 60px;
    }

    .latest-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns:
            1.4fr
            .8fr
            .8fr
            1fr;
    }

}


/* =========================================================
   20. MOBILE
========================================================= */

@media (max-width: 760px) {

    .home-page {
        overflow-x: hidden;
    }

    .home-container,
    .zl-header-inner,
    .hero-slide-content {
        width:
            calc(100% - 36px);
    }


    /* Header */

    .zl-site-header {
        background:
            rgba(15,15,13,.72);

        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .zl-header-inner {
        min-height: 76px;
    }

    .zl-brand-image {
        width: 88px;
        height: 58px;
    }

    .zl-main-nav {
        position: fixed;

        top: 76px;
        left: 18px;
        right: 18px;

        display: none;

        padding: 14px;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        color: var(--zl-text);

        background:
            rgba(250,249,246,.98);

        box-shadow:
            0 20px 45px
            rgba(20,20,17,.18);
    }

    .zl-main-nav.is-open {
        display: flex;
    }

    .zl-main-nav a {
        padding: 17px 15px;

        border-bottom:
            1px solid
            var(--zl-border);
    }

    .zl-main-nav a:last-child {
        border-bottom: 0;
    }

    .zl-main-nav a::after {
        display: none;
    }

    .zl-header-cta {
        min-height: 41px;

        padding: 0 13px;

        gap: 7px;

        font-size: 7px;

        letter-spacing: .10em;
    }

    .zl-menu-toggle {
        display: block;
    }


    /* Hero */

    .zl-home-hero {
        height:
            max(
                720px,
                100svh
            );

        min-height: 680px;
    }

    .hero-media img {
        object-position:
            63% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(8,8,7,.92) 0%,
                rgba(8,8,7,.72) 56%,
                rgba(8,8,7,.42) 100%
            ),
            linear-gradient(
                0deg,
                rgba(5,5,4,.67),
                transparent 55%
            );
    }

    .hero-copy {
        width: 100%;

        padding-top: 45px;
    }

    .hero-index {
        top: -4px;
        right: 0;
    }

    .hero-copy h1 {
        margin-top: 30px;

        font-size:
            clamp(
                3.8rem,
                15vw,
                5.5rem
            );

        line-height: .82;
    }

    .hero-description {
        max-width: 420px;

        margin-top: 25px;

        font-size: 12px;

        line-height: 1.75;
    }

    .hero-property {
        margin-top: 22px;
    }

    .hero-property h2 {
        font-size: 22px;
    }

    .hero-property > strong {
        font-size: 23px;
    }

    .hero-actions {
        gap: 18px;

        flex-wrap: wrap;
    }

    .hero-controls {
        right: 18px;
        bottom: 25px;
    }

    .hero-scroll {
        left: 18px;
        bottom: 30px;
    }

    .hero-scroll span {
        display: none;
    }


    /* Search */

    .home-search-wrap {
        margin-top: -38px;
    }

    .home-search {
        display: block;
    }

    .search-intro {
        padding: 23px;
    }

    .search-intro h2 {
        font-size: 27px;
    }

    .home-search-form {
        display: block;
    }

    .home-search-field {
        padding: 19px;

        border-right: 0;

        border-bottom:
            1px solid
            var(--zl-border);
    }

    .home-search-button {
        width: 100%;

        min-height: 57px;
    }


    /* Brand intro */

    .brand-intro {
        padding:
            85px
            0
            80px;
    }

    .brand-intro-grid {
        display: block;
    }

    .brand-intro-number {
        margin-bottom: 25px;
    }

    .brand-intro-copy h2 {
        font-size:
            clamp(
                3rem,
                13vw,
                4.2rem
            );
    }

    .brand-intro-text {
        margin-top: 28px;
    }


    /* Section headers */

    .section-header,
    .hot-header,
    .latest-header {
        display: block;

        margin-bottom: 30px;
    }

    .section-header-right {
        margin-top: 20px;
    }

    .section-header h2,
    .hot-header h2,
    .type-header h2,
    .latest-header h2 {
        font-size: 3rem;
    }


    /* Featured */

    .featured-collection {
        padding:
            80px
            0
            85px;
    }

    .collection-track {
        gap: 14px;
    }

    .collection-card {
        flex-basis: 88%;
    }

    .collection-image {
        height: 430px;
    }

    .collection-card-body {
        display: block;
    }

    .collection-card-body > strong {
        display: block;

        margin-top: 10px;
    }


    /* Stats */

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item,
    .stat-item:nth-child(2) {
        min-height: 140px;

        border-right: 0;

        border-bottom:
            1px solid
            rgba(255,255,255,.10);
    }

    .stat-item:last-child {
        border-bottom: 0;
    }


    /* Types */

    .type-section {
        padding:
            85px
            0
            90px;
    }

    .type-header > p {
        margin-top: 18px;
    }

    .type-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .type-card,
    .type-card:nth-child(1),
    .type-card:nth-child(4) {
        min-height: 320px;
    }


    /* Hot */

    .hot-section {
        padding:
            85px
            0
            90px;
    }

    .hot-header-copy {
        margin-top: 18px;
    }

    .hot-card {
        flex-basis: 88%;
    }

    .hot-image {
        height: 360px;
    }


    /* Why */

    .why-section {
        padding:
            85px
            0;
    }

    .why-grid {
        display: flex;
        flex-direction: column;

        gap: 55px;
    }

    .why-visual {
        width: 100%;
        min-height: 430px;
    }

    .why-image {
        width: 88%;
        height: 390px;
    }

    .why-number {
        width: 125px;
        height: 125px;

        font-size: 58px;
    }

    .why-copy h2 {
        font-size:
            clamp(
                3rem,
                12vw,
                4.3rem
            );
    }


    /* Latest */

    .latest-section {
        padding:
            85px
            0;
    }

    .latest-header {
        display: flex;
        align-items: flex-end;
    }

    .latest-grid {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .latest-image {
        height: 340px;
    }


    /* Editorial */

    .editorial-section {
        min-height: 650px;
    }

    .editorial-inner {
        display: block;
    }

    .editorial-copy {
        padding:
            85px
            0
            50px;
    }

    .editorial-copy h2 {
        font-size:
            clamp(
                3.8rem,
                14vw,
                5.5rem
            );
    }

    .editorial-side {
        margin: 0 0 75px;

        padding-left: 20px;
    }


    /* Final CTA */

    .final-cta-content {
        padding:
            85px
            0
            95px;
    }

    .final-cta-content h2 {
        font-size:
            clamp(
                3.7rem,
                14vw,
                5.5rem
            );
    }

    .final-actions {
        flex-wrap: wrap;
    }

    .final-mark {
        right: -50px;
        bottom: -10px;

        font-size: 260px;
    }


    /* Footer */

    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 45px 25px;

        padding:
            60px
            0
            45px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        display: block;

        padding-bottom: 23px;
    }

    .footer-bottom span {
        display: block;
    }

    .footer-bottom span + span {
        margin-top: 8px;
    }

}


/* =========================================================
   21. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .home-container,
    .zl-header-inner,
    .hero-slide-content {
        width:
            calc(100% - 30px);
    }

    .zl-header-cta span:last-child {
        display: none;
    }

    .zl-header-cta {
        padding: 0 12px;
    }

    .hero-copy h1 {
        font-size:
            clamp(
                3.3rem,
                15vw,
                4.5rem
            );
    }

    .hero-property {
        align-items: flex-start;
        flex-direction: column;

        gap: 8px;
    }

    .hero-property > strong {
        font-size: 24px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-controls {
        gap: 7px;
    }

    .hero-control {
        width: 38px;
        height: 38px;
    }

    .hero-dot {
        width: 23px;
    }

    .section-header h2,
    .hot-header h2,
    .type-header h2,
    .latest-header h2 {
        font-size: 2.75rem;
    }

    .collection-card {
        flex-basis: 93%;
    }

    .collection-image {
        height: 400px;
    }

    .type-content {
        padding: 22px;
    }

    .type-content h3 {
        font-size: 27px;
    }

    .hot-card {
        flex-basis: 93%;
    }

    .why-visual {
        min-height: 360px;
    }

    .why-image {
        height: 325px;
    }

    .why-number {
        width: 105px;
        height: 105px;

        font-size: 48px;
    }

    .circle-link {
        width: 76px;
        height: 76px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-contact {
        grid-column: auto;
    }

}


/* =========================================================
   22. ACCESSIBILITY / REDUCED MOTION
========================================================= */

.home-page a:focus-visible,
.home-page button:focus-visible,
.home-page input:focus-visible,
.home-page select:focus-visible {
    outline:
        2px solid
        var(--zl-gold);

    outline-offset: 4px;
}

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

    .home-page *,
    .home-page *::before,
    .home-page *::after {
        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

        scroll-behavior: auto !important;
    }

    .hero-media img {
        transform: none !important;
    }

    .reveal {
        opacity: 1;

        transform: none;
    }

}

/* =========================================================
   24. LUXURY HOMEPAGE COMPOSITION — FINAL PASS
   ========================================================= */

:root {
    --zl-luxury-max: 1320px;
    --zl-luxury-gold: #d4b36a;
    --zl-luxury-cream: #f7f4ed;
}

/* ---------- HEADER ---------- */
.zl-site-header {
    border-bottom: 1px solid rgba(255,255,255,.10);
    background: linear-gradient(180deg, rgba(5,5,4,.58), rgba(5,5,4,0));
}

.zl-header-inner {
    width: min(var(--zl-luxury-max), calc(100% - 80px));
    min-height: 88px;
    gap: 30px;
}

.zl-brand-image {
    width: 142px;
    height: 64px;
}

.zl-main-nav {
    gap: 38px;
    margin-left: auto;
}

.zl-main-nav a {
    padding: 34px 0;
    font-size: 11px;
    letter-spacing: .01em;
}

.zl-main-nav a::after {
    bottom: 24px;
    width: 100%;
}

.zl-header-cta {
    min-height: 46px;
    padding: 0 20px;
    gap: 16px;
    font-size: 8px;
    letter-spacing: .16em;
}

/* ---------- HERO ---------- */
.zl-home-hero {
    height: min(900px, 94svh);
    min-height: 720px;
    max-height: 900px;
}

.hero-media img {
    object-position: 62% center;
    transform: scale(1.035);
    filter: saturate(.88) contrast(1.04);
}

.hero-slide.is-active .hero-media img {
    transform: scale(1.0);
}

.hero-overlay {
    background:
        linear-gradient(90deg,
            rgba(5,5,4,.91) 0%,
            rgba(5,5,4,.78) 25%,
            rgba(5,5,4,.49) 52%,
            rgba(5,5,4,.17) 78%,
            rgba(5,5,4,.18) 100%),
        linear-gradient(0deg,
            rgba(5,5,4,.78) 0%,
            rgba(5,5,4,.18) 35%,
            rgba(5,5,4,.22) 100%);
}

.hero-slide-content {
    width: min(var(--zl-luxury-max), calc(100% - 80px));
    align-items: center;
}

.hero-copy {
    width: min(850px, 72vw);
    padding-top: 34px;
}

.hero-eyebrow {
    font-size: 9px;
    letter-spacing: .28em;
}

.hero-copy h1 {
    max-width: 850px;
    margin-top: 28px;
    font-size: clamp(4.7rem, 7.2vw, 7.8rem);
    line-height: .80;
    letter-spacing: -.048em;
}

.hero-copy h1 em {
    margin-top: 9px;
    color: var(--zl-luxury-gold);
}

.hero-description {
    max-width: 500px;
    margin-top: 30px;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,.72);
}

.hero-property {
    width: min(610px, 100%);
    margin-top: 25px;
    padding-top: 17px;
    border-top-color: rgba(255,255,255,.22);
}

.hero-property-type {
    font-size: 8px;
    letter-spacing: .20em;
}

.hero-property h2 {
    font-size: 24px;
    margin-top: 7px;
}

.hero-property p {
    font-size: 10px;
}

.hero-property > strong {
    font-size: 26px;
}

.hero-actions {
    margin-top: 24px;
}

.hero-controls {
    right: max(40px, calc((100vw - var(--zl-luxury-max)) / 2));
    bottom: 45px;
}

.hero-scroll {
    bottom: 43px;
}

/* ---------- FLOATING SEARCH ---------- */
.home-search-wrap {
    margin-top: -48px;
}

.home-search {
    grid-template-columns: 250px 1fr;
    min-height: 124px;
    border: 1px solid rgba(20,20,17,.07);
    box-shadow: 0 24px 60px rgba(20,20,17,.14);
}

.search-intro {
    padding: 27px 29px;
}

.search-intro h2 {
    font-size: 28px;
    line-height: .98;
}

.home-search-field {
    padding: 25px 19px;
}

.home-search-button {
    min-width: 145px;
}

/* ---------- BRAND INTRO ---------- */
.brand-intro {
    padding: 125px 0 120px;
}

.brand-intro-grid {
    grid-template-columns: 70px 1.15fr .85fr;
    gap: 55px;
    align-items: end;
}

.brand-intro-copy h2 {
    max-width: 690px;
    font-size: clamp(3.5rem, 5.3vw, 5.8rem);
    line-height: .91;
}

.brand-intro-text p {
    max-width: 420px;
    font-size: 14px;
    line-height: 1.85;
}

/* ---------- SECTION HEADERS ---------- */
.section-header,
.hot-header,
.type-header,
.latest-header {
    align-items: end;
}

.section-header h2,
.hot-header h2,
.type-header h2,
.latest-header h2 {
    letter-spacing: -.035em;
}

/* ---------- PROPERTY CARDS ---------- */
.collection-card,
.hot-card,
.latest-card {
    border-radius: 0;
}

.collection-image,
.hot-image,
.latest-image {
    overflow: hidden;
}

.collection-image img,
.hot-image img,
.latest-image img {
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.collection-card:hover .collection-image img,
.hot-card:hover .hot-image img,
.latest-card:hover .latest-image img {
    transform: scale(1.045);
}

/* ---------- FINAL CTA ---------- */
.home-cta {
    min-height: 590px;
}

/* ---------- TABLET ---------- */
@media (max-width: 1050px) {
    .zl-header-inner,
    .hero-slide-content {
        width: calc(100% - 52px);
    }

    .zl-main-nav {
        gap: 27px;
    }

    .zl-brand-image {
        width: 128px;
    }

    .hero-copy {
        width: min(720px, 78vw);
    }

    .hero-copy h1 {
        font-size: clamp(4.4rem, 8vw, 6.7rem);
    }

    .home-search {
        grid-template-columns: 220px 1fr;
    }

    .home-search-form {
        grid-template-columns: 1.25fr 1fr 1fr 125px;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 760px) {
    .zl-header-inner {
        width: calc(100% - 36px);
        min-height: 76px;
    }

    .zl-brand-image {
        width: 104px;
        height: 56px;
    }

    .zl-main-nav {
        top: 76px;
    }

    .zl-home-hero {
        height: 760px;
        min-height: 760px;
        max-height: none;
    }

    .hero-slide-content {
        width: calc(100% - 36px);
        align-items: flex-start;
        padding-top: 170px;
    }

    .hero-copy {
        width: 100%;
        padding-top: 0;
    }

    .hero-copy h1 {
        margin-top: 25px;
        font-size: clamp(3.65rem, 14vw, 5.2rem);
        line-height: .83;
    }

    .hero-description {
        max-width: 390px;
        margin-top: 24px;
        font-size: 12px;
    }

    .hero-property {
        max-width: 500px;
        margin-top: 21px;
    }

    .hero-controls {
        right: 18px;
        bottom: 27px;
    }

    .hero-scroll {
        left: 18px;
        bottom: 32px;
    }

    .home-search-wrap {
        margin-top: -25px;
    }

    .home-search {
        display: block;
    }

    .search-intro {
        padding: 24px;
    }

    .home-search-form {
        display: block;
    }

    .home-search-field {
        padding: 18px 20px;
        border-right: 0;
        border-bottom: 1px solid var(--zl-border);
    }

    .home-search-button {
        min-height: 58px;
        width: 100%;
    }

    .brand-intro {
        padding: 90px 0 85px;
    }

    .brand-intro-grid {
        display: block;
    }

    .brand-intro-number {
        margin-bottom: 28px;
    }

    .brand-intro-copy h2 {
        margin-bottom: 35px;
        font-size: clamp(3.2rem, 13vw, 4.6rem);
    }
}

@media (max-width: 480px) {
    .zl-header-inner {
        width: calc(100% - 30px);
    }

    .zl-brand-image {
        width: 92px;
    }

    .zl-home-hero {
        height: 735px;
        min-height: 735px;
    }

    .hero-slide-content {
        width: calc(100% - 30px);
        padding-top: 145px;
    }

    .hero-copy h1 {
        font-size: clamp(3.15rem, 14vw, 4.25rem);
    }

    .hero-description {
        max-width: 340px;
    }

    .hero-property h2 {
        font-size: 21px;
    }

    .hero-property > strong {
        font-size: 23px;
    }

    .hero-actions {
        margin-top: 21px;
    }
}

/* =========================================================
   22. LUXURY REFINEMENT V2
   Hero hierarchy, photography visibility, mobile composition
   ========================================================= */

/* ---------- HEADER REFINEMENT ---------- */
.zl-site-header {
    background: linear-gradient(
        180deg,
        rgba(5,5,4,.52) 0%,
        rgba(5,5,4,.18) 58%,
        rgba(5,5,4,0) 100%
    );
}

.zl-header-inner {
    min-height: 84px;
}

.zl-brand-image {
    width: 132px;
    height: 60px;
    object-fit: contain;
}

.zl-main-nav {
    gap: 34px;
}

.zl-main-nav a {
    font-size: 10px;
    letter-spacing: .04em;
}

.zl-header-cta {
    min-height: 44px;
    padding-inline: 18px;
}

/* ---------- HERO SCALE ---------- */
.zl-home-hero {
    height: min(900px, 92svh);
    min-height: 720px;
    max-height: 900px;
}

.hero-media img {
    object-position: center center;
    filter: saturate(.90) contrast(1.025);
}

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(5,5,4,.78) 0%,
            rgba(5,5,4,.57) 34%,
            rgba(5,5,4,.27) 61%,
            rgba(5,5,4,.10) 82%,
            rgba(5,5,4,.22) 100%
        ),
        linear-gradient(
            0deg,
            rgba(5,5,4,.68) 0%,
            rgba(5,5,4,.14) 42%,
            rgba(5,5,4,.16) 100%
        );
}

.hero-slide-content {
    width: min(var(--zl-luxury-max), calc(100% - 80px));
}

.hero-copy {
    width: min(720px, 62vw);
    padding-top: 24px;
}

.hero-eyebrow {
    font-size: 9px;
    letter-spacing: .24em;
}

.hero-copy h1 {
    max-width: 700px;
    margin-top: 25px;
    font-size: clamp(4.25rem, 5.65vw, 5.9rem);
    line-height: .84;
    letter-spacing: -.045em;
}

.hero-copy h1 em {
    margin-top: 8px;
}

.hero-description {
    max-width: 465px;
    margin-top: 27px;
    font-size: 12.5px;
    line-height: 1.78;
    color: rgba(255,255,255,.78);
}

.hero-property {
    width: min(560px, 100%);
    margin-top: 23px;
    padding-top: 16px;
    gap: 24px;
    border-top-color: rgba(255,255,255,.20);
}

.hero-property-type {
    font-size: 8px;
    letter-spacing: .19em;
}

.hero-property h2 {
    max-width: 390px;
    margin-top: 6px;
    font-size: 23px;
    line-height: 1.06;
}

.hero-property p {
    font-size: 10px;
}

.hero-property > strong {
    font-size: 25px;
}

.hero-actions {
    margin-top: 23px;
    gap: 25px;
}

/* Keep controls visually secondary. */
.hero-controls {
    bottom: 38px;
}

.hero-scroll {
    bottom: 36px;
}

/* ---------- FLOATING SEARCH ---------- */
.home-search-wrap {
    margin-top: -45px;
}

.home-search {
    min-height: 118px;
    box-shadow: 0 22px 55px rgba(20,20,17,.13);
}

.search-intro {
    padding: 25px 28px;
}

.search-intro h2 {
    font-size: 27px;
}

.home-search-field {
    padding: 23px 18px;
}

/* ---------- TABLET ---------- */
@media (max-width: 1050px) {
    .zl-header-inner,
    .hero-slide-content {
        width: calc(100% - 52px);
    }

    .zl-main-nav {
        gap: 25px;
    }

    .hero-copy {
        width: min(650px, 72vw);
    }

    .hero-copy h1 {
        font-size: clamp(4rem, 7vw, 5.8rem);
    }

    .hero-description {
        max-width: 440px;
    }

    .hero-property {
        width: min(540px, 100%);
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 760px) {
    .zl-site-header {
        background: linear-gradient(
            180deg,
            rgba(5,5,4,.72) 0%,
            rgba(5,5,4,.25) 100%
        );
    }

    .zl-header-inner {
        width: calc(100% - 36px);
        min-height: 74px;
    }

    .zl-brand-image {
        width: 98px;
        height: 52px;
    }

    .zl-main-nav {
        top: 74px;
    }

    .zl-home-hero {
        height: 760px;
        min-height: 760px;
        max-height: none;
    }

    .hero-media img {
        object-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5,5,4,.73) 0%,
                rgba(5,5,4,.49) 62%,
                rgba(5,5,4,.23) 100%
            ),
            linear-gradient(
                0deg,
                rgba(5,5,4,.76) 0%,
                rgba(5,5,4,.17) 48%,
                rgba(5,5,4,.24) 100%
            );
    }

    .hero-slide-content {
        width: calc(100% - 36px);
        padding-top: 142px;
        align-items: flex-start;
    }

    .hero-copy {
        width: 100%;
        max-width: 430px;
        padding-top: 0;
    }

    .hero-eyebrow {
        font-size: 8px;
        letter-spacing: .22em;
    }

    .hero-copy h1 {
        max-width: 390px;
        margin-top: 22px;
        font-size: clamp(3.15rem, 12vw, 4.35rem);
        line-height: .87;
        letter-spacing: -.038em;
    }

    .hero-copy h1 em {
        margin-top: 6px;
    }

    .hero-description {
        max-width: 355px;
        margin-top: 20px;
        font-size: 11.5px;
        line-height: 1.72;
    }

    .hero-property {
        width: min(430px, 100%);
        margin-top: 18px;
        padding-top: 14px;
        gap: 18px;
    }

    .hero-property h2 {
        font-size: 20px;
    }

    .hero-property > strong {
        font-size: 22px;
    }

    .hero-actions {
        margin-top: 19px;
        gap: 17px;
    }

    .hero-controls {
        right: 18px;
        bottom: 22px;
    }

    .hero-scroll {
        left: 18px;
        bottom: 27px;
    }

    /* Search becomes a clean card below the hero. */
    .home-search-wrap {
        margin-top: -18px;
    }

    .home-search {
        border: 1px solid rgba(20,20,17,.07);
    }

    .search-intro {
        padding: 22px 21px;
    }

    .search-intro h2 {
        font-size: 25px;
    }

    .home-search-field {
        padding: 17px 19px;
    }

    .home-search-button {
        min-height: 55px;
    }
}

/* ---------- SMALL MOBILE ---------- */
@media (max-width: 480px) {
    .zl-header-inner {
        width: calc(100% - 28px);
    }

    .zl-brand-image {
        width: 88px;
        height: 50px;
    }

    .zl-home-hero {
        height: 735px;
        min-height: 735px;
    }

    .hero-slide-content {
        width: calc(100% - 28px);
        padding-top: 132px;
    }

    .hero-copy h1 {
        max-width: 340px;
        font-size: clamp(2.85rem, 12.8vw, 3.85rem);
        line-height: .88;
    }

    .hero-description {
        max-width: 320px;
        margin-top: 18px;
        font-size: 11px;
    }

    .hero-property {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
        margin-top: 17px;
    }

    .hero-property h2 {
        font-size: 19px;
    }

    .hero-property > strong {
        font-size: 21px;
    }

    .hero-actions {
        margin-top: 17px;
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-actions .zl-button {
        min-height: 46px;
        padding-inline: 16px;
    }

    .hero-controls {
        right: 14px;
        bottom: 18px;
    }

    .hero-scroll {
        left: 14px;
        bottom: 23px;
    }
}

/* ---------- REDUCE MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    .hero-media img,
    .hero-slide,
    .hero-copy h1,
    .hero-description,
    .hero-property,
    .hero-actions {
        transition: none !important;
        animation: none !important;
    }
}
