/* contactus */

.contactus {
    position: relative;
    overflow: hidden;
    background: var(--brown-color-3);
    color: var(--white-color);
    padding: 36px 16px;
    min-height: 300px;
}

.contactus__inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contactus__header {
    text-align: center;
    margin-bottom: 22px;
}

.contactus__title {
    font-weight: 400;
    font-style: normal;
    font-size: 62.4px;
    line-height: 48px;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}

.contactus__subtitle {
    margin: 0 auto;
    max-width: 540px;
    font-size: 25px;
    color: var(--light-grey-color-2);
}

.contactus__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 40px;
    align-items: center;
    justify-content: center;
    justify-items: center;
    text-align: center;
    margin-left: 0;
}

.contactus__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contactus__icon {
    margin-top: 15px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
}

.contactus__icon--cream {
    background: var(--light-grey-color-3);
}

.contactus__icon--yellow {
    background: var(--light-yellow-color);
}

.contactus__icon--pink {
    background: var(--light-pink-color);
}

.contactus__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contactus__label {
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 1px;
}

.contactus__value {
    margin-top: -10px;
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 12px;
    color: var(--light-grey-color-2);
    text-align: left;
}

/* Decorative circles */
.contactus__circles {
    position: absolute;
    inset: auto 0 0 auto;
    width: 50%;
    height: 100%;
    pointer-events: none;
}

.contactus__circle {
    position: absolute;
    right: -60px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    background: transparent;
}

.contactus__circle--lg {
    width: 210px;
    height: 210px;
    top: -30px;
}

.contactus__circle--md {
    width: 160px;
    height: 160px;
    top: 70px;
    right: 30px;
}

.contactus__circle--sm {
    width: 140px;
    height: 140px;
    bottom: -30px;
    right: -10px;
}

@media (min-width: 1024px) {
    .contactus {
        padding: 56px 24px;
    }
}
@media (min-width: 680px) {
    .contactus {
        padding: 44px 24px;
    }

    .contactus__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 680px) {
    /* .contactus__grid {
        text-align:justify;
        justify-items: flex-start;
    } */

    .contactus__item {
        display: block;
        align-items: center;
    }
    .contactus__text {
        align-items: center;
    }
}

/* mainslider */
.aboutus-section {
    padding: 0 20px;
    margin-bottom: 5%;
}

.aboutus-container {
    max-width: 1222px;
    margin: 0 auto;
}

.aboutus-content {
    text-align: center;
    margin-bottom: 60px;
}

.aboutus-title {
    font-weight: 400;
    font-style: normal;
    font-size: 80px;
    letter-spacing: -2%;
    color: var(--brown-color-3);
    margin: 0 0 30px 0;
    text-transform: uppercase;
    text-align: center;
}

.aboutus-description {
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 16px;
    font-style: normal;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--brown-color-3);
    max-width: 1000px;
    margin: 0 auto;
}

.aboutus-image {
    width: 1222px;
    height: 561px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.aboutus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
}

/* Responsive breakpoints */
@media (max-width: 1280px) {
    .aboutus-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .aboutus-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1222/561;
    }
}

@media (max-width: 768px) {
    .aboutus-title {
        font-size: 60px;
        line-height: 60px;
    }

    .aboutus-description {
        font-size: 14px;
    }

    .aboutus-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1222/561;
    }
}

@media (max-width: 480px) {
    .aboutus-section {
        padding: 0 10px;
    }

    .aboutus-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1222/561;
    }
}
/* ourstory */

.ourstory-section {
    background: var(--light-brown-color-2);
    padding: 0 20px;
    overflow: hidden; /* clip decorative circles to section bounds */
}

.ourstory-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ourstory-title {
    justify-self: center;
    position: relative;
    z-index: 2;
    font-weight: 400;
    font-style: normal;
    font-size: 80px;
    letter-spacing: -2%;
    color: var(--brown-color-3);
    margin: 0 0 0 0;
    text-transform: uppercase;
}

.ourstory-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.ourstory-text {
    position: relative;
    z-index: 2;
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--brown-color-3);
    text-align: left;
    /* margin-top: 10%; */
}

.ourstory-text p {
    margin: 0 0 20px 0;
}

.ourstory-text p:last-child {
    margin-bottom: 0;
}

.ourstory-image {
    width: 100%;
    height: auto;
    max-height: 420px; /* cap height while allowing smaller images */
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.ourstory-image img {
    object-fit: cover;
    position: relative;
    width: 100%;
    height: auto;
    max-height: 420px; /* align with container cap */
    display: block;
    z-index: 2;
}

/* Decorative circles */
.story-bubble {
    position: absolute;
    border-radius: 50%;
    background: var(--light-grey-color-2);
    z-index: 1;
}

.story-bubble-1 {
    width: 220px;
    height: 220px;
    top: -30%;
    left: 0%;
}

.story-bubble-2 {
    width: 220px;
    height: 220px;
    top: 0%;
    left: -12%;
}

.story-bubble-3 {
    width: 200px;
    height: 200px;
    bottom: -20%;
    right: -9%;
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .ourstory-section {
        padding: 60px 20px;
    }

    .ourstory-title {
        font-size: 2.5rem;
        margin: 0 0 0 0;
    }

    .ourstory-content {
        gap: 40px;
    }
}
/* Mobile responsive */
@media (max-width: 768px) {
    .ourstory-section {
        margin-top: 40px;
        padding: 40px 15px;
    }

    .ourstory-container {
        max-width: 100%;
    }

    .ourstory-title {
        font-size: 2.2rem;
        margin: 0 0 0 0;
    }

    .ourstory-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ourstory-text {
        font-size: 14px;
        text-align: center;
    }
}

/* Small mobile responsive */
@media (max-width: 480px) {
    .ourstory-section {
        padding: 30px 10px;
    }

    .ourstory-title {
        font-size: 50px;
        margin: 0 0 0 0;
    }

    .ourstory-content {
        gap: 25px;
    }

    .ourstory-text {
        font-size: 14px;
        line-height: 16px;
    }

    .ourstory-text p {
        margin-bottom: 15px;
    }
}
/* philosophy */

.philosophy-section {
    padding: 2.5rem 1rem;
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
}
h2{
    margin-block-start: 0;
    margin-block-end: 0;
}
.section-heading {
    /* font-family: 'Courier New', Courier, monospace !important; */
    text-align: center;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 0.06em;
    color: var(--black-color-2);
    margin: 0 0 1.25rem 0;
    font-size: 80px;
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    background: white;
}

.hero-left {
    background: var(--light-yellow-color);
    padding: clamp(20px, 3.5vw, 28px);
    position: relative;
    min-height: 280px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-right {
    aspect-ratio: 16 / 10;
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-title {
    font-weight: 800;
    font-style: italic;
    color: var(--black-color-2);
    margin: 0 0 12px 0;
    letter-spacing: 0.02em;
    font-size: 52px;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--black-color-2);
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 16px;
    line-height: 19.2px;
    letter-spacing: 0;
    max-width: 520px;
    position: relative;
    z-index: 2;
}

.hero-text p {
    margin: 0 0 10px 0;
}

/* Decorative pale circles matching the mock */
.bg-circles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: var(--s9);
}

.circle-1 {
    width: 140px;
    height: 140px;
    right: -8%;
    bottom: 27%;
    opacity: 0.9;
}

.circle-2 {
    width: 120px;
    height: 120px;
    right: 14%;
    bottom: 20%;
    opacity: 0.9;
}

.circle-3 {
    width: 150px;
    height: 150px;
    left: 53%;
    bottom: -18%;
    opacity: 0.6;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 2;
    border-top: none;
}

.card {
    background: var(--light-blue-color);
    text-align: center;
    padding: 28px 16px;
    border: 1px solid #efe5b5;
}

.card:last-child {
    border-right: none;
}

.card-icon {
    width: 22px;
    height: 22px;
    border: 2px solid var(--black-color-2);
    margin: 0 auto 14px;
    border-radius: 2px;
    background-image: url("/images/aboutus/Generic_Icon.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.card-title {
    margin: 0 0 6px 0;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.04em;
    color: var(--black-color-2);
    font-size: 40px;
}

.card-text {
    margin: 0;
    color: var(--grey-color);
    font-family: "Roboto", Regular;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.45;
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
}

/* Borders around the whole hero+cards block to match the mock spacing */
.hero,
.cards {
    box-shadow: 0 0 0 1px #efe5b5 inset;
}

/* Responsive */
@media (max-width: 1024px) {
    .section-heading {
        font-size: 80px;
    }

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

    .hero-right {
        order: 2;
    }

    .hero-left {
        order: 1;
        padding: 30px 25px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-text {
        font-size: 22px;
        line-height: 1.4;
    }

    .circle-1 {
        width: 120px;
        height: 120px;
    }

    .circle-2 {
        width: 100px;
        height: 100px;
    }

    .circle-3 {
        width: 130px;
        height: 130px;
    }

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

    .card-title {
        font-size: 32px;
    }

    .card-text {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .philosophy-section {
        padding: 2rem 0.75rem;
    }

    .section-heading {
        font-size: 60px;
    }

    .hero-left {
        padding: 25px 20px;
        min-height: 240px;
        align-items: center;
    }

    .hero-title {
        font-size: 40px;
    }

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

    .circle-1 {
        width: 100px;
        height: 100px;
    }

    .circle-2 {
        width: 85px;
        height: 85px;
    }

    .circle-3 {
        width: 110px;
        height: 110px;
    }

    .card {
        padding: 20px 12px;
    }

    .card-title {
        font-size: 28px;
    }

    .card-text {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .section-heading {
        font-size: 40px;
    }

    .hero-left {
        padding: 20px 15px;
        min-height: 200px;
        overflow: hidden;
    }

    .hero-title {
        font-size: 40px;
    }

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

    /* Hide circles on mobile to prevent overflow */
    .bg-circles {
        display: none;
    }

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

    .card {
        border-right: none;
    }

    .card-title {
        font-size: 24px;
    }

    .card-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .philosophy-section {
        padding: 1.5rem 0.5rem;
    }

    .hero-left {
        padding: 18px 12px;
        min-height: 180px;
    }

    .hero-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .card {
        padding: 16px 10px;
    }

    .card-icon {
        width: 18px;
        height: 18px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-text {
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .hero-text {
        font-size: 14px;
    }

    .card-title {
        font-size: 18px;
    }

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

/* thespace */

.space-wrapper {
    padding: 24px 0;
}

/* Use Palmer Lake Print across this section */

.space-title {
    text-align: center;
    font-weight: 400;
    font-style: normal;
    font-size: 96px;
    line-height: 96px;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
}

.space-description {
    max-width: 980px;
    margin: 0 auto 16px;
    text-align: center;
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45;
    color: var(--black-color-2);
    padding: 0 12px;
}

.space-swiper {
    width: 100%;
    margin-right: 0 !important;
    padding-right: 0;
    margin-top: -10%;
    margin-bottom: -10%;
}
@media (max-width: 768px) {
    .space-swiper {
        margin-top: -50%;
        margin-bottom: -40%;
    }
}

/* Force RTL flow when dir="rtl" is set on the swiper */
.space-swiper[dir="rtl"] .swiper-wrapper {
    direction: rtl;
}

/* Fixed card size to match the design */
.space-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 465px;
}

.space-swiper img {
    width: 100%;
    max-width: 465px;
    height: 310px;
    object-fit: cover;
    border-radius: 6px;
    transform: rotate(0deg);
    opacity: 1;
}

@media (max-width: 520px) {
    .space-swiper {
        margin-top: -50%;
        margin-bottom: -40%;
    }
    /* Let slides shrink on small screens to avoid overflow */
    .space-title {
        font-size: 48px;
        line-height: 52.8px;
    }

    .space-swiper .swiper-slide {
        width: 86vw;
    }

    .space-swiper img {
        max-width: 86vw;
        height: 58vw;
    }
}

@media (min-width: 640px) {
    .space-wrapper {
        padding: 28px 0;
    }
}

@media (min-width: 900px) {
    .space-swiper {
        padding: 0;
    }

    .space-swiper .swiper-slide {
        width: 465px;
    }
}
