/* =====================================================
   SHULAB ABOUT PAGE
===================================================== */

:root {
    --shAbout84-brown: #9a674a;
    --shAbout84-brown-dark: #805238;
    --shAbout84-black: #171717;
    --shAbout84-text: #66615d;
    --shAbout84-light-text: #827b76;
    --shAbout84-border: #ded8d2;
    --shAbout84-soft-border: #ebe6e1;
    --shAbout84-bg: #faf9f7;
    --shAbout84-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--shAbout84-black);
    background: #ffffff;
    font-family: "Manrope", Arial, sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.shAbout84 {
    width: 100%;
    overflow: hidden;
}

.shAbout84__container {
    width: min(1350px, calc(100% - 40px));
    margin: 0 auto;
}

.shAbout84__eyebrow {
    display: block;
    color: var(--shAbout84-brown);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.shAbout84__smallLine {
    display: block;
    width: 27px;
    height: 2px;
    margin-top: 10px;
    background: var(--shAbout84-brown);
}


/* =====================================================
   HERO
===================================================== */

.shAbout84__hero {
    width: 100%;
    background-image: url('./assets/about-background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.shAbout84__heroGrid {
    min-height: 510px;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
}

.shAbout84__heroContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 65px 75px 65px 0;
}

.shAbout84__heroContent h1 {
    margin-top: 18px;
    color: var(--shAbout84-black);
    font-size: 46px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -2.7px;
}

.shAbout84__heroContent p {
    max-width: 540px;
    margin-top: 19px;
    color: var(--shAbout84-text);
    font-size: 14px;
    line-height: 1.8;
}

.shAbout84__primaryButton,
.shAbout84__outlineButton {
    width: fit-content;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 24px;
    padding: 0 20px;
    border: 1px solid var(--shAbout84-brown);
    color: #ffffff;
    background: var(--shAbout84-brown);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.shAbout84__primaryButton:hover,
.shAbout84__outlineButton:hover {
    color: var(--shAbout84-brown);
    background: #ffffff;
    transform: translateY(-2px);
}

.shAbout84__primaryButton svg,
.shAbout84__outlineButton svg {
    width: 15px;
    height: 15px;
}

.shAbout84__heroImage {
    min-height: 510px;
    position: relative;
    overflow: hidden;
}

.shAbout84__heroImage img {
    width: 100%;
    height: 100%;
    min-height: 510px;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.shAbout84__heroImage:hover img {
    transform: scale(1.035);
}

.shAbout84__heroFade {
    width: 130px;
    position: absolute;
    inset: 0 auto 0 0;
    background:
        linear-gradient(90deg,
            var(--shAbout84-bg),
            rgba(250, 249, 247, 0));
}


/* =====================================================
   IDENTITY SECTION
===================================================== */

.shAbout84__identity {
    padding: 58px 0 50px;
    background: #ffffff;
    margin-bottom: 50px;
}

.shAbout84__identityGrid {
    display: grid;
    grid-template-columns: 42px 1.4fr repeat(3, 1fr);
    gap: 0;
    align-items: stretch;
}

.shAbout84__verticalTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 13px;
}

.shAbout84__verticalTitle span {
    width: 1px;
    height: 50px;
    background: #cba990;
}

.shAbout84__verticalTitle small {
    color: var(--shAbout84-brown);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.shAbout84__identityIntro,
.shAbout84__identityCard {
    padding: 10px 36px;
}

.shAbout84__identityCard {
    border-left: 1px solid var(--shAbout84-border);
}

.shAbout84__identityIntro h2 {
    max-width: 330px;
    color: var(--shAbout84-black);
    font-size: 25px;
    font-weight: 500;
    line-height: 1.24;
    letter-spacing: -0.8px;
}

.shAbout84__identityIntro p,
.shAbout84__identityCard p {
    margin-top: 13px;
    color: var(--shAbout84-text);
    font-size: 14px;
    line-height: 1.72;
}

.shAbout84__identityIcon {
    min-height: 45px;
    display: flex;
    align-items: flex-start;
    color: var(--shAbout84-brown);
}

.shAbout84__identityIcon svg {
    width: 31px;
    height: 31px;
    stroke-width: 1.3;
}

.shAbout84__identityCard h3 {
    margin-top: 8px;
    color: var(--shAbout84-black);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
}

.shAbout84__identityCard ul {
    margin: 14px 0 0;
    padding-left: 16px;
}

.shAbout84__identityCard li {
    margin-bottom: 7px;
    color: var(--shAbout84-text);
    font-size: 12px;
    line-height: 1.5;
}


/* =====================================================
   STATISTICS
===================================================== */

.shAbout84__statistics {
    padding: 0 0 58px;
    background: #ffffff;
}

.shAbout84__statsGrid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--shAbout84-soft-border);
    background:
        linear-gradient(115deg,
            #fbfaf8,
            #f8f6f3);
}

.shAbout84__stat {
    min-height: 205px;
    padding: 25px 27px;
    border-right: 1px solid var(--shAbout84-border);
}

.shAbout84__stat:last-child {
    border-right: none;
}

.shAbout84__statIcon {
    color: var(--shAbout84-brown);
}

.shAbout84__statIcon svg {
    width: 30px;
    height: 30px;
    stroke-width: 1.3;
}

.shAbout84__stat strong {
    display: block;
    margin-top: 14px;
    color: var(--shAbout84-black);
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
}

.shAbout84__stat h3 {
    margin-top: 12px;
    color: #37322f;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.shAbout84__stat p {
    margin-top: 9px;
    color: var(--shAbout84-light-text);
    font-size: 11px;
    line-height: 1.65;
}


/* =====================================================
   TEAM
===================================================== */

.shAbout84__team {
    padding: 0 0 62px;
    background: #ffffff;
    margin: 80px 0px;
}

.shAbout84__teamGrid {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    gap: 18px;
    align-items: stretch;
}

.shAbout84__teamIntro {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-right: 25px;
}

.shAbout84__teamIntro h2 {
    margin-top: 17px;
    color: var(--shAbout84-black);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: -1px;
}

.shAbout84__teamIntro p {
    max-width: 320px;
    margin-top: 16px;
    color: var(--shAbout84-text);
    font-size: 14px;
    line-height: 1.75;
}

.shAbout84__outlineButton {
    min-height: 41px;
    color: #ffffff;
}

.shAbout84__teamCard {
    overflow: hidden;
    border: 1px solid var(--shAbout84-soft-border);
    background: #ffffff;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.shAbout84__teamCard:hover {
    border-color: rgba(154, 103, 74, 0.4);
    box-shadow: 0 15px 35px rgba(57, 38, 28, 0.08);
    transform: translateY(-5px);
}

.shAbout84__teamImage {
    height: 300px;
    position: relative;
    overflow: hidden;
    background: #eeeeec;
}

.shAbout84__teamImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition:
        filter 0.45s ease,
        transform 0.6s ease;
}

.shAbout84__teamCard:hover .shAbout84__teamImage img {
    filter: grayscale(0%);
    transform: scale(1.04);
}

.shAbout84__teamOverlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 9px;
    padding: 14px;
    opacity: 0;
    background:
        linear-gradient(transparent,
            rgba(16, 13, 11, 0.78));
    transform: translateY(15px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.shAbout84__teamCard:hover .shAbout84__teamOverlay {
    opacity: 1;
    transform: translateY(0);
}

.shAbout84__teamOverlay a {
    width: 33px;
    height: 33px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #ffffff;
}

.shAbout84__teamOverlay svg {
    width: 15px;
    height: 15px;
}

.shAbout84__teamInfo {
    padding: 15px 14px 17px;
}

.shAbout84__teamInfo h3 {
    color: var(--shAbout84-black);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.shAbout84__teamInfo p {
    margin-top: 4px;
    color: var(--shAbout84-light-text);
    font-size: 11px;
    line-height: 1.5;
}


/* =====================================================
   WHY CHOOSE US
===================================================== */

.shAbout84__choose {
    padding: 0 0 65px;
    background: #ffffff;
}

.shAbout84__chooseGrid {
    display: grid;
    grid-template-columns: 0.96fr 1.04fr;
    gap: 65px;
    align-items: center;
}

.shAbout84__chooseImage {
    min-height: 430px;
    overflow: hidden;
}

.shAbout84__chooseImage img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.shAbout84__chooseImage:hover img {
    transform: scale(1.035);
}

.shAbout84__chooseContent h2 {
    margin-top: 17px;
    color: var(--shAbout84-black);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -1px;
}

.shAbout84__chooseItems {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 30px;
    margin-top: 27px;
}

.shAbout84__chooseItem {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    align-items: start;
}

.shAbout84__chooseIcon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border: 1px solid #dcc8b9;
    color: var(--shAbout84-brown);
}

.shAbout84__chooseIcon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.35;
}

.shAbout84__chooseItem h3 {
    color: var(--shAbout84-black);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.shAbout84__chooseItem p {
    margin-top: 5px;
    color: var(--shAbout84-light-text);
    font-size: 11px;
    line-height: 1.6;
}


/* =====================================================
   CONTACT CTA
===================================================== */

.shAbout84__contactCta {
    padding: 0 0 35px;
    background: #ffffff;
}

.shAbout84__contactBox {
    min-height: 125px;
    display: grid;
    grid-template-columns: 1.4fr 1.25fr auto;
    align-items: center;
    gap: 35px;
    padding: 27px 35px;
    border-radius: 3px;
    color: #ffffff;
    background:
        linear-gradient(110deg,
            rgba(19, 17, 15, 0.97),
            rgba(29, 25, 22, 0.92));
}

.shAbout84__contactIntro {
    display: grid;
    grid-template-columns: 3px 1fr;
    gap: 17px;
    align-items: stretch;
}

.shAbout84__contactLine {
    width: 2px;
    background: #b67b58;
}

.shAbout84__contactIntro h2 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
}

.shAbout84__contactIntro p {
    max-width: 530px;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 11px;
    line-height: 1.6;
}

.shAbout84__contactDetails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.shAbout84__contactDetails>a,
.shAbout84__contactDetails>div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 10px;
    line-height: 1.5;
}

.shAbout84__contactDetails svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #d19a76;
    stroke-width: 1.4;
}

.shAbout84__contactDetails small {
    display: block;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 8px;
}

.shAbout84__ctaButton {
    min-width: 135px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #ffffff;
    background: var(--shAbout84-brown);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.shAbout84__ctaButton:hover {
    color: var(--shAbout84-brown);
    background: #ffffff;
    transform: translateY(-2px);
}

.shAbout84__ctaButton svg {
    width: 15px;
    height: 15px;
}


/* =====================================================
   REVEAL ANIMATION
===================================================== */

.shAbout84__reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.shAbout84__reveal.shAbout84__visible {
    opacity: 1;
    transform: translateY(0);
}

.shAbout84__identityCard:nth-child(3),
.shAbout84__stat:nth-child(2),
.shAbout84__teamCard:nth-child(2) {
    transition-delay: 0.07s;
}

.shAbout84__identityCard:nth-child(4),
.shAbout84__stat:nth-child(3),
.shAbout84__teamCard:nth-child(3) {
    transition-delay: 0.14s;
}

.shAbout84__identityCard:nth-child(5),
.shAbout84__stat:nth-child(4),
.shAbout84__teamCard:nth-child(4) {
    transition-delay: 0.21s;
}

.shAbout84__stat:nth-child(5),
.shAbout84__teamCard:nth-child(5) {
    transition-delay: 0.28s;
}


/* =====================================================
   RESPONSIVE 1150PX
===================================================== */

@media (max-width: 1150px) {

    .shAbout84__heroContent {
        padding-right: 45px;
    }

    .shAbout84__identityGrid {
        grid-template-columns: 32px 1.3fr repeat(3, 1fr);
    }

    .shAbout84__identityIntro,
    .shAbout84__identityCard {
        padding: 10px 22px;
    }

    .shAbout84__teamGrid {
        grid-template-columns: repeat(4, 1fr);
    }

    .shAbout84__teamIntro {
        grid-column: 1 / -1;
        padding-bottom: 20px;
    }

    .shAbout84__contactBox {
        grid-template-columns: 1fr auto;
    }

    .shAbout84__contactDetails {
        grid-column: 1 / -1;
        grid-row: 2;
    }

}


/* =====================================================
   RESPONSIVE 900PX
===================================================== */

@media (max-width: 900px) {

    .shAbout84__heroGrid {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .shAbout84__heroContent {
        padding: 55px 0 40px;
    }

    .shAbout84__heroImage,
    .shAbout84__heroImage img {
        min-height: 430px;
    }

    .shAbout84__heroFade {
        width: 100%;
        height: 80px;
        inset: 0 0 auto;
        background:
            linear-gradient(180deg,
                var(--shAbout84-bg),
                rgba(250, 249, 247, 0));
    }

    .shAbout84__identityGrid {
        grid-template-columns: 35px repeat(2, 1fr);
        gap: 25px 0;
    }

    .shAbout84__identityIntro {
        grid-column: 2 / -1;
    }

    .shAbout84__identityCard {
        border-left: none;
        border-top: 1px solid var(--shAbout84-border);
        padding-top: 25px;
    }

    .shAbout84__identityCard:nth-of-type(2) {
        grid-column: 2;
    }

    .shAbout84__statsGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shAbout84__stat {
        border-bottom: 1px solid var(--shAbout84-border);
    }

    .shAbout84__stat:nth-child(2n) {
        border-right: none;
    }

    .shAbout84__stat:last-child {
        grid-column: 1 / -1;
    }

    .shAbout84__teamGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shAbout84__teamImage {
        height: 360px;
    }

    .shAbout84__chooseGrid {
        grid-template-columns: 1fr;
    }

    .shAbout84__chooseImage,
    .shAbout84__chooseImage img {
        height: 480px;
    }

}


/* =====================================================
   RESPONSIVE 650PX
===================================================== */

@media (max-width: 650px) {

    .shAbout84__container {
        width: min(100% - 28px, 1350px);
        padding: 15px;
    }

    .shAbout84__heroContent h1 {
        font-size: 30px;
        letter-spacing: -1.7px;
    }

    .shAbout84__heroImage,
    .shAbout84__heroImage img {
        min-height: 340px;
    }

    .shAbout84__identity {
        padding: 45px 0;
    }

    .shAbout84__identityGrid {
        grid-template-columns: 1fr;
    }

    .shAbout84__verticalTitle {
        display: none;
    }

    .shAbout84__identityIntro,
    .shAbout84__identityCard,
    .shAbout84__identityCard:nth-of-type(2) {
        grid-column: auto;
        padding: 22px 0 0;
    }

    .shAbout84__identityIntro {
        padding-top: 0;
    }

    .shAbout84__identityIntro h2 {
        font-size: 24px;
    }

    .shAbout84__statsGrid {
        grid-template-columns: 1fr;
    }

    .shAbout84__stat,
    .shAbout84__stat:nth-child(2n) {
        border-right: none;
        border-bottom: 1px solid var(--shAbout84-border);
    }

    .shAbout84__stat:last-child {
        grid-column: auto;
        border-bottom: none;
    }

    .shAbout84__teamGrid {
        grid-template-columns: 1fr;
    }

    .shAbout84__teamIntro {
        grid-column: auto;
    }

    .shAbout84__teamImage {
        height: 420px;
    }

    .shAbout84__chooseImage,
    .shAbout84__chooseImage img {
        height: 370px;
    }

    .shAbout84__chooseContent h2 {
        font-size: 27px;
    }

    .shAbout84__chooseItems {
        grid-template-columns: 1fr;
    }

    .shAbout84__contactBox {
        grid-template-columns: 1fr;
        padding: 25px 22px;
    }

    .shAbout84__contactDetails {
        grid-column: auto;
        grid-row: auto;
        grid-template-columns: 1fr;
    }

    .shAbout84__ctaButton {
        width: 100%;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 430px) {

    .shAbout84__heroContent h1 {
        font-size: 30px;
    }
    .shAbout84__heroContent p{
        color: #2b2b2b;
    }

    .shAbout84__heroImage,
    .shAbout84__heroImage img {
        min-height: 290px;
    }

    .shAbout84__teamImage {
        height: 360px;
    }

    .shAbout84__chooseImage,
    .shAbout84__chooseImage img {
        height: 310px;
    }

}

/* =====================================================
   FOUNDER / OWNER SECTION
===================================================== */
.shAbout84__owner {
    position: relative;
    padding: 82px 0;
    background: radial-gradient(circle at 8% 18%, rgba(154, 103, 74, .08), transparent 27%), linear-gradient(135deg, #fbfaf8 0%, #f5f1ec 100%)
}

.shAbout84__owner::before {
    content: "";
    width: 210px;
    height: 210px;
    position: absolute;
    right: -65px;
    top: 45px;
    border: 1px solid rgba(154, 103, 74, .16);
    transform: rotate(45deg)
}

.shAbout84__ownerGrid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 85px;
    align-items: center
}

.shAbout84__ownerVisual {
    position: relative;
    padding: 0 0 30px 30px
}

.shAbout84__ownerImageFrame {
    height: 555px;
    position: relative;
    overflow: visible;
    background: #ded8d2
}

.shAbout84__ownerImageFrame::before {
    content: "";
    position: absolute;
    inset: -18px 18px 18px -18px;
    border: 1px solid rgba(154, 103, 74, .45);
    z-index: 0
}

.shAbout84__ownerImageFrame img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    object-fit: cover;
    object-position: center top;
    filter: saturate(.88) contrast(1.02)
}

.shAbout84__ownerImageAccent {
    width: 115px;
    height: 7px;
    position: absolute;
    right: -26px;
    top: 58px;
    z-index: 2;
    background: var(--shAbout84-brown)
}

.shAbout84__ownerExperienceBadge {
    min-width: 178px;
    min-height: 112px;
    position: absolute;
    right: -35px;
    bottom: 34px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 22px;
    color: #fff;
    background: #1f1c1a;
    box-shadow: 0 18px 40px rgba(28, 22, 18, .2)
}

.shAbout84__ownerExperienceBadge strong {
    color: #d5a17d;
    font-size: 34px;
    font-weight: 500;
    line-height: 1
}

.shAbout84__ownerExperienceBadge span {
    font-size: 11px;
    line-height: 1.55;
    text-transform: uppercase;
    letter-spacing: .8px
}

.shAbout84__ownerSignature {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;
    min-width: 230px;
    padding: 17px 22px;
    border-left: 3px solid var(--shAbout84-brown);
    background: #fff;
    box-shadow: 0 12px 30px rgba(61, 43, 32, .09)
}

.shAbout84__ownerSignature span,
.shAbout84__ownerMeta small {
    display: block;
    color: var(--shAbout84-light-text);
    font-size: 9px;
    line-height: 1.4;
    letter-spacing: 1.2px;
    text-transform: uppercase
}

.shAbout84__ownerSignature strong {
    display: block;
    margin-top: 4px;
    color: var(--shAbout84-black);
    font-size: 15px;
    font-weight: 600
}

.shAbout84__ownerContent h2 {
    max-width: 630px;
    margin-top: 20px;
    color: var(--shAbout84-black);
    font-size: 39px;
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -1.8px
}

.shAbout84__ownerContent>p {
    max-width: 660px;
    margin-top: 17px;
    color: var(--shAbout84-text);
    font-size: 14px;
    line-height: 1.85
}

.shAbout84__ownerContent .shAbout84__ownerLead {
    margin-top: 24px;
    color: #49433f;
    font-size: 15px
}

.shAbout84__ownerContent blockquote {
    max-width: 655px;
    margin-top: 25px;
    padding: 5px 0 5px 24px;
    border-left: 2px solid var(--shAbout84-brown);
    color: #332e2b;
    font-size: 17px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.7
}

.shAbout84__ownerMeta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 570px;
    margin-top: 27px
}

.shAbout84__ownerMeta>div {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 17px;
    border: 1px solid #e2d9d1;
    background: rgba(255, 255, 255, .62)
}

.shAbout84__ownerMeta svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--shAbout84-brown);
    stroke-width: 1.35
}

.shAbout84__ownerMeta span {
    color: #393431;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5
}

.shAbout84__ownerMeta small {
    margin-bottom: 2px;
    font-weight: 500
}

.shAbout84__ownerButton {
    width: fit-content;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 28px;
    padding: 0 21px;
    border: 1px solid var(--shAbout84-black);
    color: #fff;
    background: var(--shAbout84-black);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    transition: color .3s ease, background .3s ease, transform .3s ease
}

.shAbout84__ownerButton:hover {
    color: var(--shAbout84-black);
    background: transparent;
    transform: translateY(-2px)
}

.shAbout84__ownerButton svg {
    width: 15px;
    height: 15px
}

/* =====================================================
   ACHIEVEMENT SECTION
=/* =====================================
   SHULAB ARCHITECT ACHIEVEMENT SECTION
===================================== */

.shAbout84__achievements {
    position: relative;
    width: 100%;
    padding: 100px 20px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(176, 129, 74, 0.08),
            transparent 30%
        ),
        #f5f1eb;
}

.shAbout84__container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
}


/* Heading */

.shAbout84__achievementHeading {
    display: grid;
    grid-template-columns: 0.8fr 1.45fr 1fr;
    align-items: end;
    gap: 50px;
    margin-bottom: 55px;
}

.shAbout84__headingTop {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.shAbout84__eyebrow {
    color: #9b6b36;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 3px;
}

.shAbout84__smallLine {
    display: block;
    width: 65px;
    height: 1px;
    background: #9b6b36;
}

.shAbout84__achievementHeading h2 {
    max-width: 600px;
    margin: 0;
    color: #24211e;
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -1.2px;
}

.shAbout84__achievementHeading > p {
    max-width: 440px;
    margin: 0;
    color: #706b65;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
}


/* Cards Grid */

.shAbout84__achievementGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}


/* Card */

.shAbout84__achievementCard {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(55, 43, 30, 0.12);
    background: #ffffff;
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

.shAbout84__achievementCard:hover {
    transform: translateY(-10px);
    border-color: rgba(155, 107, 54, 0.4);
    box-shadow: 0 25px 55px rgba(52, 41, 29, 0.14);
}


/* Image */

.shAbout84__achievementImage {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: #ded8cf;
}

.shAbout84__achievementImage img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.shAbout84__achievementCard:hover
.shAbout84__achievementImage img {
    transform: scale(1.08);
}

.shAbout84__imageOverlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            to top,
            rgba(25, 20, 16, 0.6) 0%,
            rgba(25, 20, 16, 0.08) 58%,
            transparent 100%
        );
}


/* Number */

.shAbout84__achievementNumber {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(30, 24, 19, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 600;
}


/* Card Content */

.shAbout84__achievementContent {
    position: relative;
    padding: 30px 26px 28px;
}

.shAbout84__achievementIcon {
    position: absolute;
    top: -28px;
    left: 26px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: #ffffff;
    border: 5px solid #ffffff;
    background: #9b6b36;
    box-shadow: 0 10px 24px rgba(65, 44, 23, 0.22);
}

.shAbout84__achievementIcon svg {
    width: 23px;
    height: 23px;
    stroke-width: 1.7;
}

.shAbout84__achievementContent h3 {
    min-height: 58px;
    margin: 17px 0 13px;
    color: #28231f;
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.08;
}

.shAbout84__achievementContent p {
    min-height: 112px;
    margin: 0;
    color: #77716a;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
}

.shAbout84__cardLine {
    display: block;
    width: 42px;
    height: 2px;
    margin-top: 23px;
    background: #9b6b36;
    transition: width 0.4s ease;
}

.shAbout84__achievementCard:hover
.shAbout84__cardLine {
    width: 90px;
}


/* Reveal Animation */

.shAbout84__reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.shAbout84__reveal.shAbout84__visible {
    opacity: 1;
    transform: translateY(0);
}

.shAbout84__achievementCard:nth-child(2) {
    transition-delay: 0.1s;
}

.shAbout84__achievementCard:nth-child(3) {
    transition-delay: 0.2s;
}

.shAbout84__achievementCard:nth-child(4) {
    transition-delay: 0.3s;
}


/* Tablet */

@media (max-width: 1100px) {

    .shAbout84__achievementHeading {
        grid-template-columns: 1fr 2fr;
        align-items: start;
        gap: 30px;
    }

    .shAbout84__achievementHeading > p {
        grid-column: 2;
    }

    .shAbout84__achievementGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shAbout84__achievementContent p {
        min-height: auto;
    }

}


/* Mobile */

@media (max-width: 767px) {

    .shAbout84__achievements {
        padding: 70px 16px;
    }

    .shAbout84__achievementHeading {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 38px;
    }

    .shAbout84__achievementHeading h2 {
        font-size: 38px;
        line-height: 1.05;
    }

    .shAbout84__achievementHeading > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .shAbout84__achievementGrid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .shAbout84__achievementImage {
        height: 245px;
    }

    .shAbout84__achievementContent {
        padding: 30px 24px 26px;
    }

    .shAbout84__achievementContent h3 {
        min-height: auto;
        font-size: 27px;
    }

    .shAbout84__achievementContent p {
        min-height: auto;
    }

}


/* Small Mobile */

@media (max-width: 430px) {

    .shAbout84__achievementImage {
        height: 215px;
    }

    .shAbout84__achievementHeading h2 {
        font-size: 34px;
    }

}
@media(max-width:1150px) {
    .shAbout84__ownerGrid {
        gap: 55px
    }

    .shAbout84__ownerImageFrame {
        height: 500px
    }

    .shAbout84__achievementHeading {
        grid-template-columns: .45fr 1fr .9fr;
        gap: 28px
    }
}

@media(max-width:900px) {
    .shAbout84__ownerGrid {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .shAbout84__ownerVisual {
        max-width: 620px
    }

    .shAbout84__ownerContent h2 {
        font-size: 35px
    }

    .shAbout84__achievementHeading {
        grid-template-columns: 1fr 1fr
    }

    .shAbout84__achievementHeading>div {
        grid-column: 1/-1
    }

    .shAbout84__achievementGrid {
        grid-template-columns: repeat(2, 1fr)
    }

    .shAbout84__achievementCard:nth-child(2) {
        border-right: none
    }

    .shAbout84__achievementCard:nth-child(-n+2) {
        border-bottom: 1px solid var(--shAbout84-border)
    }
}

@media(max-width:650px) {
    .shAbout84__owner {
        padding: 58px 0
    }

    .shAbout84__ownerVisual {
        padding: 0 10px 45px 16px
    }

    .shAbout84__ownerImageFrame {
        height: 440px
    }

    .shAbout84__ownerImageAccent {
        width: 75px;
        right: -10px
    }

    .shAbout84__ownerExperienceBadge {
        min-width: 154px;
        min-height: 96px;
        right: 0;
        bottom: 20px;
        padding: 16px
    }

    .shAbout84__ownerExperienceBadge strong {
        font-size: 28px
    }

    .shAbout84__ownerSignature {
        min-width: 205px
    }

    .shAbout84__ownerContent h2 {
        font-size: 29px;
        letter-spacing: -1px
    }

    .shAbout84__ownerContent blockquote {
        font-size: 15px
    }

    .shAbout84__ownerMeta {
        grid-template-columns: 1fr
    }

    .shAbout84__achievements {
        padding: 55px 0 60px
    }

    .shAbout84__achievementHeading {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .shAbout84__achievementHeading>div {
        grid-column: auto
    }

    .shAbout84__achievementHeading h2 {
        font-size: 27px
    }

    .shAbout84__achievementGrid {
        grid-template-columns: 1fr
    }

    .shAbout84__achievementCard,
    .shAbout84__achievementCard:nth-child(2) {
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid var(--shAbout84-border)
    }

    .shAbout84__achievementCard:last-child {
        border-bottom: none
    }
}

@media(max-width:430px) {
    .shAbout84__ownerImageFrame {
        height: 370px
    }

    .shAbout84__ownerExperienceBadge {
        right: -4px
    }

    .shAbout84__ownerSignature {
        max-width: 190px;
        min-width: 190px;
        padding: 14px 16px
    }
}