


 /* ================= HERO (AUTO SLIDER) ================= */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: radial-gradient(circle at 80% 50%, #111 0%, #000 60%);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.hero-content {
    max-width: 520px;
}

.sub-heading {
    font-size: 13px;
    letter-spacing: 4px;
    color: #333;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 40px;
    letter-spacing: 3px;
    margin-bottom: 18px;
    color: #ffffff;
    font-family: 'Sackers Gothic', sans-serif;
    font-weight: 500;
}

.hero-text {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #9a9a9a;
    margin-bottom: 45px;
}

.btn {
    display: inline-block;
    padding: 14px 42px;
    border: 1px solid #8a8a8a;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #c8a96a;
    border-color: #c8a96a;
    color: #000;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    margin-top: 50px;
    height: 92vh;
    max-width: 520px;
    width: 100%;
    object-fit: contain;
}

.hero-indicators {
    position: absolute;
    right: 34px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
}

.hero-dot {
    width: 3px;
    height: 28px;
    background: rgba(255,255,255,0.25);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
}

.hero-dot:hover {
    background: rgba(255,255,255,0.45);
}

.hero-dot.active {
    background: #ffffff;
    height: 42px;
}

@media (max-width: 900px) {
    .hero-indicators {
        right: 14px;
    }
}

/* ================= QUOTE SECTION ================= */
.quote-section {
    background: #ffffff;
    padding-top: 100px;
    padding-bottom: 40px;
    padding-right: 20px;
    padding-left: 20px;
}

.quote-container {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    color: #111;
}

.quote-mark {
    position: absolute;
    top: -40px;
    left: 50px;
    font-family: "Playfair Display", serif;
    font-size: 80px;
    line-height: 1;
    color: #111;
}

.quote-text {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    line-height: 2.2;
    letter-spacing: 1.6px;
    color: #222;
    margin-bottom: 55px;
    padding: 0 20px;
}

.quote-footer {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* ================= COLLECTION SECTION ================= */
.collection-section {
    position: relative;
    padding: 140px 0 100px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.collection-bg-title {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    text-align: center;
    font-size: 105px;
    font-weight: 700;
    letter-spacing: 12px;
    line-height: 1;
    white-space: nowrap;
    color: rgba(0, 0, 0, 0.03);
    pointer-events: none;
    z-index: 0;
}

.collection-grid {
    position: relative;
    z-index: 1;
    display: grid;
    width: 85%;
    max-width: 1400px;
    grid-template-columns: 2.3fr 1fr 2.5fr;
    grid-template-rows: 420px 420px 420px;
    gap: 3px;
}

.collection-grid .senator {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.collection-grid .kaftan {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}

.collection-grid .suit {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
}

.collection-grid .agbada {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
}

.collection-grid .native {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
}

.grid-item {
    position: relative;
    display: block;
    overflow: hidden;
    background: #000;
    text-decoration: none;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.grid-item:hover img {
    transform: scale(1.06);
}

.overlay {
    position: absolute;
    inset: 0;
    padding: 22px 24px;
    width: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.2),
        transparent
    );
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.overlay span {
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1;
}

/* Desktop / tablet image framing */
.collection-grid .senator img {
    object-position: 50% 18%;
}

.collection-grid .kaftan img {
    object-position: 50% 20%;
}

.collection-grid .suit img {
    object-position: 50% 18%;
}

.collection-grid .native img {
    object-position: 50% 30%;
}

.collection-grid .agbada img {
    object-position: 50% 12%;
}

/* ================= HOW IT WORKS SECTION ================= */
.how-section {
    background: #ffffff;
    padding: 40px 60px;
    text-align: center;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 90px;
}

.section-header h4 {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b08a44;
}

.section-header .line {
    width: 60px;
    height: 1px;
    background: #b08a44;
}

.steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 140px;
    z-index: 1;
}

.steps::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 45%;
    width: 270px;
    height: 270px;
    transform: translate(-50%, -50%);
    background: url('/images/vector.png') no-repeat center center;
    background-size: contain;
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
}

.step {
    position: relative;
    z-index: 1;
}

.step h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: rgba(0, 0, 0, 1);
}

.step h5 {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: rgba(0, 0, 0, 1);
}

.step p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

.signature-header {
    margin-bottom: 70px;
}

.view-more {
    margin-top: 50px;
}

.view-more a {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid #111;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #111;
    transition: 0.3s ease;
}

.view-more a:hover {
    background: #111;
    color: #fff;
}

/* ================= TESTIMONIAL SECTION ================= */
.testimonials {
    background: #ffffff;
    padding: 130px 20px;
    position: relative;
    text-align: center;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 70px;
}

.testimonial-header h4 {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b08a44;
}

.testimonial-header .line {
    width: 60px;
    height: 1px;
    background: #b08a44;
}

.testimonial-content {
    max-width: 300px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #222;
    margin-bottom: 10px;
}

.divider {
    width: 50px;
    height: 2px;
    background: #222;
    margin: 0 auto 30px auto;
}

.client-name {
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
}

.client-location {
    font-size: 14px;
    letter-spacing: 3px;
    color: #8d8d8d;
    font-weight: 500;
    margin-bottom: 30px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #bbb;
}

.dot.active {
    background: #222;
}

.big-quote {
    position: absolute;
    right: 100px;
    font-family: "Playfair Display", serif;
    bottom: 10px;
    font-size: 120px;
    color: #111;
}

/* ================= LAUNDRY SECTION ================= */
.laundry-section {
    background: #ffffff;
    padding-left: 50px;
    padding-bottom: 50px;
    padding-right: 50px;
    padding-top: 120px;
}

.laundry-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

.laundry-image {
    flex: 1;
    height: 450px;
    overflow: hidden;
}

.laundry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transform: scale(1.3);
    transition: 0.4s ease;
}

.laundry-content {
    flex: 1;
}

.laundry-content h2 {
    font-size: 28px;
    font-family: "Sackers Gothic", sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.laundry-content p {
    font-size: 18px;
    font-family: 'PP Neue Montreal';
    font-weight: 500;
    line-height: 30px;
    color: #555;
    margin-bottom: 25px;
    max-width: 450px;
}

.laundry-service {
    border: 1px solid rgba(0, 0, 0, 1);
    background-color: #fff;
    color: rgba(0, 0, 0, 1);
    font-size: 16px;
    font-family: 'Sackers Gothic';
    font-weight: 300;
    padding: 12px 16px;
}
/* ================= SIGNATURE PRODUCTS ================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-grid a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card {
    width: 100%;
}

.product-image {
    width: 100%;
    overflow: hidden;
    background: #f7f7f7;
}

.product-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-card h3 {
    margin-top: 14px;
    margin-bottom: 8px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111;
}

.product-card p {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1280px) {
    .hero {
        padding: 0 70px;
    }

    .collection-grid {
        width: 92%;
    }
}

@media (max-width: 1100px) {
    .hero-slide {
        padding: 0 60px;
    }

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

    .hero-image img {
        max-width: 420px;
        height: 80vh;
        margin-top: 30px;
    }

    .collection-section {
        padding: 110px 0 80px;
    }

    .collection-bg-title {
        font-size: 72px;
        letter-spacing: 8px;
        top: 32px;
    }

    .collection-grid {
        width: 90%;
        grid-template-rows: 270px 220px 220px;
    }
}

@media (max-width: 1024px) {
    .hero {
        height: 100vh;
        padding: 0;
        display: block;
        position: relative;
        overflow: hidden;
        background: radial-gradient(circle at 60% 35%, #1a1a1a 0%, #000 70%);
    }

    .hero-image {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

    .hero-image img {
        margin: 0;
        height: 88vh;
        max-width: 92vw;
        width: auto;
        object-fit: contain;
        transform: translateY(40px);
    }

    .hero::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 45%;
        z-index: 2;
        background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.25), transparent);
    }

    .hero-content {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 60px;
        z-index: 3;
        text-align: center;
        padding: 0 28px;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-text {
        font-size: 14px;
    }

    .btn {
        padding: 12px 38px;
    }

    .how-section {
        padding: 60px 24px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        margin-bottom: 90px;
    }

    .steps::before {
        left: 50%;
        width: 220px;
        height: 220px;
        opacity: 0.12;
    }

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

    .product-image img {
        height: 280px;
    }

    .product-card h3 {
        font-size: 13px;
        letter-spacing: 1.8px;
    }

    .product-card p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .main-navbar {
        position: absolute;
        padding: 18px 18px;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .logo img {
        width: 110px;
        margin: 0 auto;
    }

    .hero {
        height: 100vh;
        padding: 0;
        position: relative;
        overflow: hidden;
        background: radial-gradient(circle at 55% 30%, #1a1a1a 0%, #000 70%);
    }

    .hero-image {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

    .hero-image img {
        width: auto;
        height: 50vh;
        min-height: 600px;
        max-width: none;
        object-fit: cover;
        margin: 0 auto;
        transform: translateY(30px);
    }

    .hero-content {
        position: absolute;
        bottom: 50px;
        left: 0;
        right: 0;
        text-align: center;
        padding: 0 20px;
        z-index: 3;
    }

    .hero::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 45%;
        background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.3), transparent);
        z-index: 2;
    }

    .sub-heading {
        color: rgba(255,255,255,0.70);
        margin-bottom: 14px;
        letter-spacing: 3px;
    }

    .hero h1 {
        font-size: 30px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .hero-text {
        font-size: 13px;
        margin-bottom: 22px;
    }

    .btn {
        padding: 12px 34px;
        font-size: 11px;
        letter-spacing: 3px;
    }

    .quote-section {
        padding: 90px 18px 45px;
    }

    .quote-container {
        max-width: 520px;
    }

    .quote-mark {
        left: 18px;
        top: -34px;
        font-size: 70px;
    }

    .quote-text {
        font-size: 16px;
        line-height: 2.05;
        margin-bottom: 35px;
    }

    .collection-section {
        position: relative;
        padding: 55px 0 40px;
        background: #ffffff;
        display: flex;
        justify-content: center;
        overflow: hidden;
    }

    .collection-bg-title {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        text-align: center;
        font-size: 28px;
        font-weight: 700;
        letter-spacing: 3px;
        line-height: 1;
        white-space: nowrap;
        color: rgba(0, 0, 0, 0.03);
        pointer-events: none;
        z-index: 0;
        display: block;
    }

    .collection-grid {
        position: relative;
        z-index: 1;
        display: grid;
        width: calc(100% - 20px);
        max-width: none;
        margin: 0 10px;
        grid-template-columns: 2.3fr 1fr 2.5fr;
        grid-template-rows: 145px 145px 145px;
        gap: 2px;
    }

    .collection-grid .senator {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .collection-grid .kaftan {
        grid-column: 2 / 4;
        grid-row: 1 / 2;
    }

    .collection-grid .suit {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }

    .collection-grid .agbada {
        grid-column: 3 / 4;
        grid-row: 2 / 4;
    }

    .collection-grid .native {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }

    .grid-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .collection-grid .senator img { object-position: 50% 18%; }
    .collection-grid .kaftan img { object-position: 50% 20%; }
    .collection-grid .suit img { object-position: 50% 18%; }
    .collection-grid .native img { object-position: 50% 30%; }
    .collection-grid .agbada img { object-position: 50% 12%; }

    .overlay {
        position: absolute;
        inset: 0;
        padding: 10px 12px;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.18),
            transparent
        );
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
    }

    .overlay span {
        color: #fff;
        font-size: 8px;
        letter-spacing: 1.4px;
        text-transform: uppercase;
        line-height: 1.1;
        text-align: right;
    }

    .how-section {
        padding: 60px 18px;
    }

    .section-header {
        gap: 16px;
        margin-bottom: 55px;
    }

    .section-header .line {
        width: 45px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 80px;
        position: relative;
    }

    .steps::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 180px;
        height: 180px;
        transform: translate(-50%, -50%);
        background: url('/images/vector.png') no-repeat center center;
        background-size: contain;
        opacity: 0.15;
        z-index: 0;
        pointer-events: none;
    }

    .step {
        position: relative;
        z-index: 1;
    }

    .step h3 {
        font-size: 18px;
    }

    .step h5 {
        font-size: 12px;
        letter-spacing: 2.5px;
    }

    .step p {
        font-size: 13px;
        line-height: 1.75;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px;
        width: 100%;
    }

    .product-grid a {
        width: 100%;
        min-width: 0;
    }

    .product-card {
        width: 100%;
        min-width: 0;
    }

    .product-image {
        width: 100%;
    }

    .product-image img {
        width: 100%;
        height: 210px;
        object-fit: cover;
        display: block;
    }

    .product-card h3 {
        font-size: 10px;
        letter-spacing: 1.4px;
        line-height: 1.4;
    }

    .product-card p {
        font-size: 12px;
        font-weight: 700;
    }

    .testimonials {
        padding: 90px 18px;
    }

    .testimonial-content {
        max-width: 340px;
    }

    .big-quote {
        right: 20px;
        bottom: 20px;
        font-size: 90px;
    }

    .foot__enquiry-content {
        grid-template-columns: 1fr;
        padding-left: 18px;
        padding-right: 18px;
        gap: 24px;
    }

    .foot__enquiry-title {
        font-size: 30px;
        letter-spacing: 4px;
    }

    .foot__enquiry-text {
        margin-bottom: 35px;
    }

    .footer-container {
        flex-direction: column;
        gap: 35px;
        padding: 0 18px 20px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
        margin-right: 0;
        padding: 0;
    }

    .footer-links {
        gap: 60px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        padding: 0 18px;
        text-align: center;
    }

    .footer-policy a {
        margin-left: 14px;
        margin-right: 14px;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: 26px;
    }

    .collection-grid {
        width: 95%;
        max-width: 360px;
        grid-template-columns: 2.3fr 1fr 2.5fr;
        grid-template-rows: 115px 115px 115px;
        gap: 2px;
    }

    .collection-grid .senator img {
        object-position: 50% 18%;
    }

    .collection-grid .kaftan img {
        object-position: 50% 20%;
    }

    .collection-grid .suit img {
        object-position: 50% 18%;
    }

    .collection-grid .native img {
        object-position: 50% 30%;
    }

    .collection-grid .agbada img {
        object-position: 50% 12%;
    }

    .overlay {
        padding: 8px 10px;
    }

    .overlay span {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .collection-bg-title {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .steps {
        gap: 26px;
    }

    .steps::before {
        width: 170px;
        height: 170px;
        opacity: 0.12;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px;
    }

    .product-image img {
        height: 190px;
    }

    .product-card h3 {
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .product-card p {
        font-size: 11px;
    }
}
