/* About Page Specific Styles */

.about-title-wrapper {
    position: relative;
    min-height: 72vh;
    padding: 180px 0 110px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(7, 19, 27, 0.9) 0%, rgba(7, 19, 27, 0.78) 34%, rgba(7, 19, 27, 0.42) 68%, rgba(7, 19, 27, 0.35) 100%),
        linear-gradient(180deg, rgba(197, 160, 89, 0.08), rgba(197, 160, 89, 0)),
        url('../assets/about-hero.webp');
    background-position: center, center, right center;
    background-size: cover, cover, cover;
    background-repeat: no-repeat;
}

.about-title-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.about-title-frame {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    margin: 0;
    padding: 26px 0 26px 34px;
    text-align: left;
    border-left: 1px solid rgba(197, 160, 89, 0.6);
}
/* 
.about-title-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 34px;
    width: 90px;
    height: 2px;
    background: var(--primary);
} */

.about-title-frame h1 {
    margin: 0;
    font-size: clamp(3.2rem, 2.3rem + 2vw, 6.6rem);
    line-height: 0.95;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.02em;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

@media (max-width: 991px) {
    .about-title-wrapper {
        min-height: 62vh;
        padding: 160px 0 90px;
    }

    .about-title-frame {
        width: min(100%, 500px);
        padding: 24px 0 24px 28px;
    }

    .about-title-frame::before {
        left: 28px;
        width: 76px;
    }
}

@media (max-width: 767px) {
    .about-title-wrapper {
        min-height: 56vh;
        padding: 138px 0 70px;
        background-position: center, center, 64% center;
    }

    .about-title-frame {
        width: min(100%, 92vw);
        padding: 18px 0 18px 18px;
    }

    .about-title-frame::before {
        left: 18px;
        width: 64px;
    }

    .about-title-frame h1 {
        line-height: 1;
    }
}

/* Our Story Section */
.about-story-section {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(circle at top left, rgba(197, 160, 89, 0.08), transparent 24%),
        radial-gradient(circle at bottom right, rgba(11, 31, 44, 0.04), transparent 28%),
        linear-gradient(180deg, #f8f5ef 0%, #ffffff 100%);
}

.about-story-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 72px;
    align-items: center;
}

.about-story-copy {
    position: relative;
    padding-right: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-story-heading {
    margin: 0;
    padding-bottom: 28px;
    font-size: clamp(3rem, 2.35rem + 2.1vw, 5rem);
    line-height: 1;
    font-weight: 300;
    color: #0b1f2c;
    letter-spacing: 0.01em;
    position: relative;
}

.about-story-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 92px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), rgba(197, 160, 89, 0));
}

.about-story-text {
    position: relative;
    padding-left: 28px;
}

.about-story-text::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    width: 1px;
    height: calc(100% - 8px);
    background: linear-gradient(180deg, rgba(197, 160, 89, 0.62), rgba(197, 160, 89, 0));
}

.about-story-text p {
    position: relative;
    margin: 0 0 24px;
    font-size: 1rem;
    line-height: 1.9;
    color: #4b5b65;
}

.about-story-text p:first-child {
    font-size: 1.22rem;
    line-height: 1.75;
    color: #0f2430;
    font-weight: 400;
    max-width: 95%;
}

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

.about-story-media {
    position: relative;
}

.about-story-image-frame {
    position: relative;
    padding: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 239, 0.96));
    border: 1px solid rgba(197, 160, 89, 0.18);
    box-shadow: 0 28px 70px rgba(11, 31, 44, 0.12);
}

.about-story-image-frame::before {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    width: 120px;
    height: 120px;
    border-top: 1px solid rgba(197, 160, 89, 0.46);
    border-left: 1px solid rgba(197, 160, 89, 0.46);
}

.about-story-image-frame::after {
    content: '';
    position: absolute;
    right: -14px;
    bottom: -14px;
    width: 120px;
    height: 120px;
    border-right: 1px solid rgba(197, 160, 89, 0.46);
    border-bottom: 1px solid rgba(197, 160, 89, 0.46);
}

.about-story-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .about-story-section {
        padding: 90px 0;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .about-story-copy {
        padding-right: 0;
    }

    .about-story-image {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 767px) {
    .about-story-image
    {
        aspect-ratio: 12/12;
    }
    .about-story-section {
        padding: 72px 0;
    }

    .about-story-heading {
        font-size: clamp(2.4rem, 2rem + 2vw, 3.2rem);
        padding-bottom: 22px;
    }

    .about-story-heading::after {
        width: 70px;
    }

    .about-story-text {
        padding-left: 20px;
    }

    .about-story-text p {
        font-size: 0.98rem;
        line-height: 1.82;
    }

    .about-story-text p:first-child {
        font-size: 1.08rem;
        line-height: 1.72;
        max-width: 100%;
    }

    .about-story-image-frame {
        padding: 14px;
    }

    .about-story-image-frame::before,
    .about-story-image-frame::after {
        width: 72px;
        height: 72px;
    }
}

/* Vision & Mission Section */
.about-vision-section {
    position: relative;
    padding: 40px 0 0;
    background:
        radial-gradient(circle at top right, rgba(197, 160, 89, 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f8f5ef 100%);
}

.about-vision-pin {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    background: #081923;
    border: 1px solid rgba(197, 160, 89, 0.18);
    box-shadow: 0 34px 90px rgba(11, 31, 44, 0.16);
}

.about-vision-pin::before {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1;
    pointer-events: none;
}

.about-vision-backdrop {
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.04);
    opacity: 0;
}

.about-vision-backdrop-vision {
    opacity: 1;
}

.about-vision-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(7, 19, 27, 0.9) 0%, rgba(7, 19, 27, 0.72) 38%, rgba(7, 19, 27, 0.42) 66%, rgba(7, 19, 27, 0.62) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 20%, rgba(7, 19, 27, 0.22) 100%);
}

.about-vision-stage {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: clamp(44px, 6vw, 88px);
    align-items: start;
    padding: clamp(42px, 6vw, 76px);
}

.about-vision-stage-mission {
    opacity: 0;
    visibility: hidden;
}

.about-vision-left {
    align-self: start;
    padding-top: clamp(10px, 2vw, 28px);
}

.about-vision-kicker {
    display: inline-block;
    margin-bottom: 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.about-vision-title {
    margin: 0;
    max-width: 5ch;
    font-size: clamp(3.4rem, 5.8vw, 6.3rem);
    line-height: 0.92;
    font-weight: 300;
    color: var(--white);
    text-transform: uppercase;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.about-vision-right {
    align-self: start;
    justify-self: end;
    width: min(100%, 420px);
    padding-top: clamp(8px, 2vw, 24px);
}

.about-vision-description {
    margin: 0;
    font-size: 1rem;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.about-vision-right-mission {
    padding: 28px 30px;
    background: rgba(7, 19, 27, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.about-vision-commitment-block {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.about-vision-commitment-title {
    margin: 0 0 16px;
    font-family: 'The Seasons', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--white);
}

.about-vision-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.about-vision-list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.98rem;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.86);
}

.about-vision-list li::before {
    content: '';
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 10px;
    height: 1px;
    background: var(--primary);
}

.about-vision-indicator {
    position: absolute;
    z-index: 3;
    left: clamp(42px, 6vw, 76px);
    bottom: clamp(26px, 4vw, 44px);
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-vision-step {
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
    transition: color 0.3s ease;
}

.about-vision-step.is-active {
    color: rgba(255, 255, 255, 0.96);
}

.about-vision-indicator-line {
    width: 120px;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
    overflow: hidden;
}

.about-vision-indicator-fill {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left center;
}

@media (max-width: 991px) {
    .about-vision-section {
        padding: 32px 0 90px;
    }

    .about-vision-stage {
        grid-template-columns: 1fr;
        gap: 28px;
        align-content: start;
    }

    .about-vision-title {
        max-width: none;
    }

    .about-vision-right {
        justify-self: start;
        width: min(100%, 520px);
    }

    .about-vision-pin {
        min-height: 100svh;
        height: 100svh;
    }
}

@media (max-width: 767px) {
    .about-vision-section {
        padding: 20px 0 72px;
    }

    .about-vision-pin::before {
        inset: 10px;
    }

    .about-vision-stage {
        padding: 26px 22px 84px;
        gap: 22px;
    }

    .about-vision-kicker {
        font-size: 0.74rem;
        letter-spacing: 3px;
        margin-bottom: 14px;
    }

    .about-vision-title {
        font-size: clamp(2.8rem, 10vw, 4.2rem);
        line-height: 0.95;
    }

    .about-vision-description,
    .about-vision-list li {
        font-size: 0.94rem;
        line-height: 1.72;
    }

    .about-vision-right-mission {
        padding: 18px 18px 20px;
    }

    .about-vision-right-mission .about-vision-description {
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .about-vision-right-mission .about-vision-commitment-block {
        margin-top: 14px;
        padding-top: 12px;
    }

    .about-vision-right-mission .about-vision-commitment-title {
        font-size: 1rem;
        margin-bottom: 9px;
    }

    .about-vision-right-mission .about-vision-list {
        gap: 6px;
    }

    .about-vision-right-mission .about-vision-list li {
        font-size: 0.8rem;
        line-height: 1.45;
        padding-left: 20px;
    }

    .about-vision-commitment-title {
        font-size: 1.2rem;
    }

    .about-vision-indicator {
        left: 22px;
        bottom: 18px;
        gap: 10px;
    }

    .about-vision-indicator-line {
        width: 76px;
    }
}

/* Leadership Section */
.leadership-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at top left, rgba(197, 160, 89, 0.08), transparent 24%),
        linear-gradient(180deg, #f8f5ef 0%, #ffffff 100%);
}

.leadership-header {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.leadership-label {
    display: inline-block;
    margin-bottom: 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
}

.leadership-heading {
    margin: 0;
    font-size: clamp(2.6rem, 2.05rem + 2vw, 4.8rem);
    line-height: 1.02;
    color: #0b1f2c;
    font-weight: 300;
}

.leadership-rule {
    width: 96px;
    height: 1px;
    margin: 24px auto 0;
    background: linear-gradient(90deg, var(--primary), rgba(197, 160, 89, 0));
}

.leadership-carousel {
    max-width: 1120px;
    margin: 0 auto;
}

.leadership-carousel.owl-carousel {
    display: block;
}

.leadership-carousel.owl-carousel:not(.owl-loaded) > .leadership-card:not(:first-child) {
    display: none;
}

.leadership-carousel .owl-stage-outer {
    padding: 10px 0 18px;
}

.leadership-card {
    display: grid;
    grid-template-columns: minmax(280px, 37%) 1fr;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 245, 239, 0.95));
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 30px;
    
}

.leadership-card::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    pointer-events: none;
    z-index: 2;
}

.leadership-card-image-wrap {
    position: relative;
    aspect-ratio: 4 / 4.2;
    overflow: hidden;
    background: linear-gradient(135deg, #071720 0%, #0b2431 55%, #0f2e3e 100%);
}

.leadership-card-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 23, 32, 0.06), rgba(7, 23, 32, 0.28));
}

.leadership-card-image {
    width: 100%;
    height: 100%;
    object-position: top;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.leadership-card:hover .leadership-card-image {
    transform: scale(1.03);
}

.leadership-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 44px;
}

.leadership-role {
    display: inline-block;
    margin-bottom: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
}

.leadership-name {
    margin: 0 0 14px;
    font-size: 34px;
    line-height: 1.1;
    color: #0f2430;
    font-weight: 400;
}

.leadership-card-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.72;
    color: #4b5b65;
    max-width: 58ch;
}

.leadership-carousel .owl-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
}

.leadership-carousel .owl-nav button.owl-prev,
.leadership-carousel .owl-nav button.owl-next {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(197, 160, 89, 0.28) !important;
    border-radius: 50%;
    background: #ffffff !important;
    color: #0b1f2c !important;
    transition: var(--transition-smooth);
}

.leadership-carousel .owl-nav button.owl-prev:hover,
.leadership-carousel .owl-nav button.owl-next:hover {
    background: #0b1f2c !important;
    color: #ffffff !important;
}

.leadership-carousel .owl-nav button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.leadership-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.leadership-carousel button.owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 !important;
    border-radius: 50%;
    background: rgba(11, 31, 44, 0.18) !important;
    transition: var(--transition-smooth);
}

.leadership-carousel button.owl-dot.active span,
.leadership-carousel button.owl-dot:hover span {
    background: var(--primary) !important;
}

@media (max-width: 991px) {
    .leadership-section {
        padding: 90px 0;
    }

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

    .leadership-card-image-wrap {
        aspect-ratio: 16 / 10;
    }

    .leadership-card-content {
        padding: 32px;
    }

    .leadership-carousel .owl-nav {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .leadership-name
    {
        font-size: 26px;
    }
    .leadership-card-image-wrap {
        aspect-ratio: auto;
    }
    .leadership-section {
        padding: 72px 0;
    }

    .leadership-label {
        font-size: 0.76rem;
        letter-spacing: 3px;
    }

    .leadership-rule {
        width: 68px;
        margin-top: 18px;
    }

    .leadership-card::before {
        inset: 10px;
    }

    .leadership-card-content {
        padding: 22px 18px 24px;
    }

    .leadership-card-content p {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .leadership-carousel .owl-nav button.owl-prev,
    .leadership-carousel .owl-nav button.owl-next {
        width: 42px;
        height: 42px;
    }
}
