/* =========================================================
   TEH MAYANG
   ABOUT PAGE
   PREMIUM / ELEGANT / MODERN
========================================================= */


/* =========================================================
   ABOUT LOGO
========================================================= */

.about-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--color-text);
}

.about-logo span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: linear-gradient( 145deg, var(--color-primary-light), var(--color-primary-dark));
    font-family: Georgia, serif;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(83, 106, 80, 0.20);
    transition: all 0.35s ease;
}

.about-logo:hover span {
    transform: rotate(-8deg) scale(1.06);
}

.about-logo strong {
    font-family: Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
}


/* =========================================================
   NAV TOGGLE
========================================================= */

.nav-toggle {
    display: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(83, 106, 80, 0.12);
    font-size: 18px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    color: white;
    background: var(--color-primary);
}


/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient( circle at 80% 20%, rgba(215, 185, 130, 0.18), transparent 28%), linear-gradient( 135deg, #faf7f0 0%, #f0ece2 52%, #e5ebdd 100%);
}


/* decorative */

.about-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: aboutFloat 8s ease-in-out infinite;
}

.orb-one {
    width: 500px;
    height: 500px;
    right: -240px;
    top: -180px;
    border: 1px solid rgba(83, 106, 80, 0.13);
    box-shadow: 0 0 0 70px rgba(83, 106, 80, 0.025), 0 0 0 140px rgba(83, 106, 80, 0.018);
}

.orb-two {
    width: 260px;
    height: 260px;
    left: -150px;
    bottom: -130px;
    background: radial-gradient( circle, rgba(185, 120, 98, 0.14), transparent 70%);
}

@keyframes aboutFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}


/* =========================================================
   HERO GRID
========================================================= */

.about-hero-grid {
    position: relative;
    z-index: 2;
    width: min( var(--container), calc(100% - 48px));
    margin: auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
    padding: 100px 0 120px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.about-hero-content {
    animation: aboutHeroText 0.9s cubic-bezier(.2, .7, .3, 1) both;
}

@keyframes aboutHeroText {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.about-eyebrow span {
    width: 30px;
    height: 1px;
    background: var(--color-gold);
}

.about-hero h1 {
    max-width: 650px;
    margin-bottom: 25px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp( 3.6rem, 6vw, 6.5rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.about-hero h1 em {
    color: var(--color-primary-light);
    font-style: normal;
}

.about-hero-content>p {
    max-width: 560px;
    margin-bottom: 32px;
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.9;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.about-btn.primary {
    color: white;
    background: linear-gradient( 135deg, var(--color-primary-light), var(--color-primary-dark));
    box-shadow: 0 15px 30px rgba(83, 106, 80, 0.22);
}

.about-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 38px rgba(83, 106, 80, 0.28);
}

.about-btn.secondary {
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(83, 106, 80, 0.15);
}

.about-btn.secondary:hover {
    color: white;
    background: var(--color-primary);
    transform: translateY(-4px);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.about-hero-visual {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
    animation: aboutHeroVisual 1s 0.15s cubic-bezier(.2, .7, .3, 1) both;
}

@keyframes aboutHeroVisual {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}


/* =========================================================
   MAIN HERO CARD
========================================================= */

.about-main-card {
    position: relative;
    width: min( 420px, 100%);
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 38px;
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.72), rgba(229, 235, 221, 0.75));
    box-shadow: 0 30px 80px rgba(54, 65, 50, 0.14);
    backdrop-filter: blur(18px);
    transform: rotate(2deg);
    transition: transform 0.6s ease;
}

.about-main-card:hover {
    transform: rotate(0deg) translateY(-8px);
}


/* decorative */

.about-main-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    background: rgba(215, 185, 130, 0.20);
}

.about-main-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -90px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(185, 120, 98, 0.08);
}


/* =========================================================
   CARD TOP
========================================================= */

.card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-number {
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.card-label {
    color: var(--color-text-soft);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}


/* =========================================================
   CARD CENTER
========================================================= */

.card-center {
    position: relative;
    z-index: 2;
    text-align: center;
}

.small-star {
    display: block;
    margin-bottom: 18px;
    color: var(--color-gold);
    font-size: 25px;
    animation: starRotate 5s linear infinite;
}

@keyframes starRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.card-center h2 {
    margin-bottom: 18px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 4rem;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.card-center h2 em {
    color: var(--color-primary-light);
    font-style: normal;
}

.card-center p {
    max-width: 220px;
    margin: auto;
    color: var(--color-text-light);
    font-size: 0.8rem;
    line-height: 1.7;
}


/* =========================================================
   CARD BOTTOM
========================================================= */

.card-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid rgba(83, 106, 80, 0.12);
}

.card-bottom span {
    color: var(--color-primary);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}


/* =========================================================
   FLOATING RATING
========================================================= */

.floating-rating {
    position: absolute;
    left: -25px;
    bottom: 60px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 45px rgba(54, 65, 50, 0.12);
    backdrop-filter: blur(16px);
    animation: floatingCard 4s ease-in-out infinite;
}

.rating-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--color-gold);
    background: var(--color-bg-soft);
}

.floating-rating strong {
    display: block;
    color: var(--color-text);
    font-size: 0.9rem;
}

.floating-rating span {
    display: block;
    color: var(--color-text-soft);
    font-size: 0.62rem;
}

@keyframes floatingCard {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}


/* =========================================================
   OPEN BADGE
========================================================= */

.floating-open {
    position: absolute;
    right: -25px;
    top: 70px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 17px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 40px rgba(54, 65, 50, 0.10);
    backdrop-filter: blur(15px);
}

.open-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6f9b69;
    box-shadow: 0 0 0 5px rgba(111, 155, 105, 0.12);
}

.floating-open strong {
    display: block;
    color: var(--color-text);
    font-size: 0.7rem;
}

.floating-open small {
    display: block;
    margin-top: 2px;
    color: var(--color-text-soft);
    font-size: 0.58rem;
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.about-scroll {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-soft);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.about-scroll i {
    color: var(--color-primary);
    font-size: 16px;
    animation: scrollArrow 1.5s ease-in-out infinite;
}

@keyframes scrollArrow {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}


/* =========================================================
   GENERAL ABOUT SECTION
========================================================= */

.section-about {
    padding: 115px 0;
}


/* =========================================================
   STORY
========================================================= */

.story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 90px;
}


/* =========================================================
   STORY VISUAL
========================================================= */

.story-visual {
    position: relative;
    min-height: 520px;
}

.story-image {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: linear-gradient( 135deg, #d7ded0, #b9c7b1);
    box-shadow: 0 30px 70px rgba(54, 65, 50, 0.13);
}


/* abstract image */

.story-image::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -100px;
    top: -80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.story-image::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    left: -180px;
    bottom: -200px;
    border-radius: 50%;
    background: rgba(185, 120, 98, 0.14);
}

.story-overlay {
    position: absolute;
    z-index: 2;
    inset: auto 30px 30px;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.story-overlay span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.story-overlay strong {
    color: white;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2rem;
}


/* =========================================================
   STORY SMALL CARD
========================================================= */

.story-small-card {
    position: absolute;
    right: -30px;
    bottom: 25px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 45px rgba(54, 65, 50, 0.14);
    backdrop-filter: blur(16px);
}

.story-small-card>span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--color-gold);
    background: var(--color-bg-soft);
}

.story-small-card strong {
    display: block;
    color: var(--color-text);
    font-size: 0.72rem;
}

.story-small-card small {
    display: block;
    margin-top: 3px;
    color: var(--color-text-soft);
    font-size: 0.6rem;
}


/* =========================================================
   STORY CONTENT
========================================================= */

.story-content h2 {
    max-width: 620px;
    margin-bottom: 25px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp( 2.8rem, 5vw, 4.8rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.story-content h2 em {
    color: var(--color-primary-light);
    font-style: normal;
}

.story-content>p {
    max-width: 620px;
    margin-bottom: 18px;
    font-size: 0.9rem;
    line-height: 1.9;
}


/* signature */

.story-signature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
}

.signature-line {
    width: 45px;
    height: 1px;
    background: var(--color-gold);
}

.story-signature strong {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1rem;
}

.story-signature small {
    color: var(--color-text-soft);
    font-size: 0.65rem;
}


/* =========================================================
   STATS
========================================================= */

.about-stats {
    padding: 30px 0 100px;
    background: var(--color-bg-soft);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 25px;
    background: rgba(83, 106, 80, 0.12);
}

.stat-card {
    padding: 35px 25px;
    text-align: center;
    background: rgba(255, 255, 255, 0.62);
    transition: background 0.3s ease, transform 0.3s ease;
}

.stat-card:hover {
    background: white;
    transform: translateY(-5px);
}

.stat-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color-primary);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.5rem;
    line-height: 1;
}

.stat-card span {
    color: var(--color-text-soft);
    font-size: 0.68rem;
    font-weight: 600;
}


/* =========================================================
   VALUES HEADING
========================================================= */

.values-section {
    background: var(--color-bg);
}

.values-heading {
    display: grid;
    grid-template-columns: 1fr 0.55fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 55px;
}

.values-heading h2 {
    max-width: 700px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp( 2.8rem, 5vw, 4.7rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.values-heading h2 em {
    color: var(--color-primary-light);
    font-style: normal;
}

.values-heading>p {
    max-width: 400px;
    font-size: 0.88rem;
    line-height: 1.9;
}


/* =========================================================
   VALUE CARDS
========================================================= */

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    position: relative;
    min-height: 350px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(83, 106, 80, 0.10);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 15px 45px rgba(54, 65, 50, 0.07);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.value-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: rgba(215, 185, 130, 0.10);
    transition: transform 0.5s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(54, 65, 50, 0.13);
}

.value-card:hover::before {
    transform: scale(1.7);
}

.value-card.featured {
    color: white;
    background: linear-gradient( 145deg, var(--color-primary), var(--color-primary-dark));
}

.value-card.featured h3,
.value-card.featured p {
    color: white;
}

.value-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.value-top span {
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.value-card.featured .value-top span {
    color: rgba(255, 255, 255, 0.7);
}

.value-top i {
    color: var(--color-gold);
    font-style: normal;
}

.value-icon {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 16px;
    color: var(--color-primary);
    background: var(--color-bg-green);
    font-size: 22px;
    transition: all 0.35s ease;
}

.value-card:hover .value-icon {
    transform: rotate(-6deg) scale(1.08);
}

.value-card.featured .value-icon {
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.9);
}

.value-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.7rem;
}

.value-card p {
    position: relative;
    z-index: 2;
    max-width: 290px;
    font-size: 0.82rem;
    line-height: 1.8;
}

.value-arrow {
    position: absolute;
    right: 28px;
    bottom: 25px;
    color: var(--color-primary);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.value-card.featured .value-arrow {
    color: white;
}

.value-card:hover .value-arrow {
    transform: translate(4px, -4px);
}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience-section {
    padding: 110px 0;
    color: white;
    overflow: hidden;
    background: radial-gradient( circle at 90% 20%, rgba(215, 185, 130, 0.13), transparent 25%), linear-gradient( 135deg, #344332, #263025);
}

.experience-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.about-eyebrow.light {
    color: #d7dfd1;
}

.experience-heading h2 {
    max-width: 600px;
    margin-bottom: 25px;
    color: white;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp( 3rem, 5vw, 5rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.experience-heading h2 em {
    color: #a6b99e;
    font-style: normal;
}

.experience-heading p {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    line-height: 1.9;
}


/* =========================================================
   EXPERIENCE LIST
========================================================= */

.experience-list {
    display: grid;
    gap: 0;
}

.experience-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.experience-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.experience-number {
    color: #a6b99e;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.experience-item h3 {
    margin-bottom: 8px;
    color: white;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
}

.experience-item p {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    line-height: 1.8;
}


/* =========================================================
   QUOTE
========================================================= */

.quote-section {
    padding: 110px 0;
    background: var(--color-bg-soft);
}

.quote-card {
    position: relative;
    padding: 75px 50px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(83, 106, 80, 0.10);
    border-radius: 32px;
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.75), rgba(229, 235, 221, 0.6));
    box-shadow: 0 20px 60px rgba(54, 65, 50, 0.08);
}

.quote-card::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -130px;
    top: -150px;
    border-radius: 50%;
    background: rgba(215, 185, 130, 0.10);
}

.quote-mark {
    margin-bottom: 10px;
    color: var(--color-gold);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 5rem;
    line-height: 0.6;
}

.quote-card p {
    position: relative;
    margin-bottom: 25px;
    color: var(--color-text);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp( 2rem, 4vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.quote-card>span {
    color: var(--color-text-soft);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
}


/* =========================================================
   CTA
========================================================= */

.about-cta {
    position: relative;
    padding: 95px 0;
    overflow: hidden;
    background: linear-gradient( 135deg, var(--color-primary), var(--color-primary-dark));
}

.about-cta::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -170px;
    top: -220px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-cta h2 {
    max-width: 700px;
    margin-bottom: 18px;
    color: white;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp( 2.8rem, 5vw, 4.8rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.about-cta h2 em {
    color: #c5d2bd;
    font-style: normal;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.85rem;
}

.light-btn {
    flex-shrink: 0;
    color: var(--color-primary);
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.light-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   FOOTER
========================================================= */

.about-footer {
    padding: 65px 0 25px;
    color: rgba(255, 255, 255, 0.7);
    background: #202820;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
    gap: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    color: white;
}

.footer-brand>p {
    max-width: 260px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.78rem;
    line-height: 1.8;
}

.footer-column h4 {
    margin-bottom: 18px;
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column span {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    padding-left: 5px;
    color: white;
}

.footer-column>p {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.75rem;
    line-height: 1.8;
}

.footer-book {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    color: #c5d2bd !important;
    font-weight: 700;
}

.footer-book:hover {
    padding-left: 0 !important;
    color: white !important;
}

.footer-bottom-about {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.65rem;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal-about {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.2, .7, .3, 1);
}

.reveal-about.show {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1000px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-top: 80px;
    }
    .about-hero-content {
        text-align: center;
    }
    .about-eyebrow {
        justify-content: center;
    }
    .about-hero-content>p {
        margin-left: auto;
        margin-right: auto;
    }
    .about-hero-actions {
        justify-content: center;
    }
    .about-hero-visual {
        max-width: 550px;
        width: 100%;
        margin: auto;
    }
    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .story-visual {
        max-width: 550px;
        width: 100%;
        margin: auto;
    }
    .values-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    .value-card:last-child {
        grid-column: span 2;
    }
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
    .container {
        width: min( var(--container), calc(100% - 32px));
    }
    .nav-wrap {
        min-height: 74px;
    }
    .nav-toggle {
        display: grid;
        place-items: center;
    }
    .main-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 80px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid rgba(83, 106, 80, 0.10);
        border-radius: 20px;
        background: rgba(250, 247, 240, 0.96);
        box-shadow: 0 20px 50px rgba(54, 65, 50, 0.12);
        backdrop-filter: blur(20px);
    }
    .main-nav.open {
        display: flex;
    }
    .main-nav a {
        padding: 13px 15px;
        border-radius: 12px;
    }
    .main-nav a:hover {
        background: rgba(83, 106, 80, 0.07);
    }
    .main-nav a::after {
        display: none;
    }
    .about-hero {
        min-height: auto;
    }
    .about-hero-grid {
        padding: 75px 0 100px;
    }
    .about-hero h1 {
        font-size: clamp( 3.1rem, 15vw, 5rem);
    }
    .about-hero-content>p {
        font-size: 0.88rem;
    }
    .about-main-card {
        min-height: 410px;
        padding: 24px;
        border-radius: 28px;
    }
    .card-center h2 {
        font-size: 3.2rem;
    }
    .floating-rating {
        left: -5px;
        bottom: 30px;
    }
    .floating-open {
        right: -5px;
        top: 30px;
    }
    .about-scroll {
        bottom: 18px;
    }
    .section-about {
        padding: 80px 0;
    }
    .story-visual {
        min-height: 420px;
    }
    .story-image {
        height: 400px;
        border-radius: 25px;
    }
    .story-small-card {
        right: 10px;
        bottom: 10px;
    }
    .story-content h2 {
        font-size: 3rem;
    }
    .about-stats {
        padding-bottom: 80px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        border-radius: 20px;
    }
    .stat-card {
        padding: 28px 15px;
    }
    .stat-card strong {
        font-size: 2rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .value-card:last-child {
        grid-column: auto;
    }
    .value-card {
        min-height: 310px;
    }
    .experience-section {
        padding: 80px 0;
    }
    .experience-heading h2 {
        font-size: 3rem;
    }
    .experience-item {
        grid-template-columns: 45px 1fr;
        gap: 12px;
    }
    .quote-section {
        padding: 80px 0;
    }
    .quote-card {
        padding: 60px 25px;
    }
    .quote-card p {
        font-size: 2.2rem;
    }
    .about-cta {
        padding: 75px 0;
    }
    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .about-cta h2 {
        font-size: 3rem;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-bottom-about {
        flex-direction: column;
        gap: 8px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
    .about-logo span {
        width: 40px;
        height: 40px;
    }
    .about-logo strong {
        font-size: 0.9rem;
    }
    .about-hero-grid {
        width: calc(100% - 28px);
    }
    .about-main-card {
        min-height: 380px;
    }
    .card-center h2 {
        font-size: 2.8rem;
    }
    .floating-rating {
        transform: scale(0.9);
        transform-origin: left bottom;
    }
    .floating-open {
        transform: scale(0.9);
        transform-origin: right top;
    }
    .story-content h2,
    .values-heading h2,
    .experience-heading h2,
    .about-cta h2 {
        font-size: 2.7rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .quote-card p {
        font-size: 1.9rem;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* =========================================================
   ABOUT COLOR THEME
   TEH MAYANG
   Tosca + White + Soft Lime
========================================================= */


/* =========================================================
   COLOR VARIABLES
========================================================= */

:root {
    --color-primary: #132e74;
    --color-primary-light: #183a96;
    --color-primary-dark: #0e2258;
    --color-gold: #cfff3f;
    --color-text: #171c25;
    --color-text-light: #616873;
    --color-text-soft: #818790;
    --color-bg: #ffffff;
    --color-bg-soft: #f1f5f9;
    --color-bg-green: #e4ebf4;
}


/* =========================================================
   ABOUT LOGO
========================================================= */

.about-logo span {
    color: #ffffff;
    background: linear-gradient( 145deg, #193c9c, #102662);
    box-shadow: 0 10px 25px rgba(19, 46, 116, 0.22);
}


/* =========================================================
   NAV BUTTON
========================================================= */

.nav-toggle {
    color: #132e74;
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(19, 46, 116, 0.15);
}

.nav-toggle:hover {
    color: #ffffff;
    background: #132e74;
}


/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
    background: radial-gradient( circle at 82% 18%, rgba(207, 255, 63, 0.18), transparent 28%), radial-gradient( circle at 10% 85%, rgba(19, 46, 116, 0.10), transparent 30%), linear-gradient( 135deg, #ffffff 0%, #f4f7fa 52%, #eaeff6 100%);
}


/* =========================================================
   HERO DECORATION
========================================================= */

.orb-one {
    border-color: rgba(19, 46, 116, 0.14);
    box-shadow: 0 0 0 70px rgba(19, 46, 116, 0.025), 0 0 0 140px rgba(207, 255, 63, 0.035);
}

.orb-two {
    background: radial-gradient( circle, rgba(19, 46, 116, 0.13), transparent 70%);
}


/* =========================================================
   HERO EYEBROW
========================================================= */

.about-eyebrow {
    color: #132e74;
}

.about-eyebrow span {
    background: #cfff3f;
}


/* =========================================================
   HERO TITLE
========================================================= */

.about-hero h1 {
    color: #171c25;
}

.about-hero h1 em {
    color: #132e74;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.about-hero-content>p {
    color: #656c78;
}


/* =========================================================
   HERO BUTTON
========================================================= */

.about-btn.primary {
    color: #ffffff;
    background: linear-gradient( 135deg, #163689, #0e2258);
    box-shadow: 0 15px 30px rgba(19, 46, 116, 0.22);
}

.about-btn.primary:hover {
    box-shadow: 0 20px 38px rgba(19, 46, 116, 0.30);
}

.about-btn.secondary {
    color: #132e74;
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(19, 46, 116, 0.18);
}

.about-btn.secondary:hover {
    color: #ffffff;
    background: #132e74;
}


/* =========================================================
   MAIN HERO CARD
========================================================= */

.about-main-card {
    border-color: rgba(255, 255, 255, 0.9);
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.90), rgba(228, 235, 244, 0.85));
    box-shadow: 0 30px 80px rgba(12, 28, 71, 0.13);
}


/* Decorative circles */

.about-main-card::before {
    background: rgba(207, 255, 63, 0.15);
}

.about-main-card::after {
    background: rgba(19, 46, 116, 0.08);
}


/* =========================================================
   CARD
========================================================= */

.card-number {
    color: #132e74;
}

.card-label {
    color: #818790;
}

.small-star {
    color: #b8df27;
}

.card-center h2 {
    color: #171c25;
}

.card-center h2 em {
    color: #132e74;
}

.card-center p {
    color: #656c78;
}

.card-bottom {
    border-color: rgba(19, 46, 116, 0.12);
}

.card-bottom span {
    color: #132e74;
}


/* =========================================================
   FLOATING RATING
========================================================= */

.floating-rating {
    background: rgba(255, 255, 255, 0.90);
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 45px rgba(12, 28, 71, 0.12);
}

.rating-icon {
    color: #132e74;
    background: #e4ebf4;
}

.floating-rating strong {
    color: #171c25;
}

.floating-rating span {
    color: #818790;
}


/* =========================================================
   OPEN BADGE
========================================================= */

.floating-open {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 40px rgba(12, 28, 71, 0.10);
}

.open-dot {
    background: #b7df2e;
    box-shadow: 0 0 0 5px rgba(207, 255, 63, 0.16);
}

.floating-open strong {
    color: #171c25;
}

.floating-open small {
    color: #818790;
}


/* =========================================================
   SCROLL
========================================================= */

.about-scroll {
    color: #818790;
}

.about-scroll i {
    color: #132e74;
}


/* =========================================================
   STORY SECTION
========================================================= */

.section-about {
    background: #ffffff;
}


/* =========================================================
   STORY IMAGE
========================================================= */

.story-image {
    background: linear-gradient( 135deg, #dce4ef, #aabad7);
    box-shadow: 0 30px 70px rgba(12, 28, 71, 0.13);
}

.story-image::before {
    background: rgba(255, 255, 255, 0.30);
}

.story-image::after {
    background: rgba(19, 46, 116, 0.12);
}

.story-overlay span {
    color: rgba(255, 255, 255, 0.78);
}

.story-overlay strong {
    color: #ffffff;
}


/* =========================================================
   STORY SMALL CARD
========================================================= */

.story-small-card {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 45px rgba(12, 28, 71, 0.14);
}

.story-small-card>span {
    color: #132e74;
    background: #e4ebf4;
}

.story-small-card strong {
    color: #171c25;
}

.story-small-card small {
    color: #818790;
}


/* =========================================================
   STORY CONTENT
========================================================= */

.story-content h2 {
    color: #171c25;
}

.story-content h2 em {
    color: #132e74;
}

.story-content>p {
    color: #656c78;
}


/* =========================================================
   STORY SIGNATURE
========================================================= */

.signature-line {
    background: #cfff3f;
}

.story-signature strong {
    color: #171c25;
}

.story-signature small {
    color: #818790;
}


/* =========================================================
   STATS
========================================================= */

.about-stats {
    background: #f1f5f9;
}

.stats-grid {
    background: rgba(19, 46, 116, 0.12);
}

.stat-card {
    background: rgba(255, 255, 255, 0.85);
}

.stat-card:hover {
    background: #ffffff;
}

.stat-card strong {
    color: #132e74;
}

.stat-card span {
    color: #818790;
}


/* =========================================================
   VALUES
========================================================= */

.values-section {
    background: #ffffff;
}

.values-heading h2 {
    color: #171c25;
}

.values-heading h2 em {
    color: #132e74;
}

.values-heading>p {
    color: #656c78;
}


/* =========================================================
   VALUE CARDS
========================================================= */

.value-card {
    border-color: rgba(19, 46, 116, 0.10);
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 15px 45px rgba(12, 28, 71, 0.07);
}

.value-card::before {
    background: rgba(207, 255, 63, 0.10);
}

.value-card:hover {
    box-shadow: 0 25px 60px rgba(12, 28, 71, 0.13);
}


/* Featured */

.value-card.featured {
    color: #ffffff;
    background: linear-gradient( 145deg, #132e74, #0e2258);
}

.value-card.featured h3,
.value-card.featured p {
    color: #ffffff;
}

.value-top span {
    color: #132e74;
}

.value-top i {
    color: #cfff3f;
}

.value-card.featured .value-top span {
    color: rgba(255, 255, 255, 0.72);
}


/* Icon */

.value-icon {
    color: #132e74;
    background: #e4ebf4;
}

.value-card.featured .value-icon {
    color: #132e74;
    background: rgba(255, 255, 255, 0.92);
}

.value-card h3 {
    color: #171c25;
}

.value-card p {
    color: #656c78;
}

.value-card.featured h3,
.value-card.featured p {
    color: #ffffff;
}

.value-arrow {
    color: #132e74;
}


/* =========================================================
   EXPERIENCE SECTION
========================================================= */

.experience-section {
    background: radial-gradient( circle at 90% 15%, rgba(207, 255, 63, 0.10), transparent 25%), linear-gradient( 135deg, #0e2258, #0a173b);
}

.about-eyebrow.light {
    color: #e0e8f7;
}

.experience-heading h2 {
    color: #ffffff;
}

.experience-heading h2 em {
    color: #cfff3f;
}

.experience-heading p {
    color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   EXPERIENCE LIST
========================================================= */

.experience-item {
    border-color: rgba(255, 255, 255, 0.13);
}

.experience-item:first-child {
    border-color: rgba(255, 255, 255, 0.13);
}

.experience-number {
    color: #cfff3f;
}

.experience-item h3 {
    color: #ffffff;
}

.experience-item p {
    color: rgba(255, 255, 255, 0.60);
}


/* =========================================================
   QUOTE
========================================================= */

.quote-section {
    background: #f1f5f9;
}

.quote-card {
    border-color: rgba(19, 46, 116, 0.10);
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.95), rgba(228, 235, 244, 0.80));
    box-shadow: 0 20px 60px rgba(12, 28, 71, 0.08);
}

.quote-card::before {
    background: rgba(207, 255, 63, 0.10);
}

.quote-mark {
    color: #132e74;
}

.quote-card p {
    color: #171c25;
}

.quote-card>span {
    color: #818790;
}


/* =========================================================
   CTA
========================================================= */

.about-cta {
    background: linear-gradient( 135deg, #132e74, #0e2258);
}

.about-cta::before {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 0 70px rgba(207, 255, 63, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
}

.about-cta h2 {
    color: #ffffff;
}

.about-cta h2 em {
    color: #cfff3f;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.70);
}

.light-btn {
    color: #132e74;
    background: #ffffff;
}

.light-btn:hover {
    color: #0e2258;
}


/* =========================================================
   FOOTER
========================================================= */

.about-footer {
    background: #091538;
    color: rgba(255, 255, 255, 0.72);
}

.footer-main {
    border-color: rgba(255, 255, 255, 0.10);
}

.footer-logo {
    color: #ffffff;
}

.footer-brand>p {
    color: rgba(255, 255, 255, 0.52);
}

.footer-column h4 {
    color: #cfff3f;
}

.footer-column a,
.footer-column span {
    color: rgba(255, 255, 255, 0.56);
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-column>p {
    color: rgba(255, 255, 255, 0.52);
}

.footer-book {
    color: #cfff3f !important;
}

.footer-book:hover {
    color: #ffffff !important;
}

.footer-bottom-about {
    color: rgba(255, 255, 255, 0.36);
}


/* =========================================================
   MOBILE MENU
========================================================= */

@media (max-width: 700px) {
    .main-nav {
        border-color: rgba(19, 46, 116, 0.12);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 20px 50px rgba(12, 28, 71, 0.12);
    }
    .main-nav a:hover {
        background: rgba(19, 46, 116, 0.07);
    }
}


/* =========================================================
   SELECTION
========================================================= */

::selection {
    color: #091538;
    background: #cfff3f;
}