/* ----------------------stats-section------------------------- */
.stats-section {
    width: 100%;
    min-height: 570px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 50px 0;
}



/* ── Purple 4-point star: sits on top of blob, left area ── */
.star-wrap {
    position: absolute;
    left: 0px;
    top: 52%;
    transform: translateY(-56%);
    z-index: 2;
}

.star-wrap img {
    /* width: 52px; */
    /* height: 52px; */
    display: block;
}

/* ── Right content: tagline + counters ── */
.stats-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1000px;
}

.stats-tagline p {
    font-size: clamp(1.1rem, 3vw, 6.4rem);
    font-weight: 500;
    color: #0d0d0d;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

/* ── Counters row ── */
.stats-counters {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.stat-number {
    font-size: clamp(1.4rem, 3.8vw, 4.9rem);
    font-weight: 700;
    color: #3d00e0;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1.72rem;
    color: #999;
    font-weight: 400;
    white-space: nowrap;
}

/* ── TABLET ── */
@media (max-width: 720px) {
    .stats-content {
        margin-left: 150px;
        gap: 24px;
    }

    .stats-counters {
        gap: 32px;
    }
}

/* ── MOBILE ── */
@media (max-width: 500px) {
    .stats-section {
        padding: 44px 0 60px;
    }

    .blob-yellow {
        width: 150px;
        height: 150px;
        bottom: -55px;
        left: -55px;
    }

    .star-wrap {
        left: 0px;
        transform: translateY(-60%);
    }

    .star-wrap svg {
        width: 38px;
        height: 38px;
    }

    .stats-content {
        margin-left: 0px;
        padding-right: 20px;
        gap: 20px;
    }

    .stats-counters {
        gap: 22px;
        flex-wrap: wrap;
    }
}

/* ---------------------------end------------------------- */



/* ------------------------luxury-wrapper------------------- */


.luxury-wrapper {
    background: #f5f2ee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.collection-header {
    text-align: center;
    margin-bottom: 48px;
}

.collection-header .eyebrow {
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #9a8c7e;
    margin-bottom: 12px;
}

.collection-header h1 {
    font-weight: 300;
    font-size: clamp(36px, 5vw, 64px);
    color: #2c2420;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.collection-header h1 em {
    font-style: italic;
    color: #7a6055;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3px;
    width: 100%;
    max-width: 100%;
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 3 / 1.1;
}

.banner-panel {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.banner-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.banner-panel:hover img {
    transform: scale(1.04);
}

.panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(20, 12, 8, 0.55) 0%,
            rgba(20, 12, 8, 0.1) 40%,
            transparent 70%);
    transition: background 0.5s ease;
}

.banner-panel:hover .panel-overlay {
    background: linear-gradient(to top,
            rgba(20, 12, 8, 0.65) 0%,
            rgba(20, 12, 8, 0.15) 40%,
            transparent 70%);
}

.panel-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    transform: translateY(8px);
    transition: transform 0.4s ease;
}

.banner-panel:hover .panel-label {
    transform: translateY(0);
}

.panel-category {
    font-weight: 300;
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #c9b8a8;
    margin-bottom: 6px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

.banner-panel:hover .panel-category {
    opacity: 1;
    transform: translateY(0);
}

.panel-title {
    font-weight: 300;
    font-size: clamp(18px, 2.2vw, 28px);
    color: #f5ede6;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #d4b99a;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
    text-decoration: none;
}

.banner-panel:hover .panel-cta {
    opacity: 1;
    transform: translateY(0);
}

.panel-cta::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: #d4b99a;
    transition: width 0.3s ease;
}

.banner-panel:hover .panel-cta::after {
    width: 36px;
}

.accent-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 300;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2c2420;
    background: rgba(245, 240, 232, 0.9);
    padding: 5px 10px;
    backdrop-filter: blur(4px);
}

.collection-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}



/* ---- Responsive ---- */

@media (max-width: 900px) {
    .banner-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 52vw 60vw 52vw;
        aspect-ratio: unset;
        gap: 3px;
    }

    .banner-panel {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .luxury-wrapper {
        padding: 28px 14px;
    }

    .collection-header {
        margin-bottom: 28px;
    }

    .banner-grid {
        grid-template-rows: 60vw 72vw 60vw;
        border-radius: 1px;
    }

    .panel-label {
        padding: 20px 16px;
    }

    .panel-category {
        opacity: 1;
        transform: translateY(0);
    }

    .panel-cta {
        opacity: 1;
        transform: translateY(0);
    }

    .collection-footer {
        gap: 24px;
        margin-top: 28px;
    }

    .footer-divider {
        height: 24px;
    }
}

@media (min-width: 901px) and (max-width: 1100px) {
    .banner-grid {
        aspect-ratio: 3 / 1.2;
    }

    .panel-title {
        font-size: clamp(16px, 1.9vw, 24px);
    }
}

/* -------------------end------------------------ */


/* -------------------------pm-section----------------- */

.pm-section {
    background: #ffffff;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 80px 60px 60px;
}

/* ── Top Row: Left text + Right image grid ── */
.pm-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 72px;
}

/* LEFT: Text block */
.pm-text h2 {
    font-weight: 800;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    color: #0a0a0a;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.pm-text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #555;
    max-width: 340px;
}

/* RIGHT: 2×2 circle grid with star accent */
.pm-circles {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pm-circle {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background: #eee;
    position: relative;
}

.pm-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: filter 0.4s ease, transform 0.5s ease;
}

.pm-circle:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Yellow 4-pointed star in the center overlap */
.pm-star {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 10;
    pointer-events: none;
}

@keyframes starSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ── Bottom Row: Feature Icons ── */
.pm-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid #e8e8e8;
    padding-top: 40px;
}

.pm-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 0 32px 0 0;
    border-right: 1px solid #e8e8e8;
}

.pm-feature:last-child {
    border-right: none;
    padding-left: 32px;
    padding-right: 0;
}

.pm-feature:nth-child(2) {
    padding-left: 32px;
}

.pm-icon-box {
    width: 52px;
    height: 52px;
    background: #0a0a0a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pm-icon-box svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.pm-feature-text h3 {
    font-weight: 700;
    font-size: 17px;
    color: #0a0a0a;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.pm-feature-text p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: #777;
    max-width: 180px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .pm-section {
        padding: 60px 40px 50px;
    }

    .pm-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pm-text p {
        max-width: 100%;
    }

    .pm-circles {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .pm-section {
        padding: 48px 20px 40px;
    }

    .pm-top {
        gap: 36px;
    }

    .pm-star {
        width: 56px;
        height: 56px;
    }

    .pm-features {
        grid-template-columns: 1fr;
        gap: 28px;
        border-top: 1px solid #e8e8e8;
    }

    .pm-feature {
        border-right: none;
        padding: 0;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 28px;
    }

    .pm-feature:last-child {
        border-bottom: none;
        padding-left: 0;
        padding-bottom: 0;
    }

    .pm-feature:nth-child(2) {
        padding-left: 0;
    }
}


/* -------------------------end------------------ */




/* ------------------em-section--------------------- */

.em-section {
    background: #ffffff;
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: 48% 1fr;
    min-height: 520px;
    position: relative;
    max-width: 1400px;
    margin: auto;
}

/* ════════════════════════
     LEFT COLUMN
  ════════════════════════ */
.em-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px 60px 0px;
}

.em-left-top {
    display: flex;
    flex-direction: column;
}

.em-left h2 {

    font-weight: 800;
    font-size: clamp(30px, 3.4vw, 50px);
    line-height: 1.08;
    color: #0a0a0a;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.em-left p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    color: #999;
    max-width: 310px;
}

.em-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #002AC4;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    max-width: 286px;
    height: 64px;
    justify-content: center;
}

.em-btn:hover {
    background: #4a14e0;
    color: #fff;
    transform: translateY(-2px);
}

/* ════════════════════════
     RIGHT COLUMN
  ════════════════════════ */
.em-right {
    position: relative;
    display: grid;
    /* two sub-cols: stacked cards | tall card */
    grid-template-columns: 230px 1fr;
    align-items: start;
    overflow: hidden;
    width: 630px;
}

/* ── Middle: stacked cards ── */
.em-cards-col {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 0;
    padding-right: 40px;
    height: 100%;
}

.em-card {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #f2eeea;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.07);
    flex-shrink: 0;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Card 1: starts at very top of section */
.em-card-1 {
    height: 220px;
    margin-top: 0;
    margin-bottom: 14px;
}

/* Card 2: pushed down to roughly vertical center */
.em-card-2 {
    height: 230px;
    margin-top: 36px;
}

.em-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.em-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

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

/* ── Right tall card ── */
.em-tall-card {
    max-width: 400px;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    background: #e8e0d8;
    margin-top: 110px;
    /* pushes top of card down, bleeds bottom */
    transition: transform 0.4s ease;
}

.em-tall-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.em-tall-card:hover img {
    transform: scale(1.04);
}

/* ── Black star ── */
.em-star {
    position: absolute;
    top: 14px;
    left: 244px;
    /* right of cards col */
    width: 58px;
    height: 58px;
    z-index: 10;
    pointer-events: none;
    animation: starPulse 4s ease-in-out infinite;
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(12deg);
    }
}

/* ════════════════════════
     RESPONSIVE
  ════════════════════════ */
@media (max-width: 960px) {
    .em-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .em-left {
        padding: 10px 0px 36px;
        justify-content: flex-start;
        gap: 36px;
    }

    .em-right {
        grid-template-columns: 180px 1fr;
        height: 420px;
    }

    .em-card-1 {
        height: 180px;
        margin-bottom: 12px;
    }

    .em-card-2 {
        height: 190px;
        margin-top: 28px;
    }

    .em-tall-card {
        min-height: 420px;
        margin-top: 90px;
    }

    .em-star {
        left: 194px;
        top: 10px;
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 640px) {
    .em-left {
        padding: 10px 0px 28px;
        gap: 28px;
    }

    .em-right {
        grid-template-columns: 140px 1fr;
        height: 320px;
    }

    .em-cards-col {
        padding-right: 10px;
    }

    .em-card-1 {
        height: 138px;
        border-radius: 14px;
        margin-bottom: 10px;
    }

    .em-card-2 {
        height: 144px;
        border-radius: 14px;
        margin-top: 20px;
    }

    .em-tall-card {
        min-height: 320px;
        margin-top: 70px;
        border-radius: 14px 0 0 14px;
    }

    .em-star {
        left: 150px;
        top: 6px;
        width: 36px;
        height: 36px;
    }

    .em-btn {
        font-size: 14px;
        padding: 14px 28px;
    }
}

/* ── Small phones ───────────────────────────────────────── */
@media (max-width: 400px) {
    .em-right {
        min-height: 280px;
    }

    .em-card-1 {
        height: 110px;
    }

    .em-card-2 {
        height: 95px;
    }

    .em-tall-card {
        height: 220px;
        top: 24px;
        border-radius: 60px 60px 8px 8px;
    }
}

/* * ── Mobile ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .em-section {
        flex-direction: column;
        padding: 2.5rem 5%;
        gap: 2.5rem;
    }

    .em-left-top h2 {
        font-size: clamp(32px, 4vw, 52px);
    }

    .em-right {
        min-height: 340px;
        width: 100%;
    }

    .em-star {
        left: 52%;
        top: 6px;
        width: 24px;
        height: 24px;
    }

    .em-cards-col {
        width: 100%;
    }

    .em-card-1 {
        height: 140px;
    }

    .em-card-2 {
        height: 120px;
    }

    .em-tall-card {
        width: 100%;
        height: 280px;
        top: 30px;
        border-radius: 80px 80px 10px 10px;
    }
}

@media (min-width: 993px) and (max-width: 1122px) {
    .em-section {
        grid-template-columns: 1fr 1fr;
        padding: 60px;
        justify-items: center;
    }

    .d-grid-4 {
        display: grid;
        grid-template-columns: 1fr 1fr !important;
        justify-items: center;
    }

    .em-right {
        grid-template-columns: 1fr 1fr;
    }

    .stats-section {
        padding: 50px !important;
    }

    .d-flex-footer {
        align-items: center;
    }

    .slide-card { 
        grid-template-columns: 332px 408px 132px !important;
    }

}