:root {
    --primary-bg: #F9F6F0;
    --secondary-bg: #F3EFE6;
    --text-light: #1A1A18;
    --text-muted: #5C5852;
    --accent-terracotta: #C97A64;
    --accent-olive: #7D846C;
    --accent-sand-dark: #D4C3B3;
    --border-color: #E5DEC9;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

.text-muted {
    color: var(--text-muted) !important;
}

.site-body-layout {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-light);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.site-body-layout *,
.site-body-layout *::before,
.site-body-layout *::after {
    box-sizing: inherit;
}

.site-body-layout a {
    color: inherit;
    text-decoration: none;
    transition: color 0.4s ease, border-color 0.4s ease;
}

.site-body-layout h1,
.site-body-layout h2,
.site-body-layout h3,
.site-body-layout h4,
.site-body-layout h5,
.site-body-layout h6 {
    font-family: var(--font-heading);
    font-weight: 300;
    letter-spacing: -0.02em;
}

/* ===== header ===== */
.repeatwise-header {
    background-color: #F9F6F0;
    border-bottom: 1px solid #E5DEC9;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.repeatwise-header .navbar {
    padding: 1.25rem 0;
    background-color: #F9F6F0 !important;
}

.repeatwise-header .repeatwise-brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 1.3rem;
    color: #1A1A18;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.4s ease;
}

.repeatwise-header .repeatwise-brand:hover {
    color: #A6523C;
}

.repeatwise-header .repeatwise-logo-img {
    max-width: 40px;
    height: auto;
    margin-right: 0.75rem;
    object-fit: contain;
}

.repeatwise-header .nav-link {
    color: #423F3A;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.4s ease;
}

.repeatwise-header .nav-link:hover {
    color: #A6523C;
}

.repeatwise-header .repeatwise-cta-btn {
    background-color: transparent;
    border: 1px solid #A6523C;
    color: #A6523C;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
    transition: all 0.4s ease;
}

.repeatwise-header .repeatwise-cta-btn:hover {
    background-color: #A6523C;
    color: #FFFFFF;
}

.repeatwise-header .repeatwise-toggler {
    border: 1px solid #E5DEC9;
    padding: 0.5rem;
    border-radius: 0;
}

.repeatwise-header .repeatwise-toggler:focus {
    box-shadow: none;
    border-color: #A6523C;
}

@media (min-width: 992px) {
    .repeatwise-header .repeatwise-brand {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1010;
    }

    .repeatwise-header .repeatwise-nav-left {
        padding-right: 140px;
    }

    .repeatwise-header .repeatwise-nav-right {
        padding-left: 140px;
    }
}

@media (max-width: 991.98px) {
    .repeatwise-header .repeatwise-brand {
        margin-right: auto !important;
    }

    .repeatwise-header .repeatwise-collapse {
        background-color: #F9F6F0;
        width: 100%;
        padding: 1.5rem 1rem;
        border-top: 1px solid #E5DEC9;
        margin-top: 0.75rem;
    }

    .repeatwise-header .navbar-nav {
        align-items: flex-start !important;
        width: 100%;
    }

    .repeatwise-header .nav-item {
        width: 100%;
        border-bottom: 1px solid #F3EFE6;
    }

    .repeatwise-header .nav-link {
        padding: 0.75rem 0 !important;
        display: block;
    }

    .repeatwise-header .repeatwise-cta-item {
        border-bottom: none;
        margin-top: 1rem;
    }

    .repeatwise-header .repeatwise-cta-btn {
        display: block;
        text-align: center;
        width: 100%;
    }
}

/* ===== hero ===== */
.repeatwise-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 0;
    background-color: #1A1A18;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.repeatwise-hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.repeatwise-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.repeatwise-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 26, 24, 0.75) 0%, rgba(26, 26, 24, 0.9) 100%);
}

.repeatwise-hero-wordmark {
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14vw;
    font-weight: 300;
    color: rgba(201, 122, 100, 0.04);
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
}

.repeatwise-hero-container {
    position: relative;
    z-index: 3;
}

.repeatwise-hero-content {
    text-align: center;
}

.repeatwise-hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #C97A64;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.repeatwise-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 3.75rem;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.repeatwise-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #D1CFC9;
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.repeatwise-hero-btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.repeatwise-hero-btn {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 1rem 2rem;
    border-radius: 0;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.repeatwise-hero-btn-primary {
    background-color: #C97A64;
    color: #FFFFFF;
    border: 1px solid #C97A64;
}

.repeatwise-hero-btn-primary:hover {
    background-color: #b56b56;
    border-color: #b56b56;
    color: #FFFFFF;
}

.repeatwise-hero-btn-secondary {
    background-color: #7D846C;
    color: #FFFFFF;
    border: 1px solid #7D846C;
}

.repeatwise-hero-btn-secondary:hover {
    background-color: #6c735d;
    border-color: #6c735d;
    color: #FFFFFF;
}

.repeatwise-hero-btn-outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #E5DEC9;
}

.repeatwise-hero-btn-outline:hover {
    background-color: #E5DEC9;
    color: #1A1A18;
    border-color: #E5DEC9;
}

.repeatwise-hero-side-label {
    position: absolute;
    z-index: 3;
    bottom: 10%;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #D1CFC9;
    opacity: 0.6;
    pointer-events: none;
    display: none;
}

@media (min-width: 992px) {
    .repeatwise-hero-side-label {
        display: block;
    }

    .repeatwise-hero-side-left {
        left: 4%;
        transform: rotate(-90deg);
        transform-origin: left bottom;
    }

    .repeatwise-hero-side-right {
        right: 4%;
        transform: rotate(90deg);
        transform-origin: right bottom;
    }
}

.repeatwise-hero-controls {
    position: absolute;
    bottom: 4%;
    right: 4%;
    z-index: 3;
}

.repeatwise-hero-control-btn {
    background: transparent;
    border: 1px solid rgba(229, 222, 201, 0.4);
    color: #FFFFFF;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.repeatwise-hero-control-btn:hover {
    background: #FFFFFF;
    color: #1A1A18;
    border-color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .repeatwise-hero {
        padding: 5rem 0;
    }

    .repeatwise-hero-title {
        font-size: 18px !important;
        hyphens: auto;
    }

    .repeatwise-hero-subtitle {
        font-size: 14px !important;
        margin-bottom: 2rem;
    }

    .repeatwise-hero-btn-group {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .repeatwise-hero-btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.8rem;
    }

    .repeatwise-hero-controls {
        bottom: 2%;
        right: 50%;
        transform: translateX(50%);
    }
}

/* ===== support_info ===== */
.repeatwise-support {
    background-color: #F9F6F0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1A1A18;
}

.repeatwise-support .support-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: #7D846C;
    font-weight: 600;
}

.repeatwise-support .support-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1A1A18;
}

.repeatwise-support .support-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #5C5852;
}

.repeatwise-support .border-top {
    border-top: 1px solid #E5DEC9 !important;
}

.repeatwise-support .contact-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F3EFE6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C97A64;
    border: 1px solid #E5DEC9;
    font-size: 0.95rem;
}

.repeatwise-support .contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #7D846C;
    font-weight: 600;
}

.repeatwise-support .contact-link {
    font-size: 1rem;
    color: #1A1A18;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.repeatwise-support .contact-link:hover {
    color: #C97A64;
}

.repeatwise-support .contact-text {
    font-size: 1rem;
    color: #1A1A18;
    font-weight: 500;
}

.repeatwise-support .support-card {
    background-color: #F3EFE6;
    border: 1px solid #E5DEC9;
    border-radius: 0;
}

.repeatwise-support .support-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: #1A1A18;
}

.repeatwise-support .support-card-text {
    font-size: 0.95rem;
    color: #5C5852;
    line-height: 1.6;
}

.repeatwise-support .urgency-btn {
    background-color: transparent;
    border: 1px solid #E5DEC9;
    color: #1A1A18;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.repeatwise-support .urgency-btn:hover {
    background-color: #E5DEC9;
    color: #1A1A18;
}

.repeatwise-support .urgency-btn.active {
    background-color: #7D846C;
    color: #FFFFFF;
    border-color: #7D846C;
}

.repeatwise-support .response-info-box {
    background-color: #F9F6F0;
    border-left: 3px solid #C97A64;
    border-top: 1px solid #E5DEC9;
    border-right: 1px solid #E5DEC9;
    border-bottom: 1px solid #E5DEC9;
}

.repeatwise-support .response-time-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #5C5852;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.repeatwise-support .response-time-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #C97A64;
}

.repeatwise-support .response-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #5C5852;
    margin-bottom: 0;
}

.repeatwise-support .hours-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #7D846C;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.repeatwise-support .hours-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1A1A18;
}

@media (max-width: 767.98px) {
    .repeatwise-support .support-title {
        font-size: 1.8rem;
    }

    .repeatwise-support .support-card-title {
        font-size: 1.5rem;
    }
}

/* ===== calculator ===== */
.repeatwise-calculator {
    background-color: #F9F6F0;
    padding: 8rem 0;
    color: #1A1A18;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.repeatwise-calculator .calc-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: #7D846C;
    font-weight: 600;
}

.repeatwise-calculator .calc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.75rem;
    font-weight: 300;
    line-height: 1.2;
    color: #1A1A18;
}

.repeatwise-calculator .calc-desc {
    color: #5C5852;
    font-size: 1.05rem;
    line-height: 1.6;
}

.repeatwise-calculator .calc-inputs-wrapper {
    background-color: #F3EFE6;
    border: 1px solid #E5DEC9;
    border-radius: 0;
}

.repeatwise-calculator .form-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #5C5852;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.repeatwise-calculator .form-control,
.repeatwise-calculator .form-select {
    background-color: #F9F6F0;
    border: 1px solid #E5DEC9;
    border-radius: 0;
    color: #1A1A18;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.repeatwise-calculator .form-control:focus,
.repeatwise-calculator .form-select:focus {
    background-color: #F9F6F0;
    border-color: #C97A64;
    box-shadow: none;
    color: #1A1A18;
}

.repeatwise-calculator .form-control::placeholder {
    color: #A09B93;
}

.repeatwise-calculator .calc-form {
    background-color: #F3EFE6;
    border: 1px solid #E5DEC9;
    height: 100%;
}

.repeatwise-calculator .calc-results-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #1A1A18;
    border-bottom: 1px solid #E5DEC9;
    padding-bottom: 1rem;
}

.repeatwise-calculator .calc-result-row {
    border-bottom: 1px dashed #E5DEC9;
}

.repeatwise-calculator .calc-result-label {
    font-size: 0.95rem;
    color: #5C5852;
}

.repeatwise-calculator .calc-result-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #C97A64;
}

.repeatwise-calculator .calc-results-note {
    font-size: 0.8rem;
    color: #7D846C;
    line-height: 1.4;
    margin-top: 1rem;
}

.repeatwise-calculator .calc-lead-capture {
    border-top: 1px solid #E5DEC9;
}

.repeatwise-calculator .calc-capture-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #1A1A18;
}

.repeatwise-calculator .btn-calc-submit {
    background-color: #C97A64;
    color: #FFFFFF;
    border: 1px solid #C97A64;
    border-radius: 0;
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
}

.repeatwise-calculator .btn-calc-submit:hover {
    background-color: #B26550;
    border-color: #B26550;
    color: #FFFFFF;
}

@media (max-width: 991.98px) {
    .repeatwise-calculator {
        padding: 5rem 0;
    }

    .repeatwise-calculator .calc-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .repeatwise-calculator .calc-title {
        font-size: 16px !important;
        hyphens: auto;
    }

    .repeatwise-calculator .calc-results-heading {
        font-size: 14px !important;
        hyphens: auto;
    }

    .repeatwise-calculator .calc-capture-title {
        font-size: 14px !important;
        hyphens: auto;
    }
}

/* ===== tools_used ===== */
.tools-used-section {
    background-color: #F9F6F0;
    padding: 8rem 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.tools-used-section .text-accent {
    color: #C97A64;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}

.tools-used-section .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    color: #1A1A18;
    font-size: 2.75rem;
    line-height: 1.2;
}

.tools-used-section .section-subtitle {
    color: #5C5852;
    font-size: 1.1rem;
    line-height: 1.6;
}

.tools-used-section .filter-btn {
    background-color: transparent;
    border: 1px solid #E5DEC9;
    color: #1A1A18;
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.4s ease;
    margin: 0.25rem;
    font-weight: 500;
}

.tools-used-section .filter-btn:hover,
.tools-used-section .filter-btn.active {
    background-color: #7D846C;
    color: #FFFFFF;
    border-color: #7D846C;
}

.tools-used-section .tool-card {
    background-color: #F3EFE6;
    border: 1px solid #E5DEC9;
    padding: 2.5rem 2rem;
    transition: transform 0.4s ease, border-color 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tools-used-section .tool-card:hover {
    border-color: #C97A64;
}

.tools-used-section .tool-category-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #7D846C;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tools-used-section .tool-icon-wrapper {
    color: #C97A64;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.tools-used-section .tool-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #1A1A18;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.tools-used-section .tool-description {
    color: #5C5852;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .tools-used-section {
        padding: 5rem 0;
    }

    .tools-used-section .section-title {
        font-size: 2rem;
    }

    .tools-used-section .tool-card {
        padding: 2rem 1.5rem;
    }
}

/* ===== timeline ===== */
.repeatwise-timeline {
    background-color: #F9F6F0;
    padding-top: 8rem;
    padding-bottom: 8rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1A1A18;
}

.repeatwise-timeline .timeline-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: #7D846C;
    letter-spacing: 0.15em;
    display: inline-block;
}

.repeatwise-timeline .timeline-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 2.5rem;
    color: #1A1A18;
}

.repeatwise-timeline .timeline-description {
    font-size: 1.1rem;
    color: #5C5852;
    line-height: 1.6;
}

.repeatwise-timeline .timeline-tab-btn {
    background-color: transparent;
    border: 1px solid #E5DEC9;
    color: #5C5852;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
    transition: all 0.4s ease;
}

.repeatwise-timeline .timeline-tab-btn:hover {
    background-color: #F3EFE6;
    border-color: #C97A64;
    color: #1A1A18;
}

.repeatwise-timeline .timeline-tab-btn.active {
    background-color: #C97A64;
    border-color: #C97A64;
    color: #FFFFFF;
}

.repeatwise-timeline .timeline-card {
    background-color: #F3EFE6;
    border: 1px solid #E5DEC9;
    padding: 2.5rem;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.repeatwise-timeline .timeline-card:hover {
    border-color: #C97A64;
}

.repeatwise-timeline .timeline-phase-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #C97A64;
    line-height: 1;
}

.repeatwise-timeline .timeline-phase-badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    background-color: #E5DEC9;
    color: #1A1A18;
    letter-spacing: 0.05em;
}

.repeatwise-timeline .timeline-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #1A1A18;
}

.repeatwise-timeline .timeline-card-desc {
    font-size: 0.95rem;
    color: #5C5852;
    line-height: 1.5;
}

.repeatwise-timeline .timeline-steps-list {
    border-top: 1px solid #E5DEC9;
    padding-top: 1.5rem;
}

.repeatwise-timeline .step-icon-wrapper {
    color: #7D846C;
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    margin-top: 0.2rem;
}

.repeatwise-timeline .step-date {
    font-size: 0.85rem;
    color: #C97A64;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.repeatwise-timeline .step-text {
    font-size: 0.9rem;
    color: #1A1A18;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .repeatwise-timeline {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .repeatwise-timeline .timeline-title {
        font-size: 2rem;
    }

    .repeatwise-timeline .timeline-card {
        padding: 1.5rem;
    }
}

/* ===== terms_info ===== */
.terms-info-section {
    background-color: #F9F6F0;
    padding: 8rem 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1A1A18;
}

.terms-info-section .terms-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: #7D846C;
    font-weight: 600;
}

.terms-info-section .terms-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 2.5rem;
    color: #1A1A18;
}

.terms-info-section .terms-lead {
    font-size: 1.1rem;
    color: #5C5852;
    line-height: 1.6;
}

.terms-info-section .terms-tab-btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1A1A18;
    background-color: #F3EFE6;
    border: 1px solid #E5DEC9;
    padding: 0.6rem 1.8rem;
    border-radius: 0;
    transition: all 0.4s ease;
}

.terms-info-section .terms-tab-btn:hover {
    background-color: #D4C3B3;
    color: #1A1A18;
    border-color: #D4C3B3;
}

.terms-info-section .terms-tab-btn.active {
    background-color: #C97A64;
    color: #FFFFFF;
    border-color: #C97A64;
}

.terms-info-section .terms-card {
    background-color: #F3EFE6;
    border: 1px solid #E5DEC9;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.terms-info-section .terms-card:hover {
    border-color: #C97A64;
    transform: translateY(-2px);
}

.terms-info-section .terms-card-icon {
    font-size: 1.8rem;
    color: #C97A64;
    margin-bottom: 1.5rem;
}

.terms-info-section .terms-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #1A1A18;
    margin-bottom: 1rem;
}

.terms-info-section .terms-card-text {
    font-size: 0.95rem;
    color: #5C5852;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .terms-info-section {
        padding: 4rem 0;
    }

    .terms-info-section .terms-title {
        font-size: 2rem;
    }
}

/* ===== cases_grid ===== */
.cases-grid-section {
    background-color: #F9F6F0;
    padding: 6rem 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cases-grid-section .small-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: #7D846C;
    letter-spacing: 0.1em;
}

.cases-grid-section .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 2.5rem;
    color: #1A1A18;
}

.cases-grid-section .section-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #5C5852;
}

.cases-grid-section .search-wrapper {
    min-width: 240px;
}

.cases-grid-section .search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7D846C;
    pointer-events: none;
}

.cases-grid-section .js-search-input,
.cases-grid-section .js-author-select {
    background-color: #FFFFFF;
    border: 1px solid #E5DEC9;
    color: #1A1A18;
    border-radius: 0;
    padding: 10px 15px;
    font-size: 0.95rem;
    height: 46px;
    transition: border-color 0.3s ease;
}

.cases-grid-section .js-search-input:focus,
.cases-grid-section .js-author-select:focus {
    border-color: #C97A64;
    box-shadow: none;
    outline: none;
}

.cases-grid-section .js-search-input::placeholder {
    color: #A09C96;
}

.cases-grid-section .case-card {
    background-color: #FFFFFF;
    border: 1px solid #E5DEC9;
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.cases-grid-section .case-card:hover {
    border-color: #C97A64;
}

.cases-grid-section .case-img-link {
    display: block;
    height: 200px;
    position: relative;
}

.cases-grid-section .case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cases-grid-section .case-card:hover .case-img {
    transform: scale(1.04);
}

.cases-grid-section .case-meta {
    font-size: 0.8rem;
    font-weight: 500;
}

.cases-grid-section .case-author {
    color: #7D846C;
}

.cases-grid-section .case-date {
    color: #5C5852;
}

.cases-grid-section .case-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.35rem;
    line-height: 1.3;
}

.cases-grid-section .case-title a {
    color: #1A1A18;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cases-grid-section .case-title a:hover {
    color: #C97A64;
}

.cases-grid-section .case-excerpt {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #5C5852;
}

.cases-grid-section .btn-outline-custom {
    border: 1px solid #1A1A18;
    color: #1A1A18;
    background-color: transparent;
    border-radius: 0;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.cases-grid-section .btn-outline-custom:hover {
    background-color: #1A1A18;
    color: #FFFFFF;
}

.cases-grid-section .btn-primary-custom {
    background-color: #C97A64;
    color: #FFFFFF;
    border: 1px solid #C97A64;
    border-radius: 0;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.cases-grid-section .btn-primary-custom:hover {
    background-color: #b06752;
    border-color: #b06752;
    color: #FFFFFF;
}

.cases-grid-section .no-results-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: #1A1A18;
    margin-top: 1rem;
}

.cases-grid-section .no-results-desc {
    color: #5C5852;
}

.cases-grid-section .text-muted-custom {
    color: #D4C3B3;
}

@media (max-width: 767.98px) {
    .cases-grid-section {
        padding: 4rem 0;
    }

    .cases-grid-section .section-title {
        font-size: 2rem;
    }
}

/* ===== decisions_grid ===== */
.decisions-grid-section {
    background-color: #F9F6F0;
    color: #1A1A18;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.decisions-grid-section .decisions-section-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: #C97A64;
    font-weight: 600;
}

.decisions-grid-section .decisions-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 2.5rem;
    color: #1A1A18;
    line-height: 1.2;
}

.decisions-grid-section .decisions-section-desc {
    font-size: 1.05rem;
    color: #5C5852;
    max-width: 600px;
    line-height: 1.6;
}

.decisions-grid-section .decisions-filter-btn {
    background-color: transparent;
    border: 1px solid #E5DEC9;
    color: #5C5852;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.decisions-grid-section .decisions-filter-btn:hover,
.decisions-grid-section .decisions-filter-btn.active {
    background-color: #7D846C;
    border-color: #7D846C;
    color: #FFFFFF;
}

.decisions-grid-section .decision-card {
    background-color: #F3EFE6;
    border: 1px solid #E5DEC9;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.decisions-grid-section .decision-card:hover {
    transform: translateY(-4px);
    border-color: #C97A64;
}

.decisions-grid-section .decision-card-img-link {
    height: 220px;
    width: 100%;
}

.decisions-grid-section .decision-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.decisions-grid-section .decision-card:hover .decision-card-img {
    transform: scale(1.05);
}

.decisions-grid-section .decision-card-meta {
    font-size: 0.75rem;
    color: #C97A64;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.decisions-grid-section .decision-card-title-link {
    text-decoration: none;
}

.decisions-grid-section .decision-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #1A1A18;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.decisions-grid-section .decision-card-title-link:hover .decision-card-title {
    color: #C97A64;
}

.decisions-grid-section .decision-card-text {
    font-size: 0.9rem;
    color: #5C5852;
    line-height: 1.6;
}

.decisions-grid-section .decision-card-btn {
    display: block;
    background-color: #7D846C;
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.decisions-grid-section .decision-card-btn:hover {
    background-color: #636955;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .decisions-grid-section .decisions-section-title {
        font-size: 2rem;
    }

    .decisions-grid-section .decisions-filter-group {
        justify-content: flex-start;
    }
}

/* ===== footer ===== */
.repeatwise-footer {
    background-color: #F3EFE6;
    border-top: 1px solid #E5DEC9;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #5C5852;
}

.repeatwise-footer .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    color: #1A1A18;
    font-size: 2rem;
    letter-spacing: -0.5px;
}

.repeatwise-footer .footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: #1A1A18;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.repeatwise-footer .footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5C5852;
}

.repeatwise-footer .footer-links li {
    margin-bottom: 0.5rem;
}

.repeatwise-footer .footer-links a {
    color: #5C5852;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.4s ease, padding-left 0.4s ease;
    display: inline-block;
}

.repeatwise-footer .footer-links a:hover {
    color: #C97A64;
    padding-left: 4px;
}

.repeatwise-footer .footer-contact-info p {
    font-size: 0.95rem;
    color: #5C5852;
    line-height: 1.6;
}

.repeatwise-footer .footer-contact-info a {
    color: #5C5852;
    text-decoration: none;
    transition: color 0.4s ease;
}

.repeatwise-footer .footer-contact-info a:hover {
    color: #C97A64;
}

.repeatwise-footer .footer-icon {
    color: #7D846C;
    font-size: 1rem;
}

.repeatwise-footer .footer-divider {
    border-color: #E5DEC9;
    opacity: 1;
}

.repeatwise-footer .copyright {
    font-size: 0.85rem;
    color: #5C5852;
}

.repeatwise-footer .footer-legal-links a {
    color: #5C5852;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.4s ease;
}

.repeatwise-footer .footer-legal-links a:hover {
    color: #C97A64;
}

@media (max-width: 767.98px) {
    .repeatwise-footer {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .repeatwise-footer .footer-brand {
        font-size: 1.75rem;
    }

    .repeatwise-footer .footer-title {
        font-size: 1.15rem;
    }
}

.decisions-hero {
    background-color: #F3EFE6;
    border-bottom: 1px solid #E5DEC9;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.decisions-hero .decisions-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    color: #1A1A18;
    font-size: 2.5rem;
}

.decisions-hero .decisions-hero-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #5C5852;
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.6;
}

.decisions-list-section {
    background-color: #F9F6F0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.decisions-list-section .search-wrapper .form-control {
    background-color: #FFFFFF;
    border: 1px solid #E5DEC9;
    color: #1A1A18;
    border-radius: 0;
    padding: 0.75rem 1rem;
}

.decisions-list-section .search-wrapper .form-control::placeholder {
    color: #A6A29A;
}

.decisions-list-section .search-wrapper .form-control:focus {
    border-color: #C97A64;
    box-shadow: none;
}

.decisions-list-section .filter-btn {
    background-color: transparent;
    border: 1px solid #E5DEC9;
    color: #5C5852;
    border-radius: 0;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 0.5rem;
    transition: all 0.4s ease;
}

.decisions-list-section .filter-btn:hover,
.decisions-list-section .filter-btn.active {
    background-color: #C97A64;
    border-color: #C97A64;
    color: #FFFFFF;
}

.decisions-list-section .decision-card {
    background-color: #FFFFFF;
    border: 1px solid #E5DEC9;
    transition: transform 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.decisions-list-section .decision-card:hover {
    border-color: #C97A64;
}

.decisions-list-section .decision-card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.decisions-list-section .decision-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.decisions-list-section .decision-card:hover .decision-card-img {
    transform: scale(1.03);
}

.decisions-list-section .decision-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #7D846C;
    color: #FFFFFF;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.decisions-list-section .decision-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.decisions-list-section .decision-meta {
    font-size: 0.8rem;
    color: #7D846C;
    font-weight: 500;
}

.decisions-list-section .decision-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: #1A1A18;
    font-size: 1.4rem;
    line-height: 1.3;
}

.decisions-list-section .decision-card-desc {
    font-size: 0.9rem;
    color: #5C5852;
    line-height: 1.6;
}

.decisions-list-section .decision-card-link {
    background-color: transparent;
    border: 1px solid #C97A64;
    color: #C97A64;
    border-radius: 0;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.4s ease;
}

.decisions-list-section .decision-card-link:hover {
    background-color: #C97A64;
    color: #FFFFFF;
}

.decisions-list-section .select-service-btn {
    background-color: #7D846C;
    border: 1px solid #7D846C;
    color: #FFFFFF;
    border-radius: 0;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.4s ease;
}

.decisions-list-section .select-service-btn:hover {
    background-color: #656b57;
    border-color: #656b57;
}

.decisions-list-section .service-request-form-card {
    background-color: #F3EFE6;
    border: 1px solid #E5DEC9;
}

.decisions-list-section .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    color: #1A1A18;
    font-size: 2rem;
}

.decisions-list-section .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #5C5852;
    letter-spacing: 0.05em;
}

.decisions-list-section .form-control {
    background-color: #FFFFFF;
    border: 1px solid #E5DEC9;
    color: #1A1A18;
    border-radius: 0;
    padding: 0.75rem 1rem;
}

.decisions-list-section .form-control::placeholder {
    color: #A6A29A;
}

.decisions-list-section .form-control:focus {
    border-color: #C97A64;
    box-shadow: none;
}

.decisions-list-section .form-control[readonly] {
    background-color: #EBE6DA;
    color: #5C5852;
}

.decisions-list-section .submit-form-btn {
    background-color: #C97A64;
    border: 1px solid #C97A64;
    color: #FFFFFF;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
}

.decisions-list-section .submit-form-btn:hover {
    background-color: #b56954;
    border-color: #b56954;
}

@media (max-width: 767.98px) {
    .decisions-hero .decisions-hero-title {
        font-size: 1.8rem;
    }

    .decisions-list-section .filter-btn {
        margin: 0.25rem;
        font-size: 0.75rem;
    }

    .decisions-list-section .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* ===== PAGE: about ===== */
.about-casebook {
  background-color: #F9F6F0;
  color: #1A1A18;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.about-casebook .about-casebook__tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #C97A64;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}

.about-casebook .about-casebook__heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: #1A1A18;
  font-size: 2.8rem;
  line-height: 1.2;
}

.about-casebook .about-casebook__subheading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: #1A1A18;
  font-size: 2.2rem;
  line-height: 1.3;
}

.about-casebook .about-casebook__lead-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #1A1A18;
  font-weight: 300;
}

.about-casebook .about-casebook__body-text {
  font-size: 0.975rem;
  line-height: 1.8;
  color: #5C5852;
}

.about-casebook .about-casebook__img-wrapper {
  border: 1px solid #E5DEC9;
  padding: 8px;
  background-color: #F3EFE6;
  border-radius: 4px;
  overflow: hidden;
}

.about-casebook .about-casebook__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.about-casebook .about-casebook__pillars {
  border-color: #E5DEC9 !important;
}

.about-casebook .about-casebook__pillar-card {
  background-color: #F3EFE6;
  border: 1px solid #E5DEC9;
  border-radius: 4px;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.about-casebook .about-casebook__pillar-card:hover {
  border-color: #C97A64;
}

.about-casebook .about-casebook__pillar-icon {
  font-size: 1.8rem;
  color: #7D846C;
}

.about-casebook .about-casebook__pillar-title {
  font-family: 'Cormorant Garamond', serif;
  color: #1A1A18;
  font-weight: 600;
}

.about-casebook .about-casebook__pillar-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #5C5852;
}


.about-casebook .about-casebook__btn-primary {
  display: inline-block;
  background-color: #C97A64;
  color: #FFFFFF;
  border: 1px solid #C97A64;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  transition: all 0.4s ease;
  border-radius: 2px;
}

.about-casebook .about-casebook__btn-primary:hover {
  background-color: #1A1A18;
  border-color: #1A1A18;
  color: #FFFFFF;
}

.about-casebook .about-casebook__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #1A1A18;
  border: 1px solid #1A1A18;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  transition: all 0.4s ease;
  border-radius: 2px;
}

.about-casebook .about-casebook__btn-secondary:hover {
  background-color: #1A1A18;
  color: #FFFFFF;
}


.about-casebook .about-casebook__accordion-item {
  background-color: #F3EFE6;
  border: 1px solid #E5DEC9;
  border-radius: 4px !important;
  overflow: hidden;
}

.about-casebook .about-casebook__accordion-button {
  background-color: #F3EFE6;
  color: #1A1A18;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  border: none;
  box-shadow: none !important;
  padding: 1.25rem 1.5rem;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.about-casebook .about-casebook__accordion-button:not(.collapsed) {
  background-color: #E5DEC9;
  color: #1A1A18;
}

.about-casebook .about-casebook__accordion-button::after {
  filter: brightness(0.2);
}

.about-casebook .about-casebook__accordion-body {
  background-color: #F9F6F0;
  color: #5C5852;
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid #E5DEC9;
  padding: 1.25rem 1.5rem;
}


@media (max-width: 767.98px) {
  .about-casebook h1 {
    font-size: 18px !important;
  }
  .about-casebook h2 {
    font-size: 16px !important;
  }
  .about-casebook h3, .about-casebook .about-casebook__accordion-button {
    font-size: 14px !important;
  }
  .about-casebook .about-casebook__img {
    height: 250px;
  }
}

/* ===== PAGE: bambu ===== */
.bambu-analysis {
  background-color: #F9F6F0;
  color: #1A1A18;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 8rem 0;
}

.bambu-analysis .bambu-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #C97A64;
  background-color: rgba(201, 122, 100, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
}

.bambu-analysis .bambu-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: #1A1A18;
}

.bambu-analysis .bambu-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: #1A1A18;
}

.bambu-analysis .bambu-h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: #1A1A18;
  letter-spacing: 0.05em;
}

.bambu-analysis .bambu-lead {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #5C5852 !important;
  line-height: 1.6;
}

.bambu-analysis .bambu-img-wrapper {
  border: 1px solid #E5DEC9;
  padding: 10px;
  background-color: #FFFFFF;
  border-radius: 8px;
}

.bambu-analysis .bambu-img-wrapper img {
  object-fit: cover;
  aspect-ratio: 16/10;
  border-radius: 4px;
}

.bambu-analysis .bambu-secondary-img-wrapper {
  border: 1px solid #E5DEC9;
  padding: 8px;
  background-color: #FFFFFF;
  border-radius: 6px;
}

.bambu-analysis .bambu-secondary-img-wrapper img {
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: 4px;
}

.bambu-analysis .bambu-stats-panel {
  background-color: #F3EFE6;
  border: 1px solid #E5DEC9;
  height: 100%;
}

.bambu-analysis .bambu-stat-item {
  border-bottom: 1px solid #E5DEC9;
  padding-bottom: 1.2rem;
}

.bambu-analysis .bambu-stat-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bambu-analysis .bambu-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: #C97A64;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.bambu-analysis .bambu-stat-label {
  font-size: 0.85rem;
  color: #5C5852;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bambu-analysis .bambu-sticky-nav {
  background-color: #F3EFE6;
  border: 1px solid #E5DEC9;
  position: sticky;
  top: 2rem;
}

.bambu-analysis .bambu-anchor-link {
  color: #5C5852;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.bambu-analysis .bambu-anchor-link:hover,
.bambu-analysis .bambu-anchor-link.active {
  color: #C97A64;
}

.bambu-analysis .bambu-narrative {
  line-height: 1.8;
  color: #5C5852;
}

.bambu-analysis .bambu-narrative p {
  margin-bottom: 1.5rem;
}

.bambu-analysis .scroll-margin {
  scroll-margin-top: 2.5rem;
}

.bambu-analysis .bambu-feature-card {
  background-color: #FFFFFF;
  border: 1px solid #E5DEC9;
  height: 100%;
}

.bambu-analysis .bambu-feature-card i {
  font-size: 1.25rem;
}

.bambu-analysis .bambu-interactive-container {
  background-color: #F3EFE6;
  border: 1px solid #E5DEC9;
}

.bambu-analysis .bambu-btn-toggle {
  border: 1px solid #E5DEC9;
  background-color: #FFFFFF;
  color: #5C5852;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.bambu-analysis .bambu-btn-toggle:hover {
  border-color: #C97A64;
  color: #C97A64;
}

.bambu-analysis .bambu-btn-toggle.active {
  background-color: #C97A64;
  color: #FFFFFF;
  border-color: #C97A64;
}

.bambu-analysis .bambu-form-card {
  background-color: #F3EFE6;
  border: 1px solid #E5DEC9;
}

.bambu-analysis .bambu-input {
  background-color: #FFFFFF;
  border: 1px solid #E5DEC9;
  color: #1A1A18;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.bambu-analysis .bambu-input:focus {
  outline: none;
  box-shadow: none;
  border-color: #C97A64;
  background-color: #FFFFFF;
  color: #1A1A18;
}

.bambu-analysis ::placeholder {
  color: #9E9A92 !important;
  opacity: 1;
}

.bambu-analysis .bambu-btn-submit {
  background-color: #1A1A18;
  color: #FFFFFF;
  border: 1px solid #1A1A18;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  border-radius: 4px;
  transition: all 0.4s ease;
}

.bambu-analysis .bambu-btn-submit:hover {
  background-color: #C97A64;
  border-color: #C97A64;
  color: #FFFFFF;
}

.bambu-analysis .max-width-600 {
  max-width: 600px;
}

.bambu-analysis .text-terracotta {
  color: #C97A64;
}

.bambu-analysis .text-olive {
  color: #7D846C;
}

@media (max-width: 767.98px) {
  .bambu-analysis {
    padding: 4rem 0;
  }
  .bambu-analysis .bambu-stat-number {
    font-size: 2.2rem;
  }
  .bambu-analysis .bambu-title {
    font-size: 2rem;
  }
}

/* ===== PAGE: contact ===== */
.repeatwise-contact-block {
  background-color: #F9F6F0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #5C5852;
}

.repeatwise-contact-block .font-serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
}

.repeatwise-contact-block .small-subtitle {
  color: #C97A64;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 600;
}

.repeatwise-contact-block .lead-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #5C5852;
}

.repeatwise-contact-block .method-icon {
  color: #7D846C;
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
  margin-top: 2px;
}

.repeatwise-contact-block .contact-link {
  color: #1A1A18;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, color 0.4s ease;
}

.repeatwise-contact-block .contact-link:hover {
  color: #C97A64;
  border-color: #C97A64;
}

.repeatwise-contact-block .border-editorial {
  border: 1px solid #E5DEC9;
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.repeatwise-contact-block .contact-form-card {
  background-color: #F3EFE6;
  border: 1px solid #E5DEC9;
  padding: 3rem 2.5rem;
}

@media (max-width: 767.98px) {
  .repeatwise-contact-block .contact-form-card {
    padding: 2rem 1.5rem;
  }
}

.repeatwise-contact-block .small-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.repeatwise-contact-block .form-control {
  background-color: #F9F6F0;
  border: 1px solid #E5DEC9;
  border-radius: 0;
  color: #1A1A18;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.repeatwise-contact-block .form-control:focus {
  background-color: #FFFFFF;
  border-color: #C97A64;
  box-shadow: none;
  outline: none;
}

.repeatwise-contact-block .form-control::placeholder {
  color: #A39E96;
  opacity: 1;
}

.repeatwise-contact-block .btn-editorial {
  background-color: #1A1A18;
  color: #FFFFFF;
  border: 1px solid #1A1A18;
  border-radius: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.repeatwise-contact-block .btn-editorial:hover {
  background-color: transparent;
  color: #1A1A18;
  border-color: #1A1A18;
}

/* ===== PAGE: privacy ===== */
.rw-privacy-section { background-color: #F9F6F0; padding: 6rem 0; color: #1A1A18; font-family: 'Plus Jakarta Sans', sans-serif; } .rw-privacy-section h2, .rw-privacy-section h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; color: #1A1A18; } .rw-privacy-section h2 { font-size: 2.2rem; border-bottom: 1px solid #E5DEC9; padding-bottom: 0.5rem; margin-top: 0; margin-bottom: 1.5rem; } .rw-privacy-section p { color: #5C5852; line-height: 1.7; margin-bottom: 1.2rem; } .rw-privacy-section ul { padding-left: 1.5rem; margin-bottom: 1.5rem; } .rw-privacy-section li { margin-bottom: 0.5rem; color: #5C5852; } .rw-privacy-section .sidebar-nav { position: -webkit-sticky; position: sticky; top: 100px; border-right: 1px solid #E5DEC9; padding-right: 2rem; } .rw-privacy-section .nav-link-custom { display: block; padding: 0.5rem 0; color: #5C5852; text-decoration: none; font-size: 0.95rem; transition: color 0.3s ease; border-bottom: 1px solid transparent; } .rw-privacy-section .nav-link-custom:hover, .rw-privacy-section .nav-link-custom.active { color: #C97A64; } .rw-privacy-section .last-updated { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: #7D846C; margin-bottom: 3rem; } .rw-privacy-section .contact-link { color: #C97A64; text-decoration: none; transition: opacity 0.3s ease; } .rw-privacy-section .contact-link:hover { opacity: 0.8; } @media (max-width: 991.98px) { .rw-privacy-section .sidebar-nav { position: static; border-right: none; border-bottom: 1px solid #E5DEC9; padding-right: 0; padding-bottom: 1rem; margin-bottom: 2rem; display: flex; overflow-x: auto; white-space: nowrap; gap: 1.5rem; -webkit-overflow-scrolling: touch; } .rw-privacy-section .nav-link-custom { padding: 0.25rem 0; font-size: 0.85rem; } }

/* ===== PAGE: terms ===== */
.terms-content-section {
  background-color: #F9F6F0;
  color: #1A1A18;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.terms-content-section .border-color {
  border-color: #E5DEC9 !important;
}
.terms-content-section .terms-sidebar {
  background-color: #F3EFE6;
  border: 1px solid #E5DEC9;
  border-radius: 4px;
}
.terms-content-section .terms-sidebar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1A1A18;
}
.terms-content-section .terms-nav-list .nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #5C5852;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-left: 2px solid transparent;
  padding-left: 0.75rem;
  transition: all 0.3s ease;
}
.terms-content-section .terms-nav-list .nav-link:hover,
.terms-content-section .terms-nav-list .nav-link.active {
  color: #C97A64;
  border-left-color: #C97A64;
  font-weight: 500;
}
.terms-content-section .terms-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1A1A18;
  border-bottom: 1px solid #E5DEC9;
  padding-bottom: 0.5rem;
}
.terms-content-section .terms-block p {
  color: #5C5852;
  line-height: 1.7;
  font-size: 1rem;
}
.terms-content-section .terms-search-wrapper .form-control {
  border-color: #E5DEC9;
  color: #1A1A18;
  font-size: 0.95rem;
}
.terms-content-section .terms-search-wrapper .form-control:focus {
  box-shadow: none;
  border-color: #C97A64;
}
.terms-content-section .terms-search-wrapper .input-group-text {
  border-color: #E5DEC9;
}
@media (max-width: 767.98px) {
  .terms-content-section .terms-sidebar {
    position: static !important;
    margin-bottom: 2rem;
  }
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-block {
  background-color: #F9F6F0;
  color: #1A1A18;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 60px 0;
}
.disclaimer-block h1,
.disclaimer-block h2,
.disclaimer-block h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #1A1A18;
  font-weight: 300;
}
.disclaimer-block .sidebar-nav {
  position: sticky;
  top: 2rem;
  border-right: 1px solid #E5DEC9;
}
.disclaimer-block .nav-link-custom {
  display: block;
  padding: 0.6rem 1rem;
  color: #5C5852;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
}
.disclaimer-block .nav-link-custom:hover,
.disclaimer-block .nav-link-custom.active {
  color: #C97A64;
  border-left-color: #C97A64;
  background-color: #F3EFE6;
}
.disclaimer-block .search-wrapper {
  position: relative;
  margin-bottom: 2rem;
}
.disclaimer-block .search-input {
  width: 100%;
  padding: 0.8rem 1.2rem 0.8rem 2.8rem;
  border: 1px solid #E5DEC9;
  background-color: #F3EFE6;
  color: #1A1A18;
  font-size: 1rem;
  border-radius: 0;
  transition: border-color 0.3s ease;
}
.disclaimer-block .search-input:focus {
  outline: none;
  border-color: #C97A64;
}
.disclaimer-block .search-input::placeholder {
  color: #5C5852;
  opacity: 0.7;
}
.disclaimer-block .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #7D846C;
}
.disclaimer-block .section-card {
  background: #F3EFE6;
  border: 1px solid #E5DEC9;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s ease;
}
.disclaimer-block .section-card:hover {
  border-color: #C97A64;
}
.disclaimer-block .section-badge {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #C97A64;
  margin-bottom: 0.75rem;
}
.disclaimer-block .highlight-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #1A1A18;
  border-left: 3px solid #7D846C;
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}
.disclaimer-block .btn-outline-custom {
  border: 1px solid #C97A64;
  color: #C97A64;
  background-color: transparent;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  transition: all 0.4s ease;
  border-radius: 0;
  padding: 0.6rem 1.5rem;
}
.disclaimer-block .btn-outline-custom:hover {
  background-color: #C97A64;
  color: #FFFFFF;
}

.editorial-comment.main-comment {
    background-color: #F9F6F0;
    border: 1px solid #E5DEC9;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: border-color 0.4s ease-in-out;
}

.editorial-comment.main-comment:hover {
    border-color: #C97A64;
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.comment-avatar-wrapper {
    flex-shrink: 0;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    overflow: hidden;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-terracotta {
    background-color: #C97A64;
}

.avatar-olive {
    background-color: #7D846C;
}

.avatar-sand {
    background-color: #D4C3B3;
    color: #1A1A18;
}

.comment-meta {
    flex-grow: 1;
}

.comment-author {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 1.35rem;
    color: #1A1A18;
    margin: 0;
    line-height: 1.2;
}

.comment-date {
    font-size: 0.75rem;
    color: #5C5852;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.comment-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.35rem 0.75rem;
    border: 1px solid #E5DEC9;
    color: #7D846C;
    font-weight: 500;
}

.comment-body {
    color: #1A1A18;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.comment-body p {
    margin-bottom: 0;
}

.comment-footer {
    display: flex;
    gap: 1.5rem;
    border-top: 1px solid #E5DEC9;
    padding-top: 1.25rem;
}

.comment-action-btn {
    background: none;
    border: none;
    padding: 0;
    color: #5C5852;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: color 0.4s ease-in-out;
}

.comment-action-btn:hover {
    color: #C97A64;
}

.comment-action-btn i {
    font-size: 0.9rem;
}

.editorial-comment.reply-comment {
    background-color: #F3EFE6;
    border: 1px solid #E5DEC9;
    border-left: 2px solid #7D846C;
    padding: 2rem;
    margin-bottom: 1.5rem;
    margin-left: 3rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: border-color 0.4s ease-in-out;
    position: relative;
}

.editorial-comment.reply-comment::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 2rem;
    width: 1.5rem;
    height: 1px;
    background-color: #E5DEC9;
}

.editorial-comment.reply-comment:hover {
    border-color: #7D846C;
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.comment-avatar-wrapper {
    flex-shrink: 0;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    overflow: hidden;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-terracotta {
    background-color: #C97A64;
}

.avatar-olive {
    background-color: #7D846C;
}

.avatar-sand {
    background-color: #D4C3B3;
    color: #1A1A18;
}

.comment-meta {
    flex-grow: 1;
}

.comment-author {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 1.2rem;
    color: #1A1A18;
    margin: 0;
    line-height: 1.2;
}

.comment-date {
    font-size: 0.7rem;
    color: #5C5852;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.comment-replying-to {
    font-size: 0.75rem;
    color: #5C5852;
    font-style: italic;
}

.comment-replying-to .parent-author {
    font-weight: 500;
    color: #C97A64;
    font-style: normal;
}

.comment-body {
    color: #1A1A18;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.comment-body p {
    margin-bottom: 0;
}

.comment-footer {
    display: flex;
    gap: 1.5rem;
    border-top: 1px solid #E5DEC9;
    padding-top: 1rem;
}

.comment-action-btn {
    background: none;
    border: none;
    padding: 0;
    color: #5C5852;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: color 0.4s ease-in-out;
}

.comment-action-btn:hover {
    color: #C97A64;
}

.comment-action-btn i {
    font-size: 0.85rem;
}

@media (max-width: 576px) {
    .editorial-comment.reply-comment {
        margin-left: 1rem;
        padding: 1.5rem;
    }

    .editorial-comment.reply-comment::before {
        display: none;
    }
}


/* ===== PAGE TEMPLATE: cases ===== */
.repeatwise-header {
    background-color: #F9F6F0;
    border-bottom: 1px solid #E5DEC9;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.repeatwise-header .navbar {
    padding: 1.25rem 0;
    background-color: #F9F6F0 !important;
}

.repeatwise-header .repeatwise-brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 1.3rem;
    color: #1A1A18;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.4s ease;
}

.repeatwise-header .repeatwise-brand:hover {
    color: #A6523C;
}

.repeatwise-header .repeatwise-logo-img {
    max-width: 40px;
    height: auto;
    margin-right: 0.75rem;
    object-fit: contain;
}

.repeatwise-header .nav-link {
    color: #423F3A;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.4s ease;
}

.repeatwise-header .nav-link:hover {
    color: #A6523C;
}

.repeatwise-header .repeatwise-cta-btn {
    background-color: transparent;
    border: 1px solid #A6523C;
    color: #A6523C;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
    transition: all 0.4s ease;
}

.repeatwise-header .repeatwise-cta-btn:hover {
    background-color: #A6523C;
    color: #FFFFFF;
}

.repeatwise-header .repeatwise-toggler {
    border: 1px solid #E5DEC9;
    padding: 0.5rem;
    border-radius: 0;
}

.repeatwise-header .repeatwise-toggler:focus {
    box-shadow: none;
    border-color: #A6523C;
}

@media (min-width: 992px) {
    .repeatwise-header .repeatwise-brand {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1010;
    }

    .repeatwise-header .repeatwise-nav-left {
        padding-right: 140px;
    }

    .repeatwise-header .repeatwise-nav-right {
        padding-left: 140px;
    }
}

@media (max-width: 991.98px) {
    .repeatwise-header .repeatwise-brand {
        margin-right: auto !important;
    }

    .repeatwise-header .repeatwise-collapse {
        background-color: #F9F6F0;
        width: 100%;
        padding: 1.5rem 1rem;
        border-top: 1px solid #E5DEC9;
        margin-top: 0.75rem;
    }

    .repeatwise-header .navbar-nav {
        align-items: flex-start !important;
        width: 100%;
    }

    .repeatwise-header .nav-item {
        width: 100%;
        border-bottom: 1px solid #F3EFE6;
    }

    .repeatwise-header .nav-link {
        padding: 0.75rem 0 !important;
        display: block;
    }

    .repeatwise-header .repeatwise-cta-item {
        border-bottom: none;
        margin-top: 1rem;
    }

    .repeatwise-header .repeatwise-cta-btn {
        display: block;
        text-align: center;
        width: 100%;
    }
}

.repeatwise-footer {
    background-color: #F3EFE6;
    border-top: 1px solid #E5DEC9;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #5C5852;
}

.repeatwise-footer .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    color: #1A1A18;
    font-size: 2rem;
    letter-spacing: -0.5px;
}

.repeatwise-footer .footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: #1A1A18;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.repeatwise-footer .footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5C5852;
}

.repeatwise-footer .footer-links li {
    margin-bottom: 0.5rem;
}

.repeatwise-footer .footer-links a {
    color: #5C5852;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.4s ease, padding-left 0.4s ease;
    display: inline-block;
}

.repeatwise-footer .footer-links a:hover {
    color: #C97A64;
    padding-left: 4px;
}

.repeatwise-footer .footer-contact-info p {
    font-size: 0.95rem;
    color: #5C5852;
    line-height: 1.6;
}

.repeatwise-footer .footer-contact-info a {
    color: #5C5852;
    text-decoration: none;
    transition: color 0.4s ease;
}

.repeatwise-footer .footer-contact-info a:hover {
    color: #C97A64;
}

.repeatwise-footer .footer-icon {
    color: #7D846C;
    font-size: 1rem;
}

.repeatwise-footer .footer-divider {
    border-color: #E5DEC9;
    opacity: 1;
}

.repeatwise-footer .copyright {
    font-size: 0.85rem;
    color: #5C5852;
}

.repeatwise-footer .footer-legal-links a {
    color: #5C5852;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.4s ease;
}

.repeatwise-footer .footer-legal-links a:hover {
    color: #C97A64;
}

@media (max-width: 767.98px) {
    .repeatwise-footer {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .repeatwise-footer .footer-brand {
        font-size: 1.75rem;
    }

    .repeatwise-footer .footer-title {
        font-size: 1.15rem;
    }
}

.decision-detail-section {
    background-color: #F9F6F0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1A1A18;
}

.decision-detail-section .breadcrumb-item a {
    color: #7D846C;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.decision-detail-section .breadcrumb-item a:hover {
    color: #C97A64;
}

.decision-detail-section .breadcrumb-item.active {
    color: #5C5852;
    font-size: 0.85rem;
}

.decision-detail-section .decision-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 3rem;
    color: #1A1A18;
    line-height: 1.2;
}

.decision-detail-section .decision-subtitle {
    font-size: 1.15rem;
    color: #5C5852;
}

.decision-detail-section .text-accent-terracotta {
    color: #C97A64;
}

.decision-detail-section .text-accent-olive {
    color: #7D846C;
}

.decision-detail-section .detail-meta-item {
    font-size: 0.9rem;
}

.decision-detail-section .detail-meta-divider {
    color: #E5DEC9;
}

.decision-detail-section .detail-img-container {
    position: relative;
    height: 480px;
    overflow: hidden;
    border: 1px solid #E5DEC9;
}

.decision-detail-section .detail-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.decision-detail-section .decision-rich-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: #1A1A18;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.decision-detail-section .decision-rich-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5C5852;
    margin-bottom: 1.5rem;
}

.decision-detail-section .decision-rich-content .lead-paragraph {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #1A1A18;
}

.decision-detail-section .decision-rich-content blockquote {
    border-left: 3px solid #C97A64;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #1A1A18;
}

.decision-detail-section .decision-rich-content cite {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    color: #7D846C;
    font-style: normal;
}

.decision-detail-section .share-box {
    background-color: #F3EFE6;
    border: 1px solid #E5DEC9;
}

.decision-detail-section .share-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: #1A1A18;
    font-size: 1.35rem;
}

.decision-detail-section .btn-share-twitter {
    background-color: #1A1A18;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
    border: none;
    transition: background-color 0.3s ease;
}

.decision-detail-section .btn-share-twitter:hover {
    background-color: #333333;
    color: #FFFFFF;
}

.decision-detail-section .btn-share-facebook {
    background-color: #3B5998;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
    border: none;
    transition: background-color 0.3s ease;
}

.decision-detail-section .btn-share-facebook:hover {
    background-color: #4C70BA;
    color: #FFFFFF;
}

.decision-detail-section .btn-share-linkedin {
    background-color: #0077B5;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
    border: none;
    transition: background-color 0.3s ease;
}

.decision-detail-section .btn-share-linkedin:hover {
    background-color: #0090DD;
    color: #FFFFFF;
}

.decision-detail-section .sidebar-widget {
    background-color: #F3EFE6;
    border: 1px solid #E5DEC9;
}

.decision-detail-section .widget-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: #1A1A18;
}

.decision-detail-section .widget-desc {
    font-size: 0.9rem;
    color: #5C5852;
    line-height: 1.5;
}

.decision-detail-section .spec-list li {
    font-size: 0.9rem;
    color: #5C5852;
}

.decision-detail-section .bg-success-accent {
    background-color: #7D846C;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

.decision-detail-section .widget-contact-form .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #1A1A18;
}

.decision-detail-section .widget-contact-form .form-control {
    background-color: #F9F6F0;
    border: 1px solid #E5DEC9;
    color: #1A1A18;
    font-size: 0.9rem;
    border-radius: 0;
    padding: 0.6rem 0.75rem;
}

.decision-detail-section .widget-contact-form .form-control:focus {
    box-shadow: none;
    border-color: #C97A64;
}

.decision-detail-section .btn-widget-submit {
    background-color: #7D846C;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    border-radius: 0;
    border: none;
    transition: background-color 0.3s;
}

.decision-detail-section .btn-widget-submit:hover {
    background-color: #676D58;
}

.decision-detail-section .recent-link {
    display: block;
}

.decision-detail-section .font-xs {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.decision-detail-section .recent-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.15rem;
    color: #1A1A18;
    transition: color 0.3s;
}

.decision-detail-section .recent-link:hover .recent-title {
    color: #C97A64;
}

.decision-detail-section .comments-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 2rem;
    color: #1A1A18;
}

.decision-detail-section .editorial-comment {
    border: 1px solid #E5DEC9;
    background-color: #F9F6F0;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.decision-detail-section .reply-comment {
    margin-left: 2.5rem;
    background-color: #F3EFE6;
}

.decision-detail-section .comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.decision-detail-section .comment-avatar-wrapper {
    margin-right: 0.75rem;
}

.decision-detail-section .comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: #FFFFFF;
}

.decision-detail-section .avatar-terracotta {
    background-color: #C97A64;
}

.decision-detail-section .avatar-olive {
    background-color: #7D846C;
}

.decision-detail-section .comment-meta {
    flex-grow: 1;
}

.decision-detail-section .comment-author {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    color: #1A1A18;
}

.decision-detail-section .comment-date {
    font-size: 0.75rem;
    color: #7A756C;
}

.decision-detail-section .comment-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid #C97A64;
    color: #C97A64;
    padding: 0.15rem 0.4rem;
    font-weight: 600;
}

.decision-detail-section .comment-replying-to {
    font-size: 0.75rem;
    color: #7D846C;
    margin-left: auto;
}

.decision-detail-section .comment-replying-to .parent-author {
    font-weight: 600;
}

.decision-detail-section .comment-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5C5852;
    margin: 0;
}

.decision-detail-section .comment-footer {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid #E5DEC9;
    padding-top: 0.75rem;
}

.decision-detail-section .comment-action-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.8rem;
    color: #7D846C;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: color 0.3s;
}

.decision-detail-section .comment-action-btn:hover {
    color: #C97A64;
}

.decision-detail-section .comment-action-btn.active-liked {
    color: #C97A64;
}

.decision-detail-section .comment-form-wrapper {
    background-color: #F3EFE6;
    border: 1px solid #E5DEC9;
}

.decision-detail-section .comment-form-wrapper .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: #1A1A18;
}

.decision-detail-section .comment-form-wrapper .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #1A1A18;
}

.decision-detail-section .comment-form-wrapper .form-control {
    background-color: #F9F6F0;
    border: 1px solid #E5DEC9;
    color: #1A1A18;
    font-size: 0.95rem;
    border-radius: 0;
    padding: 0.75rem;
}

.decision-detail-section .comment-form-wrapper .form-control:focus {
    box-shadow: none;
    border-color: #C97A64;
}

.decision-detail-section .btn-submit-comment {
    background-color: #C97A64;
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    border-radius: 0;
    border: none;
    transition: background-color 0.3s;
}

.decision-detail-section .btn-submit-comment:hover {
    background-color: #B2644F;
}

.decision-detail-section ::placeholder {
    color: #7A756C !important;
    opacity: 1;
}

.decision-detail-section :-ms-input-placeholder {
    color: #7A756C !important;
}

.decision-detail-section ::-ms-input-placeholder {
    color: #7A756C !important;
}

@media (max-width: 767.98px) {

    .decision-detail-section h1,
    .decision-detail-section .decision-main-title {
        font-size: 18px !important;
        hyphens: auto;
    }

    .decision-detail-section h2 {
        font-size: 16px !important;
        hyphens: auto;
    }

    .decision-detail-section h3 {
        font-size: 14px !important;
        hyphens: auto;
    }

    .decision-detail-section p,
    .decision-detail-section li,
    .decision-detail-section span {
        hyphens: auto;
    }

    .decision-detail-section .detail-img-container {
        height: 250px;
    }

    .decision-detail-section .reply-comment {
        margin-left: 1rem;
    }
}

/* ===== PAGE TEMPLATE: decisions ===== */
.repeatwise-header {
    background-color: #F9F6F0;
    border-bottom: 1px solid #E5DEC9;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.repeatwise-header .navbar {
    padding: 1.25rem 0;
    background-color: #F9F6F0 !important;
}

.repeatwise-header .repeatwise-brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 1.3rem;
    color: #1A1A18;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.4s ease;
}

.repeatwise-header .repeatwise-brand:hover {
    color: #A6523C;
}

.repeatwise-header .repeatwise-logo-img {
    max-width: 40px;
    height: auto;
    margin-right: 0.75rem;
    object-fit: contain;
}

.repeatwise-header .nav-link {
    color: #423F3A;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.4s ease;
}

.repeatwise-header .nav-link:hover {
    color: #A6523C;
}

.repeatwise-header .repeatwise-cta-btn {
    background-color: transparent;
    border: 1px solid #A6523C;
    color: #A6523C;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
    transition: all 0.4s ease;
}

.repeatwise-header .repeatwise-cta-btn:hover {
    background-color: #A6523C;
    color: #FFFFFF;
}

.repeatwise-header .repeatwise-toggler {
    border: 1px solid #E5DEC9;
    padding: 0.5rem;
    border-radius: 0;
}

.repeatwise-header .repeatwise-toggler:focus {
    box-shadow: none;
    border-color: #A6523C;
}

@media (min-width: 992px) {
    .repeatwise-header .repeatwise-brand {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1010;
    }

    .repeatwise-header .repeatwise-nav-left {
        padding-right: 140px;
    }

    .repeatwise-header .repeatwise-nav-right {
        padding-left: 140px;
    }
}

@media (max-width: 991.98px) {
    .repeatwise-header .repeatwise-brand {
        margin-right: auto !important;
    }

    .repeatwise-header .repeatwise-collapse {
        background-color: #F9F6F0;
        width: 100%;
        padding: 1.5rem 1rem;
        border-top: 1px solid #E5DEC9;
        margin-top: 0.75rem;
    }

    .repeatwise-header .navbar-nav {
        align-items: flex-start !important;
        width: 100%;
    }

    .repeatwise-header .nav-item {
        width: 100%;
        border-bottom: 1px solid #F3EFE6;
    }

    .repeatwise-header .nav-link {
        padding: 0.75rem 0 !important;
        display: block;
    }

    .repeatwise-header .repeatwise-cta-item {
        border-bottom: none;
        margin-top: 1rem;
    }

    .repeatwise-header .repeatwise-cta-btn {
        display: block;
        text-align: center;
        width: 100%;
    }
}

.repeatwise-footer {
    background-color: #F3EFE6;
    border-top: 1px solid #E5DEC9;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #5C5852;
}

.repeatwise-footer .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    color: #1A1A18;
    font-size: 2rem;
    letter-spacing: -0.5px;
}

.repeatwise-footer .footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: #1A1A18;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.repeatwise-footer .footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5C5852;
}

.repeatwise-footer .footer-links li {
    margin-bottom: 0.5rem;
}

.repeatwise-footer .footer-links a {
    color: #5C5852;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.4s ease, padding-left 0.4s ease;
    display: inline-block;
}

.repeatwise-footer .footer-links a:hover {
    color: #C97A64;
    padding-left: 4px;
}

.repeatwise-footer .footer-contact-info p {
    font-size: 0.95rem;
    color: #5C5852;
    line-height: 1.6;
}

.repeatwise-footer .footer-contact-info a {
    color: #5C5852;
    text-decoration: none;
    transition: color 0.4s ease;
}

.repeatwise-footer .footer-contact-info a:hover {
    color: #C97A64;
}

.repeatwise-footer .footer-icon {
    color: #7D846C;
    font-size: 1rem;
}

.repeatwise-footer .footer-divider {
    border-color: #E5DEC9;
    opacity: 1;
}

.repeatwise-footer .copyright {
    font-size: 0.85rem;
    color: #5C5852;
}

.repeatwise-footer .footer-legal-links a {
    color: #5C5852;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.4s ease;
}

.repeatwise-footer .footer-legal-links a:hover {
    color: #C97A64;
}

@media (max-width: 767.98px) {
    .repeatwise-footer {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .repeatwise-footer .footer-brand {
        font-size: 1.75rem;
    }

    .repeatwise-footer .footer-title {
        font-size: 1.15rem;
    }
}

.decision-detail-section {
    background-color: #F9F6F0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1A1A18;
}

.decision-detail-section .breadcrumb-item a {
    color: #7D846C;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.decision-detail-section .breadcrumb-item a:hover {
    color: #C97A64;
}

.decision-detail-section .breadcrumb-item.active {
    color: #5C5852;
    font-size: 0.85rem;
}

.decision-detail-section .decision-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 3rem;
    color: #1A1A18;
    line-height: 1.2;
}

.decision-detail-section .decision-subtitle {
    font-size: 1.15rem;
    color: #5C5852;
}

.decision-detail-section .text-accent-terracotta {
    color: #C97A64;
}

.decision-detail-section .text-accent-olive {
    color: #7D846C;
}

.decision-detail-section .detail-meta-item {
    font-size: 0.9rem;
}

.decision-detail-section .detail-meta-divider {
    color: #E5DEC9;
}

.decision-detail-section .detail-img-container {
    position: relative;
    height: 480px;
    overflow: hidden;
    border: 1px solid #E5DEC9;
}

.decision-detail-section .detail-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.decision-detail-section .decision-rich-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: #1A1A18;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.decision-detail-section .decision-rich-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5C5852;
    margin-bottom: 1.5rem;
}

.decision-detail-section .decision-rich-content .lead-paragraph {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #1A1A18;
}

.decision-detail-section .decision-rich-content blockquote {
    border-left: 3px solid #C97A64;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #1A1A18;
}

.decision-detail-section .decision-rich-content cite {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    color: #7D846C;
    font-style: normal;
}

.decision-detail-section .share-box {
    background-color: #F3EFE6;
    border: 1px solid #E5DEC9;
}

.decision-detail-section .share-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: #1A1A18;
    font-size: 1.35rem;
}

.decision-detail-section .btn-share-twitter {
    background-color: #1A1A18;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
    border: none;
    transition: background-color 0.3s ease;
}

.decision-detail-section .btn-share-twitter:hover {
    background-color: #333333;
    color: #FFFFFF;
}

.decision-detail-section .btn-share-facebook {
    background-color: #3B5998;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
    border: none;
    transition: background-color 0.3s ease;
}

.decision-detail-section .btn-share-facebook:hover {
    background-color: #4C70BA;
    color: #FFFFFF;
}

.decision-detail-section .btn-share-linkedin {
    background-color: #0077B5;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
    border: none;
    transition: background-color 0.3s ease;
}

.decision-detail-section .btn-share-linkedin:hover {
    background-color: #0090DD;
    color: #FFFFFF;
}

.decision-detail-section .sidebar-widget {
    background-color: #F3EFE6;
    border: 1px solid #E5DEC9;
}

.decision-detail-section .widget-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: #1A1A18;
}

.decision-detail-section .widget-desc {
    font-size: 0.9rem;
    color: #5C5852;
    line-height: 1.5;
}

.decision-detail-section .spec-list li {
    font-size: 0.9rem;
    color: #5C5852;
}

.decision-detail-section .bg-success-accent {
    background-color: #7D846C;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

.decision-detail-section .widget-contact-form .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #1A1A18;
}

.decision-detail-section .widget-contact-form .form-control {
    background-color: #F9F6F0;
    border: 1px solid #E5DEC9;
    color: #1A1A18;
    font-size: 0.9rem;
    border-radius: 0;
    padding: 0.6rem 0.75rem;
}

.decision-detail-section .widget-contact-form .form-control:focus {
    box-shadow: none;
    border-color: #C97A64;
}

.decision-detail-section .btn-widget-submit {
    background-color: #7D846C;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    border-radius: 0;
    border: none;
    transition: background-color 0.3s;
}

.decision-detail-section .btn-widget-submit:hover {
    background-color: #676D58;
}

.decision-detail-section .recent-link {
    display: block;
}

.decision-detail-section .font-xs {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.decision-detail-section .recent-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.15rem;
    color: #1A1A18;
    transition: color 0.3s;
}

.decision-detail-section .recent-link:hover .recent-title {
    color: #C97A64;
}

.decision-detail-section .comments-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 2rem;
    color: #1A1A18;
}

.decision-detail-section .editorial-comment {
    border: 1px solid #E5DEC9;
    background-color: #F9F6F0;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.decision-detail-section .reply-comment {
    margin-left: 2.5rem;
    background-color: #F3EFE6;
}

.decision-detail-section .comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.decision-detail-section .comment-avatar-wrapper {
    margin-right: 0.75rem;
}

.decision-detail-section .comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: #FFFFFF;
}

.decision-detail-section .avatar-terracotta {
    background-color: #C97A64;
}

.decision-detail-section .avatar-olive {
    background-color: #7D846C;
}

.decision-detail-section .comment-meta {
    flex-grow: 1;
}

.decision-detail-section .comment-author {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    color: #1A1A18;
}

.decision-detail-section .comment-date {
    font-size: 0.75rem;
    color: #7A756C;
}

.decision-detail-section .comment-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid #C97A64;
    color: #C97A64;
    padding: 0.15rem 0.4rem;
    font-weight: 600;
}

.decision-detail-section .comment-replying-to {
    font-size: 0.75rem;
    color: #7D846C;
    margin-left: auto;
}

.decision-detail-section .comment-replying-to .parent-author {
    font-weight: 600;
}

.decision-detail-section .comment-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5C5852;
    margin: 0;
}

.decision-detail-section .comment-footer {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid #E5DEC9;
    padding-top: 0.75rem;
}

.decision-detail-section .comment-action-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.8rem;
    color: #7D846C;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: color 0.3s;
}

.decision-detail-section .comment-action-btn:hover {
    color: #C97A64;
}

.decision-detail-section .comment-action-btn.active-liked {
    color: #C97A64;
}

.decision-detail-section .comment-form-wrapper {
    background-color: #F3EFE6;
    border: 1px solid #E5DEC9;
}

.decision-detail-section .comment-form-wrapper .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: #1A1A18;
}

.decision-detail-section .comment-form-wrapper .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #1A1A18;
}

.decision-detail-section .comment-form-wrapper .form-control {
    background-color: #F9F6F0;
    border: 1px solid #E5DEC9;
    color: #1A1A18;
    font-size: 0.95rem;
    border-radius: 0;
    padding: 0.75rem;
}

.decision-detail-section .comment-form-wrapper .form-control:focus {
    box-shadow: none;
    border-color: #C97A64;
}

.decision-detail-section .btn-submit-comment {
    background-color: #C97A64;
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    border-radius: 0;
    border: none;
    transition: background-color 0.3s;
}

.decision-detail-section .btn-submit-comment:hover {
    background-color: #B2644F;
}

.decision-detail-section ::placeholder {
    color: #7A756C !important;
    opacity: 1;
}

.decision-detail-section :-ms-input-placeholder {
    color: #7A756C !important;
}

.decision-detail-section ::-ms-input-placeholder {
    color: #7A756C !important;
}

@media (max-width: 767.98px) {

    .decision-detail-section h1,
    .decision-detail-section .decision-main-title {
        font-size: 18px !important;
        hyphens: auto;
    }

    .decision-detail-section h2 {
        font-size: 16px !important;
        hyphens: auto;
    }

    .decision-detail-section h3 {
        font-size: 14px !important;
        hyphens: auto;
    }

    .decision-detail-section p,
    .decision-detail-section li,
    .decision-detail-section span {
        hyphens: auto;
    }

    .decision-detail-section .detail-img-container {
        height: 250px;
    }

    .decision-detail-section .reply-comment {
        margin-left: 1rem;
    }
}