* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "kumbh sans", serif;
}

body {
    background: #000;
}

a {
    text-decoration: none;
    color: #2b2b2b;
}
section{
    overflow: hidden;
}
/* ===== SECTION ===== */
.estate-hero {
    display: flex;
    background-image: url("./assets/coffee-yard.png");
    width: 100%;
    min-height: 90vh;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* ===== LEFT CONTENT ===== */
.estate-overlay {
    display: flex;
    align-items: center;
    padding: 70px;
}

.estate-content {
    color: #fff;
    max-width: 520px;
}

.logo-box {
    background: #fff;
    padding: 18px 28px;
    border-radius: 14px;
    display: inline-block;
    margin-bottom: 32px;
}

.logo-box img {
    max-width: 260px;
    width: 100%;
}

.estate-text {
    font-size: 22px;
    line-height: 1.7;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-align: center;
}

.certifications {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.certifications img {
    height: 48px;
    opacity: 0.9;
    filter: grayscale(100%);
}


/* =========================
   TABLET (768px – 1199px)
========================= */
@media (max-width: 1024px) {
    .estate-overlay {
        padding: 50px;
    }

    .estate-text {
        font-size: 20px;
    }

    .logo-box img {
        max-width: 220px;
    }

    .certifications img {
        height: 42px;
    }
}

/* =========================
   MOBILE (≤767px)
========================= */
@media (max-width: 767px) {
    .estate-hero {
        flex-direction: column;
        min-height: auto;
    }

    .estate-image {
        width: 100%;
        height: 260px;
    }

    .estate-overlay {
        width: 100%;
        padding: 40px 24px;
        text-align: center;
    }

    .estate-content {
        max-width: 100%;
    }

    .logo-box {
        margin: 0 auto 26px;
    }

    .logo-box img {
        max-width: 200px;
    }

    .estate-text {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .certifications {
        justify-content: center;
        gap: 18px;
    }

    .certifications img {
        height: 38px;
    }
    
    /*new*/
    
    .estate-content
 {
    color: #fff;
    max-width: 675px;
    position: absolute;
    top: 20%;
    width: 100%;
    left: 20%;
}
.logo-box {
    background: #fff;
    padding: 18px 28px;
    border-radius: 14px;
    display: flex;
    margin-bottom: 32px;
    text-align: center;
    width: fit-content;
    justify-content: center;
    margin: 0 auto;
    /* font-size: 20px !important; */
}

    .logo-box img {
        max-width: 261px;
        margin: 0 auto;
        text-align: center;
        display: flex;
        justify-content: center;
    }
        .estate-text {
        font-size: 35px;
        margin-top: 20px;
    }
    .certifications {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
    .certifications img {
        height: auto;
        width: auto;
    }
    
    


}

/* =========================
   SMALL MOBILE (≤480px)
========================= */
@media (max-width: 480px) {
    .estate-image {
        height: 220px;
    }

    .estate-text {
        font-size: 16px;
    }

    .certifications img {
        height: 34px;
    }
}

/* ===== BASE ===== */
.estate-story {
    background: radial-gradient(circle at top left, #1a140c, #000);
    padding: 120px 0;
    color: #d6cbbf;
    font-family: "Georgia", serif;
}

.estate-story-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 120px;
}

/* ===== IMAGES ===== */
.story-images {
    position: relative;
    width: 40%;
}

.image-large {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(214, 203, 191, 0.3);
}

.image-large img {
    width: 100%;
    display: block;
}

.image-small {
    position: absolute;
    bottom: -70px;
    right: -60px;
    width: 60%;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(214, 203, 191, 0.4);
    background: #000;
}

.image-small img {
    width: 100%;
    display: block;
}

/* ===== CONTENT ===== */
.story-content {
    width: 60% !important;
}

.story-text {
    width: 85% !important;
    font-size: 20px;
    line-height: 1.9;
    color: #cfc5b8;
}

/* Drop cap */
.dropcap {
    float: left;
    font-size: 92px;
    line-height: 0.9;
    padding-right: 16px;
    color: #e4d8c8;
    font-weight: 300;
}

/* =========================
   TABLET (≤1024px)
========================= */
@media (max-width: 1024px) {
    .estate-story-inner {
        gap: 70px;
    }

    .story-text {
        font-size: 18px;
    }

    .dropcap {
        font-size: 72px;
    }

    .image-small {
        right: -40px;
        bottom: -50px;
    }
}

/* =========================
   MOBILE (≤768px)
========================= */
@media (max-width: 768px) {
    .estate-story {
        padding: 80px 0;
    }

    .estate-story-inner {
        flex-direction: column;
        gap: 60px;
    }

    .story-images,
    .story-content {
        width: 100%;
    }

    .story-images {
        max-width: 420px;
        margin: 0 auto;
    }

    .image-small {
        position: relative;
        right: 0;
        bottom: 0;
        margin: 24px auto 0;
        width: 75%;
    }

    .story-text {
        font-size: 17px;
        line-height: 1.8;
    }

    .dropcap {
        font-size: 64px;
    }
}

/* =========================
   SMALL MOBILE (≤480px)
========================= */
@media (max-width: 480px) {
    .story-text {
        font-size: 16px;
    }

    .dropcap {
        font-size: 56px;
    }
}


/* ===== BASE ===== */
.estate-narrative {
    background: #f5f2ed;
    padding: 120px 24px;
    font-family: "Georgia", serif;
    color: #2b2b2b;
}

/* ===== TOP STORY ===== */
.story-top {
    max-width: 1200px;
    margin: 0 auto 140px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.story-text-1 {
    width: 45%;
    font-size: 18px;
    line-height: 1.9;
}

.story-images-stack {
    width: 55%;
    position: relative;
    min-height: 520px;
}

.stack-img {
    position: absolute;
    width: 260px;
    border-radius: 18px;
    border: 2px solid #ddd;
    background: #fff;
}

/* ===== BOTTOM STORY ===== */
.story-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.bottom-images {
    width: 50%;
    position: relative;
}

.cup-main {
    width: 100%;
    border-radius: 22px;
}

.cup-small {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 160px;
    border-radius: 16px;
    border: 2px solid #fff;
}

.highlight-card {
    width: 50%;
    background: #111;
    color: #eee;
    padding: 40px 48px;
    border-radius: 18px;
    font-size: 17px;
    line-height: 1.7;
}

/* =========================
   TABLET (≤1024px)
========================= */
@media (max-width: 1024px) {
    .story-top {
        gap: 50px;
    }

    .story-text {
        font-size: 17px;
    }

    .stack-img {
        width: 220px;
    }

    .highlight-card {
        padding: 32px;
    }
}

/* =========================
   MOBILE (≤768px)
========================= */
@media (max-width: 768px) {
    .estate-narrative {
        padding: 80px 20px;
    }

    .story-top {
        flex-direction: column;
        gap: 60px;
    }

    .story-text,
    .story-images-stack {
        width: 100%;
    }

    .story-images-stack {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stack-img {
        position: static;
        width: 100%;
    }

    .story-bottom {
        flex-direction: column;
        gap: 50px;
    }

    .bottom-images,
    .highlight-card {
        width: 100%;
    }

    .cup-small {
        position: static;
        margin-top: 16px;
    }
}

/* =========================
   SMALL MOBILE (≤480px)
========================= */
@media (max-width: 480px) {
    .story-text {
        font-size: 16px;
    }

    .highlight-card {
        font-size: 16px;
        padding: 28px;
    }
}

/* ===== BASE ===== */
.estate-manifesto {
    position: relative;
    width: 100%;
    min-height: 90vh;
    background-image: url("./assets/image 20.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    font-family: "Georgia", serif;
}

/* Dark vignette for readability */
.estate-manifesto::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle,
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.85));
}

/* ===== GLASS CARD ===== */
.manifesto-overlay {
    position: relative;
    max-width: 1000px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    border-radius: 18px;
    padding: 60px 70px;
    color: #eee;
}

/* ===== TEXT ===== */
.manifesto-text {
    font-size: 20px;
    line-height: 1.9;
    color: #e6e6e6;
}

/* Drop cap "We" */
.dropcap-we {
    float: left;
    font-size: 92px;
    line-height: 0.9;
    margin-right: 14px;
    color: #ffffff;
    font-weight: 400;
}

/* =========================
   TABLET (≤1024px)
========================= */
@media (max-width: 1024px) {
    .manifesto-overlay {
        padding: 50px;
    }

    .manifesto-text {
        font-size: 18px;
    }

    .dropcap-we {
        font-size: 72px;
    }
}

/* =========================
   MOBILE (≤768px)
========================= */
@media (max-width: 768px) {
    .estate-manifesto {
        min-height: auto;
        padding: 60px 20px;
    }

    .manifesto-overlay {
        padding: 40px 28px;
    }

    .manifesto-text {
        font-size: 17px;
        line-height: 1.8;
    }

    .dropcap-we {
        font-size: 64px;
    }
}

/* =========================
   SMALL MOBILE (≤480px)
========================= */
@media (max-width: 480px) {
    .manifesto-overlay {
        padding: 32px 22px;
    }

    .manifesto-text {
        font-size: 16px;
    }

    .dropcap-we {
        font-size: 56px;
    }
}


/* ===== SECTION 1 ===== */
.heritage-section {
    background: url("./assets/drying-yard.png") center/cover no-repeat;
    background-color: #ffffff;
    padding: 120px 24px;
}

.heritage-overlay {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.dropcap-text span {
    float: left;
    font-size: 72px;
    margin-right: 12px;
}

.heritage-content {
    width: 55%;
    color: #111;
    font-size: 18px;
    line-height: 1.9;
}

.heritage-image img {
    width: 100%;
    border-radius: 22px;
}

.heritage-image {
    width: 45%;
}

/* ===== SECTION 2 ===== */
.water-section {
    background: #0e0e0e;
    color: #eee;
    padding: 100px 24px;
    text-align: center;
}

.center-text {
    max-width: 900px;
    margin: auto auto 60px;
    font-size: 18px;
    line-height: 1.8;
}

.water-gallery {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.water-gallery .wide {
    grid-column: span 3;
    height: 280px;
    object-fit: cover;
}

.water-gallery img {
    width: 100%;
    border-radius: 18px;
}

/* ===== SECTION 3 ===== */
.process-section {
    background: url("./assets/coffee-bg.png") center/cover no-repeat;
    padding: 120px 24px;
}

.process-grid {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 80px;
}

.process-text {
    width: 40%;
    font-size: 18px;
    line-height: 1.9;
}

.process-images {
    width: 60%;

}

.process-images img {
    width: 100%;
    border-radius: 18px;
}

/* ===== SECTION 4 ===== */
.certification-section {
    background: #fff;
    padding: 80px 24px;
    text-align: center;
}

.cert-text {
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.cert-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.cert-logos img {
    height: 60px;
}

.bottom-footer {
    margin-top: 20px;
}

.bottom-footer a {
    font-size: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {

    .heritage-overlay,
    .process-grid {
        flex-direction: column;
    }

    .heritage-content,
    .heritage-image,
    .process-text,
    .process-images {
        width: 100%;
    }

    .water-gallery {
        grid-template-columns: 1fr;
    }

    .water-gallery .wide {
        grid-column: span 1;
    }
}



/* ===== BASE ===== */
.estate-heritage-story {
    background: url("./assets/drying-yard.png");
    background-color: #e2dfdc;
    padding: 120px 24px;
    font-family: Georgia, serif;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* ===== TOP ===== */
.story-top {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.story-text {
    width: 60%;
    font-size: 18px;
    line-height: 1.9;
    color: #111;
}

.dropcap {
    float: left;
    font-size: 72px;
    line-height: 0.9;
    margin-right: 12px;
    font-weight: 600;
}

.story-image-float {
    width: 40%;
}

.story-image-float img {
    width: 100%;
    border-radius: 22px;
}

/* ===== MIDDLE ===== */
.story-middle {
    margin: 80px 0;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 720px;
}

.inline-image {
    width: 160px;
    border-radius: 14px;
}

.story-middle p {
    font-size: 16px;
    line-height: 1.7;
    color: #111;
}

/* ===== BOTTOM ===== */
.story-bottom {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.story-long-text {
    width: 65%;
    font-size: 17px;
    line-height: 1.9;
    color: #111;
}

.story-image-tall {
    width: 35%;
}

.story-image-tall img {
    width: 100%;
    border-radius: 22px;
}

/* =========================
   TABLET (≤1024px)
========================= */
@media (max-width: 1024px) {

    .story-top,
    .story-bottom {
        flex-direction: column;
    }

    .story-text,
    .story-image-float,
    .story-long-text,
    .story-image-tall {
        width: 100%;
    }

    .story-middle {
        flex-direction: column;
        align-items: flex-start;
    }
}

.process-section {
    /* background: url(./assets/coffee-bg.png) center / cover no-repeat; */
    padding: 120px 24px;
    background: #000000;
}
.process-text-new-p {
    color: #fff;
}

.cert-text-mbl{
    display: none;
}
.cert-text {
    margin-top: 24px;
}
/* =========================
   MOBILE (≤768px)
========================= */
@media screen and (max-width:767px){
    
    /*new*/
    
    .estate-content
 {
          color: #fff;
        max-width: 664px;
        position: absolute;
        top: 2%;
        width: 100%;
        left: 0%;
}
.logo-box {
    background: #fff;
    padding: 18px 28px;
    border-radius: 14px;
    display: flex;
    margin-bottom: 32px;
    text-align: center;
    width: fit-content;
    justify-content: center;
    margin: 0 auto;
    /* font-size: 20px !important; */
}
    .estate-hero {
        flex-direction: column;
        min-height: 76vh;
        
           background-position: 100% 100%;
    }

    .logo-box img {
        max-width: 123px;
        margin: 0 auto;
        text-align: center;
        display: flex;
        justify-content: center;
    }
        .estate-text {
        font-size: 18px;
        margin-top: 20px;
    }
    .certifications {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
    .certifications img {
        height: auto;
        width: auto;
    }
    
    

.story-text-1 {
    width: 100%;
    font-size: 18px;
    line-height: 1.9;
}
.image-1 {
    width: 100%;
}
.story-images-stack img{
    width: 100%;
}
    .story-images-stack {
        position: static;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
    .story-text {
    width: 100% !important;
    font-size: 20px;
}
.story-content {
    width: 100% !important;
}
.cert-logos {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
}
.bottom-footer-first{
    
}
.bottom-footer {
    margin-top: 0;
    margin-bottom: 30px;
}
.certification-section {
    background: #fff;
    padding: 40px 24px;
    text-align: center;
}
.cert-text-mbl{
    display: block;
}
.cert-text.cert-text-des {
    display: none;
}
.cert-logos {
    margin-top: 20px;
}
}




















