:root {
    --color-navy: #0b1b32;
    --color-deep: #00072d;
    --color-beige: #f9f7f2;
    --color-ivory: #fffdf8;
    --color-gold: #c8a97e;
    --color-text-dark: #333333;
    --color-text-muted: #6d6a64;
    --color-text-light: #ffffff;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background: var(--color-beige);
    color: var(--color-text-dark);
    overflow-x: hidden;
}

a {
    transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

img {
    max-width: 100%;
}

.serif-text,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
}

.top-bar {
    background: var(--color-deep);
    color: var(--color-text-light);
    font-size: 0.58rem;
    letter-spacing: 1px;
    line-height: 1.55;
    padding: 8px 16px;
    text-align: center;
    text-transform: uppercase;
}

.navbar {
    background: var(--color-navy);
    border-bottom: 2px solid rgba(200, 169, 126, 0.22);
    padding: 10px 0;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.25);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.12rem rgba(200, 169, 126, 0.35);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.logo-wrapper {
    align-items: center;
    background: var(--color-beige);
    border: 2px solid var(--color-navy);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.26);
    display: inline-flex;
    height: 75px;
    justify-content: center;
    overflow: hidden;
    width: 200px;
}

.logo-wrapper img {
    height: 138px;
    object-fit: contain;
}

.nav-link {
    color: var(--color-text-light) !important;
    font-size: 0.78rem;
    letter-spacing: 1.2px;
    margin: 0 8px;
    position: relative;
    text-transform: uppercase;
}

.nav-link::after {
    background: var(--color-gold);
    bottom: 0;
    content: '';
    height: 2px;
    left: 50%;
    position: absolute;
    transition: all 0.3s ease;
    width: 0;
}

.nav-link:hover::after,
.nav-link.active::after {
    left: 0;
    width: 100%;
}

.consult-link {
    color: var(--color-gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-decoration: none;
    text-transform: uppercase;
}

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

.section-subtitle {
    color: var(--color-gold);
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-subtitle.micro {
    color: #777;
    font-size: 0.64rem;
}

.section-subtitle.muted {
    color: #777;
}

.section-title {
    color: var(--color-navy);
    font-size: 2.5rem;
    line-height: 1.18;
    margin: 8px 0 0;
}

.section-intro {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    margin: 8px auto 0;
    max-width: 680px;
}

.section-heading-row {
    align-items: flex-end;
    display: flex;
    gap: 28px;
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-side-copy {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
    max-width: 430px;
}

.btn {
    align-items: center;
    border-radius: 0;
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    letter-spacing: 1px;
    min-height: 44px;
    padding: 11px 24px;
    text-transform: uppercase;
}

.btn-outline-gold {
    border: 1px solid var(--color-gold);
    color: var(--color-text-light);
    font-size: 0.78rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn-outline-gold::before {
    background: var(--color-gold);
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
    z-index: -1;
}

.btn-outline-gold:hover {
    border-color: var(--color-gold);
    color: var(--color-navy);
}

.btn-outline-gold:hover::before {
    transform: scaleY(1);
}

.btn-link-gold {
    border-bottom: 1px solid var(--color-gold);
    color: var(--color-navy);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding-bottom: 2px;
    text-decoration: none;
    text-transform: uppercase;
}

.btn-link-gold:hover {
    border-bottom-color: var(--color-navy);
    color: var(--color-gold);
}

.btn-navy {
    background: var(--color-navy);
    border: 1px solid var(--color-navy);
    color: #fff;
    font-size: 0.78rem;
}

.btn-navy:hover {
    background: #081424;
    border-color: #081424;
    color: #fff;
}

.btn-soft {
    background: transparent;
    border: 1px solid rgba(11, 27, 50, 0.25);
    color: var(--color-navy);
    font-size: 0.78rem;
}

.btn-soft:hover {
    border-color: var(--color-gold);
    color: var(--color-navy);
}

.btn-marketplace {
    background: #fff;
    border: 1px solid rgba(11, 27, 50, 0.18);
    color: var(--color-navy);
    font-size: 0.78rem;
}

.btn-marketplace:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

.hero-section {
    background: var(--color-navy);
    color: var(--color-text-light);
}

.hero-text-box {
    min-height: 600px;
    padding: 90px 50px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.16;
    margin-bottom: 22px;
}

.hero-title span {
    color: var(--color-gold);
    font-style: italic;
}

.hero-copy {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 440px;
}

.hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.hero-image {
    background-color: #374760;
    background-position: center;
    background-size: cover;
    height: 100%;
    min-height: 600px;
}

.collection-card {
    align-items: flex-end;
    background-color: #4b5364;
    background-position: center;
    background-size: cover;
    border-radius: 4px;
    color: var(--color-text-light);
    display: flex;
    height: 400px;
    overflow: hidden;
    padding: 20px;
    position: relative;
    text-decoration: none;
}

.collection-card::before,
.intention-card::before,
.intention-list-card::before {
    background: linear-gradient(to bottom, rgba(11, 27, 50, 0.12), rgba(11, 27, 50, 0.86));
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: background 0.35s ease;
    z-index: 1;
}

.collection-card:hover {
    box-shadow: 0 12px 26px rgba(11, 27, 50, 0.35);
    color: #fff;
    transform: translateY(-5px);
}

.card-label {
    background: rgba(11, 27, 50, 0.9);
    border-top: 2px solid var(--color-gold);
    padding: 15px;
    position: relative;
    width: 100%;
    z-index: 2;
}

.card-label span,
.intention-card span,
.intention-link {
    font-size: 0.68rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-card {
    background: transparent;
    margin-bottom: 20px;
    text-align: center;
}

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

.product-img-wrapper {
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
    margin-bottom: 15px;
    overflow: hidden;
    text-decoration: none;
}

.product-img-full {
    background-color: #e3dec9;
    background-position: center;
    background-size: cover;
    display: block;
    height: 350px;
    transition: transform 0.8s ease;
    width: 100%;
}

.product-title {
    color: var(--color-navy);
    font-size: 1.2rem;
    line-height: 1.35;
    margin: 8px 0 6px;
}

.product-card-copy {
    color: var(--color-text-muted);
    font-size: 0.84rem;
    line-height: 1.65;
    min-height: 68px;
}

.product-price {
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.split-text-box,
.split-text-box-light {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    min-height: 520px;
    padding: 80px 60px;
}

.split-text-box {
    background: var(--color-navy);
    color: #fff;
}

.split-text-box-light {
    background: var(--color-beige);
    color: var(--color-navy);
}

.split-title {
    color: #fff;
    font-size: 3rem;
    line-height: 1.18;
    margin: 18px 0 24px;
}

.split-title.dark {
    color: var(--color-navy);
}

.split-copy {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 34px;
}

.split-copy.dark {
    color: var(--color-text-dark);
}

.split-img {
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    width: 100%;
}

.intention-grid {
    background: var(--color-navy);
}

.intention-card {
    background-color: #4b5364;
    background-position: center;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 300px;
    overflow: hidden;
    padding: 52px 22px 30px;
    position: relative;
    text-align: left;
    text-decoration: none;
}

.intention-card h3,
.intention-card p,
.intention-card span {
    position: relative;
    z-index: 2;
}

.intention-card h3 {
    color: #fff;
    font-size: 1.6rem;
}

.intention-card p {
    font-size: 0.82rem;
    margin-bottom: 12px;
}

.intention-card:hover,
.intention-list-card:hover {
    color: #fff;
    transform: scale(1.02);
    z-index: 2;
}

.journal-card {
    color: inherit;
    display: block;
    text-decoration: none;
}

.journal-card:hover {
    color: inherit;
    transform: translateY(-5px);
}

.journal-img-box {
    background-color: #d8d1c1;
    background-position: center;
    background-size: cover;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: block;
    height: 320px;
    margin-bottom: 20px;
}

.journal-img-box.small {
    height: 230px;
}

.journal-title {
    color: var(--color-navy);
    font-size: 1.35rem;
    line-height: 1.4;
}

.journal-card:hover .journal-title {
    color: var(--color-gold);
}

.journal-strip {
    display: flex;
    flex-wrap: wrap;
}

.journal-section {
    padding-left: clamp(1rem, 4vw, 4rem);
    padding-right: clamp(1rem, 4vw, 4rem);
}

.journal-section .section-heading-row {
    margin-bottom: 34px;
}

.journal-section .section-title {
    max-width: 700px;
}

.journal-img-box.img-fluid {
    display: block;
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.page-hero {
    background: var(--color-navy);
    color: #fff;
    padding: 90px 0;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 680px;
}

.page-title {
    color: #fff;
    font-size: 3.2rem;
    line-height: 1.13;
    margin: 12px 0 18px;
}

.page-title.dark {
    color: var(--color-navy);
}

.filter-bar {
    align-items: end;
    background: var(--color-ivory);
    border: 1px solid rgba(11, 27, 50, 0.08);
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr 1.4fr auto;
    margin-bottom: 42px;
    padding: 20px;
}

.filter-bar label {
    color: var(--color-navy);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.form-control,
.form-select {
    border-color: rgba(11, 27, 50, 0.2);
    border-radius: 0;
    min-height: 44px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 0.12rem rgba(200, 169, 126, 0.22);
}

.empty-state {
    background: var(--color-ivory);
    border: 1px solid rgba(11, 27, 50, 0.08);
    padding: 60px 24px;
    text-align: center;
}

.product-detail-hero {
    padding: 55px 0 80px;
}

.breadcrumb-lite {
    align-items: center;
    color: var(--color-text-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.78rem;
    gap: 9px;
    letter-spacing: 0.4px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.breadcrumb-lite a {
    color: var(--color-navy);
    text-decoration: none;
}

.product-main-image {
    aspect-ratio: 1 / 1;
    background-color: #e3dec9;
    background-position: center;
    background-size: cover;
    border-radius: 4px;
    box-shadow: 0 8px 28px rgba(11, 27, 50, 0.16);
}

.product-thumbs {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 14px;
}

.thumb-button {
    background: transparent;
    border: 1px solid rgba(11, 27, 50, 0.12);
    border-radius: 4px;
    padding: 0;
}

.thumb-button span {
    aspect-ratio: 1 / 1;
    background-position: center;
    background-size: cover;
    display: block;
}

.detail-lead {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 620px;
}

.detail-price {
    color: var(--color-navy);
    font-size: 1.45rem;
    font-weight: 600;
    margin: 22px 0;
}

.detail-meta {
    border-bottom: 1px solid rgba(11, 27, 50, 0.12);
    border-top: 1px solid rgba(11, 27, 50, 0.12);
    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
    margin: 24px 0;
}

.detail-meta div {
    border-right: 1px solid rgba(11, 27, 50, 0.12);
    color: var(--color-navy);
    font-size: 0.86rem;
    padding: 18px;
}

.detail-meta div:last-child {
    border-right: 0;
}

.detail-meta span {
    color: var(--color-text-muted);
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.detail-meta a {
    color: var(--color-navy);
    text-decoration: none;
}

.detail-content,
.rich-text {
    color: var(--color-text-dark);
    line-height: 1.9;
}

.detail-content :where(p, ul, ol, blockquote, table),
.rich-text :where(p, ul, ol, blockquote, table),
.rich-text-compact :where(p, ul, ol, blockquote, table) {
    margin-bottom: 1rem;
}

.detail-content :where(img, video, iframe),
.rich-text :where(img, video, iframe),
.rich-text-compact :where(img, video, iframe) {
    height: auto;
    max-width: 100%;
}

.detail-content table,
.rich-text table,
.rich-text-compact table {
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    width: 100%;
}

.detail-content :where(td, th),
.rich-text :where(td, th),
.rich-text-compact :where(td, th) {
    border: 1px solid rgba(11, 27, 50, 0.16);
    padding: 10px 12px;
}

.rich-text-compact {
    max-width: 560px;
}

.rich-text-compact :last-child {
    margin-bottom: 0;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.product-rich-section {
    background: var(--color-ivory);
}

.product-rich-heading {
    margin: 0 auto 32px;
    max-width: 780px;
    text-align: center;
}

.product-rich-heading p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin: 0;
}

.product-rich-content {
    margin: 0 auto;
    max-width: 920px;
}

.page-split-image {
    background-color: #d8d1c1;
    background-position: center;
    background-size: cover;
    min-height: 660px;
}

.page-split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 660px;
    padding: 80px 70px;
}

.contact-panel {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.contact-item {
    align-items: center;
    background: var(--color-ivory);
    border: 1px solid rgba(11, 27, 50, 0.1);
    color: var(--color-navy);
    display: flex;
    gap: 12px;
    padding: 16px 18px;
    text-decoration: none;
}

.contact-item i {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.intention-list-card {
    background-color: #4b5364;
    background-position: center;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 420px;
    overflow: hidden;
    padding: 30px;
    position: relative;
    text-decoration: none;
}

.intention-list-card > * {
    position: relative;
    z-index: 2;
}

.intention-list-card h2 {
    color: #fff;
    font-size: 2rem;
    margin: 10px 0;
}

.article-hero {
    background-color: var(--color-navy);
    background-position: center;
    background-size: cover;
    color: #fff;
    min-height: 520px;
    padding: 170px 0 90px;
    position: relative;
}

.article-hero::before {
    background: linear-gradient(to bottom, rgba(11, 27, 50, 0.25), rgba(11, 27, 50, 0.9));
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.article-hero .container {
    max-width: 820px;
    position: relative;
    z-index: 2;
}

.article-hero h1 {
    font-size: 3.4rem;
    line-height: 1.15;
    margin: 12px 0 18px;
}

.article-hero p {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.8;
}

.article-body {
    max-width: 820px;
    padding-bottom: 80px;
    padding-top: 60px;
}

.footer {
    background: var(--color-navy);
    border-top: 5px solid var(--color-gold);
    color: var(--color-text-light);
    font-size: 0.85rem;
    padding: 60px 0 22px;
}

.footer h2 {
    font-size: 2.2rem;
}

.footer h6 {
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer a {
    color: var(--color-text-light);
    display: block;
    margin-bottom: 10px;
    opacity: 0.82;
    text-decoration: none;
}

.footer a:hover {
    color: var(--color-gold);
    opacity: 1;
    padding-left: 5px;
}

.footer-brand:hover {
    padding-left: 0 !important;
}

.soft-text {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

.footer-copy {
    margin-top: 18px;
    max-width: 320px;
}

.newsletter-form {
    align-items: end;
    display: flex;
    gap: 18px;
}

.newsletter-input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--color-gold);
    color: #fff;
    padding-left: 0;
}

.newsletter-input:focus {
    background: transparent;
    border-bottom: 2px solid var(--color-gold);
    color: #fff;
    box-shadow: none;
}

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

.footer-submit {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--color-gold);
    color: #fff;
    flex: 0 0 auto;
    font-size: 0.78rem;
    letter-spacing: 1px;
    padding: 0 0 8px;
    text-transform: uppercase;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin-top: 20px;
    padding-top: 24px;
}

.wa-float {
    align-items: center;
    background: #25d366;
    border-radius: 50%;
    bottom: 28px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.28);
    color: #fff;
    display: flex;
    font-size: 30px;
    height: 58px;
    justify-content: center;
    position: fixed;
    right: 28px;
    text-decoration: none;
    width: 58px;
    z-index: 100;
}

.wa-float:hover {
    background: #20b858;
    color: #fff;
    transform: translateY(-4px);
}

@media (max-width: 1199.98px) {
    .nav-link {
        margin: 0 3px;
    }

    .hero-title,
    .page-title,
    .article-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 991.98px) {
    .logo-wrapper {
        height: 62px;
        width: 160px;
    }

    .logo-wrapper img {
        height: 112px;
    }

    .navbar-collapse {
        padding: 18px 0 8px;
    }

    .nav-link {
        display: inline-block;
        margin: 4px 0;
    }

    .hero-text-box {
        min-height: auto;
        padding: 70px 28px;
    }

    .hero-image {
        min-height: 420px;
    }

    .filter-bar {
        grid-template-columns: 1fr 1fr;
    }

    .filter-bar .btn {
        grid-column: 1 / -1;
    }

    .page-split-image,
    .page-split-content {
        min-height: auto;
    }

    .page-split-image {
        min-height: 420px;
    }

    .page-split-content {
        padding: 70px 32px;
    }

    .hero-section .row > .col-lg-7 {
        order: -1;
    }

    .hero-section .row > .col-lg-5 {
        order: 0;
    }

    .hero-image {
        min-height: 360px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 58px 0;
    }

    .section-heading-row {
        align-items: flex-start;
        display: block;
    }

    .section-side-copy {
        margin-top: 14px;
    }

    .section-title,
    .split-title {
        font-size: 2.1rem;
    }

    .hero-title,
    .page-title,
    .article-hero h1 {
        font-size: 2.35rem;
    }

    .hero-actions,
    .detail-actions,
    .newsletter-form {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn,
    .detail-actions .btn,
    .newsletter-form .footer-submit {
        width: 100%;
    }

    .hero-section .row > .col-lg-7,
    .hero-section .row > .col-lg-5 {
        order: initial;
    }

    .hero-image {
        min-height: 300px;
    }

    .hero-text-box {
        padding-top: 34px;
    }

    .top-bar {
        font-size: 0.52rem;
        padding: 7px 14px;
    }

    .nav-link {
        font-size: 0.72rem;
        letter-spacing: 1px;
    }

    .collection-card {
        height: 310px;
    }

    .product-img-full {
        height: 310px;
    }

    .split-text-box,
    .split-text-box-light {
        min-height: auto;
        padding: 58px 28px;
    }

    .split-img {
        min-height: 360px;
    }

    .page-hero {
        padding: 70px 0;
    }

    .page-title,
    .article-hero h1 {
        line-height: 1.08;
    }

    .section-title {
        line-height: 1.12;
    }

    .filter-bar {
        grid-template-columns: 1fr;
    }

    .detail-meta {
        grid-template-columns: 1fr;
    }

    .detail-meta div {
        border-bottom: 1px solid rgba(11, 27, 50, 0.12);
        border-right: 0;
    }

    .detail-meta div:last-child {
        border-bottom: 0;
    }

    .product-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .article-hero {
        min-height: 420px;
        padding: 120px 0 70px;
    }

    .page-split-image {
        min-height: 320px;
    }

    .product-detail-hero {
        padding: 34px 0 64px;
    }

    .product-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }

    .journal-strip {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        padding-left: 0.1rem;
        padding-right: 0.1rem;
        scroll-snap-type: x mandatory;
    }

    .journal-strip > [class*="col-"] {
        flex: 0 0 86%;
        max-width: 86%;
        scroll-snap-align: start;
    }

    .journal-strip::-webkit-scrollbar {
        display: none;
    }

    .detail-price {
        font-size: 1.25rem;
    }

    .journal-img-box {
        height: 240px;
    }

    .journal-img-box.small {
        height: 200px;
    }

    .journal-section {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .container,
    .container-fluid {
        --bs-gutter-x: 1.25rem;
    }

    .hero-text-box {
        padding: 56px 22px;
    }

    .hero-image {
        min-height: 330px;
    }

    .hero-title,
    .page-title,
    .article-hero h1 {
        font-size: 2rem;
    }

    .section-title,
    .split-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        letter-spacing: 1.2px;
    }

    .hero-copy,
    .split-copy,
    .detail-lead,
    .section-intro,
    .page-hero p {
        font-size: 0.88rem;
        line-height: 1.75;
    }

    .product-title,
    .journal-title {
        font-size: 1.1rem;
    }

    .collection-card,
    .intention-card,
    .intention-list-card {
        border-radius: 6px;
    }

    .page-split-content {
        padding: 58px 24px;
    }

    .page-split-image {
        min-height: 280px;
    }

    .hero-actions {
        gap: 12px;
    }

    .journal-img-box.img-fluid {
        height: 220px;
    }

    .wa-float {
        bottom: 18px;
        height: 52px;
        right: 18px;
        width: 52px;
    }
}

@media (max-width: 420px) {
    .navbar .container-fluid {
        padding-left: 14px;
        padding-right: 14px;
    }

    .logo-wrapper {
        width: 140px;
    }

    .logo-wrapper img {
        height: 100px;
    }

    .hero-text-box {
        padding: 48px 18px 32px;
    }

    .split-text-box,
    .split-text-box-light,
    .page-split-content {
        padding-left: 18px;
        padding-right: 18px;
    }

    .journal-strip > [class*="col-"] {
        flex-basis: 90%;
        max-width: 90%;
    }

    .journal-section {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }

    .product-img-full {
        height: 280px;
    }

    .collection-card {
        height: 280px;
    }

    .detail-meta div {
        padding: 14px;
    }
}
