/* =========================================================
   MEENA PHOTOGRAPHY
   ABOUT PAGE
   LUXURY EDITORIAL DESIGN
========================================================= */

:root {
    --about-bg: #fbf7f0;
    --about-cream: #f4e9da;
    --about-dark: #211e1b;
    --about-text: #615b55;
    --about-gold: #c99650;
    --about-gold-dark: #a97938;
    --about-gold-light: #e2c49b;
    --about-white: #fffdf9;
}


/* =========================================================
   PAGE
========================================================= */

.about-page {
    overflow: hidden;
    background: var(--about-bg);
    color: var(--about-dark);
}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.about-container {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
}


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

.about-hero {
    position: relative;

    min-height: 610px;

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

    overflow: hidden;

    text-align: center;

    background:
        radial-gradient(circle at 8% 45%,
            rgba(201, 150, 80, .14),
            transparent 25%),
        radial-gradient(circle at 92% 55%,
            rgba(201, 150, 80, .10),
            transparent 26%),
        linear-gradient(135deg,
            #fffdf9 0%,
            #f7ecdf 100%);
}


.about-hero::before {
    content: "";

    position: absolute;

    inset: 20px;

    border: 1px solid rgba(201, 150, 80, .18);

    pointer-events: none;
}


.about-hero::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -170px;

    width: 850px;
    height: 300px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: rgba(201, 150, 80, .07);
}


.about-hero-inner {
    position: relative;

    z-index: 2;

    width: min(900px, calc(100% - 40px));

    padding-top: 200px;
}


/* =========================================================
   EYEBROW
========================================================= */

.about-eyebrow {
    display: flex;

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

    gap: 14px;

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

    font-family: var(--fb);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .27em;
}


.about-eyebrow span {
    width: 48px;
    height: 1px;

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


/* =========================================================
   HERO TITLE
========================================================= */

.about-hero h1 {
    margin: 22px auto 0;

    max-width: 1000px;

    font-family: var(--fh);

    font-size: clamp(58px,
            8vw,
            110px);

    font-weight: 400;

    line-height: .92;

    letter-spacing: -.06em;
}


.about-hero h1 em {
    display: block;

    color: var(--about-gold);

    font-style: normal;
}


.about-hero-script {
    margin: 22px 0;

    color: #9b754c;

    font-family: var(--mct-script, cursive);

    font-size: clamp(27px,
            3.5vw,
            43px);

    line-height: 1;
}


.about-hero-description {
    max-width: 580px;

    margin: 0 auto;

    color: var(--about-text);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   SCROLL
========================================================= */

.about-scroll {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    margin-top: 45px;

    color: #9b754c;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .2em;
}


.about-scroll i {
    display: block;

    width: 1px;
    height: 38px;

    background:
        linear-gradient(to bottom,
            var(--about-gold),
            transparent);
}


/* =========================================================
   HERO DECORATION
========================================================= */

.about-hero-flower {
    position: absolute;

    color: rgba(169, 112, 59, .19);

    font-size: 120px;

    pointer-events: none;
}


.about-flower-left {
    left: -35px;
    top: 18%;
    transform: rotate(-30deg);
}


.about-flower-right {
    right: -30px;
    bottom: 10%;
    transform: rotate(35deg);
}


/* =========================================================
   ABOUT INTRO
========================================================= */

.about-intro {
    padding: 130px 0;

    background: #fffdf9;
}


.about-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(400px, .9fr) minmax(500px, 1.1fr);

    gap: 110px;

    align-items: center;
}


/* =========================================================
   PHOTOS
========================================================= */

.about-photo-column {
    position: relative;

    min-height: 680px;
}


.about-main-photo {
    position: absolute;

    left: 50px;
    top: 0;

    width: 75%;
    height: 610px;

    overflow: hidden;

    border-radius: 220px 220px 25px 25px;

    background: var(--about-cream);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, .10);
}


.about-main-photo::before {
    content: "";

    position: absolute;

    inset: 12px;

    z-index: 2;

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

    border-radius: 210px 210px 18px 18px;

    pointer-events: none;
}


.about-main-photo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform .7s ease;
}


.about-main-photo:hover img {
    transform: scale(1.025);
}


.about-photo-small {
    position: absolute;

    right: 0;
    bottom: 30px;

    width: 230px;
    height: 290px;

    overflow: hidden;

    /* border: 9px solid #fff;

    box-shadow:
        0 25px 55px rgba(0, 0, 0, .12); */
}


.about-photo-small img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.about-photo-number {
    position: absolute;

    left: 0;
    bottom: 10px;

    color: var(--about-gold);

    font-family: var(--fh);

    font-size: 70px;

    line-height: 1;

    opacity: .45;
}


/* =========================================================
   INTRO CONTENT
========================================================= */

.about-section-label {
    display: inline-flex;

    align-items: center;

    gap: 12px;

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

    font-size: 16px;

    font-weight: 700;

    letter-spacing: .25em;
}


.about-section-label::before {
    content: "";

    width: 38px;
    height: 1px;

    background: var(--about-gold);
}


.about-intro-content h2 {
    max-width: 700px;

    margin: 20px 0 28px;

    font-family: var(--fh);

    font-size: clamp(50px,
            5vw,
            75px);

    font-weight: 400;

    line-height: .98;

    letter-spacing: -.045em;
}


.about-intro-content h2 em {
    display: block;

    color: var(--about-gold);

    font-style: normal;
}


.about-intro-content p {
    max-width: 680px;

    margin: 0 0 18px;

    color: var(--about-text);

    font-size: 15px;

    line-height: 1.9;
}


.about-intro-content .about-lead {
    color: var(--about-dark);

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   MOTTO
========================================================= */

.about-motto {
    position: relative;

    margin-top: 35px;

    padding: 25px 0 25px 35px;

    border-left: 1px solid var(--about-gold-light);
}


.quote-mark {
    position: absolute;

    left: 20px;
    top: 8px;

    color: var(--about-gold);

    font-family: Georgia, serif;

    font-size: 42px;
}


.about-motto p {
    margin: 0;

    color: #48433e;

    font-family: var(--fh);

    font-size: 21px;

    line-height: 1.5;
}


.about-motto strong {
    color: var(--about-gold-dark);

    font-weight: 500;
}


/* =========================================================
   SIGNATURE
========================================================= */

.about-signature {
    margin-top: 25px;

    display: flex;

    flex-direction: column;

    color: #8e7965;
}


.about-signature span {
    font-size: 14px;

    letter-spacing: .1em;
}


.about-signature strong {
    margin-top: 3px;

    color: var(--about-dark);

    font-family: cursive;

    font-size: 34px;

    font-weight: 400;
}


/* =========================================================
   MISSION / VISION
========================================================= */

.mission-vision {
    padding: 120px 0;

    background:
        linear-gradient(135deg,
            #f7ede1,
            #fbf7f1);
}


.mv-heading {
    margin-bottom: 55px;
}


.mv-heading h2 {
    max-width: 800px;

    margin: 18px 0 0;

    font-family: var(--fh);

    font-size: clamp(45px,
            6vw,
            78px);

    font-weight: 400;

    line-height: 1;
}


.mv-heading h2 em {
    color: var(--about-gold);

    font-style: normal;
}


.mv-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}


.mv-card {
    position: relative;

    min-height: 430px;

    padding: 55px;

    overflow: hidden;

    border: 1px solid rgba(201, 150, 80, .18);

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

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.mv-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .07);
}


.mv-card::after {
    content: "";

    position: absolute;

    right: -120px;
    bottom: -150px;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        rgba(201, 150, 80, .07);
}


.mv-number {
    position: absolute;

    right: 35px;
    top: 30px;

    color: rgba(201, 150, 80, .25);

    font-family: var(--fh);

    font-size: 70px;
}


.mv-icon {
    display: flex;

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

    width: 70px;
    height: 70px;

    margin-bottom: 40px;

    border: 1px solid rgba(201, 150, 80, .30);

    border-radius: 50%;

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


.mv-icon svg {
    width: 38px;
    height: 38px;
}


.mv-label {
    display: block;

    margin-bottom: 15px;

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

    font-size: 18px;

    font-weight: 700;

    letter-spacing: .23em;
}


.mv-card h3 {
    position: relative;

    z-index: 2;

    max-width: 500px;

    margin: 0 0 20px;

    font-family: var(--fh);

    font-size: 45px;

    font-weight: 400;

    line-height: 1;
}


.mv-card h3 em {
    color: var(--about-gold);

    font-style: normal;
}


.mv-card p {
    position: relative;

    z-index: 2;

    max-width: 540px;

    margin: 0;

    color: var(--about-text);

    font-size: 16px;

    line-height: 1.9;
}


/* =========================================================
   JOURNEY
========================================================= */

.journey-section {
    position: relative;

    padding: 120px 0;

    background: #fffdf9;
}


.journey-heading {
    text-align: center;
}


.journey-heading h2 {
    margin: 12px 0;

    font-family: var(--fh);

    font-size: clamp(45px,
            6vw,
            72px);

    font-weight: 400;

    line-height: 1;
}


.journey-heading h2 span {
    color: var(--about-gold);
}


.gold-symbol {
    color: var(--about-gold);

    font-size: 17px;
}


.journey-grid {
    position: relative;

    display: grid;

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

    gap: 25px;

    margin-top: 60px;
}


.journey-line {
    position: absolute;

    left: 8%;
    right: 8%;

    margin-top: 78px;

    height: 1px;

    background:
        linear-gradient(90deg,
            transparent,
            var(--about-gold-light),
            transparent);

    z-index: 0;
}


.journey-item {
    position: relative;

    z-index: 1;

    text-align: center;
}


.journey-icon {
    width: 76px;
    height: 76px;

    margin: 0 auto 18px;

    display: flex;

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

    border-radius: 50%;

    background: #fff;

    border: 1px solid rgba(201, 150, 80, .22);

    color: var(--about-gold);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .07);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.journey-item:hover .journey-icon {
    transform: translateY(-5px);

    box-shadow:
        0 18px 35px rgba(201, 150, 80, .17);
}


.journey-icon svg {
    width: 35px;
    height: 35px;
}


.journey-number {
    display: block;

    color: var(--about-gold);

    font-family: var(--fh);

    font-size: 18px;

    margin-bottom: 8px;
}


.journey-item h3 {
    margin: 0 0 13px;

    font-family: var(--fh);

    font-size: 20px;

    font-weight: 400;
}


.journey-item p {
    max-width: 190px;

    margin: auto;

    color: var(--about-text);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   AWARDS
========================================================= */

.awards-section {
    padding: 100px 0;

    background:
        linear-gradient(180deg,
            #fbf7f0,
            #f7eee3);
}


.awards-heading {
    text-align: center;

    margin-bottom: 60px;
}


.awards-heading h2 {
    margin: 15px 0;

    font-family: var(--fh);

    font-size: clamp(43px,
            5vw,
            65px);

    font-weight: 400;
}


.awards-heading h2 em {
    color: var(--about-gold);

    font-style: normal;
}


.awards-grid {
    display: grid;

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

    gap: 15px;
}


.award {
    position: relative;

    min-height: 170px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 25px;

    text-align: center;

    border-right: 1px solid rgba(201, 150, 80, .18);
}


.award:last-child {
    border-right: 0;
}


.award span {
    color: #625b54;

    font-size: 10px;

    line-height: 1.5;
}


.award strong {
    max-width: 150px;

    margin: 5px 0;

    color: var(--about-dark);

    font-size: 11px;

    line-height: 1.4;
}


.award small {
    color: var(--about-gold-dark);

    font-size: 10px;
}


.award-laurel {
    position: absolute;

    left: 5px;

    color: var(--about-gold);

    font-size: 45px;

    transform: rotate(-25deg);

    opacity: .65;
}


.award-laurel.right {
    left: auto;
    right: 5px;

    transform: rotate(25deg);
}


/* =========================================================
   QUOTE
========================================================= */

.about-quote {
    padding: 80px 0;

    background: #fffdf9;

}


.quote-card {
    display: grid;

    grid-template-columns: .8fr 1.2fr;

    min-height: 390px;

    overflow: hidden;

    border-radius: 20px;

    /* background: #f4eadf; */
    background-image: url(../img/abt.webp);
        background-size: cover;
    box-shadow:
        0 20px 55px rgba(0, 0, 0, .06);
}


.quote-content {
    position: relative;

    padding: 55px;
}


.quote-symbol {
    display: block;

    color: var(--about-gold);

    font-family: Georgia, serif;

    font-size: 75px;

    line-height: .6;
}


.quote-content p {
    max-width: 430px;

    margin: 25px 0 30px;

    color: #443e38;

    font-family: var(--fh);

    font-size: 19px;

    line-height: 1.7;
}


.quote-signature {
    color: var(--about-dark);

    font-family: cursive;

    font-size: 38px;
}


.quote-signature span {
    color: var(--about-gold);

    font-size: 20px;
}


.quote-image {
    min-height: 390px;

    overflow: hidden;
}


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

    object-fit: cover;

    object-position: center;

    transition: transform .7s ease;
}


.quote-card:hover .quote-image img {
    transform: scale(1.025);
}


/* =========================================================
   CTA
========================================================= */

.about-cta {
    padding: 80px 0 120px;

    background: #fffdf9;
}


.cta-card {
    position: relative;

    min-height: 350px;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding: 55px 65px;

    border-radius: 18px;

    background:
        linear-gradient(120deg,
            #f1e3d2,
            #faf2e8);
}


.cta-content {
    position: relative;

    z-index: 2;

    max-width: 700px;
}


.cta-content>span {
    display: block;

    margin-bottom: 15px;

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

    font-size: 16px;

    font-weight: 700;

    letter-spacing: .22em;
}


.cta-content h2 {
    margin: 0;

    font-family: var(--fh);

    font-size: clamp(40px,
            5vw,
            65px);

    font-weight: 400;

    line-height: 1;
}


.cta-content h2 em {
    color: var(--about-gold);

    font-style: normal;
}


.cta-content p {
    margin: 18px 0 25px;

    color: var(--about-text);

    font-size: 16px;
}


.cta-button {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 15px 25px;

    background: var(--about-gold);

    color: #fff;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: .14em;

    text-decoration: none;

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


.cta-button:hover {
    background: var(--about-gold-dark);

    transform: translateY(-2px);
}


.cta-button span {
    font-size: 17px;
}


.cta-camera {
    position: absolute;

    right: 40px;
    bottom: -60px;

    width: 400px;

    opacity: .95;
}


.cta-camera img {
    width: 100%;

    object-fit: contain;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .about-intro-grid {
        grid-template-columns: 1fr;

        gap: 70px;
    }


    .about-photo-column {
        max-width: 650px;

        width: 100%;

        margin: auto;
    }


    .about-intro-content {
        max-width: 750px;

        margin: auto;
    }


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


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

        row-gap: 55px;
    }


    .journey-line {
        display: none;
    }


    .awards-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .award:nth-child(3) {
        border-right: 0;
    }


    .quote-card {
        grid-template-columns: 1fr 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .about-container {
        width: min(calc(100% - 32px),
                600px);
    }


    .about-hero {
        min-height: 500px;
    }


    .about-hero-inner {
        padding-top: 80px;
    }


    .about-eyebrow {
        font-size: 8px;

        gap: 8px;
    }


    .about-eyebrow span {
        width: 25px;
    }


    .about-hero h1 {
        font-size: 56px;
    }


    .about-hero-script {
        font-size: 29px;
    }


    .about-hero-description {
        font-size: 13px;

        padding: 0 15px;
    }


    .about-scroll {
        margin-top: 30px;
    }


    .about-hero-flower {
        font-size: 70px;
    }


    /* INTRO */

    .about-intro {
        padding: 80px 0;
    }


    .about-photo-column {
        min-height: 530px;
    }


    .about-main-photo {
        left: 10px;

        width: 80%;

        height: 470px;
    }


    .about-photo-small {
        width: 170px;
        height: 220px;

        right: 0;
        bottom: 20px;
    }


    .about-photo-number {
        font-size: 50px;
    }


    .about-intro-content h2 {
        font-size: 48px;
    }


    .about-intro-content .about-lead {
        font-size: 16px;
    }


    .about-intro-content p {
        font-size: 14px;
    }


    .about-motto p {
        font-size: 18px;
    }


    /* MISSION */

    .mission-vision {
        padding: 80px 0;
    }


    .mv-heading h2 {
        font-size: 44px;
    }


    .mv-card {
        min-height: auto;

        padding: 35px;
    }


    .mv-card h3 {
        font-size: 38px;
    }


    /* JOURNEY */

    .journey-section {
        padding: 80px 0;
    }


    .journey-heading h2 {
        font-size: 43px;
    }


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

        gap: 40px;

        margin-top: 45px;
    }


    .journey-item p {
        max-width: 300px;
    }


    /* AWARDS */

    .awards-section {
        padding: 80px 0;
    }


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

        gap: 0;
    }


    .award {
        border-right: 1px solid rgba(201, 150, 80, .18);

        border-bottom: 1px solid rgba(201, 150, 80, .18);
    }


    .award:nth-child(2n) {
        border-right: 0;
    }


    .award:nth-child(4),
    .award:nth-child(5) {
        border-bottom: 0;
    }


    /* QUOTE */

    .about-quote {
        padding: 60px 0;
    }


    .quote-card {
        grid-template-columns: 1fr;
    }


    .quote-content {
        padding: 40px 30px;
    }


    .quote-image {
        min-height: 330px;
    }


    /* CTA */

    .about-cta {
        padding: 50px 0 80px;
    }


    .cta-card {
        min-height: 470px;

        padding: 40px 25px;

        align-items: flex-start;
    }


    .cta-content h2 {
        font-size: 43px;
    }


    .cta-camera {
        width: 300px;

        right: -40px;

        bottom: -20px;

        opacity: .65;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .about-hero h1 {
        font-size: 48px;
    }


    .about-hero-script {
        font-size: 26px;
    }


    .about-main-photo {
        height: 430px;
    }


    .about-photo-column {
        min-height: 490px;
    }


    .about-intro-content h2 {
        font-size: 42px;
    }


    .mv-card h3 {
        font-size: 34px;
    }


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


    .award,
    .award:nth-child(n) {
        border-right: 0;

        border-bottom: 1px solid rgba(201, 150, 80, .18);
    }


    .award:last-child {
        border-bottom: 0;
    }


    .cta-content h2 {
        font-size: 38px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

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

    .about-page *,
    .about-page *::before,
    .about-page *::after {
        animation: none !important;

        transition: none !important;
    }

}