/* ==========================================================
   CALIBRE JOURNAL — HOMEPAGE V2
========================================================== */

body {
    background: #f5f2eb;
    color: #1d1d1d;
}


/* ==========================================================
   HERO
========================================================== */

.cj-hero {
    background: #f5f2eb;
}

.cj-container {
    width: min(1720px, 92%);
    margin: 0 auto;
}

.cj-hero-grid {
    min-height: 520px;

    display: grid;
    grid-template-columns: 42% 58%;

    overflow: visible;
}

.cj-hero-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 55px 50px 55px 0;
}

.cj-kicker {
    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #59684f;
}

.cj-hero h1 {
    margin: 0 0 22px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 4vw, 76px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -2px;

    color: #1d1d1d;
}

.cj-hero p {
    max-width: 520px;
    margin: 0 0 30px;

    font-size: 16px;
    line-height: 1.75;

    color: #5f5b55;
}


/* ==========================================================
   HERO BUTTONS
========================================================== */

.cj-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cj-btn-primary,
.cj-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 22px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;

    transition: 0.2s ease;
}

.cj-btn-primary {
    background: #46523d;
    color: #fff;
}

.cj-btn-primary:hover {
    background: #343e2e;
}

.cj-btn-secondary {
    border: 1px solid #c9c4ba;
    color: #333;
}

.cj-btn-secondary:hover {
    border-color: #46523d;
    color: #46523d;
}


/* ==========================================================
   HERO IMAGE
========================================================== */

.cj-hero-image {
    position: relative;
    min-width: 0;

    width: 100%;
}

.cj-hero-image img {
    width: 100%;
    height: 520px;

    display: block;
    object-fit: cover;
}

/* Soft editorial transition into the image */

.cj-hero-image::before {
    content: "";

    position: absolute;
    z-index: 1;
    inset: 0 auto 0 0;

    width: 22%;

    background: linear-gradient(
        90deg,
        #f5f2eb 0%,
        rgba(245, 242, 235, 0.8) 25%,
        rgba(245, 242, 235, 0) 100%
    );

    pointer-events: none;
}

/* ==========================================================
   FEATURED / START YOUR SEARCH
========================================================== */

.cj-featured {
    padding: 30px 0 35px;
    background: #f5f2eb;
}

.cj-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 24px;
}

.cj-section-kicker {
    display: block;
    margin-bottom: 7px;

    color: #59684f;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.cj-section-header h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.1;

    color: #1d1d1d;
}

.cj-section-link {
    position: relative;

    padding-bottom: 5px;

    color: #46523d;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-decoration: none;
    text-transform: uppercase;
}

.cj-section-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: #46523d;

    transform-origin: left;
    transition: transform 0.25s ease;
}

.cj-section-link:hover::after {
    transform: scaleX(0.55);
}


/* ==========================================================
   FEATURED GRID
========================================================== */

.cj-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.cj-feature-card {
    min-width: 0;

    background: #fff;

    border: 1px solid #ded8cd;

    overflow: hidden;
}

.cj-feature-card-link {
    display: flex;
    flex-direction: column;

    height: 100%;

    color: inherit;
    text-decoration: none;
}


/* ==========================================================
   FEATURED IMAGES
========================================================== */

.cj-feature-image {
    height: 260px;

    overflow: hidden;
}

.cj-feature-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.cj-feature-card:hover .cj-feature-image img {
    transform: scale(1.035);
}


/* ==========================================================
   FEATURED CONTENT
========================================================== */

.cj-feature-content {
    display: flex;
    flex: 1;
    flex-direction: column;

    padding: 22px 22px 20px;
}

.cj-feature-label {
    margin-bottom: 10px;

    color: #a27b32;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.cj-feature-content h3 {
    margin: 0 0 12px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.08;

    color: #1d1d1d;
}

.cj-feature-content p {
    margin: 0 0 22px;

    color: #69645c;

    font-size: 13px;
    line-height: 1.55;
}

.cj-feature-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;
    margin-top: auto;
    padding: 10px 14px;

    background: #46523d;
    color: #ffffff;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;

    transition: background 0.2s ease;
}

.cj-feature-card:hover .cj-feature-cta {
    background: #343e2e;
}


/* ==========================================================
   FEATURED RESPONSIVE
========================================================== */

@media (max-width: 1100px) {

    .cj-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .cj-featured {
        padding: 40px 0 60px;
    }

    .cj-featured-grid {
        grid-template-columns: 1fr;
    }

    .cj-section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .cj-feature-image {
        height: 300px;
    }

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 900px) {

    .cj-hero-grid {
        grid-template-columns: 1fr;
    }

    .cj-hero-content {
        padding: 60px 0 45px;
    }

    .cj-hero-image img {
        height: 420px;
    }

    .cj-hero-image::before {
        display: none;
    }

}

@media (max-width: 600px) {

    .cj-hero h1 {
        font-size: 48px;
    }

    .cj-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .cj-btn-primary,
    .cj-btn-secondary {
        width: 100%;
    }

}

/* ==========================================
   HEADER V2
========================================== */

.cj-header {
    background: #f8f5ef;
    border-bottom: 1px solid #d9cfbf;
    position: sticky;
    top: 0;
    z-index: 999;
}

.cj-header-inner {
    width: min(1380px, 94%);
    height: 92px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 300px 1fr 300px;
    align-items: center;
}

.cj-logo {
    text-decoration: none;
    color: #222;
    justify-self: start;
}

.cj-logo-main {
    display: block;
    font-family: Georgia, serif;
    font-size: 42px;
    letter-spacing: 5px;
    line-height: 1;
}

.cj-logo-sub {
    display: block;
    color: #b38b3c;
    letter-spacing: 8px;
    font-size: 12px;
    margin-top: 6px;
}

.cj-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    white-space: nowrap;
}

.cj-nav a {
    color: #222;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cj-nav a:hover {
    color: var(--olive);
}

.cj-feature-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cj-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(29, 29, 29, 0.08);
}

.cj-feature-cta {
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.cj-feature-cta:hover {
    background-color: #59684f;
    transform: translateY(-1px);
}

/* ==========================================================
   JOURNAL PROMO
========================================================== */

.cj-journal-promo {
    padding: 0 0 55px;
    background: #f5f2eb;
}

.cj-journal-promo-card {
    display: grid;
    grid-template-columns: 40% 60%;

    height: 300px;

    background: #e9e6dc;
    border: 1px solid #ddd8cc;
    border-radius: 10px;

    overflow: hidden;
}

.cj-journal-promo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 42px 48px;
}

.cj-journal-promo-label {
    margin-bottom: 10px;

    color: #59684f;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.cj-journal-promo-content h2 {
    margin: 0 0 14px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.08;

    color: #1d1d1d;
}

.cj-journal-promo-content p {
    max-width: 340px;
    margin: 0 0 24px;

    color: #69645c;

    font-size: 13px;
    line-height: 1.6;
}

.cj-journal-promo-button {
    align-self: flex-start;

    padding: 13px 18px;

    background: #46523d;
    color: #fff;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-decoration: none;
}

.cj-journal-promo-image {
    position: relative;
    min-width: 0;
    min-height: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cj-journal-promo-image img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
    object-position: center;
}

.cj-journal-promo-image::before {
    content: "";
    position: absolute;
    z-index: 1;

    top: 0;
    bottom: 0;
    left: 0;

    width: 100px;

    background: linear-gradient(
        to right,
        #e9e6dc 0%,
        rgba(233, 230, 220, 0.55) 35%,
        rgba(233, 230, 220, 0) 100%
    );

    pointer-events: none;
}
/* ==========================================================
   FOOTER
========================================================== */

.cj-footer {
    padding: 60px 0 28px;

    background: #1f251d;
    color: #f5f2eb;
}

.cj-footer-main {
    display: flex;
    justify-content: space-between;
    gap: 80px;

    padding-bottom: 55px;
}

.cj-footer-brand {
    max-width: 360px;
}

.cj-footer-logo {
    display: inline-block;

    color: #f5f2eb;
    text-decoration: none;
}

.cj-footer-logo span {
    display: block;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    letter-spacing: 4px;
}

.cj-footer-logo small {
    display: block;

    margin-top: 6px;

    color: #b38b3c;

    font-size: 9px;
    letter-spacing: 6px;
}

.cj-footer-brand p {
    margin: 24px 0 0;

    color: rgba(245, 242, 235, 0.65);

    font-size: 13px;
    line-height: 1.7;
}

.cj-footer-nav {
    display: flex;
    gap: 90px;
}

.cj-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.cj-footer-column > span {
    margin-bottom: 7px;

    color: #b38b3c;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.cj-footer-column a {
    color: rgba(245, 242, 235, 0.78);

    font-size: 13px;
    text-decoration: none;

    transition: color 0.2s ease;
}

.cj-footer-column a:hover {
    color: #ffffff;
}

.cj-footer-bottom {
    display: flex;
    justify-content: space-between;

    padding-top: 22px;

    border-top: 1px solid rgba(245, 242, 235, 0.15);
}

.cj-footer-bottom p {
    margin: 0;

    color: rgba(245, 242, 235, 0.45);

    font-size: 10px;
}


/* FOOTER RESPONSIVE */

@media (max-width: 700px) {

    .cj-footer-main {
        flex-direction: column;
        gap: 45px;
    }

    .cj-footer-nav {
        gap: 55px;
    }

    .cj-footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

}
/* ==========================================================
   ABOUT PAGE
========================================================== */

.cj-about {
    background: #f5f2eb;
}

/* HERO */

.cj-about-hero {
    padding: 65px 0 65px;
    background: #f5f2eb;
}

.cj-about-intro {
    max-width: 1050px;
}

.cj-about-intro h1 {
    max-width: 850px;
    margin: 14px 0 24px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 68px;
    font-weight: 400;
    line-height: 0.98;

    color: #1d1d1d;
}

.cj-about-lead {
    max-width: 760px;
    margin: 0;

    color: #69645c;
    font-size: 15px;
    line-height: 1.7;
}


/* STORY SECTION */

.cj-about-story {
    padding: 70px 0;
    background: #46523d;
}

.cj-about-story-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 40px;
    align-items: start;
}

.cj-about-story .cj-section-kicker {
    color: #d0a447;
}

.cj-about-story h2 {
    margin: 14px 0 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.1;

    color: #f5f2eb;
}

.cj-about-copy {
    max-width: 650px;
}

.cj-about-copy p {
    margin: 0 0 20px;

    color: rgba(245, 242, 235, 0.78);
    font-size: 14px;
    line-height: 1.8;
}

.cj-about-copy p:last-child {
    margin-bottom: 0;
}


/* RESPONSIVE */

@media (max-width: 800px) {

    .cj-about-hero {
        padding: 60px 0;
    }

    .cj-about-intro h1 {
        font-size: 48px;
    }

    .cj-about-story-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}
/* ==========================================
   MOBILE
========================================== */

@media (max-width: 900px) {

    .cj-header {
        position: relative;
    }

    .cj-header-inner {
        width: 100%;
        height: auto;

        display: flex;
        flex-direction: column;

        padding: 18px 20px;
        gap: 18px;
    }

    .cj-logo {
        align-self: center;
    }

    .cj-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .cj-nav a {
        font-size: 13px;
    }

}