/* =========================================================
   ABOUT PAGE
========================================================= */

.about-page {

    width: 100%;

    overflow: hidden;

    background: #f5f2ed;

}


.about-page .container {

    width: min(1180px, calc(100% - 64px));

    margin: 0 auto;

}


/* =========================================================
   HERO
========================================================= */

.about-hero {

    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #062b49;

    color: #fff;

}


.about-hero-bg {

    position: absolute;

    inset: 0;

    background-image:
        url("https://images.unsplash.com/photo-1528543606781-2f6e6857f318?auto=format&fit=crop&w=2200&q=90");

    background-size: cover;

    background-position: center;

    transform: scale(1.06);

    animation: aboutHeroZoom 13s ease-out forwards;

}


@keyframes aboutHeroZoom {

    from {

        transform: scale(1.09);

    }

    to {

        transform: scale(1);

    }

}


.about-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,25,45,.96),
            rgba(3,25,45,.60) 55%,
            rgba(3,25,45,.20)
        ),

        linear-gradient(
            0deg,
            rgba(3,25,45,.86),
            transparent 65%
        );

}


.about-hero-inner {

    position: relative;

    z-index: 2;

    padding-top: 50px;

}


.about-kicker {

    display: block;

    color: rgba(255,255,255,.48);

    font-family: Arial, sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .23em;

}


.about-hero h1 {

    max-width: 850px;

    margin: 30px 0 0;

    color: #fff;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(85px, 11vw, 155px);

    line-height: .75;

    font-weight: 500;

    letter-spacing: -.075em;

}


.about-hero h1 em {

    display: block;

    color: #e1c2c5;

    font-style: italic;

    font-weight: 400;

}


.about-hero p {

    max-width: 470px;

    margin: 50px 0 0;

    color: rgba(255,255,255,.62);

    font-family: Arial, sans-serif;

    font-size: 11px;

    line-height: 1.9;

}


.about-hero-scroll {

    position: absolute;

    left: 0;

    bottom: -160px;

    display: flex;

    align-items: center;

    gap: 14px;

    color: rgba(255,255,255,.40);

    font-family: Arial, sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .18em;

}


.about-hero-scroll span {

    display: flex;

    width: 29px;

    height: 29px;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 50%;

    color: #fff;

    font-size: 13px;

    animation: aboutScroll 1.8s ease-in-out infinite;

}


@keyframes aboutScroll {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

}


/* =========================================================
   INTRO
========================================================= */

.about-intro {

    padding: 145px 0;

    background: #f5f2ed;

}


.about-intro-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 110px;

}


.about-intro-title h2 {

    max-width: 500px;

    margin: 17px 0 0;

    color: #062b49;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(65px, 6.5vw, 92px);

    line-height: .81;

    font-weight: 500;

    letter-spacing: -.065em;

}


.about-intro-title h2 em {

    display: block;

    color: #a92e35;

    font-style: italic;

    font-weight: 400;

}


.about-intro-copy {

    padding-top: 50px;

}


.about-big-copy {

    max-width: 560px;

    margin: 0;

    color: #062b49;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(25px, 2.4vw, 34px);

    line-height: 1.34;

    letter-spacing: -.025em;

}


.about-intro-copy > p:last-child {

    max-width: 470px;

    margin: 35px 0 0;

    color: #687075;

    font-family: Arial, sans-serif;

    font-size: 10px;

    line-height: 1.95;

}


/* =========================================================
   IMAGE
========================================================= */

.about-image-section {

    position: relative;

    height: 730px;

    overflow: hidden;

    background: #062b49;

}


.about-large-image {

    position: absolute;

    inset: 0;

}


.about-large-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition: transform 1.2s ease;

}


.about-image-section:hover img {

    transform: scale(1.035);

}


.about-large-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(3,25,45,.94),
            rgba(3,25,45,.05) 72%
        );

}


.about-image-content {

    position: absolute;

    z-index: 2;

    left: max(32px, calc((100% - 1180px) / 2));

    right: 30px;

    bottom: 65px;

}


.about-image-content > span {

    display: block;

    margin-bottom: 18px;

    color: rgba(255,255,255,.44);

    font-family: Arial, sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .22em;

}


.about-image-content h2 {

    max-width: 850px;

    margin: 0;

    color: #fff;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(60px, 7vw, 100px);

    line-height: .80;

    font-weight: 500;

    letter-spacing: -.065em;

}


.about-image-content h2 em {

    display: block;

    color: #dfc0c3;

    font-style: italic;

    font-weight: 400;

}


/* =========================================================
   PHILOSOPHY
========================================================= */

.about-philosophy {

    padding: 145px 0;

    background: #fff;

}


.philosophy-heading h2 {

    max-width: 700px;

    margin: 17px 0 0;

    color: #062b49;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(60px, 6.5vw, 90px);

    line-height: .82;

    font-weight: 500;

    letter-spacing: -.065em;

}


.philosophy-heading h2 em {

    color: #a92e35;

    font-style: italic;

    font-weight: 400;

}


.philosophy-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    margin-top: 85px;

    border-top: 1px solid rgba(6,43,73,.14);

}


.philosophy-card {

    min-height: 320px;

    padding: 35px 35px 35px 0;

    border-right: 1px solid rgba(6,43,73,.14);

}


.philosophy-card:not(:first-child) {

    padding-left: 35px;

}


.philosophy-card:last-child {

    border-right: 0;

}


.philosophy-card > span {

    color: #a92e35;

    font-family: Georgia, serif;

    font-size: 12px;

}


.philosophy-card h3 {

    margin: 85px 0 0;

    color: #062b49;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 32px;

    line-height: .95;

    font-weight: 500;

    letter-spacing: -.04em;

}


.philosophy-card p {

    max-width: 260px;

    margin: 18px 0 0;

    color: #737a7e;

    font-family: Arial, sans-serif;

    font-size: 10px;

    line-height: 1.85;

}


/* =========================================================
   EXPERIENCE
========================================================= */

.about-experience {

    padding: 145px 0;

    background: #efede9;

}


.experience-grid {

    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);

    gap: 110px;

    align-items: center;

}


.experience-image {

    height: 650px;

    overflow: hidden;

}


.experience-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 1s ease;

}


.experience-image:hover img {

    transform: scale(1.05);

}


.experience-content h2 {

    margin: 17px 0 0;

    color: #062b49;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(60px, 6vw, 83px);

    line-height: .82;

    font-weight: 500;

    letter-spacing: -.065em;

}


.experience-content h2 em {

    display: block;

    color: #a92e35;

    font-style: italic;

    font-weight: 400;

}


.experience-lead {

    max-width: 430px;

    margin: 40px 0 0;

    color: #062b49;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 23px;

    line-height: 1.4;

}


.experience-list {

    margin-top: 50px;

    border-top: 1px solid rgba(6,43,73,.15);

}


.experience-list > div {

    display: grid;

    grid-template-columns: 40px 1fr;

    gap: 20px;

    padding: 20px 0;

    border-bottom: 1px solid rgba(6,43,73,.15);

}


.experience-list span {

    color: #a92e35;

    font-family: Georgia, serif;

    font-size: 11px;

}


.experience-list p {

    margin: 0;

    color: #687075;

    font-family: Arial, sans-serif;

    font-size: 10px;

    line-height: 1.6;

}


/* =========================================================
   INDIA SECTION
========================================================= */

.about-india {

    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: #fff;

    background: #062b49;

}


.about-india-bg {

    position: absolute;

    inset: 0;

    background-image:
        url("https://images.unsplash.com/photo-1477587458883-47145ed94245?auto=format&fit=crop&w=2200&q=90");

    background-size: cover;

    background-position: center;

    transition: transform 1.2s ease;

}


.about-india:hover .about-india-bg {

    transform: scale(1.04);

}


.about-india-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,25,45,.95),
            rgba(3,25,45,.58),
            rgba(3,25,45,.20)
        );

}


.about-india-inner {

    position: relative;

    z-index: 2;

}


.about-india-inner > span {

    color: rgba(255,255,255,.45);

    font-family: Arial, sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .22em;

}


.about-india-inner h2 {

    max-width: 900px;

    margin: 20px 0 0;

    color: #fff;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(65px, 8vw, 110px);

    line-height: .78;

    font-weight: 500;

    letter-spacing: -.07em;

}


.about-india-inner h2 em {

    display: block;

    color: #dfc0c3;

    font-style: italic;

    font-weight: 400;

}


.about-india-inner p {

    max-width: 450px;

    margin: 38px 0 0;

    color: rgba(255,255,255,.58);

    font-family: Arial, sans-serif;

    font-size: 10px;

    line-height: 1.9;

}


/* =========================================================
   FINAL CTA
========================================================= */

.about-final-cta {

    padding: 140px 0;

    background: #062b49;

    color: #fff;

}


.about-final-cta > .container > span {

    color: rgba(255,255,255,.42);

    font-family: Arial, sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .22em;

}


.about-final-cta h2 {

    max-width: 900px;

    margin: 20px 0 0;

    color: #fff;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(65px, 8vw, 110px);

    line-height: .78;

    font-weight: 500;

    letter-spacing: -.07em;

}


.about-final-cta h2 em {

    display: block;

    color: #dfc0c3;

    font-style: italic;

    font-weight: 400;

}


.about-final-cta a {

    display: inline-flex;

    align-items: center;

    gap: 30px;

    margin-top: 50px;

    padding-bottom: 12px;

    border-bottom: 1px solid rgba(255,255,255,.35);

    color: #fff;

    font-family: Arial, sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .16em;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        gap .3s ease,
        color .3s ease;

}


.about-final-cta a:hover {

    gap: 43px;

    color: #dfc0c3;

}


.about-final-cta a b {

    font-size: 16px;

    font-weight: 400;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .about-page .container {

        width: min(900px, calc(100% - 48px));

    }


    .about-intro-grid {

        gap: 55px;

    }


    .experience-grid {

        gap: 55px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .about-page .container {

        width: calc(100% - 40px);

    }


    .about-hero {

        min-height: 610px;

    }


    .about-hero h1 {

        font-size: 73px;

    }


    .about-hero p {

        max-width: 330px;

        margin-top: 35px;

    }


    .about-hero-scroll {

        bottom: -115px;

    }


    .about-intro {

        padding: 90px 0;

    }


    .about-intro-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .about-intro-title h2 {

        font-size: 60px;

    }


    .about-intro-copy {

        padding-top: 0;

    }


    .about-big-copy {

        font-size: 23px;

    }


    .about-image-section {

        height: 520px;

    }


    .about-image-content {

        left: 20px;

        right: 20px;

        bottom: 35px;

    }


    .about-image-content h2 {

        font-size: 49px;

    }


    .about-philosophy {

        padding: 90px 0;

    }


    .philosophy-heading h2 {

        font-size: 60px;

    }


    .philosophy-grid {

        grid-template-columns: 1fr;

        margin-top: 55px;

    }


    .philosophy-card,
    .philosophy-card:not(:first-child) {

        min-height: auto;

        padding: 30px 0;

        border-right: 0;

        border-bottom: 1px solid rgba(6,43,73,.14);

    }


    .philosophy-card:last-child {

        border-bottom: 0;

    }


    .philosophy-card h3 {

        margin-top: 45px;

    }


    .about-experience {

        padding: 90px 0;

    }


    .experience-grid {

        grid-template-columns: 1fr;

        gap: 55px;

    }


    .experience-image {

        height: 450px;

    }


    .experience-content h2 {

        font-size: 59px;

    }


    .about-india {

        min-height: 570px;

    }


    .about-india-inner h2 {

        font-size: 62px;

    }


    .about-final-cta {

        padding: 90px 0;

    }


    .about-final-cta h2 {

        font-size: 61px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .about-page .container {

        width: calc(100% - 30px);

    }


    .about-hero h1 {

        font-size: 62px;

    }


    .about-intro-title h2 {

        font-size: 53px;

    }


    .about-image-content h2 {

        font-size: 41px;

    }


    .philosophy-heading h2 {

        font-size: 52px;

    }


    .experience-content h2 {

        font-size: 52px;

    }


    .about-india-inner h2 {

        font-size: 53px;

    }


    .about-final-cta h2 {

        font-size: 52px;

    }

}