/* ================================================
   ABOUT US - THE GARDEN JOURNAL (INSPIRED BY NOURIV)
   Using Official Brand Fonts & Colors
   ================================================ */
:root {
    --brand-green: var(--c-forest-green, #486e04);
    --brand-green-dark: var(--c-deep-forest-green, #264105);
    --brand-yellow: var(--c-golden-yellow, #f9d000);
    --brand-white: var(--c-off-white, #efefe1);
    --brand-dark: var(--c-almost-black-brown, #110f03);

    --font-serif: "SweetSans", sans-serif;
    --font-sans: "SweetSans", sans-serif;
    --font-hand: "Caveat", cursive;
}

body.about-page {
    background-color: var(--brand-white);
    color: var(--brand-dark);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

/* --- Highlights & Accents --- */
.text-highlight {
    position: relative;
    z-index: 1;
    --highlight-width: 100%;
}

.text-highlight::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: -2%;
    width: var(--highlight-width, 100%);
    height: 0.6em;
    background: var(--brand-yellow);
    z-index: -1;
    opacity: 0.7;

    /* Hand-drawn "Handmade" SVG Effect */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 50' preserveAspectRatio='none'%3E%3Cpath d='M0,25 C150,10 350,40 500,25 L500,45 C350,55 150,25 0,45 Z' fill='black' /%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 50' preserveAspectRatio='none'%3E%3Cpath d='M0,25 C150,10 350,40 500,25 L500,45 C350,55 150,25 0,45 Z' fill='black' /%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    transform: rotate(-1deg);
}

/* --- Hero Section --- */
.nouriv-hero {
    padding: clamp(100px, 15vh, 180px) 0 clamp(60px, 10vh, 100px);
    position: relative;
    overflow: hidden;
}

.nouriv-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}

.hero-info h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.1;
    margin-bottom: 25px;
    margin-top: 30px;
    color: var(--brand-green-dark);
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    opacity: 0.8;
}

.hero-visual {
    position: relative;
    width: 100%;
}

.arch-img-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 0.85;
    max-height: 700px;
    border-radius: 250px 250px 20px 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.arch-img-wrap img {
    width: 100%;
    height: 118%;
    object-fit: cover;
}

/* --- Quote Section --- */
.quote-section {
    padding: clamp(60px, 10vh, 120px) 0;
    text-align: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
}

.quote-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.quote-wrap svg {
    width: clamp(40px, 8vw, 60px);
    height: clamp(40px, 8vw, 60px);
    fill: var(--brand-green);
    opacity: 0.15;
    margin-bottom: 30px;
    overflow: visible;
    display: inline-block;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 4vw, 2.4rem);
    line-height: 1.35;
    color: var(--brand-green-dark);
    font-weight: 500;
}

/* --- Two Column Feature --- */
.feature-split {
    padding: clamp(60px, 10vh, 120px) 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 100px);
    align-items: center;
}

.feature-img-combo {
    display: flex;
    gap: clamp(15px, 3vw, 30px);
    align-items: flex-end;
}

.large-arch {
    /* width: 55%; */
    aspect-ratio: 0.7;
    border-radius: clamp(80px, 15vw, 150px) clamp(80px, 15vw, 150px) 10px 10px;
    overflow: hidden;
}

.feature-img-combo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title-section {
    font-size: clamp(1.8rem, 5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--brand-green-dark);
}

/* --- Values Grid --- */
.values-section {
    padding: clamp(60px, 10vh, 120px) 0;
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 4vw, 40px);
    margin-top: clamp(30px, 6vh, 60px);
}

.value-card {
    text-align: center;
    padding: clamp(20px, 4vw, 40px);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: var(--brand-white);
    transform: translateY(-5px);
}

.value-icon {
    width: clamp(120px, 15vw, 180px);
    height: clamp(120px, 15vw, 180px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: darken;
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 15px;
}

/* --- Featured Logos --- */
.featured-on {
    padding: clamp(30px, 5vh, 60px) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(20px, 6vw, 80px);
    align-items: center;
}

.logo-flex img {
    height: clamp(18px, 3vh, 25px);
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-flex img:hover {
    opacity: 1;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1199px) {
    .nouriv-hero {
        padding: clamp(90px, 12vh, 150px) 0 clamp(50px, 8vh, 80px);
    }

    .nouriv-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-info h1 {
        font-size: clamp(2.5rem, 5vw, 3.8rem);
    }
}

@media (max-width: 1199px) {
    .hero-info h1 {
        font-size: clamp(2.5rem, 10vw, 4.5rem);
    }
}

@media (max-width: 1024px) {
    .nouriv-hero {
        padding: 100px 0 60px;
    }

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

    .featured-on {
        padding-top: 0;
    }

    .nouriv-hero-grid {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .hero-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .arch-img-wrap {
        border-radius: 20px;
        height: 480px;
    }

    .values-grid {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
    }

    .value-icon {
        height: 250px;
        width: 250px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px;
        gap: 20px;
    }

    .feature-split {
        padding: 0;
    }

    section.quote-section {
        padding: 40px;
        min-height: auto;
    }

    .feature-img-combo {
        justify-content: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 991px) {
    .nouriv-hero {
        padding-top: 120px;
    }

    .hero-info h1 {
        font-size: 3.2rem;
    }

    .hero-sub {
        font-size: 1.1rem;
        max-width: 80%;
    }

    .arch-img-wrap {
        border-radius: 180px 180px 20px 20px;
    }
}

@media (max-width: 768px) {
    .logo-flex {
        gap: 30px;
    }

    .value-card {
        padding: 30px 20px;
    }

    .hero-info h1 {
        font-size: 2.8rem;
    }

    .hero-sub {
        max-width: 100%;
    }

    .feature-grid {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .nouriv-hero-grid {
        gap: 30px;
    }

    .hero-info h1 {
        font-size: 2.2rem;
    }

    .hero-sub {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .arch-img-wrap {
        border-radius: 150px 150px 20px 20px;
    }

    .large-arch {
        border-radius: 50px 50px 10px 10px;
    }
}