/* Regular */
@font-face {
    font-family: 'Abhaya Libre';
    src: url('../fonts/abhaya-libre.regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Medium */
@font-face {
    font-family: 'Abhaya Libre';
    src: url('../fonts/abhaya-libre.medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* Semi Bold */
@font-face {
    font-family: 'Abhaya Libre';
    src: url('../fonts/abhaya-libre.semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Bold */
@font-face {
    font-family: 'Abhaya Libre';
    src: url('../fonts/abhaya-libre.bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Extra Bold */
@font-face {
    font-family: 'Abhaya Libre';
    src: url('../fonts/abhaya-libre.extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}


:root {
    --white: #ffffff;
    --cream: #f4ede3;
    --text: #d9d9d9;
    --btn-outline: #D9C7B2;
    --dark: #000;
    --bgColor: #EEE9DF;
    --boxBg: #B38E6A;
    --cherry: #3A1700;
}

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

body {
    font-family: 'Abhaya Libre', serif;
    font-weight: 400;
    line-height: 1.7;
    background-color: var(--bgColor);
}

/* Main Headings */

h1,
h2,
h3 {
    font-family: 'Abhaya Libre', serif;
    font-weight: 800;
    letter-spacing: 0px;
    text-transform: uppercase;
}

/* Secondary Headings */

h4,
h5,
h6 {
    font-family: 'Abhaya Libre', serif;
    font-weight: 600;
}

/* Paragraphs */

p {
    font-family: 'Abhaya Libre', serif;
    font-weight: 400;
}

/* Links */

a {
    font-family: 'Abhaya Libre', serif;
    font-weight: 500;
}

/* ======================
   NAVBAR
====================== */

.custom-navbar {
    padding: 12px 0;
    transition: .4s;
    z-index: 999;
}

.brand-logo img {
    width: 60px;
}

.nav-link {
    color: var(--white);
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1.5px;
    position: relative;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
}

.contact-btn {
    background: var(--white);
    color: var(--boxBg);
    border: 1px solid var(--boxBg);
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all .4s ease-in-out;
}

.contact-btn:hover {
    background: var(--boxBg);
    color: var(--white);
}

.custom-navbar.scrolled {
    background: rgba(15, 15, 15, .25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, .12);
}

/* ======================
   HERO
====================== */

.hero-section {
    height: 100vh;
    min-height: 800px;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .55));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    color: var(--white);
}

.hero-content img {
    height: 180px;
}

.hero-title {
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    text-shadow: 2px 4px 12px rgb(0 0 0 / 30%);
}

.hero-description {
    max-width: 900px;
    margin: auto;
    color: var(--white);
    font-size: 20px;
    margin-bottom: 35px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--btn-outline);
    border-radius: 50px;
    padding: 12px 32px;
    transition: .4s;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.2px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    text-transform: uppercase;
}

.hero-btn:hover {
    background: var(--white);
    color: var(--dark);
}

/* ======================
   SCROLL ICON
====================== */

.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.scroll-indicator span i {
    font-size: 24px;
    color: var(--white);
    animation: scrollDown 2s infinite;
}

/* ======================
   ANIMATION
====================== */

@keyframes scrollDown {

    0% {
        opacity: 0;
        transform: translateY(0px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}


/* ===============================
   COFFEE PRESERVE SECTION
================================ */

.coffee-image-wrapper {
    position: relative;
    max-width: 420px;
}

.coffee-image {
    width: 100%;
    display: block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.signature-card {
    position: absolute;
    right: -20px;
    bottom: -20px;
    padding: 32px 24px;
    background: var(--boxBg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.signature-card .small-text {
    font-size: 16px;
    color: var(--white);
    letter-spacing: 1px;
    font-weight: 600;
}

.signature-card h3 {
    color: var(--white);
    font-size: 42px;
    font-weight: 800;
    margin: 5px 0 0;
}

.coffee-content {
    max-width: 620px;
}

.coffee-content h2 {
    font-size: clamp(40px, 4vw, 72px);
    line-height: 1.05;
    color: #3a1704;
    font-weight: 900;
    margin-bottom: 30px;
}

.flavor-tags {
    color: var(--boxBg);
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: .3px;
}

.flavor-tags .pipeline {
    height: 24px;
    width: 2px;
    background: var(--boxBg);
}

.coffee-content p {
    color: #3f3f3f;
    margin-bottom: 18px;
    font-size: 16px;
}

.coffee-btn {
    display: inline-flex;
    align-items: center;
    background: var(--cherry);
    color: var(--white);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 18px;
    transition: .35s ease;
    box-shadow: 0 8px 12px hsl(24deg 100% 11% / 25%);
    text-transform: uppercase;
}

.coffee-btn:hover {
    background: var(--boxBg);
    color: var(--white);
    transform: translateY(-3px);
}

/* ==================================
Summer Favourits
================================== */

.summer-favorites {
    background: var(--btn-outline);
    padding: 120px 0;
}

.section-title {
    font-size: clamp(36px, 3vw, 56px);
    font-weight: 900;
    color: var(--cherry);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-description {
    color: #6d645c;
    line-height: 1.9;
    max-width: 720px;
    margin: auto;
}

.favorite-card {
    height: 100%;
}

.favorite-image {
    position: relative;
    overflow: hidden;
}

.favorite-image video {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: .6s ease;
}

.favorite-card:hover video {
    transform: scale(1.05);
}

/* Badge */

.country-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--white);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

/* Content */

.favorite-content {
    padding-top: 25px;
}

.favorite-content h4 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--cherry);
}

.favorite-content p {
    line-height: 1.9;
    font-size: 16px;
}


/* Handcrafted Provisions */

.provisions-section {
    background: #efeae2;
    padding: 120px 0;
}

/* Top Content */

.intro-content h2 {
    font-size: clamp(40px, 4vw, 72px);
    font-weight: 900;
    color: #3a1704;
    line-height: 1.05;
    margin-bottom: 25px;
}

.intro-content p {
    margin-bottom: 30px;
    max-width: 520px;
}

/* Buttons */

.btn-outline-custom {
    background: transparent;
    color: var(--cherry);
    border: 2px solid var(--cherry);
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: .4s ease-in-out;
    box-shadow: 0 8px 12px hsl(24deg 100% 11% / 25%);
}

.btn-outline-custom:hover {
    background: var(--cherry);
    color: var(--white);
    transform: translateY(-3px);
}

/* Top Image */

.top-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* Feature Card */

.feature-card {
    position: relative;
    overflow: hidden;
    max-height: 640px;
}

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

.feature-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .50);
}

.feature-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: var(--white);
    z-index: 2;
}

.feature-content h3 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 1px;
}

.feature-content a {
    display: inline-block;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 12px 22px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 16px;
    backdrop-filter: blur(5x);
    -webkit-backdrop-filter: blur(5px);
}

/* Workshop */

.workshop-card {
    background: var(--btn-outline);
    padding: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.workshop-content {
    max-width: 350px;
}

.workshop-card img {
    width: 160px;
    height: 200px;
    object-fit: cover;
    transform: rotate(12deg);
}

.workshop-card h4 {
    font-weight: 700;
    color: var(--cherry);
    font-size: 32px;
}

.workshop-card a {
    color: var(--cherry);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.2px;
}

/* Small Cards */

.small-card {
    background: hsl(20deg 16% 78% / 40%);
    padding: 32px;
    height: 100%;
}

.small-card.dark {
    background: var(--cherry);
    color: var(--white);
}

.small-card .icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.iconCherry {
    color: var(--cherry);
}

.small-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

/* =====================
    Certificate Section
===================== */

.bcorp-hero {
    position: relative;
    min-height: 750px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image */
.certificate-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark overlay */
.certificate-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

/* Content */
.certificate-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 250px 0 0;
}

.certificate-title {
    font-size: clamp(40px, 4vw, 72px);
    font-weight: 800;
}

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

/* Rooted  */

.hero-video-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 2;
}

.hero-content h2 {
    font-size: clamp(40px, 4vw, 72px);
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-content h4 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-content p {
    margin: 0 auto 30px;
}

/* Cultural */

.culture-section {
    background: var(--bgColor);
    padding: 100px 0;
}

.section-desc {
    max-width: 980px;
    margin: auto;
    font-size: 18px;
}

.culture-card {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.culture-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.culture-card:hover img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    inset: 0;
    padding: 40px;
    color: var(--white);
    background: linear-gradient(to top,
            rgba(0, 0, 0, .85),
            rgba(0, 0, 0, .15));
}

.card-overlay h3 {
    font-size: 32px;
    letter-spacing: 1px;
    font-weight: 700;
}


.card-overlay .btn {
    padding: 10px 36px;
    font-weight: 500;
}

/* =====================
   BLOG SECTION
===================== */

.latest-blog-section {
    padding: 100px 0;
}

.section-header h2 {
    font-size: clamp(40px, 4vw, 72px);
    font-weight: 900;
    color: var(--cherry);
    margin-bottom: 20px;
}

.section-header p {
    max-width: 1080px;
    margin: auto;
}

/* Blog Card */

.blog-card {
    background: var(--btn-outline);
    overflow: hidden;
    transition: .4s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-image {
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .6s;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-content {
    padding: 20px;
}

.blog-tag {
    background: var(--cherry);
    color: var(--white);
    padding: 4px 10px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-content h4 {
    color: var(--cherry);
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-content p {
    font-size: 16px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.author-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    font-size: 16px;
}

.author-info span {
    font-size: 13px;
}

/* =====================
   FOOTER
===================== */

/* .site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-logo {
    font-weight: 800;
    margin-bottom: 20px;
}

.site-footer h5 {
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 18px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 10px;
}

.circleInfo {
    background-color: var(--white);
    width: 36px;
    color: var(--cherry);
    height: 36px;
}

.site-footer a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

.site-footer a:hover {
    color: var(--cream);
}

.site-footer img {
    height: 80px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--cherry);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s ease-in-out;
    font-size: 18px;
}

.social-icons a:hover {
    background: var(--cream);
    color: var(--dark);
}

hr {
    margin: 50px 0 20px;
    border-color: rgba(255, 255, 255, 1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
} */


/* =========================================
   FOOTER
========================================= */

.site-footer {
    position: relative;
    background: var(--dark, #2d1d17);
    color: var(--white);
    padding: 50px 0 30px;
    overflow: hidden;
}

.footer-intro {
    max-width: 760px;
    margin: 0 auto 75px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 120px;
    height: auto;
    display: block;
}

.footer-intro h2 {
    margin: 0 0 20px;
    color: var(--white);
    font-size: 40px;
    font-weight: 600;
}

.footer-intro p {
    max-width: 750px;
    margin: 0 auto;
}

.footer-main {
    padding: 36px 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.site-footer h5 {
    margin: 0 0 25px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .75);
}

.footer-list li:last-child {
    margin-bottom: 0;
}

.footer-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .10);
    color: var(--boxBg);
}

.site-footer a {
    color: var(--white);
    text-decoration: none;
    transition:
        color .3s ease,
        transform .3s ease;
}

.site-footer a:hover {
    color: var(--btn-outline);
}

.footer-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.footer-text-link:hover {
    gap: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--btn-outline);
    padding-left: 5px;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white) !important;
    font-weight: 600;
}

.instagram-link>i:first-child {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .10);
    color: var(--btn-outline);
    font-size: 18px;
}

.instagram-link>i:last-child {
    font-size: 12px;
    opacity: .6;
}


/* =========================================
   NEWSLETTER
========================================= */

.footer-newsletter {
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.newsletter-label {
    display: block;
    margin-bottom: 10px;
    color: var(--btn-outline);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
}

.footer-newsletter h3 {
    margin: 0 0 8px;
    color: var(--white);
    font-size: 28px;
}

.footer-newsletter p {
    margin: 0;
}

/* =========================================
   NEWSLETTER FORM
========================================= */

.newsletter-input {
    display: flex;
    align-items: center;
    padding: 7px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 60px;
}

.newsletter-input input {
    width: 100%;
    min-width: 0;
    padding: 14px 20px;
    border: none;
    outline: none;
    background: transparent;
    color: var(--white);
    font-size: 15px;
}

.newsletter-input input::placeholder {
    color: rgba(255, 255, 255, .50);
}

.newsletter-input button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    border: none;
    border-radius: 50px;
    background: var(--white);
    color: #2d1d17;
    font-weight: 600;
    cursor: pointer;
    transition: .3s ease;
}

.newsletter-input button:hover {
    background: #d39a4b;
    color: var(--white);
}

.newsletter-input span.wpcf7-form-control-wrap {
    width: 100%;
}

.newsletter-input .wpcf7-not-valid-tip {
    position: absolute;
    top: 65px;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 25px;
}

.footer-copyright strong {
    color: rgba(255, 255, 255, .85);
}

.footer-legal {
    display: flex;
    align-items: start;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.95rem;
    color: var(--white);

}

.footer-legal a:hover {
    color: var(--btn-outline);
}

.footer-copyright {
    color: var(--white);
    font-size: 0.80rem;
}

.hero-subtitle {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 500;
}

.rotating-copy {
    display: inline;
    transition: opacity .45s ease, transform .45s ease;
}

.rotating-copy.is-changing {
    opacity: 0;
    transform: translateY(8px);
}

.hashtag {
    display: inline;
    white-space: nowrap;
    color: var(--white);
    font-weight: 700;
}

/* ======================
   ABOUT US
====================== */

.about-section {
    height: 80vh;
    min-height: 800px;
    position: relative;
    overflow: hidden;
}

.about-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.about-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .55));
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: auto;
    color: var(--white);
    bottom: -180px;
}

.about-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    text-shadow: 2px 4px 12px rgb(0 0 0 / 30%);
}

.about-description {
    max-width: 960px;
    margin: auto;
    color: var(--white);
    font-size: 20px;
    margin-bottom: 35px;
}

.bread-description {
    max-width: 960px;
    margin: auto;
    color: var(--white);
    font-size: 18px;
    margin-bottom: 12px;
}

.supporting-description {
    color: var(--cream);
    font-size: 28px;
}

.terroir-section {
    background: #ebe7df;
    padding: 100px 0;
}

.terroir-subtitle {
    color: var(--boxBg);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
}

.terroir-title {
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    color: #3b1400;
    line-height: 1;
    margin-bottom: 30px;
}

.terroir-description {
    color: var(--dark);
}

.origin-image {
    overflow: hidden;
}

.origin-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: .6s;
}

.origin-card:hover img {
    transform: scale(1.08);
}

.origin-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark);
    text-transform: capitalize;
    letter-spacing: 1px;
}

.origin-note {
    color: var(--boxBg);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

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

.bg-aboutsec3 {
    background-color: var(--btn-outline);
}

.roasting-images {
    max-width: 700px;
}

.roasting-main-img {
    height: 500px;
    object-fit: cover;
    transition: all .8s ease;
}

.modern-main-img {
    height: 450px;
    object-fit: cover;
    transition: all .8s ease;
}

.floating-image {
    position: absolute;
    bottom: -40px;
    left: -50px;
    width: 220px;
    overflow: hidden;
    transition: all .5s ease;
}

.roasting-small-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: all .8s ease;
    object-position: left;
}

.sourdough-small-img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    transition: all .8s ease;
    object-position: left;
}

.roasting-images:hover .roasting-main-img {
    transform: scale(1.05);
}

.floating-image:hover {
    transform: translateY(-10px) scale(1.05);
}

.floating-image:hover .roasting-small-img {
    transform: scale(1.1);
}

.roast-item {
    border-color: var(--boxBg) !important;
    transition: all .6s ease-in-out;
}

.roast-item:hover {
    border-color: var(--cherry) !important;
    transform: translateX(10px);
}

.roast-item:hover h4 {
    color: var(--cherry);
}

.bg-light {
    background: #F3EEE5 !important;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--cherry);
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 2px;
}

.brew-section {
    background: var(--btn-outline);
    padding: 80px 0;
}

.brew-card {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 16 / 9;
}

.brew-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.brew-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s ease;
}

.brew-overlay h3 {
    font-size: 2rem;
    transition: .4s ease;
}

.tutorial-text {
    display: block;
    color: var(--white);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: .4s ease;
}

.brew-card:hover img {
    transform: scale(1.12);
}

.brew-card:hover .brew-overlay {
    background: rgba(0, 0, 0, .55);
}

.brew-card:hover .tutorial-text {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: .15s;
}

.delay-2 {
    transition-delay: .3s;
}

.kinetic-section {
    background: var(--bgColor);
    overflow: hidden;
}

.reveal-word {
    display: inline-block;
    opacity: 0;
    filter: blur(3px);
    transform: translateY(20px);
}

.section-title .reveal-heading.in-view .reveal-word {
    animation: wordFadeUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: var(--reveal-delay);
}

@keyframes wordFadeUp {
    0% {
        opacity: 0;
        filter: blur(3px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}

.gallery-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    height: 460px;
    border-radius: 24px;
    background: var(--bgColor);
    box-shadow: 0 20px 60px rgba(211, 211, 211, 0.35);
}

.gallery-card img,
.gallery-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-card video {
    background: var(--boxBg);
}

.instagram-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--white);
    font-size: 32px;
}

.media-icon {
    position: absolute;
    bottom: 24px;
    right: 24px;
    color: var(--white);
    font-size: 32px;
}

.controls {
    margin-bottom: 56px;
    padding-right: 56px;
}

.nav-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: transparent;
    color: var(--boxBg);
    cursor: pointer;
    font-size: 24px;
}

.nav-btn:hover {
    color: var(--cherry);
}

/* Popup Modal Form CSS */

.modal-content {
    border-radius: 20px;
}

.form-control {
    border-radius: 12px;
    padding: 0.9rem 1rem;
    border: 1px solid #d8d8d8;
    transition: all .3s ease;
}

.form-control:focus {
    box-shadow: none;
    border-color: #6F4E37;
}

.btn-dark {
    background: #3B2416;
    border-color: #3B2416;
}

.btn-dark:hover {
    background: #5A3825;
    border-color: #5A3825;
}

.modal-header {
    background: #faf7f2;
}

/* ==========================================
   Coffee Science Section
========================================== */

/* .coffee-science-section {
    background: var(--dark);
    min-height: 500px;
    padding: 120px 0;
    position: relative;
}

.science-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22vw;
    font-weight: 900;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.09);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-transform: uppercase;
    z-index: 1;
}

.science-title {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 30px;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.science-description {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
} */

.research-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 40px;
    border: 1px solid var(--btn-outline);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all .35s ease;
    position: relative;
    z-index: 2;
}

.research-btn:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-4px);
}

.research-btn span {
    transition: transform .3s ease;
}

.research-btn:hover span {
    transform: translateX(4px);
}

.animate-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp .8s ease forwards;
}

.delay-1 {
    animation-delay: .2s;
}

.delay-2 {
    animation-delay: .4s;
}

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

.research-portal-section {
    position: relative;
    overflow: hidden;
}

.portal-title {
    font-size: clamp(2.5rem, 4vw, 4.7rem);
    font-weight: 900;
    line-height: 1.1;
    color: #2c1204;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.portal-description {
    color: #2d2d2d;
    font-size: 1rem;
    line-height: 1.9;
    max-width: 560px;
    margin-bottom: 3rem;
}

/* ==========================
   ACCORDION
========================== */

.custom-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
    background: transparent;
}

.custom-accordion .accordion-button {
    background: transparent;
    padding: 1.4rem 0;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2c1204;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: #2c1204;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
}

.custom-accordion .accordion-button::after {
    width: 18px;
    height: 18px;
    background-size: 18px;
}

.custom-accordion .accordion-body {
    padding: 0 0 1.5rem;
    color: #333;
    line-height: 1.9;
}

.custom-accordion .accordion-body strong {
    color: #111;
}

.research-image-wrapper {
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.research-image {
    width: 100%;
    transition: transform .8s ease;
}

.research-image-wrapper:hover .research-image {
    transform: scale(1.05);
}

/* ==========================
   ANIMATIONS
========================== */

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp .9s ease forwards;
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    animation: fadeRight 1s ease forwards;
}

.delay-1 {
    animation-delay: .2s;
}

.delay-2 {
    animation-delay: .4s;
}

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

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hydration-card {
    background: var(--dark);
    color: var(--white);
    padding: 70px;
    position: relative;
    overflow: hidden;
}

/* Left Content */

.research-label {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hydration-title {
    font-size: clamp(2rem, 3vw, 4rem);
    margin-bottom: 30px;
}

.hydration-description {
    max-width: 620px;
    margin-bottom: 40px;
    font-size: 16px;
}

/* Button */

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid var(--btn-outline);
    border-radius: 50px;
    text-decoration: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: .35s ease;
}

.download-btn:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-4px);
}

.download-btn span {
    transition: .3s;
}

.download-btn:hover span {
    transform: translateX(5px);
}

/* Stats */

.stats-wrapper {
    border-left: 1px solid rgba(255, 255, 255, .40);
    padding-left: 50px;
}

.stat-item {
    margin-bottom: 35px;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.stat-item span {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
}

.quote-text {
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    margin-top: 30px;
}

/* FAQs */

.custom-faq .accordion-item {
    border: none;
    background: var(--white);
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .3s ease;
}

.custom-faq .accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.custom-faq .accordion-button {
    background: none;
    box-shadow: none;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.custom-faq .accordion-button::after {
    display: none;
}

/* Circle icon */

.faq-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--cherry);
    position: relative;
    flex-shrink: 0;
    transition: .4s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .4s ease;
}

.faq-icon::before {
    width: 16px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 16px;
}

.accordion-button:not(.collapsed) .faq-icon {
    background: var(--boxBg);
}

.accordion-button:not(.collapsed) .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cherry);
}

.custom-faq .accordion-body {
    padding: 0 24px 24px 90px;
    color: var(--dark);
}

/* Blog Page CSS */

.blogmain-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Image */
.blogmain-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    animation: zoomBg 18s ease-in-out infinite alternate;
}

/* Overlay */
.blogmain-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 2;
}

/* Content */
.blogmain-section .container {
    position: relative;
    z-index: 2;
}

.blogmain-established {
    color: var(--white);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.blogmain-title {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
}

.blogmain-content {
    position: relative;
    z-index: 3;
    max-width: 980px;
    margin: auto;
    padding: 70px 60px;
    text-align: center;
    background: rgba(0, 0, 0, .38);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, .08);
}

.blogmain-description {
    max-width: 700px;
    margin: auto;
    color: var(--white);
    line-height: 1.8;
}

@keyframes zoomBg {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}


/* Contact Us Page */

.contact-section {
    background: var(--bgColor);
    padding: 120px 0;
}

.contact-heading {
    font-size: 42px;
    font-weight: 800;
    color: var(--cherry);
    margin-top: 10px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--cherry);
    margin-bottom: 12px;
}

.formCustom {
    border: none;
    border-bottom: 1px solid var(--btn-outline);
    border-radius: 0;
    background: transparent;
    padding: 12px 0;
    box-shadow: none;
    font-size: 16px;
}

.formCustom:focus {
    border-color: var(--boxBg);
    box-shadow: none;
    background: transparent;
}

textarea.formCustom {
    resize: none;
}

.theme-btn {
    background: var(--cherry);
    color: var(--white);
    border: none;
    padding: 16px 42px;
    border-radius: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: .35s;
    box-shadow: 0 8px 20px rgba(61, 29, 9, .25);
}

.theme-btn:hover {
    transform: translateY(-5px);
    background: #8b5e34;
}

.contact-info {
    margin-top: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.icon {
    width: 42px;
    height: 42px;
    background: #b68a5d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.info-item span {
    display: block;
    font-weight: bold;
    font-size: 16px;
    color: var(--dark);
}

.info-item p {
    margin: 0;
    color: var(--dark);
    font-weight: 500;
}

.map-box {
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.map-box iframe {
    width: 100%;
    height: 280px;
    border: 0;
}

/*==========================
 Partnership Section
==========================*/

.partnership-section {
    background: #b79f90;
    padding: 110px 0;
}

/* Image */

.partnership-image {
    overflow: hidden;
    border-radius: 4px;
    max-height: 650px;
}

.partnership-image img {
    width: 100%;
    transition: 1s ease;
}

.partnership-image:hover img {
    transform: scale(1.08);
}

/* Tag */

.partnership-section .section-tag {
    display: inline-block;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Heading */

.partnership-title {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    font-weight: 800;
    line-height: 1.08;
    text-transform: uppercase;
    margin-bottom: 35px;
}

/* Paragraph */

.partnership-text {
    color: rgba(255, 255, 255, .9);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 40px;
}

/* Features */

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.feature-icon {
    color: var(--white);
    font-size: 20px;
    margin-top: 4px;
}

.feature-item h6 {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.feature-item p {
    color: rgba(255, 255, 255, .85);
    margin: 0;
    line-height: 1.8;
    font-size: .95rem;
}

/* Button */

.contactPros {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 16px 34px;
    border: 2px solid rgba(255, 255, 255, .7);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: .6s ease-in-out;
}

.contactPros:hover {
    background: var(--white);
    color: var(--cherry);
    transform: translateY(-5px);

}

.contactPros i {
    transition: .35s;
}

.contactPros:hover i {
    transform: translateX(6px);
}


/* ==========================================
   TECHNICAL HEARTH
========================================== */

.technical-hearth-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: #f3eee5;
}

.hearth-image-wrap {
    position: relative;
    padding-right: 16px;
    padding-bottom: 16px;
}

.hearth-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.hearth-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(45, 25, 12, 0.08);
    pointer-events: none;
}

.hearth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transform: scale(1.01);
    transition:
        transform 1s cubic-bezier(.2, .7, .2, 1),
        filter .6s ease;
}

.hearth-image-wrap:hover img {
    transform: scale(1.06);
    filter: grayscale(70%);
}


/* IMAGE DECORATIVE LINE */

.image-line {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    border-right: 4px solid var(--btn-outline);
    border-bottom: 4px solid var(--btn-outline);
    pointer-events: none;
}

/* CONTENT */

.hearth-content {
    max-width: 650px;
    padding-left: 45px;
}

.hearth-btn:hover {
    color: var(--white);
    background: #3b1d09;

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(50, 25, 10, .15);
}

.hearth-btn:hover i {
    transform: translateX(4px);
}

/* ==========================================
   GLOBAL STEWARDSHIP
========================================== */

.stewardship-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 110px;
    background: var(--dark);
    color: var(--white);
}

/* ==========================================
   HEADER
========================================== */

.stewardship-header {
    margin-bottom: 48px;
}

.stewardship-intro h2 {
    margin: 0 0 20px;
    color: var(--white);
    font-size: clamp(40px, 4vw, 72px);
    font-weight: 800;
    line-height: 1;
}

.stewardship-intro p {
    max-width: 750px;
    margin: 0;
}

.stewardship-stat {
    max-width: 170px;
    margin-left: auto;
}

.stat-number {
    color: var(--text);
    font-size: clamp(48px, 4vw, 72px);
    font-weight: 300;
    line-height: .95;
}

.stat-number span {
    font-size: .65em;
}

.stat-line {
    width: 100%;
    height: 1px;
    margin: 18px 0 9px;
    background: #292929;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 2px;
}

/* ==========================================
   CARDS
========================================== */

.stewardship-cards {
    margin-top: 10px;
}

.stewardship-card {
    height: 100%;
}

.stewardship-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / .88;
    background: #111;
}

.stewardship-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition:
        transform 1s cubic-bezier(.2, .7, .2, 1),
        filter .7s ease;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .05);
    transition: background .5s ease;
    pointer-events: none;
}

.stewardship-card:hover .stewardship-image img {
    transform: scale(1.07);
}

.stewardship-card:hover .image-overlay {
    background: rgba(0, 0, 0, .18);
}

.card-content {
    padding-top: 24px;
}

.stewardship-card {
    transition:
        transform .5s ease,
        opacity .5s ease;
}

.stewardship-card:hover {
    transform: translateY(-5px);
}

.visionaries {
    padding: 100px 0;
    background: #f8f4ee;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cherry);
}

.team-card {
    text-align: center;
    transition: .4s;
}

.team-img {
    position: relative;
}

.team-img img {
    aspect-ratio: 4/4.4;
    object-fit: cover;
    transition: .6s;
}

.team-card:hover img {
    transform: scale(1.08);
}

.team-card::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--btn-outline);
    margin: 20px auto;
    transition: .4s;
}

.team-card:hover::after {
    background: #8b5e34;
}

.team-card h5 {
    font-weight: 700;
    color: var(--cherry);
    margin-bottom: 8px;
}

.team-card p {
    color: var(--boxBg);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Blog Details Page */

.blog-author {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.blog-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, .4);
}

.blog-author h6 {
    margin: 0;
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .5px;
}

.blog-author span {
    font-size: .85rem;
    color: rgba(255, 255, 255, .75);
}

.blog-details-section {
    padding: 100px 0 25px;
}

.blog-details-section h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.blog-details-section img {
    transition: .8s;
    height: 500px;
    object-fit: cover;
    margin-bottom: 32px;
}

.blog-details-section ol {
    display: flex;
    gap: 12px;
    transition: .3s;
    flex-direction: column;
    margin-bottom: 0;
    font-size: 2rem;
    font-weight: 800;
    color: #8b4a1d;
}

.blog-details-section ol li {
    margin-bottom: 24px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    transition: .3s;
    padding-left: 12px;
}

.blog-details-section p {
    font-size: 1rem;
    color: var(--dark);
}

.blog-details-section li:last-child {
    border: none;
}

.blog-details-section h6 {
    color: var(--cherry);
    font-size: 1.2rem;
}

.coffee-with-origin {
    background: #faf7f2;
    padding: 80px 0;
}

.coffee-origin-image {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    max-height: 550px;
}

.coffee-origin-image img {
    width: 100%;
    transition: .8s ease;
}

.coffee-origin-image:hover img {
    transform: scale(1.08);
}


.section-title span {
    color: var(--boxBg);
}

.coffee-features-point {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    gap: 0px 32px;
    flex-wrap: wrap;
}

.coffee-features-point li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.coffee-features-point i {
    color: var(--boxBg);
}

.btn-coffee {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 50px;
    background: var(--cherry);
    color: var(--white);
    text-decoration: none;
    transition: .4s;
}

.btn-coffee:hover {
    background: var(--boxBg);
    color: var(--white);
    transform: translateY(-4px);
}

.btn-coffee i {
    transition: .4s;
}

.btn-coffee:hover i {
    transform: translateX(8px);
}

/* Signature Drink CSS Section */

.section-signature-tag {
    color: var(--boxBg);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.drink-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: .45s;
}

.drink-card:hover {
    transform: translateY(-8px);
}

.drink-image {
    overflow: hidden;
    height: 320px;
}

.drink-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s;
}

.drink-card:hover img {
    transform: scale(1.1);
}

.drink-content {
    padding: 24px;
}

.drink-content span {
    color: var(--boxBg);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
}

.drink-content h3 {
    margin: 12px 0;
    font-size: 24px;
}

/* Our Bread Story CSS */

.signature-bakes {
    background: #f8f5ef;
}

.signature-bakes .section-tag {
    display: inline-block;
    color: var(--boxBg);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.bake-card {
    background: var(--white);
    overflow: hidden;
    transition: .4s;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.bake-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
}

.bake-image {
    overflow: hidden;
    height: 380px;
}

.bake-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s;
}

.bake-card:hover img {
    transform: scale(1.08);
}

.bake-content {
    padding: 16px;
}

.bake-content h3 {
    font-size: 24px;
    text-align: center;
}

/* Bread Flight Section CSS */

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

.bread-flight {
    background: var(--btn-outline);
    color: var(--dark)
}

.flight-item i {
    background: var(--boxBg);
    color: var(--white)
}

.bread-flight-image {
    position: relative;
    overflow: hidden;
}

.bread-flight-image img {
    width: 100%;
    transition: .8s
}

.bread-flight-image:hover img {
    transform: scale(1.08)
}

.experience-badge {
    position: absolute;
    left: 24px;
    top: 24px;
    background: var(--boxBg);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px
}

.bread-flight .section-tag {
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.flight-item {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
}

.flight-item i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    flex-shrink: 0;
}

.flight-item h5 {
    margin-bottom: 0px;
}

.flight-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap
}

/* New Orleans Journey CSS */

.journeySlider {
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

.journeySlider img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.story-label {
    color: var(--boxBg);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.story-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.story-features div {
    background: var(--white);
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .35s;
}

.story-features div:hover {
    transform: translateY(-6px);
}

.story-features i {
    color: var(--boxBg);
    margin-right: 8px;
}

.journeySlider .swiper-button-next,
.journeySlider .swiper-button-prev {
    color: var(--white);
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, .45);
    border-radius: 50%;
}

.journeySlider .swiper-button-next::after,
.journeySlider .swiper-button-prev::after {
    font-size: 18px;
}

.journeySlider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.journeySlider .swiper-pagination-bullet-active {
    background: var(--boxBg);
}

/* Made With Soul */

.made-with-soul {
    background: var(--btn-outline);
    padding: 80px 0;
    text-align: center;
}

.founder-image {
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    max-width: 700px;
    margin: auto;
    border: 12px solid rgba(255, 255, 255, .20);
}

.founder-image img {
    width: 100%;
    transition: .8s ease;
}

.made-with-soul .section-tag {
    display: inline-block;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 30px 0 15px;
}

.section-text {
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 2;
    font-size: 18px;
}

/* Catering CSS */

.catering-section {
    padding: 80px 0;
    background: #f8f4ee;

}

.catering-section .section-tag {
    display: inline-block;
    color: var(--boxBg);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.event-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.event-item {
    background: var(--white);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: .35s;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .06);
}

.event-item:hover {
    transform: translateY(-6px);
}

.event-item i {
    width: 48px;
    height: 48px;
    background: var(--boxBg);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.catering-image {
    position: relative;
    overflow: hidden;
}

.catering-image img {
    width: 100%;
    transition: .6s;
}

.catering-image:hover img {
    transform: scale(1.05);
}

.catering-modal {
    border: none;
    border-radius: 0;
    /* overflow: hidden; */
}

.modal-left {
    background: var(--cherry);
    color: var(--white);
    height: 100%;
    padding: 24px;

}

.modal-left h2 {
    margin: 8px 0;
}

.modal-left ul {
    margin-top: 16px;
    padding: 0;
    list-style: none;
}

.modal-left li {
    margin-bottom: 4px;
}

.modal-tag {
    color: #d39634;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
}

.modal-form.cateringModalForm {
    padding: 40px 24px;
}

.modal-form.cateringModalForm .form-control,
.modal-form.cateringModalForm .form-select {
    min-height: 48px;
    padding: 12px;
    border-radius: 4px;
}

.modal-form.cateringModalForm textarea {
    min-height: 140px;
}

.closePopup {
    position: absolute;
    right: -30px;
    top: -30px;
    padding: 8px;
    z-index: 10;
    background-color: #d8a14b;
    border-radius: 50%;
    opacity: 1;
}

/* =========================================
   COMING SOON SECTION
========================================= */

.coming-soon-section {
    background: #f8f5ef;
    padding: 100px 0 !important;
}

.coming-soon-card {
    max-width: 1150px;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 25px 70px rgba(45, 29, 23, 0.10);
    transition: transform .5s ease,
        box-shadow .5s ease;
}

.coming-soon-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 35px 90px rgba(45, 29, 23, 0.16);
}

/* =========================================
   IMAGE
========================================= */

.coming-soon-image {
    position: relative;
    height: 100%;
    min-height: 480px;
    overflow: hidden;
}

.coming-soon-image img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform .8s ease;
}

.coming-soon-card:hover .coming-soon-image img {

    transform: scale(1.06);
}

/* =========================================
   COMING SOON BADGE
========================================= */

.coming-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    padding: 10px 20px;
    background: var(--cherry);
    color: var(--white);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, .2);
}

.coming-soon-content {
    height: 100%;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coming-label {
    display: inline-flex;
    width: fit-content;
    padding: 7px 14px;
    margin-bottom: 20px;
    background: #f3e5d2;
    color: #a66e2c;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* =========================================
   TASTING DETAILS
========================================= */

.tasting-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 35px;
}

.tasting-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #3a2a22;
    font-size: 15px;
    font-weight: 500;
}

.tasting-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--boxBg);
    color: var(--white);
    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.tasting-item:hover .tasting-icon {
    background: var(--cherry);
    color: var(--white);
    transform: translateY(-3px);
}

.join-list-btn {
    gap: 12px;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    background: var(--cherry);
    color: var(--white);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 18px;
    transition: .35s ease;
    box-shadow: 0 8px 12px hsl(24deg 100% 11% / 25%);
    text-transform: uppercase;
}

.join-list-btn:hover {
    background: var(--boxBg);
    color: var(--white);
    transform: translateY(-3px);
}

/* =========================================
   ABOUT / OUR STORY HERO
========================================= */

.about-hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    overflow: hidden;
    isolation: isolate;
    background: var(--dark);
}

.about-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: -1;
}

.about-hero-content {
    max-width: 850px;
    padding: 80px 16px 0;
}

.about-hero-label {
    margin-bottom: 16px;
    color: var(--white);
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 2px;
}

.about-hero-title {
    margin-bottom: 20px;
    color: var(--white);
    font-size: clamp(36px, 3vw, 56px);
    line-height: 1.08;
    font-weight: 900;
    text-transform: uppercase;
}

.about-hero-description {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--white);
    font-size: 18px;
}

/* =========================================
   The Beginning
========================================= */

.beginning-section {
    padding: 100px 0;
}

.beginning-images {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.beginning-main-image {
    width: 65%;
    overflow: hidden;
}

.beginning-small-images {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.beginning-small-images>div {
    overflow: hidden;
}

.beginning-images img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.beginning-images img:hover {
    transform: scale(1.08);
}

.beginning-main-image img {
    height: 500px;
}

.beginning-small-images img {
    height: 242px;
}

.beginning-content {
    padding-left: 40px;
}


/* =========================================
   From New Orleans to Seattle
========================================= */

.origin-journey {
    padding: 100px 0;
}

.origin-journey-heading {
    max-width: 700px;
    margin: 0 auto 60px;
}

.origin-journey-heading p {
    max-width: 580px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
}


/* Location Cards */
.origin-location {
    height: 100%;
    background: var(--cream);
}

.origin-image {
    height: 430px;
    overflow: hidden;
}

.origin-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.origin-location:hover .origin-image img {
    transform: scale(1.06);
}

/* What We Believe */

.belief-content blockquote {
    margin: 35px 0 0;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 20px;
    line-height: 1.4;
    font-style: italic;
}

.coffee-intention {
    background: #f8f5ef;
    padding: 80px 0;
}

/* Bread + Beignets */

.bread-section {
    padding: 80px 0 100px;
    background: #f5eee3;
}

.bread-image {
    width: 82%;
    height: 410px;
    margin: 0 auto;
    overflow: hidden;
}

.bread-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bread-image:hover img {
    transform: scale(1.05);
}

/* Content Card */
.bread-content {
    position: relative;
    width: 70%;
    margin: -60px auto 0;
    padding: 36px 48px;
    background: var(--white);
    text-align: center;
    z-index: 2;
    box-shadow: 2px 4px 12px #3a17001f;
}

/* Founder / Human Story */

.founder-name {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.founder-name strong {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--cherry);
}

.founder-name span {
    font-size: 14px;
}

/* Our People / Hospitality */

.people-section {
    padding: 80px 0;
    background: var(--cream);
}

.people-image {
    overflow: hidden;
}

.people-image-large {
    height: 450px;
}

.people-image-small {
    height: 450px;
}

.people-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.people-image:hover img {
    transform: scale(1.05);
}

.people-content {
    max-width: 750px;
    margin: 48px auto 0;
}

.people-content p {
    margin: 0;
    font-size: 16px;
}

/* FOUR STORIES, TOLD BY HAND */

.stories-section {
    background: #f4eee5;
    overflow: hidden;
    padding: 100px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 35px;
}

.story-card {
    position: relative;
    background-color: var(--btn-outline);
    box-shadow: 4px 4px 12px #a2978b6b;
}

.story-image {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 16px;
}

.story-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.04);
}

.story-content {
    position: relative;
    padding: 12px 16px;
}

.story-content h4 {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 600;
}

/* SIGNATURE BEIGNET FEATURE */

.beignet-feature {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: #17130f;
}

.beignet-bg,
.beignet-overlay {
    position: absolute;
    inset: 0;
}

.beignet-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.beignet-overlay {
    background: linear-gradient(90deg,
            rgba(15, 11, 8, .88) 0%,
            rgba(15, 11, 8, .62) 45%,
            rgba(15, 11, 8, .25) 100%);
}

.beignet-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 100px 0;
}

.beignet-eyebrow {
    display: block;
    margin-bottom: 25px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: .8;
}

.beignet-content h2 {
    margin: 0;
    font-size: clamp(36px, 4vw, 64px);
    font-weight: 400;
    letter-spacing: 2px;
}

.beignet-content .beignet-highlight {
    margin-top: 12px;
    font-weight: 600;
    font-style: italic;
}

.beignet-content p {
    max-width: 560px;
    margin: 36px 0 24px;
}

.beignet-line {
    display: block;
    width: 60px;
    height: 1px;
    margin-bottom: 20px;
    background: currentColor;
    opacity: .6;
}

.beignet-content em {
    font-size: 18px;
}

.coffee-preserve {
    background-color: var(--btn-outline);
    padding: 100px 0;
}

/* ==============================
   THE SCIENCE OF SLOW
============================== */

.science-slow-section {
    padding: 80px 0;
    background: #eee5d7;
    color: #241d17;
    overflow: hidden;
}

.science-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(36, 29, 23, .25);
    border-bottom: 1px solid rgba(36, 29, 23, .25);
}

.science-item {
    display: flex;
    gap: 24px;
    padding: 40px 28px;
}

.science-item+.science-item {
    border-left: 1px solid rgba(36, 29, 23, .25);
}

.science-item h3 {
    margin: 0 0 12px;
    font-size: 20px;
    letter-spacing: 1px;
}

.science-item p {
    margin: 0;
}

.science-statement {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 950px;
    margin: 64px auto 0;
    text-align: center;
}

.science-statement span {
    flex: 1;
    height: 1px;
    background: rgba(36, 29, 23, .3);
}

.science-statement p {
    margin: 0;
    font-size: clamp(18px, 2vw, 25px);
    letter-spacing: 1px;
    line-height: 1.3;
}

.science-statement em {
    font-weight: 600;
    font-style: italic;
}

/* =================================
   FROM GRAIN TO TABLE
================================= */

.grain-table-section {
    padding: 80px 0;
    background: #f8f3eb;
    color: #241d17;
    overflow: hidden;
}

.grain-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(36, 29, 23, .25);
    border-left: 1px solid rgba(36, 29, 23, .25);
}

.grain-step {
    min-height: 220px;
    padding: 32px;
    display: flex;
    gap: 24px;
    border-right: 1px solid rgba(36, 29, 23, .25);
    border-bottom: 1px solid rgba(36, 29, 23, .25);
    transition: background .3s ease, transform .3s ease;
}

.grain-step:hover {
    background: #eee5d7;
    transform: translateY(-4px);
}

.grain-step-number {
    font-size: 18px;
    letter-spacing: 1px;
    opacity: .55;
}

.grain-step-content h3 {
    margin: 0 0 12px;
    font-size: 24px;
    letter-spacing: 1px;
}

.grain-table-bottom {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 900px;
    margin: 70px auto 0;
    text-align: center;
}

.grain-table-bottom span {
    flex: 1;
    height: 1px;
    background: rgba(36, 29, 23, .25);
}

.grain-table-bottom p {
    margin: 0;
    font-size: 20px;
    letter-spacing: 2px;
}

.grain-table-bottom em {
    font-weight: 600;
    font-style: italic;
}

/* =================================
   SECTION 07 - CLOSING / CTA
================================= */

.daily-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #17130f;
    color: var(--cream);
}

.daily-cta-section::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    top: -180px;
    right: -100px;
    border: 2px solid rgba(247, 240, 229, .12);
    border-radius: 50%;
}

.daily-cta-section::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    bottom: -120px;
    left: -70px;
    border: 2px solid rgba(247, 240, 229, .1);
    border-radius: 50%;
}

.daily-cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

.daily-cta-eyebrow {
    display: block;
    margin-bottom: 24px;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: .65;
}

.daily-cta-content h2 em {
    font-style: italic;
    font-weight: 500;
}

.daily-cta-copy {
    margin: 45px auto 0;
    max-width: 500px;
}

.daily-cta-copy p {
    margin: 4px 0;
    font-size: 18px;
    opacity: .8;
}

.daily-cta-divider {
    width: 60px;
    height: 1px;
    margin: 40px auto;
    background: currentColor;
    opacity: .4;
}

.daily-cta-tagline {
    margin: 0 0 32px;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
}

/* =========================================
   OUR ROASTING PARTNER
========================================= */

.signature-card span.small-text {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--bgColor);
}

.signature-card strong.small-text {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

.signature-card small.small-text {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--cream);
}

.stories-grid-drip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 35px;
}

.daily-drip-closing {
    position: relative;
    padding: 80px 0 80px;
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
}

.closing-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    font-size: clamp(80px, 15vw, 220px);
    line-height: 0.8;
    font-weight: 600;
    letter-spacing: -0.03em;
    text-align: center;
    white-space: nowrap;
    color: rgb(255 255 255 / 15%);
    pointer-events: none;
    user-select: none;
}

.closing-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.closing-title {
    margin: 0 auto;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--white);
}

.closing-title span {
    display: block;
    color: var(--btn-outline);
}

.closing-description {
    max-width: 600px;
    margin: 24px auto 0;
}

.closing-cta-wrap {
    margin-top: 42px;
}

.closing-image-wrap {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    margin: 90px auto 0;
}

.closing-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 7;
    background: #24211d;
}

.closing-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(23, 21, 18, 0.45),
            transparent 60%);
    pointer-events: none;
}

.closing-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 0.88;
    transition:
        transform 0.9s ease,
        opacity 0.5s ease;
}

.closing-image:hover img {
    transform: scale(1.025);
    opacity: 1;
}


/* =========================================================
   THE RITUAL
========================================================= */

.db-ritual-section {
    padding: 100px 0 140px;
}

.db-ritual-section .section-tag {
    color: var(--boxBg);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.db-divider {
    width: 55px;
    height: 1px;
    background: var(--boxBg);
    margin-bottom: 30px;
}

.db-moment {
    position: relative;
    margin-top: 32px;
    padding-left: 24px;
    color: var(--boxBg);
    font-size: 24px;
    font-style: italic;
}

.db-moment::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 2px;
    height: 27px;
    background: var(--boxBg);
}

.db-ritual-image-wrap {
    position: relative;
    overflow: hidden;
}

.db-ritual-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
    filter: saturate(0.88);
    transition: transform 1.2s ease;
}

.db-ritual-image-wrap:hover .db-ritual-image {
    transform: scale(1.025);
}

.banner-topBlog {
    min-height: 11vh;
    background: var(--dark);
}

.science-item-ritual h4 {
    margin: 0 0 12px;
    font-size: 0.80rem;
    letter-spacing: 0.16em;
    color: var(--cherry);
}

.science-item-ritual {
    display: flex;
    gap: 24px;
    padding: 40px 28px;
}

.science-item-ritual+.science-item-ritual {
    border-left: 1px solid rgba(36, 29, 23, .25);
}

.science-item-ritual h3 {
    margin: 0 0 12px;
    font-size: 20px;
    letter-spacing: 1px;
}

.db-pause-line {
    width: 60px;
    height: 1px;
    background: var(--boxBg);
    margin: 38px auto;
}

.ritual-txtsz p {
    font-size: 22px;
    letter-spacing: 1px;
}

.db-story-card {
    height: 100%;
    background: #f2ebe2;
    border: 2px solid #ca8e5329;
    transition: transform .45s ease, box-shadow .45s ease;
}

.db-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(35, 29, 20, .08);
}

.db-story-image {
    position: relative;
    overflow: hidden;
}

.db-story-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    filter: saturate(.85);
    transition: transform .8s ease;
}

.db-story-card:hover .db-story-image img {
    transform: scale(1.045);
}

.db-story-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 11px;
    color: var(--white);
    background: rgba(23, 23, 20, .75);
}

.db-story-content {
    padding: 32px;
}

.db-story-content h3 {
    margin-bottom: 12px;
    font-size: 28px;
}

.db-story-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: .12em;
    transition: gap .3s ease;
    text-transform: uppercase;
}

.db-story-link span {
    color: var(--boxBg);
    font-size: 16px;
}

.db-story-link:hover {
    color: var(--boxBg);
    gap: 18px;
}

.db-journal-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 30px;
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid var(--boxBg);
}

.db-journal-categories span {
    color: var(--dark);
    font-size: 0.85rem;
    letter-spacing: .12em;
    font-weight: 600;
}

.db-explore-wrap {
    text-align: center;
    margin-top: 50px;
}

.db-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 9px;
    color: var(--db-dark);
    border-bottom: 1px solid var(--btn-outline);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: .18em;
    font-weight: 600;
    transition: gap .3s ease;
}

.db-explore-btn span {
    font-size: 17px;
}

.db-explore-btn:hover {
    color: var(--boxBg);
    border-color: var(--boxBg);
    gap: 22px;
}

.db-journal-section {
    padding: 130px 0;
    background: #f4f0e7;
    color: #191916;
}

.db-journal-intro {
    max-width: 350px;
}

.db-journal-intro p {
    margin: 0;

    color: #5a574f;

    font-size: 15px;
    line-height: 1.75;
}

.favorite-image img {
    width: 100%;
    height: 360px;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.favorite-card:hover .favorite-image img {
    transform: scale(1.04);
}