*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.page-template-custom-pagespage-about-php .site-content > .container,
.page-template-custom-pagespage-about-php .site-content > .motta-container {
    max-width: none !important;
    padding: 0 !important;
    width: 100% !important;
}

.page-template-custom-pagespage-about-php .site-content {
    padding: 0 !important;
    margin: 0 !important;
}

/* Hero */
.hero {
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-left { position: relative; z-index: 2; }

.eyebrow {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #A87A63; 
    margin: 0 0 20px 0;
}

.hero-title {
    font-family: Chillax;
    font-size: 3rem;
    line-height: 1.08;
    font-weight: 500;
    color: #1a1a1ae0;
}
.hero-title .accent { color: #A87A63; font-weight: 300; }

.hero-body {
    font-size: 1rem;
    font-family: Chillax;
    font-weight: 400;
    color: #3a3a3a;
    max-width: 50ch;
    margin: 1.75rem 0 2.5rem;
}

.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }



.hero-right {
    position: relative;
    height: 540px;
    width: 100%;
}

.img-card {
    position: absolute;
    border-radius: 1.25rem;
    overflow: hidden;
}
.img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.img-main { 
    width: 55%; 
    height: 90%; 
    top: 10%; 
    left: 0; 
}

.img-side { 
    width: 55%; 
    height: 90%; 
    left: 58%; 
    top: 0; 
}

/* About Section */
.about-section {
    background-color: #F4F1ED;
    padding: 40px 80px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.about-quote-mark {
    position: absolute;
    top: 40px;
    right: 80px;
    font-size: 90px;
    line-height: 1;
    color: #e8d5c4;
    font-family: 'Merriweather', serif;
    user-select: none;
    letter-spacing: -3px;
}

.about-heading {
    font-family: Chillax;
    font-weight: 500;
    font-size: 2.2em;
    color: #1a1a1ae0;
    margin: 0 0 14px 0;
    line-height: 1.25;
    max-width: 800px;
}

.about-body {
    font-family: Chillax;
    font-size: 16px;
    font-weight: 400;
    color: #3a3a3a;
    line-height: 1.75;
    max-width: 700px;
    margin: 0;
}

/* Split Section */
.split-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
    padding: 60px 80px 50px;
}

.split-image-col { flex: 1; min-width: 0; }
.split-image-col img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.split-text-col { flex: 1; min-width: 0; }
.split-tag {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #A87A63;
    margin: 0 0 20px 0;
}

.split-heading {
    font-family: Chillax;
    font-size: 34px;
    font-weight: 500;
    color: #1a1a1ae0;
    line-height: 1.3;
    margin: 0 0 24px 0;
}

.split-body {
    font-family: Chillax;
    font-size: 16px;
    color: #3a3a3a;
    line-height: 1.8;
    margin: 0 0 36px 0;
}

.btn {
    display: inline-block;
    font-family: Chillax;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    background-color: #A87A63;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: background .3s;
}
.split-btn:hover { background-color: #7A3B1E; }

/* Tinza Way */
.tinza-way {
    background-color: #F4F1ED;
    border-radius: 16px;
    padding: 35px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 35px 80px;
}

.tinza-way-heading {
    font-family: Chillax;
    font-size: 36px;
    font-weight: 500;
    color: #1a1a1ae0;
    margin: 0 0 10px 0;
    line-height: 1.25;
}

.tinza-way-sub {
    font-family: Chillax;
    font-size: 16px;
    color: #6a5c51;
    font-weight: 500;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.tinza-way-body {
    font-family: Chillax;
    font-size: 15px;
    color: #3a3a3a;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 960px) {
    .about-heading { font-size: 27px; max-width: 500px;}
}


/* ── MOBILE RESPONSIVE (Up to 639px) ── */
@media (max-width: 639px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 48px 20px 60px;
        gap: 2.5rem;
    }
    .hero-title { font-size: 2rem; }
    .hero-body { font-size: 0.9375rem; }
    
    /* Image Adjustments */
    .hero-right { 
        height: 400px; /* Increased height to prevent clipping */
        display: flex;
        align-items: center;
    }

    .img-main { 
        width: 65%; 
        height: 65%; 
        top: 20%;      /* Push it down slightly */
        left: 0; 
        z-index: 2;    /* Lower layer */
    }

    .img-side { 
        width: 65%; 
        height: 65%; 
        left: 35%;     /* Overlap the first image */
        top: 0;        /* Keep it higher up */
        z-index: 1;    /* Bring to front */
    }

    .about-section { padding: 40px 20px; width: 100vw; }
    .about-heading { font-size: 27px; max-width: 350px;}
    .about-quote-mark { font-size: 60px; top: 28px; right: 20px; }

    .split-section {
        flex-direction: column;
        padding: 56px 20px;
        gap: 36px;
    }
    .split-image-col img { height: 280px; }
    .split-heading { font-size: 26px; }

    .tinza-way { padding: 48px 24px; margin: 16px; border-radius: 12px; }
    .tinza-way-heading { font-size: 26px; }
}