/* Visual continuity hotfix
   Removes the foreground PNG that rendered as a translucent black/white band
   and keeps the scenic background continuous behind every section. */

.layer-fg {
    display: none !important;
}

.parallax-container {
    background: linear-gradient(180deg,
        rgba(45, 74, 62, 0.06) 0%,
        rgba(45, 74, 62, 0.10) 55%,
        rgba(45, 74, 62, 0.18) 100%);
}

.layer-bg,
.layer-bg .bg-image,
.layer-bg::before {
    inset: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
}

.layer-bg .bg-image {
    height: 100vh;
    height: 100dvh;
    object-fit: cover;
    object-position: center center;
}

.layer-content {
    position: relative;
    z-index: 10;
    background: linear-gradient(180deg,
        rgba(253, 248, 240, 0) 0%,
        rgba(253, 248, 240, 0.06) 45%,
        rgba(253, 248, 240, 0.12) 100%);
}

.products-section,
.story-section,
.visit-section {
    position: relative;
    background: transparent !important;
}
